-
Notifications
You must be signed in to change notification settings - Fork 0
/
secondproduct.html
3116 lines (2589 loc) · 179 KB
/
secondproduct.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<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=Poppins:wght@100;200;300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- top bar -->
<div class="Sidebar_test">
<div class="sideBar">
<div class="sidebar_top">
<img src="/img/Energy Boss - 280x78px.png" alt="">
<i id="cross_btn" class="fas fa-times"></i>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/home.png" alt="" style="height: 25px; margin-top: 30px"><a
href="index.html" class="menu_item_text">HOME</a></div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/customer.png" alt="" style="height: 25px; margin-top: 30px"><a
href="user_account.html" class="menu_item_text">My Account</a></div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/shopping-bag (1).png" alt=""
style="height: 25px; margin-top: 30px"><a href="shop.html" class="menu_item_text">SHOP</a></div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/energy-drink.png" alt=""
style="height: 25px; margin-top: 30px"><a href="energydrinks.html" class="menu_item_text">ENERGY
DRINKS</a>
</div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/energy-drink.png" alt=""
style="height: 25px; margin-top: 30px"><a href="sport.html" class="menu_item_text">SPORT
DRINKS</a>
</div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/energy-drink.png" alt=""
style="height: 25px; margin-top: 30px"><a href="appetiser.html"
class="menu_item_text">APPETISER</a>
</div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/energy-drink.png" alt=""
style="height: 25px; margin-top: 30px"><a href="bcca.html" class="menu_item_text">BCAA
DRINKS</a>
</div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/story-removebg-preview.png" alt=""
style="height: 25px; margin-top: 30px"><a href="#" class="menu_item_text">STORY</a></div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/blog.png" alt="" style="height: 25px; margin-top: 30px"><a
href="#" class="menu_item_text">BLOG</a></div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/help.png" alt="" style="height: 25px; margin-top: 30px"><a
href="#" class="menu_item_text">FAQS</a></div>
</div>
<div class="Sidebar_menu">
<div class="menu_items"><img src="/img/information-desk.png" alt=""
style="height: 25px; margin-top: 30px"><a href="#" class="menu_item_text">ABOUT US</a></div>
</div>
</div>
</div>
<div class="sidebar_blur">
</div>
<div class="addtocart_sidebar">
<!-- <div style="overflow-y: scroll;"> -->
<div class="addtocart_sidebar_top">
<div>
<button id="sidebar_top_btn">❮</button>
</div>
<div style="margin-left: 15px;">
<img src="/img/Energy Boss - 280x78px.png" alt="">
<h2>Your Basket</h2>
</div>
</div>
<div class="FirstBOX">
<div class="FirstBOX_content">
<div class="FirstBOX_img">
<img src="/Size_3 193x500px/Energy-Boss---IT-(19-10-2021)---RED-BG.png" alt="">
</div>
<div class="count_plus_text">
<div class="count_text">
<p>Energy Boss Subscription</p>
<h4>Delivered every 30 days</h4>
</div>
<div class="counterBOX">
<button onclick="decrement()">-</button>
<h4 id="ROOT"></h4>
<button onclick="increament()">+</button>
<div class="amount">
<h4 style="font-size: 17px; margin-top: auto;">€</h4>
<h4 id="ROOT_2"></h4>
<button>✖</button>
</div>
</div>
</div>
</div>
</div>
<div class="SecondBOX">
<div class="FirstBOX_content">
<div class="FirstBOX_img">
<img src="/img/Energy Boss - IT (19-10-2021) - RED BG.png" alt="">
</div>
<div class="count_plus_text">
<div class="count_text">
<p>Energy Boss</p>
<h4>Delivered every 30 days</h4>
</div>
<div class="counterBOX_two">
<button onclick="decrement_two()">-</button>
<h4 id="ROOT_two"></h4>
<button onclick="increment_two()">+</button>
<div class="amount">
<h4 style="font-size: 17px; margin-top: auto;">€</h4>
<h4 id="ROOT_2_two"></h4>
<button>✖</button>
</div>
</div>
</div>
</div>
</div>
<div class="ThirdBOX">
<div class="FirstBOX_content">
<div class="FirstBOX_img">
<img src="/img/Energy Boss - IT (19-10-2021) - RED BG.png" alt="">
</div>
<div class="count_plus_text">
<div class="count_text">
<p>Energy Boss Bulk</p>
<h4>Delivered every 30 days</h4>
</div>
<div class="counterBOX_three">
<button onclick="decrement_three()">-</button>
<h4 id="ROOT_three"></h4>
<button onclick="increment_three()">+</button>
<div class="amount">
<h4 style="font-size: 17px; margin-top: auto;">€</h4>
<h4 id="ROOT_2_three"></h4>
<button>✖</button>
</div>
</div>
</div>
</div>
</div>
<!-- </div> -->
<div class="checkout">
<div>
Your Subtotal Is "amount"
</div>
<div style="display: flex;">
<input id="i_agree_checkbox" type="checkbox" style="width: 20px;">
<h4 style="font-size: 12px;">I agree to the <a id="modal_text">Terms and Conditions</a></h4>
</div>
<div class="checkout_btn">
<a href="checkout.html"><button>Proceed to Checkout</button></a>
</div>
</div>
</div>
<nav id="navbar" class="py-3 px-5 productdetails_navbar">
<div class="secondtopbar row">
<div class="col-lg-4 sm-4 col-3">
<div class="flx">
<button id="navbar-btn" class="navbar-btn" type="button">
<i class="bar-btn fas fa-bars"></i>
</button>
<a href="index.html" style="text-decoration: none;">
<a href="shop.html">
<h1 class="shop-text font-weight-bold ml-2 m-0">SHOP</h1>
</a>
</a>
</div>
</div>
<div class="col-lg-4 sm-4 col-6 text-center ">
<img class="wow-img text-center " src="/img/Energy Boss - 280x78px.png" alt="something">
</div>
<div class=" third-part col-lg-4 sm-4 col-3 text-center">
<button id="searchbtn" class="navbar-btn" type="button">
<i class="fas fa-search"></i>
</button>
<a href="user_account.html"><button id="userbtn" class="navbar-btn" type="button">
<i class="fas fa-user"></i>
</button></a>
<a href="cart.html"><button id="cart-btn" class="navbar-btn " type="button">
<i class="cart-btn fas fa-shopping-cart"></i>
</button></a>
</div>
</div>
</nav>
<!-- *********************************************************************** -->
<div class="productdetails row productdeitails_web">
<div class="imgshowclass col-12 col-lg-6 imgshowclass_single">
<div>
<img src="/Size_3 193x500px/Energy-Boss---IT-(19-10-2021)---RED-BG.png" alt="something"
style="filter: drop-shadow(3px 4px 6px black);">
</div>
<div class="TEXT">
<p>•SUBSCRIPTION EASY</p>
<p>•FREE CANCELLATION ANYTIME</p>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="drinktitleclass">
<h3 id="drinktitle " style="">ENERGY BOSS
ORIGINAL</h3>
<!-- <p style="font-size: 19px;
font-weight: 700;">€30.36</p> -->
</div>
<!-- accordion1 starts -->
<div class="component-accordion accordion_mobile_1">
<div class="panel-group" id="accordion" role="tablist">
<div class="panel">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" href="#collapseOne" aria-expanded="false"
aria-controls="collapseOne" class="collapsed">INGREDIENTS</a>
</h4>
<div id="collapseOne" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingOne" aria-expanded="false" style="height: 0px;"
data-parent="#accordion">
<div class="panel-body">
Carbonated Water, Sugar, Glucose-Fructose Syrup, Acid (Citric Acid), Taurine
(0.4%),
Flavourings, Caffeine (0.03%),
Sweeteners (Aspartame, Acesulfame K), Colours (Ammonia Caramel, Riboflavin),
Acidity
Regulator (Sodium Citrate),
Preservative (Sodium Benzoate), Vitamins (Niacin, Pantothenic Acid, Vitamin
B6,
Vitamin B12) , Inositol. Contains a
source of Phenylalanine.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- accordion1 ends -->
<!-- accordion 2starts -->
<div class="component-accordion accordion2 accordion_mobile_2">
<div class="panel-group" id="accordion" role="tablist">
<div class="panel">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" href="#collapsetwo" aria-expanded="false"
aria-controls="collapsetwo" class="collapsed">NUTRATIONAL INFORMATION</a>
</h4>
</div>
<div id="collapsetwo" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingOne" aria-expanded="false" style="height: 0px;"
data-parent="#accordion">
<div class="panel-body">
<ul class="nutritional_INFO ">
<li class="row"><span class="left col-7">Serving Size:</span><span
class="right col-5">Per 250ml
Can</span>
</li>
<li class="row"><span class="left col-7">Energy:</span><span
class="right col-5">243kJ/58kcal</span>
</li>
<li class="row"><span class="left col-7">Fat:</span><span
class="right col-5">0.0g</span>
</li>
<li class="row"><span class="left col-7">Of which saturates: </span><span
class="right col-5">0.0g</span>
</li>
<li class="row"><span class="left col-7">Carbohydrate: </span><span
class="right col-5">12.3g</span>
</li>
<li class="row"><span class="left col-7">Protein: </span><span
class="right col-5">0.0g</span>
</li>
<li class="row"><span class="left col-7">Salt: </span><span
class="right col-5">0.05g</span>
</li>
<br>
<li><span class="left" style="font-size: 20px;">Vitamin</span></li>
<li class="row"><span class="left col-7">Niacin: </span><span
class="right col-5">16mg (100%*)</span>
</li>
<li class="row"><span class="left col-7">Vitamin B6: </span><span
class="right col-5">1.4mg (100%*)</span>
</li>
<li class="row"><span class="left col-7">Vitamin B12: </span><span
class="right col-5">1.25µg (50%*)</span>
</li>
<li class="row"><span class="left col-7">Pantothenic Acid: </span><span
class="right col-5">5mg (83%*)</span>
</li>
</div>
</div>
</div>
</div>
</div>
<!-- accordion 2 ends -->
<div class="no_contract_text">
<h3 style="font-size: 16px;
font-weight: 400;">No contract • Free UK delivery • Cancel anytime<h3>
</div>
<!-- radio -->
<label for="subscribe_save" class="dis-blk">
<div class="radioDIVsingle1">
<label class="rad-label">
<input id="subscribe_save" type="radio" class="rad-input" name="rad">
<div class="rad-design"></div>
<div class="rad-text">Subscribe and Save </div>
</label>
<p class="product_price">£ 7.46</p>
<div class="small_text1">
<p>Pause, skip and cancel anytime</p>
</div>
<div class="selectbox_firstproduct">
<div>
<select name="1" id="selectBOX_1" style="color:black;" onchange="getSelectedVAlue(event)">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
<option>11</option>
</select>
<small>Cases Delivered every</small>
<select name="30" id="">
<option>30 </option>
<option>45 </option>
<option>60 </option>
</select> <small>Days</small>
</div>
</div>
<div>
</div>
<div class="cart_button_total">
<div class="addtocart-btn">
<button class="button-30" id="FirstBOX_btn" onclick="addToCart(1, 'subscription', 7.46)"
role="button">
<h4 class="button-30_price">£7.46</h4><i class="fa fa-shopping-cart"></i> Add
To
cart
</button>
</div>
</div>
</div>
</label>
<label for="radio2" class="dis-blk">
<div class="radioDIV2">
<label class="rad-label ">
<input id="radio2" type="radio" class="rad-input" name="rad">
<div class="rad-design"></div>
<div class="rad-text">One-time purchase</div>
</label>
<p class="product_price">£ 8.49</p>
<div class="small_text small_text_1">
<p>Delivered once, reorder when you need</p>
</div>
<div class="addtocart-btn">
<button class="button-30" role="button"><i class="fa fa-shopping-cart"></i>Add To
cart</button>
</div>
</div>
</label>
<label for="RADIO" class="dis-blk">
<div class="radioDIV2 radioDIV_2">
<label class="rad-label ">
<input type="radio" class="rad-input" id="RADIO" name="rad">
<div class="rad-design"></div>
<div class="pdt-price">From <small>£ 8.49</small> bulk on time</div>
</label>
<!-- <p class="product_price"></p> -->
<div class="small_text">
<p>Order in bulk to save, delivered once</p>
</div>
<div class="small_radiobox">
<label for="smallboxradio1">
<div class="smallBOX" id="smallbox1">
<div class="radiodetails">
<input type="radio" id="smallboxradio1" name="fav_language" value="HTML">
<label for="html" class="cans">2 cases</label>
</div>
<p>€ 8.49 each</p>
</div>
</label>
<label for="smallboxradio2">
<div class="smallBOX" id="smallbox2">
<div class="radiodetails">
<input type="radio" id="smallboxradio2" name="fav_language" value="HTML">
<label for="smallboxradio2" class="cans">3 cases</label>
</div>
<p>€ 8.49 each</p>
</div>
</label>
<label for="smallboxradio3">
<div class="smallBOX" id="smallbox3">
<div class="radiodetails radiodetails_3">
<input type="radio" id="smallboxradio3" name="fav_language" value="HTML">
<label for="html" class="cans">
<select name="1" id="small_select_box" onchange="getSmallSelectedValue(event)">
<option>4</option>
<option>6</option>
<option>8</option>
<option>10</option>
<option>12</option>
<option>14</option>
<option>16</option>
<option>18</option>
<option>20</option>
</select>
<small>Cases</small>
</label>
</div>
<p>€ 8.49 each</p>
</div>
</label>
</div>
<div class="addtocart-btn">
<button class="button-30" id="button-30_2" role="button">
<h4 class="button-30_price_2">£8.49</h4><i class="fa fa-shopping-cart"></i> Add
To
cart
</button>
</div>
</div>
</label>
<!-- radio -->
<!-- select box -->
<div class=" selectbox">
<div>
<h4 style="font-size: 20px; font-weight: 700;">SUBSCRIPTION EASY<br>FREE
CANCELLATION ANYTIME
</h4>
</div>
<!-- <div>
<div class="select">
<select>
<option value="1">Every 3 Week(s)</option>
<option value="2">Every 6 Week(s)</option>
<option value="3">Every 9 Weeks'(s)</option>
</select>
</div>
</div> -->
</div>
<!-- add to cart -->
<!-- social media icon -->
<div class="socialmedia">
<div>
<h4 style="margin-top: 20px;">Share BOSS Drinks on social media : </h4>
</div>
<div class="icons_socilamedia">
<ul>
<li><a href="#"><i class="fab fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fab fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
<!-- social media icon -->
</div>
</div>
<!-- productdeitails for mobile************************************************************************* -->
<!-- more information -->
<div class="container more_info">
<h2>More Information</h2>
<div class="accordion_moreinfo">
<div class="item">
<div class="title_moreinfo">
HOW MUCH CAFFEINE DO ENERGY BOSS DRINK CONTAIN ?
</div>
<div class="icon_moreinfo">
+
</div>
<div class="desc">
<p>Our Energy Boss Drink contain 30mg of caffeine per 100ml.<br>We advise that all energy
driks are
consumed in moderation.<br>The maximum daily consumption of caffeine for adults os
400mg(other
than pregnant women or people sensetive to caffeine).</p>
</div>
</div>
<div class="item">
<div class="title_moreinfo">
ARE ENERGY BOSS DRINKS SUITABLE FOR VEGETARIANS ?
</div>
<div class="icon_moreinfo">
+
</div>
<div class="desc">
<p>All our Energy Boss Drinks are suitable for vegetarians.</p>
</div>
</div>
<div class="item">
<div class="title_moreinfo">
IS ENERGY BOSS DRINK GLUTEN FREE ?
</div>
<div class="icon_moreinfo">
+
</div>
<div class="desc">
<p>Yes, all our energy drinks are gluten free, so they are suitable for those with gluten
intolerence.
</p>
</div>
</div>
<div class="item">
<div class="title_moreinfo">
IS ENERGY BOSS DRINK DAIRY FREE?
</div>
<div class="icon_moreinfo">
+
</div>
<div class="desc">
<p>Yes, our Energy Boss Drinks are dairy free</p>
</div>
</div>
<div class="item">
<div class="title_moreinfo">
ADVISORY
</div>
<div class="icon_moreinfo">
+
</div>
<div class="desc">
<p>High caffeine content.Not recommended for children or pregnant or breast-feeding women.
Consume
Moderately. Not to be consumed by under 18.</p>
</div>
</div>
</div>
</div>
<!-- ***************************************************************************************888 -->
<!-- u may also like -->
<div>
<h2 class="u_mayalso_like">You May Also Like<h2>
</div>
<div class="MainProductDisplaySection">
<div class="productdisplaysection">
<div class="card card2">
<div class="productdisplayimgBOX">
<a href="firstproduct.html">
<img src="/img/PDSEnergy Boss Original Blue.png" alt="comething">
</a>
</div>
<div class="product_display_contentbox">
<h4>Energy BOSS Original</h4>
<h4 class="price">€ 40.<small>99</small></h4>
<a href="firstproduct.html" class="buy">View Details</a>
</div>
</div>
<div class="card card2">
<div class="productdisplayimgBOX">
<a href="secondproduct.html">
<img src="/img/PDSEnergy Boss Original Red.png" alt="comething">
</a>
</div>
<div class="product_display_contentbox">
<h4>Energy BOSS Original</h4>
<h4 class="price">€ 40.<small>99</small></h4>
<a href="secondproduct.html" class="buy">View Details</a>
</div>
</div>
<div class="card card2">
<div class="productdisplayimgBOX">
<a href="thirdproduct.html">
<img src="/img/PDSEnergy Boss Original Silver.png" alt="comething">
</a>
</div>
<div class="product_display_contentbox">
<h4>Energy BOSS Original</h4>
<h4 class="price">€ 40.<small>99</small></h4>
<a href="thirdproduct.html" class="buy">View Details</a>
</div>
</div>
</div>
<div class="productdisplaysection productdisplaysection2">
<div class="card card2">
<div class="productdisplayimgBOX">
<a href="fourthproduct.html">
<img src="/img/PDSEnergy Boss Sports - IT (BCAA Apple).png" alt="comething">
</a>
</div>
<div class="product_display_contentbox">
<h4>Energy BOSS Appetiser</h4>
<h4 class="price">€ 40.<small>99</small></h4>
<a href="fourthproduct.html" class="buy">View Details</a>
</div>
</div>
<div class="card card2 card_5">
<div class="productdisplayimgBOX">
<a href="fifthproduct.html">
<img src="/img/PDSEnergy Boss Sports - IT (BCAA Lemon).png" alt="comething">
</a>
</div>
<div class="product_display_contentbox">
<h4>Energy BOSS Sport</h4>
<h4 class="price">€ 40.<small>99</small></h4>
<a href="fifthproduct.html" class="buy">Add To Cart</a>
</div>
</div>
<div class="card card2 final_card">
<div class="productdisplayimgBOX">
<a href="sixthproduct.html">
<img src="/img/PDSEnergy Boss Sports - IT (BCAA Orange).png" alt="comething">
</a>
</div>
<div class="product_display_contentbox">
<h4>Energy BOSS Appetiser</h4>
<h4 class="price">€ 40.<small>99</small></h4>
<a href="sixthproduct.html" class="buy">Add To Cart</a>
</div>
</div>
</div>
</div>
<!-- u may also like ends********************************************************************** -->
<!-- sunscription section -->
<div class="newsletter_sb">
<form action="">
<h1>Join our newsletter</h1>
<div class="email-box_newsletter">
<i class="fas fa-envelope"></i>
<input class="newsletter_email" type="email" name="" placeholder="Enter Your Email"
onchange="diplay_wide(event)">
<button class="newsletter_btn" type="button">Subscribe</button>
</div>
</form>
<div class="upper-wrapper">
<div class="wrapper">
<input type="checkbox" id="switch">
<label for="switch" class="switch_label">
<span class="onf_btn"></span>
</label>
</div>
<div class="switch_box_text">
<p>I have read the <a href="#" style="color: wheat;font-size: 15px;">Terms And Conditions</a>
which
tells me how Energy Boss Drink will manage my personal information</p>
</div>
</div>
</div>
<!-- sunscription section ends *************************************************************************-->
<!-- contact us -->
<div class="contactUS">
<div>
<p>Become a BOSS Drinks Stockist</p>
</div>
<h3>Lorem ipsum dolor sit amet consectetur adipisicing elit. Est, omnis!</h3>
<div class="contactUS_btn">
<a href="stock_register.html"><button type="button">Register</button></a>
</div>
</div>
<!-- contact us ends ******************************************************************* -->
<div class="modal-bg">
<div class="modal_tnc">
<span class="modal_close">X</span>
<div class="first_tnc">
<!-- <h4 id="BGL">BRITON GROUP LIMITED</h4> -->
<p id="main_heading">Our Website Terms & Conditions</p>
<h4 id="sub_main_heading">PLEASE READ THESE TERMS AND CONDITIONS CAREFULLY BEFORE USING THIS SITE</h4>
<h4 id="section_title">Terms of website use</h4>
<p id="agreement_text">This terms of use (together with the documents referred to in it) tells you the
terms of use on which you may make use
of our website <a id="email_text">www.bossdrinks.com</a> (our site), whether as a guest or a
registered user. Use of our site includes
accessing, browsing, or registering to use our site.</p>
<p id="agreement_text">Please read these terms of use carefully before you start to use our site, as
these will apply to your use of our site.
We recommend that you print a copy of this for future reference.</p>
<p id="agreement_text">By using our site, you confirm that you accept these terms of use and that you
agree to comply with them.</p>
<p id="agreement_text">If you do not agree to these terms of use, you must not use our site. If your
order is accepted, we will inform you by
email. When placing an order, you undertake that all details you provide to us are true and
accurate, that you are an
authorised user of the credit or debit card, or bank account used to place your order and that there
are sufficient
funds to cover the cost of the goods. The cost of the international products and services may
fluctuate. All prices
advertised are subject to such changes.</p>
<h4 id="section_title">Other applicable terms</h4>
<p id="agreement_text">These terms of use refer to the following additional terms, which also apply to
your use of our site:</p>
<p id="agreement_text">• <a id="email_text" href="#terms_privacy">Our Privacy Policy</a>, which sets out
the terms on which
we process any personal
data we collect from you, or that you
provide to us. Please read this carefully before using this site, and stop using the site
immediately if you do not
agree with such processing.</p>
<p id="agreement_text">• <a id="email_text" href="#terms_cookies">Our Cookie Policy</a>, which sets out
information about the cookies on our site.
</p>
<p id="agreement_text">If you purchase goods from our site, our <a id="email_text"
href="#terms_delivery">Terms and
conditions of supply</a> will
apply to the sales.</p>
<h4 id="section_title">Information about us</h4>
<p id="agreement_text"><a href="http://www.bossdrinks.com" id="email_text">www.bossdrinks.com</a> is a
site
operated by BOSS DRINKS LTD(“We”). We are registered in England and Wales under company
number 13717935 and have our registered office at BOSS DRINKS LTD, 3/5 Ripple Road,Barking,
Essex IG11 7ND. This is also
our main trading. Our VAT number is 32.</p>
<h4 id="section_title">Changes to these terms</h4>
<p id="agreement_text">We may revise these terms of use at any time by amending this page.</p>
<p id="agreement_text">Please check this page from time to time to take notice of any changes we made,
as they are binding on you.</p>
<h4 id="section_title">Changes to our site</h4>
<p id="agreement_text">We may update our site from time to time, and may change the content at any time.
However, please note that any of the
content on our site may be out of date at any given time, and we are under no obligation to update
it.</p>
<p id="agreement_text">We do not guarantee that our site, or any content on it, will be free from errors
or omissions.</p>
<h4 id="section_title">Accessing our site</h4>
<p id="agreement_text">Our site is made available free of charge.</p>
<p id="agreement_text">We do not guarantee that our site, or any content on it, will always be available
or be uninterrupted. Access to our
site is permitted on a temporary basis. We may suspend, withdraw, discontinue or change all or any
part of our site
without notice. We will not be liable to you if for any reason our site is unavailable at any time
or for any period.</p>
<p id="agreement_text">You are responsible for making all arrangements necessary for you to have access
to our site.</p>
<p id="agreement_text">You are also responsible for ensuring that all persons who access our site
through your internet connection are aware of
these terms of use and other applicable terms and conditions, and that they comply with them.</p>
<p id="agreement_text">Our site is directed to people residing in the United Kingdom. We do not
represent that content available on or through
our site is appropriate or available in other locations. We may limit the availability of our site
or any service or
product described on our site to any person or geographic area at any time. If you choose to access
our site from
outside the United Kingdom, you do so at your own risk.</p>
<p id="agreement_text" style="font-weight: 700;">Your account and password</p>
<p id="agreement_text">If you choose, or you are provided with a user identification code, password or
any other piece of information as part
of our security procedures, you must treat such information as confidential. You must not disclose
it to any third
party.</p>
<p id="agreement_text">We have the right to disable any user identification code or password, whether
chosen by you or allocated by us, at any
time, if in our reasonable opinion you have failed to comply with any of the provisions of these
terms of use.</p>
<p id="agreement_text">If you know or suspect that anyone other than you knows your user identification
code or password, you must promptly
notify us at <a id="email_text">info@bossdrinks.com</a></p>
<p id="agreement_text" style="font-weight: 700;">Intellectual property rights</p>
<p id="agreement_text">We are the owner or the licensee of all intellectual property rights in our site,
and in the material published on it.
Those works are protected by copyright laws and treaties around the world. All such rights are
reserved.
</p>
<p id="agreement_text">You may print off one copy, and may download extracts, of any page(s) from our
site for your personal use and you may
draw the attention of others within your organisation to content posted on our site.</p>
<p id="agreement_text">You must not modify the paper or digital copies of any materials you have printed
off or downloaded in any way, and you
must not use any illustrations, photographs, video or audio sequences or any graphics separately
from any accompanying
text.</p>
<p id="agreement_text">Our status (and that of any identified contributors) as the authors of content on
our site must always be acknowledged.</p>
<p id="agreement_text">You must not use any part of the content on our site for commercial purposes
without obtaining a licence to do so from
us or our licensors.</p>
<p id="agreement_text">If you print off, copy or download any part of our site in breach of these terms
of use, your right to use our site will
cease immediately and you must, at our option, return or destroy any copies of the materials you
have made.</p>
<h4 id="section_title">No reliance on information</h4>
<p id="agreement_text">The content on our site is provided for general information only. It is not
intended to amount to advice on which you
should rely. You must obtain professional or specialist advice before taking, or refraining from,
any action on the
basis of the content on our site.</p>
<p id="agreement_text">Although we make reasonable efforts to update the information on our site, we
make no representations, warranties or
guarantees, whether express or implied, that the content on our site is accurate, complete or
up-to-date.</p>
<h4 id="section_title">Limitation of our liability</h4>
<p id="agreement_text">Nothing in these terms of use excludes or limits our liability for death or
personal injury arising from our negligence,
or our fraud or fraudulent misrepresentation, or any other liability that cannot be excluded or
limited by English law.</p>
<p id="agreement_text">To the extent permitted by law, we exclude all conditions, warranties,
representations or other terms which may apply to
our site or any content on it, whether express or implied.
</p>
<p id="agreement_text">We will not be liable to any user for any loss or damage, whether in contract,
tort (including negligence), breach of
statutory duty, or otherwise, even if foreseeable, arising under or in connection with:</p>