-
Notifications
You must be signed in to change notification settings - Fork 0
/
explore-1.html
1106 lines (1094 loc) · 62.8 KB
/
explore-1.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 class="no-js" lang="en">
<!-- Mirrored from thememarch.com/demo/html/enfhess-html/enfhess-dark/explore-1.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 03 Nov 2022 07:16:26 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="ThemeMarch">
<!-- Site Title -->
<title>Your Organization Name</title>
<link rel="stylesheet" href="assets/css/plugins/fontawesome.min.css">
<link rel="stylesheet" href="assets/css/plugins/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/plugins/slick.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="cs-dark">
<div class="cs-preloader cs-center">
<div class="cs-preloader_in"></div>
<span>Loading</span>
</div>
<!-- Start Header Section -->
<header class="cs-site_header cs-style1 cs-sticky-header cs-white_bg">
<div class="cs-main_header">
<div class="container-fluid">
<div class="cs-main_header_in">
<div class="cs-main_header_left">
<h3>Your Logo</h3>
</div>
<div class="cs-main_header_right">
<div class="cs-search_wrap">
<form action="#" class="cs-search">
<input type="text" class="cs-search_input" placeholder="Search">
<button class="cs-search_btn">
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.16667 16.3333C12.8486 16.3333 15.8333 13.3486 15.8333 9.66667C15.8333 5.98477 12.8486 3 9.16667 3C5.48477 3 2.5 5.98477 2.5 9.66667C2.5 13.3486 5.48477 16.3333 9.16667 16.3333Z" stroke="currentColor" stroke-opacity="0.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 18L13.875 14.375" stroke="currentColor" stroke-opacity="0.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</form>
</div>
<div class="cs-nav_wrap">
<div class="cs-nav_out">
<div class="cs-nav_in">
<div class="cs-nav">
<ul class="cs-nav_list">
<li class="menu-item-has-children">
<a href="index.html">Home</a>
<ul>
<li><a href="index.html">Home Default</a></li>
<li><a href="index_2.html">Home Style 2</a></li>
<li><a href="index_3.html">Home Style 3</a></li>
<li><a href="index_4.html">Home Style 4</a></li>
<li><a href="index_5.html">Home Style 5</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="explore-1.html">Explore</a>
<ul>
<li><a href="explore-1.html">Explore Style 1</a></li>
<li><a href="explore-2.html">Explore Style 2</a></li>
<li><a href="explore-details.html">Explore Details</a></li>
<li><a href="live-action.html">Live Auction</a></li>
<li><a href="collection.html">Collection</a></li>
<li><a href="collection-details.html">Collection Details</a></li>
</ul>
</li>
<li><a href="how-it-works.html">How It Works</a></li>
<li class="menu-item-has-children">
<a href="blog.html">Community</a>
<ul>
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-with-sidebar.html">Blog With Sidebar</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
</ul>
</li>
<li><a href="activity.html">Activity</a></li>
<li class="menu-item-has-children cs-mega-menu">
<a href="#">Pages</a>
<ul class="cs-mega-wrapper">
<li class="menu-item-has-children">
<a href="#">Column One</a>
<ul>
<li><a href="connect-wallet.html">Connect Wallet</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="help-center.html">Help Center</a></li>
<li><a href="help-center-browser-by-category.html">Help Center Catagory</a></li>
<li><a href="help-details.html">Help Center Details</a></li>
<li><a href="terms-condition.html">Terms & Conditions</a></li>
<li><a href="privacy-policy.html">Privacy Policy</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="404.html">404</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Column Two</a>
<ul>
<li><a href="user-profile.html">Edit Profile</a></li>
<li><a href="user-account-settings.html">Profile Settings</a></li>
<li><a href="user-items.html">My Item</a></li>
<li><a href="create-items.html">Create Items</a></li>
<li><a href="user-activity.html">My Activity</a></li>
<li><a href="user-wallet.html">My Wallet</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="forget-password.html">Forget Password</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="cs-header_btns_wrap">
<div class="cs-header_btns">
<div class="cs-header_icon_btn cs-center cs-mobile_search_toggle">
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.16667 16.3333C12.8486 16.3333 15.8333 13.3486 15.8333 9.66667C15.8333 5.98477 12.8486 3 9.16667 3C5.48477 3 2.5 5.98477 2.5 9.66667C2.5 13.3486 5.48477 16.3333 9.16667 16.3333Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 18L13.875 14.375" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="cs-toggle_box cs-notification_box">
<div class="cs-toggle_btn cs-header_icon_btn cs-center">
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 6.63916C14 5.44569 13.5259 4.30109 12.682 3.45718C11.8381 2.61327 10.6935 2.13916 9.5 2.13916C8.30653 2.13916 7.16193 2.61327 6.31802 3.45718C5.47411 4.30109 5 5.44569 5 6.63916C5 11.8892 2.75 13.3892 2.75 13.3892H16.25C16.25 13.3892 14 11.8892 14 6.63916Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.7981 16.3887C10.6663 16.616 10.477 16.8047 10.2493 16.9358C10.0216 17.067 9.76341 17.136 9.50063 17.136C9.23784 17.136 8.97967 17.067 8.75196 16.9358C8.52424 16.8047 8.33498 16.616 8.20312 16.3887" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span class="cs-btn_badge">8</span>
</div>
<div class="cs-toggle_body">
<h3 class="cs-notification_title">Notifications 10</h3>
<ul class="cs-notification_list">
<li>
<a href="#" class="cs-notification_item">
<div class="cs-notification_thumb"><img src="assets/img/general/notificaiton_1.jpg" alt="Image"></div>
<div class="cs-notification_right">
<p>@mark joshef purchased</p>
<h4>Digital NFT Art</h4>
</div>
</a>
</li>
<li>
<a href="#" class="cs-notification_item">
<div class="cs-notification_thumb"><img src="assets/img/general/notificaiton_2.jpg" alt="Image"></div>
<div class="cs-notification_right">
<p>@ellen capaso commented</p>
<h4>Digital NFT Art</h4>
</div>
</a>
</li>
<li>
<a href="#" class="cs-notification_item">
<div class="cs-notification_thumb"><img src="assets/img/general/notificaiton_3.jpg" alt="Image"></div>
<div class="cs-notification_right">
<p>@steve boone started following you.</p>
</div>
</a>
</li>
<li>
<a href="#" class="cs-notification_item">
<div class="cs-notification_thumb"><img src="assets/img/general/notificaiton_4.jpg" alt="Image"></div>
<div class="cs-notification_right">
<p>@mark jos just share</p>
<h4>Digital NFT Art</h4>
</div>
</a>
</li>
<li>
<a href="#" class="cs-notification_item">
<div class="cs-notification_thumb"><img src="assets/img/general/notificaiton_5.jpg" alt="Image"></div>
<div class="cs-notification_right">
<p>@richard steger purchased</p>
<h4>Digital NFT Art</h4>
</div>
</a>
</li>
</ul>
<div class="text-center">
<a href="#" class="cs-btn cs-style1">
<span>
View More
<svg width="14" height="13" viewBox="0 0 14 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.4366 7.01471C13.7295 6.72181 13.7295 6.24694 13.4366 5.95404L8.66361 1.18107C8.37072 0.888181 7.89584 0.888181 7.60295 1.18107C7.31006 1.47397 7.31006 1.94884 7.60295 2.24173L11.8456 6.48438L7.60295 10.727C7.31006 11.0199 7.31006 11.4948 7.60295 11.7877C7.89584 12.0806 8.37072 12.0806 8.66361 11.7877L13.4366 7.01471ZM0.90625 7.23438H12.9062V5.73438H0.90625V7.23438Z" fill="currentColor"/>
</svg>
</span>
</a>
</div>
</div>
</div>
<div class="cs-toggle_box cs-profile_box">
<div class="cs-toggle_btn cs-header_icon_btn cs-center">
<svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.5 15.75V14.25C15.5 13.4544 15.1839 12.6913 14.6213 12.1287C14.0587 11.5661 13.2956 11.25 12.5 11.25H6.5C5.70435 11.25 4.94129 11.5661 4.37868 12.1287C3.81607 12.6913 3.5 13.4544 3.5 14.25V15.75" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9.5 8.25C11.1569 8.25 12.5 6.90685 12.5 5.25C12.5 3.59315 11.1569 2.25 9.5 2.25C7.84315 2.25 6.5 3.59315 6.5 5.25C6.5 6.90685 7.84315 8.25 9.5 8.25Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="cs-toggle_body">
<div class="cs-user_info">
<h3 class="cs-user_name">Thomas G. Smith</h3>
<h4 class="cs-user_balance">13.45 ETH</h4>
<div class="cs-user_profile_link">
<div class="cs-user_profile_link_in">
<span>1BAkZn7LrU43oK8Jv...</span>
<button>
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.35381 4.15531L4.35156 5.74756V13.6256C4.35156 14.272 4.60837 14.892 5.06549 15.3491C5.52261 15.8063 6.1426 16.0631 6.78906 16.0631H13.2511C13.1346 16.3921 12.9191 16.6769 12.634 16.8784C12.349 17.0799 12.0086 17.1881 11.6596 17.1881H6.78906C5.84423 17.1881 4.93809 16.8127 4.26999 16.1446C3.6019 15.4765 3.22656 14.5704 3.22656 13.6256V5.74756C3.22656 5.01256 3.69681 4.38631 4.35381 4.15531ZM13.5391 2.18506C13.7607 2.18506 13.9801 2.22871 14.1848 2.31351C14.3896 2.39832 14.5756 2.52262 14.7323 2.67932C14.889 2.83601 15.0133 3.02204 15.0981 3.22678C15.1829 3.43152 15.2266 3.65095 15.2266 3.87256V13.6226C15.2266 13.8442 15.1829 14.0636 15.0981 14.2683C15.0133 14.4731 14.889 14.6591 14.7323 14.8158C14.5756 14.9725 14.3896 15.0968 14.1848 15.1816C13.9801 15.2664 13.7607 15.3101 13.5391 15.3101H6.78906C6.34151 15.3101 5.91229 15.1323 5.59582 14.8158C5.27935 14.4993 5.10156 14.0701 5.10156 13.6226V3.87256C5.10156 3.42501 5.27935 2.99578 5.59582 2.67932C5.91229 2.36285 6.34151 2.18506 6.78906 2.18506H13.5391ZM13.5391 3.31006H6.78906C6.63988 3.31006 6.4968 3.36932 6.39132 3.47481C6.28583 3.5803 6.22656 3.72337 6.22656 3.87256V13.6226C6.22656 13.9331 6.47856 14.1851 6.78906 14.1851H13.5391C13.6882 14.1851 13.8313 14.1258 13.9368 14.0203C14.0423 13.9148 14.1016 13.7717 14.1016 13.6226V3.87256C14.1016 3.72337 14.0423 3.5803 13.9368 3.47481C13.8313 3.36932 13.6882 3.31006 13.5391 3.31006Z" fill="currentColor"/>
</svg>
</button>
</div>
</div>
</div>
<ul>
<li><a href="user-profile.html">My Profile</a></li>
<li><a href="user-items.html">My Item</a></li>
<li><a href="user-wallet.html">My Wallet</a></li>
<li><a href="user-account-settings.html">Settings</a></li>
<li>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="mode_switch" checked>
<label class="form-check-label" for="mode_switch">Night Mode</label>
</div>
</li>
<li><a href="login.html">Logout</a></li>
</ul>
<div class="text-center">
<a href="create-items.html" class="cs-btn cs-style1"><span>Create</span></a>
</div>
</div>
</div>
<a href="connect-wallet.html" class="cs-btn cs-style1"><span>Connect Wallet</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- End Header Section -->
<div class="cs-height_90 cs-height_lg_80"></div>
<!-- Start Page Head -->
<section class="cs-page_head cs-bg" data-src="assets/img/page_head_bg.svg">
<div class="container">
<div class="text-center">
<h1 class="cs-page_title">Explore</h1>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active">Explore</li>
</ol>
</div>
</div>
</section>
<!-- End Page Head -->
<div class="cs-height_100 cs-height_lg_70"></div>
<div class="container">
<div class="cs-sidebar_frame cs-style1">
<div class="cs-sidebar_frame_left">
<div class="cs-filter_sidebar">
<div class="cs-search_widget">
<form action="#" class="cs-search">
<input type="text" class="cs-search_input" placeholder="Search">
<button class="cs-search_btn">
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.16667 16.3333C12.8486 16.3333 15.8333 13.3486 15.8333 9.66667C15.8333 5.98477 12.8486 3 9.16667 3C5.48477 3 2.5 5.98477 2.5 9.66667C2.5 13.3486 5.48477 16.3333 9.16667 16.3333Z" stroke="currentColor" stroke-opacity="0.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 18L13.875 14.375" stroke="currentColor" stroke-opacity="0.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</form>
</div>
<div class="cs-filter_widget">
<h2 class="cs-filter_toggle_btn">
Catagory
<span class="cs-arrow_icon">
<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.679688 0.96582L4.67969 4.96582L8.67969 0.96582" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</h2>
<div class="cs-filter_toggle_body">
<ul>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="category" id="Art" checked>
<label class="form-check-label" for="Art">Art</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="category" id="Fashion">
<label class="form-check-label" for="Fashion">
Fashion
</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="category" id="Music">
<label class="form-check-label" for="Music">
Music
</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="category" id="Video">
<label class="form-check-label" for="Video">
Video
</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="category" id="Games">
<label class="form-check-label" for="Games">
Games
</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="category" id="Sports">
<label class="form-check-label" for="Sports">
Sports
</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="category" id="Collectibles">
<label class="form-check-label" for="Collectibles">
Collectibles
</label>
</div>
</li>
</ul>
</div>
</div> <!-- .cs-filter_widget -->
<div class="cs-filter_widget">
<h2 class="cs-filter_toggle_btn">
Status
<span class="cs-arrow_icon">
<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.679688 0.96582L4.67969 4.96582L8.67969 0.96582" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</h2>
<div class="cs-filter_toggle_body">
<ul>
<li>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="flexCheckChecked" checked>
<label class="form-check-label" for="flexCheckChecked">Buy Now</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">In Auction</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="flexCheckDefault2">
<label class="form-check-label" for="flexCheckDefault2">Looking to Sell</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="checkbox" id="flexCheckDefault3">
<label class="form-check-label" for="flexCheckDefault3">Has Offers</label>
</div>
</li>
</ul>
</div>
</div> <!-- .cs-filter_widget -->
<div class="cs-filter_widget">
<h2 class="cs-filter_toggle_btn">
Price
<span class="cs-arrow_icon">
<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.679688 0.96582L4.67969 4.96582L8.67969 0.96582" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</h2>
<div class="cs-filter_toggle_body">
<div class="cs-price_form">
<form class="row row-15">
<div class="col-lg-12">
<div class="cs-form_field_wrap cs-select_arrow">
<select class="cs-form_field cs-field_sm">
<option value="BTC">BTC</option>
<option value="BTC">BTC</option>
<option value="ETH">ETH</option>
<option value="ADA">ADA</option>
</select>
</div>
<div class="cs-height_15 cs-height_lg_15"></div>
</div>
<div class="col-lg-6">
<div class="cs-form_field_wrap">
<input type="text" class="cs-form_field cs-field_sm" placeholder="Min">
</div>
<div class="cs-height_15 cs-height_lg_15"></div>
</div>
<div class="col-lg-6">
<div class="cs-form_field_wrap">
<input type="text" class="cs-form_field cs-field_sm" placeholder="Max">
</div>
<div class="cs-height_10 cs-height_lg_10"></div>
</div>
<div class="col-lg-6">
<input type="reset" class="cs-btn cs-style1 cs-color1 cs-btn_sm" value="Clear">
</div>
<div class="col-lg-6">
<button class="cs-btn cs-style1 cs-btn_sm"><span>Apply</span></button>
</div>
</form>
</div>
</div>
</div> <!-- .cs-filter_widget -->
<div class="cs-filter_widget">
<h2 class="cs-filter_toggle_btn">
Collection
<span class="cs-arrow_icon">
<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.679688 0.96582L4.67969 4.96582L8.67969 0.96582" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</h2>
<div class="cs-filter_toggle_body">
<ul>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="collection" id="Audioglyphs" checked>
<label class="form-check-label" for="Audioglyphs">Audioglyphs</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="collection" id="Autoglyphs">
<label class="form-check-label" for="Autoglyphs">
Autoglyphs
</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="collection" id="CryptoCrystal">
<label class="form-check-label" for="CryptoCrystal">
CryptoCrystal
</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="collection" id="CryptoArte">
<label class="form-check-label" for="CryptoArte">
CryptoArte
</label>
</div>
</li>
<li>
<div class="form-check">
<input class="form-check-input" type="radio" name="collection" id="CyberKongz">
<label class="form-check-label" for="CyberKongz">
CyberKongz
</label>
</div>
</li>
</ul>
</div>
</div> <!-- .cs-filter_widget -->
<div class="cs-filter_widget">
<h2 class="cs-filter_toggle_btn">
Filter By Color
<span class="cs-arrow_icon">
<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0.679688 0.96582L4.67969 4.96582L8.67969 0.96582" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</h2>
<div class="cs-filter_toggle_body">
<div class="cs-filter_by_color">
<div class="cs-color_item cs-color1"></div>
<div class="cs-color_item cs-color2"></div>
<div class="cs-color_item cs-color3"></div>
<div class="cs-color_item cs-color4"></div>
<div class="cs-color_item cs-color5"></div>
<div class="cs-color_item cs-color6"></div>
<div class="cs-color_item cs-color7"></div>
<div class="cs-color_item cs-color8"></div>
</div>
</div>
</div> <!-- .cs-filter_widget -->
</div>
</div>
<div class="cs-sidebar_frame_right">
<div class="cs-filter_head">
<div class="cs-filter_head_left">
<span class="cs-search_result cs-medium cs-ternary_color">29064886 Results</span>
<div class="cs-form_field_wrap">
<input type="text" class="cs-form_field cs-field_sm" placeholder="In Auction">
</div>
<a href="#" class="cs-clear_btn">Clear All</a>
</div>
<div class="cs-filter_head_right">
<div class="cs-form_field_wrap cs-select_arrow">
<select class="cs-form_field cs-field_sm">
<option value="11">Sort By</option>
<option value="22">Last 7 days</option>
<option value="33">Last 30 days</option>
<option value="44">All time</option>
</select>
</div>
<div class="cs-form_field_wrap cs-select_arrow">
<select class="cs-form_field cs-field_sm">
<option value="1">Likes</option>
<option value="2">Most popular</option>
<option value="3">By price</option>
<option value="4">By published</option>
</select>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
<div class="row">
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
2.1K
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/1.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_12.png" alt="Avatar">
<span>Johny E.</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Art work #2134</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.29 ETH 7/21</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
3.3K
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/2.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_13.png" alt="Avatar">
<span>debit alex</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Cool octopus traveling</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.24 ETH 4/17</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
3.1K
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/3.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_12.png" alt="Avatar">
<span>robert Alex</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Octopus eating icecrem</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.09 ETH 1/9</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
2.1K
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/4.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_12.png" alt="Avatar">
<span>johny e.</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Panda with fish</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.19 ETH 5/11</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
1.2K
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/5.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_13.png" alt="Avatar">
<span>austin R.</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Kawaii-bubble-tea</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.29 ETH 11/19</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
1.1k
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/6.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_12.png" alt="Avatar">
<span>robert</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Cute monsters hallo</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.19 ETH 7/13</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
2.2k
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/7.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_13.png" alt="Avatar">
<span>debit alex</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Cat-mascot-character</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.28 ETH 21/91</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
1.4k
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/8.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_12.png" alt="Avatar">
<span>debit alex</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Small kid with orange</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.17 ETH 14/23</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
1.9k
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/9.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_13.png" alt="Avatar">
<span>austin r.</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Digital Cat Illustration</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.09 ETH 10/91</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
9.3k
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/10.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_12.png" alt="Avatar">
<span>gallant j.</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Fictional character</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.06 ETH 11/109</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
4.2k
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/11.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_13.png" alt="Avatar">
<span>robert alex</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Octopus eating icecrem</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.09 ETH 1/9</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
<div class="col-xl-3 col-lg-4 col-sm-6">
<div class="cs-card cs-style4 cs-box_shadow cs-white_bg">
<span class="cs-card_like cs-primary_color">
<i class="fas fa-heart fa-fw"></i>
5.2k
</span>
<a href="explore-details.html" class="cs-card_thumb cs-zoom_effect">
<img src="assets/img/explore/12.jpg" alt="Image" class="cs-zoom_item">
</a>
<div class="cs-card_info">
<a href="#" class="cs-avatar cs-white_bg">
<img src="assets/img/avatar/avatar_13.png" alt="Avatar">
<span>robert</span>
</a>
<h3 class="cs-card_title"><a href="explore-details.html">Cute monsters hallo</a></h3>
<div class="cs-card_price">Current Bid: <b class="cs-primary_color">0.19 ETH 7/13</b></div>
<hr>
<div class="cs-card_footer">
<span class="cs-card_btn_1" data-modal="#history_1">
<i class="fas fa-redo fa-fw"></i>
View History
</span>
<span class="cs-card_btn_2" data-modal="#bid_1"><span>Place Bid</span></span>
</div>
</div>
</div>
<div class="cs-height_30 cs-height_lg_30"></div>
</div><!-- .col -->
</div>
<div class="cs-height_10 cs-height_lg_10"></div>
<div class="text-center">
<a href="#" class="cs-btn cs-style1 cs-btn_lg"><span>Load More</span></a>
</div>
</div>
</div>
</div>
<div class="cs-height_100 cs-height_lg_70"></div>
<!-- Start Footer -->
<footer class="cs-footer cs-style1">
<div class="cs-footer_bg"></div>
<div class="cs-height_100 cs-height_lg_60"></div>
<div class="container">
<div class="row">
<div class="col-lg-8">
<div class="row">
<div class="col-lg-4 col-sm-4">
<div class="cs-footer_widget">
<h2 class="cs-widget_title">Marketplace</h2>
<ul class="cs-widget_nav">
<li><a href="explore-1.html">All NFTs</a></li>
<li><a href="explore-2.html">Popular Art</a></li>
<li><a href="explore-1.html">Digital Art</a></li>
<li><a href="explore-1.html">Trending</a></li>
<li><a href="explore-details.html">Explore Details</a></li>
<li><a href="live-action.html">Live Action</a></li>
</ul>
</div>
</div><!-- .col -->
<div class="col-lg-4 col-sm-4">
<div class="cs-footer_widget">
<h2 class="cs-widget_title">Account</h2>
<ul class="cs-widget_nav">
<li><a href="user-profile.html">Profile</a></li>
<li><a href="user-items.html">My Collection</a></li>
<li><a href="create-items.html">Create & Upload</a></li>
<li><a href="user-account-settings.html">Account Setting</a></li>
<li><a href="connect-wallet.html">Connect wallet</a></li>
<li><a href="explore-1.html">Wishlist</a></li>
</ul>
</div>
</div><!-- .col -->
<div class="col-lg-4 col-sm-4">
<div class="cs-footer_widget">
<h2 class="cs-widget_title">Company</h2>
<ul class="cs-widget_nav">
<li><a href="blog.html">Recent News</a></li>
<li><a href="how-it-works.html">How it Works</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="faq.html">Help Center & FAQ</a></li>
</ul>
</div>
</div><!-- .col -->
</div>
</div>
<div class="col-lg-4 col-sm-12">
<div class="cs-footer_widget">
<h2 class="cs-widget_title">Subscribe to our newsletter.</h2>
<form class="cs-footer_newsletter">
<input type="text" placeholder="Enter Your Email" class="cs-newsletter_input">
<button class="cs-newsletter_btn">
<svg width="25" height="16" viewBox="0 0 25 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M24.7014 9.03523C25.0919 8.64471 25.0919 8.01154 24.7014 7.62102L18.3374 1.25706C17.9469 0.866533 17.3137 0.866533 16.9232 1.25706C16.5327 1.64758 16.5327 2.28075 16.9232 2.67127L22.5801 8.32812L16.9232 13.985C16.5327 14.3755 16.5327 15.0087 16.9232 15.3992C17.3137 15.7897 17.9469 15.7897 18.3374 15.3992L24.7014 9.03523ZM0.806641 9.32812H23.9943V7.32812H0.806641V9.32812Z" fill="white"/>
</svg>
</button>
</form>
<div class="cs-footer_social_btns">
<a href="#"><i class="fab fa-facebook-f fa-fw"></i></a>
<a href="#"><i class="fab fa-twitter fa-fw"></i></a>
<a href="#"><i class="fab fa-linkedin-in fa-fw"></i></a>
<a href="#"><i class="fab fa-instagram fa-fw"></i></a>
<a href="#"><i class="fab fa-whatsapp fa-fw"></i></a>
<a href="#"><i class="fab fa-github fa-fw"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="cs-height_60 cs-height_lg_20"></div>
<div class="cs-footer_bottom">
<div class="container">
<div class="cs-footer_separetor"></div>
<div class="cs-footer_bottom_in">
<div class="cs-copyright">Copyright 2022. Your Company</div>
<ul class="cs-footer_menu">
<li><a href="privacy-policy.html">Privacy Policy</a></li>
<li><a href="terms-condition.html">Term & Condition</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- End Footer -->
<!-- Start Modal -->
<div class="cs-modal_wrap" id="history_1">
<div class="cs-modal_overlay"></div>
<div class="cs-modal_container">
<div class="cs-modal_container_in">
<div class="cs-modal_close cs-center">
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.9649 2.54988C12.3554 2.15936 12.3554 1.52619 11.9649 1.13567C11.5744 0.745142 10.9412 0.745142 10.5507 1.13567L11.9649 2.54988ZM0.550706 11.1357C0.160181 11.5262 0.160181 12.1594 0.550706 12.5499C0.94123 12.9404 1.5744 12.9404 1.96492 12.5499L0.550706 11.1357ZM1.96492 1.13567C1.5744 0.745142 0.94123 0.745142 0.550706 1.13567C0.160181 1.52619 0.160181 2.15936 0.550706 2.54988L1.96492 1.13567ZM10.5507 12.5499C10.9412 12.9404 11.5744 12.9404 11.9649 12.5499C12.3554 12.1594 12.3554 11.5262 11.9649 11.1357L10.5507 12.5499ZM10.5507 1.13567L0.550706 11.1357L1.96492 12.5499L11.9649 2.54988L10.5507 1.13567ZM0.550706 2.54988L10.5507 12.5499L11.9649 11.1357L1.96492 1.13567L0.550706 2.54988Z" fill="currentColor"/>
</svg>
</div>
<div class="cs-history">
<h2 class="cs-history_title">Bidding History</h2>
<ul class="cs-history_list">
<li>
<div class="cs-media cs-style1">
<div class="cs-media_thumb"><img src="assets/img/avatar/avatar_1.png" alt=""></div>
<div class="cs-media_info">
<h3 class="cs-media_title">Bid accepted <span>9 ETH</span> by @raymond</h3>
<div class="cs-media_subtitle">16 Mar 2022, 11:22 PM</div>
</div>
<div class="cs-media_icon cs-center">
<svg width="14" height="15" viewBox="0 0 14 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.12813 0.361363C3.64827 0.462564 3.27024 0.673413 2.90257 1.04494C2.65338 1.29672 2.54141 1.46434 2.39635 1.80267C2.23387 2.18165 2.21897 2.32007 2.21897 3.45088V4.46376H1.56184C1.03057 4.46376 0.885293 4.47185 0.803425 4.50609C0.673732 4.56026 0.586696 4.64212 0.519539 4.7731C0.470648 4.86845 0.446202 5.23207 0.233603 9.0251C0.105742 11.3064 0.00787787 13.2467 0.0161084 13.3369C0.036261 13.5577 0.182989 13.8537 0.347409 14.0053C0.41637 14.0689 0.555004 14.1598 0.655439 14.2074L0.838097 14.2939L3.18528 14.3015L5.53246 14.3091L5.44999 14.1648C5.31489 13.9283 5.22339 13.6155 5.20827 13.3382C5.1894 12.9924 5.511 8.44622 5.57009 8.22367C5.59401 8.13346 5.65155 7.98851 5.69792 7.9015C5.7974 7.71488 6.07382 7.44587 6.26646 7.34825C6.53541 7.21197 6.66385 7.19901 7.7493 7.19857L8.75419 7.19816L8.75463 7.12296C8.75485 7.08162 8.72958 6.57403 8.69846 5.99502C8.63661 4.84436 8.62436 4.77231 8.46467 4.61719C8.32486 4.48142 8.22511 4.46376 7.59819 4.46376H7.03641L7.02487 3.40418C7.01426 2.43147 7.00857 2.32734 6.95553 2.1341C6.60643 0.862169 5.38491 0.0963178 4.12813 0.361363ZM4.91416 1.15702C5.46205 1.2557 5.96198 1.71019 6.14532 2.27624C6.18754 2.40661 6.19545 2.56209 6.20466 3.44519L6.2153 4.46376H6.62568H7.03603L7.02695 4.94036C7.01872 5.37092 7.0124 5.42422 6.96146 5.49239C6.7697 5.74898 6.44007 5.75533 6.27327 5.50562C6.2147 5.41796 6.2112 5.38599 6.2112 4.93823V4.46376H4.62751H3.0438L3.03472 4.94036C3.02649 5.37092 3.02018 5.42422 2.96923 5.49239C2.77747 5.74898 2.44784 5.75533 2.28104 5.50562C2.22247 5.41796 2.21897 5.38599 2.21897 4.93823V4.46376H2.62913H3.03929V3.49439C3.03929 2.45168 3.04935 2.34895 3.17989 2.05926C3.32389 1.73978 3.60151 1.45143 3.92308 1.28737C4.19198 1.15018 4.58751 1.09818 4.91416 1.15702ZM6.66237 8.06992C6.52992 8.13133 6.44666 8.21793 6.39027 8.35284C6.33966 8.474 6.00757 13.0062 6.0281 13.2959C6.06157 13.7681 6.38174 14.1505 6.84301 14.2693C6.973 14.3028 7.46508 14.3076 10.0833 14.3013L13.1702 14.2939L13.3529 14.2074C13.4533 14.1598 13.5916 14.0691 13.6602 14.0059C13.8118 13.8662 13.9662 13.5698 13.9907 13.3714C14.0013 13.2853 13.9412 12.2675 13.8408 10.8349C13.6522 8.14407 13.673 8.28314 13.433 8.11443L13.3159 8.03215L10.0438 8.02567C6.90718 8.01949 6.76721 8.02133 6.66237 8.06992ZM8.98377 9.31092C9.15842 9.41106 9.19169 9.50668 9.19169 9.9085C9.19169 10.3577 9.23296 10.4949 9.42642 10.6896C9.67117 10.9358 10.0178 10.9837 10.3211 10.8134C10.619 10.6461 10.723 10.4096 10.723 9.89937C10.723 9.52782 10.7527 9.42673 10.8908 9.32823C11.0125 9.24136 11.2314 9.2369 11.3413 9.31902C11.5118 9.44628 11.5289 9.49541 11.5383 9.8866C11.5538 10.5265 11.424 10.9037 11.0638 11.2651C10.5795 11.7512 9.89454 11.869 9.27662 11.5727C9.09511 11.4856 9.0034 11.4184 8.83835 11.2513C8.48625 10.8948 8.37269 10.5776 8.37184 9.94804C8.37146 9.6501 8.37996 9.57663 8.42584 9.48185C8.52945 9.26783 8.77656 9.19214 8.98377 9.31092Z" fill="#050023"/>
</svg>
</div>
</div>
</li>
<li>
<div class="cs-media cs-style1">
<div class="cs-media_thumb"><img src="assets/img/avatar/avatar_1.png" alt=""></div>
<div class="cs-media_info">
<h3 class="cs-media_title">Followed by @jessica</h3>