-
Notifications
You must be signed in to change notification settings - Fork 3
/
product.html
3205 lines (3194 loc) · 234 KB
/
product.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>
<!--[if lt IE 7]>
<html class="no-js ie6 oldie" lang="en-NG"> <![endif]-->
<!--[if IE 7]>
<html class="no-js ie7 oldie" lang="en-NG"> <![endif]-->
<!--[if IE 8]>
<html class="no-js ie8 oldie" lang="en-NG"> <![endif]-->
<!--[if IE 9]>
<html class="no-js ie9" lang="en-NG"> <![endif]-->
<!--[if gt IE 9]><!-->
<html class="no-js" lang="en-NG">
<!--<![endif]-->
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<title>
Fashion Fohting Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves YE - Yellow | Jumia.com.ng
</title>
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/>
<meta content=": Get the Fohting Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves YE - Yellow online at Jumia Nigeria ➤ and other Fashion Gloves on Jumia at the best price in Nigeria ➤ Enjoy Free DELIVERY & Cash on Delivery available on eligible purchases." name="description"/>
<meta content="Fohting Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves YE - Yellow, Gloves, Gloves, Fashion" name="keywords"/>
<meta content="noindex,follow" name="robots"/>
<meta content="unsafe-url" name="referrer"/>
<link href="//www.google-analytics.com" rel="dns-prefetch"/>
<link href="//www.googleadservices.com" rel="dns-prefetch"/>
<link href="//connect.facebook.net" rel="dns-prefetch"/>
<link href="//googleads.g.doubleclick.net" rel="dns-prefetch"/>
<link href="//7205708.collect.igodigital.com" rel="dns-prefetch"/>
<link href="//assets.zendesk.com" rel="dns-prefetch"/>
<link href="//www.facebook.com" rel="dns-prefetch"/>
<link href="//adsearch.adkontekst.pl" rel="dns-prefetch"/>
<link href="//92.media.tumblr.com" rel="dns-prefetch"/>
<link href="//static.jumia.com.ng" rel="preconnect"/>
<link href="//www.gstatic.com" rel="preconnect"/>
<link href="//recs.richrelevance.com" rel="preconnect"/>
<link href="//static.dynamicyield.com" rel="preconnect"/>
<link href="//www.googletagmanager.com" rel="preconnect"/>
<link href="//px.dynamicyield.com" rel="preconnect"/>
<link href="//js-agent.newrelic.com" rel="preconnect"/>
<link href="//static.criteo.net" rel="preconnect"/>
<link href="//eu-sonar.sociomantic.com" rel="preconnect"/>
<link href="//marketing.net.jumia.com.ng" rel="preconnect"/>
<meta content="66DCE7076C4C56245BAB83C687510491" name="msvalidate.01"/>
<meta content="4vr0StQ8YkyEzgDxkC_mgx0UMSH2xM3vkOaRpaMEjWM" name="google-site-verification"/>
<link href="https://www.jumia.com.ng/fashion-fohting-children-riding-gloves-half-finger-gloves-sunscreen-slip-gloves-ye-yellow-21252278.html" rel="canonical"/>
<link href="https://www.jumia.com.ng/favicon.ico" rel="icon" type="image/x-icon"/>
<link href="https://www.jumia.com.ng/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
<link href="android-app://com.jumia.android/JUMIA/NG/d/FA203AC1FXJEKNAFAMZ?utm_source=google&utm_medium=organic&adjust_tracker=j1hd8h&adjust_campaign=GOOGLE_SEARCH&adjust_adgroup=https%253A%252F%252Fwww.jumia.com.ng%252Ffashion-fohting-children-riding-gloves-half-finger-gloves-sunscreen-slip-gloves-ye-yellow-21252278.html" rel="alternate"/>
<meta content="728795990650684" property="fb:app_id"/>
<meta content="Fohting Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves YE - Yellow" property="og:title"/>
<meta content="product" property="og:type"/>
<meta content="https://ng.jumia.is/XY8OmeLjeae6nvezmsGsXswktTY=/fit-in/500x500/filters:fill(white):sharpen(1,0,false):quality(100)/product/87/225212/1.jpg?2255" property="og:image"/>
<meta content="Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves&nbsp; Features: 100% brand high-quality Material: Cloth Size: 3-13years old Uses: Driving gloves and warm in winterPackage include: 1 pair Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves" property="og:description"/>
<meta content="Jumia Nigeria" property="og:site_name"/>
<meta content="https://www.jumia.com.ng/fashion-fohting-children-riding-gloves-half-finger-gloves-sunscreen-slip-gloves-ye-yellow-21252278.html" property="og:url"/>
<meta content="291297097615087" property="fb:pages"/>
<script type="text/javascript">
var isCssLoaded = function(s) { return document.querySelector('head > link[rel=stylesheet][href="'+s+'"]'); }
</script>
<link as="style" href="https://www.jumia.com.ng/css/alice_controller_catalogcontroller--detail--alice-min{-oshun}.00fa30585ab8bcfc35c79cd2de675c95.css" onload="this.onload=null;if(!isCssLoaded(this.href))this.rel='stylesheet'" rel="preload"/>
<style type="text/css">
/*<![CDATA[*/
.webFont{font-family:Roboto,Helvetica,Arial,sans-serif}.webFontIcons{font-family:oshfont,Helvetica,Arial,sans-serif}.webFontFallback{font-family:Helvetica,Arial,sans-serif}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#b3b3b3}.h1,.h2,.h3,h1,h2,h3{margin-top:17px;margin-bottom:8.5px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:8.5px;margin-bottom:8.5px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:31px}.h2,h2{font-size:25px}.h3,h3{font-size:21px}.h4,h4{font-size:15px}.h5,h5{font-size:12px}.h6,h6{font-size:11px}p{margin:0 0 8.5px}.small,small{font-size:91%}.mark,mark{background-color:#fcf8e3;padding:.2em}.bold{font-weight:700}.regular{font-weight:500}.light{font-weight:400}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-through{text-decoration:line-through}.text-underline{text-decoration:underline}ol,ul{margin-top:0;margin-bottom:8.5px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=button]{border:0;outline:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:border-box}:after,:before{box-sizing:border-box}html{font-size:12px;-webkit-tap-highlight-color:transparent;direction:ltr}body{font-family:Roboto,Helvetica,Arial,sans-serif;font-size:12px;line-height:1.42857;color:#555;background-color:#f5f5f5;min-width:995px}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#000;text-decoration:none}a:focus,a:hover{color:#f68b1e}figure{margin:0}.icon{display:inline-block}img{vertical-align:middle;max-width:100%}.img-responsive{display:block;max-width:100%;height:auto}.hidden{display:none}.sku>.link>.price-container>.price-box>.price.d-block{display:block}div.osh-spinner>i,img.lazy{background-image:url(data:image/gif;base64,R0lGODlhEAAQAPYAAP///wAAANTU1JSUlGBgYEBAQERERG5ubqKiotzc3KSkpCQkJCgoKDAwMDY2Nj4+Pmpqarq6uhwcHHJycuzs7O7u7sLCwoqKilBQUF5eXr6+vtDQ0Do6OhYWFoyMjKqqqlxcXHx8fOLi4oaGhg4ODmhoaJycnGZmZra2tkZGRgoKCrCwsJaWlhgYGAYGBujo6PT09Hh4eISEhPb29oKCgqioqPr6+vz8/MDAwMrKyvj4+NbW1q6urvDw8NLS0uTk5N7e3s7OzsbGxry8vODg4NjY2PLy8tra2np6erS0tLKyskxMTFJSUlpaWmJiYkJCQjw8PMTExHZ2djIyMurq6ioqKo6OjlhYWCwsLB4eHqCgoE5OThISEoiIiGRkZDQ0NMjIyMzMzObm5ri4uH5+fpKSkp6enlZWVpCQkEpKSkhISCIiIqamphAQEAwMDKysrAQEBJqamiYmJhQUFDg4OHR0dC4uLggICHBwcCAgIFRUVGxsbICAgAAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAEAAQAAAHjYAAgoOEhYUbIykthoUIHCQqLoI2OjeFCgsdJSsvgjcwPTaDAgYSHoY2FBSWAAMLE4wAPT89ggQMEbEzQD+CBQ0UsQA7RYIGDhWxN0E+ggcPFrEUQjuCCAYXsT5DRIIJEBgfhjsrFkaDERkgJhswMwk4CDzdhBohJwcxNB4sPAmMIlCwkOGhRo5gwhIGAgAh+QQACgABACwAAAAAEAAQAAAHjIAAgoOEhYU7A1dYDFtdG4YAPBhVC1ktXCRfJoVKT1NIERRUSl4qXIRHBFCbhTKFCgYjkII3g0hLUbMAOjaCBEw9ukZGgidNxLMUFYIXTkGzOmLLAEkQCLNUQMEAPxdSGoYvAkS9gjkyNEkJOjovRWAb04NBJlYsWh9KQ2FUkFQ5SWqsEJIAhq6DAAIBACH5BAAKAAIALAAAAAAQABAAAAeJgACCg4SFhQkKE2kGXiwChgBDB0sGDw4NDGpshTheZ2hRFRVDUmsMCIMiZE48hmgtUBuCYxBmkAAQbV2CLBM+t0puaoIySDC3VC4tgh40M7eFNRdH0IRgZUO3NjqDFB9mv4U6Pc+DRzUfQVQ3NzAULxU2hUBDKENCQTtAL9yGRgkbcvggEq9atUAAIfkEAAoAAwAsAAAAABAAEAAAB4+AAIKDhIWFPygeEE4hbEeGADkXBycZZ1tqTkqFQSNIbBtGPUJdD088g1QmMjiGZl9MO4I5ViiQAEgMA4JKLAm3EWtXgmxmOrcUElWCb2zHkFQdcoIWPGK3Sm1LgkcoPrdOKiOCRmA4IpBwDUGDL2A5IjCCN/QAcYUURQIJIlQ9MzZu6aAgRgwFGAFvKRwUCAAh+QQACgAEACwAAAAAEAAQAAAHjIAAgoOEhYUUYW9lHiYRP4YACStxZRc0SBMyFoVEPAoWQDMzAgolEBqDRjg8O4ZKIBNAgkBjG5AAZVtsgj44VLdCanWCYUI3txUPS7xBx5AVDgazAjC3Q3ZeghUJv5B1cgOCNmI/1YUeWSkCgzNUFDODKydzCwqFNkYwOoIubnQIt244MzDC1q2DggIBACH5BAAKAAUALAAAAAAQABAAAAeJgACCg4SFhTBAOSgrEUEUhgBUQThjSh8IcQo+hRUbYEdUNjoiGlZWQYM2QD4vhkI0ZWKCPQmtkG9SEYJURDOQAD4HaLuyv0ZeB4IVj8ZNJ4IwRje/QkxkgjYz05BdamyDN9uFJg9OR4YEK1RUYzFTT0qGdnduXC1Zchg8kEEjaQsMzpTZ8avgoEAAIfkEAAoABgAsAAAAABAAEAAAB4iAAIKDhIWFNz0/Oz47IjCGADpURAkCQUI4USKFNhUvFTMANxU7KElAhDA9OoZHH0oVgjczrJBRZkGyNpCCRCw8vIUzHmXBhDM0HoIGLsCQAjEmgjIqXrxaBxGCGw5cF4Y8TnybglprLXhjFBUWVnpeOIUIT3lydg4PantDz2UZDwYOIEhgzFggACH5BAAKAAcALAAAAAAQABAAAAeLgACCg4SFhjc6RhUVRjaGgzYzRhRiREQ9hSaGOhRFOxSDQQ0uj1RBPjOCIypOjwAJFkSCSyQrrhRDOYILXFSuNkpjggwtvo86H7YAZ1korkRaEYJlC3WuESxBggJLWHGGFhcIxgBvUHQyUT1GQWwhFxuFKyBPakxNXgceYY9HCDEZTlxA8cOVwUGBAAA7AAAAAAAAAAAA);background-repeat:no-repeat;background-position:center}div.osh-spinner>i.-hidden,img.lazy.-hidden{display:none}div.osh-spinner>i.-loaded,img.lazy.-loaded{background-image:none}div.osh-spinner{text-align:center}div.osh-spinner>i{width:16px;height:16px;display:inline-block;vertical-align:middle}hr{border:0;border-top:1px solid #eee}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}span[data-currency-iso],span[data-price]{display:inline-block}.-old span[data-price],.-old>span[data-currency-iso],.old span[data-price],.old>span[data-currency-iso]{text-decoration:line-through}.-pull-left{float:left!important}.-pull-right{float:right!important}.-align-center{text-align:center!important}.-align-left{text-align:left!important}.-align-right{text-align:right!important}.-align-vertical{top:50%;transform:translateY(-50%);position:absolute;left:0;right:0}.-vertical-align-middle{vertical-align:middle}.-fwm{font-weight:500}.-b{font-weight:700}.-block,.-show{display:block!important}.-block-center{display:block!important;margin:0 auto}.-inline-block{display:inline-block!important}.-flex{display:-ms-flexbox;display:flex}.-flex-1{-ms-flex:1;flex:1}.-vh-center{-ms-flex-align:center;align-items:center}.-hidden{display:none!important}.-invisible{visibility:hidden}.-no-padding{padding:0!important}.-no-margin{margin:0!important}.-full-width{width:100%!important;height:auto!important}.-clearfix:after,.-clearfix:before{content:" ";display:table}.-clearfix:after{clear:both}.-clearboth{clear:both}.-table{display:table!important;width:100%}.-table-cell{display:table-cell!important;float:none!important}.-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.-ellipsis-2{overflow:hidden;text-overflow:-o-ellipsis-lastline;text-overflow:ellipsis;display:block;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:2.824em}.-strike{text-decoration:line-through}.-wrap-break-word{word-wrap:break-word}.-text-wrap{white-space:normal}.-underline{text-decoration:underline}.-cap{text-transform:capitalize}.-upp{text-transform:uppercase}.-relative{position:relative}.-paxxs{padding:2px!important}.-paxs{padding:4px!important}.-pas{padding:6px!important}.-pam{padding:8px!important}.-pal{padding:10px!important}.-paxl{padding:16px!important}.-paxxl{padding:20px!important}.-paxxxl{padding:30px!important}.-pan{padding:0!important}.-ptxxs{padding-top:2px!important}.-ptxs{padding-top:4px!important}.-pts{padding-top:6px!important}.-ptm{padding-top:8px!important}.-ptl{padding-top:10px!important}.-ptxl{padding-top:16px!important}.-ptxxl{padding-top:20px!important}.-ptxxxl{padding-top:30px!important}.-ptn{padding-top:0!important}.-prxxs{padding-right:2px!important}.-prxs{padding-right:4px!important}.-prs{padding-right:6px!important}.-prm{padding-right:8px!important}.-prl{padding-right:10px!important}.-prxl{padding-right:16px!important}.-prxxl{padding-right:20px!important}.-prxxxl{padding-right:30px!important}.-prn{padding-right:0!important}.-pbxxs{padding-bottom:2px!important}.-pbxs{padding-bottom:4px!important}.-pbs{padding-bottom:6px!important}.-pbm{padding-bottom:8px!important}.-pbl{padding-bottom:10px!important}.-pbxl{padding-bottom:16px!important}.-pbxxl{padding-bottom:20px!important}.-pbxxxl{padding-bottom:30px!important}.-pbn{padding-bottom:0!important}.-plxxs{padding-left:2px!important}.-plxs{padding-left:4px!important}.-pls{padding-left:6px!important}.-plm{padding-left:8px!important}.-pll{padding-left:10px!important}.-plxl{padding-left:16px!important}.-plxxl{padding-left:20px!important}.-plxxxl{padding-left:30px!important}.-pln{padding-left:0!important}.-maxxs{margin:2px!important}.-maxs{margin:4px!important}.-mas{margin:6px!important}.-mam{margin:8px!important}.-mal{margin:10px!important}.-maxl{margin:16px!important}.-maxxl{margin:20px!important}.-maxxxl{margin:30px!important}.-man{margin:0!important}.-mtxxs{margin-top:2px!important}.-mtxs{margin-top:4px!important}.-mts{margin-top:6px!important}.-mtm{margin-top:8px!important}.-mtl{margin-top:10px!important}.-mtxl{margin-top:16px!important}.-mtxxl{margin-top:20px!important}.-mtxxxl{margin-top:30px!important}.-mtn{margin-top:0!important}.-mrxxs{margin-right:2px!important}.-mrxs{margin-right:4px!important}.-mrs{margin-right:6px!important}.-mrm{margin-right:8px!important}.-mrl{margin-right:10px!important}.-mrxl{margin-right:16px!important}.-mrxxl{margin-right:20px!important}.-mrxxxl{margin-right:30px!important}.-mrn{margin-right:0!important}.-mbxxs{margin-bottom:2px!important}.-mbxs{margin-bottom:4px!important}.-mbs{margin-bottom:6px!important}.-mbm{margin-bottom:8px!important}.-mbl{margin-bottom:10px!important}.-mbxl{margin-bottom:16px!important}.-mbxxl{margin-bottom:20px!important}.-mbxxxl{margin-bottom:30px!important}.-mbn{margin-bottom:0!important}.-mlxxs{margin-left:2px!important}.-mlxs{margin-left:4px!important}.-mls{margin-left:6px!important}.-mlm{margin-left:8px!important}.-mll{margin-left:10px!important}.-mlxl{margin-left:16px!important}.-mlxxl{margin-left:20px!important}.-mlxxxl{margin-left:30px!important}.-mln{margin-left:0!important}.-fs-12{font-size:12px}.-fs-13{font-size:13px}.-fs-14{font-size:14px}.-fs-15{font-size:15px}.-fs-17{font-size:17px}.-fs-22{font-size:22px}.color-default{color:#000}.color-default-900{color:#202020}.color-default-800{color:gray}.color-default-700{color:#c5c5c5}.color-default-400{color:#e2e2e2}.color-default-300{color:#f0f0f0}.color-default-200{color:#f5f5f5}.color-green{color:#006400}.color-red{color:#d10b23}.color-grey{color:gray}.color-primary{color:#f68b1e}.color-success{color:#a3cf62}.color-white{color:#fff}.bg-default{background-color:#000}.bg-default-900{background-color:#202020}.bg-default-800{background-color:gray}.bg-default-700{background-color:#c5c5c5}.bg-default-400{background-color:#e2e2e2}.bg-default-300{background-color:#f0f0f0}.bg-default-200{background-color:#f5f5f5}.bg-white{background-color:#fff}.bg-primary{background-color:#f68b1e}.bg-secondary{background-color:#416998}.bg-alert{background-color:#c00000}.bg-success{background-color:#a3cf62}.brda{border:1px solid #f0f0f0}.brdt{border-top:1px solid #f0f0f0}.brdr{border-right:1px solid #f0f0f0}.brdb{border-bottom:1px solid #f0f0f0}.brdl{border-left:1px solid #f0f0f0}.-rad{border-radius:4px}.-shad{box-shadow:0 2px 5px 0 rgba(0,0,0,.05)}.-pointer{cursor:pointer}.bg-white{background-color:#fff}.-rad{border-radius:4px}.-fs-13{font-size:13px}.-fs-15{font-size:15px}.-fs-17{font-size:17px}.osh-container{max-width:1170px;margin-left:auto;margin-right:auto}.osh-container:after{content:" ";display:block;clear:both}@media (min-width:0) and (max-width:1199px){.osh-container{width:975px}}@media (min-width:1200px){.osh-container{width:1170px}}.oshun-grid{margin-right:auto;margin-left:auto;max-width:1170px}.oshun-grid:after,.oshun-grid:before{content:" ";display:table}.oshun-grid:after{clear:both}.line{margin-left:-20px}.line:after,.line:before{content:" ";display:table}.line:after{clear:both}.oshun-col-1of1,.oshun-col-1of2,.oshun-col-1of3,.oshun-col-1of4,.oshun-col-1of5,.oshun-col-1of6,.oshun-col-1of7,.oshun-col-1of8,.oshun-col-2of3,.oshun-col-2of4,.oshun-col-2of5,.oshun-col-2of6,.oshun-col-2of7,.oshun-col-2of8,.oshun-col-3of4,.oshun-col-3of5,.oshun-col-3of6,.oshun-col-3of7,.oshun-col-3of8,.oshun-col-4of5,.oshun-col-4of6,.oshun-col-4of7,.oshun-col-4of8,.oshun-col-5of6,.oshun-col-5of7,.oshun-col-5of8,.oshun-col-6of7,.oshun-col-6of8,.oshun-col-7of8{position:relative;min-height:1px;float:left;padding-left:20px}.no-gutter>.line{margin-left:0;margin-right:0}.no-gutter>.line>[class*=oshun-col-]{padding-left:0;padding-right:0}.oshun-col-1of1{width:100%}.oshun-col-1of2{width:50%}.oshun-col-1of3{width:33.33333%}.oshun-col-1of4{width:25%}.oshun-col-1of5{width:20%}.oshun-col-1of6{width:16.66667%}.oshun-col-1of7{width:14.28571%}.oshun-col-1of8{width:12.5%}.oshun-col-2of3{width:66.66667%}.oshun-col-2of4{width:50%}.oshun-col-2of5{width:40%}.oshun-col-2of6{width:33.33333%}.oshun-col-2of7{width:28.57143%}.oshun-col-2of8{width:25%}.oshun-col-3of4{width:75%}.oshun-col-3of5{width:60%}.oshun-col-3of6{width:50%}.oshun-col-3of7{width:42.85714%}.oshun-col-3of8{width:37.5%}.oshun-col-4of5{width:80%}.oshun-col-4of6{width:66.66667%}.oshun-col-4of7{width:57.14286%}.oshun-col-4of8{width:50%}.oshun-col-5of6{width:83.33333%}.oshun-col-5of7{width:71.42857%}.oshun-col-5of8{width:62.5%}.oshun-col-6of7{width:85.71429%}.oshun-col-6of8{width:75%}.oshun-col-7of8{width:87.5%}@media (min-width:0) and (max-width:1169px){.oshun-col-md-1of1{width:100%}.oshun-col-md-1of2{width:50%}.oshun-col-md-1of3{width:33.33333%}.oshun-col-md-1of4{width:25%}.oshun-col-md-1of5{width:20%}.oshun-col-md-1of6{width:16.66667%}.oshun-col-md-1of7{width:14.28571%}.oshun-col-md-1of8{width:12.5%}.oshun-col-md-2of3{width:66.66667%}.oshun-col-md-2of4{width:50%}.oshun-col-md-2of5{width:40%}.oshun-col-md-2of6{width:33.33333%}.oshun-col-md-2of7{width:28.57143%}.oshun-col-md-2of8{width:25%}.oshun-col-md-3of4{width:75%}.oshun-col-md-3of5{width:60%}.oshun-col-md-3of6{width:50%}.oshun-col-md-3of7{width:42.85714%}.oshun-col-md-3of8{width:37.5%}.oshun-col-md-4of5{width:80%}.oshun-col-md-4of6{width:66.66667%}.oshun-col-md-4of7{width:57.14286%}.oshun-col-md-4of8{width:50%}.oshun-col-md-5of6{width:83.33333%}.oshun-col-md-5of7{width:71.42857%}.oshun-col-md-5of8{width:62.5%}.oshun-col-md-6of7{width:85.71429%}.oshun-col-md-6of8{width:75%}.oshun-col-md-7of8{width:87.5%}}.osh-icon.-DZ{background-position:-373px -118px;width:16px;height:16px}.osh-icon.-EG{background-position:-357px -118px;width:16px;height:16px}.osh-icon.-EN{background-position:-357px -134px;width:16px;height:16px}.osh-icon.-FR{background-position:-373px -102px;width:16px;height:16px}.osh-icon.-Floor1_arrow_left{background-position:-411px -298px;width:11px;height:18px}.osh-icon.-Floor1_arrow_right{background-position:-411px -275px;width:11px;height:18px}.osh-icon.-MA{background-position:-357px -102px;width:16px;height:16px}.osh-icon.-arrow-down{background-position:-414px -48px;width:8px;height:4px}.osh-icon.-call{background-position:-389px -200px;width:25px;height:25px}.osh-icon.-car-l{background-position:-70px -250px;width:35px;height:35px}.osh-icon.-car-m{background-position:-389px -250px;width:25px;height:25px}.osh-icon.-car-s.-active,.osh-icon.-car-s:hover{background-position:-372px -165px}.osh-icon.-car-s{background-position:-357px -210px;width:15px;height:15px}.osh-icon.-cart_icon{background-position:0 -328px;width:34px;height:30px}.osh-icon.-close-big{background-position:-389px -363px;width:18px;height:18px}.osh-icon.-close-small{background-position:-409px -342px;width:13px;height:13px}.osh-icon.-close_popup{background-position:-357px -85px;width:17px;height:17px}.osh-icon.-deals-l{background-position:-175px -250px;width:35px;height:35px}.osh-icon.-deals-m{background-position:-389px -100px;width:25px;height:25px}.osh-icon.-deals-s.-active,.osh-icon.-deals-s:hover{background-position:-372px -180px}.osh-icon.-deals-s{background-position:-357px -180px;width:15px;height:15px}.osh-icon.-f-arrow-left{background-position:-389px -342px;width:20px;height:21px}.osh-icon.-f-arrow-right{background-position:-357px -64px;width:20px;height:21px}.osh-icon.-food-l{background-position:0 -250px;width:35px;height:35px}.osh-icon.-food-m{background-position:-389px -175px;width:25px;height:25px}.osh-icon.-food-s.-active,.osh-icon.-food-s:hover{background-position:-357px -165px}.osh-icon.-food-s{background-position:-372px -150px;width:15px;height:15px}.osh-icon.-footer-aaib{background-position:-389px -25px;width:33px;height:23px}.osh-icon.-footer-cadhoc{background-position:-317px -26px;width:40px;height:26px}.osh-icon.-footer-cashondelivery-2{background-position:-317px -52px;width:40px;height:26px}.osh-icon.-footer-cashondelivery{background-position:-40px -285px;width:40px;height:30px}.osh-icon.-footer-cmi{background-position:-317px -78px;width:40px;height:26px}.osh-icon.-footer-dhl{background-position:-99px -215px;width:68px;height:21px}.osh-icon.-footer-dollar{background-position:-389px 0;width:33px;height:25px}.osh-icon.-footer-edenred{background-position:-317px 0;width:40px;height:26px}.osh-icon.-footer-facebook{background-position:-317px -104px;width:32px;height:32px}.osh-icon.-footer-google-plus{background-position:-357px 0;width:32px;height:32px}.osh-icon.-footer-gurama{background-position:-106px -108px;width:100px;height:30px}.osh-icon.-footer-instagram{background-position:-317px -232px;width:32px;height:32px}.osh-icon.-footer-interswitch{background-position:-118px -180px;width:63px;height:29px}.osh-icon.-footer-jumia-car{background-position:-211px -36px;width:106px;height:36px}.osh-icon.-footer-jumia-deals{background-position:-211px -72px;width:106px;height:36px}.osh-icon.-footer-jumia-fashion{background-position:-271px -108px;width:33px;height:38px}.osh-icon.-footer-jumia-food{background-position:-72px -54px;width:106px;height:36px}.osh-icon.-footer-jumia-house{background-position:0 -108px;width:106px;height:36px}.osh-icon.-footer-jumia-jobs{background-position:0 -144px;width:106px;height:36px}.osh-icon.-footer-jumia-travel{background-position:-211px 0;width:106px;height:36px}.osh-icon.-footer-jumia{background-position:-317px -136px;width:32px;height:32px}.osh-icon.-footer-linkedin{background-position:-317px -168px;width:32px;height:32px}.osh-icon.-footer-mastercard-bg{background-position:0 -180px;width:58px;height:35px}.osh-icon.-footer-mastercard{background-position:0 -54px;width:72px;height:54px}.osh-icon.-footer-max{background-position:-106px -144px;width:73px;height:30px}.osh-icon.-footer-mtn{background-position:-49px -215px;width:50px;height:30px}.osh-icon.-footer-orange{background-position:-389px -48px;width:25px;height:30px}.osh-icon.-footer-pinterest{background-position:-317px -200px;width:32px;height:32px}.osh-icon.-footer-truck{background-position:0 -285px;width:40px;height:30px}.osh-icon.-footer-twitter-live{background-position:-58px -180px;width:60px;height:32px}.osh-icon.-footer-twitter{background-position:-178px -54px;width:32px;height:32px}.osh-icon.-footer-viber{background-position:-317px -264px;width:32px;height:32px}.osh-icon.-footer-visa-bg{background-position:0 -215px;width:49px;height:35px}.osh-icon.-footer-visa{background-position:0 0;width:101px;height:54px}.osh-icon.-footer-youtube{background-position:-357px -32px;width:32px;height:32px}.osh-icon.-footer-zippy{background-position:-101px 0;width:110px;height:47px}.osh-icon.-freedelivery{background-position:0 -358px;width:36px;height:24px}.osh-icon.-house-l{background-position:-35px -250px;width:35px;height:35px}.osh-icon.-house-m{background-position:-389px -125px;width:25px;height:25px}.osh-icon.-house-s.-active,.osh-icon.-house-s:hover{background-position:-357px -150px}.osh-icon.-house-s{background-position:-374px -85px;width:15px;height:15px}.osh-icon.-i-car.-active,.osh-icon.-i-car:hover{background-position:-275px -358px}.osh-icon.-i-car{background-position:-271px -146px;width:46px;height:13px}.osh-icon.-i-deals.-active,.osh-icon.-i-deals:hover{background-position:-232px -328px}.osh-icon.-i-deals{background-position:-298px -315px;width:57px;height:13px}.osh-icon.-i-flights-logo.-active,.osh-icon.-i-flights-logo:hover{background-position:-34px -328px}.osh-icon.-i-flights-logo{background-position:-230px -315px;width:68px;height:13px}.osh-icon.-i-food.-active,.osh-icon.-i-food:hover{background-position:-242px -341px}.osh-icon.-i-food{background-position:-292px -341px;width:50px;height:13px}.osh-icon.-i-house.-active,.osh-icon.-i-house:hover{background-position:-36px -358px}.osh-icon.-i-house{background-position:-86px -358px;width:50px;height:13px}.osh-icon.-i-jobs.-active,.osh-icon.-i-jobs:hover{background-position:-136px -358px}.osh-icon.-i-jobs{background-position:-342px -341px;width:47px;height:13px}.osh-icon.-i-jumia-car{background-position:-156px -315px;width:74px;height:13px}.osh-icon.-i-jumia-deals{background-position:-80px -297px;width:87px;height:13px}.osh-icon.-i-jumia-food{background-position:0 -315px;width:80px;height:13px}.osh-icon.-i-jumia-fresh.-active,.osh-icon.-i-jumia-fresh:hover{background-position:-265px -250px}.osh-icon.-i-jumia-fresh{background-position:-89px -341px;width:51px;height:13px}.osh-icon.-i-jumia-house{background-position:-167px -297px;width:86px;height:13px}.osh-icon.-i-jumia-jobs{background-position:-80px -315px;width:76px;height:13px}.osh-icon.-i-jumia-logo.-active,.osh-icon.-i-jumia-logo:hover{background-position:-289px -328px}.osh-icon.-i-jumia-logo{background-position:-34px -341px;width:55px;height:13px}.osh-icon.-i-jumia-now.-active,.osh-icon.-i-jumia-now:hover{background-position:-183px -358px}.osh-icon.-i-jumia-now{background-position:-229px -358px;width:46px;height:13px}.osh-icon.-i-jumia-one.-active,.osh-icon.-i-jumia-one:hover{background-position:-191px -341px}.osh-icon.-i-jumia-one{background-position:-140px -341px;width:51px;height:13px}.osh-icon.-i-jumia-party-logo.-active,.osh-icon.-i-jumia-party-logo:hover{background-position:-167px -328px}.osh-icon.-i-jumia-party-logo{background-position:-102px -328px;width:65px;height:13px}.osh-icon.-i-jumia-rewards.-active,.osh-icon.-i-jumia-rewards:hover{background-position:-167px -215px}.osh-icon.-i-jumia-rewards{background-position:-210px -272px;width:92px;height:13px}.osh-icon.-i-jumia-travel{background-position:-181px -193px;width:94px;height:13px}.osh-icon.-i-sell-on-jumia.-active,.osh-icon.-i-sell-on-jumia:hover{background-position:-72px -90px}.osh-icon.-i-sell-on-jumia{background-position:-181px -180px;width:123px;height:13px}.osh-icon.-i-travel.-active,.osh-icon.-i-travel:hover{background-position:-259px -215px}.osh-icon.-i-travel{background-position:-253px -297px;width:58px;height:13px}.osh-icon.-iconapp-jumia{background-position:-211px -108px;width:60px;height:60px}.osh-icon.-jobs-l{background-position:-105px -250px;width:35px;height:35px}.osh-icon.-jobs-m{background-position:-389px -150px;width:25px;height:25px}.osh-icon.-jobs-s.-active,.osh-icon.-jobs-s:hover{background-position:-373px -134px}.osh-icon.-jobs-s{background-position:-357px -195px;width:15px;height:15px}.osh-icon.-jumia-express{background-position:-211px -168px;width:95px;height:12px}.osh-icon.-jumia-global{background-position:-80px -285px;width:95px;height:12px}.osh-icon.-ok{background-position:-372px -210px;width:14px;height:15px}.osh-icon.-partnerLogo-axa{background-position:-210px -250px;width:55px;height:22px}.osh-icon.-partnerLogo-meditel{background-position:-389px -78px;width:33px;height:22px}.osh-icon.-partnerLogo-mtn{background-position:-389px -298px;width:22px;height:22px}.osh-icon.-partnerLogo-orange{background-position:-389px -275px;width:22px;height:23px}.osh-icon.-partnerLogo-tigo{background-position:-389px -320px;width:22px;height:22px}.osh-icon.-payicon{background-position:-317px -296px;width:39px;height:19px}.osh-icon.-question{background-position:-377px -64px;width:12px;height:11px}.osh-icon.-travel-l{background-position:-140px -250px;width:35px;height:35px}.osh-icon.-travel-m{background-position:-389px -225px;width:25px;height:25px}.osh-icon.-travel-s.-active,.osh-icon.-travel-s:hover{background-position:-407px -363px}.osh-icon.-travel-s{background-position:-372px -195px;width:15px;height:15px}.osh-partnership{font-size:0;max-height:22px;overflow:hidden}.osh-partnership:after,.osh-partnership:before{content:" ";display:table}.osh-partnership:after{clear:both}.partner-logo{height:22px}body header{background:#fff}body header.header-main-wrapper{border-bottom:1px solid #e9e9e9}.header-top:after,.header-top:before{content:" ";display:table}.header-top:after{clear:both}.header-top>.customer-care,.header-top>.order-tracking{float:right}.header-main{padding:15px 0;height:40px;display:table}.header-main:after,.header-main:before{content:" ";display:table}.header-main:after{clear:both}.header-main>.menu{float:left;margin-right:10px}.header-main>.logo{float:left;margin-right:35px}.header-main>.logo.hasSpecialLogo{background-image:none}.header-main>.logo>a>img{max-width:180px;max-height:40px}.header-main>.actions{float:right;margin-left:20px}.header-main>.actions>.osh-dropdown{float:right}.header-main>.actions>.osh-dropdown .label{display:block}.osh-ventures-bar{min-height:34px}.osh-ventures-bar>.osh-container{position:relative}.osh-ventures-logos{list-style:none;display:inline-block;max-width:66.66667%}.osh-ventures-logos>.logo{display:table-cell}.osh-lang-switcher{position:absolute;top:10px;right:0;text-align:right;width:110px}.osh-lang-switcher .osh-lang-list{display:none}@media (min-width:0) and (max-width:1199px){.osh-ventures-bar .osh-partnership{width:20%}.osh-ventures-logos{max-width:60%}}.osh-btn{text-transform:uppercase;background:#f68b1e;border:1px solid #f68b1e;color:#fff;cursor:pointer;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:700;font-size:12px;font-style:normal;line-height:1.42857;padding:5px;position:relative;vertical-align:middle;text-decoration:none;text-align:center}.osh-btn:hover{background:#f17e0a;border-color:#f17e0a;color:#fff}.osh-btn>.additional-content,.osh-btn>.label,.osh-btn>.sub-label,.osh-btn>i{display:inline-block;vertical-align:middle;line-height:1.42857}.osh-btn.active,.osh-btn:active,.osh-btn:focus,.osh-btn:focus:active{outline:0;box-shadow:none}.osh-btn.-disabled{background-color:#fcd3a7;border-color:#fcd3a7}.osh-btn.-default{font-weight:700;color:#fff;background-color:#dcdcdc;border-color:#dcdcdc}.osh-btn.-default:active,.osh-btn.-default:focus,.osh-btn.-default:hover{color:inherit;background-color:#c3c3c3;border-color:#c3c3c3}.osh-btn.-primary:disabled{background-color:#fcd3a7;border-color:#fcd3a7}.osh-btn.-select-box{background:#fff;color:#000;border-color:#e2e2e2;text-transform:capitalize;text-align:left;font-weight:400;min-width:145px;padding-left:10px;padding-right:30px}.osh-btn.-select-box>.caret{position:absolute;right:10px;top:8px}.osh-btn.-blue{font-weight:700;color:#fff;background-color:#416998;border-color:#416998;padding:5px 20px}.osh-btn.-blue:active,.osh-btn.-blue:focus,.osh-btn.-blue:hover{color:#fff;background-color:#325074;border-color:#325074}a.osh-btn{color:#fff}.osh-btn.-no_bg_primary{background:#fff;border-color:#f68b1e;color:#f68b1e;font-weight:400}.osh-btn.-no_bg_primary:active,.osh-btn.-no_bg_primary:focus,.osh-btn.-no_bg_primary:hover{color:#d87109;border-color:#d87109}.osh-btn.-no_bg_secondary{background:#f2f2f2;border-color:#fff;color:gray;font-weight:400}.osh-btn.-no_bg_secondary:active,.osh-btn.-no_bg_secondary:focus,.osh-btn.-no_bg_secondary:hover{color:#676767;background:#d9d9d9}.osh-btn.-secondary{text-transform:uppercase;background:#b3b3b3;border:1px solid #b3b3b3;color:#fff;cursor:pointer;display:inline-block;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:700;font-size:12px;font-style:normal;line-height:1.42857;padding:5px;position:relative;vertical-align:middle;text-decoration:none;text-align:center;font-weight:700}.osh-btn.-secondary:hover{background:#a6a6a6;border-color:#a6a6a6;color:#fff}.osh-btn.-secondary>.additional-content,.osh-btn.-secondary>.label,.osh-btn.-secondary>.sub-label,.osh-btn.-secondary>i{display:inline-block;vertical-align:middle;line-height:1.42857}.osh-btn.-secondary.active,.osh-btn.-secondary:active,.osh-btn.-secondary:focus,.osh-btn.-secondary:focus:active{outline:0;box-shadow:none}.osh-btn.-plain{padding-left:0;padding-right:0;background-color:transparent;color:#6e6e6e;border:none;font-size:14px;font-weight:500;line-height:15px;text-transform:capitalize;text-align:left}.osh-btn.-plain>.label,.osh-btn.-plain>.sub-label{line-height:inherit;vertical-align:initial}.osh-btn.-plain>.sub-label{color:#000;font-weight:700}.osh-btn.-plain.-cart>.label{font-size:12px;line-height:1.1em;background:#f99047;padding:2px;border:2px solid #fff;border-radius:50%;position:absolute;top:-1px;left:13px;color:#fff;min-width:22px;min-height:22px;font-weight:700;text-align:center;letter-spacing:-1px;text-indent:-1px}.osh-btn.-plain.-cart>.label:empty{display:none}.osh-btn.-plain.-cart .osh-font-cart{width:30px;height:30px;line-height:30px;font-size:30px;color:#1b1919;vertical-align:bottom}.osh-btn.-link{background:0 0;border:0;text-transform:none;font-weight:400;color:#406997;padding:5px}@media screen and (-webkit-min-device-pixel-ratio:0){.osh-btn.-plain.-cart>.label{line-height:1.2em}}.osh-btn.-social-media{font-size:16px;border:1px solid #3b5998}.osh-btn.-social-media.-disabled{opacity:.5}.osh-btn.-social-media.-facebook{background-color:#3b5998}.osh-btn.-social-media.-google-plus{background-color:#e06b64}.osh-btn.-radius{border-radius:3px}.osh-btn.-expander{height:30px;font-weight:500;font-size:12px;color:#000;background-color:#f8f8f8;border:1px solid #f8f8f8;padding:0 20px;display:block;position:relative;margin:auto}.osh-btn.-expander>i:nth-child(1){font-size:12px;color:#d3d3d3;padding-right:10px}.osh-btn.-expander.-left{margin-right:auto;margin-left:0}.osh-btn.-expander.-right{margin-left:auto;margin-right:0}.force-hidden{display:none!important}.osh-btn.-transparent{background-color:transparent;border:none;color:#6e6e6e}.osh-btn.-transparent span{font-weight:400}.osh-btn.-white-primary{background-color:#fff;border:1px solid #fff;color:#f68b1e}.osh-btn.-shadow,.osh-btn.-shadow.active,.osh-btn.-shadow:active,.osh-btn.-shadow:focus,.osh-btn.-shadow:focus:active{box-shadow:0 2px 8px 0 rgba(0,0,0,.15)}.osh-dropdown{position:relative}.osh-dropdown:first-child{margin-right:0}.osh-dropdown>.toggle{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0;overflow:hidden;margin-left:15px;margin-right:0;position:relative;z-index:210}.osh-dropdown>.toggle>.osh-btn>.caret{margin-left:3px;vertical-align:middle;font-size:8px;color:#000}.osh-dropdown>.toggle-content{display:none}.osh-search-bar{position:relative;height:40px;width:100%}.osh-search-bar>input{height:100%;padding:0 25px}.osh-search-bar>.field-panel{overflow:hidden;display:block;position:relative;z-index:350}.osh-search-bar>.field-panel>.osh-icon{position:absolute;left:5px;top:10px;z-index:1}.osh-search-bar>.field-panel>.field{padding:0 15px;border:0 none;background-color:#f5f5f5;color:#606060;height:40px;width:100%;font-size:14px}.osh-search-bar>.field-panel>.field:focus{outline:0}.osh-search-bar>.field-panel>.field::-ms-clear{display:none}.osh-search-bar>.action{float:right;font-size:14px;font-weight:700;padding:0 20px}.menu{position:relative}.menu>.menu-items{margin:0;padding:0;list-style:none}.menu>.menu-items>.menu-item{display:table;height:29px;width:100%}.menu>.menu-items>.menu-item>.main-category{position:relative;display:table-cell;padding-top:0;padding-bottom:0;padding-left:0;padding-right:5px;vertical-align:middle;font-size:11px;text-transform:uppercase}.menu>.menu-items>.menu-item>.main-category.defaultCursor{cursor:default}.menu.-flyout{z-index:1000}.menu.-flyout>.menu-items{position:absolute}.menu.-flyout>.navAllCat{display:block;position:relative;padding:10px 0;text-transform:uppercase;color:#000;width:20px;height:20px}.menu.-flyout>.navAllCat>.title{display:none}.menu.-flyout>.menu-items{left:0;top:55px;width:195px;height:355px;padding:3px 0 2px;border:1px solid #ddd;background-color:#fff}.menu.-flyout>.menu-items>.menu-item>.main-category{padding-left:8px}.menu.-flyout>.menu-items>.menu-item>.main-category>.nav-subTxt{padding-left:22px}.menu.-flyout>.menu-items .navLayerWrapper{display:none}.menu.-flyout>.menu-items .submenu{position:absolute}.list.-sizes{margin:0 0 10px 0;text-align:center;font-size:0}.list.-sizes>.sku-size{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0;font-size:10px;line-height:20px;background:#fff;border:1px solid #e9e9e9;color:grey;display:inline-block;min-width:25px;padding:0 5px;margin-top:0;margin-bottom:3px;margin-right:3px;cursor:pointer;text-transform:uppercase;text-align:center}.list.-sizes>.sku-size:hover:not(.-inactive):not(.-selected){color:#cfcfcf;border-color:#cfcfcf}.list.-sizes>.sku-size.hidden{display:none}.list.-sizes>.sku-size.-selected{border-color:#000;color:#000;cursor:default}.list.-sizes>.sku-size.-inactive{color:#e9e9e9;cursor:default;text-decoration:line-through}.list.-sizes>.title{font-size:10px;line-height:14px;font-weight:500;color:#404040;text-transform:capitalize}.list.-sizes>.description{font-size:12px;line-height:16px;color:#404040;margin-bottom:15px}.list.-sizes>.osh-msg-box{font-size:10px;line-height:20px}.status-txt-wrapper{background-color:rgba(255,255,255,.7);position:absolute;z-index:9;top:0;left:0;right:0;bottom:0;text-align:center}.status-txt-wrapper::before{content:" ";display:inline-block;height:100%;vertical-align:middle}.status-txt-wrapper>.status-txt{display:inline-block;text-transform:uppercase;max-width:85%;color:#565656;font-size:1.2rem;line-height:2rem;text-align:center;background-color:#fff;padding:.1em .5em;border:1px solid #e5e5e5;vertical-align:middle}.status-txt-wrapper.-big>.status-txt{font-size:1.8rem;line-height:3rem}.products:not(.-mabaya):after,.products:not(.-mabaya):before{content:" ";display:table}.products:not(.-mabaya):after{clear:both}.products:not(.-mabaya) .sku.-gallery{width:22.22737%;float:left}.products:not(.-mabaya) .sku.-gallery:nth-child(4n+1){margin-left:0;margin-right:-100%;clear:both;margin-left:0}.products:not(.-mabaya) .sku.-gallery:nth-child(4n+2){margin-left:25.92421%;margin-right:-100%;clear:none}.products:not(.-mabaya) .sku.-gallery:nth-child(4n+3){margin-left:51.84842%;margin-right:-100%;clear:none}.products:not(.-mabaya) .sku.-gallery:nth-child(4n+4){margin-left:77.77263%;margin-right:-100%;clear:none}.products.-mabaya{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.products.-mabaya .sku.-gallery{-ms-flex-preferred-size:210px;flex-basis:210px}.products .sku{margin-top:15px;margin-bottom:15px}.sku{height:383px;position:relative}.sku:hover{z-index:99}.sku>.link>.list.-sizes{display:none;margin-top:10px}.sku>.link:hover>.list.-sizes{display:block}body.-vertical-fashion .sku{height:395px}body.-vertical-fashion .sku>.link>.-sizes{display:none}.sku>.link{background-color:#fff;display:block;position:absolute;top:0;left:-10px;width:230px;padding:10px}.sku>.link:after,.sku>.link:before{content:" ";display:table}.sku>.link:after{clear:both}.sku>.link>.image-wrapper{margin-top:19px;position:relative;width:210px;height:210px}.sku>.link>.image-wrapper .image{width:210px;height:210px;max-width:100%}.sku>.link>.title{margin:0;padding:0}.sku>.link>.title>.brand{display:block;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;font-size:11px;line-height:15px;color:#404040;border-bottom:1px solid #e9e9e9;margin:4px 0;padding-bottom:4px}.sku>.link>.title>.name{display:block;font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:500;font-size:13px;line-height:17px;color:#000;margin:3px 0 5px 0;text-align:left;white-space:normal;overflow:hidden;text-overflow:-o-ellipsis-lastline;text-overflow:ellipsis;display:block;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:2.824em}.sku>.link>.price-container>.price-box{display:block;margin-bottom:3px;white-space:normal}.sku>.link>.price-container>.price-box>.price{font-family:Roboto,Helvetica,Arial,sans-serif;font-weight:400;font-size:13px;line-height:17px;color:#202020;display:inline-block}.sku>.link>.price-container>.price-box>.price.-old{display:inline-block;color:#606060;font-size:9px;font-weight:400;text-decoration:line-through}.sku>.link>.price-container>.price-box>.price.-old.-no-special{display:none}.sku>.link>.price-container>.price-box>.free-shipping{display:block}.sku>.link>.additional-offers{font-size:10px;line-height:14px;color:#404040;margin-bottom:3px}.sku>.link .more-images{display:none;font-size:0;text-align:center;position:relative;margin:15px auto}.sku>.link .more-images img{width:42px;height:52px;display:inline-block;margin:1px}.sku>.link .more-images img:hover{box-shadow:0 0 0 1px #cfcfcf}.sku>.link .slideshow{margin:0 auto}.sku>.link .slideshow>.cycle-carousel-wrap{padding:2px 0;direction:ltr}.sku>.link .slider-controller .next,.sku>.link .slider-controller .prev{font-size:13px;line-height:17px;position:absolute;top:0;color:#404040}.sku>.link .slider-controller .next:hover,.sku>.link .slider-controller .prev:hover{color:#cfcfcf}.sku>.link .slider-controller .next.disabled>i,.sku>.link .slider-controller .prev.disabled>i{visibility:hidden}.sku>.link .slider-controller .prev{left:0}.sku>.link .slider-controller .next{right:0}.sku>.link .slider-controller [class^=osh-font]{font-size:10px;line-height:52px}.sku>.link>.new-flag{font-size:10px;line-height:14px;font-weight:500;position:absolute;z-index:9;width:210px;color:#aaa;text-transform:uppercase;display:block;border-bottom:3px solid #aaa}.sku>.link>.shipped-overseas-flag{font-size:10px;line-height:14px;font-weight:500;position:absolute;z-index:9;width:210px;color:#0a58a6;text-transform:uppercase;display:block;border-bottom:3px solid #0a58a6}.sku>.link>.price-container>.sale-flag-percent{border:2px solid #f68b1e;color:#f68b1e;float:right;font-size:12px;line-height:12px;font-weight:700;padding:3px 4px;margin-left:10px}.sku>.link>.osh-btn{display:none;padding-left:20px;padding-right:20px;margin-top:20px;margin-right:auto;margin-bottom:20px;margin-left:auto}.sku>.link>.feature{font-size:11px;line-height:16px;color:#202020;display:block;position:relative;padding-left:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sku>.link>.feature::before{position:absolute;content:">";top:0;left:0}.sku>.link>.-notif-add-cart{width:210px}.top-badge{position:absolute;margin-top:-5px}.sku.-has-offers>.link>.price-container>.price-box{margin-bottom:0;white-space:normal}.sku.-gallery>.link:hover{box-shadow:0 0 0 2px #e5e5e5}.sku.-gallery>.link:hover>.osh-btn{display:block}.sku.-gallery>.link:hover>.name{text-overflow:clip;display:block;-webkit-line-clamp:0;-webkit-box-orient:horizontal;max-height:none}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery,body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery{width:17.9503%;float:left}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery:nth-child(5n+1),body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery:nth-child(5n+1){margin-left:0;margin-right:-100%;clear:both;margin-left:0}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery:nth-child(5n+2),body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery:nth-child(5n+2){margin-left:20.51243%;margin-right:-100%;clear:none}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery:nth-child(5n+3),body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery:nth-child(5n+3){margin-left:41.02485%;margin-right:-100%;clear:none}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery:nth-child(5n+4),body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery:nth-child(5n+4){margin-left:61.53728%;margin-right:-100%;clear:none}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery:nth-child(5n+5),body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery:nth-child(5n+5){margin-left:82.0497%;margin-right:-100%;clear:none}@media (min-width:0) and (max-width:1199px){.products:not(.-mabaya) .sku.-gallery{width:28%;float:left}.products:not(.-mabaya) .sku.-gallery:nth-child(3n+1){margin-left:0;margin-right:-100%;clear:both;margin-left:0}.products:not(.-mabaya) .sku.-gallery:nth-child(3n+2){margin-left:36%;margin-right:-100%;clear:none}.products:not(.-mabaya) .sku.-gallery:nth-child(3n+3){margin-left:72%;margin-right:-100%;clear:none}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery,body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery{width:21.54041%;float:left}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery:nth-child(4n+1),body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery:nth-child(4n+1){margin-left:0;margin-right:-100%;clear:both;margin-left:0}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery:nth-child(4n+2),body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery:nth-child(4n+2){margin-left:26.1532%;margin-right:-100%;clear:none}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery:nth-child(4n+3),body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery:nth-child(4n+3){margin-left:52.30639%;margin-right:-100%;clear:none}body.-no-sidebar .products:not(.-mabaya) .sku.-gallery:nth-child(4n+4),body.-vertical-multistore .products:not(.-mabaya) .sku.-gallery:nth-child(4n+4){margin-left:78.45959%;margin-right:-100%;clear:none}}section.pagination{position:relative;text-align:center;border-top:1px solid #e9e9e9;padding-top:10px;background-color:#fff;margin-top:35px}section.pagination>.osh-pagination{display:inline-block}section.pagination:before{content:"";display:block;position:absolute;top:-11px;border-top:solid 10px #fff;width:100%}.osh-breadcrumb{padding:10px 0;height:50px;line-height:30px}.osh-breadcrumb>ul{padding:0;margin-bottom:0}.osh-breadcrumb>ul>li{display:inline-block;white-space:nowrap;list-style:none}.osh-breadcrumb>ul>li span,.osh-breadcrumb>ul>li>a{color:grey}.osh-breadcrumb>ul>li:before{content:">";font-size:.8rem;padding-left:5px;padding-right:8px}.osh-breadcrumb>ul>li:first-child:before{content:"";padding:0}.osh-breadcrumb>ul>li:first-child.last-child+.osh-breadcrumb-search{display:none}.osh-breadcrumb>ul>li.last-child:not(:first-child){max-width:280px;text-overflow:ellipsis;vertical-align:middle;overflow:hidden}.osh-breadcrumb>ul>li.-cat-brand span,.osh-breadcrumb>ul>li.-cat-brand>a,.osh-breadcrumb>ul>li.last-child span,.osh-breadcrumb>ul>li.last-child>a{color:#202020;font-weight:700}.osh-breadcrumb>ul>li.-cat-brand.-brand:before,.osh-breadcrumb>ul>li.last-child.-brand:before{content:":"}.osh-breadcrumb>ul>li.osh-breadcrumb-search{position:relative}.osh-breadcrumb>ul>li.osh-breadcrumb-search:before{padding-left:7px;padding-right:10px}.osh-breadcrumb>ul>li.osh-breadcrumb-search>input{width:180px;height:30px;border:1px solid #e9e9e9;padding-right:25px;padding-left:10px}.osh-breadcrumb>ul>li.osh-breadcrumb-search>i{position:absolute;font-size:12px;right:7px;transform:scaleX(-1)}.status-txt-wrapper{background-color:rgba(255,255,255,.7);position:absolute;z-index:9;top:0;left:0;right:0;bottom:0;text-align:center}.status-txt-wrapper::before{content:" ";display:inline-block;height:100%;vertical-align:middle}.status-txt-wrapper>.status-txt{display:inline-block;text-transform:uppercase;max-width:85%;color:#565656;font-size:1.2rem;line-height:2rem;text-align:center;background-color:#fff;padding:.1em .5em;border:1px solid #e5e5e5;vertical-align:middle}.status-txt-wrapper.-big>.status-txt{font-size:1.8rem;line-height:3rem}#fashionMenu{background-color:#000}#fashionMenu .osh-container{position:relative}#fashionMenu .osh-container .defaultCursor{cursor:default}#fashionMenu .osh-container ul{list-style:none;margin:0;padding:0}#fashionMenu .osh-container>.menuWrapper{float:left;width:100%}#fashionMenu .osh-container>.menuWrapper>.category,#fashionMenu .osh-container>.menuWrapper>.special{display:block;padding:0 20px;color:#fff}#fashionMenu .osh-container>.menuWrapper>.category>span,#fashionMenu .osh-container>.menuWrapper>.special>span{font-size:14px;line-height:30px;font-weight:500;text-transform:uppercase}#fashionMenu .osh-container>.menuWrapper>.category>span.highlight,#fashionMenu .osh-container>.menuWrapper>.special>span.highlight{color:#f68b1e}#fashionMenu .osh-container>.menuWrapper>.category>i,#fashionMenu .osh-container>.menuWrapper>.special>i{margin-left:5px;font-size:8px}#fashionMenu .osh-container>.menuWrapper>.category{float:left}#fashionMenu .osh-container>.menuWrapper>.special{float:right}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu{float:left}#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu{float:right}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper{display:none;position:absolute;left:0;right:0;padding:15px 10px 15px;border:1px solid #e6e6e6;border-top:none;background-color:#fff;z-index:999}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu{width:180px;padding:5px 15px}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuHeader,#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuLink,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuHeader,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuLink{display:block;max-width:180px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuHeader,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuHeader{height:26px;line-height:26px;font-size:12px}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuHeader>a,#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuHeader>span,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuHeader>a,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuHeader>span{color:#000}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuHeader>a:hover,#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuHeader>span:hover,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuHeader>a:hover,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuHeader>span:hover{color:#f68b1e}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuLink,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuLink{height:20px;line-height:20px;font-size:11px;padding-left:10px}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuLink>a,#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuLink>span,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuLink>a,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuLink>span{color:#666}#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuLink>a:hover,#fashionMenu .osh-container>.menuWrapper>.category>.subMenuWrapper>.subMenu>.subMenuLink>span:hover,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuLink>a:hover,#fashionMenu .osh-container>.menuWrapper>.special>.subMenuWrapper>.subMenu>.subMenuLink>span:hover{color:#f68b1e}#fashionMenu .osh-container>.menuWrapper>.category:hover,#fashionMenu .osh-container>.menuWrapper>.special:hover{background-color:#fff;color:#000}#fashionMenu .osh-container>.menuWrapper>.category:hover>.subMenuWrapper,#fashionMenu .osh-container>.menuWrapper>.special:hover>.subMenuWrapper{display:block}.osh-tabs>.tabs-list{list-style:none;margin:0;padding:0;line-height:17px}.osh-tabs>.tabs-list:after,.osh-tabs>.tabs-list:before{content:" ";display:table}.osh-tabs>.tabs-list:after{clear:both}.osh-tabs>.tabs-list>.tab>a{display:block;text-decoration:none;outline:0}.osh-tabs>.tab-content{display:none}.osh-tabs>.tab-content:after,.osh-tabs>.tab-content:before{content:" ";display:table}.osh-tabs>.tab-content:after{clear:both}.osh-tabs>.tab-content.-active{display:block}.osh-tabs.-default>.tabs-list{font-size:12px}.osh-tabs.-default>.tabs-list>.tab{float:left;text-transform:uppercase}.osh-tabs.-default>.tabs-list>.tab>a{height:33px;padding:9px 20px 6px 20px}.social_sharing--btn{font-size:20px;color:#b8b8b8;cursor:pointer}.social_sharing--btn-facebook:hover{color:#3b5998}.social_sharing--btn-twitter:hover{color:#4099ff}.social_sharing--btn-google:hover{color:#d34836}.social_sharing--btn-mail:hover{color:#6a6a6a}.badge-seller_score{position:relative;width:14px;height:12px;color:#fff;display:inline-block;margin-left:5px;margin-top:-3px}.badge-seller_score:after{content:'';display:block;width:0;border-left:7px solid transparent;border-right:7px solid transparent;border-top:5px solid transparent;position:absolute;bottom:-5px}.badge-seller_score.-gold{background:#ffdc2e}.badge-seller_score.-gold:after{border-top-color:#ffdc2e}.badge-seller_score.-secondary{background:#416998}.badge-seller_score.-secondary:after{border-top-color:#416998}.badge--icon-seller_score{font-size:10px;line-height:14px;position:absolute;top:0;left:0;right:0;bottom:0;text-align:center}.list.-features>.title{font-size:13px;line-height:17px;font-weight:500;color:#404040;margin-top:0;margin-bottom:0}.list.-features>.link{font-size:12px;line-height:16px;float:right;color:#416998}.list.-features>.link:hover{text-decoration:underline}.list.-features>ul{list-style:none;margin:0;padding:0}.list.-features>ul:after,.list.-features>ul:before{content:" ";display:table}.list.-features>ul:after{clear:both}.list.-features>ul>li{font-size:12px;line-height:16px;color:grey;display:block;position:relative;margin-top:3px;padding-left:8px}.list.-features>ul>li::before{position:absolute;content:">";top:0;left:0}.list.-features.-compact>ul>li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.list.-sizes{margin:0;text-align:left;font-size:0}.list.-sizes>.sku-size{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0;font-size:12px;line-height:22px;background:#fff;border:1px solid #e9e9e9;color:grey;display:inline-block;min-width:25px;padding:0 5px;margin-top:0;margin-bottom:5px;margin-right:5px;cursor:pointer;text-transform:uppercase;text-align:center}.list.-sizes>.sku-size:hover:not(.-inactive):not(.-selected){color:#cfcfcf;border-color:#cfcfcf}.list.-sizes>.sku-size.hidden{display:none}.list.-sizes>.sku-size.-selected{border-color:#000;color:#000;cursor:default}.list.-sizes>.sku-size.-inactive{color:#e9e9e9;cursor:default;text-decoration:line-through}.list.-sizes>.title{font-size:13px;line-height:17px;font-weight:500;color:#404040;text-transform:capitalize}.list.-sizes>.description{font-size:12px;line-height:16px;color:#404040;margin-bottom:15px}.list.-sizes>.osh-msg-box{font-size:12px;line-height:22px}.detail-features>.sizes,.osh-variations,.shop-express-free-shipping,.sku-detail>.details-wrapper>.details .list.-features.-compact,.sku-detail>.details-wrapper>.details>.detail-shop-in-shop,.sku-detail>.details-wrapper>.details>.details-footer{clear:both;border-top:1px solid #e9e9e9;padding:10px 0 0 0;margin:0 0 10px}body{background-color:#fff}body>main>section{margin-bottom:30px}.osh-breadcrumb{border-bottom:1px solid #e9e9e9}.osh-breadcrumb .osh-breadcrumb-search{display:none}.menu.-flyout>.menu-items{display:none}.sku-detail{margin-top:15px}.sku-detail:after,.sku-detail:before{content:" ";display:table}.sku-detail:after{clear:both}.sku-detail>.media{width:37.5%;float:left}.sku-detail>.details-wrapper{width:62.5%;float:right;margin-right:0;min-height:370px;position:relative}.sku-detail>.details-wrapper>.details{width:440px;position:relative}.-vertical-fashion .sku-detail{width:100%}.-vertical-fashion .sku-detail>.media{width:60%;float:left}.-vertical-fashion .sku-detail>.media>.thumbs-wrapper{margin-right:124px}.-vertical-fashion .sku-detail>.media>.product-preview>img{width:408px;height:408px}.-vertical-fashion .sku-detail>.media>.product-preview>.product-magnifier{width:263px;height:263px}.-vertical-fashion .sku-detail>.media>.product-zoom{left:730px;background-color:#fff;background-repeat:no-repeat}.-vertical-fashion .sku-detail .details-wrapper{width:440px;float:right}.-vertical-fashion .sku-detail .details-wrapper>.details{min-height:auto}.-vertical-fashion .sku-detail .details-wrapper>.details,.-vertical-fashion .sku-detail .details-wrapper>.seller{clear:both;width:100%;position:relative;display:block}.-vertical-fashion .sku-detail .details-wrapper>.details:after,.-vertical-fashion .sku-detail .details-wrapper>.details:before,.-vertical-fashion .sku-detail .details-wrapper>.seller:after,.-vertical-fashion .sku-detail .details-wrapper>.seller:before{content:" ";display:table}.-vertical-fashion .sku-detail .details-wrapper>.details:after,.-vertical-fashion .sku-detail .details-wrapper>.seller:after{clear:both}.-vertical-fashion .sku-detail .details-wrapper>.seller{padding-top:25px}.-vertical-fashion .sku-detail .details-wrapper>.seller:not(.-global) .card-desktop>.characteristic{width:33%;padding:5px 0}.-vertical-fashion .sku-detail .details-wrapper>.seller:not(.-global) .card-desktop>.characteristic>.description{padding-right:10px}.-vertical-fashion .sku-detail .details-wrapper>.seller.-global .card-desktop>.characteristic{padding:0;padding-left:10px;width:100%}.-vertical-fashion .sku-detail .details-wrapper>.seller.-global .card-desktop>.characteristic>.description{padding-right:0}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info{display:table;width:100%;margin:0;height:auto}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data{display:block;line-height:20px;text-align:center;vertical-align:middle}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score{display:inline-block;padding:0;margin-top:0;margin-bottom:0;margin-right:0;margin-left:10px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div:first-child,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name:first-child,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score:first-child{margin-left:0}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div .seller_score--mention,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name .seller_score--mention,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score .seller_score--mention{display:inline-block}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div .seller_score--score_container,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name .seller_score--score_container,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score .seller_score--score_container{display:inline-block}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data .seller-name>span{display:inline-block}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery{display:table;margin-bottom:0;margin-left:auto;margin-right:auto}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty{display:table-row}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-description,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-label,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-description,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-label{display:table-cell}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-label,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-label{line-height:23px;white-space:nowrap}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-description,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-description{text-align:left;padding-left:20px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop{display:table;width:100%;margin-top:15px;padding-left:10px;padding-right:10px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop>.characteristic{float:left}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop>.characteristic>.iconography{width:30px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop>.characteristic>.iconography>i{font-size:30px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop>.characteristic>.description{word-break:break-word}.-vertical-fashion .sku-detail .details-wrapper>.details>.detail-features{min-height:auto}.sku-detail>.details-wrapper>.seller{width:247px;position:absolute;right:0;top:0;display:table}.sku-detail>.details-wrapper>.seller.-global .card-desktop>.title{margin:10px 0;font-weight:700;text-transform:initial;font-size:12px;text-align:center}.sku-detail>.details-wrapper>.seller.-global .card-desktop>.title>i{color:#000;vertical-align:middle}.sku-detail>.details-wrapper>.seller.-global .card-desktop>.title>i:first-child{font-size:24px;color:#416998;padding-right:5px}.sku-detail>.details-wrapper>.seller.-global .card-desktop>.title>i.osh-font-question{padding-left:5px}.sku-detail>.details-wrapper>.seller.-global .card-desktop>.characteristic{padding:0}.sku-detail>.details-wrapper>.seller.-global .card-desktop>.characteristic>.description>.title{font-weight:500;margin-top:10px;color:#f68b1e;position:relative}.sku-detail>.details-wrapper>.seller.-global .card-desktop>.characteristic>.description>.title:before{content:'\2022';position:absolute;left:-10px;top:0}.sku-detail>.details-wrapper>.seller.-global .seller-delivery>.-delivery,.sku-detail>.details-wrapper>.seller.-global .seller-delivery>.-warranty{color:#f68b1e;font-weight:500}.sku-detail>.details-wrapper>.seller>.seller-info{display:table-cell;padding:10px 0;list-style-type:none;text-align:center;font-size:13px;border:1px solid #d3d3d3;background-color:#f8f8f8;color:#000;position:relative;height:166px;vertical-align:middle}.sku-detail>.details-wrapper>.seller>.seller-info .seller-name{padding:0 25px}.sku-detail>.details-wrapper>.seller>.seller-info .seller-name>.-name{font-weight:700}.sku-detail>.details-wrapper>.seller>.seller-info>li>ul{list-style:none;padding:0}.sku-detail>.details-wrapper>.seller>.seller-info .shop_express--logo{display:block}.-vertical-fashion .sku-detail>.details-wrapper>.seller>.seller-info .shop_express--logo{margin-bottom:0}.sku-detail>.details-wrapper>.seller>.seller-info .seller-score{margin:10px 0}.sku-detail>.details-wrapper>.seller>.seller-info .seller-score .seller_score--mention{display:inline-block}.sku-detail>.details-wrapper>.seller>.seller-info .seller-score .seller_score--score_container{display:inline-block}.sku-detail>.details-wrapper>.seller>.seller-info>.seller-rating{margin-bottom:20px}.sku-detail>.details-wrapper>.seller>.seller-info>.seller-rating>.-rating{color:#fff;background-color:#b0d57b;padding:8px 20px;font-weight:700;display:inline-block}.sku-detail>.details-wrapper>.seller>.seller-info>.seller-delivery{margin-top:10px;font-size:12px;padding:0 5px}.sku-detail>.details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery{margin-bottom:5px}.sku-detail>.details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>span{overflow:hidden;text-overflow:-o-ellipsis-lastline;text-overflow:ellipsis;display:block;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:2.824em}.sku-detail>.details-wrapper>.seller>.seller-info>.seller-delivery .-label{color:grey}.sku-detail>.details-wrapper>.seller>.seller-info span{display:block}.sku-detail>.details-wrapper>.seller>.seller-info span.shop_express--logo{display:inline-block}.sku-detail>.details-wrapper>.seller>.seller-info .-seller_score,.sku-detail>.details-wrapper>.seller>.seller-info .-seller_score-label{display:inline-block}.osh-variations{clear:both;padding-bottom:5px}.osh-variations>.title{display:block;padding:0 0 10px;font-size:13px;color:#404040;font-weight:500}.osh-variations>.variations-slide{position:relative}.osh-variations>.variations-slide>#js-variations-slide{width:auto!important}.osh-variations>.variations-slide>.next,.osh-variations>.variations-slide>.prev{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0;font-size:18px;color:#606060;cursor:pointer;position:absolute;top:20px}.osh-variations>.variations-slide>.next:hover,.osh-variations>.variations-slide>.prev:hover{color:#000}.osh-variations>.variations-slide>.next.disabled,.osh-variations>.variations-slide>.prev.disabled{color:#e9e9e9}.osh-variations>.variations-slide>.prev{left:0}.osh-variations>.variations-slide>.next{right:0}.osh-variations>.variations-slide>.prev+#js-variations-slide{margin:0 21px}.osh-variations>.variations-slide .cycle-carousel-wrap{direction:ltr}.osh-variations>.variations-slide .cycle-slide-item{width:64px;height:64px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0;padding:1px;border:none 0;margin-right:10px;cursor:pointer;text-align:center}.osh-variations>.variations-slide .cycle-slide-item:hover{border:solid 1px #e9e9e9}.osh-variations>.variations-slide .cycle-slide-item.-selected{border:solid 1px #e9e9e9;cursor:default;pointer-events:none}.osh-variations>.variations-slide .cycle-slide-item:last-child{margin-right:0}.sku-detail>.details-wrapper>.seller>.card-desktop{border:1px solid #d3d3d3;background-color:#f8f8f8;display:table-caption;padding:10px 20px;margin-bottom:15px}.sku-detail>.details-wrapper>.seller>.card-desktop:after,.sku-detail>.details-wrapper>.seller>.card-desktop:before{content:" ";display:table}.sku-detail>.details-wrapper>.seller>.card-desktop:after{clear:both}.sku-detail>.details-wrapper>.seller>.card-desktop>.characteristic>.iconography{width:45px;padding-right:15px}.sku-detail>.details-wrapper>.seller>.card-desktop>.characteristic>.iconography>i{color:#3e6a95;font-size:40px;line-height:1;vertical-align:middle}.sku-detail>.details-wrapper>.seller>.card-desktop>.characteristic>.description>.title{text-overflow:clip;overflow:visible;white-space:normal;font-size:12px;line-height:16px;font-weight:400;text-transform:none;color:#000;max-width:none}.sku-detail>.media{position:relative}.sku-detail>.media>.thumbs-wrapper{width:65px;max-height:400px;overflow-y:hidden;position:relative;display:inline-block;vertical-align:middle;margin-right:22px}.sku-detail>.media>.thumbs-wrapper .cycle-slide-item{border:2px solid transparent}.sku-detail>.media>.thumbs-wrapper .cycle-slide-item:focus{outline:0}.sku-detail>.media>.thumbs-wrapper .cycle-slide-item:hover{border-color:#e9e9e9;cursor:pointer}.sku-detail>.media>.thumbs-wrapper .caret{display:block;text-align:center;color:#606060;font-size:18px;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0}.sku-detail>.media>.thumbs-wrapper .caret.prev{margin-bottom:10px}.sku-detail>.media>.thumbs-wrapper .caret.next{margin-top:10px}.sku-detail>.media>.thumbs-wrapper .caret:hover{color:#000;cursor:pointer}.sku-detail>.media>.thumbs-wrapper .caret.disabled{color:#e9e9e9}.sku-detail>.media>.product-preview{position:relative;display:inline-block;cursor:pointer}.sku-detail>.media>.product-preview>img{width:320px;height:320px}.sku-detail>.media>.product-preview>.product-magnifier{display:none;position:absolute;width:207px;height:207px;opacity:.8;border:1px solid #e9e9e9;background-color:#fff}.sku-detail>.media>.product-zoom{display:none;position:absolute;width:440px;height:440px;top:0;left:439px;z-index:10;border:1px solid #e9e9e9;background-color:#fff;background-repeat:no-repeat}.sku-detail>.details-wrapper>.details>.detail-features{min-height:230px}.sku-detail>.details-wrapper>.details>.detail-features:after,.sku-detail>.details-wrapper>.details>.detail-features:before{content:" ";display:table}.sku-detail>.details-wrapper>.details>.detail-features:after{clear:both}.sku-detail>.details-wrapper>.details>.detail-features>.list.-features.-compact.-no-float>ul>li{float:none;width:98%}.sku-detail>.details-wrapper>.details>.brand{float:right}.sku-detail>.details-wrapper>.details>.brand>img{max-height:40px;margin-left:5px}.sku-detail>.details-wrapper>.details>.title{color:#000;font-size:20px;line-height:24px;margin:0}.sku-detail>.details-wrapper>.details>.sub-title{margin:0;float:left}.sku-detail>.details-wrapper>.details>.sub-title,.sku-detail>.details-wrapper>.details>.sub-title a,.sku-detail>.details-wrapper>.details>.sub-title a:visited{font-size:12px;color:#909090}.sku-detail>.details-wrapper>.details>.sub-title a:hover{text-decoration:underline;color:#369}.sku-detail>.details-wrapper>.details>.sell-yours{margin:0;float:right}.sku-detail>.details-wrapper>.details>.sell-yours>.text{display:inline;color:grey;padding:0 5px;float:left}.sku-detail>.details-wrapper>.details>.sell-yours>a{color:#406997;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0;float:right}.sku-detail>.details-wrapper>.details>.sell-yours>a:hover{text-decoration:underline}.sku-detail>.details-wrapper>.details>.detail-shop-in-shop{margin-bottom:0;padding:7px 0;color:#000}.sku-detail>.details-wrapper>.details>.detail-shop-in-shop:after,.sku-detail>.details-wrapper>.details>.detail-shop-in-shop:before{content:" ";display:table}.sku-detail>.details-wrapper>.details>.detail-shop-in-shop:after{clear:both}.sku-detail>.details-wrapper>.details>.detail-shop-in-shop>a>.shop-logo{max-height:26px;margin-right:4px}.sku-detail>.details-wrapper>.details>.detail-shop-in-shop>a>.shop-name{font-size:16px;font-family:"Roboto Medium",Helvetica,Arial,sans-serif;line-height:26px;vertical-align:middle}.sku-detail>.details-wrapper>.details>.detail-shop-in-shop>a>.osh-font-light-arrow-right{font-size:9px;line-height:26px;vertical-align:middle;margin-left:8px}.sku-detail>.details-wrapper>.details>.details-footer{margin-bottom:0}.sku-detail>.details-wrapper>.details>.details-footer:after,.sku-detail>.details-wrapper>.details>.details-footer:before{content:" ";display:table}.sku-detail>.details-wrapper>.details>.details-footer:after{clear:both}.sku-detail>.details-wrapper>.details>.details-footer>.price-box{float:left;width:50%;margin-top:5px}.sku-detail>.details-wrapper>.details>.details-footer>.price-box .price{display:inline-block;color:#000;vertical-align:top;margin-bottom:10px;line-height:1;font-size:20px;font-weight:700}.sku-detail>.details-wrapper>.details>.details-footer>.price-box .price.-no-special{margin-top:12px;margin-bottom:8px}.sku-detail>.details-wrapper>.details>.details-footer>.price-box .price.-old{display:inline-block;padding:3px 0;margin-right:5px;color:gray;text-decoration:line-through;font-size:12px;font-weight:400}.sku-detail>.details-wrapper>.details>.details-footer>.price-box .unit-price{vertical-align:top;margin-top:7px;line-height:1;display:inline-block;color:gray;font-size:12px;font-weight:400}.sku-detail>.details-wrapper>.details>.details-footer>.price-box .unit-price.-no-special{margin-top:18px}.sku-detail>.details-wrapper>.details>.details-footer>.price-box>.free-shipping{width:100%;color:gray;text-align:left;line-height:16px}.sku-detail>.details-wrapper>.details>.details-footer>.price-box>.sale-flag-percent{padding:2px 4px;border:2px solid #f68b1e;color:#f68b1e;font-size:12px;font-weight:700}.sku-detail>.details-wrapper>.details>.details-footer>.more-offers{clear:left;float:left;display:block;position:relative}.sku-detail>.details-wrapper>.details>.details-footer>.more-offers>.link>i{top:50%;transform:translateY(-50%);-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:0;position:absolute;padding-left:5px;font-size:12px}.sku-detail>.details-wrapper>.details>.details-footer>.actions{float:right;text-align:center;max-width:50%;margin-top:5px}.sku-detail>.details-wrapper>.details>.details-footer>.actions>.osh-btn.-default,.sku-detail>.details-wrapper>.details>.details-footer>.actions>.osh-btn.-primary{padding:8px 40px;margin-bottom:10px;font-size:16px;font-weight:700}.sku-detail>.details-wrapper>.details>.details-footer>.actions>.back-in-stock-link{display:block;font-size:12px;outline:0;margin-bottom:5px}.sku-detail>.details-wrapper>.details>.details-footer>.actions .add-to-wishlist{display:block;color:#416998;text-align:center;padding:0;font-weight:400}.sku-detail>.details-wrapper>.details>.details-footer>.actions .add-to-wishlist>i{color:#e9e9e9;margin-right:5px;font-size:22px}.sku-detail>.details-wrapper>.details>.details-footer>.actions .add-to-wishlist.-selected:hover .label,.sku-detail>.details-wrapper>.details>.details-footer>.actions .add-to-wishlist>.label{text-decoration:none;text-transform:none}.sku-detail>.details-wrapper>.details>.details-footer>.actions .add-to-wishlist:hover>.label{text-decoration:underline}.sku-detail>.details-wrapper>.details>.details-footer>.actions .add-to-wishlist.-selected>i,.sku-detail>.details-wrapper>.details>.details-footer>.actions .add-to-wishlist:hover>i{color:#416998}.sku-detail>.details-wrapper>.details>.details-footer>.actions .add-to-wishlist.-selected>.label{color:#b0da7c;padding:2px 5px;border:1px solid #b0da7c}.sku-detail>.details-wrapper>.details>.details-footer>.promotion-content{float:left;width:50%;font-size:14px}.sku-detail>.details-wrapper>.details>.details-footer>.promotion-content .savings{float:left;color:#a3cf62}.sku-detail>.details-wrapper>.details>.details-footer>.promotion-content>*{margin-top:5px;margin-bottom:5px}.osh-container.-notif-add-cart,.osh-container.-notif-add-wishlist{width:100%;word-wrap:break-word}.sku-detail>.details-wrapper>.details .list.-features.-compact{clear:both}.sku-detail>.details-wrapper>.details .list.-features.-compact>ul>li{float:left;width:48%;padding-right:2%}.sku-detail .rating-stars{float:left;cursor:pointer;margin:4px 0 10px 0}.sku-detail .rating-stars>.stars-container{width:92px}.sku-detail .rating-stars>.stars-container::before,.sku-detail .rating-stars>.stars-container>.stars::before{font-size:16px;width:92px}.sku-detail .rating-stars>.js-link-to-reviews{display:inline-block}.sku-detail .rating-stars>.total-ratings.js-sku-ratings-over{color:#000}.sku-detail .rating-stars>.link,.sku-detail .rating-stars>.total-ratings{font-size:12px}.sku-detail .rating-stars>.total-ratings{padding-left:10px;padding-right:10px}.sku-detail .social_sharing{float:right}.detail-features>.sizes{clear:both}.detail-features>.sizes:after,.detail-features>.sizes:before{content:" ";display:table}.detail-features>.sizes:after{clear:both}.detail-features>.sizes.-no-padding{padding:0;margin:0}.detail-features>.sizes.-no-border{border:none}.detail-features>.sizes .title{margin-bottom:5px}.detail-features>.sizes>.-back-in-stock-reminder{padding-top:2px;display:block}.detail-features>.sizes>.-size-guide{float:right;display:block}.detail-features>.sizes>.-size-guide>i,.detail-features>.sizes>.-size-guide>span{vertical-align:middle}.detail-features>.sizes>.-size-guide>i{color:grey;margin-right:3px;margin-top:-3px}.text.-seller_score{font-size:12px;line-height:14px;color:#fff;padding:3px;background:#ea5307;border-radius:5px}.text.-seller_score-label{font-size:12px;line-height:14px;color:grey}.tooltip-icon{font-size:10px;line-height:10px;color:#555}.tooltip_wrapper-seller_score{display:inline-block;text-align:center;line-height:21px}.tooltip_wrapper-seller_score--icon{margin-left:5px}@media (min-width:0) and (max-width:1199px){.-vertical-fashion .sku-detail,.sku-detail{width:100%}.-vertical-fashion .sku-detail>.media,.sku-detail>.media{width:50%;float:left}.-vertical-fashion .sku-detail>.media>.thumbs-wrapper,.sku-detail>.media>.thumbs-wrapper{margin-right:72px}.-vertical-fashion .sku-detail>.media>.product-preview>img,.sku-detail>.media>.product-preview>img{width:320px;height:320px}.-vertical-fashion .sku-detail>.media>.product-preview>.product-magnifier,.sku-detail>.media>.product-preview>.product-magnifier{width:207px;height:207px}.-vertical-fashion .sku-detail>.media>.product-zoom,.sku-detail>.media>.product-zoom{left:535px;background-color:#fff;background-repeat:no-repeat}.-vertical-fashion .sku-detail .details-wrapper,.sku-detail .details-wrapper{width:440px;float:right}.-vertical-fashion .sku-detail .details-wrapper>.details,.sku-detail .details-wrapper>.details{min-height:auto}.-vertical-fashion .sku-detail .details-wrapper>.details,.-vertical-fashion .sku-detail .details-wrapper>.seller,.sku-detail .details-wrapper>.details,.sku-detail .details-wrapper>.seller{clear:both;width:100%;position:relative;display:block}.-vertical-fashion .sku-detail .details-wrapper>.details:after,.-vertical-fashion .sku-detail .details-wrapper>.details:before,.-vertical-fashion .sku-detail .details-wrapper>.seller:after,.-vertical-fashion .sku-detail .details-wrapper>.seller:before,.sku-detail .details-wrapper>.details:after,.sku-detail .details-wrapper>.details:before,.sku-detail .details-wrapper>.seller:after,.sku-detail .details-wrapper>.seller:before{content:" ";display:table}.-vertical-fashion .sku-detail .details-wrapper>.details:after,.-vertical-fashion .sku-detail .details-wrapper>.seller:after,.sku-detail .details-wrapper>.details:after,.sku-detail .details-wrapper>.seller:after{clear:both}.-vertical-fashion .sku-detail .details-wrapper>.seller,.sku-detail .details-wrapper>.seller{padding-top:25px}.-vertical-fashion .sku-detail .details-wrapper>.seller:not(.-global) .card-desktop>.characteristic,.sku-detail .details-wrapper>.seller:not(.-global) .card-desktop>.characteristic{width:33%;padding:5px 0}.-vertical-fashion .sku-detail .details-wrapper>.seller:not(.-global) .card-desktop>.characteristic>.description,.sku-detail .details-wrapper>.seller:not(.-global) .card-desktop>.characteristic>.description{padding-right:10px}.-vertical-fashion .sku-detail .details-wrapper>.seller.-global .card-desktop>.characteristic,.sku-detail .details-wrapper>.seller.-global .card-desktop>.characteristic{padding:0;padding-left:10px;width:100%}.-vertical-fashion .sku-detail .details-wrapper>.seller.-global .card-desktop>.characteristic>.description,.sku-detail .details-wrapper>.seller.-global .card-desktop>.characteristic>.description{padding-right:0}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info,.sku-detail .details-wrapper>.seller>.seller-info{display:table;width:100%;margin:0;height:auto}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data{display:block;line-height:20px;text-align:center;vertical-align:middle}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score{display:inline-block;padding:0;margin-top:0;margin-bottom:0;margin-right:0;margin-left:10px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div:first-child,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name:first-child,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score:first-child,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div:first-child,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name:first-child,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score:first-child{margin-left:0}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div .seller_score--mention,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name .seller_score--mention,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score .seller_score--mention,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div .seller_score--mention,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name .seller_score--mention,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score .seller_score--mention{display:inline-block}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div .seller_score--score_container,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name .seller_score--score_container,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score .seller_score--score_container,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>div .seller_score--score_container,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-name .seller_score--score_container,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data>ul>.seller-score .seller_score--score_container{display:inline-block}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-data .seller-name>span,.sku-detail .details-wrapper>.seller>.seller-info>.seller-data .seller-name>span{display:inline-block}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery{display:table;margin-bottom:0;margin-left:auto;margin-right:auto}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty{display:table-row}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-description,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-label,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-description,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-label,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-description,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-label,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-description,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-label{display:table-cell}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-label,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-label,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-label,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-label{line-height:23px;white-space:nowrap}.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-description,.-vertical-fashion .sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-description,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-delivery>.-description,.sku-detail .details-wrapper>.seller>.seller-info>.seller-delivery>.-warranty>.-description{text-align:left;padding-left:20px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop,.sku-detail .details-wrapper>.seller>.card-desktop{display:table;width:100%;margin-top:15px;padding-left:10px;padding-right:10px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop>.characteristic,.sku-detail .details-wrapper>.seller>.card-desktop>.characteristic{float:left}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop>.characteristic>.iconography,.sku-detail .details-wrapper>.seller>.card-desktop>.characteristic>.iconography{width:30px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop>.characteristic>.iconography>i,.sku-detail .details-wrapper>.seller>.card-desktop>.characteristic>.iconography>i{font-size:30px}.-vertical-fashion .sku-detail .details-wrapper>.seller>.card-desktop>.characteristic>.description,.sku-detail .details-wrapper>.seller>.card-desktop>.characteristic>.description{word-break:break-word}.-vertical-fashion .sku-detail .details-wrapper>.details>.detail-features,.sku-detail .details-wrapper>.details>.detail-features{min-height:auto}}.osh-popup-gallery .mfp-image-holder i.mfp-close{cursor:pointer;right:-50px;font-size:24px}.osh-popup-gallery .mfp-content,.osh-popup-gallery .mfp-content .mfp-figure,.osh-popup-gallery .mfp-content .mfp-figure figure,.osh-popup-gallery .mfp-content .mfp-figure figure img.mfp-img{height:100%;padding:0}.osh-popup-gallery .mfp-content figcaption{display:none}.osh-popup-gallery button.mfp-arrow{background-color:transparent;margin-top:-30px;width:42px;height:42px}.osh-popup-gallery .mfp-a,.osh-popup-gallery .mfp-arrow-left:after,.osh-popup-gallery .mfp-arrow-left:before,.osh-popup-gallery .mfp-arrow-right:after,.osh-popup-gallery .mfp-arrow-right:before,.osh-popup-gallery .mfp-b{border:0;opacity:1}.osh-popup-gallery .mfp-arrow-left{left:-50px}.osh-popup-gallery .mfp-arrow-right{right:-50px}.osh-popup-gallery .mfp-arrow-left>i,.osh-popup-gallery .mfp-arrow-right>i{font-size:30px;color:#fff}.osh-popover-content{display:none}.shipped_overseas_icon{font-size:16px;color:#416998;margin-right:8px}
/*]]>*/
</style>
<noscript>
<link href="https://www.jumia.com.ng/css/alice_controller_catalogcontroller--detail--alice-min{-oshun}.00fa30585ab8bcfc35c79cd2de675c95.css" media="all" rel="stylesheet" type="text/css"/>
</noscript>
<script type="text/javascript">
var oshunWaitFor = function(property, cb) { window[property] ? cb() : setTimeout(function(){ oshunWaitFor(property, cb); }, 50); };
</script>
<script type="text/javascript">
var jsTrackingStore = {};
jsTrackingStore.data = {"products":{"FA203AC1FXJEKNAFAMZ":{"name":"Fohting Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves YE - Yellow","brand":"Fashion","category":"Fashion/Weddings/Accessories/Gloves","categoryIds":"9158/11238/11242/11254","price":"2.67","priceLocal":"1099.00","tax":"0.13","taxLocal":"52.33","sellerId":65369,"sellerName":"Fohting","sellerScore":"5.0 / 5","reviewsNumber":0,"ratingsAverage":0,"jumiaFirst":0,"jumiaGlobal":1}},"dataLayer":{"brandFilterNames":"Fashion","brandFilterIds":"24203","breadcrumbIDList":"9158/11238/11242/11254","breadcrumbNameList":"Fashion/Weddings/Accessories/Gloves","u1":"Direct","pageTypeV2":"product","biCat1id":"803","biCat2id":"829","biCat3id":"978","biCat1name":"Weddings","biCat2name":"Brides","biCat3name":"Accessories","productModel":"","ecommerce":{"currencyCode":"EUR","detail":{"actionField":{"list":"productpage"},"products":[{"name":"Fohting Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves YE - Yellow","id":"FA203AC1FXJEKNAFAMZ","brand":"Fashion","category":"Fashion/Weddings/Accessories/Gloves","price":"2.67","priceLocal":"1099.00","tax":"0.13","taxLocal":"52.33","sellerId":65369,"sellerName":"Fohting","sellerScore":"5.0 / 5","reviewsNumber":0,"ratingsAverage":0,"jumiaFirst":0,"jumiaGlobal":1}]}}},"crossSell":[],"productSKU":"FA203AC1FXJEKNAFAMZ","categoryId":"11254"};
jsTrackingStore.merge=function(t,e){if(typeof this.data[e]!=="undefined"){var n=this.data[e];Object.keys(n).forEach(function(e){t[e]=n[e]})}};jsTrackingStore.set=function(t,e){var n=this.data;for(var r=0;r<t.length-1;r++){n[t[r]]=n[t[r]]||{};n=n[t[r]]}n[t[r]]=e};jsTrackingStore.get=function(t){var e=this.data;if(typeof t==="string"){t=[t]}for(var n=0;n<t.length;n++){if(typeof e[t[n]]!=="undefined"){e=e[t[n]]}else{return null}}return e}
</script>
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"ItemPage","breadcrumb":{"@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"https://www.jumia.com.ng/","name":"Home"}},{"@type":"ListItem","position":2,"item":{"@id":"https://www.jumia.com.ng/category-fashion-by-jumia/","name":"Fashion"}},{"@type":"ListItem","position":3,"item":{"@id":"https://www.jumia.com.ng/fashion-weddings/","name":"Weddings"}},{"@type":"ListItem","position":4,"item":{"@id":"https://www.jumia.com.ng/wedding-accessories/","name":"Accessories"}},{"@type":"ListItem","position":5,"item":{"@id":"https://www.jumia.com.ng/wedding-gloves/","name":"Gloves"}},{"@type":"ListItem","position":6,"item":{"@id":"https://www.jumia.com.ng/fashion-fohting-children-riding-gloves-half-finger-gloves-sunscreen-slip-gloves-ye-yellow-21252278.html","name":"Fashion Fohting Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves YE - Yellow"}}]},"mainEntity":{"@type":"Product","name":"Fohting Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves YE - Yellow","brand":"Fashion","description":"Style: newDesign: exquisiteQuality: high qualityUse: for personal use, gifts","offers":{"@type":"Offer","availability":"http://schema.org/InStock","price":"1499.00","priceCurrency":"NGN"},"image":{"@type":"ImageObject","name":"Fohting Children Riding Gloves Half Finger Gloves Sunscreen Slip Gloves YE - Yellow","contentUrl":["https://ng.jumia.is/wIeglRgBdufDLb2B2YTFkQ2NYzo=/fit-in/680x680/filters:fill(white):sharpen(1,0,false):quality(100)/product/87/225212/1.jpg?2255","https://ng.jumia.is/kdUBpzwdKe5dJRgRGuVF4Z7fCj8=/fit-in/680x680/filters:fill(white):sharpen(1,0,false):quality(100)/product/87/225212/2.jpg?2255","https://ng.jumia.is/roFStmW806oVaCXUV3U_dkiGhvY=/fit-in/680x680/filters:fill(white):sharpen(1,0,false):quality(100)/product/87/225212/3.jpg?2255"],"thumbnailUrl":["https://ng.jumia.is/KlknATGqcF3hNnWYCEaKMyP5q8k=/fit-in/60x60/filters:fill(white):sharpen(1,0,false):quality(100)/product/87/225212/1.jpg?2255","https://ng.jumia.is/UrbKTrBbn6E8YFl7MtSLCng1AAo=/fit-in/60x60/filters:fill(white):sharpen(1,0,false):quality(100)/product/87/225212/2.jpg?2255","https://ng.jumia.is/sJ004TiYE5EVBEw_jKQISMJshDo=/fit-in/60x60/filters:fill(white):sharpen(1,0,false):quality(100)/product/87/225212/3.jpg?2255"]}}}
</script>
<script type="text/javascript">
var genericStore = {"dynamicYield":{"recommendationContext":{"lng":"en_NG","type":"PRODUCT","data":["FA203AC1FXJEKNAFAMZ"]}}}
</script>
</head>
<body class="l-full-hd ui-page-bg thm-core thm-spinbasket thm-local thm-oshun l-prd-detail l-flipped l-hasSidebar -vertical-fashion dir-ltr" data-control="Detail" data-rel="main">
<script type="application/javascript">
config = window.config || {};config.locale = {"key":"en_NG","messages":[]};
</script>
<div class="osh-ventures-bar">
<div class="osh-container">
<div class="osh-partnership">
<span class="text">
In Partnership with
</span>
<a class="elm" href="https://mtn.jumia.com.ng/" rel="nofollow" target="_blank">
<img class="partner-logo" src="https://static.jumia.com.ng/cms/shop/header-partnership-mtn.png"/>
</a>
<span class="text">
&
</span>
<a class="elm" href="https://axamansard.jumia.com.ng/" rel="nofollow" target="_blank">
<img class="partner-logo" src="https://static.jumia.com.ng/cms/shop/axa/header-partnership-axa-mansard-2.png"/>
</a>
</div>
<ul class="osh-ventures-logos">
<li class="logo">
<span class="elm osh-icon -i-jumia-logo -active">
</span>
</li>
<li class="logo">
<a class="elm osh-icon -i-food" href="https://food.jumia.com.ng/?utm_source=jumia&utm_medium=mall&utm_campaign=venturebar" rel="nofollow" target="_blank" title="Jumia Food">
</a>
</li>
<li class="logo">
<a class="elm osh-icon -i-travel" href="https://travel.jumia.com/?utm_source=jumia&utm_medium=mall&utm_campaign=venturebar" rel="nofollow" target="_blank" title="Jumia Travel">
</a>
</li>
<li class="logo">
<a class="elm osh-icon -i-flights-logo" href="https://travel.jumia.com.ng/en-gb/flights/?utm_source=jumia&utm_medium=mall&utm_campaign=venturebar" rel="nofollow" target="_blank" title="Jumia Flights">
</a>
</li>
<li class="logo">
<a class="elm osh-icon -i-deals" href="https://deals.jumia.com.ng/?utm_source=jumia&utm_medium=mall&utm_campaign=venturebar" rel="nofollow" target="_blank" title="Jumia Deals">
</a>
</li>
<li class="logo">
<a class="elm osh-icon -i-house" href="https://deals.jumia.com.ng/real-estate" rel="nofollow" target="_blank" title="Jumia House">
</a>
</li>
<li class="logo">
<a class="elm osh-icon -i-jumia-party-logo" href="https://party.jumia.com.ng/?utm_source=jumia&utm_medium=mall&utm_campaign=venturebar" rel="nofollow" target="_blank" title="Jumia Party">
</a>
</li>
<li class="logo">
<a class="elm osh-icon -i-jumia-one" href="https://one.jumia.com/?utm_source=jumia&utm_medium=mall&utm_content=On%20the%20top%20horizontal%20bar" rel="nofollow" target="_blank" title="Jumia One">
</a>
</li>
</ul>
</div>
</div>
<header class="header-main-wrapper js-sticky-header">
<div class="osh-container header-main">
<nav class="menu -flyout" id="menuFixed">
<a class="navAllCat">
<i class="osh-font-burger">
</i>
<span class="title">
<span class="label">
All
</span>
<span class="sub-label">
Categories
</span>
<i class="caret osh-font-light-arrow-down">
</i>
</span>
</a>
<ul class="menu-items">
<div class="arrow-border">
</div>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/phones-tablets/">
<i class="cat-icon osh-font-mobile">
</i>
<span class="nav-subTxt">
Phones & Tablets
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/mobile-phones/">
Mobile Phones
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/smartphones/">
Smartphones
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/android-phones/">
Android Phones
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/ios-phones/">
iOS Phones
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/cell-phones/">
Basic Phones
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/tablets/">
Tablets
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/ipads/">
iPads
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/other-tablets/">
Other Tablets
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/tablet-accessories/">
Tablet Accessories
</span>
</div>
</div>
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/mobile-accessories/">
Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mobile-phone-chargers-adaptors/">
Chargers & Adaptors
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mobile-phone-cases-covers/">
Cases
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mobile-phone-screen-protectors/">
Screen Protectors
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mobile-phone-accessories-power-banks/">
Portable Power Banks
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/internal-phone-batteries/">
Batteries
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mobile-phone-bluetooth-accessories/">
Bluetooth Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/smart-watches/">
Smart Watches
</span>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/computing/">
<i class="cat-icon osh-font-computing">
</i>
<span class="nav-subTxt">
Computing
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/computing-accessories/">
Computer & Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/laptops/">
Laptops
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/desktop-computers/">
Desktops
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/monitors/">
Monitors
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/printers/">
Printers
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/scanners/">
Scanners
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/computer-data-storage/">
Data Storage
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/external-hd/">
External Hard Drives
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/flash-drives/">
USB Flash Drives
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/laptop-accessories/">
Laptop Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/keyboards-mice-accessories/">
Keyboards, Mice & Accessories
</span>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/electronics/">
<i class="cat-icon osh-font-tv">
</i>
<span class="nav-subTxt">
Electronics
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/electronic-television-video/">
Television & Video
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/televisions/">
Televisions
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/electronics-dvd-players/">
DVD Players
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/home-audio-electronics/">
Home Audio
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/home-theatre/">
Home Theater Systems
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/home-audio-speakers/">
Speakers
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/home-theatre-systems-receivers-amplifiers/">
Receivers & Amplifiers
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/compact-radios-stereos/">
Compact Radios & Stereos
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/electronics-headphone/">
Headphones
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/portable-audio-video/">
Portable Audio & Video
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mp3-mp4-player-accessories/">
MP3 & MP4 Player Accessories
</span>
</div>
</div>
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/electronics-camera-photo/">
Camera & Photo
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/electronic-camera-lenses/">
Lenses
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/camera-photo-tripods-monopods/">
Tripods & Monopods
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/photo-projectors/">
Projectors
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/video-equipments/">
Video
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/video-surveillance/">
Video Surveillance
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/electronics-camera-accessories/">
Camera Accessories
</span>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/home-office/">
<i class="cat-icon osh-font-home">
</i>
<span class="nav-subTxt">
Home & Office
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/home-kitchen/">
Home & Kitchen
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/home-kitchen-dining/">
Kitchen & Dining
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/kitchen-dining-bakeware/">
Bakeware
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/kitchen-dining-cookware/">
Cookware
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/cutlery-kinfe-accessories/">
Cutlery & Knife Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/bedding/">
Bedding
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/bedding-air-mattresses-accessories/">
Air Mattresses & Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/blanket-duvet/">
Duvets, Covers & Sets
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/bedding-sheet-pillowcases/">
Sheets & Pillowcases
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/home-kitchen-furniture/">
Furniture
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/beds-frames-bases/">
Beds, Frames & Bases
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/home-office-furniture/">
Home Office Furniture
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/home-living-room-furniture/">
Living Room Furniture
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/nursery-furniture/">
Nursery Furniture
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/kitchen-storage-organization/">
Storage & Organization
</span>
</div>
</div>
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/home-office-appliances/">
Appliances
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/home-cooking-appliances-cookers/">
Cookers
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/dishwashers/">
Dishwashers
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/lighting-ceiling-fans/">
Fans
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/appliances-washers-dryers/">
Washers & Dryers
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/air-conditioning/">
Air Conditioners
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/office-products/">
Office Products
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/tools-home-improvement/">
Tools & Home Improvement
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/kitchen-bath-fixtures/">
Kitchen & Bath Fixtures
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/home-decor/">
Home Décor
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/home-fragrance/">
Home Fragrance
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mirrors-home-decor/">
Mirrors
</span>
</div>
<div class="categories">
<span class="category defaultCursor">
</span>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/category-fashion-by-jumia/">
<i class="cat-icon osh-font-fashion">
</i>
<span class="nav-subTxt">
Fashion
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/womens-fashion/">
Women's Fashion
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/womens-clothing/">
Clothing
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/womens-shoes/">
Shoes
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/womens-fashion-accessories/">
Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/womens-sunglasses/">
Sunglasses & Eyewear
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/women-watches/">
Watches
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/mens-fashion/">
Men's Fashion
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/men-clothing/">
Clothing
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mens-shoes/">
Shoes
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mens-fashion-accessories/">
Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mens-sunglasses-eyewear-accessories/">
Sunglasses & Eyewear
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mens-watches/">
Watches
</span>
</div>
</div>
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/fabrics/">
Fabrics
</span>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/health-beauty/">
<i class="cat-icon osh-font-beauty">
</i>
<span class="nav-subTxt">
Health & Beauty
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/fragrances-allgenders/">
Fragrances
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mens-fragrances/">
Men's Fragrances
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/womens-fragrances/">
Women's Fragrances
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/styling-products-deodorant-antiperspirants/">
Deodorants & Antiperspirants
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/hair-care/">
Hair Care
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/extensions-wigs-accessories/">
Extensions, Wigs & Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/hair-accessories/">
Hair Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mens-grooming-products/">
Men's Grooming
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/hair-perms-relaxers-texturizers/">
Hair Perms, Relaxers & Texturizers
</span>
</div>
</div>
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/beauty-styling-products/">
Personal Care
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/womens-make-up/">
Makeup
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/skin-care-prducts/">
Skin Care
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/health-care/">
Health Care
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/medications-treatments/">
Medications & Treatments
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/womens-health/">
Women's Health
</span>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/video-games/">
<i class="cat-icon osh-font-games">
</i>
<span class="nav-subTxt">
Gaming
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/playstation-4/">
PlayStation 4
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/playstation4-consoles/">
Consoles
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/playstation4-accessories/">
Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/playstation4-games/">
Games
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/xbox-one/">
Xbox One
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/xbox-one-consoles/">
Consoles
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/xboxone-accessories/">
Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/xbox-one-games/">
Games
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/nintendo-switch/">
Nintendo Switch
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/nintendo-switch-consoles/">
Consoles
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/nintendo-switch-accessories/">
Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/nintendo-switch-games/">
Games
</span>
</div>
</div>
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/playstation-3/">
PlayStation 3
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/playstation3-consoles/">
Consoles
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/playstation3-accessories/">
Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/playstation3-games/">
Games
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/xbox-360/">
Xbox 360
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/xbox-360-consoles/">
Consoles
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/xbox-360-accessories/">
Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/xbox-360-games/">
Games
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/ps-vita-consoles/">
PlayStation Vita
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/ps-vita-consoles/">
Consoles
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/playstation-vita-accessories/">
Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/ps-vita-games/">
Games
</span>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/groceries/">
<i class="cat-icon osh-font-groceries">
</i>
<span class="nav-subTxt">
Grocery
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/condiments-salad-dressing/">
Food Cupboards
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/dried-beans-grains-rice/">
Rice, Pasta & Starch Food
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/family-cereals/">
Breakfast
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/grocery-sweet-biscuits/">
Canned Food
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/canned-jarred-packaged-foods/">
Jam, Honey and Spreads
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/groceries/?q=biscuit">
Snacking
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/candy-chocolate/">
Chocolates, Sweets & Biscuits
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/crisps-chips/">
Crisps and Chips
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/grocery-seeds-nuts/">
Nuts
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/cooking-baking/">
Cooking Ingredients
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/cooking-oils-vinegars-sprays/">
Oil
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/cooking-spices/">
Spices
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/jams-jellies-sweet-spread/">
Spreads & Sauces
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/sugars/">
Sugar
</span>
</div>
</div>
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/beverages/">
Beverages
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/alcoholic-drinks/">
Spirits, Wines & Beers
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/hot-beverages-coffee-tea-cocoa/">
Coffee, Tea & Hot Chocolate
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/water/">
Water
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/soft-drinks/">
Soft Drinks
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/toiletries-products/">
Toiletries
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/hair-care/">
Hair Care
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/skin-care-products/">
Skincare
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/personal-care/">
Soap & Shower
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/antiperspirants-deodorants/">
Deodorants
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/mens-grooming-products/">
Men's Grooming
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/feminine-hygiene/">
Feminine Hygiene
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/oral-care/">
Oral Care
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/laundry-supplies/">
Laundry
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/detergent-pacs-tablets/">
Detergent
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/fabric-softner/">
Fabric Conditioners
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/laundry-bleach/">
Bleach
</span>
</div>
</div>
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/baby-products/">
Baby World
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-bathing-skin-care/">
Baby Bath
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-skincare/">
Baby Skincare & Lotions
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-bathing-skin-care/">
Baby Powder
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-diapering/">
Diapers & Wipes
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-feeding-foods/">
Baby Food
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/household-cleaning/">
Home Cleaning
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/household-cleaning/">
Cleaning Products
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/dishwashing-products/">
Dishwashing
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/weed-pest-control/">
Pest Control
</span>
</div>
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/paper-plastic-household-supplies/">
Plastic & Paper Products
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/paper-plastic-household-supplies/">
Storage Bags
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/disposable-food-storage/">
Disposable
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/trash-compost-lawn-bags/">
Trash Bags
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/wet-wipes/">
Toilet Papers & Tissues
</span>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/baby-products/">
<i class="cat-icon osh-font-baby">
</i>
<span class="nav-subTxt">
Baby Products
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/baby-products/">
Baby Essentials
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-products/">
Apparel & Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/toys-babys/">
Baby & Toddler Toys
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-feeding-products/">
Feeding
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-bedding/">
Nursery
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/bathing-skin-care/">
Bathing & Skin Care
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/diapering/">
Diapering
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-carriers/">
Gear
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/other-baby-gifts/">
Gift
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-stationery/">
Safety
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-stationery/">
Baby Stationery
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/car-seats/">
Car Seats & Accessories
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/pregnancy-maternity_/">
Pregnancy & Maternity
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/potty/">
Potty Training
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/baby-grooming-healthcare-kits/">
Health & Baby Care
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/accessories-replacement-parts/">
Strollers & Accessories
</span>
</div>
</div>
</div>
</div>
</li>
<li class="menu-item" data-id="">
<a class="main-category" href="https://www.jumia.com.ng/toys-games/">
<i class="cat-icon osh-font-toys">
</i>
<span class="nav-subTxt">
Toys & Games
</span>
<i class="osh-font-light-arrow-left">
</i>
<i class="osh-font-light-arrow-right">
</i>
</a>
<div class="navLayerWrapper">
<div class="submenu">
<div class="column">
<div class="categories">
<span class="category" href-data="https://www.jumia.com.ng/toys-games/">
Toys & Games
</span>
<span class="subcategory" href-data="https://www.jumia.com.ng/arts-crafts/">
Arts & Crafts
</span>