-
Notifications
You must be signed in to change notification settings - Fork 0
/
ad-list.html
2737 lines (2717 loc) · 236 KB
/
ad-list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Onest || Ad List</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="512x512" href="./src/images/favicon_io/android-chrome-512x512.png" />
<link rel="apple-touch-icon" sizes="192x192" href="./src/images/favicon_io/android-chrome-192x192.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./src/images/favicon_io/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./src/images/favicon_io/favicon-16x16.png" />
<link rel="manifest" href="./src/images/favicon_io/site.webmanifest" />
<link rel="stylesheet" href="./src/plugins/select2/css/select2.min.css" />
<link rel="stylesheet" href="./src/plugins/select2/css/select2-bootstrap-5-theme.css" />
<link rel="stylesheet" href="./src/plugins/css/rangeSlider.min.css">
<link rel="stylesheet" href="./src/plugins/css/bootstrap.min.css">
<link rel="stylesheet" href="./src/css/main.css">
<link rel="stylesheet" href="./src/css/extra.css">
</head>
<body>
<div class="loader">
<div class="loader-icon">
<img src="./src/images/loader.gif" alt="loader" />
</div>
</div>
<!-- header section start -->
<header class="header header--three">
<div class="container navigation-bar">
<div class="navigation-bar__left">
<div class="d-flex align-items-center ">
<button class="toggle-icon ">
<span class="toggle-icon__bar"></span>
<span class="toggle-icon__bar"></span>
<span class="toggle-icon__bar"></span>
</button>
<!-- Brand Logo -->
<a href="index.html" class="navigation-bar__logo">
<img src="./src/images/svg/logo-dark.svg" alt="brand-logo" class="logo-white text-white" />
<img src="./src/images/svg/logo-dark.svg" alt="brand-logo" class="logo-dark">
</a>
</div>
<!-- Menu -->
<ul class="menu">
<li class="menu__item">
<a href="#" class="menu__link">
Home
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu-dropdown">
<li class="menu-dropdown__item">
<a href="index.html" class="menu-dropdown__link">Homepage 01</a>
</li>
<li class="menu-dropdown__item">
<a href="home-02.html" class="menu-dropdown__link">Homepage 02</a>
</li>
<li class="menu-dropdown__item">
<a href="home-03.html" class="menu-dropdown__link">Homepage 03</a>
</li>
</ul>
</li>
<li class="menu__item">
<a href="ad-list.html" class="menu__link active">Listing</a>
</li>
<li class="menu__item">
<a href="#" class="menu__link">
Pages
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu-dropdown">
<li class="menu-dropdown__item">
<a href="blog-list.html" class="menu-dropdown__link">Blog List</a>
</li>
<li class="menu-dropdown__item">
<a href="blog-details.html" class="menu-dropdown__link">Single Blogs</a>
</li>
<li class="menu-dropdown__item">
<a href="about.html" class="menu-dropdown__link">About</a>
</li>
<li class="menu-dropdown__item">
<a href="price-plan.html" class="menu-dropdown__link">Pricing Plans</a>
</li>
<li class="menu-dropdown__item">
<a href="signin.html" class="menu-dropdown__link">Sign In</a>
</li>
<li class="menu-dropdown__item">
<a href="signup.html" class="menu-dropdown__link">Sign Up</a>
</li>
<li class="menu-dropdown__item">
<a href="dashboard.html" class="menu-dropdown__link">user Dashboard</a>
</li>
<li class="menu-dropdown__item">
<a href="faq.html" class="menu-dropdown__link">Faqs</a>
</li>
<li class="menu-dropdown__item">
<a href="404-error.html" class="menu-dropdown__link">404 Error Pages</a>
</li>
</ul>
</li>
<li class="menu__item">
<a href="get-membership.html" class="menu__link">Get Membership</a>
</li>
<li class="menu__item">
<a href="contact.html" class="menu__link">Contact</a>
</li>
</ul>
</div>
<div class="navigation-bar__right">
<!-- Action Buttons -->
<div class="navigation-bar__buttons">
<a href="message-board.html" class="message">
<span class="icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M4.25895 16.5939C3.14076 14.7089 2.74916 12.4805 3.15768 10.3272C3.56621 8.1739 4.74675 6.2438 6.47764 4.89933C8.20853 3.55486 10.3707 2.8885 12.5581 3.02539C14.7455 3.16227 16.8078 4.09298 18.3575 5.64274C19.9073 7.19251 20.838 9.25472 20.9749 11.4421C21.1118 13.6296 20.4455 15.7917 19.101 17.5226C17.7565 19.2535 15.8264 20.4341 13.6732 20.8426C11.5199 21.2511 9.29149 20.8596 7.40649 19.7414L7.40651 19.7413L4.29808 20.6294C4.16947 20.6662 4.03338 20.6678 3.90391 20.6343C3.77443 20.6007 3.65628 20.5332 3.5617 20.4386C3.46713 20.344 3.39956 20.2259 3.36601 20.0964C3.33246 19.9669 3.33415 19.8308 3.37089 19.7022L4.25901 16.5938L4.25895 16.5939Z"
stroke="#767E94"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path d="M12 13.125C12.6213 13.125 13.125 12.6213 13.125 12C13.125 11.3787 12.6213 10.875 12 10.875C11.3787 10.875 10.875 11.3787 10.875 12C10.875 12.6213 11.3787 13.125 12 13.125Z" fill="#767E94" />
<path d="M7.5 13.125C8.12132 13.125 8.625 12.6213 8.625 12C8.625 11.3787 8.12132 10.875 7.5 10.875C6.87868 10.875 6.375 11.3787 6.375 12C6.375 12.6213 6.87868 13.125 7.5 13.125Z" fill="#767E94" />
<path
d="M16.5 13.125C17.1213 13.125 17.625 12.6213 17.625 12C17.625 11.3787 17.1213 10.875 16.5 10.875C15.8787 10.875 15.375 11.3787 15.375 12C15.375 12.6213 15.8787 13.125 16.5 13.125Z"
fill="#767E94"
/>
</svg>
</span>
</a>
<a href="dashboard.html" class="user">
<div class="user__img-wrapper">
<img src="./src/images/users/img-01.png" alt="user-img" />
</div>
</a>
<a href="#" class="btn">
<span class="icon--left">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21Z" stroke="currentColor" stroke-width="1.6" stroke-miterlimit="10"></path>
<path d="M8.25 12H15.75" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M12 8.25V15.75" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
Post Ads
</a>
</div>
</div>
<!-- Responsive Navigation Menu -->
<div class="menu--sm mobile-menu">
<!-- head -->
<div class="mobile-menu__header">
<!-- brand -->
<div class="mobile-menu__brand">
<a href="index.html">
<img src="./src/images/svg/logo-dark.svg" alt="logo">
</a>
<div class="close">
<span>
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5 5.08325L15.6066 15.6899" stroke="#191F33" stroke-width="1.9375" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4.99999 15.9167L15.6066 5.31015" stroke="#191F33" stroke-width="1.9375" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</div>
</div>
<div class="mobile-menu__search">
<form action="#">
<div class="input-field">
<input type="text" placeholder="Ads, Title, keyword..." class="">
<button class="icon icon-search">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M21.0004 21.0004L16.6504 16.6504" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</button>
</div>
</form>
</div>
<div class="mobile-menu__body">
<ul >
<li class="menu--sm__item">
<a href="#" class="menu--sm__link active">
Home
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu--sm-dropdown">
<li class="menu--sm-dropdown__item">
<a href="index.html" class="menu--sm-dropdown__link active">Homepage 01</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="home-02.html" class="menu--sm-dropdown__link">Homepage 02</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="home-03.html" class="menu--sm-dropdown__link">Homepage 03</a>
</li>
</ul>
</li>
<li class="menu--sm__item">
<a href="#" class="menu--sm__link">
All Category
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu--sm-dropdown">
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Mobile</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Electronics</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Vehicles</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Property</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Essentials</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Home & Living</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Business Industry</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="#" class="menu--sm-dropdown__link">Education</a>
</li>
</ul>
</li>
<li class="menu--sm__item">
<a href="ad-list.html" class="menu--sm__link">Ads Listing</a>
</li>
<li class="menu--sm__item">
<a href="#" class="menu--sm__link">
Pages
<span class="icon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6L8 11L13 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</span>
</a>
<ul class="menu--sm-dropdown">
<li class="menu--sm-dropdown__item">
<a href="blog-list.html" class="menu--sm-dropdown__link">Blog List</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="blog-details.html" class="menu--sm-dropdown__link">Single Blogs</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="about.html" class="menu--sm-dropdown__link">About</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="price-plan.html" class="menu--sm-dropdown__link">Pricing Plans</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="signin.html" class="menu--sm-dropdown__link">Sign In</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="signup.html" class="menu--sm-dropdown__link">Sign Up</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="dashboard.html" class="menu--sm-dropdown__link">user Dashboard</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="faq.html" class="menu--sm-dropdown__link">Faqs</a>
</li>
<li class="menu--sm-dropdown__item">
<a href="404-error.html" class="menu--sm-dropdown__link">404 Error Pages</a>
</li>
</ul>
</li>
<li class="menu--sm__item">
<a href="get-membership.html" class="menu--sm__link">Get Membership</a>
</li>
<li class="menu--sm__item">
<a href="contact.html" class="menu--sm__link">Contact</a>
</li>
</ul>
</div>
<div class="mobile-menu__language">
<h2>Languages</h2>
<div class="language-picker js-language-picker mobile-show">
<form action="" class="language-picker__form">
<label for="language-picker-select"></label>
<select name="language-picker-select" id="language-picker-select">
<option lang="en" value="english" selected>En</option>
<option lang="de" value="deutsch">De</option>
<option lang="fr" value="francais">Fr</option>
</select>
</form>
</div>
</div>
</div>
<!-- footer -->
<div class="mobile-menu__footer ">
<div class="mobile-menu-user-wrap">
<div class="mobile-menu-user-left">
<div class="mobile-menu-user">
<img src="./src/images/users/img-06.png" alt="">
</div>
<div class="mobile-menu-user-data">
<h5>Jenny Wilson</h5>
<p>Member</p>
</div>
</div>
<div class="mobile-menu-user-right">
<a class="sign-out" href="signin.html"><img src="./src/images/svg/SignOut.svg" alt=""></a>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- header section end -->
<!-- breedcrumb section start -->
<section class="breedcrumb" style="background: url('src/images/bg/bg-04.jpg') center center/cover no-repeat;">
<div class="container">
<h2 class="breedcrumb__title text--heading-2">Ad List</h2>
<ul class="breedcrumb__page">
<li class="breedcrumb__page-item">
<a href="index.html" class="breedcrumb__page-link text--body-3">Home</a>
</li>
<li class="breedcrumb__page-item">
<a href="#" class="breedcrumb__page-link text--body-3">/</a>
</li>
<li class="breedcrumb__page-item">
<a href="#" class="breedcrumb__page-link text--body-3">Ad list</a>
</li>
</ul>
</div>
</section>
<!-- breedcrumb section end -->
<div class="ad-list__search-box">
<div class="container">
<!-- Search Box -->
<div class="search">
<form action="#">
<div class="search__content">
<!-- search by keyword/title -->
<div class="search__content-item">
<div class="input-field">
<input type="text" placeholder="Search by ads title, keyword..." />
<span class="icon icon--left">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z"
stroke="#00AAFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path d="M21 21L16.65 16.65" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</div>
<!-- Search By location -->
<div class="search__content-item">
<div class="input-field">
<input type="text" placeholder="Locations" />
<span class="icon icon--left">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12 12.75C13.6569 12.75 15 11.4069 15 9.75C15 8.09315 13.6569 6.75 12 6.75C10.3431 6.75 9 8.09315 9 9.75C9 11.4069 10.3431 12.75 12 12.75Z"
stroke="#00AAFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M19.5 9.75C19.5 16.5 12 21.75 12 21.75C12 21.75 4.5 16.5 4.5 9.75C4.5 7.76088 5.29018 5.85322 6.6967 4.4467C8.10322 3.04018 10.0109 2.25 12 2.25C13.9891 2.25 15.8968 3.04018 17.3033 4.4467C18.7098 5.85322 19.5 7.76088 19.5 9.75V9.75Z"
stroke="#00AAFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</span>
</div>
</div>
<!-- Select Category temprorary disable -->
<div class="search__content-item">
<div class="input-field">
<select name="category" class="js-example-basic-single w-100" style="width: calc(100% - 60px);">
<option value="null" style="display: none;">Select Category</option>
<option value="1">Category 1</option>
<option value="2">Category 2</option>
</select>
<span class="icon icon--left">
<svg viewBox="0 0 24 24" width="24" height="24" stroke="#00AAFF" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1">
<polygon points="12 2 2 7 12 12 22 7 12 2"></polygon>
<polyline points="2 17 12 22 22 17"></polyline>
<polyline points="2 12 12 17 22 12"></polyline>
</svg>
</span>
</div>
</div>
<!-- Search Btn -->
<div class="search__content-item">
<button class="btn btn--lg">
<span class="icon--left">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z"
stroke="white"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path d="M21 21L16.65 16.65" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
Search
</button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="mobile-search-filed">
<div class="container">
<div class="search-field-wrap">
<div class="input-field">
<input type="text" placeholder="Search for anything">
<span class="icon icon--left">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M9.16667 15.8333C12.8486 15.8333 15.8333 12.8486 15.8333 9.16667C15.8333 5.48477 12.8486 2.5 9.16667 2.5C5.48477 2.5 2.5 5.48477 2.5 9.16667C2.5 12.8486 5.48477 15.8333 9.16667 15.8333Z"
stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M17.5 17.5L13.875 13.875" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round"
stroke-linejoin="round"></path>
</svg>
</span>
</div>
<span class="toggle-bar">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 11.25L12 20.25" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path d="M12 3.75L12 8.25" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path d="M18.75 18.75L18.7501 20.25" stroke="white" stroke-width="1.6" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M18.7501 3.75L18.75 15.75" stroke="white" stroke-width="1.6" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M21 15.75H16.5" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path d="M5.25007 15.75L5.25 20.25" stroke="white" stroke-width="1.6" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M5.25 3.75L5.25007 12.75" stroke="white" stroke-width="1.6" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M3 12.75H7.5" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path d="M14.25 8.25H9.75" stroke="white" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</div>
</div>
<div class="offcanvas-overlay"></div>
<section class="filter">
<div class="container">
<div class="filter-result">
<div class="filter-result-item">
<h2 class="text--body-2"><span class="text--body-2-600">574,395</span> Results Founds</h2>
</div>
<div class="filter-result-item">
<div class="input-field__group">
<div class="input-select">
<select class="js-example-basic-single w-100">
<option value="01"> Latest</option>
<option value="02"> Used</option>
<option value="03"> New</option>
</select>
</div>
<div class="input-select mobile-none">
<select class="js-example-basic-single w-100">
<option value="01"> 1 Per Page</option>
<option value="02"> 2 Per Page</option>
<option value="03"> 3 Per Page</option>
<option value="04"> 4 Per Page</option>
</select>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section ad-list">
<div class="container">
<div class="row">
<div class="col-xl-3">
<div class="list-sidebar">
<div class="product-filter">
<h3>Product Filters</h3>
<span class="close"><svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.625 4.375L4.375 15.625" stroke="#767E94" stroke-width="1.6" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M15.625 15.625L4.375 4.375" stroke="#767E94" stroke-width="1.6" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</span>
</div>
<div class="accordion list-sidebar__accordion" id="accordionGroup">
<div class="accordion-item list-sidebar__accordion-item category">
<h2 class="accordion-header list-sidebar__accordion-header" id="category">
<button class="accordion-button list-sidebar__accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#categoryCollapse" aria-expanded="true" aria-controls="categoryCollapse">
Category
</button>
</h2>
<div id="categoryCollapse" class="accordion-collapse collapse show" aria-labelledby="category" data-bs-parent="#accordionGroup">
<div class="accordion-body list-sidebar__accordion-body">
<div class="accordion list-sidebar__accordion-inner" id="subcategoryGroup">
<div class="accordion-item list-sidebar__accordion-inner-item">
<h2 class="accordion-header" id="mobile">
<div class="accordion-button list-sidebar__accordion-inner-button" data-bs-toggle="collapse" data-bs-target="#mobileCollapse" aria-expanded="true" aria-controls="mobileCollapse">
<span class="list-sidebar__accordion-inner-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M18 20.25V3.75C18 2.92157 17.3284 2.25 16.5 2.25L7.5 2.25C6.67157 2.25 6 2.92157 6 3.75L6 20.25C6 21.0784 6.67157 21.75 7.5 21.75H16.5C17.3284 21.75 18 21.0784 18 20.25Z"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path d="M9 5.25H15" stroke="#66CCFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
Mobile
<span class="icon icon--plus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#AEB3C2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 2.5V13.5" stroke="#AEB3C2" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<span class="icon icon--minus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#464D61" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</h2>
<div id="mobileCollapse" class="accordion-collapse collapse show" aria-labelledby="mobile" data-bs-parent="#subcategoryGroup">
<div class="accordion-body list-sidebar__accordion-inner-body">
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-1-1" />
<label class="form-check-label" for="category-item-1-1">
Mobile 01
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-1-2" />
<label class="form-check-label" for="category-item-1-2">
Mobile 02
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-1-3" />
<label class="form-check-label" for="category-item-1-3">
Mobile 03
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-1-4" />
<label class="form-check-label" for="category-item-1-4">
Mobile 04
</label>
</div>
</div>
</div>
</div>
</div>
<div class="accordion-item list-sidebar__accordion-inner-item">
<h2 class="accordion-header" id="electronics">
<div
class="accordion-button list-sidebar__accordion-inner-button collapsed"
data-bs-toggle="collapse"
data-bs-target="#electronicsCollapse"
aria-expanded="true"
aria-controls="electronicsCollapse"
>
<span class="list-sidebar__accordion-inner-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M4.5 18L19.5 18C20.3284 18 21 17.3284 21 16.5V6C21 5.17157 20.3284 4.5 19.5 4.5L4.5 4.5C3.67157 4.5 3 5.17157 3 6V16.5C3 17.3284 3.67157 18 4.5 18Z"
stroke="#00AAFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path d="M15 21H9" stroke="#00AAFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
Electronics
<span class="icon icon--plus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#AEB3C2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 2.5V13.5" stroke="#AEB3C2" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<span class="icon icon--minus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#464D61" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</h2>
<div id="electronicsCollapse" class="accordion-collapse collapse" aria-labelledby="electronics" data-bs-parent="#subcategoryGroup">
<div class="accordion-body list-sidebar__accordion-inner-body">
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-2-1" />
<label class="form-check-label" for="category-item-2-1">
Electronics 01
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-2-2" />
<label class="form-check-label" for="category-item-2-2">
Electronics 02
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-2-3" />
<label class="form-check-label" for="category-item-2-3">
Electronics 03
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-2-4" />
<label class="form-check-label" for="category-item-2-4">
Electronics 04
</label>
</div>
</div>
</div>
</div>
</div>
<div class="accordion-item list-sidebar__accordion-inner-item">
<h2 class="accordion-header" id="vehicles">
<div
class="accordion-button list-sidebar__accordion-inner-button collapsed"
data-bs-toggle="collapse"
data-bs-target="#vehicleCollapse"
aria-expanded="true"
aria-controls="vehicleCollapse"
>
<span class="list-sidebar__accordion-inner-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.5 11.25H22.5" stroke="#66CCFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M21 17.25V19.5C21 19.6989 20.921 19.8897 20.7803 20.0303C20.6397 20.171 20.4489 20.25 20.25 20.25H18C17.8011 20.25 17.6103 20.171 17.4697 20.0303C17.329 19.8897 17.25 19.6989 17.25 19.5V17.25"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M6.75 17.25V19.5C6.75 19.6989 6.67098 19.8897 6.53033 20.0303C6.38968 20.171 6.19891 20.25 6 20.25H3.75C3.55109 20.25 3.36032 20.171 3.21967 20.0303C3.07902 19.8897 3 19.6989 3 19.5V17.25"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path d="M6 14.25H7.5" stroke="#66CCFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path d="M16.5 14.25H18" stroke="#66CCFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M21 11.25L18.198 4.9454C18.139 4.81282 18.0429 4.70018 17.9213 4.62113C17.7996 4.54208 17.6577 4.5 17.5126 4.5H6.48741C6.34233 4.5 6.20037 4.54208 6.07872 4.62113C5.95708 4.70018 5.86097 4.81282 5.80205 4.9454L3 11.25V17.25H21V11.25Z"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</span>
Vehicles
<span class="icon icon--plus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#AEB3C2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 2.5V13.5" stroke="#AEB3C2" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<span class="icon icon--minus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#464D61" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</h2>
<div id="vehicleCollapse" class="accordion-collapse collapse" aria-labelledby="vehicles" data-bs-parent="#subcategoryGroup">
<div class="accordion-body list-sidebar__accordion-inner-body">
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-3-1" />
<label class="form-check-label" for="category-item-3-1">
Vehicles 01
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-3-2" />
<label class="form-check-label" for="category-item-3-2">
Vehicles 02
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-3-3" />
<label class="form-check-label" for="category-item-3-3">
Vehicles 03
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-3-4" />
<label class="form-check-label" for="category-item-3-4">
Vehicles 04
</label>
</div>
</div>
</div>
</div>
</div>
<div class="accordion-item list-sidebar__accordion-inner-item">
<h2 class="accordion-header" id="property">
<div
class="accordion-button list-sidebar__accordion-inner-button collapsed"
data-bs-toggle="collapse"
data-bs-target="#propertyCollapse"
aria-expanded="true"
aria-controls="propertyCollapse"
>
<span class="list-sidebar__accordion-inner-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M4.5 13.0859V19.4995C4.5 19.6985 4.57902 19.8892 4.71967 20.0299C4.86032 20.1705 5.05109 20.2495 5.25 20.2495H18.75C18.9489 20.2495 19.1397 20.1705 19.2803 20.0299C19.421 19.8892 19.5 19.6985 19.5 19.4995V13.0861"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M5.06573 3.75H18.9343C19.0973 3.75 19.2558 3.80309 19.3859 3.90124C19.516 3.99939 19.6106 4.13725 19.6554 4.29396L21 9H3L4.34458 4.29396C4.38936 4.13725 4.48396 3.99939 4.61408 3.90124C4.7442 3.80309 4.90274 3.75 5.06573 3.75Z"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M9 9V10.5C9 11.2956 8.68393 12.0587 8.12132 12.6213C7.55871 13.1839 6.79565 13.5 6 13.5C5.20435 13.5 4.44129 13.1839 3.87868 12.6213C3.31607 12.0587 3 11.2956 3 10.5V9"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M15 9V10.5C15 11.2956 14.6839 12.0587 14.1213 12.6213C13.5587 13.1839 12.7956 13.5 12 13.5C11.2044 13.5 10.4413 13.1839 9.87868 12.6213C9.31607 12.0587 9 11.2956 9 10.5V9"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M21 9V10.5C21 11.2956 20.6839 12.0587 20.1213 12.6213C19.5587 13.1839 18.7956 13.5 18 13.5C17.2044 13.5 16.4413 13.1839 15.8787 12.6213C15.3161 12.0587 15 11.2956 15 10.5V9"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</span>
Property
<span class="icon icon--plus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#AEB3C2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 2.5V13.5" stroke="#AEB3C2" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<span class="icon icon--minus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#464D61" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</h2>
<div id="propertyCollapse" class="accordion-collapse collapse" aria-labelledby="property" data-bs-parent="#subcategoryGroup">
<div class="accordion-body list-sidebar__accordion-inner-body">
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-4-1" />
<label class="form-check-label" for="category-item-4-1">
Property 01
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-4-2" />
<label class="form-check-label" for="category-item-4-2">
Property 02
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-4-3" />
<label class="form-check-label" for="category-item-4-3">
Property 03
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-4-4" />
<label class="form-check-label" for="category-item-4-4">
Property 04
</label>
</div>
</div>
</div>
</div>
</div>
<div class="accordion-item list-sidebar__accordion-inner-item">
<h2 class="accordion-header" id="essential">
<div
class="accordion-button list-sidebar__accordion-inner-button collapsed"
data-bs-toggle="collapse"
data-bs-target="#essentialCollapse"
aria-expanded="true"
aria-controls="essentialCollapse"
>
<span class="list-sidebar__accordion-inner-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M17.343 3.47489L13.4091 7.40882L13.9394 10.0605L16.5911 10.5908L20.525 6.65687L20.5254 6.65671C21.0123 7.80611 21.1288 9.07873 20.8585 10.2974C20.5883 11.5161 19.9448 12.6202 19.0177 13.4561C18.0906 14.2919 16.9259 14.818 15.6859 14.9609C14.4458 15.1039 13.192 14.8566 12.099 14.2536L12.0991 14.2534L6.84106 20.3408C6.41902 20.7624 5.84685 20.9991 5.25034 20.9989C4.65382 20.9987 4.08179 20.7617 3.65999 20.3399C3.23819 19.9181 3.00115 19.3461 3.00098 18.7495C3.00081 18.153 3.23752 17.5809 3.65908 17.1588L9.7464 11.9008L9.74627 11.9009C9.14326 10.8079 8.89603 9.5541 9.03897 8.31402C9.18191 7.07394 9.70793 5.90929 10.5438 4.98216C11.3796 4.05504 12.4838 3.41158 13.7025 3.14135C14.9211 2.87113 16.1938 2.98758 17.3432 3.47451L17.343 3.47489Z"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</span>
Essentials
<span class="icon icon--plus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#AEB3C2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 2.5V13.5" stroke="#AEB3C2" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<span class="icon icon--minus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#464D61" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</h2>
<div id="essentialCollapse" class="accordion-collapse collapse" aria-labelledby="essential" data-bs-parent="#subcategoryGroup">
<div class="accordion-body list-sidebar__accordion-inner-body">
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-5-1" />
<label class="form-check-label" for="category-item-5-1">
Essentials 01
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-5-2" />
<label class="form-check-label" for="category-item-5-2">
Essentials 02
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-5-3" />
<label class="form-check-label" for="category-item-5-3">
Essential 03
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-5-4" />
<label class="form-check-label" for="category-item-5-4">
Essential 04
</label>
</div>
</div>
</div>
</div>
</div>
<div class="accordion-item list-sidebar__accordion-inner-item">
<h2 class="accordion-header" id="home">
<div class="accordion-button list-sidebar__accordion-inner-button collapsed" data-bs-toggle="collapse" data-bs-target="#homeCollapse" aria-expanded="true" aria-controls="homeCollapse">
<span class="list-sidebar__accordion-inner-icon">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M20.25 20.2498V10.8316C20.25 10.7271 20.2282 10.6238 20.1859 10.5282C20.1436 10.4326 20.0818 10.347 20.0045 10.2767L12.504 3.45775C12.3659 3.33223 12.186 3.26269 11.9995 3.2627C11.8129 3.2627 11.633 3.33226 11.4949 3.45778L3.99545 10.2767C3.91814 10.347 3.85637 10.4326 3.8141 10.5282C3.77183 10.6238 3.75 10.7271 3.75 10.8316V20.2498"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path d="M1.5 20.25H22.5" stroke="#66CCFF" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M14.2495 20.249V14.999C14.2495 14.8001 14.1704 14.6093 14.0298 14.4687C13.8891 14.328 13.6984 14.249 13.4995 14.249H10.4995C10.3005 14.249 10.1098 14.328 9.96912 14.4687C9.82847 14.6093 9.74945 14.8001 9.74945 14.999V20.249"
stroke="#66CCFF"
stroke-width="1.6"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</span>
Home & Living
<span class="icon icon--plus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#AEB3C2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
<path d="M8 2.5V13.5" stroke="#AEB3C2" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
<span class="icon icon--minus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 8H13.5" stroke="#464D61" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</div>
</h2>
<div id="homeCollapse" class="accordion-collapse collapse" aria-labelledby="home" data-bs-parent="#subcategoryGroup">
<div class="accordion-body list-sidebar__accordion-inner-body">
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-6-1" />
<label class="form-check-label" for="category-item-6-1">
Home 01
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-6-2" />
<label class="form-check-label" for="category-item-6-2">
Home 02
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-6-3" />
<label class="form-check-label" for="category-item-6-3">
Home 03
</label>
</div>
</div>
<div class="list-sidebar__accordion-inner-body--item">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="category-item-6-4" />
<label class="form-check-label" for="category-item-6-4">
Home 04
</label>