File size: 2,371 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.header {
  display: flex;
  flex-direction: column;
}

.header__top {
  height: 60px;
  background-color: #131921;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__left-nav {
  margin-left: 10px;
  padding: 5px 5px 2px 5px;
  color: white;
  border: 1px solid #666;
}

.header__logo {
  width: 100px;
  object-fit: contain;
  margin: 18px 20px 0 20px;
}

.header__search {
  display: flex;
  flex: 1;
  align-items: center;
  border-radius: 24px;
}

.header__searchInput {
  height: 36px;
  padding: 10px;
  border: none;
  width: 100%;
}

.header__searchInput:active {
  border: none;
}

.header__searchIcon {
  padding: 6px;
  height: 24px !important;
  background-color: #cd9042;
}

.header__nav,
.header__nav span {
  display: flex;
  justify-content: center;
}

.header__link:first-child {
  width: 130px;
}

.header__link {
  color: white;
  text-decoration: none;
}

.header__option {
  height: 5vh;
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}

.header__optionLineOne {
  font-size: 12px;
}

.header__optionLineTwo {
  font-size: 14px;
  font-weight: 800;
}

.header__optionBasket {
  display: flex;
  align-items: center;
  color: white;
}

.basket__count {
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 100px;
  margin: 0 15px 0 -10px;
  padding: 2px 4px;
}

.header__flag {
  width: 24px;
  transform: scale(1.5);
  position: relative;
  display: inline-block;
  height: 18px;
  margin-left: 15px;
  margin-right: 3px;
  background-image: url("https://m.media-amazon.com/images/G/01/AUIClients/InternationalCustomerPreferencesNavAssets-icp_sprite-7285cab5f8342a9a80f19b7ae5b155f77772ffc6._V2_.png");
  background-position: 0 -166px;
}

.header__optionBasket > .MuiSvgIcon-root {
  width: 34px !important;
  height: 34px !important;
}

.header__bottom {
  display: flex;
  align-items: center;
  padding-top: 5px;
  height: 40px;
  color: white;
  background-color: #232f3e;
}

.header__address {
  display: flex;
}

.header__address-icon {
  vertical-align: middle;
}

.header__address-icon > .MuiSvgIcon-root {
  font-size: 2rem;
}

.header__bottom-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

.header__bottom-nav > span {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 600;
}

.header__left-nav > .MuiSvgIcon-root {
  font-size: 2em !important;
}