-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtrash.html
1068 lines (1029 loc) · 75.7 KB
/
trash.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="ru" id="top">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/img/favicon/favicon-16x16.png">
<link rel="manifest" href="images/img/favicon/site.webmanifest">
<link rel="mask-icon" href="images/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Мусор</title>
<meta name="description" content="Специализированный магазин «Apple» в Казани. В рассрочку и кредит. Гарантия до 2 лет. ТЦ «Олимп», 3 этаж." />
<meta name="og:title" content="iSmart">
<meta name="og:description" content="Специализированный магазин «Apple» в Казани. В рассрочку и кредит. Гарантия до 2 лет. ТЦ «Олимп», 3 этаж.">
<meta name="og:url" content="iSmart.ru">
<meta name="og:site_name" content="iSmart – Официальный сайт">
<meta name="og:locale" content="ru_RU">
<meta name="og:type" content="website">
<!-- fonts Inter -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap;" rel="stylesheet">
<!-- fonts -->
<!-- fonts Poppins -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet">
<!-- bootstrap 5 css -->
<!-- CSS only -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha2/css/bootstrap.min.css" integrity="sha384-DhY6onE6f3zzKbjUPRc2hOzGAdEf4/Dz+WJwBvEYL/lkkIsI3ihufq9hk9K4lVoK" crossorigin="anonymous">
<!-- bootstrap 5 css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body class="bg-3 c-1">
<!-- header -->
<header class="c-1 d-none">
<!-- container -->
<div class="container container-big">
<!-- navigation -->
<nav class="navbar navbar-expand-lg">
<!-- logotype -->
<a class="navbar-brand p-0">
<img src="images/img/logo.svg" alt="iSmart" width="88" height="28">
</a>
<!-- menu button on mobile -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- collapse nav -->
<div class="collapse navbar-collapse justify-content-between" id="navbarNavDropdown">
<!-- mobile menu with products -->
<ul class="mobile-cat-list df fw-4 d-lg-none">
<li><a href="">iPhone</a></li>
<li><a href="">iPad</a></li>
<li><a href="">Macbook</a></li>
<li><a href="">AirPods</a></li>
<li><a href="">Аксессуары</a></li>
</ul>
<!-- header nav links -->
<ul class="navbar-nav fnw fw-5 lh-2 aic">
<!-- catalog link -->
<li class="nav-item dropdown br-4 df aic catalog position-static">
<a class="nav-link dropdown-toggle fs-16 fw-5" href="catalog.html" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-expanded="false" title="Показать меню товаров">
<svg class="mr-10" width="18" height="12" viewBox="0 0 18 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 12H17C17.55 12 18 11.55 18 11C18 10.45 17.55 10 17 10H1C0.45 10 0 10.45 0 11C0 11.55 0.45 12 1 12ZM1 7H17C17.55 7 18 6.55 18 6C18 5.45 17.55 5 17 5H1C0.45 5 0 5.45 0 6C0 6.55 0.45 7 1 7ZM0 1C0 1.55 0.45 2 1 2H17C17.55 2 18 1.55 18 1C18 0.45 17.55 0 17 0H1C0.45 0 0 0.45 0 1Z" fill="white"/>
</svg>
<span>Каталог товаров</span>
</a>
<ul class="dropdown-menu col-10 pr" aria-labelledby="navbarDropdownMenuLink">
<svg class="pa" width="21" height="10" viewBox="0 0 21 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.1007 0L20.2014 10H0L10.1007 0Z" fill="#E5E5E5"/>
</svg>
<div class="catalognav-menu bg-3 row flex-lg-row fnw">
<ul class="catalognav-list col-lg-4 row">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20 col-12">
iPhone
</li>
<li class="col-lg-6">
<ul>
<li>
<a href="">Iphone 12 pro</a>
</li>
<li>
<a href="">Iphone 12 pro max</a>
</li>
<li>
<a href="">Iphone 11 pro</a>
</li>
<li>
<a href="">Iphone 11 pro max</a>
</li>
<li>
<a href="">Iphone 11</a>
</li>
</ul>
</li>
<li class="col-lg-6">
<ul>
<li>
<a href="">Iphone 10</a>
</li>
<li>
<a href="">Iphone 10 R</a>
</li>
<li>
<a href="">Iphone 10 S</a>
</li>
</ul>
</li>
</ul>
<ul class="catalognav-list col-lg-2">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20">iPad</li>
<li><a href="">iPad Pro</a></li>
<li><a href="">iPad</a></li>
<li><a href="">iPad mini</a></li>
<li><a href="">iPad Air</a></li>
</ul>
<ul class="catalognav-list col-lg-2">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20">Macbook</li>
<li><a href="">Macbook Air</a></li>
<li><a href="">Macbook Pro 13</a></li>
<li><a href="">Macbook Pro 16</a></li>
<li><a href="">iMac</a></li>
</ul>
<ul class="catalognav-list col-lg-2">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20">AirPods</li>
<li><a href="">AirPods</a></li>
<li><a href="">AirPods Pro</a></li>
<li><a href="">AirPods Max</a></li>
<li><a href="">iPod touch</a></li>
</ul>
<ul class="catalognav-list col-lg-2">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20">Аксессуары</li>
<li><a href="">Зарядные<br>устройства</a></li>
<li><a href="">Аккумуляторы</a></li>
<li><a href="">Чехлы</a></li>
</ul>
</div>
</ul>
</li>
<!-- client link -->
<!-- news link -->
<li class="nav-item">
<a class="nav-link fs-16 fw-4" href="news.html">Новости</a>
</li>
<!-- contacts link -->
<li class="nav-item">
<a class="nav-link fs-16 fw-4" href="contacts.html">Контакты</a>
</li>
</ul>
<!-- search form -->
<form action="#" method="GET" class="search-form df aic mx-3 col-xxl-4">
<input required type="search" name="search" id="search" placeholder="Поиск по товарам" class="fs-16 lh-158 w-100">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 10.9999H11.71L11.43 10.7299C12.63 9.32989 13.25 7.41989 12.91 5.38989C12.44 2.60989 10.12 0.389893 7.32001 0.0498932C3.09001 -0.470107 -0.469985 3.08989 0.0500152 7.31989C0.390015 10.1199 2.61002 12.4399 5.39002 12.9099C7.42002 13.2499 9.33002 12.6299 10.73 11.4299L11 11.7099V12.4999L15.25 16.7499C15.66 17.1599 16.33 17.1599 16.74 16.7499C17.15 16.3399 17.15 15.6699 16.74 15.2599L12.5 10.9999ZM6.50002 10.9999C4.01002 10.9999 2.00002 8.98989 2.00002 6.49989C2.00002 4.00989 4.01002 1.99989 6.50002 1.99989C8.99002 1.99989 11 4.00989 11 6.49989C11 8.98989 8.99002 10.9999 6.50002 10.9999Z" fill="#323232"/>
</svg>
</form>
<div class="d-flex justify-content-between align-items-start nav-right">
<!-- LOGIN LINK -->
<a class="account fw-5 mr-30 d-none d-lg-flex aic" href="login.html">
<!-- login icon -->
<svg class="mr-10" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM7.07 18.28C7.5 17.38 10.12 16.5 12 16.5C13.88 16.5 16.51 17.38 16.93 18.28C15.57 19.36 13.86 20 12 20C10.14 20 8.43 19.36 7.07 18.28ZM18.36 16.83C16.93 15.09 13.46 14.5 12 14.5C10.54 14.5 7.07 15.09 5.64 16.83C4.62 15.49 4 13.82 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 13.82 19.38 15.49 18.36 16.83ZM12 6C10.06 6 8.5 7.56 8.5 9.5C8.5 11.44 10.06 13 12 13C13.94 13 15.5 11.44 15.5 9.5C15.5 7.56 13.94 6 12 6ZM12 11C11.17 11 10.5 10.33 10.5 9.5C10.5 8.67 11.17 8 12 8C12.83 8 13.5 8.67 13.5 9.5C13.5 10.33 12.83 11 12 11Z" fill="#323232"/>
</svg>
<!--
--><span>Войти</span>
</a>
<!-- phone and call order -->
<div class="d-flex flex-column align-items-end right">
<a class="tel d-block fs-18" href="tel:+7(952)034-36-34" title="Позвонить нам">+7 (952) 034-36-34</a>
<button type="button" class="c-3 fs-14 lh-2 underline" data-bs-toggle="modal" data-bs-target="#callBackModal">
заказать звонок
</button>
</div>
</div>
</div>
</nav>
<!-- navigation -->
</div>
<!-- container -->
</header>
<!-- header -->
<!-- Search -->
<!-- <button class="ml-auto btn-trans" aria-label="Поиск по сайту" title="Поиск по сайту">
<svg width="23" height="23" viewBox="0 0 23 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.0001 10C18.0001 14.4183 14.4184 18 10.0001 18C5.58184 18 2.00012 14.4183 2.00012 10C2.00012 5.58172 5.58184 2 10.0001 2C14.4184 2 18.0001 5.58172 18.0001 10ZM16.3288 17.743C14.6049 19.1537 12.4014 20 10.0001 20C4.47727 20 0.00012207 15.5228 0.00012207 10C0.00012207 4.47715 4.47727 0 10.0001 0C15.523 0 20.0001 4.47715 20.0001 10C20.0001 12.4013 19.1537 14.6049 17.743 16.3288L21.364 19.9497C21.7545 20.3402 21.7545 20.9734 21.364 21.3639C20.9734 21.7545 20.3403 21.7545 19.9498 21.3639L16.3288 17.743Z" fill="black"/>
</svg>
</button> -->
<!-- не надо -->
<!-- Call Back Modal -->
<div class="modal fade" id="callBackModal" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="callBackModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content mx-auto">
<div class="modal-header">
<h3 class="modal-title" id="callBackModalLabel">Заказать звонок</h3>
<button type="button" class="btn-close pa" data-bs-dismiss="modal" aria-label="Close">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.75 2.0125L15.9875 0.25L9 7.2375L2.0125 0.25L0.25 2.0125L7.2375 9L0.25 15.9875L2.0125 17.75L9 10.7625L15.9875 17.75L17.75 15.9875L10.7625 9L17.75 2.0125Z" fill="#C4C4C4"/>
</svg>
</button>
</div>
<div class="modal-body">
<!-- phone number -->
<fieldset class="mb-20">
<label for="userPhoneCallBack" class="form-label mb-10 c-13 fs-14 fw-6 required label">
Номер телефона
</label>
<input type="tel" id="userPhoneCallBack" class="form-control fs-14 input" placeholder="Телефон" required>
<div class="invalid-feedback">
Это поле ввода обязательно к заполнению
</div>
</fieldset>
<!-- user name -->
<fieldset>
<label for="userNameCallBack" class="form-label mb-10 c-13 fs-14 fw-6 required label">
Имя
</label>
<input type="text" id="userNameCallBack" class="form-control fs-14 input" placeholder="Имя" required>
<div class="invalid-feedback">
Это поле ввода обязательно к заполнению
</div>
</fieldset>
</div>
<div class="modal-footer row-cols-1 row-cols-sm-auto">
<button type="button" class="purple bttn">Отправить</button>
<button type="button" class="bg-9 br-4 bttn" data-bs-dismiss="modal">Отменить</button>
</div>
</div>
</div>
</div>
<!-- terms agree check -->
<label for="comment-checkbox" class="fw-5 c-10 d-block">
<input checked required type="checkbox" name="comment-checkbox" id="comment-checkbox" class="mr-10 pr" value=""><span>Я согласен на </span><a href="" class="c-1"><u>обработку персональных данных</u></a>
</label>
<!-- <div class="cart-item row">
<img class="img col-2" src="images/img/product.png" alt="">
<div class="name col-4">Смартфон Apple iPhone 11 Pro 256GB</div>
<div class="price col-2">
<del>89 990 ₽</del>
<ins>88 990 ₽</ins>
</div>
<div class="col-2">
<div class="number">
<button class="less btn-trans"></button>
<input type="number" min="1" max="10" name="" id="" value="10">
<button class="more btn-trans" disabled></button>
</div>
</div>
<div class="col-2 df aic jsb">
<div class="total">
88 990 ₽
</div>
<button class="delete"></button>
</div>
</div> -->
<!-- terms agree check -->
<label for="order-checkbox" class="mb-30 fw-5 c-10 d-block">
<input checked required type="checkbox" name="order-checkbox" id="order-checkbox" class="checkbox mr-10 pr" value=""><span>Я согласен на </span><a href="" class="c-1"><u>обработку персональных данных</u></a>
</label> // input, textarea { // border: none; // border-bottom: 2px solid #E1E1E1; // border-radius: 0; // padding: 10px 15px 10px 0; // line-height: 100%; // &:placeholder-shown { // color: #3A3C3C; // } // &::-moz-placeholder, // &::-webkit-input-placeholder,
// &::placeholder { // font-weight: 500; // font-size: 16px; // line-height: 158%; // letter-spacing: 0.004em; // } // &:focus { // outline: none; // border-color: #303030; // } // }
<!-- не надо -->
<!-- <hr>
<p>Вы пока ничего не заказывали.</p> -->
<!-- <table class="table table-responsive caption-top">
<caption>Ваши заказы</caption>
<thead>
<tr>
<th colspan="1">Номер заказа</th>
<th>Адрес заказа:</th>
<th>Стоимость:</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3">
<table class="table table-borderless table-responsive">
<thead>
<tr>
<th>№ 12345 <time> ( 14.01.2020)</time></th>
<th>Доставка СДЭК</th>
<th>356 360 ₽ </th>
</tr>
</thead>
<tbody>
<tr>
<td class="df fc">
<a href="" class="c-15">Смартфон Apple iPhone 11 Pro 256GB</a>
<a href="" class="c-15">Смартфон Apple iPhone 11 256GB</a>
</td>
<td colspan="2">Казань, ул. Фучика 78, кв. 12, эт. 5, под. 2</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td colspan="3">
<table class="table table-borderless">
<thead>
<tr>
<th>№ 12345 (<time>14.01.2020</time>)</th>
<th>Доставка СДЭК</th>
<th>356 360 ₽ </th>
</tr>
</thead>
<tbody>
<tr>
<td class="df fc">
<a href="" class="c-15">Смартфон Apple iPhone 11 Pro 256GB</a>
</td>
<td colspan="2">Казань, ул. Фучика 78, кв. 12, эт. 5, под. 2</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table class="mt-80 table table-bordered table-responsive caption-top">
<caption>Ваши заказы</caption>
<thead>
<tr>
<th colspan="1">Номер заказа</th>
<th>Адрес заказа:</th>
<th>Стоимость:</th>
</tr>
</thead>
<tbody class="table table-borderless">
<tr>
<th>№ 12345 <time> ( 14.01.2020)</time></th>
<th>Доставка СДЭК</th>
<th>356 360 ₽ </th>
</tr>
<tr>
<td class="df fc">
<a href="" class="c-15">Смартфон Apple iPhone 11 Pro 256GB</a>
<a href="" class="c-15">Смартфон Apple iPhone 11 256GB</a>
</td>
<td colspan="2">Казань, ул. Фучика 78, кв. 12, эт. 5, под. 2</td>
</tr>
<tr>
<th>№ 12345 (<time>14.01.2020</time>)</th>
<th>Доставка СДЭК</th>
<th>356 360 ₽ </th>
</tr>
<tr>
<td class="df fc">
<a href="" class="c-15">Смартфон Apple iPhone 11 Pro 256GB</a>
</td>
<td colspan="2">Казань, ул. Фучика 78, кв. 12, эт. 5, под. 2</td>
</tr>
</tbody>
</table> -->
<!-- Container for the image gallery -->
<div class="container">
<!-- Full-width images with number text -->
<div class="mySlides">
<div class="numbertext">1 / 6</div>
<img src="img_woods_wide.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">2 / 6</div>
<img src="img_5terre_wide.jpg" style="width:100%">
</div>
<div class="mySlides">
<div class="numbertext">3 / 6</div>
<img src="img_mountains_wide.jpg" style="width:100%">
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<!-- Image text -->
<div class="caption-container">
<p id="caption"></p>
</div>
<!-- Thumbnail images -->
<div class="row">
<div class="column">
<img class="demo cursor" src="img_woods.jpg" style="width:100%" onclick="currentSlide(1)" alt="The Woods">
</div>
<div class="column">
<img class="demo cursor" src="img_5terre.jpg" style="width:100%" onclick="currentSlide(2)" alt="Cinque Terre">
</div>
<div class="column">
<img class="demo cursor" src="img_mountains.jpg" style="width:100%" onclick="currentSlide(3)" alt="Mountains and fjords">
</div>
</div>
</div>
// catalog price filtr // $(document).ready(function() { // $("#slider-range").slider({ // range: true, // min: 0, // max: 79999, // values: [999, 79999], // slide: function(event, ui) { // $('#min-price').val(ui.values[0]); // $('#max-price').val(ui.values[1]);
// } // }); // $('#min-price').val($("#slider-range").slider("values", 0)); // $('#max-price').val($("#slider-range").slider("values", 1)); // }); // const btnsAll = document.querySelectorAll('.list-block-title') // btnsAll.forEach(btn => { // btn.addEventListener('click',
(event) => { // btnsAll.forEach(btn => { // btn.classList.remove('active') // }) // event.currentTarget.classList.add('active') // }) // }) .table { border: 1px solid #CCCCCC; } .table .table { border: none; } .caption-top > thead tr th { color: #666666;
font-weight: 200; padding-top: 20px; padding-bottom: 20px; border-bottom: 1px solid #CCCCCC; } .table>:not(:last-child)>:last-child>* { border-bottom-color: #CCCCCC; } .table .table th { color: #212121; font-weight: 600; } .table .table th { padding-top:
20px; padding-bottom: 20px; } .table > td { padding: 0; } .table { tr { display: flex; .df { width: 30%; } } & th, & td { width: 50%; flex-grow: 1; } th:last-of-type { width: 25%; } }
<!-- <div class="card-thumb-img">
<button><svg width="20" height="13" viewBox="0 0 20 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.12 12.1201L10 4.24012L17.88 12.1201L20 10.0001L10 0.000116865L-9.26681e-08 10.0001L2.12 12.1201Z" fill="#323232"/>
</svg>
</button>
<div>
<div>
<img src="images/img/accs-2.jpg" alt="">
</div>
<div>
<img src="images/img/tablet-2.jpg" alt="">
</div>
<div>
<img src="images/img/accs.jpg">
</div>
</div>
<button><svg width="20" height="13" viewBox="0 0 20 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.12 -0.000488189L10 7.87951L17.88 -0.0004875L20 2.11951L10 12.1195L-9.26681e-08 2.11951L2.12 -0.000488189Z" fill="#323232"/>
</svg>
</button>
</div>
<div class="card-img-big" style="max-width: 400px;">
<img src="images/img/accs-2.jpg" alt="">
</div> -->
<div class="dropdown-menu col-10 pr catalog-menu hidden" aria-labelledby="navbarDropdownMenuLink">
<svg class="pa" width="21" height="10" viewBox="0 0 21 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.1007 0L20.2014 10H0L10.1007 0Z" fill="#E5E5E5"/>
</svg>
<div class="catalognav-menu bg-3 row flex-lg-row fnw">
<ul class="catalognav-list col-lg-4 row">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20 col-12">
iPhone
</li>
<li class="col-lg-6">
<ul>
<li>
<a href="">Iphone 12 pro</a>
</li>
<li>
<a href="">Iphone 12 pro max</a>
</li>
<li>
<a href="">Iphone 11 pro</a>
</li>
<li>
<a href="">Iphone 11 pro max</a>
</li>
<li>
<a href="">Iphone 11</a>
</li>
</ul>
</li>
<li class="col-lg-6">
<ul>
<li>
<a href="">Iphone 10</a>
</li>
<li>
<a href="">Iphone 10 R</a>
</li>
<li>
<a href="">Iphone 10 S</a>
</li>
</ul>
</li>
</ul>
<ul class="catalognav-list col-lg-2">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20">iPad</li>
<li><a href="">iPad Pro</a></li>
<li><a href="">iPad</a></li>
<li><a href="">iPad mini</a></li>
<li><a href="">iPad Air</a></li>
</ul>
<ul class="catalognav-list col-lg-2">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20">Macbook</li>
<li><a href="">Macbook Air</a></li>
<li><a href="">Macbook Pro 13</a></li>
<li><a href="">Macbook Pro 16</a></li>
<li><a href="">iMac</a></li>
</ul>
<ul class="catalognav-list col-lg-2">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20">AirPods</li>
<li><a href="">AirPods</a></li>
<li><a href="">AirPods Pro</a></li>
<li><a href="">AirPods Max</a></li>
<li><a href="">iPod touch</a></li>
</ul>
<ul class="catalognav-list col-lg-2">
<li class="catalognav-heading c-12 fw-5 fs-22 mb-20">Аксессуары</li>
<li><a href="">Зарядные<br>устройства</a></li>
<li><a href="">Аккумуляторы</a></li>
<li><a href="">Чехлы</a></li>
</ul>
</div>
</div>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="smartphones" role="tabpanel" aria-labelledby="smartphones-tab">
<!-- smartphones -->
<div class="product-group smartphones row-cols-auto row-cols-lg-4">
<!-- card 1 -->
<div>
<div class="product-preview">
<!-- image -->
<img class="img" src="images/img/product.png" alt="Apple iPhone 11 64GB">
<!-- badge -->
<div class="sale">- 100 % </div>
<!-- add to wish list -->
<button class="wish" data-bs-toggle="button"></button>
<!-- add to compare -->
<button class="compare" data-bs-toggle="button"></button>
<!-- product name -->
<div class="name">Apple iPhone 11 64GB</div>
<!-- product description -->
<div class="desc">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="bottom">
<!-- product price -->
<div class="price">
<!-- old price -->
<del>100 990 ₽</del>
<!-- new price -->
<ins>88 990 ₽</ins>
</div>
<!-- add to cart -->
<button class="buy">В корзину</button>
</div>
<!-- link on product page -->
<a href="card.html" class="stretched-link"></a>
</div>
</div>
<!-- card 2 -->
<div>
<div class="product-preview">
<img class="img" src="images/img/product-2.png" alt="Apple iPhone 11 64GB">
<!-- <div class="sale">- 10 % </div> -->
<!-- wish checkbox -->
<label for="wish-checkbox-2" title="Добавлено в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-2" checked>
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-2" title="Добавлено в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-2" checked>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 Pro 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM)</div>
<div class="product-footer">
<div>
<!-- <del>65 000 ₽</del> -->
<div class="price">88 990 ₽</div>
</div>
<button class="purple-border">В корзине</button>
</div>
</div>
</div>
<!-- card 3 -->
<div>
<div class="product-preview">
<img class="img" src="images/img/product.png" alt="Apple iPhone 11 64GB">
<div class="sale">- 25 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-3" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-3">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-3" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-3">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 Pro 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM)</div>
<div class="product-footer">
<div>
<del>75 000 ₽</del>
<div class="price">44 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<!-- card 4 -->
<div>
<div class="product-preview">
<img class="img" src="images/img/product-2.png" alt="Apple iPhone 11 64GB">
<div class="sale">- 25 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-4" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-4">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-4" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-4">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 12 mini, 128 ГБ, синий</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="product-footer">
<div>
<del>75 000 ₽</del>
<div class="price">44 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
</div>
<!-- smartphones -->
</div>
<div class="tab-pane fade" id="tablets" role="tabpanel" aria-labelledby="tablets-tab">
<!-- tablets -->
<div class="product-group tablets row-cols-auto row-cols-lg-4">
<div>
<div class="product-preview">
<img class="img" src="images/img/tablet.jpg" alt="Apple iPhone 11 64GB">
<div class="sale">- 100 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-5" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-5">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-5" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-5">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="product-footer">
<div>
<del>65 000 ₽</del>
<div class="price">53 000 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<div>
<div class="product-preview">
<img class="img" src="images/img/tablet-2.jpg" alt="Apple iPhone 11 64GB">
<!-- <div class="sale">- 10 % </div> -->
<!-- wish checkbox -->
<label for="wish-checkbox-6" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-6">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-6" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-6">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 Pro 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="product-footer">
<div>
<!-- <del>65 000 ₽</del> -->
<div class="price">88 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<div>
<div class="product-preview">
<img class="img" src="images/img/tablet.jpg" alt="Apple iPhone 11 64GB">
<div class="sale">- 25 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-7" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-7">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-7" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-7">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 Pro 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM)</div>
<div class="product-footer">
<div>
<del>75 000 ₽</del>
<div class="price">44 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<div>
<div class="product-preview">
<img class="img" src="images/img/tablet-2.jpg" alt="Apple iPhone 11 64GB">
<div class="sale">- 25 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-8" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-8">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-8" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-8">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 12 mini, 128 ГБ, синий</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="product-footer">
<div>
<del>75 000 ₽</del>
<div class="price">44 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
</div>
<!-- tablets -->
</div>
<div class="tab-pane fade" id="computers" role="tabpanel" aria-labelledby="computers-tab">
<!-- computers -->
<div class="product-group computers row-cols-auto row-cols-lg-4">
<div>
<div class="product-preview">
<img class="img" src="images/img/computer.jpg" alt="Apple iPhone 11 64GB">
<div class="sale">- 100 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-9" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-9">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-9" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-9">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="product-footer">
<div>
<del>65 000 ₽</del>
<div class="price">53 000 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<div>
<div class="product-preview">
<img class="img" src="images/img/computer-2.jpg" alt="Apple iPhone 11 64GB">
<!-- <div class="sale">- 10 % </div> -->
<!-- wish checkbox -->
<label for="wish-checkbox-10" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-10">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-10" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-10">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 Pro 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="product-footer">
<div>
<!-- <del>65 000 ₽</del> -->
<div class="price">88 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<div>
<div class="product-preview">
<img class="img" src="images/img/computer.jpg" alt="Apple iPhone 11 64GB">
<div class="sale">- 25 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-11" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-11">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-11" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-11">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 Pro 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM)</div>
<div class="product-footer">
<div>
<del>75 000 ₽</del>
<div class="price">44 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<div>
<div class="product-preview">
<img class="img" src="images/img/computer-2.jpg" alt="Apple iPhone 11 64GB">
<div class="sale">- 25 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-12" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-12">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-12" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-12">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 12 mini, 128 ГБ, синий</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="product-footer">
<div>
<del>75 000 ₽</del>
<div class="price">44 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
</div>
<!-- computers -->
</div>
<div class="tab-pane fade" id="accessories" role="tabpanel" aria-labelledby="accessories-tab">
<!-- accessories -->
<div class="product-group accessories row-cols-auto row-cols-lg-4">
<div>
<div class="product-preview">
<img class="img" src="images/img/accs.jpg" alt="Apple iPhone 11 64GB">
<div class="sale">- 100 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-13" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-13">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-13" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-13">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="product-footer">
<div>
<del>65 000 ₽</del>
<div class="price">53 000 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<div>
<div class="product-preview">
<img class="img" src="images/img/accs-2.jpg" alt="Apple iPhone 11 64GB">
<!-- <div class="sale">- 10 % </div> -->
<!-- wish checkbox -->
<label for="wish-checkbox-14" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-14">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-14" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-14">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 Pro 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM), двойная камера: 12 МП, 12 МП</div>
<div class="product-footer">
<div>
<!-- <del>65 000 ₽</del> -->
<div class="price">88 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<div>
<div class="product-preview">
<img class="img" src="images/img/accs.jpg" alt="Apple iPhone 11 64GB">
<div class="sale">- 25 % </div>
<!-- wish checkbox -->
<label for="wish-checkbox-15" title="Добавить в избранное" class="compare-button br-4 df aic jsc bg-3 wish-button">
<input type="checkbox" class="compare-checkbox" id="wish-checkbox-15">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.22318 16.2905L9.22174 16.2892C6.62662 13.936 4.55384 12.0538 3.1178 10.2981C1.69324 8.55647 1 7.06152 1 5.5C1 2.97228 2.97228 1 5.5 1C6.93721 1 8.33224 1.67394 9.23865 2.73834L10 3.6324L10.7614 2.73834C11.6678 1.67394 13.0628 1 14.5 1C17.0277 1 19 2.97228 19 5.5C19 7.06153 18.3068 8.55653 16.882 10.2996C15.4459 12.0566 13.3734 13.9409 10.7786 16.2989C10.7782 16.2993 10.7778 16.2996 10.7775 16.2999L10.0026 17L9.22318 16.2905Z" fill="white" stroke="#9696A0" stroke-width="2"/>
</svg>
</label>
<!-- compare checkbox -->
<label for="compare-checkbox-15" title="Добавить в сравнение" class="compare-button br-4 df aic jsc bg-3">
<input type="checkbox" class="compare-checkbox" id="compare-checkbox-15">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 21L18 15L16 15L16 21L18 21ZM6 21L8 21L8 3L6 3L6 21ZM13 21L13 9L11 9L11 21L13 21Z" fill="#9696A0"/>
<path d="M19.6667 4.33329H17.6667V6.33329H17V4.33329H15V3.66663H17V1.66663H17.6667V3.66663H19.6667V4.33329Z" fill="#9696A0"/>
</svg>
</label>
<div class="name">Apple iPhone 11 Pro 64GB</div>
<div class="text">iOS 13, поддержка двух SIM-карт (nano SIM+eSIM)</div>
<div class="product-footer">
<div>
<del>75 000 ₽</del>
<div class="price">44 990 ₽</div>
</div>
<button class="purple-border">В корзину</button>
</div>
</div>
</div>
<div>
<div class="product-preview">
<img class="img" src="images/img/accs-2.jpg" alt="Apple iPhone 11 64GB">