-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.scss
2615 lines (2355 loc) · 77 KB
/
header.scss
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
@import 'common';
$ribbon-height: 64px;
$small-ribbon-height: 48px;
$header-breakpoints: (
576: 576px,
768: 768px,
1024: 1024px,
1200: 1200px,
1280: 1280px,
1680: 1680px,
2560: 2560px,
);
/* stylelint-disable */
$header-icons: (
'chevron-right-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke-linecap="square" stroke="#000"><path d="M9.002 5L15.5 12 9 19" /></g></svg>',
'chevron-up-32':
'<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path fill="#111" fill-rule="nonzero" d="M8.865 20.908L8 20.043 16.043 12l8.043 8.043-.778.865-7.265-7.265z"></path></svg>',
'chevron-down-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="none" fill-rule="evenodd" stroke-linecap="square" stroke="#000" d="M3 6L8 10 13 6"/></svg>',
'chevron-right-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"><path stroke="#000" d="M6 3L10 8 6 13" /></g></svg>',
'arrow-down-solid-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none" fill-rule="evenodd"><path fill="#000" d="M3 6L8 12 13 6z" transform="translate(0, -1)"/></g></svg>',
'alert-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd"><path stroke="#000" stroke-linecap="square" d="M4 19.5L12.5 4.5 21 19.5zM12.5 9.563L12.5 14.5" /><path fill="#000" d="M12.5 16.688c.311 0 .562.252.562.562 0 .31-.251.563-.562.563-.311 0-.562-.252-.562-.563 0-.31.251-.563.562-.563" /></g></svg>',
'alert-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none" fill-rule="evenodd"><path stroke="#000" stroke-linecap="square" d="M2.5 13.5L8.5 2.5 14.5 13.5z"/><path fill="#000" d="M8.5 10.98c.284 0 .515.23.515.515 0 .285-.231.514-.515.514-.284 0-.515-.23-.515-.514 0-.284.231-.514.515-.514" /><path stroke="#000" stroke-linecap="square" d="M8.5 7.5L8.5 9.5" /></g></svg>',
'notification-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd"><path stroke="#000" d="M10 18.5c0 1.1.9 2 2 2s2-.9 2-2" /><path stroke="#000" stroke-linecap="square" d="M14.91 16.5H20s-1.85-2.71-1.85-4.87V8.92c0-.74-.17-1.48-.51-2.16-.62-1.26-1.72-2.2-3.03-2.74l-.15-.06c-3.12-1.19-6.75.06-8.1 2.8-.34.68-.51 1.41-.51 2.16v2.71C5.85 13.79 4 16.5 4 16.5h10.91z" /><path d="M0 0H24V24H0z" /></g></svg>',
'notification-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none" fill-rule="evenodd"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M6.5 12.5c.287.78 1.191 1.19 2.021.92.458-.15.82-.49.979-.92M2.66 10.5L13.5 10.5M13.5 10.5c-1.07-.07-1.93-.93-2-2V6c0-1.93-1.57-3.5-3.5-3.5S4.5 4.07 4.5 6v2.5c-.07 1.07-.93 1.93-2 2" /><path d="M0 0H16V16H0z" /></g></svg>',
'resources-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" ><g stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(2, 1)" stroke="#111111" stroke-linecap="round" stroke-linejoin="round"><path d="M9.5,12.8213 L5,9.7863 L0.5,12.8213 L0.5,4.0003 C0.5,3.1723 1.171,2.5003 2,2.5003 L8,2.5003 C8.829,2.5003 9.5,3.1723 9.5,4.0003 L9.5,12.8213 Z"></path><path d="M4.5,0.5 L10.5,0.5 C11.052,0.5 11.5,0.947 11.5,1.5 L11.5,9.5"></path></g></svg>',
'resources-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" ><g transform="translate(4, 3)" stroke-width="1" stroke="#111111" stroke-linecap="square" fill="none"><path d="M13.5,17.9824 L7,13.4284 L0.5,17.9824 L0.5,4.7504 C0.5,3.5074 1.507,2.5004 2.75,2.5004 L11.25,2.5004 C12.493,2.5004 13.5,3.5074 13.5,4.7504 L13.5,17.9824 Z"></path><path d="M5.5,0.5 L14,0.5 C14.829,0.5 15.5,1.172 15.5,2 L15.5,14.5"></path></g></svg>',
'language-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" ><g transform="translate(1, 2)" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <line x1="6.5" y1="0.5" x2="6.5" y2="12.5" stroke="#111111"></line> <line x1="0.5" y1="6.5" x2="12.5" y2="6.5" stroke="#111111"></line> <path d="M6.5,0.5 C8.157,0.5 9.5,3.187 9.5,6.5 C9.5,9.813 8.157,12.5 6.5,12.5 C4.843,12.5 3.5,9.813 3.5,6.5 C3.5,3.187 4.843,0.5 6.5,0.5 Z" stroke="#111111" stroke-linecap="square"></path><path d="M6.5,0.5 C9.813,0.5 12.5,3.187 12.5,6.5 C12.5,9.813 9.813,12.5 6.5,12.5 C3.187,12.5 0.5,9.813 0.5,6.5 C0.5,3.187 3.187,0.5 6.5,0.5 Z" stroke="#111111" stroke-linecap="square"></path></g></svg>',
'language-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" ><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><line x1="11.5" y1="4" x2="11.5" y2="21" id="Stroke-2" stroke="#111111"></line><line x1="3" y1="12.5" x2="20" y2="12.5" id="Stroke-3" stroke="#111111"></line><g stroke-linecap="square" transform="translate(2, 3)"><path d="M9.5,0.5 C12.261,0.5 14.5,4.529 14.5,9.5 C14.5,14.471 12.261,18.5 9.5,18.5 C6.739,18.5 4.5,14.471 4.5,9.5 C4.5,4.529 6.739,0.5 9.5,0.5 Z" stroke="#111111"></path><path d="M9.5,0.5 C14.471,0.5 18.5,4.529 18.5,9.5 C18.5,14.471 14.471,18.5 9.5,18.5 C4.529,18.5 0.5,14.471 0.5,9.5 C0.5,4.529 4.529,0.5 9.5,0.5 Z" stroke="#111111"></path></g></g></svg>',
'dots-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none" fill-rule="evenodd"><path fill="#000" d="M9 8c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1zM9 4c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1zM9 12c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1z" /></g></svg>',
'link-arrow-right-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke="#005eb8"><path d="M18.5 11.5L4 11.5" /><path stroke-linecap="square" d="M13 16.5L18.5 11.5 13 6.493" /></g></svg>',
'link-arrow-right-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke="#005eb8"><path d="M18.5 11.5L4 11.5" /><path stroke-linecap="square" d="M13 16.5L18.5 11.5 13 6.493" /></g></svg>',
'tick-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke-linecap="square"><path stroke="#005eb8" d="M9.5 16.5L5.5 12M9.5 16.5L18 7.5"/></g></svg>',
'tick-24-black':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke-linecap="square"><path stroke="#000" d="M9.5 16.5L5.5 12M9.5 16.5L18 7.5"/></g></svg>',
'motorola-logo-48':
'<svg xmlns="http://www.w3.org/2000/svg" width="56" height="48" viewBox="0 0 56 48"><g fill="none" fill-rule="evenodd"><path fill="#FFF" d="M28.018 27.774c-7.614 0-13.809-6.2-13.809-13.817 0-7.603 6.195-13.791 13.809-13.791 7.609 0 13.801 6.188 13.801 13.79 0 7.619-6.192 13.818-13.801 13.818" transform="translate(-256 -4607) translate(239 4599) translate(15 2) translate(2 6)"/> <path fill="#000" d="M36.065 20.527s-.647-2.889-1.681-4.623c-.566-.918-1.433-1.684-2.597-1.655-.83.01-1.541.444-2.415 1.688-.543.75-1.358 2.641-1.358 2.641s-.815-1.892-1.357-2.641c-.891-1.243-1.597-1.678-2.411-1.688-1.172-.03-2.036.737-2.611 1.655-1.03 1.735-1.672 4.623-1.672 4.623h-.942L24.076 3.94l3.913 12.95.025.029.03-.03 3.903-12.95 5.056 16.59h-.938zM28.018 0c-7.716 0-13.974 6.258-13.974 13.957 0 7.723 6.258 13.982 13.974 13.982 7.714 0 13.967-6.26 13.967-13.982C41.985 6.304 35.834 0 28.018 0zM.041 39.271L1.405 34.615 3.767 34.615 4.356 36.593 6.072 34.591 8.569 34.591 7.269 39.264 5.38 39.271 6.072 36.86 3.89 39.271 2.947 39.271 2.269 36.703 1.51 39.271zM16.674 34.591L22.472 34.614 22.126 36.112 20.136 36.112 19.317 39.271 17.486 39.271 18.245 36.123 16.28 36.123zM36.376 35.822c.137-1.116-1.153-1.208-1.153-1.208H30.76l-1.326 4.657h1.73l.397-1.4 1.382.025c.503-.05.528.301.528.301s-.009.314-.043.644c-.023.362.32.422.32.422h1.88c-.15-.12-.153-.358-.153-.51 0-.118.195-.4.131-.846-.044-.39-.485-.487-.547-.54-.058-.023.017-.09.017-.09s1.187-.339 1.301-1.455m-2.379.762h-1.994l.232-.897 1.921.014s.375-.028.347.354c-.025.444-.506.53-.506.53M45.371 34.615L47.164 34.615 46.303 37.992 49.216 37.992 48.876 39.271 44.168 39.271zM54.895 34.591h-2.18l-3.158 4.68h1.57l.539-.815.016-.023h2.231v.023l.2.815h1.846l-1.064-4.68zm-1.266 2.753H52.44l-.025-.01.92-1.373.316 1.372-.022.011zM15.869 36.191c-.27-1.284-1.782-1.773-3.153-1.773-.355.003-.77.045-1.093.112-1.395.277-3.148 1.526-2.84 3.141.254 1.353 2.09 2.084 4.15 1.678 1.937-.369 3.196-1.852 2.936-3.158m-2.895 1.893c-.8.408-2.012.27-2.147-.545-.143-.781.472-1.562.975-1.745.354-.121.644-.189.904-.152.563 0 1.132.268 1.204.697.274 1.285-1.108 1.826-.936 1.745M29.342 36.191c-.256-1.284-1.768-1.773-3.13-1.773-.363.003-.777.045-1.104.112-1.386.277-3.146 1.526-2.843 3.141.265 1.353 2.1 2.084 4.162 1.678 1.93-.369 3.186-1.852 2.915-3.158m-2.882 1.893c-.798.408-2.022.27-2.147-.545-.138-.781.471-1.562.976-1.745.347-.121.646-.189.912-.152.555 0 1.115.268 1.195.697.283 1.285-1.1 1.826-.936 1.745M44.002 36.191c-.254-1.284-1.77-1.773-3.128-1.773-.367.003-.77.045-1.11.112-1.377.277-3.13 1.526-2.826 3.141.256 1.353 2.094 2.084 4.146 1.678 1.936-.369 3.195-1.852 2.918-3.158m-2.884 1.893c-.79.408-2 .27-2.143-.545-.143-.781.466-1.562.97-1.745.423-.152.594-.189.915-.181.567.045 1.118.297 1.208.726.261 1.285-1.106 1.826-.95 1.745M5.984 47.998c-1.178-.002-1.835-.392-1.837-1.21 0-.106.012-.222.035-.343l.003-.021h.767l-.007.032c-.018.07-.025.139-.025.203 0 .477.463.755 1.245.756.967 0 1.595-.38 1.726-.875.015-.053.02-.102.02-.146.012-.454-.746-.511-1.526-.607-.772-.098-1.568-.25-1.572-.983 0-.103.016-.217.05-.341.246-.916 1.165-1.438 2.449-1.438.876 0 1.758.237 1.76 1.092 0 .095-.011.196-.033.305l-.005.02H8.27l.005-.028c.008-.051.012-.098.012-.142-.001-.51-.555-.664-1.255-.664-.66-.001-1.303.327-1.436.828-.011.046-.02.089-.02.133.003.188.124.364.569.444l1.665.298c.59.103.87.418.869.846 0 .103-.016.212-.045.325-.255.949-1.256 1.516-2.65 1.516h-.001zM48.763 47.998c-1.176-.002-1.834-.391-1.836-1.208 0-.108.012-.224.035-.345l.004-.021h.767l-.008.032c-.018.07-.025.139-.025.203.001.477.463.755 1.246.756.966 0 1.595-.38 1.725-.875.016-.053.022-.102.022-.146.01-.454-.747-.511-1.528-.607-.77-.098-1.568-.25-1.572-.983 0-.103.016-.217.051-.341.245-.916 1.165-1.438 2.447-1.438.877 0 1.76.237 1.761 1.092 0 .095-.01.196-.033.305l-.005.02h-.764l.005-.03c.01-.05.012-.096.012-.14 0-.511-.554-.664-1.254-.664-.66-.001-1.302.328-1.436.828-.01.046-.018.089-.018.133.001.188.123.364.568.444l1.664.298c.591.103.871.418.87.847 0 .102-.016.21-.047.325-.254.948-1.255 1.515-2.649 1.515h-.002zM12.055 47.418c1.123 0 2.105-.77 2.413-1.911.055-.206.082-.4.082-.58-.003-.808-.54-1.314-1.459-1.316-1.123 0-2.105.767-2.413 1.91-.056.207-.083.4-.083.579.002.809.54 1.315 1.46 1.318zm-.144.583c-.78 0-1.306-.213-1.636-.542-.328-.33-.46-.774-.46-1.23 0-.242.037-.487.1-.722.301-1.121 1.341-2.48 3.32-2.48.781 0 1.305.213 1.635.543.33.33.46.774.46 1.229 0 .242-.037.487-.099.722-.302 1.123-1.34 2.48-3.319 2.48zM15.768 47.875L17.033 43.167 17.038 43.148 17.765 43.148 16.652 47.292 20.168 47.292 20.012 47.875zM22.754 48c-1.058-.002-1.755-.473-1.757-1.403 0-.193.03-.407.093-.638l.754-2.81h.727l-.766 2.856c-.046.17-.068.326-.068.468.002.596.385.94 1.161.943.956 0 1.628-.54 1.867-1.424l.758-2.824.004-.019h.728l-.757 2.823c-.36 1.345-1.462 2.027-2.74 2.027h-.004zM28.105 47.878L29.208 43.772 27.223 43.772 27.39 43.151 32.085 43.151 31.92 43.772 29.935 43.772 28.833 47.878zM32.003 47.878L33.268 43.17 33.273 43.151 34 43.151 32.73 47.878zM39.262 45.506c-.307 1.142-1.289 1.911-2.413 1.911-.92-.003-1.457-.51-1.459-1.319 0-.179.026-.372.081-.579.308-1.142 1.292-1.91 2.415-1.91.92.002 1.456.508 1.458 1.318 0 .179-.026.372-.082.579m.402-1.938c-.329-.33-.854-.543-1.635-.543-1.98 0-3.02 1.359-3.32 2.481-.063.235-.099.48-.099.721 0 .457.131.901.461 1.23.328.329.854.542 1.636.541 1.98.001 3.018-1.357 3.32-2.479.061-.235.097-.479.097-.721 0-.457-.13-.9-.46-1.23M44.121 47.875L42.341 43.918 41.277 47.875 40.551 47.875 41.819 43.148 42.775 43.148 44.558 47.105 45.615 43.167 45.621 43.148 46.348 43.148 45.079 47.875z" transform="translate(-256 -4607) translate(239 4599) translate(15 2) translate(2 6)"/></g></svg>',
'motorola-logo-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="263" height="24" viewBox="0 0 263 24"><g fill="none" fill-rule="evenodd"><g fill="#231F20" fill-rule="nonzero"><path d="M223.418 11.172c-2.54-.002-3.96-.845-3.963-2.61 0-.233.022-.48.073-.741l.008-.046h1.655l-.016.066c-.037.155-.054.302-.054.44.002 1.031 1 1.63 2.69 1.635 2.088 0 3.444-.822 3.726-1.89.032-.118.046-.22.046-.317.024-.98-1.612-1.103-3.298-1.31-1.666-.212-3.387-.542-3.394-2.124 0-.223.034-.466.108-.737.532-1.978 2.517-3.105 5.286-3.103 1.892.002 3.797.511 3.803 2.358 0 .204-.023.423-.073.66l-.01.044h-1.65l.012-.066c.017-.107.026-.21.026-.304-.003-1.103-1.198-1.433-2.709-1.434-1.427-.002-2.812.709-3.1 1.79-.027.097-.04.191-.04.287.002.406.266.784 1.227.958l3.594.643c1.275.222 1.88.903 1.877 1.827 0 .22-.034.456-.1.703-.547 2.047-2.71 3.27-5.72 3.27h-.004zM213.392 10.906L209.547 2.363 207.254 10.906 205.682 10.906 208.422.699 210.488.699 214.335 9.243 216.617.741 216.629.699 218.2.699 215.46 10.906zM202.902 5.792c-.662 2.465-2.784 4.125-5.21 4.125-1.987-.004-3.147-1.1-3.152-2.848 0-.385.059-.804.176-1.248.665-2.467 2.79-4.126 5.212-4.126 1.987.006 3.147 1.098 3.153 2.847 0 .386-.06.804-.179 1.25m.87-4.186c-.712-.711-1.845-1.17-3.534-1.17-4.273 0-6.518 2.933-7.166 5.356-.137.506-.215 1.037-.215 1.559 0 .984.28 1.943.994 2.654.71.71 1.844 1.17 3.533 1.169h.002c4.27.002 6.514-2.932 7.164-5.353.135-.508.214-1.036.214-1.558 0-.986-.282-1.945-.992-2.657M187.227 10.912L189.96.745 189.968.705 191.54.705 188.798 10.912zM178.809 10.912L181.191 2.046 176.906 2.046 177.266.705 187.407.705 187.047 2.046 182.761 2.046 180.38 10.912zM167.257 11.176c-2.285-.004-3.789-1.02-3.793-3.029 0-.416.064-.877.198-1.375l1.63-6.069h1.57l-1.654 6.168c-.099.365-.149.703-.149 1.01.006 1.287.834 2.029 2.505 2.036 2.065-.002 3.519-1.17 4.035-3.076l1.633-6.096.012-.042h1.57L173.182 6.8c-.78 2.902-3.157 4.377-5.918 4.377h-.006zM152.172 10.906L154.902.741 154.912.699 156.484.699 154.079 9.649 161.672 9.649 161.335 10.906zM144.154 9.92c2.424 0 4.55-1.66 5.21-4.125.119-.447.178-.866.178-1.252-.006-1.747-1.165-2.839-3.149-2.844-2.428 0-4.55 1.659-5.212 4.123-.122.446-.178.866-.178 1.252.004 1.747 1.162 2.841 3.15 2.845zm-.308 1.26c-1.688 0-2.823-.461-3.534-1.172-.712-.711-.994-1.671-.994-2.656 0-.522.08-1.052.214-1.557.65-2.422 2.896-5.356 7.167-5.356 1.687 0 2.822.46 3.534 1.173.71.71.992 1.668.992 2.654 0 .523-.078 1.05-.213 1.556-.65 2.423-2.893 5.357-7.165 5.357h-.001zM131.045 11.172c-2.543-.002-3.962-.846-3.966-2.612 0-.233.024-.478.074-.74l.01-.045h1.653l-.015.066c-.038.155-.055.302-.055.438.003 1.034 1.002 1.633 2.69 1.635 2.089.002 3.443-.82 3.727-1.888.031-.118.045-.22.045-.317.025-.98-1.613-1.103-3.298-1.31-1.666-.211-3.386-.54-3.394-2.124 0-.223.035-.466.11-.737.529-1.978 2.514-3.105 5.285-3.103 1.892.002 3.797.511 3.802 2.358 0 .204-.023.423-.073.66l-.01.044h-1.648l.012-.065c.016-.108.026-.21.026-.304-.004-1.102-1.199-1.434-2.71-1.435-1.427-.002-2.813.707-3.1 1.79-.027.097-.042.191-.042.287.003.406.267.784 1.227.958l3.596.643c1.274.222 1.879.903 1.877 1.825 0 .223-.036.458-.1.704-.55 2.048-2.712 3.272-5.718 3.272h-.005zM118.774.752h-4.705l-6.82 10.105h3.39l1.164-1.76.033-.049h4.817v.05l.432 1.76h3.988L118.774.751zm-2.73 5.943h-2.569l-.055-.022 1.987-2.963.68 2.963-.044.022zM98.209.804L102.08.804 100.223 8.096 106.511 8.096 105.777 10.858 95.613 10.858zM95.253 4.206c-.546-2.773-3.82-3.827-6.75-3.827-.797.006-1.667.096-2.402.241-2.972.6-6.759 3.295-6.098 6.784.554 2.92 4.522 4.496 8.95 3.622 4.18-.798 6.9-4.002 6.3-6.82m-6.227 4.087c-1.705.881-4.319.584-4.625-1.176-.309-1.685 1.006-3.373 2.092-3.77.917-.326 1.287-.404 1.98-.39 1.22.099 2.411.642 2.608 1.568.563 2.776-2.39 3.945-2.055 3.768M78.79 3.41C79.087 1.003 76.3.804 76.3.804h-9.64l-2.864 10.055h3.736l.856-3.022 2.989.053c1.083-.11 1.134.65 1.134.65s-.016.68-.09 1.389c-.048.783.69.911.69.911h4.06c-.324-.26-.33-.77-.33-1.099 0-.255.42-.863.281-1.826-.094-.842-1.045-1.053-1.182-1.167-.122-.051.04-.197.04-.197s2.563-.729 2.81-3.14m-5.136 1.646h-4.31l.505-1.938 4.147.032s.81-.063.748.766c-.056.956-1.09 1.14-1.09 1.14M63.6 4.206C63.048 1.433 59.785.379 56.843.379c-.784.006-1.68.096-2.385.241-2.993.6-6.79 3.295-6.138 6.784.572 2.92 4.534 4.496 8.986 3.622 4.169-.798 6.882-4.002 6.296-6.82m-6.222 4.087c-1.724.881-4.37.584-4.638-1.176-.296-1.685 1.019-3.373 2.11-3.77.748-.26 1.391-.404 1.968-.326 1.197 0 2.406.578 2.579 1.504.61 2.776-2.378 3.945-2.02 3.768M36.248.752L48.768.804 48.018 4.036 43.722 4.036 41.954 10.857 37.998 10.857 39.638 4.06 35.397 4.06zM34.508 4.206c-.582-2.773-3.85-3.827-6.809-3.827-.766.006-1.662.096-2.362.241-3.009.6-6.796 3.295-6.131 6.784.548 2.92 4.514 4.496 8.962 3.622 4.18-.798 6.9-4.002 6.34-6.82m-6.25 4.087c-1.73.881-4.346.584-4.637-1.176-.308-1.685 1.018-3.373 2.103-3.77.767-.26 1.393-.404 1.953-.326 1.22 0 2.445.578 2.6 1.504.593 2.776-2.393 3.945-2.018 3.768M.329 10.858L3.278.803 8.375.803 9.65 5.077 13.354.753 18.747.753 15.938 10.839 11.86 10.858 13.354 5.652 8.645 10.858 6.606 10.858 5.14 5.312 3.502 10.858z" transform="translate(-269 -273) translate(239 253) translate(30) translate(0 20) translate(32 6)"/></g><path fill="#000" d="M18.546 17.455s-.13-2.295-1.024-3.774c-.483-.804-1.237-1.696-2.25-1.68-.71.012-1.297.638-2.073 1.696-.458.645-1.163 2.667-1.163 2.667s-.708-2.022-1.166-2.667c-.754-1.058-1.436-1.684-2.143-1.697-1.016-.015-1.694.877-2.176 1.68-.895 1.48-1.097 3.775-1.097 3.775h-1.09L8.727 3.273l3.286 10.909h.046l3.214-10.91 4.364 14.183h-1.091zM12.036 0C5.393 0 0 5.368 0 12c0 6.633 5.393 12 12.036 12C18.678 24 24 18.633 24 12c0-6.588-5.219-12-11.964-12z" transform="translate(-269 -273) translate(239 253) translate(30) translate(0 20)"/></g></svg>',
'search-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" transform="translate(4 4)"><path fill="#FFF" fill-opacity="0" d="M0 24L24 24 24 0 0 0z"/><path d="M13.5 7c0 3.59-2.91 6.5-6.5 6.5S.5 10.59.5 7 3.41.5 7 .5s6.5 2.91 6.5 6.5zM16.25 16.25L11.5 11.5" stroke="#000" /></g></svg>',
'search-24-black':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" transform="translate(4 4)"><path fill="#000" fill-opacity="0" d="M0 24L24 24 24 0 0 0z"/><path d="M13.5 7c0 3.59-2.91 6.5-6.5 6.5S.5 10.59.5 7 3.41.5 7 .5s6.5 2.91 6.5 6.5zM16.25 16.25L11.5 11.5" stroke="#FFF" /></g></svg>',
'search-32':
'<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><g transform="translate(6, 6)" stroke="#000" stroke-width="1" fill="none"><path d="M17.5,9 C17.5,13.694 13.694,17.5 9,17.5 C4.306,17.5 0.5,13.694 0.5,9 C0.5,4.306 4.306,0.5 9,0.5 C13.694,0.5 17.5,4.306 17.5,9 Z"></path><line x1="21" y1="21" x2="15" y2="15"></line></g></svg>',
'close-big-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" opacity=".988" stroke="#FFF" stroke-linecap="square" stroke-width="2"><path d="M18.85.65L.65 18.85M18.85 18.85L.65.65" transform="translate(2 2)"/></g></svg>',
'user-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke="#000"><path d="M15.5 8.5c0 1.841-1.431 5-3.5 5s-3.5-3.159-3.5-5c0-1.841 1.457-4 3.5-4s3.5 2.159 3.5 4z"/><path d="M13.585 12.844s.769.37 1.602.65c1.179.396 2.527.715 3.313 1.506.786.79 1 2.45 1 2.5v2h-15v-2c0-.591.214-1.71 1-2.5.786-.791 2.219-1.11 3.398-1.506.833-.28 1.548-.625 1.548-.625"/></g></svg>',
'user-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none" fill-rule="evenodd"><path stroke="#000" d="M10.5 5c0 1.174-1.107 3.5-2.5 3.5S5.5 6.174 5.5 5 6.625 2.5 8 2.5s2.5 1.326 2.5 2.5zM10 9.5s1.489.115 1.977.783c.393.539.492 1.498.492 1.982 0 .486.008 1.265.008 1.265H3.5s.008-.779.008-1.265c0-.484.098-1.443.492-1.982.487-.668 1.992-.783 1.992-.783"/></g></svg>',
'support-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke-linecap="square"><path stroke="#111" d="M9.471 7.91c.469-1.077 1.15-1.6 2.43-1.6C13.622 6.31 15 7.384 15 9.076s-1.275 3.267-2.994 3.267v1.498"/><path stroke="#111" stroke-width=".6" d="M11.97 17.688c.414 0 .75-.336.75-.75 0-.415-.336-.75-.75-.75-.415 0-.75.335-.75.75 0 .414.335.75.75.75z"/><path stroke="#000" d="M12 3.375c4.764 0 8.625 3.861 8.625 8.625 0 4.764-3.861 8.625-8.625 8.625-4.764 0-8.625-3.861-8.625-8.625 0-4.764 3.861-8.625 8.625-8.625z"/></g></svg>',
'support-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none" fill-rule="evenodd"><path stroke="#111" stroke-linecap="square" d="M6 5.73c.313-.717 1.063-1.23 1.917-1.23C9.063 4.5 10 5.423 10 6.551c0 1.129-.938 2.052-2.083 2.052v.85" /><path stroke="#111" stroke-linecap="square" stroke-width=".6" d="M8 11.7c.331 0 .6-.269.6-.6 0-.331-.269-.6-.6-.6-.331 0-.6.269-.6.6 0 .331.269.6.6.6z" /><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M8 2.5c3.037 0 5.5 2.463 5.5 5.5s-2.463 5.5-5.5 5.5S2.5 11.037 2.5 8 4.963 2.5 8 2.5z" /></g></svg>',
'cart-48':
'<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><g fill="none" fill-rule="evenodd"><g stroke="rgba(0,0,0,0.25)" stroke-linecap="square" stroke-width="1.5"><path d="M0 0h5v21h-.5C3.119 21 2 22.119 2 23.5S3.119 26 4.5 26H36M9 30c1.657 0 3 1.343 3 3s-1.343 3-3 3-3-1.343-3-3 1.343-3 3-3zM32 30c1.657 0 3 1.343 3 3s-1.343 3-3 3-3-1.343-3-3 1.343-3 3-3z" transform="translate(6 6)"/><path stroke-linejoin="round" d="M5 7L31.453 7 28.342 21 5 21" transform="translate(6 6)"/></g></g></svg>',
'cart-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="#000"><path d="M7.5 18c.828 0 1.5.672 1.5 1.5S8.328 21 7.5 21 6 20.328 6 19.5 6.672 18 7.5 18M18 18c.828 0 1.5.672 1.5 1.5S18.828 21 18 21s-1.5-.672-1.5-1.5.672-1.5 1.5-1.5M7.5 15.264c-.414 0-.75-.335-.75-.75v-.75h10.5c.344 0 .644-.233.728-.567l1.5-6c.1-.402-.144-.81-.545-.91-.06-.015-.121-.023-.183-.023h-12v-2.25c0-.414-.336-.75-.75-.75H3v1.5h2.25v9.75c0 1.243 1.008 2.25 2.25 2.25H20v-1.5H7.5z"/></g></svg>',
'cart-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none" fill-rule="evenodd"><path fill="#000" d="M5.5 12c.553 0 1 .447 1 1 0 .553-.447 1-1 1-.553 0-1-.447-1-1 0-.553.447-1 1-1M12.5 12c.553 0 1 .447 1 1 0 .553-.447 1-1 1-.553 0-1-.447-1-1 0-.553.447-1 1-1M5 10c-.276 0-.5-.224-.5-.5V9h7c.229 0 .43-.156.485-.379l1-4c.067-.267-.095-.539-.364-.606-.039-.01-.08-.015-.121-.015h-8V2.5c0-.276-.224-.5-.5-.5H2v1h1.5v6.5c0 .828.672 1.5 1.5 1.5h8.5v-1H5z"/></g></svg>',
'quicklinks-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke="#000"><path d="M16.5 19.5L19.5 19.5 19.5 16.5 16.5 16.5zM4.5 19.5L7.5 19.5 7.5 16.5 4.5 16.5zM10.5 19.5L13.5 19.5 13.5 16.5 10.5 16.5zM16.5 7.5L19.5 7.5 19.5 4.5 16.5 4.5zM4.5 7.5L7.5 7.5 7.5 4.5 4.5 4.5zM10.5 7.5L13.5 7.5 13.5 4.5 10.5 4.5zM16.5 13.5L19.5 13.5 19.5 10.5 16.5 10.5zM4.5 13.5L7.5 13.5 7.5 10.5 4.5 10.5zM10.5 13.5L13.5 13.5 13.5 10.5 10.5 10.5z" /></g></svg>',
'quicklinks-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="#000"><path d="M8 10L10 10 10 8 8 8zM0 10L2 10 2 8 0 8zM4 10L6 10 6 8 4 8zM8 2L10 2 10 0 8 0zM0 2L2 2 2 0 0 0zM4 2L6 2 6 0 4 0zM8 6L10 6 10 4 8 4zM0 6L2 6 2 4 0 4zM4 6L6 6 6 4 4 4z" transform="translate(3 3)"/></g></svg>',
'menu-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke-linejoin="round" stroke="#000"><path d="M12 17.5L21 17.5M3 12.5L21 12.5M3 7.5L21 7.5" /></g></svg>',
'close-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none" fill-rule="evenodd" stroke-linecap="square" stroke="#000"><path d="M18.5 18.5L5.5 5.5M5.5 18.5L18.5 5.5" /></g></svg>',
'close-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g stroke="#000000"><line x1="12.5" y1="12.5" x2="3.5" y2="3.5"></line><line x1="3.5" y1="12.5" x2="12.5" y2="3.5"></line></g></svg>',
'arrow-left-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g stroke="#005eb8" fill="none" fill-rule="evenodd"><path d="M3.667 7.667L13.333 7.667"/><path stroke-linecap="square" d="M7.333 11L3.667 7.667 7.333 4.329"/></g></svg>',
'external-16':
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g fill="none"><line x1="12.5" y1="3.5" x2="3.5" y2="12.5" id="Path" stroke="#111111"></line><polyline id="Path" stroke="#111111" points="6.5 3.5 12.5 3.5 12.5 9.5"></polyline></g></svg>',
'external-24':
'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g fill="none"><line x1="4.5" y1="19.5" x2="18.5" y2="4.5" stroke="#000000"></line><polyline stroke="#000000" stroke-linecap="square" points="18.5 13.5 18.5 4.5 9.5 4.5"></polyline></g></svg>',
);
/* stylelint-enable */
@keyframes header-dropdown {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
%badge {
position: relative;
display: inline-block;
border-radius: 50%;
text-transform: uppercase;
white-space: nowrap;
vertical-align: middle;
color: $white-strong;
background-color: $dark-blue;
}
%badge-sm {
@extend %badge;
height: $badge-height-sm;
min-width: $badge-height-sm;
padding: 0 map-get($spacers, '8p');
border-radius: remsize($badge-height-sm);
font-size: $btn-font-size-sm;
line-height: remsize($badge-height-sm);
letter-spacing: remsize(1.11);
}
%badge-xs {
@extend %badge;
height: $badge-height-xs;
min-width: $badge-height-xs;
padding: 0 map-get($spacers, '4p');
border-radius: remsize($badge-height-xs);
font-size: remsize(10);
line-height: remsize($badge-height-xs);
letter-spacing: normal;
position: absolute;
left: 22px;
top: 4px;
@include media-breakpoint-up(1280, $header-breakpoints) {
left: 16px;
top: 7px;
}
}
%badge-lg {
@extend %badge;
min-height: 32px;
min-width: 32px;
line-height: 32px;
font-size: remsize(12px);
letter-spacing: remsize(1.2);
}
%cart-table-td {
display: block;
&:first-child {
width: 220px;
padding-left: map-get($spacers, '24p');
text-align: left;
}
&:nth-child(2) {
width: 68px; // 56px + padding 12px
text-align: center;
}
&:last-child {
width: 130px; // 100px + padding 30px
padding-right: map-get($spacers, '24p');
text-align: right;
}
}
@mixin header-overlay-menu() {
background-color: $white;
left: 0;
right: 0;
overflow-y: auto;
overflow-x: hidden;
transform: translateX(100%);
will-change: transform;
pointer-events: none;
transition: transform 200ms ease-in;
@include media-breakpoint-up(1024, $header-breakpoints) {
left: calc(100% - 396px);
}
&.header-show {
pointer-events: auto;
transform: none;
transition: transform 400ms ease-out;
}
}
@mixin header-overlay-menu-fixed() {
position: fixed;
top: $small-ribbon-height;
bottom: 0;
z-index: $zindex-fixed;
overflow-y: hidden;
display: flex;
flex-direction: column;
&.header-show {
@include media-breakpoint-up(1024, $header-breakpoints) {
box-shadow: map-get(map-get($shadows, md), light);
}
}
@include media-breakpoint-up(1024, $header-breakpoints) {
top: 0;
}
}
@mixin header-focusable($pseudoElement: 'after') {
position: relative;
&:focus {
outline: none;
&:#{$pseudoElement} {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
@include input-focus(true);
}
}
}
%header-focusable {
@include header-focusable();
}
%header-focusable-overflow {
@extend %header-focusable;
&:focus:after {
left: 1px;
right: 1px;
top: 1px;
bottom: 1px;
}
}
%header-focusable-before {
@include header-focusable('before');
}
%header-focusable-before-overflow {
@extend %header-focusable-before;
&:focus:before {
left: 1px;
right: 1px;
top: 1px;
bottom: 1px;
}
}
%header-dropdown {
@include media-breakpoint-up(1024, $header-breakpoints) {
position: absolute;
top: 56px;
right: 0;
z-index: $zindex-popover;
padding: map-get($spacers, '16p');
border-radius: 3px;
background-color: #fff;
min-width: map-get($spacers, '64p');
&:not(.header-show) {
display: none;
}
&.header-show.header-show {
animation-name: header-dropdown;
animation-duration: $transition-duration-medium;
box-shadow: 0 0 16px 0 rgba(35, 35, 35, 0.2);
}
}
}
// styles
%header-button {
position: relative;
border: none;
background-color: transparent;
padding: 0;
font-size: inherit;
display: inline-block;
min-width: 48px;
min-height: 48px;
line-height: 48px;
letter-spacing: inherit;
vertical-align: middle;
text-align: center;
cursor: pointer;
text-decoration: none;
box-sizing: border-box;
white-space: nowrap;
transition: color $transition-duration-fast ease-in-out;
}
%header-icon-button {
font-size: 0;
display: flex;
align-items: center;
color: $black-normal;
letter-spacing: inherit;
line-height: 48px;
vertical-align: initial;
&.header-active,
&:hover {
color: $black-strong;
}
@include media-breakpoint-up(1280, $header-breakpoints) {
font-size: inherit;
}
&:before {
content: '';
display: block;
width: map-get($icon-sizes, sm) * 1px;
height: map-get($icon-sizes, sm) * 1px;
position: absolute;
left: map-get($spacers, '12p');
top: map-get($spacers, '12p');
@include media-breakpoint-up(1280, $header-breakpoints) {
position: static;
margin: 0 map-get($spacers, '8p');
width: map-get($icon-sizes, xs) * 1px;
height: map-get($icon-sizes, xs) * 1px;
}
}
@include media-breakpoint-up(1280, $header-breakpoints) {
padding-right: map-get($spacers, '8p');
}
}
@mixin header-icon-button-image($icon, $iconLg: false) {
&:before {
background-image: get-icon($header-icons, $icon);
@include media-breakpoint-up(1280, $header-breakpoints) {
@if ($iconLg) {
background-image: get-icon($header-icons, $iconLg);
}
}
}
}
%header-normalized-link {
border: none;
background-color: transparent;
cursor: pointer;
padding: 0;
font-size: inherit;
letter-spacing: inherit;
line-height: inherit;
&,
&:hover {
text-decoration: none;
}
&:focus {
outline: none;
}
}
%header-link {
@extend %header-normalized-link;
&,
&:link,
&:visited {
color: $black-normal;
}
&.header-active,
&:hover,
&:active {
color: $black-strong;
}
transition: color $transition-duration-fast ease-in-out;
}
%header-divider {
margin: map-get($spacers, '8p') 0;
padding: 0;
border: 0;
opacity: 1;
border-top: 1px solid $black-10;
}
%header-menu-divider {
@extend %header-divider;
background-color: inherit;
width: inherit;
height: inherit;
color: inherit;
margin: map-get($spacers, '8p') ($grid-gutter-width / 2);
@include media-breakpoint-up(768, $header-breakpoints) {
margin: map-get($spacers, '8p') map-get($spacers, '24p');
}
}
%header-scroll {
overflow-y: auto;
scrollbar-width: thin;
&::-webkit-scrollbar {
background-color: $light-gray;
width: 5px;
}
&::-webkit-scrollbar-thumb {
background-color: $dark-gray;
}
}
%header-menu-dropdown-item {
@include responsiveFont($type-p-sm, false);
box-sizing: border-box;
color: $black-normal;
background-color: transparent;
border: none;
min-height: 48px;
padding: 0 map-get($spacers, '12p');
white-space: nowrap;
display: flex;
width: 100%;
vertical-align: initial;
&:active,
&:hover {
background-color: $black-05;
color: $black-normal;
&.header-disabled {
background-color: transparent;
}
}
&:focus {
outline: none;
}
}
%header-menu-item-size {
display: flex;
min-height: 48px;
align-items: center;
@include media-breakpoint-up(768, $header-breakpoints) {
min-height: 56px;
}
}
%header-menu-item-padding {
box-sizing: border-box;
padding-left: ($grid-gutter-width / 2);
padding-right: ($grid-gutter-width / 2);
@include media-breakpoint-up(768, $header-breakpoints) {
padding-left: map-get($spacers, '24p');
padding-right: map-get($spacers, '24p');
}
@include media-breakpoint-up(1024, $header-breakpoints) {
padding-right: $grid-gutter-width;
}
}
%header-menu-dropdown-button {
display: flex;
align-items: center;
vertical-align: initial;
&:after {
background-image: get-icon($header-icons, 'chevron-right-24');
display: block;
margin-left: auto;
content: '';
width: map-get($icon-sizes, sm) * 1px;
height: map-get($icon-sizes, sm) * 1px;
}
}
%header-dropdown-toggle {
@extend %header-menu-dropdown-button;
&:after {
width: map-get($icon-sizes, xs) * 1px;
height: map-get($icon-sizes, xs) * 1px;
background-image: get-icon($header-icons, 'chevron-down-16');
opacity: 0.6;
margin-left: map-get($spacers, '8p');
}
&.header-active:after,
&:hover:after {
opacity: 0.95;
}
}
@keyframes header-bottom-ribbon-zindex-change {
0% {
position: sticky;
z-index: -1;
}
}
.header {
color: $body-color;
font-family: $font-family-sans-serif;
box-shadow: 0px 5px 10px 0px rgba(35, 35, 35, 0.15);
&,
&-container {
position: sticky;
top: 0;
z-index: $zindex-sticky;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
*:focus {
outline: none;
}
svg {
overflow: hidden;
vertical-align: middle;
}
&-heading {
@include responsiveFont($type-p-md, false);
font-family: inherit;
text-transform: none;
color: $black-strong;
margin: 0;
}
&-link {
@extend %header-normalized-link;
@extend %header-focusable-before;
display: inline-flex;
fill: $link-color;
stroke: $link-color;
&,
&:link,
&:visited,
&:hover,
&:active {
color: $link-color;
}
&-text {
@extend %link-underline;
}
&.header-disabled {
color: $text-muted;
& .header-link-text {
background-image: none;
}
}
&:hover .header-link-text {
@extend %link-underline-hover;
}
&.header-active {
&,
&:link,
&:visited {
color: $link-color;
}
}
&.header-selected {
&:after {
content: '';
display: block;
width: map-get($icon-sizes, sm) * 1px;
height: map-get($icon-sizes, sm) * 1px;
background-image: get-icon($header-icons, 'tick-24');
margin-left: map-get($spacers, '8p');
}
}
}
&-popover-link {
box-sizing: border-box;
@include responsiveFont($type-p-sm, false);
display: flex;
align-items: center;
white-space: nowrap;
padding: map-get($spacers, '8p') map-get($spacers, '24p');
&-icon {
display: inline-flex;
width: map-get($icon-sizes, xs) * 1px;
height: map-get($icon-sizes, xs) * 1px;
margin-right: map-get($spacers, '4p');
}
}
&-popover-info {
display: inline-block;
padding: 0 map-get($spacers, '24p') map-get($spacers, '4p');
}
&-disabled {
color: $text-muted;
fill: $text-muted;
stroke: $text-muted;
}
&-apps {
position: absolute;
display: flex;
left: 0;
right: 0;
top: 0;
height: $small-ribbon-height;
background-color: $light-gray;
line-height: $small-ribbon-height;
margin-right: auto;
@include media-breakpoint-up(768, $header-breakpoints) {
padding-left: map-get($spacers, '24p');
}
@include media-breakpoint-up(1024, $header-breakpoints) {
position: static;
height: auto;
padding-left: 0;
background-color: $bg-light-primary;
line-height: $ribbon-height;
}
&-item {
@extend %header-link;
@extend %header-focusable;
display: block;
padding: 0 map-get($spacers, '16p');
background-color: transparent;
white-space: nowrap;
@include media-breakpoint-up(1024, $header-breakpoints) {
padding: 0 map-get($spacers, '12p');
}
&.header-active {
font-weight: bold;
background-color: $bg-light-primary;
@include media-breakpoint-up(1024, $header-breakpoints) {
background-color: $light-gray;
}
}
}
}
&-skip {
&-ribbon {
@include responsiveFont($type-p-md, false);
padding: 0 $grid-gutter-width;
height: 0;
background-color: $bg-dark-secondary;
display: flex;
align-items: center;
color: $white;
transition: height 0.4s ease-in-out;
&:focus-within {
height: $small-ribbon-height;
}
}
&-link {
margin-right: 8px;
padding: 2px 8px;
border-radius: 2px;
border: 1px solid transparent;
&,
&:link,
&:visited,
&:hover,
&:active {
color: $white;
}
&:focus {
border-color: $white;
outline: none;
}
&:first-of-type {
margin-left: 16px;
}
}
}
&-top-ribbon {
@include responsiveFont($type-p-xs, false);
box-sizing: border-box;
position: relative;
display: flex;
align-items: center;
height: $ribbon-height + $small-ribbon-height;
padding-top: $small-ribbon-height;
padding-right: ($grid-gutter-width / 2) - map-get($spacers, '12p');
background-color: $bg-light-primary;
@include media-breakpoint-up(768, $header-breakpoints) {
padding-right: map-get($spacers, '12p');
}
@include media-breakpoint-up(1024, $header-breakpoints) {
padding-top: 0;
padding-right: $grid-gutter-width - map-get($spacers, '12p');
height: $ribbon-height;
}
@include media-breakpoint-up(1280, $header-breakpoints) {
padding-right: $grid-gutter-width - map-get($spacers, '8p');
}
}
&-brand {
position: relative;
display: flex;
align-items: center;
justify-content: center;
align-self: stretch;
flex-shrink: 0;
width: 90px;
margin-right: auto;
&:before {
content: '';
display: block;
background-image: get-icon($header-icons, 'motorola-logo-48');
width: 56px;
height: 48px;
@include media-breakpoint-up(768, $header-breakpoints) {
background-image: get-icon($header-icons, 'motorola-logo-24');
width: 263px;
height: 24px;
}
}
@include media-breakpoint-up(768, $header-breakpoints) {
width: 317px;
}
@include media-breakpoint-up(1024, $header-breakpoints) {
margin-right: 0;
}
}
&-search {
@include overlay(fixed);
display: flex;
justify-content: center;
z-index: $zindex-fixed;
opacity: 0;
pointer-events: none;
&:before {
@include overlay;
display: block;
content: '';
background-color: rgba(0, 0, 0, 0.9);
}
@include media-breakpoint-up(1280, $header-breakpoints) {
position: static;
top: unset;
bottom: unset;
z-index: auto;
background-color: transparent;
width: auto;
opacity: 1;
pointer-events: auto;
margin-left: auto;
margin-right: map-get($spacers, '24p');
flex: 0 1 255px;
&:before {
display: none;
}
}
&-wrapper {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
z-index: $zindex-modal;
transform: translateY(-100%);
will-change: transform;
pointer-events: none;
width: 100%;
padding: 0 map-get($spacers, '24p');
margin-top: map-get($spacers, '104p');
@include media-breakpoint-up(1280, $header-breakpoints) {
position: relative;
pointer-events: auto;
transform: none;
justify-content: flex-start;
margin-top: 0;
padding: 0;
}
}
&-reset,
&-submit {
@include input-focus-selector();
@include tap-area-selector();
@include transition($btn-transition);
position: relative;
flex: none;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
font-size: 0;
padding: 0;
margin: 0;
background: transparent;
border: $btn-border-width solid transparent;
&:after {
display: block;
content: '';
}
}
&-reset {
@include input-focus-selector();
border-radius: 50%;
width: 32px;
height: 32px;
margin-right: 8px;
transition: background-color $transition-duration-fast ease-in-out;
&:after {
background-image: get-icon($header-icons, 'close-24');
width: map-get($icon-sizes, sm) * 1px;
height: map-get($icon-sizes, sm) * 1px;
opacity: 0.6;
transition: opacity $transition-duration-fast ease-in-out;
}
@include media-breakpoint-up(1280, $header-breakpoints) {
width: 24px;
height: 24px;
margin-right: 4px;
&:after {
background-image: get-icon($header-icons, 'close-16');
width: map-get($icon-sizes, xs) * 1px;
height: map-get($icon-sizes, xs) * 1px;
}
}
&:focus,
&:hover {
background-color: $black-10;
outline: none;
&:after {
opacity: 0.95;
}
}
}
&-submit {
width: 80px;
height: 48px;
border-radius: 24px;
background-color: $dark-gray;
color: $white-95;
&:after {
background-image: get-icon($header-icons, 'search-32');
width: map-get($icon-sizes, md) * 1px;
height: map-get($icon-sizes, md) * 1px;
opacity: 0.95;
}
&:hover {
background: combineOverlays($black-25, $dark-gray);
}
&:focus {
outline: none;
}
@include media-breakpoint-up(1280, $header-breakpoints) {
width: 48px;
height: 32px;
border-radius: 16px;
background: $black-95;
&:hover {
background: combineOverlays($white-25, $black-95);
}
&:not(:hover):active {
background: $black-95;
}
&:after {
width: map-get($icon-sizes, sm) * 1px;
height: map-get($icon-sizes, sm) * 1px;
background-image: get-icon($header-icons, 'search-24-black');
}
}
}
&-input {
flex: 0 1 540px;
box-sizing: border-box;
padding-left: 24px;
padding-right: 124px;
margin-right: -120px;
height: 48px;
border-radius: 24px;
background-color: $white;
border: 1px solid $black-muted;
color: $input-color;
vertical-align: initial;
&::placeholder {
color: $body-color;
}
@include input-focus-selector(false);
&:placeholder-shown {
padding-right: 92px;
~ .header-search-reset {
visibility: hidden;
}
}
html.ie & {
padding-top: 4px;
padding-bottom: 4px;
}
&:hover:not(:focus) {
border-color: $black-normal;
}
@include responsiveFont($type-p-md, false);
@include media-breakpoint-up(1280, $header-breakpoints) {
@include responsiveFont($type-p-sm, false);
width: 100%;
margin-right: -76px;
height: 32px;
border-radius: 16px;
padding-left: 16px;
padding-right: 80px;
flex-basis: auto;
&:placeholder-shown {
padding-right: 56px;
}
}
}
&.header-animatable {
transition: opacity $transition-duration-fast linear;
.header-search-wrapper {
transition: transform $transition-duration-medium ease-out;
}
}
&.header-show {
opacity: 1;
pointer-events: auto;
.header-search-wrapper {
pointer-events: auto;
transform: none;
}
}
&-button,
&-close-button {
@extend %header-button;
@extend %header-icon-button;
@extend %header-focusable;
@include media-breakpoint-up(1280, $header-breakpoints) {
display: none;
}
}
&-button {
@include header-icon-button-image('search-24');
}
&-close-button {
@include header-icon-button-image('close-big-24');
position: fixed;
top: 20px;
right: 20px;
}
}
&-section {
height: $small-ribbon-height;
border-radius: 5px;
background-color: $black-05;
display: flex;
align-items: center;
padding: 0 map-get($spacers, '12p') 0 map-get($spacers, '8p');
margin-left: auto;
margin-right: map-get($spacers, '8p');
}
&-support,
&-quicklinks,
&-locale {
display: none;