-
Notifications
You must be signed in to change notification settings - Fork 1
/
account-setting.html
1274 lines (1198 loc) · 98.2 KB
/
account-setting.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comforty - eCommerce HTML template</title>
<!-- google fonts -->
<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@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- css link here -->
<link rel="stylesheet" href="./public/assets/plugins/css/swipper.css">
<link rel="stylesheet" href="./public/assets/plugins/css/select2.css">
<link rel="stylesheet" href="./public/css/tailwind.css">
<link rel="stylesheet" href="./public/css/styles.css">
<link rel="stylesheet" href="./public/css/responsive.css">
</head>
<body>
<!-- header area start -->
<header class="font-display">
<div id="header-sticky" class="">
<div class="top-header bg-secondary">
<div class="container px-3 md:px-5 xl:px-0">
<div class="py-3.5 flex justify-center sm:justify-between">
<p class="sm:flex gap-2 items-center text-[13px] leading-[110%] text-white opacity-70 hidden">
<span>
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.3334 4.5L6.00002 11.8333L2.66669 8.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<span>Free shipping on all orders over $50</span>
</p>
<div>
<ul class="flex gap-6 items-center">
<li class="inline-flex items-center text-white-50 justify-center relative language">
<select class="custom-select" name="state">
<option value="AL">Eng</option>
<option value="WY">Bangla</option>
</select>
</li>
<li class="inline-flex items-center justify-center">
<a href="#" class="inline-flex gap-2 items-center text-white opacity-70 text-[13px] leading-[130%]">Faqs</a>
</li>
<li class="inline-flex items-center justify-center">
<a href="#" class="inline-flex gap-2 items-center text-white opacity-70 text-[13px] leading-[130%]">
<span>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.7" clip-path="url(#clip0_906_1673)">
<path d="M7.99992 14.6667C11.6818 14.6667 14.6666 11.6819 14.6666 8C14.6666 4.3181 11.6818 1.33333 7.99992 1.33333C4.31802 1.33333 1.33325 4.3181 1.33325 8C1.33325 11.6819 4.31802 14.6667 7.99992 14.6667Z" stroke="white" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 5.33333V8" stroke="white" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 10.6667H8.00615" stroke="white" stroke-linecap="round" stroke-linejoin="round" />
</g>
<defs>
<clipPath id="clip0_906_1673">
<rect width="16" height="16" fill="white" />
</clipPath>
</defs>
</svg>
</span>
<span>Need Help</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="main-header bg-grayscales-500 lg:border-none border-b border-grayscales-700">
<div class="container px-3 md:px-5 xl:px-0">
<div class="flex justify-between items-center py-5">
<div>
<a href="index.html">
<img src="./public/assets/images/all-img/logo.png" alt="">
</a>
</div>
<div class="lg:max-w-[413px] lg:block hidden w-full">
<div class="relative">
<input type="text" id="search" placeholder="search here..." class="block w-full bg-white focus:outline-none border-0 px-4 py-3 rounded-lg focus:ring-2 ring-[#029FAE]">
<label for="search" class="absolute right-4 top-3">
<svg width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5833 17.4167C14.6334 17.4167 17.9167 14.1334 17.9167 10.0833C17.9167 6.03325 14.6334 2.75 10.5833 2.75C6.53325 2.75 3.25 6.03325 3.25 10.0833C3.25 14.1334 6.53325 17.4167 10.5833 17.4167Z" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M19.75 19.25L15.7625 15.2625" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</label>
</div>
</div>
<div class="lg:block hidden">
<ul class="flex items-center gap-3">
<li class="relative">
<a href="#" class="inline-flex gap-2 bg-white rounded-lg p-[11px]" id="addToCart">
<span><svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.52087 2.97916L4.42754 3.30916L5.31029 13.8261C5.3442 14.2399 5.5329 14.6258 5.83873 14.9066C6.14457 15.1875 6.54506 15.3427 6.96029 15.3413H16.9611C17.3587 15.3418 17.7431 15.1986 18.0436 14.9383C18.344 14.6779 18.5404 14.3178 18.5965 13.9242L19.4673 7.91266C19.4905 7.75279 19.482 7.58991 19.4422 7.43333C19.4024 7.27675 19.3322 7.12955 19.2354 7.00015C19.1387 6.87074 19.0175 6.76167 18.8786 6.67917C18.7397 6.59667 18.5859 6.54235 18.426 6.51933C18.3673 6.51291 4.73371 6.50833 4.73371 6.50833" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12.948 9.89542H15.4899" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.55786 18.5194C6.62508 18.5165 6.69219 18.5273 6.75515 18.551C6.81811 18.5748 6.87562 18.611 6.9242 18.6575C6.97279 18.7041 7.01145 18.76 7.03787 18.8219C7.06428 18.8837 7.0779 18.9503 7.0779 19.0176C7.0779 19.0849 7.06428 19.1515 7.03787 19.2134C7.01145 19.2753 6.97279 19.3312 6.9242 19.3777C6.87562 19.4243 6.81811 19.4605 6.75515 19.4842C6.69219 19.508 6.62508 19.5187 6.55786 19.5158C6.42942 19.5103 6.30808 19.4554 6.21914 19.3626C6.13021 19.2698 6.08057 19.1462 6.08057 19.0176C6.08057 18.8891 6.13021 18.7655 6.21914 18.6726C6.30808 18.5798 6.42942 18.5249 6.55786 18.5194Z" fill="#272343" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.8988 18.5194C17.0312 18.5194 17.1583 18.5721 17.252 18.6657C17.3457 18.7594 17.3983 18.8865 17.3983 19.019C17.3983 19.1515 17.3457 19.2786 17.252 19.3723C17.1583 19.4659 17.0312 19.5186 16.8988 19.5186C16.7663 19.5186 16.6392 19.4659 16.5455 19.3723C16.4518 19.2786 16.3992 19.1515 16.3992 19.019C16.3992 18.8865 16.4518 18.7594 16.5455 18.6657C16.6392 18.5721 16.7663 18.5194 16.8988 18.5194Z" fill="#272343" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<span>Cart</span>
<span class="bg-dark-accents text-white rounded-full py-[3px] px-[9px] ml-1 inline-flex justify-center items-center text-[10px] leading-[100%]">2</span>
</a>
<div class="cart-content">
<ul class="p-6">
<li class="pb-4">
<div class="flex items-center justify-between">
<div class="flex items-center gap-1">
<div>
<img src="./public/assets/images/all-img/cart-01.png" alt="">
</div>
<div class="px-2">
<h2 class="text-gray-black"><span>Isolate Sofa Chair</span> <span class="text-[#636270]">x5</span></h2>
<p class="text-gray-black font-semibold mb-0">$150.00</p>
</div>
</div>
<div>
<button class="hover:bg-[#F0F2F3] bg-transparent p-2 hover:text-gray-black rounded-full text-[#9A9CAA] transition-all duration-500">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 10L14 14M14 14L18 10M14 14L10 18M14 14L18 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</button>
</div>
</div>
</li>
<li class="py-4">
<div class="flex items-center justify-between">
<div class="flex items-center gap-1">
<div>
<img src="./public/assets/images/all-img/cart-01.png" alt="">
</div>
<div class="px-2">
<h2 class="text-gray-black"><span>Isolate Sofa Chair</span> <span class="text-[#636270]">x5</span></h2>
<p class="text-gray-black font-semibold mb-0">$150.00</p>
</div>
</div>
<div>
<button class="hover:bg-[#F0F2F3] bg-transparent p-2 hover:text-gray-black rounded-full text-[#9A9CAA] transition-all duration-500">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 10L14 14M14 14L18 10M14 14L10 18M14 14L18 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</button>
</div>
</div>
</li>
<div class="flex justify-between items-center py-2 mb-4">
<p class="text-[#636270] text-lg">2 Products</p>
<p class="text-gray-black text-xl font-medium">$250.00</p>
</div>
<div class="flex justify-between items-center">
<a href="shopping-cart.html" class="btn-transparent">View Cart</a>
<a href="checkout-shopping.html" class="btn-primary">Checkout</a>
</div>
</ul>
</div>
</li>
<li class="inline-flex items-center justify-center">
<a href="#" class="bg-white text-gray-black hover:text-[#007580] rounded-lg p-[11px]">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.63262 10.6315C1.64903 7.56067 2.79762 4.05075 6.02245 3.01217C6.85867 2.74459 7.74676 2.68086 8.61262 2.82629C9.47849 2.97172 10.297 3.32208 10.9999 3.84817C12.3337 2.81692 14.2743 2.46858 15.9683 3.01217C19.1922 4.05075 20.349 7.56067 19.3664 10.6315C17.8355 15.499 10.9999 19.2482 10.9999 19.2482C10.9999 19.2482 4.21478 15.5558 2.63262 10.6315V10.6315Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
</li>
<li class="relative">
<button class="bg-white text-gray-black hover:text-[#007580] rounded-lg p-[11px] user-profile">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9862 14.0672C7.44053 14.0672 4.4137 14.6034 4.4137 16.7503C4.4137 18.8971 7.42128 19.4526 10.9862 19.4526C14.5309 19.4526 17.5587 18.9154 17.5587 16.7695C17.5587 14.6236 14.5502 14.0672 10.9862 14.0672V14.0672Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9862 11.0055C11.8195 11.0055 12.634 10.7584 13.3268 10.2955C14.0197 9.83255 14.5597 9.17457 14.8785 8.40475C15.1974 7.63492 15.2808 6.78783 15.1183 5.97058C14.9557 5.15334 14.5545 4.40266 13.9653 3.81346C13.3761 3.22426 12.6254 2.82301 11.8081 2.66045C10.9909 2.49789 10.1438 2.58132 9.37397 2.9002C8.60415 3.21907 7.94617 3.75906 7.48324 4.45188C7.02031 5.14471 6.77322 5.95925 6.77322 6.7925C6.76932 7.90581 7.20779 8.97508 7.99218 9.76515C8.77657 10.5552 9.84266 11.0014 10.956 11.0055H10.9862Z" stroke="currentColor" stroke-width="1.429" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</button>
<div class="profile-content">
<ul class="py-3">
<div class="px-3 shadow-[0px_1px_0px_#E1E3E6]">
<li>
<a href="sign-in.html">Sign In</a>
</li>
<li>
<a href="sign-up.html">Create a Account</a>
</li>
</div>
<div class="px-3 shadow-[0px_1px_0px_#E1E3E6]">
<li>
<a href="account-setting.html">Account Settings</a>
</li>
<li>
<a href="order-history.html">Order History</a>
</li>
</div>
<div class="px-3 shadow-[0px_1px_0px_#E1E3E6]">
<li>
<a href="wishlist.html">Wishlist</a>
</li>
<li>
<a href="shopping-cart.html">Shopping Cart</a>
</li>
</div>
<div class="px-3">
<li>
<a href="#">Logout</a>
</li>
</div>
</ul>
</div>
</li>
</ul>
</div>
<div class="lg:hidden inline-block hamburger-btn" id="hamburger-btn">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
</div>
</div>
<div class="bottom-header bg-white shadow-[0px_1px_0px_#E1E3E6] relative z-30 hidden lg:block">
<div class="container px-3 md:px-5 xl:px-0">
<div class="py-3.5 flex justify-between items-center">
<div class="flex gap-8 items-center">
<div class="relative">
<button class="max-h-12 inline-flex items-center justify-center gap-4 py-3.5 px-5 border border-grayscales-700 rounded-md custom-dropdown text-gray-black text-sm leading-4 font-medium font-display">
<span class="text-gray-black inline-flex">
<svg width="18" height="14" viewBox="0 0 18 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 2.5H0V0.5H18V2.5Z" fill="currentColor" />
<path d="M18 8.5H0V6.5H18V8.5Z" fill="currentColor" />
<path d="M18 14.5H0V12.5H18V14.5Z" fill="currentColor" />
</svg>
</span>
<span class="text-gray-black inline-flex">All Categories</span>
</button>
<div class="dropdown-content">
<ul class="p-3">
<li>
<a href="#">Wodden</a>
</li>
<li>
<a href="#">Partex</a>
</li>
<li>
<a href="#">Plywood</a>
</li>
<li>
<a href="#">Segun</a>
</li>
</ul>
</div>
</div>
<ul class="lg:flex gap-8 items-center hidden main-menu">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="products.html">Shop</a>
</li>
<li>
<a href="product-details.html">Product</a>
</li>
<li class="relative">
<a href="javascript:void(0);" class="inline-flex gap-2 items-center">Pages
<span>
<img src="./public/assets/images/all-img/select-arrow.png" alt="">
</span>
</a>
<ul>
<li>
<a href="404.html">404</a>
</li>
<li>
<a href="account-setting.html">Account Setting</a>
</li>
<li>
<a href="sign-in.html">Sign In</a>
</li>
<li>
<a href="sign-up.html">Sign Up</a>
</li>
<li>
<a href="forget-password.html">Forget Password</a>
</li>
<li>
<a href="change-password.html">Change Password</a>
</li>
<li>
<a href="products.html">Product List</a>
</li>
<li>
<a href="product-details.html">Product Details</a>
</li>
<li>
<a href="shopping-cart.html">Shopping Cart</a>
</li>
<li>
<a href="wishlist.html">Wishlist</a>
</li>
<li>
<a href="checkout-billing.html">Checkout Billing</a>
</li>
<li>
<a href="checkout-shopping.html">Checkout Shoping</a>
</li>
</ul>
</li>
<li>
<a href="">About</a>
</li>
</ul>
</div>
<div>
<p class="text-grayscales-900 inline-flex gap-2 items-center text-sm font-display"><span>Contact:</span><span class="text-secondary font-medium">(808) 555-0111</span></p>
</div>
</div>
</div>
</div>
<!-- Mobile Menu Area Start -->
<div class="nav-menu" id="nav-menu">
<div class="flex justify-between items-center px-3 py-4 mb-4">
<div>
<a href="#">
<img src="./public/assets/images/all-img/logo-sm.png" alt="">
</a>
</div>
<ul class="flex items-center gap-3">
<li>
<a href="#" class="inline-flex gap-2 bg-white rounded-lg p-[11px] relative">
<span>
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.52087 2.97916L4.42754 3.30916L5.31029 13.8261C5.3442 14.2399 5.5329 14.6258 5.83873 14.9066C6.14457 15.1875 6.54506 15.3427 6.96029 15.3413H16.9611C17.3587 15.3418 17.7431 15.1986 18.0436 14.9383C18.344 14.6779 18.5404 14.3178 18.5965 13.9242L19.4673 7.91266C19.4905 7.75279 19.482 7.58991 19.4422 7.43333C19.4024 7.27675 19.3322 7.12955 19.2354 7.00015C19.1387 6.87074 19.0175 6.76167 18.8786 6.67917C18.7397 6.59667 18.5859 6.54235 18.426 6.51933C18.3673 6.51291 4.73371 6.50833 4.73371 6.50833" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12.948 9.89542H15.4899" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.55786 18.5194C6.62508 18.5165 6.69219 18.5273 6.75515 18.551C6.81811 18.5748 6.87562 18.611 6.9242 18.6575C6.97279 18.7041 7.01145 18.76 7.03787 18.8219C7.06428 18.8837 7.0779 18.9503 7.0779 19.0176C7.0779 19.0849 7.06428 19.1515 7.03787 19.2134C7.01145 19.2753 6.97279 19.3312 6.9242 19.3777C6.87562 19.4243 6.81811 19.4605 6.75515 19.4842C6.69219 19.508 6.62508 19.5187 6.55786 19.5158C6.42942 19.5103 6.30808 19.4554 6.21914 19.3626C6.13021 19.2698 6.08057 19.1462 6.08057 19.0176C6.08057 18.8891 6.13021 18.7655 6.21914 18.6726C6.30808 18.5798 6.42942 18.5249 6.55786 18.5194Z" fill="#272343" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.8988 18.5194C17.0312 18.5194 17.1583 18.5721 17.252 18.6657C17.3457 18.7594 17.3983 18.8865 17.3983 19.019C17.3983 19.1515 17.3457 19.2786 17.252 19.3723C17.1583 19.4659 17.0312 19.5186 16.8988 19.5186C16.7663 19.5186 16.6392 19.4659 16.5455 19.3723C16.4518 19.2786 16.3992 19.1515 16.3992 19.019C16.3992 18.8865 16.4518 18.7594 16.5455 18.6657C16.6392 18.5721 16.7663 18.5194 16.8988 18.5194Z" fill="#272343" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<span class="bg-dark-accents absolute -top-1 right-0 text-white rounded-full px-2 py-1.5 inline-flex justify-center items-center text-[10px] leading-[100%]">2</span>
</a>
</li>
<li>
<a href="#" class="bg-white text-gray-black flex hover:text-[#007580] rounded-lg p-[11px]">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.63262 10.6315C1.64903 7.56067 2.79762 4.05075 6.02245 3.01217C6.85867 2.74459 7.74676 2.68086 8.61262 2.82629C9.47849 2.97172 10.297 3.32208 10.9999 3.84817C12.3337 2.81692 14.2743 2.46858 15.9683 3.01217C19.1922 4.05075 20.349 7.56067 19.3664 10.6315C17.8355 15.499 10.9999 19.2482 10.9999 19.2482C10.9999 19.2482 4.21478 15.5558 2.63262 10.6315V10.6315Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</a>
</li>
<li class="relative">
<button class="bg-white text-gray-black hover:text-[#007580] rounded-lg p-[11px] user-profile">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9862 14.0672C7.44053 14.0672 4.4137 14.6034 4.4137 16.7503C4.4137 18.8971 7.42128 19.4526 10.9862 19.4526C14.5309 19.4526 17.5587 18.9154 17.5587 16.7695C17.5587 14.6236 14.5502 14.0672 10.9862 14.0672V14.0672Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9862 11.0055C11.8195 11.0055 12.634 10.7584 13.3268 10.2955C14.0197 9.83255 14.5597 9.17457 14.8785 8.40475C15.1974 7.63492 15.2808 6.78783 15.1183 5.97058C14.9557 5.15334 14.5545 4.40266 13.9653 3.81346C13.3761 3.22426 12.6254 2.82301 11.8081 2.66045C10.9909 2.49789 10.1438 2.58132 9.37397 2.9002C8.60415 3.21907 7.94617 3.75906 7.48324 4.45188C7.02031 5.14471 6.77322 5.95925 6.77322 6.7925C6.76932 7.90581 7.20779 8.97508 7.99218 9.76515C8.77657 10.5552 9.84266 11.0014 10.956 11.0055H10.9862Z" stroke="currentColor" stroke-width="1.429" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</button>
<div class="profile-content">
<ul>
<li>
<a href="#">Wodden</a>
</li>
<li>
<a href="#">Partex</a>
</li>
<li>
<a href="#">Plywood</a>
</li>
<li>
<a href="#">Segun</a>
</li>
</ul>
</div>
</li>
<li>
<span class="hamburger-btn-close bg-[#F7F7F9] text-black w-[44px] h-[44px] rounded-full flex items-center justify-center" id="hamburger-btn-close">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11 1L1 11" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M1 1L11 11" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</li>
</ul>
</div>
<div class="px-3 mb-4">
<div class="lg:max-w-[413px] w-full">
<div class="relative">
<input type="text" placeholder="search here..." class="block w-full bg-grayscales-500 focus:outline-none border-0 px-4 py-3 rounded-lg">
<span class="absolute right-4 top-3">
<svg width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5833 17.4167C14.6334 17.4167 17.9167 14.1334 17.9167 10.0833C17.9167 6.03325 14.6334 2.75 10.5833 2.75C6.53325 2.75 3.25 6.03325 3.25 10.0833C3.25 14.1334 6.53325 17.4167 10.5833 17.4167Z" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M19.75 19.25L15.7625 15.2625" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</div>
</div>
<!-- menu -->
<div>
<nav class="tabs flex flex-row">
<button data-target="panel-1" class="tab rounded-none w-1/2 active text-gray-600 py-4 px-6 block hover:text-blue-500 focus:outline-none text-blue-500 border-b-2 font-medium border-blue-500">
Menu
</button>
<button data-target="panel-2" class="tab rounded-none w-1/2 ext-gray-600 py-4 px-6 block hover:text-blue-500 focus:outline-none border-b-2 font-medium border-blue-500">
Categories
</button>
</nav>
</div>
<div id="panels">
<div class="panel-1 tab-content active">
<ul class="flex flex-col items-center">
<li class="w-full block">
<a href="" class="border-b border-[#029FAE] block px-3 py-2">Home</a>
</li>
<li class="w-full block">
<a href="" class="border-b border-[#029FAE] block px-3 py-2">Shop</a>
</li>
<li class="w-full block">
<a href="" class="border-b border-[#029FAE] block px-3 py-2">Product</a>
</li>
<li class="w-full block">
<a href="" class="border-b border-[#029FAE] block px-3 py-2">Pages</a>
</li>
<li class="w-full block">
<a href="" class="border-b border-[#029FAE] block px-3 py-2">About</a>
</li>
</ul>
</div>
<div class="panel-2 tab-content py-5">
<ul>
<li>
<a href="#" class="border-b border-[#029FAE] block px-3 py-2">Wodden</a>
</li>
<li>
<a href="#" class="border-b border-[#029FAE] block px-3 py-2">Partex</a>
</li>
<li>
<a href="#" class="border-b border-[#029FAE] block px-3 py-2">Plywood</a>
</li>
<li>
<a href="#" class="border-b border-[#029FAE] block px-3 py-2">Segun</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Mobile Menu Area End -->
<div class="overlay" id="overlay"></div>
</header>
<!-- header area end -->
<!-- Breadcrumb Start -->
<div class="breadcrumb">
<div class="container">
<div class="flex items-center gap-1 py-[1.5px]">
<a href="#" class="text-[14px] font-normal leading-[110%] text-dark-gray">Home</a>
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.125 5.25L10.875 9L7.125 12.75" stroke="#636270" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<a href="#" class="text-[14px] font-normal leading-[110%] text-dark-gray">Account</a>
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.125 5.25L10.875 9L7.125 12.75" stroke="#636270" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<span class="text-[14px] font-medium leading-[110%] font-display text-gray-black inline-block">Account Settings</span>
</div>
<h2 class="pt-[13.5px] xl:text-2xl text-[18px] font-semibold text-gray-black font-display">Account Settings</h2>
</div>
</div>
<!-- Breadcrumb End -->
<!-- user menu start -->
<div class="user bg-red-600">
<div class="container">
<div class="usermenu flex flex-col md:flex-row justify-between md:items-center">
<!-- Tabs -->
<ul id="tabs" class="inline-flex flex-col md:flex-row w-full">
<li class="border-b-2 border-accents">
<a id="default-tab" href="#account_settings" class="text-[#636270] font-medium p-5 border-b border-transparent hover:text-gray-black font-display">Account Settings</a>
</li>
<li>
<a href="#order_history" class="text-[#636270] font-medium p-5 border-b border-transparent hover:text-gray-black font-display">Order History</a>
</li>
<li>
<a href="#order_details" class="text-[#636270] font-medium p-5 border-b border-transparent hover:text-gray-black">Order Details</a>
</li>
<li>
<a href="#wishlist" class="text-[#636270] font-medium p-5 border-b border-transparent hover:text-gray-black font-display">Wishlist</a>
</li>
</ul>
<a href="#" class="font-display text-[16px] leading-[110%] font-medium capitalize text-[#636270] px-4 py-4 md:px-0">Logout</a>
</div>
</div>
</div>
<div class="container">
<!-- Tab Contents -->
<div id="tab-contents">
<!-- Account Setting Start -->
<div id="account_settings">
<div class="container px-3 md:px-5 xl:px-0 py-10">
<div class="accout-setting flex flex-col xl:flex-row gap-6">
<!-- account inforamation start -->
<div class="box xl:w-[536px]">
<div class="w-full ">
<div class="p-6">
<h2 class="text-start xl:text-2xl acc-title text-[22px] text-[#272343] font-medium mb-6 font-display">Account Information</h2>
<div class="flex flex-col sm:flex-row gap-5 items-center mb-5">
<div class="w-full">
<input type="text" placeholder="Kevin" class="input-box focus:outline-none focus:ring-2 focus:ring-accents transition duration-300 ease-in-out">
</div>
<div class="w-full">
<input type="text" placeholder="Kevin Gilbert" class="input-box focus:outline-none focus:ring-2 focus:ring-accents font-display transition duration-300 ease-in-out">
</div>
</div>
<div class="w-full mb-5">
<input type="text" placeholder="[email protected]" class="input-box focus:outline-none focus:ring-2 focus:ring-accents font-display transition duration-300 ease-in-out">
</div>
<div class="w-full mb-5">
<input type="text" placeholder="+8801497 548244" class="input-box focus:outline-none focus:ring-2 focus:ring-accents font-display transition duration-300 ease-in-out">
</div>
<button type="submit" class="btn-primary">Save Changes</button>
</div>
</div>
</div>
<!-- account inforamation end -->
<div class="flex flex-col md:flex-row gap-6">
<!-- user password change start -->
<div class="box xl:w-[424px]">
<div class="">
<div class="p-6">
<h2 class="text-start xl:text-2xl acc-title text-[22px] text-[#272343] font-medium mb-6 font-display">Change Password</h2>
<div class="relative">
<!-- input-box focus:outline-none focus:ring-2 focus:ring-accents transition duration-300 ease-in-out -->
<input type="password" placeholder="Current passowrd" class="form_password focus:outline-none focus:ring-2 focus:ring-accents font-display transition duration-300 ease-in-out" id="CurrentPasswordInput" name="password">
<span class="absolute top-[17px] right-5 cursor-pointer ">
<svg id="current-icon-show" onclick="currentPasswordIcon()" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 4.24902C4.5 4.24902 1.5 11.9999 1.5 11.9999C1.5 11.9999 4.5 19.749 12 19.749C19.5 19.749 22.5 11.9999 22.5 11.9999C22.5 11.9999 19.5 4.24902 12 4.24902V4.24902Z" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12 15.75C12.9946 15.75 13.9484 15.3549 14.6517 14.6517C15.3549 13.9484 15.75 12.9946 15.75 12C15.75 11.0054 15.3549 10.0516 14.6517 9.34835C13.9484 8.64509 12.9946 8.25 12 8.25C11.0054 8.25 10.0516 8.64509 9.34835 9.34835C8.64509 10.0516 8.25 11.0054 8.25 12C8.25 12.9946 8.64509 13.9484 9.34835 14.6517C10.0516 15.3549 11.0054 15.75 12 15.75V15.75Z" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<svg id="current-icon-hide" onclick="currentPasswordIcon()" width="20" height="10" viewBox="0 0 20 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.858 2.93481L18.9963 6.63906" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12.4547 4.99353L13.1215 8.77578" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M7.53701 4.99133L6.86951 8.77433" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M3.13825 2.9325L0.989502 6.6525" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M1 0.83252C2.575 2.78252 5.4655 5.25002 10 5.25002C14.5345 5.25002 17.4235 2.78252 19 0.83252" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
<div class="relative">
<input type="password" placeholder="New passowrd" class="form_password focus:outline-none focus:ring-2 focus:ring-accents font-display transition duration-300 ease-in-out" id="CreatePasswordInput" name="password">
<span class="absolute top-[17px] right-5 cursor-pointer select-none ">
<svg id="create-icon-show" onclick="CreatePasswordIcon()" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 4.24902C4.5 4.24902 1.5 11.9999 1.5 11.9999C1.5 11.9999 4.5 19.749 12 19.749C19.5 19.749 22.5 11.9999 22.5 11.9999C22.5 11.9999 19.5 4.24902 12 4.24902V4.24902Z" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12 15.75C12.9946 15.75 13.9484 15.3549 14.6517 14.6517C15.3549 13.9484 15.75 12.9946 15.75 12C15.75 11.0054 15.3549 10.0516 14.6517 9.34835C13.9484 8.64509 12.9946 8.25 12 8.25C11.0054 8.25 10.0516 8.64509 9.34835 9.34835C8.64509 10.0516 8.25 11.0054 8.25 12C8.25 12.9946 8.64509 13.9484 9.34835 14.6517C10.0516 15.3549 11.0054 15.75 12 15.75V15.75Z" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<svg id="create-icon-hide" onclick="CreatePasswordIcon()" width="20" height="10" viewBox="0 0 20 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.858 2.93481L18.9963 6.63906" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12.4547 4.99353L13.1215 8.77578" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M7.53701 4.99133L6.86951 8.77433" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M3.13825 2.9325L0.989502 6.6525" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M1 0.83252C2.575 2.78252 5.4655 5.25002 10 5.25002C14.5345 5.25002 17.4235 2.78252 19 0.83252" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
<div class="relative">
<input type="password" placeholder="Confirm passowrd" class="form_password focus:outline-none focus:ring-2 focus:ring-accents font-display transition duration-300 ease-in-out" id="myInput" name="password">
<span class="absolute top-[17px] right-5 cursor-pointer ">
<svg id="icon-show" onclick="PasswordIcon()" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 4.24902C4.5 4.24902 1.5 11.9999 1.5 11.9999C1.5 11.9999 4.5 19.749 12 19.749C19.5 19.749 22.5 11.9999 22.5 11.9999C22.5 11.9999 19.5 4.24902 12 4.24902V4.24902Z" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12 15.75C12.9946 15.75 13.9484 15.3549 14.6517 14.6517C15.3549 13.9484 15.75 12.9946 15.75 12C15.75 11.0054 15.3549 10.0516 14.6517 9.34835C13.9484 8.64509 12.9946 8.25 12 8.25C11.0054 8.25 10.0516 8.64509 9.34835 9.34835C8.64509 10.0516 8.25 11.0054 8.25 12C8.25 12.9946 8.64509 13.9484 9.34835 14.6517C10.0516 15.3549 11.0054 15.75 12 15.75V15.75Z" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<svg id="icon-hide" onclick="PasswordIcon()" width="20" height="10" viewBox="0 0 20 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.858 2.93481L18.9963 6.63906" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12.4547 4.99353L13.1215 8.77578" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M7.53701 4.99133L6.86951 8.77433" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M3.13825 2.9325L0.989502 6.6525" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M1 0.83252C2.575 2.78252 5.4655 5.25002 10 5.25002C14.5345 5.25002 17.4235 2.78252 19 0.83252" stroke="#272343" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
<button class="btn-primary">Save Changes</button>
</div>
</div>
</div>
<!-- user password change end -->
<!-- user profile change start -->
<div class="box xl:w-[312px]">
<div class="">
<div class="p-6">
<h2 class="xl:text-2xl acc-title text-[22px] text-[#272343] font-medium mb-6 font-display text-center">Change Profile Photo</h2>
<div class="pb-[26px] mx-auto">
<img class="w-[150px] h-[150px] rounded-full mx-auto object-cover" src="./public/assets/images/all-img/profile-photo.png" alt="image description" id="blah">
</div>
<div class="flex justify-center pb-3">
<input type="file" id="real-file" hidden="hidden" onchange="readURL(this);" accept=".jpeg, .doc, .docx, .xls, .xlsx, .txt, .jpg, .png, .gif" />
<button type="button" id="custom-button" class="flex gap-3 items-center transition-all duration-300 hover:bg-[#272343] bg-accents text-white text-base font-semibold py-[17px] px-6 rounded-lg font-display">
<span class="">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 17H17.5C19.9853 17 22 14.9853 22 12.5C22 10.0147 19.9853 8 17.5 8H17.293C16.64 5.6915 14.5176 4 12 4C9.48245 4 7.35996 5.6915 6.70703 8H6.5C4.01472 8 2 10.0147 2 12.5C2 14.9853 4.01472 17 6.5 17H8" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12 19.5V9.5M12 9.5L8.5 13M12 9.5L15.5 13" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>Upload Now</button>
</div>
<p class="text-center text-[#636270] text-sm font-display">JPG or PNG. max size of 500KB</p>
</div>
</div>
</div>
<!-- user profile change end -->
</div>
</div>
</div>
</div>
<!-- Account Setting End -->
<!-- order History start -->
<div id="order_history" class="hidden p-4">
<div class="container">
<div class="shopping-cart-wrapper pt-10 pb-20 flex items-start gap-6">
<!-- shopping cart start -->
<div class="shopping-cart w-full">
<div class="px-6 py-6 overflow-x-auto">
<table class="min-w-[1240px] w-full leading-normal">
<thead>
<tr class="">
<th class="pb-6 border-b border-[#E1E3E6] text-left text-xs font-semibold text-[#272343] uppercase tracking-wider w-[160px]">
Order
</th>
<th class="pb-6 border-b border-[#E1E3E6] text-left text-xs font-semibold text-[#272343] uppercase tracking-wider w-[200px]">
Date
</th>
<th class="pb-6 border-b border-[#E1E3E6] text-left text-xs font-semibold text-[#272343] uppercase tracking-wider w-[140px]">
Total Product
</th>
<th class="pb-6 border-b border-[#E1E3E6] text-left text-xs font-semibold text-[#272343] uppercase tracking-wider w-[120px]">
Toral price
</th>
<th class="pb-6 border-b border-[#E1E3E6] text-left text-xs font-semibold text-[#272343] uppercase tracking-wider w-[100px]">
Status
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="py-6 text-sm">
<a href="order-details.html" class="text-[#007580] text-[14px] block font-display leading-[120%] font-medium ">#2485</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="mb-0 block">02 April, 2021</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">05</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">$265.00</a>
</td>
<td class="py-6 text-sm">
<a href="order-details.html" class="btn-warning px-3 py-2 inline-block text-[#F5813F] text-[14px] leading-[120%] font-display">Pending</a>
</td>
</tr>
<tr>
<td class="py-6 text-sm">
<a href="order-details.html" class="text-[#007580] block text-[14px] font-display leading-[120%] font-medium ">#8901</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="mb-0 block">29 May, 2021</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">01</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">$265.00</a>
</td>
<td class="py-6 text-sm">
<a href="order-details.html" class="btn-success2 px-3 py-2 inline-block text-[#01AD5A] text-[14px] leading-[120%] font-display">Completed</a>
</td>
</tr>
<tr>
<td class="py-6 text-sm">
<a href="order-details.html" class="text-[#007580] block text-[14px] font-display leading-[120%] font-medium ">#8901</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="mb-0 block">29 May, 2021</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">01</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">$265.00</a>
</td>
<td class="py-6 text-sm">
<a href="order-details.html" class="btn-success2 px-3 py-2 inline-block text-[#01AD5A] text-[14px] leading-[120%] font-display">Completed</a>
</td>
</tr>
<tr>
<td class="py-6 text-sm">
<a href="order-details.html" class="text-[#007580] block text-[14px] font-display leading-[120%] font-medium ">#8901</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="mb-0 block">29 May, 2021</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">01</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">$265.00</a>
</td>
<td class="py-6 text-sm">
<a href="order-details.html" class="btn-success2 px-3 py-2 inline-block text-[#01AD5A] text-[14px] leading-[120%] font-display">Completed</a>
</td>
</tr>
<tr>
<td class="py-6 text-sm">
<a href="order-details.html" class="text-[#007580] block text-[14px] font-display leading-[120%] font-medium ">#8901</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="mb-0 block">29 May, 2021</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">01</a>
</td>
<td class="py-6 text-sm text-[#272343]">
<a href="order-details.html" class="block">$265.00</a>
</td>
<td class="py-6 text-sm">
<a href="order-details.html" class="btn-success2 px-3 py-2 inline-block text-[#01AD5A] text-[14px] leading-[120%] font-display">Completed</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!-- order History end -->
<!-- Order Details start -->
<div id="order_details" class="hidden p-4">
<div class="container pt-10 pb-20">
<div class="box">
<div class="">
<div class="flex flex-wrap justify-between items-center px-8 py-[30px]">
<h2 class="text-[#272343] font-display xl:text-[32px] text-[18px] font-semibold leading-[110%] capitalize">Order Details</h2>
<button class="btn-primary capitalize">back to List</button>
</div>
<hr class="my-0">
<div class="px-8 py-8 flex flex-col md:flex-row md:flex-wrap gap-6 xl:gap-2 xl:justify-between md:items-center">
<div class="flex-wrap">
<p class="text-[#9A9CAA] font-display text-[14px] leading-[100%] capitalize pb-[10px]">Order ID:</p>
<span class="text-gray-black font-display text-[20px] leading-[120%] font-medium">#2485</span>
</div>
<div class="flex-wrap">
<p class="text-[#9A9CAA] font-display text-[14px] leading-[100%] capitalize pb-[10px]">Date:</p>
<span class="text-gray-black font-display text-[20px] leading-[120%] font-medium">02 April, 2021</span>
</div>
<div class="flex-wrap">
<p class="text-[#9A9CAA] font-display text-[14px] leading-[100%] capitalize pb-[10px]">Email:</p>
<span class="text-gray-black font-display text-[20px] leading-[120%] font-medium">[email protected]</span>
</div>
<div class="flex-wrap">
<p class="text-[#9A9CAA] font-display text-[14px] leading-[100%] capitalize pb-[10px]">Total:</p>
<span class="text-gray-black font-display text-[20px] leading-[120%] font-medium">$265.00</span>
</div>
<div class="flex-wrap">
<p class="text-[#9A9CAA] font-display text-[14px] leading-[100%] capitalize pb-[10px]">Status:</p>
<span class="text-gray-black font-display text-[20px] leading-[120%] font-medium">Proccesing</span>
</div>
<div class="flex-wrap">
<p class="text-[#9A9CAA] font-display text-[14px] leading-[100%] capitalize pb-[10px]">Payment Method:</p>
<span class="text-gray-black font-display text-[20px] leading-[120%] font-medium">Paypal</span>
</div>
</div>
</div>
<div class="w-full">
<div class="overflow-x-auto">
<table class="min-w-full leading-normal">
<thead class="bg-off-white">
<tr class="">
<th class="pt-4 pb-4 px-8 border-b border-[#E1E3E6] text-left text-lg font-medium leading-[100%] text-[#272343] uppercase tracking-wider w-[305px]">
Product
</th>
<th class="pt-4 pb-4 border-b border-[#E1E3E6] text-left text-lg font-medium leading-[100%] text-[#272343] uppercase tracking-wider w-[140px]">
Price
</th>
<th class="pt-4 pb-4 border-b border-[#E1E3E6] text-left text-lg font-medium leading-[100%] text-[#272343] uppercase tracking-wider w-[145px]">
Quantity
</th>
<th class="pt-4 pb-4 border-b border-[#E1E3E6] text-left text-lg font-medium leading-[100%] text-[#272343] uppercase tracking-wider w-[175px]">
Subtotal
</th>
<th class="pt-4 pb-4 border-b border-[#E1E3E6] text-left text-lg font-medium leading-[100%] text-[#272343] uppercase tracking-wider w-[295px]">
Info
</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="text-sm px-6 pt-6">
<div class="flex justify-between items-center">
<div class="flex items-center gap-3">
<div>
<img src="./public/assets/images/all-img/product1.png" alt="">
</div>
<p>Isolate Sofa Chair</p>
</div>
</div>
</td>
<td class="text-sm">
<p class="mb-0">$145.00</p>
</td>
<td class="text-sm">
<p>x1</p>
</td>
<td class="text-sm">
<p>$145.00</p>
</td>
<td class="text-sm pt-6">
<div class="mb-6">
<ul class="p-0 m-0 ">
<li class="">
<p class="text-[15px] inline-flex gap-2 items-center">
<span class="text-[#9A9CAA]">Color:</span><span class="text-[#636270] font-medium">Black</span>
</p>
</li>
<li>
<p class="text-[15px] inline-flex gap-2 items-center">
<span class="text-[#9A9CAA]">Material:</span><span class="text-[#636270] font-medium">Polyester, Fabric</span>
</p>
</li>
<li>
<p class="text-[15px] inline-flex gap-2 items-center">
<span class="text-[#9A9CAA]">Brand:</span><span class="text-[#636270] font-medium">Purefit</span>
</p>
</li>
</ul>
</div>
</td>
</tr>
<tr class="">
<td class="text-sm px-6 ">
<div class="flex justify-between items-center">
<div class="flex items-center gap-3">
<div>
<img src="./public/assets/images/all-img/product1.png" alt="">
</div>
<p>Isolate Sofa Chair</p>
</div>
</div>
</td>
<td class="text-sm">
<p class="mb-0">$145.00</p>
</td>
<td class="text-sm">
<p>x1</p>
</td>
<td class="text-sm">
<p>$145.00</p>
</td>
<td class="text-sm pt-6">
<div class="mb-6">
<ul class="p-0 m-0">
<li class="">
<p class="text-[15px] inline-flex gap-2 items-center">
<span class="text-[#9A9CAA]">Color:</span><span class="text-[#636270] font-medium">Black</span>
</p>
</li>
<li>
<p class="text-[15px] inline-flex gap-2 items-center">
<span class="text-[#9A9CAA]">Material:</span><span class="text-[#636270] font-medium">Polyester, Fabric</span>
</p>
</li>
<li>
<p class="text-[15px] inline-flex gap-2 items-center">
<span class="text-[#9A9CAA]">Brand:</span><span class="text-[#636270] font-medium">Purefit</span>
</p>
</li>
</ul>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<hr class="my-0">
<div class="px-8 py-8 flex flex-col md:flex-row md:flex-wrap gap-y-6 justify-between md:items-center">
<div>
<h2 class="text-gray-black font-medium font-display xl:text-[32px] text-[20px] leading-[110%] capitalize ">Billing address</h2>
<p class="font-display text-[16px] leading-[120%] font-normal text-[#272343] pt-5 pb-2">Kevin Gilbert</p>
<p class="text-[#636270] text-[14px] leading-[150%] font-display font-normal pb-4">
4140 Parker Rd. Allentown, New Mexico 31134
</p>
<p class="text-[#636270] text-[14px] leading-[100%] font-display font-normal pb-4">[email protected]</p>
<span class="text-[#636270] text-[14px] leading-[100%] font-display font-normal">+8801497 548244</span>
</div>
<div>
<h2 class="text-gray-black font-medium font-display xl:text-[32px] text-[20px] leading-[110%] capitalize">Shipping address</h2>
<p class="font-display text-[16px] leading-[120%] font-normal text-[#272343] pt-5 pb-2">Kevin Gilbert</p>
<p class="text-[#636270] text-[14px] leading-[150%] font-display font-normal pb-4">
4140 Parker Rd. Allentown, New Mexico 31134
</p>
<p class="text-[#636270] text-[14px] leading-[100%] font-display font-normal pb-4">[email protected]</p>
<span class="text-[#636270] text-[14px] leading-[100%] font-display font-normal">+8801497 548244</span>
</div>
<div class="px-6 py-6 bg-off-white rounded-lg max-w-[348px] w-full">
<div class="">
<div class="flex justify-between pb-4">
<p>Subtotal</p>
<p>$1,435.00</p>
</div>
<div class="flex justify-between pb-4">
<p>discount</p>
<p>26%</p>
</div>
<div class="flex justify-between">
<p>shipping</p>
<p>Free</p>
</div>
<hr>
<div class="flex justify-between">
<p class="text-[18px] font-display text-dark-gray ">Total:</p>
<p class="text-[22px] font-display leading-[120%] font-sem">$1026.23</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Order Details end -->
<!-- wishlist start -->
<div id="wishlist" class="hidden">
<section>
<div class="container px-3 md:px-5 xl:px-0 xl:pt-10 xl:pb-20 py-8">
<!-- shopping cart start -->
<div class="shopping-cart">
<div class="px-6 py-6 overflow-x-auto">
<table class="min-w-[872px] w-full leading-normal">
<thead>
<tr>
<th class="pb-6 border-b border-[#E1E3E6] text-left text-xs font-semibold text-[#272343] uppercase tracking-wider w-[340px]">
Products
</th>
<th class="pb-6 border-b border-[#E1E3E6] text-left text-xs font-semibold text-[#272343] uppercase tracking-wider w-[104px]">
Price
</th>
<th class="pb-6 border-b border-[#E1E3E6] text-left text-xs font-semibold text-[#272343] uppercase tracking-wider">
Stock Status
</th>
<th class="pb-6 border-b border-[#E1E3E6] text-left text-xs font-semibold text-[#272343] uppercase tracking-wider">
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="py-6 text-sm">
<div class="flex gap-2 items-center">
<button class="p-2">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 2L6.00003 6M6.00003 6L10 2M6.00003 6L2 10M6.00003 6L10 10" stroke="#9A9CAA" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>