-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathindex.html
More file actions
1856 lines (1713 loc) · 136 KB
/
index.html
File metadata and controls
1856 lines (1713 loc) · 136 KB
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-2025 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="j8K161R-W9yVVDoylaoPd2twGbjToAC3EzAFfZU1YOY" />
<title>New Tab</title>
<link href="style.css" rel="stylesheet">
<link href="./favicon/icon48.png" id="favicon" rel="icon" type="image/png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<!-- SCRIPTS -->
<script src="scripts/preload.js"></script>
<script defer src="scripts/languages.js"></script>
<script defer src="scripts/save-load-states.js"></script>
<script defer src="scripts/menu-shortcut-page.js"></script>
<script defer src="scripts/theme.js"></script>
<script defer src="scripts/browser-utils.js"></script>
<script defer src="scripts/alert-modal.js"></script>
<script defer src="scripts/wallpaper.js"></script>
<script defer src="scripts/widgets-transparency.js"></script>
<script defer src="scripts/clock.js"></script>
<script defer src="scripts/weather.js"></script>
<script defer src="scripts/custom-text.js"></script>
<script defer src="scripts/search.js"></script>
<script defer src="scripts/quotes.js"></script>
<script defer src="scripts/shortcuts.js"></script>
<script defer src="scripts/script.js"></script>
<script defer src="scripts/search-suggestions.js"></script>
<script defer src="scripts/ai-tools.js"></script>
<script defer src="scripts/bookmarks.js"></script>
<script defer src="scripts/todo-list.js"></script>
<script defer src="scripts/google-apps.js"></script>
<script defer src="scripts/voice-search.js"></script>
<script defer src="scripts/backup-restore.js"></script>
<!-- LANGUAGES SCRIPTS -->
<script src="locales/pt.js"></script>
<script src="locales/en.js"></script>
<script src="locales/np.js"></script>
<script src="locales/es.js"></script>
<script src="locales/hi.js"></script>
<script src="locales/hu.js"></script>
<script src="locales/zh.js"></script>
<script src="locales/zh_TW.js"></script>
<script src="locales/cs.js"></script>
<script src="locales/it.js"></script>
<script src="locales/tr.js"></script>
<script src="locales/bn.js"></script>
<script src="locales/vi.js"></script>
<script src="locales/ru.js"></script>
<script src="locales/uz.js"></script>
<script src="locales/ja.js"></script>
<script src="locales/ko.js"></script>
<script src="locales/idn.js"></script>
<script src="locales/mr.js"></script>
<script src="locales/fr.js"></script>
<script src="locales/az.js"></script>
<script src="locales/sl.js"></script>
<script src="locales/ur.js"></script>
<script src="locales/de.js"></script>
<script src="locales/fa.js"></script>
<script src="locales/ar_SA.js"></script>
<script src="locales/el.js"></script>
<script src="locales/ta.js"></script>
<script src="locales/th.js"></script>
<script src="locales/pl.js"></script>
<script src="locales/uk.js"></script>
</head>
<body>
<!-- --------------------- Loading Screen Starting --------------------- -->
<img src="./images/Loading.png" id="LoadingScreen" fetchpriority="high" />
<!-- --------------------- ToDo List Setup Starting --------------------- -->
<!-- ToDo Icon -->
<div class="todoListCont" id="todoListCont">
<svg id="todoIcon" xmlns="http://www.w3.org/2000/svg" class="dot-icon" width="36" height="36"
viewBox="0 0 36 36">
<path style="transform: scale(0.9); transform-origin: center;"
d="M7 4C5.3 4 4 5.3 4 7v6c0 1.7 1.3 3 3 3h6c1.7 0 3-1.3 3-3V7c0-1.7-1.3-3-3-3Zm12 2c-.6 0-1 .4-1 1s.4 1 1 1h12c.6 0 1-.4 1-1s-.4-1-1-1Zm-6 1c.25 0 .5.1.7.3.4.4.4 1 0 1.4l-3 3c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3l-2-2c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0L10 9.6l2.3-2.3c.2-.2.45-.3.7-.3Zm6 3c-.6 0-1 .4-1 1s.4 1 1 1h7c.6 0 1-.4 1-1s-.4-1-1-1zM7 20c-1.7 0-3 1.3-3 3v6c0 1.7 1.3 3 3 3h6c1.7 0 3-1.3 3-3v-6c0-1.7-1.3-3-3-3zm12 2c-.6 0-1 .4-1 1s.4 1 1 1h12c.6 0 1-.4 1-1s-.4-1-1-1zm0 4c-.6 0-1 .4-1 1s.4 1 1 1h7c.6 0 1-.4 1-1s-.4-1-1-1z" />
</svg>
<!-- Text to appear on hover -->
<span class="tooltip-text" id="todoListHover">ToDo List</span>
</div>
<!-- Centered Icon Container -->
<div id="todoContainer" class="todo-container" style="display: none;">
<h2 id="todoListHeading">To Do List</h2>
<div class="addTaskCont">
<input id="todoInput" placeholder="Add task..." type="text" autocomplete="off">
<div class="searchControls">
<!-- Add Button -->
<button id="todoAdd">+</button>
</div>
</div>
<ul class="todolist" id="todoullist">
</ul>
</div>
<!-- --------------------- Bookmark System --------------------- -->
<div style="display: none;">
<svg id="folderIconTemplate" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24">
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M3 6v10.8c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.427.218.987.218 2.105.218h11.606c1.118 0 1.677 0 2.104-.218c.377-.192.683-.498.875-.874C21 18.48 21 17.92 21 16.8V9.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C19.48 6 18.92 6 17.8 6H12M3 6h9M3 6a2 2 0 0 1 2-2h3.675c.489 0 .734 0 .964.055q.308.075.578.24c.202.124.375.297.72.643L12 6" />
</svg>
</div>
<div class="bookmark-button" id="bookmarkButton">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M7 2a3 3 0 0 0-3 3v15.138a1.5 1.5 0 0 0 2.244 1.303l5.26-3.006a1 1 0 0 1 .992 0l5.26 3.006A1.5 1.5 0 0 0 20 20.138V5a3 3 0 0 0-3-3z"
clip-rule="evenodd" />
</svg>
<!-- Text to appear on hover -->
<span class="tooltip-text" id="bookmarksHover">Bookmarks</span>
</div>
<div id="bookmarksContainer">
<div id="bookmarkSidebar" class="bookmark-sidebar">
<div class="topOutRoundCorner">
<svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg">
<path class="lessDark" d="M30 0L0 0C16.5685 0 30 13.4315 30 30L30 0Z" />
</svg>
</div>
<div class="bookmark-sidebar-header">
<h2 id="bookmarksHeading">Bookmarks</h2>
</div>
<div class="bookmark-search-container">
<input type="text" id="bookmarkSearch" placeholder="Search bookmark" />
<button id="clearSearchButton">✖</button>
</div>
<!-- Adding Sorting buttons along with View Container -->
<div class="bookmark-controls-container">
<div class="bookmark-control-group">
<h3 id="bookmarkSortBy">Sort by</h3>
<div class="button-group">
<button id="sortAlphabetical" class="bookmark-sort-button active">A-Z</button>
<button id="sortTimeAdded" class="bookmark-sort-button">Old-New</button>
</div>
</div>
<div class="bookmark-control-group">
<h3 id="bookmarkViewAs">View as</h3>
<div class="button-group">
<input type="checkbox" id="bookmarkGridCheckbox" hidden />
<button id="bookmarkViewGrid" class="bookmark-view-as-button">Grid</button>
<button id="bookmarkViewList" class="bookmark-view-as-button">List</button>
</div>
</div>
</div>
<ul id="bookmarkList"></ul>
</div>
</div>
<!-- Edit Bookmark Modal -->
<div id="editBookmarkModal">
<div class="modal-content">
<h2 id="editBookmarkHeading">Edit Bookmark</h2>
<img id="editBookmarkFavicon" src="" alt="Favicon">
<div class="floating-label-field">
<input type="text" id="editBookmarkName" autocomplete="off" />
<label for="editBookmarkName" id="editBookmarkNameLabel">Bookmark Name</label>
</div>
<div class="floating-label-field">
<input type="url" id="editBookmarkURL" autocomplete="off" />
<label for="editBookmarkURL" id="editBookmarkURLLabel">Bookmark URL</label>
</div>
<div class="modal-buttons">
<button id="saveBookmarkChanges">Save</button>
<button id="cancelBookmarkEdit">Cancel</button>
</div>
</div>
</div>
<!----------------------- End of Bookmark System ----------------------->
<!----------------------- 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://www.youtube.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="47" height="47" viewBox="1 0 24 24">
<g fill="none" fill-rule="evenodd">
<path
d="m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z" />
<path fill="currentColor"
d="M12 4c.855 0 1.732.022 2.582.058l1.004.048l.961.057l.9.061l.822.064a3.8 3.8 0 0 1 3.494 3.423l.04.425l.075.91c.07.943.122 1.971.122 2.954s-.052 2.011-.122 2.954l-.075.91l-.04.425a3.8 3.8 0 0 1-3.495 3.423l-.82.063l-.9.062l-.962.057l-1.004.048A62 62 0 0 1 12 20a62 62 0 0 1-2.582-.058l-1.004-.048l-.961-.057l-.9-.062l-.822-.063a3.8 3.8 0 0 1-3.494-3.423l-.04-.425l-.075-.91A41 41 0 0 1 2 12c0-.983.052-2.011.122-2.954l.075-.91l.04-.425A3.8 3.8 0 0 1 5.73 4.288l.821-.064l.9-.061l.962-.057l1.004-.048A62 62 0 0 1 12 4m-2 5.575v4.85c0 .462.5.75.9.52l4.2-2.425a.6.6 0 0 0 0-1.04l-4.2-2.424a.6.6 0 0 0-.9.52Z" />
</g>
</svg>
</div>
<div class="label short">YouTube</div>
</a>
<a href="https://mail.google.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="46" height="46" viewBox="1 0 24 24">
<path fill="currentColor"
d="M20 18h-2V9.25L12 13L6 9.25V18H4V6h1.2l6.8 4.25L18.8 6H20m0-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2" />
</svg>
</div>
<div class="label short">Gmail</div>
</a>
<a href="https://music.youtube.com/" class="icon-item">
<div class="menuicon">
<svg xmlns="http://www.w3.org/2000/svg" width="46" height="46" viewBox="0 0 24 24">
<g fill="currentColor" fill-rule="evenodd" clip-rule="evenodd">
<path
d="M8.217 8.286C9.265 7.254 10.514 6.743 12 6.743s2.735.51 3.783 1.543s1.562 2.258 1.562 3.714s-.514 2.68-1.562 3.713s-2.297 1.543-3.783 1.543s-2.735-.51-3.783-1.543S6.655 13.455 6.655 12s.514-2.682 1.562-3.714m6.977 3.715L10 14.91V9.088z" />
<path
d="M19.071 18.966Q22.001 16.08 22 12q0-4.081-2.929-6.967Q16.141 2.147 12 2.147T4.929 5.033T2 12q0 4.08 2.929 6.966q2.93 2.886 7.071 2.886q4.142 0 7.071-2.886M12 5.433c-1.827 0-3.407.644-4.702 1.92C6.002 8.63 5.345 10.19 5.345 12c0 1.809.657 3.37 1.953 4.646c1.295 1.276 2.874 1.92 4.702 1.92s3.407-.644 4.702-1.92c1.296-1.276 1.953-2.837 1.953-4.646c0-1.81-.657-3.37-1.953-4.647c-1.295-1.276-2.875-1.92-4.702-1.92" />
</g>
</svg>
</div>
<div class="label short">YTMusic</div>
</a>
<a href="https://maps.google.com/" class="icon-item">
<div class="menuicon">
<svg width="36" height="36" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path fill="currentColor"
d="M4.456 12.367c-.515-1.143-.829-2.42-.83-3.994.001-2.05.739-3.927 1.962-5.383A8.354 8.354 0 0 1 12 0c.882 0 1.732.137 2.53.39a8.393 8.393 0 0 1 4.9 4.124c-.006.008 0 0 0 0a8.334 8.334 0 0 1 .943 3.859c0 5.078-3.256 7.061-6.05 11.429C12.625 22.426 13.096 24 12 24c-1.096 0-.625-1.574-2.323-4.198-1.955-3.058-4.057-4.854-5.221-7.435Zm5.096-6.059-.008.01a3.202 3.202 0 0 0 4.893 4.133l.03-.035a3.202 3.202 0 0 0-4.915-4.107z" />
</svg>
</div>
<div class="label short">Maps</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="42" height="42" 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" viewBox="0 0 50 50" width="41" height="41">
<path fill="currentColor"
d="M2 18L2 32 12 32 12 18zM39 9v4.31l-10 9V16H14V6h22C37.66 6 39 7.34 39 9zM29 27.69l10 9V41c0 1.66-1.34 3-3 3H14V34h15V27.69zM12 34v10H5c-1.657 0-3-1.343-3-3v-7H12zM12 6L12 16 2 16zM29 25L39 16 39 34zM49 9.25v31.5c0 .87-1.03 1.33-1.67.75L41 35.8V14.2l6.33-5.7C47.97 7.92 49 8.38 49 9.25z" />
</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="39" height="39" viewBox="0 0 24 24">
<path fill="currentColor"
d="M11.175 22q-.375 0-.75-.15t-.675-.45L2.6 14.25q-.3-.3-.438-.663t-.137-.737t.138-.75t.437-.675L11.4 2.6q.275-.275.65-.438T12.825 2H20q.825 0 1.413.587T22 4v7.175q0 .4-.15.763t-.425.637L12.6 21.4q-.3.3-.675.45t-.75.15M17.5 8q.625 0 1.063-.437T19 6.5t-.437-1.062T17.5 5t-1.062.438T16 6.5t.438 1.063T17.5 8" />
</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="36" height="36" 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="38" height="38" viewBox="0 0 24 24">
<path fill="currentColor"
d="M6.545 14.182c.6 0 1.109-.21 1.528-.627.436-.436.654-.954.654-1.555s-.218-1.109-.654-1.528a2.036 2.036 0 0 0-1.528-.654c-.6 0-1.118.218-1.555.654A2.079 2.079 0 0 0 4.363 12c0 .6.21 1.118.627 1.555.436.418.954.627 1.555.627zm0 4.363c-1.818 0-3.363-.636-4.636-1.909C.636 15.363 0 13.818 0 12s.636-3.363 1.909-4.637c1.273-1.272 2.818-1.908 4.636-1.908a6.39 6.39 0 0 1 3.409.954 6.22 6.22 0 0 1 2.4 2.59h9.464c.6 0 1.109.22 1.527.655.436.418.655.927.655 1.528v5.18c0 .6-.219 1.119-.655 1.556a2.079 2.079 0 0 1-1.527.627h-4.91a2.17 2.17 0 0 1-1.554-.627 2.17 2.17 0 0 1-.627-1.555v-1.364h-2.374a6.009 6.009 0 0 1-2.373 2.618 6.676 6.676 0 0 1-3.435.928Zm4.31-5.727h6.054v3.545h1.636v-1.364a.775.775 0 0 1 .219-.574.816.816 0 0 1 .6-.246.73.73 0 0 1 .573.246.73.73 0 0 1 .246.574v1.364h1.635v-5.181H10.855a4.336 4.336 0 0 0-1.528-2.537 4.193 4.193 0 0 0-2.782-1.008 4.202 4.202 0 0 0-3.081 1.281C2.61 9.772 2.182 10.8 2.182 12c0 1.2.428 2.228 1.282 3.081a4.202 4.202 0 0 0 3.081 1.282c1.055 0 1.982-.327 2.782-.982a4.461 4.461 0 0 0 1.528-2.563z" />
</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="38" height="38" 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" id="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" fill-rule="evenodd"
d="M93.6379 63.9405C89.7543 78.4344 78.4333 89.7554 63.9394 93.639l-7.4405 1.9937c-22.4055 6.0033-35.702 29.0333-29.6984 51.4393l1.9196 7.164c3.8837 14.494-.2601 29.959-10.8704 40.569l-5.5482 5.548c-16.402 16.402-16.402 42.995 0 59.397l5.6221 5.622c10.6102 10.611 14.754 26.075 10.8704 40.569l-1.9936 7.441c-6.0036 22.405 7.2929 45.435 29.6985 51.439l7.4406 1.994c14.4939 3.883 25.8149 15.204 29.6985 29.698l1.9942 7.443c6.0038 22.405 29.0338 35.702 51.4388 29.698l7.442-1.994c14.494-3.883 29.959.26 40.569 10.871l5.271 5.271c16.402 16.402 42.995 16.402 59.397 0l5.347-5.347c10.61-10.61 26.075-14.754 40.569-10.87l7.717 2.068c22.405 6.003 45.435-7.293 51.439-29.699l1.993-7.439c3.884-14.494 15.205-25.815 29.699-29.699l7.441-1.994c22.406-6.003 35.702-29.033 29.699-51.439l-2.068-7.718c-3.884-14.493.26-29.958 10.87-40.569l5.346-5.346c16.402-16.402 16.402-42.995 0-59.397l-5.272-5.272c-10.61-10.61-14.754-26.075-10.87-40.569l1.994-7.441c6.003-22.406-7.293-45.436-29.699-51.4398l-7.441-1.9939c-14.494-3.8836-25.815-15.2046-29.699-29.6984l-1.993-7.4395c-6.004-22.4056-29.034-35.702-51.439-29.6985l-7.441 1.9937c-14.494 3.8836-29.959-.2601-40.569-10.8704l-5.623-5.6227c-16.402-16.402-42.995-16.402-59.397 0l-5.547 5.5476c-10.61 10.6102-26.075 14.754-40.569 10.8704l-7.166-1.92c-22.405-6.0036-45.435 7.2929-51.4388 29.6985l-1.9943 7.4425Z" />
</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" id="rightDiv">
<!-- ---weather stuff--------- -->
<div class="topDiv" id="hideWeather">
<div class="lrectangle bgLightTint">
<div id="conditionText"></div>
<div class="cconnt">
<div class="humidityBar">
<div class="thinLine"></div>
<div class="slider" id="slider">
<div id="humidityLevel"></div>
</div>
</div>
<div class="tilesContainer">
<div class="tiles">
<div class="icon">
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path id="darkFeelsLikeIcon" class="accentColor"
d="M8 10.255V5a4 4 0 0 1 8 0v5.255a7 7 0 1 1-8 0ZM8 16a4 4 0 1 0 8 0H8Z" />
</svg>
</div>
<span id="feelsLike"></span>
</div>
<div class="tiles location">
<div class="icon">
<img class="location-icon" src="./svgs/location.svg" alt="">
</div>
<span class="location_spn" id="location"></span>
</div>
</div>
<!-- end of tilesContainer -->
</div>
</div>
<!-- -----rAndakar-------- -->
<div class="rAndakar">
<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="" 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 20.014A15.01 15.01 0 0 1 9.399 9.4a15.012 15.012 0 0 1 21.229 0 15.01 15.01 0 0 1 4.396 10.614 15.01 15.01 0 0 1-4.396 10.614 15.012 15.012 0 0 1-21.23 0 15.01 15.01 0 0 1-4.396-10.614ZM20.013 0A20.016 20.016 0 0 0 3.729 8.38a20.013 20.013 0 0 0 2.417 26.063 20.015 20.015 0 0 0 17.547 5.244 20.015 20.015 0 0 0 8.593-3.862l8.474 8.473a2.502 2.502 0 0 0 3.538-3.538l-8.474-8.473a20.013 20.013 0 0 0 2.166-21.075A20.016 20.016 0 0 0 20.012 0Zm0 30.02a10.008 10.008 0 0 0 7.076-2.93 10.007 10.007 0 0 0 0-14.152 10.008 10.008 0 0 0-17.084 7.076A10.007 10.007 0 0 0 20.012 30.02Z"
fill-rule="evenodd" />
</svg>
</div>
<div class="searchIcon">
<!-- Dropdown Button -->
<div class="dropdown search-dropdown">
<!-- Default Search Engine -->
<button id="default-dropdown-item" style="cursor: pointer;" role="button" class="dropdown-btn">
<div id="default-dropdown" data-default data-engine-name="default" data-engine="0"
class="dropdown-item">
<svg width="30" height="30">
<use href="#default-engine-icon" />
</svg>
<span class="engine-name" id="defaultEngineDD">
Default
</span>
</div>
</button>
<div class="dropdown-content">
<!-- Default Google Icon -->
<div id="google-dropdown" data-engine-name="google" data-engine="1" class="dropdown-item">
<svg width="30" height="30">
<use href="#google-engine-icon" />
</svg>
<span class="engine-name" id="googleEngineDD">
Google
</span>
</div>
<!-- Duck -->
<div data-engine="2" data-engine-name="duck" id="duck-dropdown" class="dropdown-item">
<svg width="30" height="30">
<use href="#duck-engine-icon" />
</svg>
<span class="engine-name" id="duckEngineDD">
Duck
</span>
</div>
<!-- Bing -->
<div data-engine="3" data-engine-name="bing" id="bing-dropdown" class="dropdown-item">
<svg width="30" height="30">
<use href="#bing-engine-icon" />
</svg>
<span class="engine-name" id="bingEngineDD">
Bing
</span>
</div>
<div data-engine="4" data-engine-name="brave" id="brave-dropdown" class="dropdown-item">
<svg width="30" height="30">
<use href="#brave-engine-icon" />
</svg>
<span class="engine-name" id="braveEngineDD">
Brave
</span>
</div>
<div data-engine="5" data-engine-name="youtube" id="youtube-dropdown" class="dropdown-item">
<svg width="30" height="30">
<use href="#youtube-engine-icon" />
</svg>
<span class="engine-name" id="youtubeEngineDD">
YouTube
</span>
</div>
<div data-engine="6" data-engine-name="gImages" id="gImages-dropdown" class="dropdown-item">
<svg width="30" height="30">
<use href="#gImages-engine-icon" />
</svg>
<span class="engine-name" id="gImagesEngineDD">Images</span>
</div>
<div data-engine="7" data-engine-name="reddit" id="reddit-dropdown" class="dropdown-item">
<svg width="30" height="30">
<use href="#reddit-engine-icon" />
</svg>
<span class="engine-name" id="redditEngineDD">Reddit</span>
</div>
<div data-engine="8" data-engine-name="wikipedia" id="wikipedia-dropdown"
class="dropdown-item">
<svg width="30" height="30">
<use href="#wikipedia-engine-icon" />
</svg>
<span class="engine-name" id="wikipediaEngineDD">Wikipedia</span>
</div>
<div data-engine="9" data-engine-name="quora" id="quora-dropdown" class="dropdown-item">
<svg width="30" height="30">
<use href="#quora-engine-icon" />
</svg>
<span class="engine-name" id="quoraEngineDD">Quora</span>
</div>
</div>
</div>
</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 -1 24 24" height="100%" width="100%">
<path class="accentColor"
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 Engine SVG Definitions -->
<svg style="display: none;">
<symbol id="default-engine-icon" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path style="transform: scale(0.95); transform-origin: center;"
d="M12 22q-2.075 0-3.9-.788t-3.175-2.137T2.788 15.9T2 12t.788-3.9t2.137-3.175T8.1 2.788T12 2t3.9.788t3.175 2.137T21.213 8.1T22 12t-.788 3.9t-2.137 3.175t-3.175 2.138T12 22m0-2q3.35 0 5.675-2.325T20 12q0-.175-.012-.363t-.013-.312q-.125.725-.675 1.2T18 13h-2q-.825 0-1.412-.587T14 11v-1h-4V8q0-.825.588-1.412T12 6h1q0-.575.313-1.012t.762-.713q-.5-.125-1.012-.2T12 4Q8.65 4 6.325 6.325T4 12h5q1.65 0 2.825 1.175T13 16v1h-3v2.75q.5.125.988.188T12 20" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="google-engine-icon" viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg">
<path
d="M24.805 12.0177c.1309.7383.1961 1.4863.195 2.2357 0 3.3466-1.2204 6.1763-3.3441 8.0916h.0028C19.8016 24.0265 17.2487 25 14.2216 25c-2.9761 0-5.8304-1.1589-7.9349-3.2217C4.1823 19.7154 3 16.9176 3 14.0004c0-2.9173 1.1823-5.7151 3.2867-7.778 2.1045-2.0628 4.9588-3.2217 7.9349-3.2217 2.7857-.032 5.476.9939 7.5073 2.8627l-3.2038 3.1404c-1.1581-1.0822-2.7037-1.6747-4.3035-1.65-2.9274 0-5.4144 1.936-6.301 4.5429a6.4654 6.4654 0 0 0 0 4.2115h.0043c.8907 2.6028 3.3735 4.5387 6.3009 4.5387 1.5121 0 2.811-.3795 3.8182-1.0505h-.0042a5.1412 5.1412 0 0 0 1.4705-1.4462 5.0327 5.0327 0 0 0 .7724-1.8963h-6.0611v-4.2348l10.5834-.0014Z" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="duck-engine-icon" viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM12 4a5 5 0 0 1 2.86 9.1c1.58.15 3.36.51 5.14 1.4 3 1.5 4-.5 4-.5s-1 9-7 9h-6s-5 0-5-5c0-3 3-4 2-6-4 0-4-3.5-4-3.5 1 .5 2.24.5 3 .15A5.02 5.02 0 0 1 12 4Z" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="bing-engine-icon" viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg">
<path
d="M22.9991 13.1645a.4638.4638 0 0 0-.0872-.2527.4546.4546 0 0 0-.2112-.1608l-8.8313-2.7685c-.1648-.0514-.24.0372-.1676.1963l1.6424 3.6516c.0725.16.2598.3496.416.422l2.2533 1.0442c.1562.0724.16.1991.0075.281l-9.6135 5.1749c-.1515.082-.1713.0534-.0433-.0638l3.6933-3.3668a.8237.8237 0 0 0 .2335-.5315l.0037-10.2051a.4647.4647 0 0 0-.0874-.2533.456.456 0 0 0-.2119-.1612L8.2993 5.0133C8.1346 4.962 8 5.0638 8 5.2401v15.481c0 .1763.1148.403.256.504l3.7554 2.6932c.1412.101.3765.1096.5243.019l10.1951-6.2143a.623.623 0 0 0 .1902-.2097A.6332.6332 0 0 0 23 17.24v-4.0755h-.0009Z" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="brave-engine-icon" viewBox="0 -0.5 24 24" xmlns="http://www.w3.org/2000/svg">
<path
d="m15.013 2 1.716 1.983s1.507-.426 2.218.299a62 62 0 0 1 1.298 1.364l-.46 1.152.585 1.705s-1.723 6.65-1.925 7.463c-.398 1.599-.67 2.217-1.8 3.027a152 152 0 0 1-3.742 2.584c-.287.2-.608.423-.903.423s-.617-.224-.904-.423q-.117-.083-.226-.153a152 152 0 0 1-3.516-2.43c-1.13-.811-1.402-1.43-1.8-3.028-.202-.812-1.925-7.463-1.925-7.463l.586-1.705-.46-1.152s.585-.64 1.297-1.364c.711-.725 2.218-.299 2.218-.299L8.986 2zM7.751 5.241s-2.207 2.719-2.207 3.3c0 .48.19.668.414.89q.07.069.143.146l1.655 1.79.054.057c.165.169.409.418.237.832l-.035.084c-.189.449-.42 1.002-.125 1.563.314.597.853.995 1.199.93.345-.067 1.156-.498 1.454-.696s1.243-.991 1.243-1.295c0-.253-.68-.675-1.01-.88l-.147-.093-.162-.104c-.301-.19-.845-.536-.859-.688-.017-.188-.01-.244.233-.709.051-.099.112-.205.174-.315.232-.405.49-.86.433-1.184-.064-.368-.63-.578-1.107-.757l-.175-.065-.498-.19v-.001a44 44 0 0 1-1.096-.426c-.12-.057-.09-.11.277-.146l.178-.019c.455-.05 1.292-.14 1.7-.024l.264.073c.457.127 1.018.281 1.072.37l.027.042c.052.075.085.123.028.44l-.094.508c-.127.672-.324 1.724-.349 1.96l-.011.095c-.032.263-.053.438.247.508l.078.018c.338.08.834.195 1.014.195.179 0 .675-.116 1.013-.195l.078-.018c.3-.07.279-.245.247-.508l-.01-.095c-.026-.236-.223-1.285-.35-1.957l-.094-.51c-.057-.318-.024-.366.028-.44l.027-.043c.054-.089.615-.243 1.072-.37l.265-.073c.407-.116 1.245-.025 1.699.024l.178.019c.367.035.398.09.277.146-.087.041-.618.244-1.096.426l-.498.19-.174.066c-.479.179-1.043.39-1.108.757-.058.325.202.779.433 1.185.062.109.123.215.175.314.242.465.249.52.232.709-.014.153-.558.497-.86.688-.07.044-.127.08-.16.104l-.148.093c-.33.205-1.01.627-1.01.88 0 .304.945 1.098 1.243 1.295.298.198 1.11.63 1.455.695.345.066.884-.332 1.198-.929.296-.56.064-1.114-.124-1.563l-.036-.084c-.171-.414.072-.663.237-.832l.054-.056 1.655-1.791q.074-.078.144-.146c.223-.222.413-.41.413-.89 0-.581-2.207-3.3-2.207-3.3s-1.863.363-2.114.363c-.2 0-.587-.136-.99-.277l-.307-.107c-.503-.17-.837-.172-.837-.172h.009-.018H12c-.006 0-.34.003-.838.172q-.152.052-.306.107c-.404.141-.79.277-.99.277-.252 0-2.115-.363-2.115-.363m5.688 9.78c-.59-.31-1.325-.575-1.44-.575s-.85.265-1.439.576l-.374.196c-.395.207-.674.354-.78.422-.137.087-.053.251.071.34.125.09 1.797 1.41 1.96 1.556l.065.06c.156.143.356.326.498.326.141 0 .34-.183.497-.326l.066-.06a99 99 0 0 1 1.959-1.555c.124-.09.208-.254.071-.341-.105-.068-.385-.214-.778-.421z" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="youtube-engine-icon" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path style="transform: scale(0.77); transform-origin: center;"
d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="gImages-engine-icon" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg">
<path style="transform: scale(0.92); transform-origin: center;"
d="M24.844 0A.998.998 0 0 0 24 1v10H12.906c-.25.02-.484.129-.656.313v.03a.472.472 0 0 0-.063.063L.25 24.312A1.001 1.001 0 0 0 1 26h10v11a.994.994 0 0 0 .313.75l13 12A1.001 1.001 0 0 0 26 49V39h11a.994.994 0 0 0 .75-.313l12-13A1.001 1.001 0 0 0 49 24H39V13a.994.994 0 0 0-.313-.75l-13-12a.996.996 0 0 0-.843-.25ZM26 3.313 36.5 13l-9.25 9.25A5.037 5.037 0 0 1 26 18.937v-7.031ZM13 13.5l9.25 9.25A5.037 5.037 0 0 1 18.937 24H3.313Zm12 9.063A7.135 7.135 0 0 0 27.438 25 7.135 7.135 0 0 0 25 27.438 7.135 7.135 0 0 0 22.562 25 7.135 7.135 0 0 0 25 22.562ZM31.063 26h15.625L37 36.5l-9.25-9.25A5.037 5.037 0 0 1 31.063 26Zm-8.313 1.75c.77.887 1.25 2.04 1.25 3.313v15.624L13.5 37Z" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="reddit-engine-icon" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<path style="transform: scale(1.24); transform-origin: center;"
d="M213.15 129.22c0-10.376-8.391-18.617-18.617-18.617a18.74 18.74 0 0 0-12.97 5.189c-12.818-9.157-30.368-15.107-49.9-15.87l8.544-39.981 27.773 5.95c.307 7.02 6.104 12.667 13.278 12.667 7.324 0 13.275-5.95 13.275-13.278 0-7.324-5.95-13.275-13.275-13.275-5.188 0-9.768 3.052-11.904 7.478l-30.976-6.562c-.916-.154-1.832 0-2.443.458-.763.458-1.22 1.22-1.371 2.136l-9.464 44.558c-19.837.612-37.692 6.562-50.662 15.872a18.74 18.74 0 0 0-12.971-5.188c-10.377 0-18.617 8.391-18.617 18.617 0 7.629 4.577 14.037 10.988 16.939a33.6 33.6 0 0 0-.458 5.646c0 28.686 33.42 52.036 74.621 52.036 41.202 0 74.622-23.196 74.622-52.036a35 35 0 0 0-.458-5.646c6.408-2.902 10.985-9.464 10.985-17.093M85.272 142.495c0-7.324 5.95-13.275 13.278-13.275 7.324 0 13.275 5.95 13.275 13.275s-5.95 13.278-13.275 13.278c-7.327.15-13.278-5.953-13.278-13.278m74.317 35.251c-9.156 9.157-26.553 9.768-31.588 9.768-5.188 0-22.584-.765-31.59-9.768-1.371-1.373-1.371-3.51 0-4.883 1.374-1.371 3.51-1.371 4.884 0 5.8 5.8 18.008 7.782 26.706 7.782s21.058-1.983 26.704-7.782c1.374-1.371 3.51-1.371 4.884 0 1.22 1.373 1.22 3.51 0 4.883m-2.443-21.822c-7.325 0-13.275-5.95-13.275-13.275s5.95-13.275 13.275-13.275c7.327 0 13.277 5.95 13.277 13.275 0 7.17-5.95 13.275-13.277 13.275" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="wikipedia-engine-icon" viewBox="0 -0.5 32 32" xmlns="http://www.w3.org/2000/svg">
<path style="transform: scale(0.95); transform-origin: center;"
d="M30 9.215a.31.31 0 0 1-.313.308h-1.68l-7.616 16.215a.31.31 0 0 1-.278.18h-.004a.31.31 0 0 1-.28-.172l-3.614-7.168-3.902 7.18a.313.313 0 0 1-.555-.016L4.055 9.523H2.313A.31.31 0 0 1 2 9.215V8.39a.31.31 0 0 1 .313-.309h6.21a.31.31 0 0 1 .313.309v.824a.31.31 0 0 1-.313.308H7.188l5.316 12.262 2.766-5.168-3.508-7.09h-.844a.313.313 0 0 1-.313-.312v-.82c0-.172.141-.313.313-.313h4.598a.31.31 0 0 1 .308.313v.82a.307.307 0 0 1-.308.308h-.813l2.02 4.415 2.402-4.415h-1.473a.31.31 0 0 1-.312-.308v-.82a.31.31 0 0 1 .312-.313h4.465a.31.31 0 0 1 .309.313v.82a.307.307 0 0 1-.309.308h-.98l-3.504 6.372 2.855 5.875L26 9.523h-1.746a.31.31 0 0 1-.313-.308v-.82c0-.172.141-.313.313-.313h5.433a.31.31 0 0 1 .313.313z" />
</symbol>
</svg>
<svg style="display: none;">
<symbol id="quora-engine-icon" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path style="transform: scale(0.67); transform-origin: center;"
d="M7.38.948A11.963 11.963 0 0 1 21.248 19.54l2.41 2.422c.732.736.21 1.99-.828 1.99l-10.71.01a12.52 12.52 0 0 1-.304 0h-.02A11.963 11.963 0 0 1 7.382.95Zm7.322 4.428a7.172 7.172 0 1 0-5.488 13.252 7.172 7.172 0 0 0 5.489-13.252Z" />
</symbol>
</svg>
<!-- ----------search with------------------- -->
<div class="searchWithCont" style="visibility: hidden;" id="search-with-container">
<div class="hint bgLightTint" id="searchWithHint"></div>
<div class="searchEnginesContainer">
<div class="search-engine bgLightTint" data-category="search-with">
<svg width="30" height="30" class="search-engine-icon">
<use href="#default-engine-icon" />
</svg>
<label class="engine-name" id="defaultEngine">Default</label>
<input checked class="radio-button" name="search-engine" type="radio" value="engine0">
</div>
<div class="search-engine bgLightTint" data-category="search-with">
<svg width="30" height="30" class="search-engine-icon">
<use href="#google-engine-icon" />
</svg>
<label class="engine-name" id="googleEngine">Google</label>
<input class="radio-button" name="search-engine" type="radio" value="engine1">
</div>
<div class="search-engine bgLightTint" data-category="search-with">
<svg width="30" height="30" class="search-engine-icon">
<use href="#duck-engine-icon" />
</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" data-category="search-with">
<svg width="30" height="30" class="search-engine-icon">
<use href="#bing-engine-icon" />
</svg>
<label class="engine-name" id="bingEngine" data-category="search-with">Bing</label>
<input class="radio-button" name="search-engine" type="radio" value="engine3">
</div>
<div class="search-engine bgLightTint" data-category="search-with">
<svg width="30" height="30" class="search-engine-icon">
<use href="#brave-engine-icon" />
</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" data-category="search-on">
<svg width="30" height="30" class="search-engine-icon">
<use href="#youtube-engine-icon" />
</svg>
<label class="engine-name" id="youtubeEngine">YouTube</label>
<input class="radio-button" name="search-engine" type="radio" value="engine5">
</div>
<div class="search-engine bgLightTint" data-category="search-on">
<svg width="30" height="30" class="search-engine-icon">
<use href="#gImages-engine-icon" />
</svg>
<label class="engine-name" id="gImagesEngine">Images</label>
<input class="radio-button" name="search-engine" type="radio" value="engine6">
</div>
<div class="search-engine bgLightTint" data-category="search-on">
<svg width="30" height="30" class="search-engine-icon">
<use href="#reddit-engine-icon" />
</svg>
<label class="engine-name" id="redditEngine">Reddit</label>
<input class="radio-button" name="search-engine" type="radio" value="engine7">
</div>
<div class="search-engine bgLightTint" data-category="search-on">
<svg width="30" height="30" class="search-engine-icon">
<use href="#wikipedia-engine-icon" />
</svg>
<label class="engine-name" id="wikipediaEngine">Wikipedia</label>
<input class="radio-button" name="search-engine" type="radio" value="engine8">
</div>
<div class="search-engine bgLightTint" data-category="search-on">
<svg width="30" height="30" class="search-engine-icon">
<use href="#quora-engine-icon" />
</svg>
<label class="engine-name" id="quoraEngine">Quora</label>
<input class="radio-button" name="search-engine" type="radio" value="engine9">
</div>
</div>
</div>
<!-- ----------end of search with------------- -->
<div class="quotesCont" id="motivationalQuotesCont">
<div class="quotesContainer">
</div>
<div class="authorWrapper">
<div class="authorName"><span></span></div>
<div class="qtRounder">
<svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg">
<path class="lessDark targeted" d="M30 0L0 0C16.5685 0 30 13.4315 30 30L30 0Z" />
</svg>
</div>
<div class="qtRounder2">
<svg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg">
<path class="lessDark targeted" d="M30 0L0 0C16.5685 0 30 13.4315 30 30L30 0Z" />
</svg>
</div>
</div>
</div>
</div>
<!-- --------end of rightDiv---------------------- -->
</div>
<!---End of centerDiv--->
<!-- ------shortcuts------------------ -->
<div id="shortcuts-section">
<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="aiToolsIcon">
<div class="icon">
<svg height="100%" viewBox="0 0 280 280" width="100%" xmlns="http://www.w3.org/2000/svg">
<path id="aiIcon" class="accentColor"
d="M152 178c0-14.359 11.641-26 26-26h76c14.359 0 26.275 11.76 23.393 25.827-10.238 49.97-49.596 89.328-99.566 99.566C163.76 280.275 152 268.359 152 254v-76Zm-24 5.26c0 23.163-28.006 34.764-44.385 18.385L8.782 126.811c-5.35-5.35-8.252-12.794-6.994-20.255 8.778-52.04 48.96-93.412 100.382-103.949C116.237-.275 128 11.641 128 26v157.26ZM0 214.74c0-23.163 28.006-34.764 44.385-18.385l83.609 83.609c.004.004.006.01.006.015a.02.02 0 0 1-.021.021H26c-14.36 0-26-11.641-26-26v-39.26ZM152 26c0-14.36 11.641-26 26-26h76c14.359 0 26 11.64 26 26v76c0 14.359-11.641 26-26 26h-76c-14.359 0-26-11.641-26-26V26Z" />
</svg>
</div>