-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
7348 lines (7125 loc) · 566 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<title>Phone</title>
<link rel="stylesheet" href="./css/modules/emojionearea.css" />
<link rel="stylesheet" href="./css/device.css" />
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/modules/numberpicker.css" />
<link rel="stylesheet" href="./css/modules/tooltip.css" />
<link rel="stylesheet" href="./css/apps/settings.css" />
<link rel="stylesheet" href="./css/apps/phone.css" />
<link rel="stylesheet" href="./css/apps/twitter.css" />
<link rel="stylesheet" href="./css/apps/bank.css" />
<link rel="stylesheet" href="./css/apps/health.css" />
<link rel="stylesheet" href="./css/apps/whatsapp.css" />
<link rel="stylesheet" href="./css/apps/tiktok.css" />
<link rel="stylesheet" href="./css/apps/uberRider.css">
<link rel="stylesheet" href="./css/apps/garage.css" />
<link rel="stylesheet" href="https://cdn.rawgit.com/ichord/At.js/master/dist/css/jquery.atwho.css" />
<link rel="stylesheet" href="./css/apps/darkweb.css" />
<link rel="stylesheet" href="./css/apps/mail.css" />
<link rel="stylesheet" href="./css/apps/racing.css" />
<link rel="stylesheet" href="./css/apps/state.css" />
<link rel="stylesheet" href="./css/apps/calendar.css" />
<link rel="stylesheet" href="./css/apps/crypto.css" />
<link rel="stylesheet" href="./css/apps/jobcenter.css" />
<link rel="stylesheet" href="./css/apps/houses.css" />
<link rel="stylesheet" href="./css/apps/tinder.css" />
<link rel="stylesheet" href="./css/apps/clock.css" />
<link rel="stylesheet" href="./css/modules/iosmodals.css" />
<link rel="stylesheet" href="./css/apps/gallery.css" />
<link rel="stylesheet" href="./css/apps/messages.css" />
<link rel="stylesheet" href="./css/apps/youtube.css" />
<link rel="stylesheet" href="./css/apps/store.css" />
<link rel="stylesheet" href="./css/modules/controlcenter.css" />
<link rel="stylesheet" href="./css/modules/homescreen.css" />
<link rel="stylesheet" href="./css/modules/lockscreen.css" />
<link rel="stylesheet" href="./css/modules/dynamicisland.css" />
<link rel="stylesheet" href="./css/modules/widgetcenter.css" />
<link rel="stylesheet" href="./css/modules/applibrary.css" />
<link rel="stylesheet" href="./css/modules/closedapps.css" />
<link rel="stylesheet" href="./css/modules/instagram-filters.min.css" />
<link rel="stylesheet" href="./css/modules/pincode.css" />
<link rel="stylesheet" href="./css/apps/weather.css" />
<link rel="stylesheet" href="./css/apps/calculator.css" />
<link rel="stylesheet" href="./css/apps/spotify.css" />
<link rel="stylesheet" href="./css/modules/slick.css" />
<link rel="stylesheet" href="./css/apps/instagram.css" />
<link rel="stylesheet" href="./css/apps/discord.css" />
<link rel="stylesheet" href="./css/apps/facetime.css" />
<link rel="stylesheet" href="./css/apps/yellowpages.css" />
<link rel="stylesheet" href="./css/apps/uber.css">
<link rel="stylesheet" href="./css/apps/notes.css">
<link rel="stylesheet" href="./css/apps/rentel.css">
<link rel="stylesheet" href="./css/apps/market.css">
<link rel="stylesheet" href="./css/apps/map.css">
<link rel="stylesheet" href="./css/apps/weazel.css">
<link rel="stylesheet" href="./css/apps/darkchat.css">
<link rel="stylesheet" href="./css/apps/reminder.css" />
<link rel="stylesheet" href="./css/apps/camera.css" />
<link rel="stylesheet" href="./css/modules/star-rating.svg.css" />
<link rel="stylesheet" href="./css/modules/bootstrap.css" />
<link rel="stylesheet" href="./css/modules/startup.css" />
<link rel="stylesheet" href="./css/themes.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/3.1.5/purify.min.js" integrity="sha512-JatFEe90fJU2nrgf27fUz2hWRvdYrSlTEV8esFuqCtfiqWN8phkS1fUl/xCfYyrLDQcNf3YyS0V9hG7U4RHNmQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://use.fortawesome.com/1ce05b4b.js"></script>
<script src="https://code.jquery.com/jquery-3.6.4.min.js" integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js" integrity="sha256-lSjKY0/srUM9BE3dPm+c4fBo1dky2v27Gdjm2uoZaL0=" crossorigin="anonymous"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.13.0/moment.min.js'></script>
<script src="https://apis.google.com/js/api.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.min.css" integrity="sha512-h9FcoyWjHcOcmEVkxOfTLnmZFWIH0iZhZT1H2TbOq55xssQGEJHEaIm+PgoUaZbRvQTNTluNOEfb1ZRy6D3BOw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.min.js" integrity="sha512-puJW3E/qXDqYp9IfhAI54BJEaWIfloJ7JWs7OeD5i6ruC9JZL1gERT1wjtwXFlh7CjE7ZJ+/vcRZRkIYIb6p4g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<link rel="stylesheet" href="./css/tailwind.css">
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
<script src="./js/modules/langdata.js"></script>
</head>
<body style="background-color: transparent;">
<div class="stopDraggingPhone">Confirm</div>
<div id="spotify-play"></div>
<div id="youtube-otherPlays"></div>
<div class="race-container">
<div class="ui">
<div class="editor">
<span id="editor-racename">Race: Test Race</span>
<span id="editor-checkpoints">Checkpoints: 1 / ?</span>
<span id="editor-keys-add">+ ] / - [ - Tire Distance: [dist]</span>
<span id="editor-keys-tiredistance">7 - Add Checkpoint</span>
<span id="editor-keys-delete">8 - Delete Checkpoint</span>
<span id="editor-keys-cancel">9 - Cancel Editor</span>
<span id="editor-keys-save">K - Save Race</span>
</div>
<div class="race">
<span id="race-racename">Race: Test Race</span>
<span id="race-checkpoints">Checkpoints: 1 / 1</span>
<span id="race-lap">Lap: 1 / 1</span>
<span id="race-time">Current Lap: </span>
<span id="race-besttime">Best Lap: </span>
<span id="race-totaltime">Total Time: </span>
</div>
</div>
</div>
<template id="phone-widget-container">
<section class="phone-widget-container">
<section class="weather-widget phone-widget phone-application" data-app='weather-widget'>
<header class="flex flex-col">
<span>
<a class="font-bold tracking-1">Los Santos</a>
<i class="fas fa-paper-plane text-sm"></i>
</span>
<a class="weather-degree">7°</a>
</header>
<footer class="flex flex-col gap-2">
<img alt="" width="18" height="18" class="weather-icon">
<a class="weather-type text-sm">Clear</a>
</footer>
</section>
<a class="phone-widget-name">Weather</a>
</section>
<section class="phone-widget-container">
<section class="crypto-widget phone-widget phone-application" data-app='crypto-widget'>
<header class="flex flex-row items-center justify-between w-full">
<a class="ellipsis crypto-widget-name">BTC</a>
<span class="graph-info-small">+2.18 (3.71%)</span>
</header>
<div class="crypto-graph"></div>
<div class="graph-info">
<span class="graph-info-big">634.39</span>
</div>
</section>
<a class="phone-widget-name">Crypto</a>
</section>
<section class="phone-widget-container">
<section class="calendar-widget phone-widget phone-application" class="overflow-hidden" data-app='clock-widget'>
<div class="calendarioWrapper"></div>
</section>
<a class="phone-widget-name">Calendar</a>
</section>
<section class="phone-widget-container">
<section class="map-widget phone-widget phone-application" class="overflow-hidden" data-app='map-widget'>
<div class="map-widget-map w-full h-full"></div>
</section>
<a class="phone-widget-name">Map</a>
</section>
<section class="phone-widget-container">
<section class="notes-widget phone-widget phone-application" data-app='notes-widget'>
<header id="notes-widget-header">
<i class="fa-solid fa-folder"></i>
<a>Notes</a>
</header>
<section class="notes-widget-list self-start w-full overflow-y">
</section>
</section>
<a class="phone-widget-name">Notes</a>
</section>
<section class="phone-widget-container">
<section class="gallery-widget phone-widget phone-application" data-app='gallery-widget'></section>
<a class="phone-widget-name">Gallery</a>
</section>
<section class="phone-widget-container">
<section class="reminder-widget phone-widget phone-application" data-app='reminder-widget'>
<div class="reminder-widget-information">
<div class="reminder-icon">
<i class="fa-solid fa-list"></i>
</div>
<p class="reminder-widget-count" id="total-reminders-widget-count">0</p>
</div>
<header id="reminder-widget-header">
<a>Reminders</a>
</header>
<section class="reminder-widget-list self-start w-full overflow-y">
</section>
</section>
<a class="phone-widget-name">Reminder</a>
</section>
<section class="phone-widget-container">
<div class="weazel-widget phone-widget phone-application" data-app='weazel-widget'>
<header id="weazel-widget-header">
<h7>Top Stories</h7>
<img src="img/app_details/news.png">
</header>
<article class="weazel-widget-contents w-full"></article>
</div>
<a class="phone-widget-name">Weazel</a>
</section>
<section class="phone-widget-container">
<div class="battery-widget phone-widget phone-application" data-app="battery-widget">
<div class="batteryInfo">
<div class="iconWrapper high">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<path d="M14 59a3 3 0 0 0 3 3h30a3 3 0 0 0 3-3v-9H14zM50 5a3 3 0 0 0-3-3H17a3 3 0 0 0-3 3v5h36zm0 45V10m-36 0v40">
</path>
<circle cx="32" cy="56" r="2"></circle>
</svg>
</div>
<a class="battery-charge" style="font-size: 2.5rem;">100%</a>
</div>
</div>
<a class="phone-widget-name">Battery</a>
</section>
<section class="phone-widget-container">
<div class="spotify-widget phone-widget phone-application" data-app='spotify-widget'>
<div class="spotify-widget-header">
<img src="img/apps/spotify.png">
<div id="spotify-widget-content">
<a id="spotify-widget-author" class="artist widget-artist">Artist</a>
<a id="spotify-widget-title" class="track widget-track">Song Name</a>
</div>
</div>
<div class="player">
<div class="prevTrack" onmousedown="event.stopPropagation()" onclick="spotifyPlayerPrevTrack(event)">
<i class="fa fa-step-backward" aria-hidden="true"></i>
</div>
<div class="playBtn" onmousedown="event.stopPropagation()" onclick="playPauseCheck(event)"><i class="fa fa-play" aria-hidden="true"></i></div>
<div class="nextTrack" onmousedown="event.stopPropagation()" onclick="spotifyPlayerNextTrack(event)">
<i class="fa fa-step-forward" aria-hidden="true"></i>
</div>
</div>
</div>
<a class="phone-widget-name">Spotify</a>
</section>
</template>
<template id="instagram-post-template">
<header onclick="{{onclick_header}}">
<img alt="" src="{{avatar}}" class="post_owner_image">
<a class="post_owner">{{username}}</a>
{{verified}}
</header>
<figure class="{{filter}}">
{{post_image}}
</figure>
<div class="actions justify-between">
<div class="left">
<button type="button" onclick="{{onclick_like}}">
{{like_icon}}
</button>
<button type="button" class="instagram-view-comments" onclick="{{onclick_view_comments}}">
<svg height="24" role="img" viewBox="0 0 24 24" width="24">
<path d="M20.656 17.008a9.993 9.993 0 10-3.59 3.615L22 22z" fill="none" stroke="currentColor" stroke-linejoin="round" stroke-width="2"></path>
</svg>
</button>
</div>
{{delete}}
</div>
<div class="infos">
<div class="likes">{{likes}}</div>
<div class="postName">
<span class="bold">{{username}}</span>
<span class="modern-ellipsis">{{description}}</span>
</div>
<div class="instagram-view-comments text-muted" onclick="{{onclick_view_comments}}">{{comments}}</div>
<div class="post_time">{{date}}</div>
</div>
</template>
<template id="messages-app-chat-template">
{{read}}
<img class="messages-app-body-messagePP" src="{{avatar}}" alt="Avatar">
<div class="messages-app-body-message-content">
<a class="message-app-body-messageOwner">{{name}}</a>
<a class="message-app-body-lastMessage">{{last_message}}</a>
</div>
<a class="messages-app-body-messageTime">{{time}}</a>
<i class="fas fa-chevron-right messages-app-body-message-right"></i>
</template>
<section id="camera-helper-text" class="hidden absolute left-0 z-9999999999 top-0">
<div class="text-red-500">
<div class="text text-press">Press</div>
<div class="letter enter-key">↵</div>
<div class="text text-take-cam">to take a photo</div>
</div>
<div class="text-blue-500">
<div class="text text-press">Press</div>
<div class="letter">Alt</div>
<div class="text text-rotate-cam">to rotate the camera</div>
</div>
<div class="text-blue-500">
<div class="text text-press">Press</div>
<div class="letter">Q</div>
<div class="text text-flip-cam">to flip the camera</div>
</div>
</section>
<template class="calendar-icon">
<a class="calendar-day text-red-500 font-semibold"></a>
<a class="calendar-date text-black- text-3-5xl"></a>
</template>
<section id="phone-device-container">
<figure id="phone-device">
<figure id="phone-dynamic-island-container">
<figure id="phone-camera"></figure>
<header id="phone-dynamic-island">
<div id="phone-notification-container" class="phone-notification-container phone-dynamic-island-child">
<div class="notification-icon"></div>
<div class="flex flex-col">
<div class="notification-title text-white-"></div>
<div class="notification-text text-muted text-sm"></div>
</div>
</div>
<div class="phone-spotify-island phone-dynamic-island-child flex-col justify-center pt-3 pb-3">
<header class="flex flex-row items-center gap-4 px-4 justify-between">
<div class="flex flex-row items-center gap-4">
<img src="https://i1.sndcdn.com/artworks-000176581039-ec258e-t500x500.jpg" alt="" width="40" height="40" class="rounded-full spotify-song-thumbnail">
<div class="flex flex-col gap-1" id="phone-spotify-island-informations">
<a class="artist text-white- widget-artist">Artist</a>
<a class="track text-white- widget-track">Track</a>
</div>
</div>
<div class="audio-icon is-active">
<div class="audio-icon-nib"></div>
<div class="audio-icon-nib"></div>
<div class="audio-icon-nib"></div>
<div class="audio-icon-nib"></div>
<div class="audio-icon-nib"></div>
</div>
</header>
<footer class="flex flex-col gap-6 w-full">
<article class="flex flex-row items-center w-full timeline">
<span class="current-time">00:00</span>
<div class="slider" data-direction="horizontal">
<div class="spotify-progress">
<div class="pin" id="progress-pin" data-method="rewind"></div>
</div>
</div>
<span class="total-time">02:00</span>
</article>
<article class='player flex flex-row items-center w-full justify-around mt-3'>
<div class="prevTrack text-white-" onclick="spotifyPlayerPrevTrack(event)">
<i class="fa fa-step-backward text-white-" aria-hidden="true"></i>
</div>
<div class="playBtn text-white-" onclick="playPauseCheck(event)">
<i class="fa fa-play text-white-" aria-hidden="true"></i>
</div>
<div class="nextTrack text-white-" onclick="spotifyPlayerNextTrack(event)">
<i class="fa fa-step-forward text-white-" aria-hidden="true"></i>
</div>
</article>
</footer>
</div>
<div class="phone-lockscreen-island phone-dynamic-island-child flex-col justify-center pt-3 pb-3">
<header class="flex flex-row items-center gap-4 px-4 justify-between relative bottom-0-15rem">
<div class="lockIcon"></div>
<div class="face-id-wrapper">
<svg class="face-id-default" version="1.1" viewBox="0 0 30 30">
<path d="M12.062 20c.688.5 1.688 1 2.938 1s2.25-.5 2.938-1M20 12v2M10 12v2M15 12v4a1 1 0 0 1-1 1" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" />
<g fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10">
<path d="M26 9V6a2 2 0 0 0-2-2h-3M9 4H6a2 2 0 0 0-2 2v3M21 26h3a2 2 0 0 0 2-2v-3M4 21v3a2 2 0 0 0 2 2h3" />
</g>
</svg>
<div class="circle green"></div>
<div class="circle blue"></div>
<div class="circle purple"></div>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80">
<path class="path-tick" stroke="#FFF" stroke-width="5" fill="none" stroke-linecap="butt" stroke-linejoin="butt" d="M 25,45 35,55 60,30" />
</svg>
</div>
</header>
</div>
<div class="phone-low-battery-island phone-dynamic-island-child flex flex-row items-center justify-between px-4">
<a class="text-white- island-low-battery">Low Battery</a>
<article class="flex flex-row items-center">
<a class="text-red-400 text-sm" id="phone-low-battery-island-battery">20%</a>
<div class="battery-container low-battery">
<div class="battery">
<div class="battery-bar-wrapper">
<div class="battery-bar" data-low="false" data-savemode="false" data-charging="false"></div>
</div>
</div>
<div class="battery-plup" style="background: var(--battery-border-white);"></div>
</div>
</article>
</div>
<div class="phone-airplane-mode-island phone-dynamic-island-child flex flex-row items-center justify-between px-4">
<a class="text-white- silence-mode-bell"><i class="fa-solid fa-bell-slash"></i></a>
<article class="flex flex-row items-center">
<a class="text-red-400 text-sm" id="phone-airplane-mode-island"></a>
</article>
</div>
<div class="phone-airplane-mode-disabled-island phone-dynamic-island-child flex flex-row items-center justify-between px-4">
<a class="text-white- silence-mode-bell"><i class="fa-solid fa-bell"></i></a>
<article class="flex flex-row items-center">
<a class="text-red-400 text-sm" id="phone-airplane-mode-disabled-island"></a>
</article>
</div>
<section class="facetime-current-call-interactions phone-dynamic-island-child">
<article class="p-2 pt-5 flex flex-col gap-2">
<header class="flex flex-row items-center justify-between">
<div class="flex flex-row items-center gap-2">
<img id="facetime-current-call-avatar" src="" class="rounded-full" width="54" height="54" alt="" />
<div class="flex flex-col">
<a id="facetime-current-call-name" class="text-white-">Quasar Store</a>
<span class="text-muted text-sm flex flex-row items-center gap-2">
<i class="fas fa-video"></i>
<a class="text-muted">FaceTime</a>
</span>
</div>
</div>
<section id="facetime-current-call-in-call">
<a id="facetime-finish" class="px-6 py-4 bg-red-600 text-white- rounded-3xl cursor-pointer" onclick="finishFaceTimeCall(event)">Finish</a>
</section>
<section id="facetime-current-call-out-call" class="hide">
<a id="facetime-cancel" class="px-6 py-4 bg-red-600 text-white- rounded-3xl cursor-pointer" onclick="finishFaceTimeCall(event)">Cancel</a>
<a id="facetime-answer" class="px-6 py-4 bg-green-600 text-white- rounded-3xl cursor-pointer" onclick="faceTimeAnswerCall(event)">Answer</a>
</section>
</header>
<footer id="facetime-current-call-buttons" class="flex flex-row items-center justify-between pb-1">
<section class="flex flex-col items-center text-white- text-sm gap-2">
<div class="facetime-fast-call-button ongoing" data-type="microphone">
<i class="fas fa-microphone-slash"></i>
</div>
</section>
<section class="flex flex-col items-center text-white- text-sm gap-2">
<div class="facetime-fast-call-button ongoing" data-type="speaker">
<i class="fas fa-volume-up"></i>
</div>
</section>
<section class="flex flex-col items-center text-white- text-sm gap-2">
<div class="facetime-call-ongoing-videocall facetime-fast-call-button ongoing" onclick="startVideoCalls()" data-type="video">
<i class="fas fa-video"></i>
</div>
</section>
<section class="flex flex-col items-center text-white- text-sm gap-2 hide" id="video-call-swap">
<div class="facetime-fast-call-button ongoing" onclick="swpCam()" data-type="swap">
<i class="fa-solid fa-camera-rotate"></i>
</div>
</section>
</footer>
</article>
</section>
<div class="phone-currentcall-container phone-dynamic-island-child">
<section id="phone-currentcall-outgoing" class="phone-currentcall-children hide">
<header class="flex flex-row items-center justify-between">
<nav class="flex flex-row items-center gap-4" aria-label="left">
<img src="https://i1.sndcdn.com/artworks-000176581039-ec258e-t500x500.jpg" alt="" width="36" height="36" class="rounded-full phone-call-img">
<div class="flex flex-col" id="phone-currentcall-caller">
<a class="phone-currentcall-type text-muted text-sm">mobile</a>
<a class="phone-currentcall-title text-white-">Quasar Store</a>
</div>
</nav>
<nav class="flex flex-row items-center gap-4" aria-label="right">
<button class="phone-currentcall-action-btn" onclick="CancelCall(event)">
<i class="fa-solid fa-phone-hangup"></i>
</button>
</nav>
</header>
</section>
<section id="phone-currentcall-ongoing" class="phone-currentcall-children hide">
<article id="phone-currentcall-ongoing-informations" class="flex flex-row items-center justify-between">
<nav aria-label="left">
<i class="fa-solid fa-phone text-green-500"></i>
<a class="phone-currentcall-ongoing-time text-green-500">00:00</a>
</nav>
<nav aria-label="right">
<div class="audio-icon is-active">
<div class="audio-icon-nib"></div>
<div class="audio-icon-nib"></div>
<div class="audio-icon-nib"></div>
<div class="audio-icon-nib"></div>
<div class="audio-icon-nib"></div>
</div>
</nav>
</article>
<article id="phone-currentcall-ongoing-interactions">
<header class="flex flex-row items-center justify-between px-4">
<nav class="flex flex-row items-center gap-4" aria-label="">
<img src="https://i1.sndcdn.com/artworks-000176581039-ec258e-t500x500.jpg" alt="" width="36" height="36" class="rounded-full phone-call-img">
<div class="phone-currentcall-contact">
<div class="phone-currentcall-title">Quasar Store</div>
<a class="text-muted text-sm">mobile</a>
</div>
</nav>
</header>
<footer class="flex flex-row justify-around items-center mt-5" id="phone-currentcall-interactions">
<div class="phone-fast-call-button" data-type="speaker">
<i class="fas fa-volume-up"></i>
</div>
<div class="phone-fast-call-button" data-type="microphone">
<i class="fas fa-microphone-slash"></i>
</div>
<div class="phone-fast-call-button phone-call-ongoing-videocall" onclick="faceTimeFromCall()" data-type="video">
<i class="fas fa-video"></i>
</div>
<div class="phone-fast-call-button" data-type="message">
<i class="fas fa-comment"></i>
</div>
<div class="phone-fast-call-button bg-red-500" data-type="end" onclick="cancelOnGoingCall(event)">
<i class="fas fa-times"></i>
</div>
</footer>
</article>
</section>
<section id="phone-currentcall-incoming" class="phone-currentcall-children hide">
<header class="flex flex-row items-center justify-between">
<nav class="flex flex-row items-center gap-4" aria-label="left">
<img src="https://i1.sndcdn.com/artworks-000176581039-ec258e-t500x500.jpg" alt="" width="36" height="36" class="rounded-full phone-call-img">
<div class="flex flex-col" id="phone-currentcall-caller">
<a class="phone-currentcall-type text-muted text-sm">mobile</a>
<a class="phone-currentcall-title text-white-">Quasar Store</a>
</div>
</nav>
<nav class="flex flex-row items-center gap-4" aria-label="right">
<button class="phone-currentcall-action-btn" onclick="CancelCall(event)">
<i class="fa-solid fa-phone-hangup"></i>
</button>
<button class="phone-currentcall-action-btn bg-green-500" onclick="AnswerCall(event)">
<i class="fas fa-phone"></i>
</button>
</nav>
</header>
</section>
</div>
</header>
</figure>
<figure id="phone-device-buttons">
<figure class="phone-busy-mode" onclick="toggleAirPlaneMode()"></figure>
<figure class="phone-volume-up" onclick="openVolumeController('up')"></figure>
<figure class="phone-volume-down" onclick="openVolumeController('down')"></figure>
<figure class="phone-lock" onmousedown="handleMouseDownLockButton()"></figure>
</figure>
<section id="phone-device-screen" class="phone-container">
<div id="phone-old-notification-container" class="bg-blur">
<header class="phone-old-notification-header">
<div class="notification-icon flex flex-row items-center gap-1">
<img alt="" class="rounded-lg" width='26' height='26'>
</div>
<div class="flex flex-row items-center notification-timer">
<a class="phone-old-notification-gray now-notify text-sm">now</a>
</div>
</header>
<div class="phone-old-notification-information">
<div class="notification-title">New, apple music bla bla is so good</div>
<div class="notification-text phone-old-notification-gray text-sm">Now you can do this play the music now. This is amazing right?</div>
</div>
</div>
<article id="volume-controller" onmouseover="handleMouseDownVolumeController(event)" onmouseout="createVolumeControllerTimeout(event)">
<article class="w-90 relative control-center-input-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<path d="M44.2 21.8a12 12 0 0 1 0 20.5M50 16a20 20 0 0 1 0 32"></path>
<path class="filled" d="M38 6L20 24H8a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12l18 18z">
</path>
</svg>
<input type="range" min="5" max="100" value="100" class="ios-range bg-filter-blur volume-range" id="volume-range" onchange="updatePhoneVolume(this.value)">
</article>
</article>
<figure class="phone-brightness-background"></figure>
<figure class="phone-background"></figure>
<div id="showContent-container" class="hide" onclick="closeShowContent()">
<div id="showContent-content">
<section id="showContent-img">
<div id="player"></div>
</section>
</div>
</div>
<section id="phone-unavailable" class="flex flex-col items-center justify-center bg-dark absolute inset-0 w-full h-full z-9999999999">
<header class="text-4xl text-white- phone-unavailable">iPhone Unavailable</header>
<a class="text-white- phone-unavailable-try">try again in 1 minute</a>
</section>
<section id="phone-close-screen" class="flex flex-col items-center justify-between bg-blur absolute inset-0 w-full h-full p-12 z-9999999999 py-36">
<header id="phone-close-crash-content" class="flex flex-col justify-center items-center gap-6">
<a class="text-3xl font-semibold text-center phone-slide-title">It looks like you've been in a crash.</a>
<div class="flex flex-col items-center justify-center">
<a class="phone-slide-description">iPhone detected a crash at</a>
<a id="phone-close-screen-crash-time">9:41 AM.</a>
</div>
</header>
<div class="flex flex-col gap-4 w-full">
<article id="phone-lock-slider-power-off" class="phone-lock-slider-container flex flex-row items-center bg-blur mb-20 w-full p-4 rounded-full">
<div class="phone-lock-slider bg-white- p-8">
<i class="fa-solid fa-power-off text-red-500 text-3xl"></i>
</div>
<input type="range" min="0" max="100" value="0" class="ios-close-range" onchange="handleIosCloseChangeRange(this, 'power')">
<a class="text-white- margin-center text-xl font-semibold phone-slide-to-power-off">slide to power off</a>
</article>
<article id="phone-lock-slider-sos" class="phone-lock-slider-container flex flex-row items-center bg-blur w-full p-4 rounded-full">
<div class="phone-lock-slider bg-red-500 p-8">
<a class="font-bold text-2xl text-white-">SOS</a>
</div>
<input type="range" min="0" max="100" value="0" id="phone-sos-slider" class="ios-close-range" onchange="handleIosCloseChangeRange(this, 'SOS')">
<a class="text-white- margin-center text-xl font-semibold phone-slide-to-emergency-call">Emergency Call</a>
</article>
</div>
<footer class="w-full flex flex-col gap-4 items-center justify-center">
<div class="phone-lock-slider-cancel bg-blur flex items-center justify-center rounded-full" onclick="closeCloseScreen()">
<i class="fa-solid fa-times"></i>
</div>
<a class="slide-cancel-box">Cancel</a>
</footer>
</section>
<div id="popup-actions"></div>
<div id="popup-confirm-container">
<div id="popup-actions-background"></div>
<div id="popup-actions-modal">
<h4>uWu</h4>
<div class="popup-actions-button left">Okey</div>
<div class="popup-actions-button right">Cancel</div>
</div>
</div>
<section class="phone-home-button-container">
<div class="phone-home-button"></div>
</section>
<div id="pincode" class="hidden">
<article class="phone-background z-0 absolute left-0 top-0 w-full h-full"></article>
<div class="table bg-filter-blur">
<div class="cell">
<div class="lockIcon"></div>
<div id="anleitung">
<span class="text-2xl">Enter Passcode</span>
</div>
<div id="fields">
<div class="pincode_grid">
<div class="pincode_grid__col pincode_grid__col--1-of-4 numberfield"><span></span></div>
<div class="pincode_grid__col pincode_grid__col--1-of-4 numberfield"><span></span></div>
<div class="pincode_grid__col pincode_grid__col--1-of-4 numberfield"><span></span></div>
<div class="pincode_grid__col pincode_grid__col--1-of-4 numberfield"><span></span></div>
</div>
</div>
<div id="numbers">
<div class="pincode_grid">
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>1</a>
<span></span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>2</a>
<span>A B C</span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>3</a>
<span>D E F</span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>4</a>
<span>G H I</span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>5</a>
<span>J K L</span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>6</a>
<span>M N O</span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>7</a>
<span>P Q R S</span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>8</a>
<span>T U V</span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>9</a>
<span>W X Y Z</span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3"></div>
<div class="pincode_grid__col pincode_grid__col--1-of-3">
<button>
<a>0</a>
<span></span>
</button>
</div>
<div class="pincode_grid__col pincode_grid__col--1-of-3"></div>
</div>
</div>
</div>
</div>
</div>
<section id="lock-screen-customize" class="absolute w-full bottom-0 pb-8 z-99999999999 bg-container-dark left-0 rounded-2xl p-4">
<article id="time-customize" class="hide">
<header class="flex justify-center pb-5 items-center pt-5">
<a class="text-white font-semibold text-xl widget-font-color">Font & Color</a>
<i class="fas fa-times fa-lg absolute right-5 text-white cursor-pointer" onclick="closeLockScreenCustomize()"></i>
</header>
<section id="time-fonts" class="w-full">
<ul class="grid grid-cols-3 w-full place-items-center border-b">
<li class="font-lemon">
<input type="radio" name="font" id="font-lemon" value="lemon">
<label for="font-lemon">12</label>
</li>
<li class="font-inter">
<input type="radio" name="font" id="font-inter" value="inter" checked>
<label for="font-inter">12</label>
</li>
<li class="font-prism">
<input type="radio" name="font" id="font-prism" value="prism">
<label for="font-prism">12</label>
</li>
<li class="font-dancing">
<input type="radio" name="font" id="font-dancing" value="dancing">
<label for="font-dancing">12</label>
</li>
<li class="font-tsukimi">
<input type="radio" name="font" id="font-tsukimi" value="tsukimi">
<label for="font-tsukimi">12</label>
</li>
<li class="font-marker">
<input type="radio" name="font" id="font-marker" value="marker">
<label for="font-marker">12</label>
</li>
<li class="font-rubik">
<input type="radio" name="font" id="font-rubik" value="rubik">
<label for="font-rubik">12</label>
</li>
<li class="font-fredoka">
<input type="radio" name="font" id="font-fredoka" value="fredoka">
<label for="font-fredoka">12</label>
</li>
<li class="font-moirai">
<input type="radio" name="font" id="font-moirai" value="moirai">
<label for="font-moirai">12</label>
</li>
</ul>
</section>
<section id="time-colors" class="w-full flex flex-row items-center justify-around">
<div class="time-color">
<input type="radio" name="color" id="color-white" value="white" checked>
<label for="color-white"></label>
</div>
<div class="time-color">
<input type="radio" name="color" id="color-black" value="black">
<label for="color-black" style="background: #000"></label>
</div>
<div class="time-color">
<input type="radio" name="color" id="color-red" value="red">
<label for="color-red" style="background: rgb(185 28 28)"></label>
</div>
<div class="time-color">
<input type="radio" name="color" id="color-green" value="green">
<label for="color-green" style="background: rgb(101 163 13)"></label>
</div>
<div class="time-color">
<input type="radio" name="color" id="color-blue" value="blue">
<label for="color-blue" style="background: rgb(6 182 212)"></label>
</div>
<div class="time-color">
<input type="color" name="color" id="color-picker">
<label for="color-picker" class="bg-rainbow"></label>
</div>
</section>
</article>
<article id="date-customize" class="hide">
<header class="flex justify-center pb-5 items-center pt-5">
<a class="text-white font-semibold text-xl widget-choose-change">Choose Widget</a>
<i class="fas fa-times fa-lg absolute right-5 text-white cursor-pointer" onclick="closeLockScreenCustomize()"></i>
</header>
<section id="date-customize-list" class="w-full p-4 flex-col flex">
<a class="ml-4 mb-2 font-bold">Suggestions</a>
<ul class="flex flex-col w-full border-b bg-dark rounded-2xl p-4 gap-6">
<li class="flex flex-row items-center gap-4 cursor-pointer" onclick="changeDateWidget('#date-widget-weather')">
<img src="./img/apps/weather.png" alt="" width="46" height="46" class="rounded-xl">
<div class="w-full border-b flex flex-col pb-3">
<div class="weather-temp" id="date-widget-weather">
<i class="fa-solid fa-cloud"></i>
<span class="weather-temp-value weather-degree">22°</span>
</div>
<footer>
<a class="text-muted text-sm">Conditions</a>
</footer>
</div>
</li>
<li class="flex flex-row items-center gap-4 cursor-pointer">
<img src="./img/apps/calendar.png" alt="" width="46" height="46" class="rounded-xl">
<div class="w-full border-b flex flex-col pb-3" onclick="changeDateWidget(null)">
<div class="date text-white" id="date-widget-date">
16 June Friday
</div>
<footer>
<a class="text-muted text-sm">Date</a>
</footer>
</div>
</li>
</ul>
</section>
</article>
<article id="widget-customize" class="hide">
<header class="flex justify-center pb-5 items-center pt-5">
<a class="text-white font-semibold text-xl widget-add-more">Add Widgets</a>
<i class="fas fa-times fa-lg absolute right-5 text-white cursor-pointer" onclick="closeLockScreenCustomize()"></i>
</header>
<section id="widget-customize-list" class="w-full p-4 grid grid-cols-4 gap-4">
<section class="lock-screen-widget-bg" onclick="addLockScreenWidget('battery')">
<div class="batteryInfo">
<div class="iconWrapper high">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<path d="M14 59a3 3 0 0 0 3 3h30a3 3 0 0 0 3-3v-9H14zM50 5a3 3 0 0 0-3-3H17a3 3 0 0 0-3 3v5h36zm0 45V10m-36 0v40">
</path>
<circle cx="32" cy="56" r="2"></circle>
</svg>
</div>
</div>
</section>
<section class="lock-screen-widget-bg" onclick="addLockScreenWidget('rain')">
<div class="weather-rain-percentage-widget"></div>
</section>
<div class="weather-mini-widget" onclick="addLockScreenWidget('weather')">
<header class="flex flex-row gap-1 items-center self-start">
<i class="fa-solid fa-cloud"></i>
<div class="weather-temp">
<span class="weather-temp-value weather-degree">22°</span>
</div>
</header>
<article>
<div class="weather-type"></div>
</article>
</div>
<section class="reminder-widget phone-widget" data-app='reminder-widget' onclick="addLockScreenWidget('reminder')">
<div class="reminder-widget-information">
<div class="reminder-icon">
<i class="fa-solid fa-list"></i>
</div>
<p class="reminder-widget-count" id="total-reminders-widget-count">0</p>
</div>
<header id="reminder-widget-header">
<a>Reminders</a>
</header>
<section class="reminder-widget-list self-start w-full overflow-y">
</section>
</section>
<div class="weazel-widget phone-widget" data-app='weazel-widget' onclick="addLockScreenWidget('weazel')">
<header id="weazel-widget-header">
<h7>Top Stories</h7>
<img src="img/app_details/news.png">
</header>
<article class="weazel-widget-contents w-full"></article>
</div>
</section>
</article>
</section>
<div id="lock-screen" class="phone-background" style="display: flex;">
<div id="lock-screen-middle">
<div id="lock-screen-top" class="lock-screen-top">
<span class="lock-screen-top-date date" onclick="openLockScreenCustomize('date')"></span>
<span class="time" onclick="openLockScreenCustomize('time')">13:00</span>
<section id="lock-screen-widgets" onclick="openLockScreenCustomize('widgets')" class="grid grid-cols-4 gap-4 w-full p-4">
<section class="lock-screen-widget-bg">
<div class="batteryInfo">
<div class="iconWrapper high">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<path d="M14 59a3 3 0 0 0 3 3h30a3 3 0 0 0 3-3v-9H14zM50 5a3 3 0 0 0-3-3H17a3 3 0 0 0-3 3v5h36zm0 45V10m-36 0v40">
</path>
<circle cx="32" cy="56" r="2"></circle>
</svg>
</div>
</div>
<div class="remove-widget" onclick="removeLockScreenWidget('battery')">
<i class="far fa-minus"></i>
</div>
</section>
<section class="lock-screen-widget-bg">
<div class="weather-rain-percentage-widget"></div>
<div class="remove-widget" onclick="removeLockScreenWidget('rain')">
<i class="far fa-minus"></i>
</div>
</section>
<div class="weather-mini-widget relative">
<header class="flex flex-row gap-1 items-center self-start">
<i class="fa-solid fa-cloud"></i>
<div class="weather-temp">
<span class="weather-temp-value weather-degree">22°</span>
</div>
</header>
<article>
<div class="weather-type"></div>
</article>
<div class="remove-widget" onclick="removeLockScreenWidget('weather')">
<i class="far fa-minus"></i>
</div>
</div>
<section class="reminder-widget phone-widget relative" data-app='reminder-widget'>
<header id="reminder-widget-header">
<a>Reminders</a>
</header>
<section class="reminder-widget-list self-start w-full overflow-y">
</section>
<div class="remove-widget" onclick="removeLockScreenWidget('reminder')">
<i class="far fa-minus"></i>
</div>
</section>
<div class="weazel-widget phone-widget relative" data-app='weazel-widget'>
<header id="weazel-widget-header">
<h7>Top Stories</h7>
</header>
<article class="weazel-widget-contents w-full"></article>
<div class="remove-widget" onclick="removeLockScreenWidget('weazel')">
<i class="far fa-minus"></i>
</div>
</div>
</section>
</div>
<div class="spotify-lockScreen bg-filter-blur">
<div class="spotify-lockScreenHeader">
<img>
<div class="spotify-lockScreen-content">
<a class="spotify-lockScreen-content-author artist widget-artist">Artist</a>
<a class="spotify-lockScreen-content-title track widget-track">Song Name</a>
</div>
</div>
<div class="timeline">
<span class="current-time">--:--</span>
<span class="total-time">--:--</span>
<div class="slider" data-direction="horizontal">
<div class="spotify-progress">
<div class="pin" id="progress-pin" data-method="rewind"></div>
</div>
</div>
</div>
<div class="player">
<div class="prevTrack" onmousedown="event.stopPropagation()" onclick="spotifyPlayerPrevTrack(event)"><i class="fa fa-step-backward" aria-hidden="true"></i></div>
<div class="playBtn" onmousedown="event.stopPropagation()" onclick="playPauseCheck(event)"><i class="fa fa-play" aria-hidden="true"></i></div>
<div class="nextTrack" onmousedown="event.stopPropagation()" onclick="spotifyPlayerNextTrack(event)"><i class="fa fa-step-forward" aria-hidden="true"></i></div>
</div>
</div>
<div id="lock-screen-delete-all" class="flex w-full items-end justify-end">
<button class="text-white- text-sm bg-low-opacity rounded-full mr-3 w-24 h-24 flex items-center justify-center mb-5" onclick="deleteAllNotifications()">
<i class="fas fa-times"></i>
</button>
</div>
<main id='lock-screen-main-container' class="h-auto overflow-hidden relative">
<section id="lock-screen-notifications-container"></section>
</main>
</div>
<div id="lock-screen-down">
<img class="down_padding flash" onclick="toggleFlashlight()" src="./img/flashlight.png">
<img class="down_padding cam" onclick="lockCamera()" src="./img/camera.png">
</div>
<div class="lockScreen">
<div class="phone-home-swipe"></div>
</div>
<div id="lock-screen-specified"></div>
</div>
<!-- Startup Screen -->
<div id="startup-page" style="display: none">
<section id="startup-first-screen" class='startup-screen bg-black-'>
<div class="logo">
<img src="./img/startup/applelogo-pear.png" alt="Logo">
</div>
</section>
<section id="hello-screen" class='startup-screen top-0 hide bg-transparent'>
<figure class="phone-background inset-0 blur-4 z-1"></figure>
<div class='flex flex-col items-center justify-center w-full h-full z-2 relative'>
<span id='hello'></span>
</div>
<section class="hello-home-button-container">
<a class="absolute bottom-0-7 text-white- swipe-to-configuration">Swipe up to open</a>
<div class="phone-home-button"></div>
</section>
</section>
<!-- <section id="language-screen" class="startup-screen top-0 hide">
<header class="pt-7 flex items-center justify-center w-full">
<i class="fa-regular fa-globe text-6xl mb-7 text-blue-500"></i>
</header>
<section id="language-locales" class='flex flex-col overflow-y max-h-84 pt-2 pb-2 rounded-lg bg-dark margin-center w-90 margin-center gap-4'>