-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
972 lines (911 loc) · 57.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Suhi tita</title>
<link rel="icon" href="./img/flatIcon.PNG">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="burger__window">
<div class="burger__window__top">
<div class="burger__window__top__btn">ВХІД / РЕЄСТРАЦІЯ</div>
<img class="burger__window__top__img" src="./img/close__img.png" alt="">
</div>
<div class="page1__tabs">
<div class="page1__tabs__tab hover__btn page1__tabs__tab__img__rolu">
<img class="page1__tabs__tab__img " src="./img/header__img1.svg" alt="">
РОЛИ ТА СУШІ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img2.svg" alt="">
СЕТИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img3.svg" alt="">
ДРУГІ СТРАВИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img4.svg" alt="">
WOK
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img5.svg" alt="">
CУПИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img6.svg" alt="">
САЛАТИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img7.svg" alt="">
ЗАКУСКИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img8.svg" alt="">
НАПОЇ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img9.svg" alt="">
ДЕСЕРТИ
</div>
</div>
<div class="page1__header__btns">
<div class="page1__header__btns__dop">
<div class="page1__header__btns__btn page1__header__btns__btn1 hover__btn">Про нас</div>
<div class="page1__header__btns__pere"></div>
<div class="page1__header__btns__btn page1__header__btns__btn2 hover__btn">Контакти</div>
<div class="page1__header__btns__pere"></div>
<div class="page1__header__btns__btn page1__header__btns__btn2 hover__btn">Часті запитання</div>
</div>
</div>
<div class="page1__header__nomer__row">
<div class="page1__header__nomer">
<div class="page1__header__nomer__city">
Ваше місто:
<div class="page1__header__nomer__city__change">Самбір
<img class="page1__header__nomer__city__change__img" src="./img/top__str (2).png" alt="">
</div>
</div>
+38 093 8311 778
</div>
</div>
</div>
<div class="wrap">
<div class="page1">
<div class="page1__header">
<img class="page1__header__logo" src="./img/logo__suhi.svg" alt="">
<div class="page1__header__btns">
<div class="page1__header__btns__btn page1__header__btns__btn1 hover__btn">Про нас</div>
<div class="page1__header__btns__pere"></div>
<div class="page1__header__btns__btn page1__header__btns__btn2 hover__btn">Контакти</div>
</div>
<div class="page1__header__right">
<div class="page1__header__nomer">
<div class="page1__header__nomer__city">
Ваше місто:
<div class="page1__header__nomer__city__change">Самбір
<img class="page1__header__nomer__city__change__img" src="./img/top__str (2).png" alt="">
</div>
</div>
+38 093 8311 778
</div>
<div class="page1__header__korzuna" id="page1__header__korzuna">
<img class="page1__header__korzuna__img" src="./img/korxuna.png" alt="">
<div class="page1__header__korzuna__text" id="page1__header__korzuna__text">
Корзина $00
</div>
</div>
<div class="page1__header__acount">
<img class="page1__header__acount__img" src="./img/top__img.svg" alt="">
</div>
<div class="page1__header__burger">
<div class="page1__header__burger__row"></div>
<div class="page1__header__burger__row"></div>
<div class="page1__header__burger__row"></div>
</div>
</div>
</div>
<div class="page1__tabs">
<div class="page1__tabs__tab hover__btn page1__tabs__tab__img__rolu">
<img class="page1__tabs__tab__img " src="./img/header__img1.svg" alt="">
РОЛИ ТА СУШІ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img2.svg" alt="">
СЕТИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img3.svg" alt="">
ДРУГІ СТРАВИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img4.svg" alt="">
WOK
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img5.svg" alt="">
CУПИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img6.svg" alt="">
САЛАТИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img7.svg" alt="">
ЗАКУСКИ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img8.svg" alt="">
НАПОЇ
</div>
<div class="page1__tabs__tab hover__btn">
<img class="page1__tabs__tab__img" src="./img/header__img9.svg" alt="">
ДЕСЕРТИ
</div>
</div>
<div class="page1__slider">
<div class="page1__slider__top"></div>
<div class="page1__slider__middle">
<div class="page1__slider__middle__text1">Доставка WOK Дрогобич</div>
<div class="page1__slider__middle__text2">Замовляйте справжній Вок за найкращими цінами</div>
<div class="page1__slider__middle__btn">Зробити Замовлення</div>
</div>
<div class="page1__slider__bot">
<div class="page1__slider__bot__slaid2"></div>
<div class="page1__slider__bot__slaid"></div>
<div class="page1__slider__bot__slaid"></div>
<div class="page1__slider__bot__slaid"></div>
</div>
</div>
</div>
<div class="page__buy">
<div class="page__buy__top">
<div class="page__buy__top__text1">ОФОРМЛЕННЯ ЗАМОВЛЕННЯ</div>
<div class="page__buy__top__path">
<div class="page__buy__top__path__first page__buy__top__path__section">
<div class="page__buy__top__path__section__num">1</div>
<div class="page__buy__top__path__section__text">Кошик</div>
</div>
<div class="page__buy__top__path__row"></div>
<div class="page__buy__top__path__second page__buy__top__path__section">
<div class="page__buy__top__path__section__num">1</div>
<div class="page__buy__top__path__section__text">Кошик</div>
</div>
<div class="page__buy__top__path__row"></div>
<div class="page__buy__top__path__third page__buy__top__path__section">
<div class="page__buy__top__path__section__num">1</div>
<div class="page__buy__top__path__section__text">Кошик</div>
</div>
</div>
</div>
<div class="page__buy__bot">
<div class="page__buy__bot__top">
<div class="page__buy__bot__top__text1">Продукт</div>
<div class="page__buy__bot__top__right">
<div class="page__buy__bot__top__right__text">Вартість одиниці</div>
<div class="page__buy__bot__top__right__text">К-ть</div>
<div class="page__buy__bot__top__right__text">Сума</div>
</div>
</div>
<div class="page__buy__bot__pos">
<div class="page__buy__bot__pos__left">
<img class="page__buy__bot__pos__close" src="" alt="">
<img class="page__buy__bot__pos__img" src="" alt="">
<div class="page__buy__bot__pos__text">
<div class="page4__rolu__bot__row__pos__right__text1">Печена Філадельфія <div class="page4__rolu__bot__row__pos__right__text1_2">x2</div></div>
<div class="page4__rolu__bot__row__pos__right__text2">230 г</div>
</div>
</div>
<div class="page__buy__bot__pos__right">
<div class="page__buy__bot__pos__right__text1"> 180 ГРН</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus1">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count1" id="page4__rolu__bot__row__pos__right__bot__howMany__count1_1" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus1">+</div>
</div>
<div class="page__buy__bot__pos__right__price">240 ГРН</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu">
<div class="page4__rolu__top">
<div class="page4__rolu__top__row__sett page4__rolu__top__row__sett1 page4__rolu__top__row__sett3">All</div>
<div class="page4__rolu__top__row__sett page4__rolu__top__row__sett2 page4__rolu__top__row__sett4">ХОСОМАКІ</div>
<div class="page4__rolu__top__row__sett page4__rolu__top__row__sett2 page4__rolu__top__row__sett5">ФУТОМАКІ</div>
<div class="page4__rolu__top__row__sett page4__rolu__top__row__sett2 page4__rolu__top__row__sett6">ФІЛАДЕЛЬФІЯ</div>
</div>
<div class="page4__rolu__bot">
<div class="page4__rolu__bot__row">
<div class="page4__rolu__bot__row__pos filadelfia">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/suhi2.jpeg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">Печена Філадельфія</div>
<div class="page4__rolu__bot__row__pos__right__text2">230 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, лосось сирий обпалений, вугор копчений, авокадо, сир вершковий</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn1">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img" src="./img/korzuna__white.svg" alt="">
180 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus1">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count1" id="page4__rolu__bot__row__pos__right__bot__howMany__count1" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus1">+</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row__pos filadelfia">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi3.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">Філадельфія з мідіями</div>
<div class="page4__rolu__bot__row__pos__right__text2">220 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, лосось сирий, мідії, сир вершковий
</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn2">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img2" src="./img/korzuna__white.svg" alt="">
140 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus2">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count2" id="page4__rolu__bot__row__pos__right__bot__howMany__count2" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus2">+</div>
</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row">
<div class="page4__rolu__bot__row__pos filadelfia">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi4.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">Філадельфія з копченим лососем</div>
<div class="page4__rolu__bot__row__pos__right__text2">220 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, лосось копчений, сир вершковий, огірок</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn3">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img3" src="./img/korzuna__white.svg" alt="">
155 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus3">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count3" id="page4__rolu__bot__row__pos__right__bot__howMany__count3" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus3">+</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row__pos filadelfia">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi5.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">Філадельфія з авокадо</div>
<div class="page4__rolu__bot__row__pos__right__text2">220 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, лосось сирий, авокадо, сир вершковий</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn4">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img4" src="./img/korzuna__white.svg" alt="">
145 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus4">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count4" id="page4__rolu__bot__row__pos__right__bot__howMany__count4" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus4">+</div>
</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row">
<div class="page4__rolu__bot__row__pos fytomoki">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi6.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">Ебі футомакі</div>
<div class="page4__rolu__bot__row__pos__right__text2">190 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, тигрова креветка, водорості Чукка, ікра Тобіко, майонез Спайсі</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn5">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img5" src="./img/korzuna__white.svg" alt="">
155 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus5">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count5" id="page4__rolu__bot__row__pos__right__bot__howMany__count5" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus5">+</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row__pos fytomoki">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi7.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">Унагі футомакі</div>
<div class="page4__rolu__bot__row__pos__right__text2">195 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, вугор копчений, сир плавлений, авокадо, соус Унагі, кунжут</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn6">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img6" src="./img/korzuna__white.svg" alt="">
150 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus6">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count6" id="page4__rolu__bot__row__pos__right__bot__howMany__count6" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus6">+</div>
</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row">
<div class="page4__rolu__bot__row__pos fytomoki">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi8.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">Туна футомакі</div>
<div class="page4__rolu__bot__row__pos__right__text2">200 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, тунець сирий, сир вершковий, помідор</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn7">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img7" src="./img/korzuna__white.svg" alt="">
110 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus7">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count7" id="page4__rolu__bot__row__pos__right__bot__howMany__count7" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus7">+</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row__pos fytomoki">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi9.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">
Торі футомакі</div>
<div class="page4__rolu__bot__row__pos__right__text2">200 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, копчене курча, тамаго, сир вершковий</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn8">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img " id="page4__rolu__bot__row__pos__right__bot__btn__img8" src="./img/korzuna__white.svg" alt="">
95 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus8">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count8" id="page4__rolu__bot__row__pos__right__bot__howMany__count8" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus8">+</div>
</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row">
<div class="page4__rolu__bot__row__pos hosomaki">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi10.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">
Сяке кунсей макі</div>
<div class="page4__rolu__bot__row__pos__right__text2">95 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, копчений лосось</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn9">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img9" src="./img/korzuna__white.svg" alt="">
85 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus9">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count9" id="page4__rolu__bot__row__pos__right__bot__howMany__count9" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus9">+</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row__pos hosomaki">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi11.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">Ебі макі</div>
<div class="page4__rolu__bot__row__pos__right__text2">95 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, тигрова креветка, майонез Спайсі</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn10">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img10" src="./img/korzuna__white.svg" alt="">
85 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus10">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count10" id="page4__rolu__bot__row__pos__right__bot__howMany__count10" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus10">+</div>
</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row">
<div class="page4__rolu__bot__row__pos hosomaki">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi13.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">Авокадо макі</div>
<div class="page4__rolu__bot__row__pos__right__text2">90 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, авокадо, соус Унагі, кунжут</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn11">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img" id="page4__rolu__bot__row__pos__right__bot__btn__img11" src="./img/korzuna__white.svg" alt="">
55 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus11">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count11" id="page4__rolu__bot__row__pos__right__bot__howMany__count11" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus11">+</div>
</div>
</div>
</div>
</div>
<div class="page4__rolu__bot__row__pos hosomaki">
<img class="page4__rolu__bot__row__pos__left__img" src="./img/sushi13.jpg" alt="">
<div class="page4__rolu__bot__row__pos__right">
<div class="page4__rolu__bot__row__pos__right__text1">
Туна макі</div>
<div class="page4__rolu__bot__row__pos__right__text2">95 г</div>
<div class="page4__rolu__bot__row__pos__right__text3">Рис, тунець сирий</div>
<div class="page4__rolu__bot__row__pos__right__bot">
<div class="page4__rolu__bot__row__pos__right__bot__btn page4__rolu__bot__row__pos__right__bot__btn12">
<img class="page4__rolu__bot__row__pos__right__bot__btn__img " id="page4__rolu__bot__row__pos__right__bot__btn__img12" src="./img/korzuna__white.svg" alt="">
80 ГРН
</div>
<div class="page4__rolu__bot__row__pos__right__bot__howMany">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__minus page4__rolu__bot__row__pos__right__bot__howMany__minus12">-</div>
<input min="1" max="100" class="page4__rolu__bot__row__pos__right__bot__howMany__count page4__rolu__bot__row__pos__right__bot__howMany__count12" id="page4__rolu__bot__row__pos__right__bot__howMany__count12" type="number" value="1">
<div class="page4__rolu__bot__row__pos__right__bot__howMany__plus page4__rolu__bot__row__pos__right__bot__howMany__plus12">+</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="page2">
<div class="page2__top">
<div class="page2__top__left">
<div class="page2__top__left__img"></div>
</div>
<div class="page2__top__right">
<div class="page2__top__right__text1">РЕСТОРАН ЯПОНСЬКОЇ КУХНІ ТІТА</div>
<div class="page2__top__right__text2"><div class="page2__top__right__text2_1"></div>Любите смачну та здорову їжу?</div>
<div class="page2__top__right__text3">Welcome to ТІТА!</div>
<div class="page2__top__right__text3">Японська їжа стрімко набула популярності у світі і стала трендом.</div>
<div class="page2__top__right__text3">Смакуючи японські страви ви отримуєте естетичне та гастрономічне задоволення. Сама їжа смачна, корисна, низькокалорійна.</div>
<div class="page2__top__right__text3">У нашому закладі ви знайдете:</div>
<ul class="page2__top__right__text4">
<li>суші та роли на будь-який смак та уподобання;</li>
<li>місо-супи та рамени;</li>
<li>салати та смачні закуски;</li>
<li>рис, локшину удон та локшину WOK;</li>
<li>десерти.</li>
</ul>
<div class="page2__top__right__text6"><img class="page2__top__right__text6_1" src="./img/btn__img.svg" alt=""> МЕНЮ РЕСТОРАНУ</div>
</div>
</div>
<div class="page2__bot">
<div class="page2__bot__tab">
<img class="page2__bot__tab__img" src="./img/bot__img1.svg" alt="">
<div class="page2__bot__tab__right">
<div class="page2__bot__tab__right__text1">Свіжі продукти</div>
<div class="page2__bot__tab__right__text2">Лише найкращі та найсвіжіші продукти стають ролами та суші у Тіта</div>
</div>
</div>
<div class="page2__bot__tab">
<img class="page2__bot__tab__img" src="./img/bot__img2.svg" alt="">
<div class="page2__bot__tab__right">
<div class="page2__bot__tab__right__text1">Великий вибір</div>
<div class="page2__bot__tab__right__text2">У нас великий вибір суші та ролів на будь-який смак, вега-роли, супи, та ін.</div>
</div>
</div>
<div class="page2__bot__tab">
<img class="page2__bot__tab__img" src="./img/bot__img3.svg" alt="">
<div class="page2__bot__tab__right">
<div class="page2__bot__tab__right__text1">Зручна оплата</div>
<div class="page2__bot__tab__right__text2">Розрахунок зручно та швидко.</div>
</div>
</div>
</div>
</div>
<div class="page3__futter">
<img class="page3__futter__img" src="./img/futter__img1.svg" alt="">
<div class="page3__futter__about">
<div class="page1__header__btns__btn page1__header__btns__btn1 hover__btn">Про нас</div>
<div class="page1__header__btns__pere"></div>
<div class="page1__header__btns__btn page1__header__btns__btn2 hover__btn">Новини</div>
<div class="page1__header__btns__pere"></div>
<div class="page1__header__btns__btn page1__header__btns__btn2 hover__btn">Контакти</div>
<div class="page1__header__btns__pere"></div>
<div class="page1__header__btns__btn page1__header__btns__btn2 hover__btn">Профайл</div>
<div class="page1__header__btns__pere"></div>
<div class="page1__header__btns__btn page1__header__btns__btn2 hover__btn">Часті запитання</div>
</div>
<div class="page3__futter__right">
<div class="page3__futter__right__message">
<a href="https://uk-ua.facebook.com/"><img class="page3__futter__right__message__img" src="./img/fut__img2.PNG" alt=""></a>
<a href="https://www.instagram.com/"><img class="page3__futter__right__message__img" src="./img/fut__img3.PNG" alt=""></a>
</div>
<div class="page3__futter__right__text">
<div class="page3__futter__right__text1">Працюємо з 11:00 - 22:30</div>
<div class="page3__futter__right__text2">+38 093 8311 778</div>
</div>
</div>
</div>
</div>
<script>
let sumaOfAll=0
let press__burger=true
$('.burger__window__top__img').click(function(){
if(press__burger==false){
$('.burger__window').css('left','-100%')
press__burger=true
}
// $('.burger__window').css('display','flex')
// $('.wrap').css('display','none')
})
$('.page1__header__burger').click(function(){
if(press__burger===true){
$('.burger__window').css('left','0%')
press__burger=false
// $('.burger__window').css('display','none')
// $('.wrap').css('display','flex')
}
// $('.wrap').css('display','flex')
})
$('.page1__tabs__tab__img__rolu').click(function(){
$('.page1__slider').css('display','none')
$('.page2').css('display','none')
$('.page1').css('max-height','30vh')
// $('.page1__tabs__tab').css('border','2px solid transparent')
// $('.page1__tabs__tab__img__rolu').css('border-bottom','2px solid rgb(237, 29, 29)')
$('.page4__rolu').css('display','flex')
$('.burger__window').css('left','-100%')
$('.page__buy').css('display','none')
press__burger=true
})
$('.page1__header__korzuna').click(function(){
$('.page1__slider').css('display','none')
$('.page2').css('display','none')
$('.page1').css('max-height','30vh')
$('.page4__rolu').css('display','none')
$('.burger__window').css('left','-100%')
$('.page__buy').css('display','flex')
press__burger=true
})
$('.page1__header__logo').click(function(){
$('.page1__slider').css('display','flex')
$('.page2').css('display','flex')
$('.page1').css('max-height','110vh')
$('.page__buy').css('display','none')
$('.page4__rolu').css('display','none')
})
$('.page4__rolu__top__row__sett').click(function(){
$('.page4__rolu__top__row__sett').css('color','rgb(43, 43, 43)')
$('.page4__rolu__top__row__sett').css('background-color','rgb(238, 238, 238)')
$(this).css('color','white')
$(this).css('background-color','rgb(237, 29, 29)')
})
$('.page4__rolu__top__row__sett2').click(function(){
$('.page4__rolu__top__row__sett1').css('color','rgb(43, 43, 43)')
$('.page4__rolu__top__row__sett1').css('background-color','rgb(238, 238, 238)')
})
$('.page4__rolu__top__row__sett3').click(function(){
$('.filadelfia').css('display','flex')
$('.fytomoki').css('display','flex')
$('.hosomaki').css('display','flex')
})
$('.page4__rolu__top__row__sett4').click(function(){
$('.filadelfia').css('display','none')
$('.fytomoki').css('display','none')
$('.hosomaki').css('display','flex')
})
$('.page4__rolu__top__row__sett5').click(function(){
$('.filadelfia').css('display','none')
$('.fytomoki').css('display','flex')
$('.hosomaki').css('display','none')
})
$('.page4__rolu__top__row__sett6').click(function(){
$('.filadelfia').css('display','flex')
$('.fytomoki').css('display','none')
$('.hosomaki').css('display','none')
})
let countOfDishes1= page4__rolu__bot__row__pos__right__bot__howMany__count1.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus1').click(function(){
countOfDishes1= page4__rolu__bot__row__pos__right__bot__howMany__count1.value
if(countOfDishes1>1){
countOfDishes1--
page4__rolu__bot__row__pos__right__bot__howMany__count1.value=countOfDishes1
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus1').click(function(){
countOfDishes1= page4__rolu__bot__row__pos__right__bot__howMany__count1.value
if(countOfDishes1<100){
countOfDishes1++
page4__rolu__bot__row__pos__right__bot__howMany__count1.value=countOfDishes1
}
})
let countOfDishes2= page4__rolu__bot__row__pos__right__bot__howMany__count2.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus2').click(function(){
countOfDishes2= page4__rolu__bot__row__pos__right__bot__howMany__count2.value
if(countOfDishes2>1){
countOfDishes2--
page4__rolu__bot__row__pos__right__bot__howMany__count2.value=countOfDishes2
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus2').click(function(){
countOfDishes2= page4__rolu__bot__row__pos__right__bot__howMany__count2.value
if(countOfDishes2<100){
countOfDishes2++
page4__rolu__bot__row__pos__right__bot__howMany__count2.value=countOfDishes2
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__count').change(function(){
countOfDishes1= page4__rolu__bot__row__pos__right__bot__howMany__count1.value
if(countOfDishes1>100){
countOfDishes1=100
page4__rolu__bot__row__pos__right__bot__howMany__count1.value=100
}else if(countOfDishes1<1){
countOfDishes1=1
page4__rolu__bot__row__pos__right__bot__howMany__count1.value=1
}
})
let countOfDishes3= page4__rolu__bot__row__pos__right__bot__howMany__count3.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus3').click(function(){
countOfDishes3= page4__rolu__bot__row__pos__right__bot__howMany__count3.value
if(countOfDishes3>1){
countOfDishes3--
page4__rolu__bot__row__pos__right__bot__howMany__count3.value=countOfDishes3
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus3').click(function(){
countOfDishes3= page4__rolu__bot__row__pos__right__bot__howMany__count3.value
if(countOfDishes3<100){
countOfDishes3++
page4__rolu__bot__row__pos__right__bot__howMany__count3.value=countOfDishes3
}
})
let countOfDishes4= page4__rolu__bot__row__pos__right__bot__howMany__count4.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus4').click(function(){
countOfDishes4= page4__rolu__bot__row__pos__right__bot__howMany__count4.value
if(countOfDishes4>1){
countOfDishes4--
page4__rolu__bot__row__pos__right__bot__howMany__count4.value=countOfDishes4
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus4').click(function(){
countOfDishes4= page4__rolu__bot__row__pos__right__bot__howMany__count4.value
if(countOfDishes4<100){
countOfDishes4++
page4__rolu__bot__row__pos__right__bot__howMany__count4.value=countOfDishes4
}
})
let countOfDishes5= page4__rolu__bot__row__pos__right__bot__howMany__count5.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus5').click(function(){
countOfDishes5= page4__rolu__bot__row__pos__right__bot__howMany__count5.value
if(countOfDishes5>1){
countOfDishes5--
page4__rolu__bot__row__pos__right__bot__howMany__count5.value=countOfDishes5
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus5').click(function(){
countOfDishes5= page4__rolu__bot__row__pos__right__bot__howMany__count5.value
if(countOfDishes5<100){
countOfDishes5++
page4__rolu__bot__row__pos__right__bot__howMany__count5.value=countOfDishes5
}
})
let countOfDishes6= page4__rolu__bot__row__pos__right__bot__howMany__count6.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus6').click(function(){
countOfDishes6= page4__rolu__bot__row__pos__right__bot__howMany__count6.value
if(countOfDishes6>1){
countOfDishes6--
page4__rolu__bot__row__pos__right__bot__howMany__count6.value=countOfDishes6
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus6').click(function(){
countOfDishes6= page4__rolu__bot__row__pos__right__bot__howMany__count6.value
if(countOfDishes6<100){
countOfDishes6++
page4__rolu__bot__row__pos__right__bot__howMany__count6.value=countOfDishes6
}
})
let countOfDishes7= page4__rolu__bot__row__pos__right__bot__howMany__count7.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus7').click(function(){
countOfDishes7= page4__rolu__bot__row__pos__right__bot__howMany__count7.value
if(countOfDishes7>1){
countOfDishes7--
page4__rolu__bot__row__pos__right__bot__howMany__count7.value=countOfDishes7
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus7').click(function(){
countOfDishes7= page4__rolu__bot__row__pos__right__bot__howMany__count7.value
if(countOfDishes7<100){
countOfDishes7++
page4__rolu__bot__row__pos__right__bot__howMany__count7.value=countOfDishes7
}
})
let countOfDishes8= page4__rolu__bot__row__pos__right__bot__howMany__count8.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus8').click(function(){
countOfDishes8= page4__rolu__bot__row__pos__right__bot__howMany__count8.value
if(countOfDishes8>1){
countOfDishes8--
page4__rolu__bot__row__pos__right__bot__howMany__count8.value=countOfDishes8
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus8').click(function(){
countOfDishes8= page4__rolu__bot__row__pos__right__bot__howMany__count8.value
if(countOfDishes8<100){
countOfDishes8++
page4__rolu__bot__row__pos__right__bot__howMany__count8.value=countOfDishes8
}
})
let countOfDishes9= page4__rolu__bot__row__pos__right__bot__howMany__count9.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus9').click(function(){
countOfDishes9= page4__rolu__bot__row__pos__right__bot__howMany__count9.value
if(countOfDishes9>1){
countOfDishes9--
page4__rolu__bot__row__pos__right__bot__howMany__count9.value=countOfDishes9
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus9').click(function(){
countOfDishes9= page4__rolu__bot__row__pos__right__bot__howMany__count9.value
if(countOfDishes9<100){
countOfDishes9++
page4__rolu__bot__row__pos__right__bot__howMany__count9.value=countOfDishes9
}
})
let countOfDishes10= page4__rolu__bot__row__pos__right__bot__howMany__count10.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus10').click(function(){
countOfDishes10= page4__rolu__bot__row__pos__right__bot__howMany__count10.value
if(countOfDishes10>1){
countOfDishes10--
page4__rolu__bot__row__pos__right__bot__howMany__count10.value=countOfDishes10
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus10').click(function(){
countOfDishes10= page4__rolu__bot__row__pos__right__bot__howMany__count10.value
if(countOfDishes10<100){
countOfDishes10++
page4__rolu__bot__row__pos__right__bot__howMany__count10.value=countOfDishes10
}
})
let countOfDishes11= page4__rolu__bot__row__pos__right__bot__howMany__count11.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus11').click(function(){
countOfDishes11= page4__rolu__bot__row__pos__right__bot__howMany__count11.value
if(countOfDishes11>1){
countOfDishes11--
page4__rolu__bot__row__pos__right__bot__howMany__count11.value=countOfDishes11
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus11').click(function(){
countOfDishes11= page4__rolu__bot__row__pos__right__bot__howMany__count11.value
if(countOfDishes11<100){
countOfDishes11++
page4__rolu__bot__row__pos__right__bot__howMany__count11.value=countOfDishes11
}
})
let countOfDishes12= page4__rolu__bot__row__pos__right__bot__howMany__count12.value
$('.page4__rolu__bot__row__pos__right__bot__howMany__minus12').click(function(){
countOfDishes12= page4__rolu__bot__row__pos__right__bot__howMany__count12.value
if(countOfDishes12>1){
countOfDishes12--
page4__rolu__bot__row__pos__right__bot__howMany__count12.value=countOfDishes12
}
})
$('.page4__rolu__bot__row__pos__right__bot__howMany__plus12').click(function(){
countOfDishes12= page4__rolu__bot__row__pos__right__bot__howMany__count12.value
if(countOfDishes12<100){
countOfDishes12++
page4__rolu__bot__row__pos__right__bot__howMany__count12.value=countOfDishes12
}
})
function click(){
page4__rolu__bot__row__pos__right__bot__btn__img.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img.src='./img/korzuna__white.svg'
},5000)
}
$('.page4__rolu__bot__row__pos__right__bot__btn1').click(function(){
sumaOfAll+=countOfDishes1*180
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
click()
})
$('.page4__rolu__bot__row__pos__right__bot__btn2').click(function(){
sumaOfAll+=countOfDishes2*140
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img2.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img2.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn3').click(function(){
sumaOfAll+=countOfDishes3*155
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img3.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img3.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn4').click(function(){
sumaOfAll+=countOfDishes4*145
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img4.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img4.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn5').click(function(){
sumaOfAll+=countOfDishes5*155
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img5.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img5.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn6').click(function(){
sumaOfAll+=countOfDishes6*150
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img6.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img6.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn7').click(function(){
sumaOfAll+=countOfDishes7*110
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img7.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img7.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn8').click(function(){
sumaOfAll+=countOfDishes8*95
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img8.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img8.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn9').click(function(){
sumaOfAll+=countOfDishes9*85
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img9.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img9.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn10').click(function(){
sumaOfAll+=countOfDishes10*85
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img10.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img10.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn11').click(function(){
sumaOfAll+=countOfDishes11*55
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img11.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img11.src='./img/korzuna__white.svg'
},5000)
})
$('.page4__rolu__bot__row__pos__right__bot__btn12').click(function(){
sumaOfAll+=countOfDishes12*80
page1__header__korzuna__text.innerText='Корзина $'+sumaOfAll
page4__rolu__bot__row__pos__right__bot__btn__img12.src='./img/tick__white.PNG'
setTimeout(function(){
page4__rolu__bot__row__pos__right__bot__btn__img12.src='./img/korzuna__white.svg'
},5000)
})
</script>
</body>
</html>