├── Batch Imports & Audience Sync.postman_collection.json
├── README.md
└── spinburger
├── checkout.js
├── index.html
├── product_details.js
├── script.js
├── style.css
└── style2.css
/Batch Imports & Audience Sync.postman_collection.json:
--------------------------------------------------------------------------------
1 | {
2 | "info": {
3 | "_postman_id": "49691107-089f-40f9-87d9-c4863a2a0e58",
4 | "name": "Batch Imports & Audience Sync",
5 | "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
6 | },
7 | "item": [
8 | {
9 | "name": "Batch Import",
10 | "item": [
11 | {
12 | "name": "1. Pre-signed Request",
13 | "event": [
14 | {
15 | "listen": "test",
16 | "script": {
17 | "exec": [
18 | "var jsonData = JSON.parse(responseBody);",
19 | "postman.setEnvironmentVariable(\"uploadURL\", jsonData.location.href);",
20 | "postman.setEnvironmentVariable(\"batchRef\", jsonData.ref);"
21 | ],
22 | "type": "text/javascript"
23 | }
24 | }
25 | ],
26 | "request": {
27 | "auth": {
28 | "type": "basic",
29 | "basic": [
30 | {
31 | "key": "password",
32 | "value": "{{password}}",
33 | "type": "string"
34 | },
35 | {
36 | "key": "username",
37 | "value": "{{username}}",
38 | "type": "string"
39 | }
40 | ]
41 | },
42 | "method": "PUT",
43 | "header": [
44 | {
45 | "key": "Accept",
46 | "value": "application/json",
47 | "type": "text"
48 | }
49 | ],
50 | "body": {
51 | "mode": "raw",
52 | "raw": "{\n \"checksum\": \"7ac8d945ec4e47cbf7d6bb7fbb5c0b0b\",\n \"size\": 365\n}\n",
53 | "options": {
54 | "raw": {
55 | "language": "json"
56 | }
57 | }
58 | },
59 | "url": {
60 | "raw": "https://api.boxever.com/v2/batches/380f7fe7-0d22-4fbb-abf6-d19960e6ca0e",
61 | "protocol": "https",
62 | "host": [
63 | "api",
64 | "boxever",
65 | "com"
66 | ],
67 | "path": [
68 | "v2",
69 | "batches",
70 | "380f7fe7-0d22-4fbb-abf6-d19960e6ca0e"
71 | ]
72 | }
73 | },
74 | "response": []
75 | },
76 | {
77 | "name": "2. Upload File",
78 | "event": [
79 | {
80 | "listen": "test",
81 | "script": {
82 | "exec": [
83 | ""
84 | ],
85 | "type": "text/javascript"
86 | }
87 | }
88 | ],
89 | "protocolProfileBehavior": {
90 | "disabledSystemHeaders": {
91 | "content-type": true
92 | }
93 | },
94 | "request": {
95 | "auth": {
96 | "type": "noauth"
97 | },
98 | "method": "PUT",
99 | "header": [
100 | {
101 | "key": "Accept",
102 | "value": "application/json",
103 | "type": "text"
104 | },
105 | {
106 | "key": "x-amz-server-side-encryption",
107 | "value": "AES256",
108 | "type": "text"
109 | },
110 | {
111 | "key": "Content-Md5",
112 | "value": "esjZRexOR8v31rt/u1wLCw==",
113 | "type": "text"
114 | }
115 | ],
116 | "body": {
117 | "mode": "file",
118 | "file": {
119 | "src": "/Users/sao/aretha_order.json.gz"
120 | }
121 | },
122 | "url": {
123 | "raw": "{{uploadURL}}",
124 | "host": [
125 | "{{uploadURL}}"
126 | ]
127 | }
128 | },
129 | "response": []
130 | },
131 | {
132 | "name": "3. Check Status",
133 | "event": [
134 | {
135 | "listen": "test",
136 | "script": {
137 | "exec": [
138 | ""
139 | ],
140 | "type": "text/javascript"
141 | }
142 | }
143 | ],
144 | "protocolProfileBehavior": {
145 | "disableBodyPruning": true
146 | },
147 | "request": {
148 | "auth": {
149 | "type": "basic",
150 | "basic": [
151 | {
152 | "key": "password",
153 | "value": "{{password}}",
154 | "type": "string"
155 | },
156 | {
157 | "key": "username",
158 | "value": "{{username}}",
159 | "type": "string"
160 | }
161 | ]
162 | },
163 | "method": "GET",
164 | "header": [
165 | {
166 | "key": "Accept",
167 | "value": "application/json",
168 | "type": "text"
169 | }
170 | ],
171 | "body": {
172 | "mode": "raw",
173 | "raw": "",
174 | "options": {
175 | "raw": {
176 | "language": "json"
177 | }
178 | }
179 | },
180 | "url": {
181 | "raw": "https://api.boxever.com/v2/batches/{{batchRef}}",
182 | "protocol": "https",
183 | "host": [
184 | "api",
185 | "boxever",
186 | "com"
187 | ],
188 | "path": [
189 | "v2",
190 | "batches",
191 | "{{batchRef}}"
192 | ]
193 | }
194 | },
195 | "response": []
196 | }
197 | ]
198 | },
199 | {
200 | "name": "Audience Sync",
201 | "item": [
202 | {
203 | "name": "1. Trigger Audience Sync",
204 | "event": [
205 | {
206 | "listen": "test",
207 | "script": {
208 | "exec": [
209 | "var jsonData = JSON.parse(responseBody);",
210 | "postman.setEnvironmentVariable(\"batchFlowRef\", jsonData.ref);"
211 | ],
212 | "type": "text/javascript"
213 | }
214 | }
215 | ],
216 | "request": {
217 | "auth": {
218 | "type": "basic",
219 | "basic": [
220 | {
221 | "key": "password",
222 | "value": "{{password}}",
223 | "type": "string"
224 | },
225 | {
226 | "key": "username",
227 | "value": "{{username}}",
228 | "type": "string"
229 | }
230 | ]
231 | },
232 | "method": "POST",
233 | "header": [
234 | {
235 | "key": "Accept",
236 | "value": "application/json",
237 | "type": "text"
238 | }
239 | ],
240 | "body": {
241 | "mode": "raw",
242 | "raw": "{\n \"flowRef\": \"c6739c0f-b241-4586-9699-0b0ccdfbf97c\",\n \"segmentRef\": \"ea3b0580-ae3d-4a44-9a3a-e3f6c6d55f4d\",\n \"datasetDate\": \"2021-10-29T00:00:00.000Z\"\n}",
243 | "options": {
244 | "raw": {
245 | "language": "json"
246 | }
247 | }
248 | },
249 | "url": {
250 | "raw": "https://api.boxever.com/v2/batchFlowsTrigger",
251 | "protocol": "https",
252 | "host": [
253 | "api",
254 | "boxever",
255 | "com"
256 | ],
257 | "path": [
258 | "v2",
259 | "batchFlowsTrigger"
260 | ],
261 | "query": [
262 | {
263 | "key": "expand",
264 | "value": "extPropensities",
265 | "disabled": true
266 | }
267 | ]
268 | }
269 | },
270 | "response": []
271 | },
272 | {
273 | "name": "2. Get Status",
274 | "event": [
275 | {
276 | "listen": "test",
277 | "script": {
278 | "exec": [
279 | ""
280 | ],
281 | "type": "text/javascript"
282 | }
283 | }
284 | ],
285 | "protocolProfileBehavior": {
286 | "disableBodyPruning": true
287 | },
288 | "request": {
289 | "auth": {
290 | "type": "basic",
291 | "basic": [
292 | {
293 | "key": "password",
294 | "value": "{{password}}",
295 | "type": "string"
296 | },
297 | {
298 | "key": "username",
299 | "value": "{{username}}",
300 | "type": "string"
301 | }
302 | ]
303 | },
304 | "method": "GET",
305 | "header": [
306 | {
307 | "key": "Accept",
308 | "value": "application/json",
309 | "type": "text"
310 | }
311 | ],
312 | "body": {
313 | "mode": "raw",
314 | "raw": "",
315 | "options": {
316 | "raw": {
317 | "language": "json"
318 | }
319 | }
320 | },
321 | "url": {
322 | "raw": "https://api.boxever.com/v2/batchFlowsJob/{{batchFlowRef}}",
323 | "protocol": "https",
324 | "host": [
325 | "api",
326 | "boxever",
327 | "com"
328 | ],
329 | "path": [
330 | "v2",
331 | "batchFlowsJob",
332 | "{{batchFlowRef}}"
333 | ],
334 | "query": [
335 | {
336 | "key": "expand",
337 | "value": "true",
338 | "disabled": true
339 | }
340 | ]
341 | }
342 | },
343 | "response": []
344 | },
345 | {
346 | "name": "3. Get Files",
347 | "event": [
348 | {
349 | "listen": "test",
350 | "script": {
351 | "exec": [
352 | ""
353 | ],
354 | "type": "text/javascript"
355 | }
356 | }
357 | ],
358 | "protocolProfileBehavior": {
359 | "disableBodyPruning": true
360 | },
361 | "request": {
362 | "auth": {
363 | "type": "basic",
364 | "basic": [
365 | {
366 | "key": "password",
367 | "value": "{{password}}",
368 | "type": "string"
369 | },
370 | {
371 | "key": "username",
372 | "value": "{{username}}",
373 | "type": "string"
374 | }
375 | ]
376 | },
377 | "method": "GET",
378 | "header": [
379 | {
380 | "key": "Accept",
381 | "value": "application/json",
382 | "type": "text"
383 | }
384 | ],
385 | "body": {
386 | "mode": "raw",
387 | "raw": "",
388 | "options": {
389 | "raw": {
390 | "language": "json"
391 | }
392 | }
393 | },
394 | "url": {
395 | "raw": "https://api-eu-west-1-production.boxever.com/v2/batchFlowOutput/{{batchFlowRef}}/files",
396 | "protocol": "https",
397 | "host": [
398 | "api-eu-west-1-production",
399 | "boxever",
400 | "com"
401 | ],
402 | "path": [
403 | "v2",
404 | "batchFlowOutput",
405 | "{{batchFlowRef}}",
406 | "files"
407 | ]
408 | }
409 | },
410 | "response": []
411 | }
412 | ]
413 | }
414 | ]
415 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # TechnicalTrainingCourse
2 | A repo with helpful projects and files for Sitecore CDP and Personalise technical partner training.
3 |
4 |
--------------------------------------------------------------------------------
/spinburger/checkout.js:
--------------------------------------------------------------------------------
1 | var item_count = 0
2 |
3 | function AddElement(itemId,imageURL,productName,productPrice,productDescription,destination){
4 |
5 | var list_item = document.createElement("div");
6 | list_item.id = itemId
7 | list_item.style.cssText += 'display: flex;'+
8 | 'align-items: center;'+
9 | 'justify-content: space-between;'+
10 | 'margin-top: 20px;'
11 |
12 | var img = document.createElement("img");
13 | img.src = imageURL;
14 | img.alt = "Image";
15 |
16 | img.style.cssText +=
17 | 'margin-right: 20px;'+
18 | 'width: 160px;'+
19 | 'height: 160px;'+
20 | 'background-color: #099;'
21 |
22 | list_item.appendChild(img);
23 |
24 | var list_item_text = document.createElement("div");
25 | list_item_text.className = "tm-black-bg tm-list-item-text";
26 | list_item_text.style.cssText +=
27 | 'padding: 20px 25px;'+
28 | 'flex: 1;'
29 |
30 | var heading = document.createElement("h3");
31 | heading.innerHTML = productName
32 | heading.style.cssText +=
33 | 'display: flex;'+
34 | 'justify-content: space-between;'+
35 | 'margin-top: 0;'
36 |
37 | var price = document.createElement("span");
38 | price.innerHTML = productPrice
39 | price.style.cssText += 'color: #96FEFF; '
40 | heading.appendChild(price);
41 |
42 | var paragraph = document.createElement("p");
43 | paragraph.innerHTML = productDescription
44 |
45 | var removeForm = document.createElement("form");
46 | removeForm.action = "javascript:Remove("+itemId+","+destination+")";
47 |
48 | var removeParagraph = document.createElement("p");
49 | var removeButton = document.createElement("button");
50 | removeButton.innerHTML = "Remove from basket";
51 |
52 | removeParagraph.appendChild(removeButton);
53 | removeForm.appendChild(removeParagraph);
54 |
55 | list_item_text.appendChild(heading);
56 | list_item_text.appendChild(paragraph);
57 | list_item_text.appendChild(removeForm);
58 | list_item.appendChild(list_item_text);
59 | document.getElementById(destination).prepend(list_item);
60 |
61 | }
62 |
63 | function Add(productid,buttonId) {
64 |
65 | document.getElementById(buttonId).innerHTML = "Added to basket"
66 |
67 | item_count = item_count + 1;
68 |
69 | let item_id = "ITEM_" + item_count;
70 |
71 | addTocart(item_id, productid);
72 |
73 | document.getElementById("checkoutPrice").innerHTML = "$" + data.cartTotal.toFixed(2);
74 |
75 | let productType = data.product[productid].primaryCategory;
76 | let productCurrency = data.product[productid].currency;
77 | let productPrice = data.product[productid].price;
78 | let productName = data.product[productid].productName;
79 |
80 | }
81 |
82 |
83 | function addTocart(itemId, productID) {
84 | data.cart[itemId] = productID;
85 |
86 | let cartSize = Object.keys(data.cart).length;
87 |
88 | document.getElementById("basketMenu").innerHTML = "Checkout " + cartSize +" "
89 |
90 |
91 | var productImage = data.product[productID].imageURL;
92 | var productName = data.product[productID].productName;
93 | var productPrice = data.product[productID].formattedPrice;
94 | var productdescription = data.product[productID].description;
95 |
96 |
97 | data.cartTotal += data.product[productID].price;
98 |
99 | document.getElementById("checkoutPrice").innerHTML = "$" + data.cartTotal.toFixed(2);
100 |
101 | AddElement(itemId,productImage,productName,productPrice,productdescription,"basket")
102 |
103 |
104 | }
105 |
106 | function Remove(element) {
107 |
108 | let itemId = element.id;
109 |
110 | data.cartTotal -= data.product[data.cart[itemId]].price;
111 |
112 | delete data.cart[itemId]
113 |
114 | let cartSize = Object.keys(data.cart).length;
115 |
116 | document.getElementById("basketMenu").innerHTML = "Checkout " + cartSize +" "
117 | document.getElementById("checkoutPrice").innerHTML = "$" + data.cartTotal.toFixed(2);
118 |
119 | element.parentNode.removeChild(element);
120 |
121 | }
122 |
123 | function Checkout() {
124 |
125 | let confirmedProducts = []
126 |
127 | for (const [itemId, productId] of Object.entries(data.cart)) {
128 |
129 | confirmedProducts.push({
130 | item_id: itemId
131 | })
132 |
133 | let productElement = document.getElementById(itemId);
134 |
135 | Remove(productElement)
136 | }
137 |
138 | }
139 |
--------------------------------------------------------------------------------
/spinburger/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Spin Burger
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
53 |
54 |
55 |
56 |
57 |
58 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
Classic Burger$6.50
77 |
Classic juicy meaty beef burger, with onions, tomatoes and fresh lettuce
78 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
Cheese Burger$7.00
88 |
Classic juicy meaty beef burger topped with delicious melting chedder cheese
89 |
92 |
93 |
94 |
95 |
96 |
97 |
Chicken Burger$7.00
98 |
Crispy seasoned chicken breast, piled onto soft rolls with onion, avocado, lettuce, tomato and garlic mayo
99 |
102 |
103 |
104 |
105 |
106 |
107 |
Veggie Burger$7.99
108 |
Packed with flavour, these vegan bean burgers are healthy and seriously satisfying
109 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
Fries$2.35
123 |
Prepared by cutting the potato into even strips, then drying and frying it in a deep fryer
124 |
127 |
128 |
129 |
130 |
131 |
132 |
Sweet Potato Fries$2.99
133 |
A variation of French fries using sweet potato instead of potato. Served lightly salted
134 |
137 |
138 |
139 |
140 |
141 |
142 |
Onion Rings$2.50
143 |
Onion dipped in batter or bread crumbs and then deep fried
144 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
Coca Cola$0.95
158 |
A 330ml can of Coca Cola
159 |
162 |
163 |
164 |
165 |
166 |
167 |
Milkshake$2.50
168 |
This is the ultimate Nutella milkshake recipe. It's creamy, rich and nutty
169 |
172 |
173 |
174 |
175 |
176 |
177 |
Water$1.05
178 |
A 500ml bottle of spring water
179 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
Wave Cafe is a one-page video background HTML CSS template from Tooplate. You can use this for your business websites.
197 |
You can also use this for your client websites which you get paid for your website services. Please tell your friends about us.
198 |
199 |
200 |
201 |
202 |
203 |
204 |
How we began
205 |
If you wish to support us, please contact Tooplate. Thank you. Duis bibendum erat nec ipsum consectetur sodales.
206 |
207 |
208 |
209 |
Donec non urna elit. Quisque ut magna in dui mattis iaculis eu finibus metus. Suspendisse vel mi a lacus finibus vehicula vel ut diam. Nam pellentesque, mi quis ullamcorper.
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
Total$0
219 |
220 |
221 |
224 |
225 |
226 |
227 |
228 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
326 |
327 |
328 |
--------------------------------------------------------------------------------
/spinburger/product_details.js:
--------------------------------------------------------------------------------
1 | var data = {
2 |
3 | product: {
4 | "BURGER_4" : {
5 | productName: "Veggie Burger",
6 | description: "Packed with flavour, these vegan bean burgers are healthy and seriously satisfying",
7 | price: 7.99,
8 | currency: "USD",
9 | formattedPrice: "$7.99",
10 | primaryCategory: "BURGER",
11 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2FScreenshot%202021-11-08%20at%2012.39.45.png?v=1636375225042"
12 | },
13 | "BURGER_2" : {
14 | productName: "Cheese Burger",
15 | description: "Classic juicy meaty beef burger topped with delicious melting chedder cheese",
16 | price: 7.00,
17 | currency: "USD",
18 | formattedPrice: "$7.00",
19 | primaryCategory: "BURGER",
20 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2FScreenshot%202021-11-08%20at%2012.41.06.png?v=1636375284011"
21 | },
22 | "BURGER_1" : {
23 | productName: "Classic Burger",
24 | description: "Classic juicy meaty beef burger, with onions, tomatoes and fresh lettuce",
25 | price: 6.50,
26 | currency: "USD",
27 | formattedPrice: "$6.50",
28 | primaryCategory: "BURGER",
29 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2Fturkey-burger-12.jpeg?v=1636046678187"
30 | },
31 | "BURGER_3" : {
32 | productName: "Chicken Burger",
33 | description: "Crispy seasoned chicken breast, piled onto soft rolls with onion, avocado, lettuce, tomato and garlic mayo.",
34 | price: 7.00,
35 | currency: "USD",
36 | formattedPrice: "$7.00",
37 | primaryCategory: "BURGER",
38 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2FScreenshot%202021-11-08%20at%2012.42.02.png?v=1636375340639"
39 | },
40 | "SIDE_1" : {
41 | productName: "Fries",
42 | description: "prepared by cutting the potato into even strips, then drying and frying it in a deep fryer",
43 | price: 2.35,
44 | currency: "USD",
45 | formattedPrice: "$2.35",
46 | primaryCategory: "SIDE",
47 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2FFrench-fries-b9e3e0c.jpeg?v=1636373214284"
48 | },
49 | "SIDE_2" : {
50 | productName: "Sweet Potato Fries",
51 | description: "A variation of French fries using sweet potato instead of potato. Served lightly salted",
52 | price: 2.99,
53 | currency: "USD",
54 | formattedPrice: "$2.99",
55 | primaryCategory: "SIDE",
56 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2Fbaked-sweet-potato-fries-5.jpeg?v=1636373338736"
57 | },
58 | "SIDE_3" : {
59 | productName: "Onion Rings",
60 | description: "Onion dipped in batter or bread crumbs and then deep fried",
61 | price: 2.50,
62 | currency: "USD",
63 | formattedPrice: "$2.50",
64 | primaryCategory: "SIDE",
65 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2Fhot-and-tasty-onion-rings-2.jpeg?v=1636373650148"
66 | },
67 | "DRINK_1" : {
68 | productName: "Coca Cola",
69 | description: "A 330ml can of Coca Cola",
70 | price: 0.95,
71 | currency: "USD",
72 | formattedPrice: "$0.95",
73 | primaryCategory: "DRINK",
74 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2FAU00099-X.jpeg?v=1636374094065"
75 | },
76 | "DRINK_2" : {
77 | productName: "Milkshake",
78 | description: "This is the ultimate Nutella milkshake recipe. It's creamy, rich and nutty",
79 | price: 2.50,
80 | currency: "USD",
81 | formattedPrice: "$2.50",
82 | primaryCategory: "DRINK",
83 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2FUltimate-Nutella-Milkshake-square.jpeg?v=1636374284631"
84 | },
85 | "DRINK_3" : {
86 | productName: "Water",
87 | description: "A 500ml bottle of spring water",
88 | price: 1.05,
89 | currency: "USD",
90 | formattedPrice: "$1.05",
91 | primaryCategory: "DRINK",
92 | imageURL: "https://cdn.glitch.me/ed0af3cb-3d61-45d0-8687-6868bf4a89a8%2Fscrew-top-gettyimages-85210965.jpeg?v=1636374194027"
93 | }
94 | },
95 | cart: {
96 | //dictionary --> itemId : productId
97 | },
98 | cartTotal: 0
99 | };
100 |
--------------------------------------------------------------------------------
/spinburger/style.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4 | */
5 | .fa,
6 | .fab,
7 | .fad,
8 | .fal,
9 | .far,
10 | .fas {
11 | -moz-osx-font-smoothing: grayscale;
12 | -webkit-font-smoothing: antialiased;
13 | display: inline-block;
14 | font-style: normal;
15 | font-variant: normal;
16 | text-rendering: auto;
17 | line-height: 1;
18 | }
19 | .fa-lg {
20 | font-size: 1.33333em;
21 | line-height: 0.75em;
22 | vertical-align: -0.0667em;
23 | }
24 | .fa-xs {
25 | font-size: 0.75em;
26 | }
27 | .fa-sm {
28 | font-size: 0.875em;
29 | }
30 | .fa-1x {
31 | font-size: 1em;
32 | }
33 | .fa-2x {
34 | font-size: 2em;
35 | }
36 | .fa-3x {
37 | font-size: 3em;
38 | }
39 | .fa-4x {
40 | font-size: 4em;
41 | }
42 | .fa-5x {
43 | font-size: 5em;
44 | }
45 | .fa-6x {
46 | font-size: 6em;
47 | }
48 | .fa-7x {
49 | font-size: 7em;
50 | }
51 | .fa-8x {
52 | font-size: 8em;
53 | }
54 | .fa-9x {
55 | font-size: 9em;
56 | }
57 | .fa-10x {
58 | font-size: 10em;
59 | }
60 | .fa-fw {
61 | text-align: center;
62 | width: 1.25em;
63 | }
64 | .fa-ul {
65 | list-style-type: none;
66 | margin-left: 2.5em;
67 | padding-left: 0;
68 | }
69 | .fa-ul > li {
70 | position: relative;
71 | }
72 | .fa-li {
73 | left: -2em;
74 | position: absolute;
75 | text-align: center;
76 | width: 2em;
77 | line-height: inherit;
78 | }
79 | .fa-border {
80 | border: 0.08em solid #eee;
81 | border-radius: 0.1em;
82 | padding: 0.2em 0.25em 0.15em;
83 | }
84 | .fa-pull-left {
85 | float: left;
86 | }
87 | .fa-pull-right {
88 | float: right;
89 | }
90 | .fa.fa-pull-left,
91 | .fab.fa-pull-left,
92 | .fal.fa-pull-left,
93 | .far.fa-pull-left,
94 | .fas.fa-pull-left {
95 | margin-right: 0.3em;
96 | }
97 | .fa.fa-pull-right,
98 | .fab.fa-pull-right,
99 | .fal.fa-pull-right,
100 | .far.fa-pull-right,
101 | .fas.fa-pull-right {
102 | margin-left: 0.3em;
103 | }
104 | .fa-spin {
105 | -webkit-animation: fa-spin 2s linear infinite;
106 | animation: fa-spin 2s linear infinite;
107 | }
108 | .fa-pulse {
109 | -webkit-animation: fa-spin 1s steps(8) infinite;
110 | animation: fa-spin 1s steps(8) infinite;
111 | }
112 | @-webkit-keyframes fa-spin {
113 | 0% {
114 | -webkit-transform: rotate(0deg);
115 | transform: rotate(0deg);
116 | }
117 | to {
118 | -webkit-transform: rotate(1turn);
119 | transform: rotate(1turn);
120 | }
121 | }
122 | @keyframes fa-spin {
123 | 0% {
124 | -webkit-transform: rotate(0deg);
125 | transform: rotate(0deg);
126 | }
127 | to {
128 | -webkit-transform: rotate(1turn);
129 | transform: rotate(1turn);
130 | }
131 | }
132 | .fa-rotate-90 {
133 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
134 | -webkit-transform: rotate(90deg);
135 | transform: rotate(90deg);
136 | }
137 | .fa-rotate-180 {
138 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
139 | -webkit-transform: rotate(180deg);
140 | transform: rotate(180deg);
141 | }
142 | .fa-rotate-270 {
143 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
144 | -webkit-transform: rotate(270deg);
145 | transform: rotate(270deg);
146 | }
147 | .fa-flip-horizontal {
148 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
149 | -webkit-transform: scaleX(-1);
150 | transform: scaleX(-1);
151 | }
152 | .fa-flip-vertical {
153 | -webkit-transform: scaleY(-1);
154 | transform: scaleY(-1);
155 | }
156 | .fa-flip-both,
157 | .fa-flip-horizontal.fa-flip-vertical,
158 | .fa-flip-vertical {
159 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
160 | }
161 | .fa-flip-both,
162 | .fa-flip-horizontal.fa-flip-vertical {
163 | -webkit-transform: scale(-1);
164 | transform: scale(-1);
165 | }
166 | :root .fa-flip-both,
167 | :root .fa-flip-horizontal,
168 | :root .fa-flip-vertical,
169 | :root .fa-rotate-90,
170 | :root .fa-rotate-180,
171 | :root .fa-rotate-270 {
172 | -webkit-filter: none;
173 | filter: none;
174 | }
175 | .fa-stack {
176 | display: inline-block;
177 | height: 2em;
178 | line-height: 2em;
179 | position: relative;
180 | vertical-align: middle;
181 | width: 2.5em;
182 | }
183 | .fa-stack-1x,
184 | .fa-stack-2x {
185 | left: 0;
186 | position: absolute;
187 | text-align: center;
188 | width: 100%;
189 | }
190 | .fa-stack-1x {
191 | line-height: inherit;
192 | }
193 | .fa-stack-2x {
194 | font-size: 2em;
195 | }
196 | .fa-inverse {
197 | color: #fff;
198 | }
199 | .fa-500px:before {
200 | content: "\f26e";
201 | }
202 | .fa-accessible-icon:before {
203 | content: "\f368";
204 | }
205 | .fa-accusoft:before {
206 | content: "\f369";
207 | }
208 | .fa-acquisitions-incorporated:before {
209 | content: "\f6af";
210 | }
211 | .fa-ad:before {
212 | content: "\f641";
213 | }
214 | .fa-address-book:before {
215 | content: "\f2b9";
216 | }
217 | .fa-address-card:before {
218 | content: "\f2bb";
219 | }
220 | .fa-adjust:before {
221 | content: "\f042";
222 | }
223 | .fa-adn:before {
224 | content: "\f170";
225 | }
226 | .fa-adobe:before {
227 | content: "\f778";
228 | }
229 | .fa-adversal:before {
230 | content: "\f36a";
231 | }
232 | .fa-affiliatetheme:before {
233 | content: "\f36b";
234 | }
235 | .fa-air-freshener:before {
236 | content: "\f5d0";
237 | }
238 | .fa-airbnb:before {
239 | content: "\f834";
240 | }
241 | .fa-algolia:before {
242 | content: "\f36c";
243 | }
244 | .fa-align-center:before {
245 | content: "\f037";
246 | }
247 | .fa-align-justify:before {
248 | content: "\f039";
249 | }
250 | .fa-align-left:before {
251 | content: "\f036";
252 | }
253 | .fa-align-right:before {
254 | content: "\f038";
255 | }
256 | .fa-alipay:before {
257 | content: "\f642";
258 | }
259 | .fa-allergies:before {
260 | content: "\f461";
261 | }
262 | .fa-amazon:before {
263 | content: "\f270";
264 | }
265 | .fa-amazon-pay:before {
266 | content: "\f42c";
267 | }
268 | .fa-ambulance:before {
269 | content: "\f0f9";
270 | }
271 | .fa-american-sign-language-interpreting:before {
272 | content: "\f2a3";
273 | }
274 | .fa-amilia:before {
275 | content: "\f36d";
276 | }
277 | .fa-anchor:before {
278 | content: "\f13d";
279 | }
280 | .fa-android:before {
281 | content: "\f17b";
282 | }
283 | .fa-angellist:before {
284 | content: "\f209";
285 | }
286 | .fa-angle-double-down:before {
287 | content: "\f103";
288 | }
289 | .fa-angle-double-left:before {
290 | content: "\f100";
291 | }
292 | .fa-angle-double-right:before {
293 | content: "\f101";
294 | }
295 | .fa-angle-double-up:before {
296 | content: "\f102";
297 | }
298 | .fa-angle-down:before {
299 | content: "\f107";
300 | }
301 | .fa-angle-left:before {
302 | content: "\f104";
303 | }
304 | .fa-angle-right:before {
305 | content: "\f105";
306 | }
307 | .fa-angle-up:before {
308 | content: "\f106";
309 | }
310 | .fa-angry:before {
311 | content: "\f556";
312 | }
313 | .fa-angrycreative:before {
314 | content: "\f36e";
315 | }
316 | .fa-angular:before {
317 | content: "\f420";
318 | }
319 | .fa-ankh:before {
320 | content: "\f644";
321 | }
322 | .fa-app-store:before {
323 | content: "\f36f";
324 | }
325 | .fa-app-store-ios:before {
326 | content: "\f370";
327 | }
328 | .fa-apper:before {
329 | content: "\f371";
330 | }
331 | .fa-apple:before {
332 | content: "\f179";
333 | }
334 | .fa-apple-alt:before {
335 | content: "\f5d1";
336 | }
337 | .fa-apple-pay:before {
338 | content: "\f415";
339 | }
340 | .fa-archive:before {
341 | content: "\f187";
342 | }
343 | .fa-archway:before {
344 | content: "\f557";
345 | }
346 | .fa-arrow-alt-circle-down:before {
347 | content: "\f358";
348 | }
349 | .fa-arrow-alt-circle-left:before {
350 | content: "\f359";
351 | }
352 | .fa-arrow-alt-circle-right:before {
353 | content: "\f35a";
354 | }
355 | .fa-arrow-alt-circle-up:before {
356 | content: "\f35b";
357 | }
358 | .fa-arrow-circle-down:before {
359 | content: "\f0ab";
360 | }
361 | .fa-arrow-circle-left:before {
362 | content: "\f0a8";
363 | }
364 | .fa-arrow-circle-right:before {
365 | content: "\f0a9";
366 | }
367 | .fa-arrow-circle-up:before {
368 | content: "\f0aa";
369 | }
370 | .fa-arrow-down:before {
371 | content: "\f063";
372 | }
373 | .fa-arrow-left:before {
374 | content: "\f060";
375 | }
376 | .fa-arrow-right:before {
377 | content: "\f061";
378 | }
379 | .fa-arrow-up:before {
380 | content: "\f062";
381 | }
382 | .fa-arrows-alt:before {
383 | content: "\f0b2";
384 | }
385 | .fa-arrows-alt-h:before {
386 | content: "\f337";
387 | }
388 | .fa-arrows-alt-v:before {
389 | content: "\f338";
390 | }
391 | .fa-artstation:before {
392 | content: "\f77a";
393 | }
394 | .fa-assistive-listening-systems:before {
395 | content: "\f2a2";
396 | }
397 | .fa-asterisk:before {
398 | content: "\f069";
399 | }
400 | .fa-asymmetrik:before {
401 | content: "\f372";
402 | }
403 | .fa-at:before {
404 | content: "\f1fa";
405 | }
406 | .fa-atlas:before {
407 | content: "\f558";
408 | }
409 | .fa-atlassian:before {
410 | content: "\f77b";
411 | }
412 | .fa-atom:before {
413 | content: "\f5d2";
414 | }
415 | .fa-audible:before {
416 | content: "\f373";
417 | }
418 | .fa-audio-description:before {
419 | content: "\f29e";
420 | }
421 | .fa-autoprefixer:before {
422 | content: "\f41c";
423 | }
424 | .fa-avianex:before {
425 | content: "\f374";
426 | }
427 | .fa-aviato:before {
428 | content: "\f421";
429 | }
430 | .fa-award:before {
431 | content: "\f559";
432 | }
433 | .fa-aws:before {
434 | content: "\f375";
435 | }
436 | .fa-baby:before {
437 | content: "\f77c";
438 | }
439 | .fa-baby-carriage:before {
440 | content: "\f77d";
441 | }
442 | .fa-backspace:before {
443 | content: "\f55a";
444 | }
445 | .fa-backward:before {
446 | content: "\f04a";
447 | }
448 | .fa-bacon:before {
449 | content: "\f7e5";
450 | }
451 | .fa-bahai:before {
452 | content: "\f666";
453 | }
454 | .fa-balance-scale:before {
455 | content: "\f24e";
456 | }
457 | .fa-balance-scale-left:before {
458 | content: "\f515";
459 | }
460 | .fa-balance-scale-right:before {
461 | content: "\f516";
462 | }
463 | .fa-ban:before {
464 | content: "\f05e";
465 | }
466 | .fa-band-aid:before {
467 | content: "\f462";
468 | }
469 | .fa-bandcamp:before {
470 | content: "\f2d5";
471 | }
472 | .fa-barcode:before {
473 | content: "\f02a";
474 | }
475 | .fa-bars:before {
476 | content: "\f0c9";
477 | }
478 | .fa-baseball-ball:before {
479 | content: "\f433";
480 | }
481 | .fa-basketball-ball:before {
482 | content: "\f434";
483 | }
484 | .fa-bath:before {
485 | content: "\f2cd";
486 | }
487 | .fa-battery-empty:before {
488 | content: "\f244";
489 | }
490 | .fa-battery-full:before {
491 | content: "\f240";
492 | }
493 | .fa-battery-half:before {
494 | content: "\f242";
495 | }
496 | .fa-battery-quarter:before {
497 | content: "\f243";
498 | }
499 | .fa-battery-three-quarters:before {
500 | content: "\f241";
501 | }
502 | .fa-battle-net:before {
503 | content: "\f835";
504 | }
505 | .fa-bed:before {
506 | content: "\f236";
507 | }
508 | .fa-beer:before {
509 | content: "\f0fc";
510 | }
511 | .fa-behance:before {
512 | content: "\f1b4";
513 | }
514 | .fa-behance-square:before {
515 | content: "\f1b5";
516 | }
517 | .fa-bell:before {
518 | content: "\f0f3";
519 | }
520 | .fa-bell-slash:before {
521 | content: "\f1f6";
522 | }
523 | .fa-bezier-curve:before {
524 | content: "\f55b";
525 | }
526 | .fa-bible:before {
527 | content: "\f647";
528 | }
529 | .fa-bicycle:before {
530 | content: "\f206";
531 | }
532 | .fa-biking:before {
533 | content: "\f84a";
534 | }
535 | .fa-bimobject:before {
536 | content: "\f378";
537 | }
538 | .fa-binoculars:before {
539 | content: "\f1e5";
540 | }
541 | .fa-biohazard:before {
542 | content: "\f780";
543 | }
544 | .fa-birthday-cake:before {
545 | content: "\f1fd";
546 | }
547 | .fa-bitbucket:before {
548 | content: "\f171";
549 | }
550 | .fa-bitcoin:before {
551 | content: "\f379";
552 | }
553 | .fa-bity:before {
554 | content: "\f37a";
555 | }
556 | .fa-black-tie:before {
557 | content: "\f27e";
558 | }
559 | .fa-blackberry:before {
560 | content: "\f37b";
561 | }
562 | .fa-blender:before {
563 | content: "\f517";
564 | }
565 | .fa-blender-phone:before {
566 | content: "\f6b6";
567 | }
568 | .fa-blind:before {
569 | content: "\f29d";
570 | }
571 | .fa-blog:before {
572 | content: "\f781";
573 | }
574 | .fa-blogger:before {
575 | content: "\f37c";
576 | }
577 | .fa-blogger-b:before {
578 | content: "\f37d";
579 | }
580 | .fa-bluetooth:before {
581 | content: "\f293";
582 | }
583 | .fa-bluetooth-b:before {
584 | content: "\f294";
585 | }
586 | .fa-bold:before {
587 | content: "\f032";
588 | }
589 | .fa-bolt:before {
590 | content: "\f0e7";
591 | }
592 | .fa-bomb:before {
593 | content: "\f1e2";
594 | }
595 | .fa-bone:before {
596 | content: "\f5d7";
597 | }
598 | .fa-bong:before {
599 | content: "\f55c";
600 | }
601 | .fa-book:before {
602 | content: "\f02d";
603 | }
604 | .fa-book-dead:before {
605 | content: "\f6b7";
606 | }
607 | .fa-book-medical:before {
608 | content: "\f7e6";
609 | }
610 | .fa-book-open:before {
611 | content: "\f518";
612 | }
613 | .fa-book-reader:before {
614 | content: "\f5da";
615 | }
616 | .fa-bookmark:before {
617 | content: "\f02e";
618 | }
619 | .fa-bootstrap:before {
620 | content: "\f836";
621 | }
622 | .fa-border-all:before {
623 | content: "\f84c";
624 | }
625 | .fa-border-none:before {
626 | content: "\f850";
627 | }
628 | .fa-border-style:before {
629 | content: "\f853";
630 | }
631 | .fa-bowling-ball:before {
632 | content: "\f436";
633 | }
634 | .fa-box:before {
635 | content: "\f466";
636 | }
637 | .fa-box-open:before {
638 | content: "\f49e";
639 | }
640 | .fa-box-tissue:before {
641 | content: "\f95b";
642 | }
643 | .fa-boxes:before {
644 | content: "\f468";
645 | }
646 | .fa-braille:before {
647 | content: "\f2a1";
648 | }
649 | .fa-brain:before {
650 | content: "\f5dc";
651 | }
652 | .fa-bread-slice:before {
653 | content: "\f7ec";
654 | }
655 | .fa-briefcase:before {
656 | content: "\f0b1";
657 | }
658 | .fa-briefcase-medical:before {
659 | content: "\f469";
660 | }
661 | .fa-broadcast-tower:before {
662 | content: "\f519";
663 | }
664 | .fa-broom:before {
665 | content: "\f51a";
666 | }
667 | .fa-brush:before {
668 | content: "\f55d";
669 | }
670 | .fa-btc:before {
671 | content: "\f15a";
672 | }
673 | .fa-buffer:before {
674 | content: "\f837";
675 | }
676 | .fa-bug:before {
677 | content: "\f188";
678 | }
679 | .fa-building:before {
680 | content: "\f1ad";
681 | }
682 | .fa-bullhorn:before {
683 | content: "\f0a1";
684 | }
685 | .fa-bullseye:before {
686 | content: "\f140";
687 | }
688 | .fa-burn:before {
689 | content: "\f46a";
690 | }
691 | .fa-buromobelexperte:before {
692 | content: "\f37f";
693 | }
694 | .fa-bus:before {
695 | content: "\f207";
696 | }
697 | .fa-bus-alt:before {
698 | content: "\f55e";
699 | }
700 | .fa-business-time:before {
701 | content: "\f64a";
702 | }
703 | .fa-buy-n-large:before {
704 | content: "\f8a6";
705 | }
706 | .fa-buysellads:before {
707 | content: "\f20d";
708 | }
709 | .fa-calculator:before {
710 | content: "\f1ec";
711 | }
712 | .fa-calendar:before {
713 | content: "\f133";
714 | }
715 | .fa-calendar-alt:before {
716 | content: "\f073";
717 | }
718 | .fa-calendar-check:before {
719 | content: "\f274";
720 | }
721 | .fa-calendar-day:before {
722 | content: "\f783";
723 | }
724 | .fa-calendar-minus:before {
725 | content: "\f272";
726 | }
727 | .fa-calendar-plus:before {
728 | content: "\f271";
729 | }
730 | .fa-calendar-times:before {
731 | content: "\f273";
732 | }
733 | .fa-calendar-week:before {
734 | content: "\f784";
735 | }
736 | .fa-camera:before {
737 | content: "\f030";
738 | }
739 | .fa-camera-retro:before {
740 | content: "\f083";
741 | }
742 | .fa-campground:before {
743 | content: "\f6bb";
744 | }
745 | .fa-canadian-maple-leaf:before {
746 | content: "\f785";
747 | }
748 | .fa-candy-cane:before {
749 | content: "\f786";
750 | }
751 | .fa-cannabis:before {
752 | content: "\f55f";
753 | }
754 | .fa-capsules:before {
755 | content: "\f46b";
756 | }
757 | .fa-car:before {
758 | content: "\f1b9";
759 | }
760 | .fa-car-alt:before {
761 | content: "\f5de";
762 | }
763 | .fa-car-battery:before {
764 | content: "\f5df";
765 | }
766 | .fa-car-crash:before {
767 | content: "\f5e1";
768 | }
769 | .fa-car-side:before {
770 | content: "\f5e4";
771 | }
772 | .fa-caravan:before {
773 | content: "\f8ff";
774 | }
775 | .fa-caret-down:before {
776 | content: "\f0d7";
777 | }
778 | .fa-caret-left:before {
779 | content: "\f0d9";
780 | }
781 | .fa-caret-right:before {
782 | content: "\f0da";
783 | }
784 | .fa-caret-square-down:before {
785 | content: "\f150";
786 | }
787 | .fa-caret-square-left:before {
788 | content: "\f191";
789 | }
790 | .fa-caret-square-right:before {
791 | content: "\f152";
792 | }
793 | .fa-caret-square-up:before {
794 | content: "\f151";
795 | }
796 | .fa-caret-up:before {
797 | content: "\f0d8";
798 | }
799 | .fa-carrot:before {
800 | content: "\f787";
801 | }
802 | .fa-cart-arrow-down:before {
803 | content: "\f218";
804 | }
805 | .fa-cart-plus:before {
806 | content: "\f217";
807 | }
808 | .fa-cash-register:before {
809 | content: "\f788";
810 | }
811 | .fa-cat:before {
812 | content: "\f6be";
813 | }
814 | .fa-cc-amazon-pay:before {
815 | content: "\f42d";
816 | }
817 | .fa-cc-amex:before {
818 | content: "\f1f3";
819 | }
820 | .fa-cc-apple-pay:before {
821 | content: "\f416";
822 | }
823 | .fa-cc-diners-club:before {
824 | content: "\f24c";
825 | }
826 | .fa-cc-discover:before {
827 | content: "\f1f2";
828 | }
829 | .fa-cc-jcb:before {
830 | content: "\f24b";
831 | }
832 | .fa-cc-mastercard:before {
833 | content: "\f1f1";
834 | }
835 | .fa-cc-paypal:before {
836 | content: "\f1f4";
837 | }
838 | .fa-cc-stripe:before {
839 | content: "\f1f5";
840 | }
841 | .fa-cc-visa:before {
842 | content: "\f1f0";
843 | }
844 | .fa-centercode:before {
845 | content: "\f380";
846 | }
847 | .fa-centos:before {
848 | content: "\f789";
849 | }
850 | .fa-certificate:before {
851 | content: "\f0a3";
852 | }
853 | .fa-chair:before {
854 | content: "\f6c0";
855 | }
856 | .fa-chalkboard:before {
857 | content: "\f51b";
858 | }
859 | .fa-chalkboard-teacher:before {
860 | content: "\f51c";
861 | }
862 | .fa-charging-station:before {
863 | content: "\f5e7";
864 | }
865 | .fa-chart-area:before {
866 | content: "\f1fe";
867 | }
868 | .fa-chart-bar:before {
869 | content: "\f080";
870 | }
871 | .fa-chart-line:before {
872 | content: "\f201";
873 | }
874 | .fa-chart-pie:before {
875 | content: "\f200";
876 | }
877 | .fa-check:before {
878 | content: "\f00c";
879 | }
880 | .fa-check-circle:before {
881 | content: "\f058";
882 | }
883 | .fa-check-double:before {
884 | content: "\f560";
885 | }
886 | .fa-check-square:before {
887 | content: "\f14a";
888 | }
889 | .fa-cheese:before {
890 | content: "\f7ef";
891 | }
892 | .fa-chess:before {
893 | content: "\f439";
894 | }
895 | .fa-chess-bishop:before {
896 | content: "\f43a";
897 | }
898 | .fa-chess-board:before {
899 | content: "\f43c";
900 | }
901 | .fa-chess-king:before {
902 | content: "\f43f";
903 | }
904 | .fa-chess-knight:before {
905 | content: "\f441";
906 | }
907 | .fa-chess-pawn:before {
908 | content: "\f443";
909 | }
910 | .fa-chess-queen:before {
911 | content: "\f445";
912 | }
913 | .fa-chess-rook:before {
914 | content: "\f447";
915 | }
916 | .fa-chevron-circle-down:before {
917 | content: "\f13a";
918 | }
919 | .fa-chevron-circle-left:before {
920 | content: "\f137";
921 | }
922 | .fa-chevron-circle-right:before {
923 | content: "\f138";
924 | }
925 | .fa-chevron-circle-up:before {
926 | content: "\f139";
927 | }
928 | .fa-chevron-down:before {
929 | content: "\f078";
930 | }
931 | .fa-chevron-left:before {
932 | content: "\f053";
933 | }
934 | .fa-chevron-right:before {
935 | content: "\f054";
936 | }
937 | .fa-chevron-up:before {
938 | content: "\f077";
939 | }
940 | .fa-child:before {
941 | content: "\f1ae";
942 | }
943 | .fa-chrome:before {
944 | content: "\f268";
945 | }
946 | .fa-chromecast:before {
947 | content: "\f838";
948 | }
949 | .fa-church:before {
950 | content: "\f51d";
951 | }
952 | .fa-circle:before {
953 | content: "\f111";
954 | }
955 | .fa-circle-notch:before {
956 | content: "\f1ce";
957 | }
958 | .fa-city:before {
959 | content: "\f64f";
960 | }
961 | .fa-clinic-medical:before {
962 | content: "\f7f2";
963 | }
964 | .fa-clipboard:before {
965 | content: "\f328";
966 | }
967 | .fa-clipboard-check:before {
968 | content: "\f46c";
969 | }
970 | .fa-clipboard-list:before {
971 | content: "\f46d";
972 | }
973 | .fa-clock:before {
974 | content: "\f017";
975 | }
976 | .fa-clone:before {
977 | content: "\f24d";
978 | }
979 | .fa-closed-captioning:before {
980 | content: "\f20a";
981 | }
982 | .fa-cloud:before {
983 | content: "\f0c2";
984 | }
985 | .fa-cloud-download-alt:before {
986 | content: "\f381";
987 | }
988 | .fa-cloud-meatball:before {
989 | content: "\f73b";
990 | }
991 | .fa-cloud-moon:before {
992 | content: "\f6c3";
993 | }
994 | .fa-cloud-moon-rain:before {
995 | content: "\f73c";
996 | }
997 | .fa-cloud-rain:before {
998 | content: "\f73d";
999 | }
1000 | .fa-cloud-showers-heavy:before {
1001 | content: "\f740";
1002 | }
1003 | .fa-cloud-sun:before {
1004 | content: "\f6c4";
1005 | }
1006 | .fa-cloud-sun-rain:before {
1007 | content: "\f743";
1008 | }
1009 | .fa-cloud-upload-alt:before {
1010 | content: "\f382";
1011 | }
1012 | .fa-cloudscale:before {
1013 | content: "\f383";
1014 | }
1015 | .fa-cloudsmith:before {
1016 | content: "\f384";
1017 | }
1018 | .fa-cloudversify:before {
1019 | content: "\f385";
1020 | }
1021 | .fa-cocktail:before {
1022 | content: "\f561";
1023 | }
1024 | .fa-code:before {
1025 | content: "\f121";
1026 | }
1027 | .fa-code-branch:before {
1028 | content: "\f126";
1029 | }
1030 | .fa-codepen:before {
1031 | content: "\f1cb";
1032 | }
1033 | .fa-codiepie:before {
1034 | content: "\f284";
1035 | }
1036 | .fa-coffee:before {
1037 | content: "\f0f4";
1038 | }
1039 | .fa-cog:before {
1040 | content: "\f013";
1041 | }
1042 | .fa-cogs:before {
1043 | content: "\f085";
1044 | }
1045 | .fa-coins:before {
1046 | content: "\f51e";
1047 | }
1048 | .fa-columns:before {
1049 | content: "\f0db";
1050 | }
1051 | .fa-comment:before {
1052 | content: "\f075";
1053 | }
1054 | .fa-comment-alt:before {
1055 | content: "\f27a";
1056 | }
1057 | .fa-comment-dollar:before {
1058 | content: "\f651";
1059 | }
1060 | .fa-comment-dots:before {
1061 | content: "\f4ad";
1062 | }
1063 | .fa-comment-medical:before {
1064 | content: "\f7f5";
1065 | }
1066 | .fa-comment-slash:before {
1067 | content: "\f4b3";
1068 | }
1069 | .fa-comments:before {
1070 | content: "\f086";
1071 | }
1072 | .fa-comments-dollar:before {
1073 | content: "\f653";
1074 | }
1075 | .fa-compact-disc:before {
1076 | content: "\f51f";
1077 | }
1078 | .fa-compass:before {
1079 | content: "\f14e";
1080 | }
1081 | .fa-compress:before {
1082 | content: "\f066";
1083 | }
1084 | .fa-compress-alt:before {
1085 | content: "\f422";
1086 | }
1087 | .fa-compress-arrows-alt:before {
1088 | content: "\f78c";
1089 | }
1090 | .fa-concierge-bell:before {
1091 | content: "\f562";
1092 | }
1093 | .fa-confluence:before {
1094 | content: "\f78d";
1095 | }
1096 | .fa-connectdevelop:before {
1097 | content: "\f20e";
1098 | }
1099 | .fa-contao:before {
1100 | content: "\f26d";
1101 | }
1102 | .fa-cookie:before {
1103 | content: "\f563";
1104 | }
1105 | .fa-cookie-bite:before {
1106 | content: "\f564";
1107 | }
1108 | .fa-copy:before {
1109 | content: "\f0c5";
1110 | }
1111 | .fa-copyright:before {
1112 | content: "\f1f9";
1113 | }
1114 | .fa-cotton-bureau:before {
1115 | content: "\f89e";
1116 | }
1117 | .fa-couch:before {
1118 | content: "\f4b8";
1119 | }
1120 | .fa-cpanel:before {
1121 | content: "\f388";
1122 | }
1123 | .fa-creative-commons:before {
1124 | content: "\f25e";
1125 | }
1126 | .fa-creative-commons-by:before {
1127 | content: "\f4e7";
1128 | }
1129 | .fa-creative-commons-nc:before {
1130 | content: "\f4e8";
1131 | }
1132 | .fa-creative-commons-nc-eu:before {
1133 | content: "\f4e9";
1134 | }
1135 | .fa-creative-commons-nc-jp:before {
1136 | content: "\f4ea";
1137 | }
1138 | .fa-creative-commons-nd:before {
1139 | content: "\f4eb";
1140 | }
1141 | .fa-creative-commons-pd:before {
1142 | content: "\f4ec";
1143 | }
1144 | .fa-creative-commons-pd-alt:before {
1145 | content: "\f4ed";
1146 | }
1147 | .fa-creative-commons-remix:before {
1148 | content: "\f4ee";
1149 | }
1150 | .fa-creative-commons-sa:before {
1151 | content: "\f4ef";
1152 | }
1153 | .fa-creative-commons-sampling:before {
1154 | content: "\f4f0";
1155 | }
1156 | .fa-creative-commons-sampling-plus:before {
1157 | content: "\f4f1";
1158 | }
1159 | .fa-creative-commons-share:before {
1160 | content: "\f4f2";
1161 | }
1162 | .fa-creative-commons-zero:before {
1163 | content: "\f4f3";
1164 | }
1165 | .fa-credit-card:before {
1166 | content: "\f09d";
1167 | }
1168 | .fa-critical-role:before {
1169 | content: "\f6c9";
1170 | }
1171 | .fa-crop:before {
1172 | content: "\f125";
1173 | }
1174 | .fa-crop-alt:before {
1175 | content: "\f565";
1176 | }
1177 | .fa-cross:before {
1178 | content: "\f654";
1179 | }
1180 | .fa-crosshairs:before {
1181 | content: "\f05b";
1182 | }
1183 | .fa-crow:before {
1184 | content: "\f520";
1185 | }
1186 | .fa-crown:before {
1187 | content: "\f521";
1188 | }
1189 | .fa-crutch:before {
1190 | content: "\f7f7";
1191 | }
1192 | .fa-css3:before {
1193 | content: "\f13c";
1194 | }
1195 | .fa-css3-alt:before {
1196 | content: "\f38b";
1197 | }
1198 | .fa-cube:before {
1199 | content: "\f1b2";
1200 | }
1201 | .fa-cubes:before {
1202 | content: "\f1b3";
1203 | }
1204 | .fa-cut:before {
1205 | content: "\f0c4";
1206 | }
1207 | .fa-cuttlefish:before {
1208 | content: "\f38c";
1209 | }
1210 | .fa-d-and-d:before {
1211 | content: "\f38d";
1212 | }
1213 | .fa-d-and-d-beyond:before {
1214 | content: "\f6ca";
1215 | }
1216 | .fa-dailymotion:before {
1217 | content: "\f952";
1218 | }
1219 | .fa-dashcube:before {
1220 | content: "\f210";
1221 | }
1222 | .fa-database:before {
1223 | content: "\f1c0";
1224 | }
1225 | .fa-deaf:before {
1226 | content: "\f2a4";
1227 | }
1228 | .fa-delicious:before {
1229 | content: "\f1a5";
1230 | }
1231 | .fa-democrat:before {
1232 | content: "\f747";
1233 | }
1234 | .fa-deploydog:before {
1235 | content: "\f38e";
1236 | }
1237 | .fa-deskpro:before {
1238 | content: "\f38f";
1239 | }
1240 | .fa-desktop:before {
1241 | content: "\f108";
1242 | }
1243 | .fa-dev:before {
1244 | content: "\f6cc";
1245 | }
1246 | .fa-deviantart:before {
1247 | content: "\f1bd";
1248 | }
1249 | .fa-dharmachakra:before {
1250 | content: "\f655";
1251 | }
1252 | .fa-dhl:before {
1253 | content: "\f790";
1254 | }
1255 | .fa-diagnoses:before {
1256 | content: "\f470";
1257 | }
1258 | .fa-diaspora:before {
1259 | content: "\f791";
1260 | }
1261 | .fa-dice:before {
1262 | content: "\f522";
1263 | }
1264 | .fa-dice-d20:before {
1265 | content: "\f6cf";
1266 | }
1267 | .fa-dice-d6:before {
1268 | content: "\f6d1";
1269 | }
1270 | .fa-dice-five:before {
1271 | content: "\f523";
1272 | }
1273 | .fa-dice-four:before {
1274 | content: "\f524";
1275 | }
1276 | .fa-dice-one:before {
1277 | content: "\f525";
1278 | }
1279 | .fa-dice-six:before {
1280 | content: "\f526";
1281 | }
1282 | .fa-dice-three:before {
1283 | content: "\f527";
1284 | }
1285 | .fa-dice-two:before {
1286 | content: "\f528";
1287 | }
1288 | .fa-digg:before {
1289 | content: "\f1a6";
1290 | }
1291 | .fa-digital-ocean:before {
1292 | content: "\f391";
1293 | }
1294 | .fa-digital-tachograph:before {
1295 | content: "\f566";
1296 | }
1297 | .fa-directions:before {
1298 | content: "\f5eb";
1299 | }
1300 | .fa-discord:before {
1301 | content: "\f392";
1302 | }
1303 | .fa-discourse:before {
1304 | content: "\f393";
1305 | }
1306 | .fa-disease:before {
1307 | content: "\f7fa";
1308 | }
1309 | .fa-divide:before {
1310 | content: "\f529";
1311 | }
1312 | .fa-dizzy:before {
1313 | content: "\f567";
1314 | }
1315 | .fa-dna:before {
1316 | content: "\f471";
1317 | }
1318 | .fa-dochub:before {
1319 | content: "\f394";
1320 | }
1321 | .fa-docker:before {
1322 | content: "\f395";
1323 | }
1324 | .fa-dog:before {
1325 | content: "\f6d3";
1326 | }
1327 | .fa-dollar-sign:before {
1328 | content: "\f155";
1329 | }
1330 | .fa-dolly:before {
1331 | content: "\f472";
1332 | }
1333 | .fa-dolly-flatbed:before {
1334 | content: "\f474";
1335 | }
1336 | .fa-donate:before {
1337 | content: "\f4b9";
1338 | }
1339 | .fa-door-closed:before {
1340 | content: "\f52a";
1341 | }
1342 | .fa-door-open:before {
1343 | content: "\f52b";
1344 | }
1345 | .fa-dot-circle:before {
1346 | content: "\f192";
1347 | }
1348 | .fa-dove:before {
1349 | content: "\f4ba";
1350 | }
1351 | .fa-download:before {
1352 | content: "\f019";
1353 | }
1354 | .fa-draft2digital:before {
1355 | content: "\f396";
1356 | }
1357 | .fa-drafting-compass:before {
1358 | content: "\f568";
1359 | }
1360 | .fa-dragon:before {
1361 | content: "\f6d5";
1362 | }
1363 | .fa-draw-polygon:before {
1364 | content: "\f5ee";
1365 | }
1366 | .fa-dribbble:before {
1367 | content: "\f17d";
1368 | }
1369 | .fa-dribbble-square:before {
1370 | content: "\f397";
1371 | }
1372 | .fa-dropbox:before {
1373 | content: "\f16b";
1374 | }
1375 | .fa-drum:before {
1376 | content: "\f569";
1377 | }
1378 | .fa-drum-steelpan:before {
1379 | content: "\f56a";
1380 | }
1381 | .fa-drumstick-bite:before {
1382 | content: "\f6d7";
1383 | }
1384 | .fa-drupal:before {
1385 | content: "\f1a9";
1386 | }
1387 | .fa-dumbbell:before {
1388 | content: "\f44b";
1389 | }
1390 | .fa-dumpster:before {
1391 | content: "\f793";
1392 | }
1393 | .fa-dumpster-fire:before {
1394 | content: "\f794";
1395 | }
1396 | .fa-dungeon:before {
1397 | content: "\f6d9";
1398 | }
1399 | .fa-dyalog:before {
1400 | content: "\f399";
1401 | }
1402 | .fa-earlybirds:before {
1403 | content: "\f39a";
1404 | }
1405 | .fa-ebay:before {
1406 | content: "\f4f4";
1407 | }
1408 | .fa-edge:before {
1409 | content: "\f282";
1410 | }
1411 | .fa-edit:before {
1412 | content: "\f044";
1413 | }
1414 | .fa-egg:before {
1415 | content: "\f7fb";
1416 | }
1417 | .fa-eject:before {
1418 | content: "\f052";
1419 | }
1420 | .fa-elementor:before {
1421 | content: "\f430";
1422 | }
1423 | .fa-ellipsis-h:before {
1424 | content: "\f141";
1425 | }
1426 | .fa-ellipsis-v:before {
1427 | content: "\f142";
1428 | }
1429 | .fa-ello:before {
1430 | content: "\f5f1";
1431 | }
1432 | .fa-ember:before {
1433 | content: "\f423";
1434 | }
1435 | .fa-empire:before {
1436 | content: "\f1d1";
1437 | }
1438 | .fa-envelope:before {
1439 | content: "\f0e0";
1440 | }
1441 | .fa-envelope-open:before {
1442 | content: "\f2b6";
1443 | }
1444 | .fa-envelope-open-text:before {
1445 | content: "\f658";
1446 | }
1447 | .fa-envelope-square:before {
1448 | content: "\f199";
1449 | }
1450 | .fa-envira:before {
1451 | content: "\f299";
1452 | }
1453 | .fa-equals:before {
1454 | content: "\f52c";
1455 | }
1456 | .fa-eraser:before {
1457 | content: "\f12d";
1458 | }
1459 | .fa-erlang:before {
1460 | content: "\f39d";
1461 | }
1462 | .fa-ethereum:before {
1463 | content: "\f42e";
1464 | }
1465 | .fa-ethernet:before {
1466 | content: "\f796";
1467 | }
1468 | .fa-etsy:before {
1469 | content: "\f2d7";
1470 | }
1471 | .fa-euro-sign:before {
1472 | content: "\f153";
1473 | }
1474 | .fa-evernote:before {
1475 | content: "\f839";
1476 | }
1477 | .fa-exchange-alt:before {
1478 | content: "\f362";
1479 | }
1480 | .fa-exclamation:before {
1481 | content: "\f12a";
1482 | }
1483 | .fa-exclamation-circle:before {
1484 | content: "\f06a";
1485 | }
1486 | .fa-exclamation-triangle:before {
1487 | content: "\f071";
1488 | }
1489 | .fa-expand:before {
1490 | content: "\f065";
1491 | }
1492 | .fa-expand-alt:before {
1493 | content: "\f424";
1494 | }
1495 | .fa-expand-arrows-alt:before {
1496 | content: "\f31e";
1497 | }
1498 | .fa-expeditedssl:before {
1499 | content: "\f23e";
1500 | }
1501 | .fa-external-link-alt:before {
1502 | content: "\f35d";
1503 | }
1504 | .fa-external-link-square-alt:before {
1505 | content: "\f360";
1506 | }
1507 | .fa-eye:before {
1508 | content: "\f06e";
1509 | }
1510 | .fa-eye-dropper:before {
1511 | content: "\f1fb";
1512 | }
1513 | .fa-eye-slash:before {
1514 | content: "\f070";
1515 | }
1516 | .fa-facebook:before {
1517 | content: "\f09a";
1518 | }
1519 | .fa-facebook-f:before {
1520 | content: "\f39e";
1521 | }
1522 | .fa-facebook-messenger:before {
1523 | content: "\f39f";
1524 | }
1525 | .fa-facebook-square:before {
1526 | content: "\f082";
1527 | }
1528 | .fa-fan:before {
1529 | content: "\f863";
1530 | }
1531 | .fa-fantasy-flight-games:before {
1532 | content: "\f6dc";
1533 | }
1534 | .fa-fast-backward:before {
1535 | content: "\f049";
1536 | }
1537 | .fa-fast-forward:before {
1538 | content: "\f050";
1539 | }
1540 | .fa-faucet:before {
1541 | content: "\f905";
1542 | }
1543 | .fa-fax:before {
1544 | content: "\f1ac";
1545 | }
1546 | .fa-feather:before {
1547 | content: "\f52d";
1548 | }
1549 | .fa-feather-alt:before {
1550 | content: "\f56b";
1551 | }
1552 | .fa-fedex:before {
1553 | content: "\f797";
1554 | }
1555 | .fa-fedora:before {
1556 | content: "\f798";
1557 | }
1558 | .fa-female:before {
1559 | content: "\f182";
1560 | }
1561 | .fa-fighter-jet:before {
1562 | content: "\f0fb";
1563 | }
1564 | .fa-figma:before {
1565 | content: "\f799";
1566 | }
1567 | .fa-file:before {
1568 | content: "\f15b";
1569 | }
1570 | .fa-file-alt:before {
1571 | content: "\f15c";
1572 | }
1573 | .fa-file-archive:before {
1574 | content: "\f1c6";
1575 | }
1576 | .fa-file-audio:before {
1577 | content: "\f1c7";
1578 | }
1579 | .fa-file-code:before {
1580 | content: "\f1c9";
1581 | }
1582 | .fa-file-contract:before {
1583 | content: "\f56c";
1584 | }
1585 | .fa-file-csv:before {
1586 | content: "\f6dd";
1587 | }
1588 | .fa-file-download:before {
1589 | content: "\f56d";
1590 | }
1591 | .fa-file-excel:before {
1592 | content: "\f1c3";
1593 | }
1594 | .fa-file-export:before {
1595 | content: "\f56e";
1596 | }
1597 | .fa-file-image:before {
1598 | content: "\f1c5";
1599 | }
1600 | .fa-file-import:before {
1601 | content: "\f56f";
1602 | }
1603 | .fa-file-invoice:before {
1604 | content: "\f570";
1605 | }
1606 | .fa-file-invoice-dollar:before {
1607 | content: "\f571";
1608 | }
1609 | .fa-file-medical:before {
1610 | content: "\f477";
1611 | }
1612 | .fa-file-medical-alt:before {
1613 | content: "\f478";
1614 | }
1615 | .fa-file-pdf:before {
1616 | content: "\f1c1";
1617 | }
1618 | .fa-file-powerpoint:before {
1619 | content: "\f1c4";
1620 | }
1621 | .fa-file-prescription:before {
1622 | content: "\f572";
1623 | }
1624 | .fa-file-signature:before {
1625 | content: "\f573";
1626 | }
1627 | .fa-file-upload:before {
1628 | content: "\f574";
1629 | }
1630 | .fa-file-video:before {
1631 | content: "\f1c8";
1632 | }
1633 | .fa-file-word:before {
1634 | content: "\f1c2";
1635 | }
1636 | .fa-fill:before {
1637 | content: "\f575";
1638 | }
1639 | .fa-fill-drip:before {
1640 | content: "\f576";
1641 | }
1642 | .fa-film:before {
1643 | content: "\f008";
1644 | }
1645 | .fa-filter:before {
1646 | content: "\f0b0";
1647 | }
1648 | .fa-fingerprint:before {
1649 | content: "\f577";
1650 | }
1651 | .fa-fire:before {
1652 | content: "\f06d";
1653 | }
1654 | .fa-fire-alt:before {
1655 | content: "\f7e4";
1656 | }
1657 | .fa-fire-extinguisher:before {
1658 | content: "\f134";
1659 | }
1660 | .fa-firefox:before {
1661 | content: "\f269";
1662 | }
1663 | .fa-firefox-browser:before {
1664 | content: "\f907";
1665 | }
1666 | .fa-first-aid:before {
1667 | content: "\f479";
1668 | }
1669 | .fa-first-order:before {
1670 | content: "\f2b0";
1671 | }
1672 | .fa-first-order-alt:before {
1673 | content: "\f50a";
1674 | }
1675 | .fa-firstdraft:before {
1676 | content: "\f3a1";
1677 | }
1678 | .fa-fish:before {
1679 | content: "\f578";
1680 | }
1681 | .fa-fist-raised:before {
1682 | content: "\f6de";
1683 | }
1684 | .fa-flag:before {
1685 | content: "\f024";
1686 | }
1687 | .fa-flag-checkered:before {
1688 | content: "\f11e";
1689 | }
1690 | .fa-flag-usa:before {
1691 | content: "\f74d";
1692 | }
1693 | .fa-flask:before {
1694 | content: "\f0c3";
1695 | }
1696 | .fa-flickr:before {
1697 | content: "\f16e";
1698 | }
1699 | .fa-flipboard:before {
1700 | content: "\f44d";
1701 | }
1702 | .fa-flushed:before {
1703 | content: "\f579";
1704 | }
1705 | .fa-fly:before {
1706 | content: "\f417";
1707 | }
1708 | .fa-folder:before {
1709 | content: "\f07b";
1710 | }
1711 | .fa-folder-minus:before {
1712 | content: "\f65d";
1713 | }
1714 | .fa-folder-open:before {
1715 | content: "\f07c";
1716 | }
1717 | .fa-folder-plus:before {
1718 | content: "\f65e";
1719 | }
1720 | .fa-font:before {
1721 | content: "\f031";
1722 | }
1723 | .fa-font-awesome:before {
1724 | content: "\f2b4";
1725 | }
1726 | .fa-font-awesome-alt:before {
1727 | content: "\f35c";
1728 | }
1729 | .fa-font-awesome-flag:before {
1730 | content: "\f425";
1731 | }
1732 | .fa-font-awesome-logo-full:before {
1733 | content: "\f4e6";
1734 | }
1735 | .fa-fonticons:before {
1736 | content: "\f280";
1737 | }
1738 | .fa-fonticons-fi:before {
1739 | content: "\f3a2";
1740 | }
1741 | .fa-football-ball:before {
1742 | content: "\f44e";
1743 | }
1744 | .fa-fort-awesome:before {
1745 | content: "\f286";
1746 | }
1747 | .fa-fort-awesome-alt:before {
1748 | content: "\f3a3";
1749 | }
1750 | .fa-forumbee:before {
1751 | content: "\f211";
1752 | }
1753 | .fa-forward:before {
1754 | content: "\f04e";
1755 | }
1756 | .fa-foursquare:before {
1757 | content: "\f180";
1758 | }
1759 | .fa-free-code-camp:before {
1760 | content: "\f2c5";
1761 | }
1762 | .fa-freebsd:before {
1763 | content: "\f3a4";
1764 | }
1765 | .fa-frog:before {
1766 | content: "\f52e";
1767 | }
1768 | .fa-frown:before {
1769 | content: "\f119";
1770 | }
1771 | .fa-frown-open:before {
1772 | content: "\f57a";
1773 | }
1774 | .fa-fulcrum:before {
1775 | content: "\f50b";
1776 | }
1777 | .fa-funnel-dollar:before {
1778 | content: "\f662";
1779 | }
1780 | .fa-futbol:before {
1781 | content: "\f1e3";
1782 | }
1783 | .fa-galactic-republic:before {
1784 | content: "\f50c";
1785 | }
1786 | .fa-galactic-senate:before {
1787 | content: "\f50d";
1788 | }
1789 | .fa-gamepad:before {
1790 | content: "\f11b";
1791 | }
1792 | .fa-gas-pump:before {
1793 | content: "\f52f";
1794 | }
1795 | .fa-gavel:before {
1796 | content: "\f0e3";
1797 | }
1798 | .fa-gem:before {
1799 | content: "\f3a5";
1800 | }
1801 | .fa-genderless:before {
1802 | content: "\f22d";
1803 | }
1804 | .fa-get-pocket:before {
1805 | content: "\f265";
1806 | }
1807 | .fa-gg:before {
1808 | content: "\f260";
1809 | }
1810 | .fa-gg-circle:before {
1811 | content: "\f261";
1812 | }
1813 | .fa-ghost:before {
1814 | content: "\f6e2";
1815 | }
1816 | .fa-gift:before {
1817 | content: "\f06b";
1818 | }
1819 | .fa-gifts:before {
1820 | content: "\f79c";
1821 | }
1822 | .fa-git:before {
1823 | content: "\f1d3";
1824 | }
1825 | .fa-git-alt:before {
1826 | content: "\f841";
1827 | }
1828 | .fa-git-square:before {
1829 | content: "\f1d2";
1830 | }
1831 | .fa-github:before {
1832 | content: "\f09b";
1833 | }
1834 | .fa-github-alt:before {
1835 | content: "\f113";
1836 | }
1837 | .fa-github-square:before {
1838 | content: "\f092";
1839 | }
1840 | .fa-gitkraken:before {
1841 | content: "\f3a6";
1842 | }
1843 | .fa-gitlab:before {
1844 | content: "\f296";
1845 | }
1846 | .fa-gitter:before {
1847 | content: "\f426";
1848 | }
1849 | .fa-glass-cheers:before {
1850 | content: "\f79f";
1851 | }
1852 | .fa-glass-martini:before {
1853 | content: "\f000";
1854 | }
1855 | .fa-glass-martini-alt:before {
1856 | content: "\f57b";
1857 | }
1858 | .fa-glass-whiskey:before {
1859 | content: "\f7a0";
1860 | }
1861 | .fa-glasses:before {
1862 | content: "\f530";
1863 | }
1864 | .fa-glide:before {
1865 | content: "\f2a5";
1866 | }
1867 | .fa-glide-g:before {
1868 | content: "\f2a6";
1869 | }
1870 | .fa-globe:before {
1871 | content: "\f0ac";
1872 | }
1873 | .fa-globe-africa:before {
1874 | content: "\f57c";
1875 | }
1876 | .fa-globe-americas:before {
1877 | content: "\f57d";
1878 | }
1879 | .fa-globe-asia:before {
1880 | content: "\f57e";
1881 | }
1882 | .fa-globe-europe:before {
1883 | content: "\f7a2";
1884 | }
1885 | .fa-gofore:before {
1886 | content: "\f3a7";
1887 | }
1888 | .fa-golf-ball:before {
1889 | content: "\f450";
1890 | }
1891 | .fa-goodreads:before {
1892 | content: "\f3a8";
1893 | }
1894 | .fa-goodreads-g:before {
1895 | content: "\f3a9";
1896 | }
1897 | .fa-google:before {
1898 | content: "\f1a0";
1899 | }
1900 | .fa-google-drive:before {
1901 | content: "\f3aa";
1902 | }
1903 | .fa-google-play:before {
1904 | content: "\f3ab";
1905 | }
1906 | .fa-google-plus:before {
1907 | content: "\f2b3";
1908 | }
1909 | .fa-google-plus-g:before {
1910 | content: "\f0d5";
1911 | }
1912 | .fa-google-plus-square:before {
1913 | content: "\f0d4";
1914 | }
1915 | .fa-google-wallet:before {
1916 | content: "\f1ee";
1917 | }
1918 | .fa-gopuram:before {
1919 | content: "\f664";
1920 | }
1921 | .fa-graduation-cap:before {
1922 | content: "\f19d";
1923 | }
1924 | .fa-gratipay:before {
1925 | content: "\f184";
1926 | }
1927 | .fa-grav:before {
1928 | content: "\f2d6";
1929 | }
1930 | .fa-greater-than:before {
1931 | content: "\f531";
1932 | }
1933 | .fa-greater-than-equal:before {
1934 | content: "\f532";
1935 | }
1936 | .fa-grimace:before {
1937 | content: "\f57f";
1938 | }
1939 | .fa-grin:before {
1940 | content: "\f580";
1941 | }
1942 | .fa-grin-alt:before {
1943 | content: "\f581";
1944 | }
1945 | .fa-grin-beam:before {
1946 | content: "\f582";
1947 | }
1948 | .fa-grin-beam-sweat:before {
1949 | content: "\f583";
1950 | }
1951 | .fa-grin-hearts:before {
1952 | content: "\f584";
1953 | }
1954 | .fa-grin-squint:before {
1955 | content: "\f585";
1956 | }
1957 | .fa-grin-squint-tears:before {
1958 | content: "\f586";
1959 | }
1960 | .fa-grin-stars:before {
1961 | content: "\f587";
1962 | }
1963 | .fa-grin-tears:before {
1964 | content: "\f588";
1965 | }
1966 | .fa-grin-tongue:before {
1967 | content: "\f589";
1968 | }
1969 | .fa-grin-tongue-squint:before {
1970 | content: "\f58a";
1971 | }
1972 | .fa-grin-tongue-wink:before {
1973 | content: "\f58b";
1974 | }
1975 | .fa-grin-wink:before {
1976 | content: "\f58c";
1977 | }
1978 | .fa-grip-horizontal:before {
1979 | content: "\f58d";
1980 | }
1981 | .fa-grip-lines:before {
1982 | content: "\f7a4";
1983 | }
1984 | .fa-grip-lines-vertical:before {
1985 | content: "\f7a5";
1986 | }
1987 | .fa-grip-vertical:before {
1988 | content: "\f58e";
1989 | }
1990 | .fa-gripfire:before {
1991 | content: "\f3ac";
1992 | }
1993 | .fa-grunt:before {
1994 | content: "\f3ad";
1995 | }
1996 | .fa-guitar:before {
1997 | content: "\f7a6";
1998 | }
1999 | .fa-gulp:before {
2000 | content: "\f3ae";
2001 | }
2002 | .fa-h-square:before {
2003 | content: "\f0fd";
2004 | }
2005 | .fa-hacker-news:before {
2006 | content: "\f1d4";
2007 | }
2008 | .fa-hacker-news-square:before {
2009 | content: "\f3af";
2010 | }
2011 | .fa-hackerrank:before {
2012 | content: "\f5f7";
2013 | }
2014 | .fa-hamburger:before {
2015 | content: "\f805";
2016 | }
2017 | .fa-hammer:before {
2018 | content: "\f6e3";
2019 | }
2020 | .fa-hamsa:before {
2021 | content: "\f665";
2022 | }
2023 | .fa-hand-holding:before {
2024 | content: "\f4bd";
2025 | }
2026 | .fa-hand-holding-heart:before {
2027 | content: "\f4be";
2028 | }
2029 | .fa-hand-holding-medical:before {
2030 | content: "\f95c";
2031 | }
2032 | .fa-hand-holding-usd:before {
2033 | content: "\f4c0";
2034 | }
2035 | .fa-hand-holding-water:before {
2036 | content: "\f4c1";
2037 | }
2038 | .fa-hand-lizard:before {
2039 | content: "\f258";
2040 | }
2041 | .fa-hand-middle-finger:before {
2042 | content: "\f806";
2043 | }
2044 | .fa-hand-paper:before {
2045 | content: "\f256";
2046 | }
2047 | .fa-hand-peace:before {
2048 | content: "\f25b";
2049 | }
2050 | .fa-hand-point-down:before {
2051 | content: "\f0a7";
2052 | }
2053 | .fa-hand-point-left:before {
2054 | content: "\f0a5";
2055 | }
2056 | .fa-hand-point-right:before {
2057 | content: "\f0a4";
2058 | }
2059 | .fa-hand-point-up:before {
2060 | content: "\f0a6";
2061 | }
2062 | .fa-hand-pointer:before {
2063 | content: "\f25a";
2064 | }
2065 | .fa-hand-rock:before {
2066 | content: "\f255";
2067 | }
2068 | .fa-hand-scissors:before {
2069 | content: "\f257";
2070 | }
2071 | .fa-hand-sparkles:before {
2072 | content: "\f95d";
2073 | }
2074 | .fa-hand-spock:before {
2075 | content: "\f259";
2076 | }
2077 | .fa-hands:before {
2078 | content: "\f4c2";
2079 | }
2080 | .fa-hands-helping:before {
2081 | content: "\f4c4";
2082 | }
2083 | .fa-hands-wash:before {
2084 | content: "\f95e";
2085 | }
2086 | .fa-handshake:before {
2087 | content: "\f2b5";
2088 | }
2089 | .fa-handshake-alt-slash:before {
2090 | content: "\f95f";
2091 | }
2092 | .fa-handshake-slash:before {
2093 | content: "\f960";
2094 | }
2095 | .fa-hanukiah:before {
2096 | content: "\f6e6";
2097 | }
2098 | .fa-hard-hat:before {
2099 | content: "\f807";
2100 | }
2101 | .fa-hashtag:before {
2102 | content: "\f292";
2103 | }
2104 | .fa-hat-cowboy:before {
2105 | content: "\f8c0";
2106 | }
2107 | .fa-hat-cowboy-side:before {
2108 | content: "\f8c1";
2109 | }
2110 | .fa-hat-wizard:before {
2111 | content: "\f6e8";
2112 | }
2113 | .fa-hdd:before {
2114 | content: "\f0a0";
2115 | }
2116 | .fa-head-side-cough:before {
2117 | content: "\f961";
2118 | }
2119 | .fa-head-side-cough-slash:before {
2120 | content: "\f962";
2121 | }
2122 | .fa-head-side-mask:before {
2123 | content: "\f963";
2124 | }
2125 | .fa-head-side-virus:before {
2126 | content: "\f964";
2127 | }
2128 | .fa-heading:before {
2129 | content: "\f1dc";
2130 | }
2131 | .fa-headphones:before {
2132 | content: "\f025";
2133 | }
2134 | .fa-headphones-alt:before {
2135 | content: "\f58f";
2136 | }
2137 | .fa-headset:before {
2138 | content: "\f590";
2139 | }
2140 | .fa-heart:before {
2141 | content: "\f004";
2142 | }
2143 | .fa-heart-broken:before {
2144 | content: "\f7a9";
2145 | }
2146 | .fa-heartbeat:before {
2147 | content: "\f21e";
2148 | }
2149 | .fa-helicopter:before {
2150 | content: "\f533";
2151 | }
2152 | .fa-highlighter:before {
2153 | content: "\f591";
2154 | }
2155 | .fa-hiking:before {
2156 | content: "\f6ec";
2157 | }
2158 | .fa-hippo:before {
2159 | content: "\f6ed";
2160 | }
2161 | .fa-hips:before {
2162 | content: "\f452";
2163 | }
2164 | .fa-hire-a-helper:before {
2165 | content: "\f3b0";
2166 | }
2167 | .fa-history:before {
2168 | content: "\f1da";
2169 | }
2170 | .fa-hockey-puck:before {
2171 | content: "\f453";
2172 | }
2173 | .fa-holly-berry:before {
2174 | content: "\f7aa";
2175 | }
2176 | .fa-home:before {
2177 | content: "\f015";
2178 | }
2179 | .fa-hooli:before {
2180 | content: "\f427";
2181 | }
2182 | .fa-hornbill:before {
2183 | content: "\f592";
2184 | }
2185 | .fa-horse:before {
2186 | content: "\f6f0";
2187 | }
2188 | .fa-horse-head:before {
2189 | content: "\f7ab";
2190 | }
2191 | .fa-hospital:before {
2192 | content: "\f0f8";
2193 | }
2194 | .fa-hospital-alt:before {
2195 | content: "\f47d";
2196 | }
2197 | .fa-hospital-symbol:before {
2198 | content: "\f47e";
2199 | }
2200 | .fa-hospital-user:before {
2201 | content: "\f80d";
2202 | }
2203 | .fa-hot-tub:before {
2204 | content: "\f593";
2205 | }
2206 | .fa-hotdog:before {
2207 | content: "\f80f";
2208 | }
2209 | .fa-hotel:before {
2210 | content: "\f594";
2211 | }
2212 | .fa-hotjar:before {
2213 | content: "\f3b1";
2214 | }
2215 | .fa-hourglass:before {
2216 | content: "\f254";
2217 | }
2218 | .fa-hourglass-end:before {
2219 | content: "\f253";
2220 | }
2221 | .fa-hourglass-half:before {
2222 | content: "\f252";
2223 | }
2224 | .fa-hourglass-start:before {
2225 | content: "\f251";
2226 | }
2227 | .fa-house-damage:before {
2228 | content: "\f6f1";
2229 | }
2230 | .fa-house-user:before {
2231 | content: "\f965";
2232 | }
2233 | .fa-houzz:before {
2234 | content: "\f27c";
2235 | }
2236 | .fa-hryvnia:before {
2237 | content: "\f6f2";
2238 | }
2239 | .fa-html5:before {
2240 | content: "\f13b";
2241 | }
2242 | .fa-hubspot:before {
2243 | content: "\f3b2";
2244 | }
2245 | .fa-i-cursor:before {
2246 | content: "\f246";
2247 | }
2248 | .fa-ice-cream:before {
2249 | content: "\f810";
2250 | }
2251 | .fa-icicles:before {
2252 | content: "\f7ad";
2253 | }
2254 | .fa-icons:before {
2255 | content: "\f86d";
2256 | }
2257 | .fa-id-badge:before {
2258 | content: "\f2c1";
2259 | }
2260 | .fa-id-card:before {
2261 | content: "\f2c2";
2262 | }
2263 | .fa-id-card-alt:before {
2264 | content: "\f47f";
2265 | }
2266 | .fa-ideal:before {
2267 | content: "\f913";
2268 | }
2269 | .fa-igloo:before {
2270 | content: "\f7ae";
2271 | }
2272 | .fa-image:before {
2273 | content: "\f03e";
2274 | }
2275 | .fa-images:before {
2276 | content: "\f302";
2277 | }
2278 | .fa-imdb:before {
2279 | content: "\f2d8";
2280 | }
2281 | .fa-inbox:before {
2282 | content: "\f01c";
2283 | }
2284 | .fa-indent:before {
2285 | content: "\f03c";
2286 | }
2287 | .fa-industry:before {
2288 | content: "\f275";
2289 | }
2290 | .fa-infinity:before {
2291 | content: "\f534";
2292 | }
2293 | .fa-info:before {
2294 | content: "\f129";
2295 | }
2296 | .fa-info-circle:before {
2297 | content: "\f05a";
2298 | }
2299 | .fa-instagram:before {
2300 | content: "\f16d";
2301 | }
2302 | .fa-instagram-square:before {
2303 | content: "\f955";
2304 | }
2305 | .fa-intercom:before {
2306 | content: "\f7af";
2307 | }
2308 | .fa-internet-explorer:before {
2309 | content: "\f26b";
2310 | }
2311 | .fa-invision:before {
2312 | content: "\f7b0";
2313 | }
2314 | .fa-ioxhost:before {
2315 | content: "\f208";
2316 | }
2317 | .fa-italic:before {
2318 | content: "\f033";
2319 | }
2320 | .fa-itch-io:before {
2321 | content: "\f83a";
2322 | }
2323 | .fa-itunes:before {
2324 | content: "\f3b4";
2325 | }
2326 | .fa-itunes-note:before {
2327 | content: "\f3b5";
2328 | }
2329 | .fa-java:before {
2330 | content: "\f4e4";
2331 | }
2332 | .fa-jedi:before {
2333 | content: "\f669";
2334 | }
2335 | .fa-jedi-order:before {
2336 | content: "\f50e";
2337 | }
2338 | .fa-jenkins:before {
2339 | content: "\f3b6";
2340 | }
2341 | .fa-jira:before {
2342 | content: "\f7b1";
2343 | }
2344 | .fa-joget:before {
2345 | content: "\f3b7";
2346 | }
2347 | .fa-joint:before {
2348 | content: "\f595";
2349 | }
2350 | .fa-joomla:before {
2351 | content: "\f1aa";
2352 | }
2353 | .fa-journal-whills:before {
2354 | content: "\f66a";
2355 | }
2356 | .fa-js:before {
2357 | content: "\f3b8";
2358 | }
2359 | .fa-js-square:before {
2360 | content: "\f3b9";
2361 | }
2362 | .fa-jsfiddle:before {
2363 | content: "\f1cc";
2364 | }
2365 | .fa-kaaba:before {
2366 | content: "\f66b";
2367 | }
2368 | .fa-kaggle:before {
2369 | content: "\f5fa";
2370 | }
2371 | .fa-key:before {
2372 | content: "\f084";
2373 | }
2374 | .fa-keybase:before {
2375 | content: "\f4f5";
2376 | }
2377 | .fa-keyboard:before {
2378 | content: "\f11c";
2379 | }
2380 | .fa-keycdn:before {
2381 | content: "\f3ba";
2382 | }
2383 | .fa-khanda:before {
2384 | content: "\f66d";
2385 | }
2386 | .fa-kickstarter:before {
2387 | content: "\f3bb";
2388 | }
2389 | .fa-kickstarter-k:before {
2390 | content: "\f3bc";
2391 | }
2392 | .fa-kiss:before {
2393 | content: "\f596";
2394 | }
2395 | .fa-kiss-beam:before {
2396 | content: "\f597";
2397 | }
2398 | .fa-kiss-wink-heart:before {
2399 | content: "\f598";
2400 | }
2401 | .fa-kiwi-bird:before {
2402 | content: "\f535";
2403 | }
2404 | .fa-korvue:before {
2405 | content: "\f42f";
2406 | }
2407 | .fa-landmark:before {
2408 | content: "\f66f";
2409 | }
2410 | .fa-language:before {
2411 | content: "\f1ab";
2412 | }
2413 | .fa-laptop:before {
2414 | content: "\f109";
2415 | }
2416 | .fa-laptop-code:before {
2417 | content: "\f5fc";
2418 | }
2419 | .fa-laptop-house:before {
2420 | content: "\f966";
2421 | }
2422 | .fa-laptop-medical:before {
2423 | content: "\f812";
2424 | }
2425 | .fa-laravel:before {
2426 | content: "\f3bd";
2427 | }
2428 | .fa-lastfm:before {
2429 | content: "\f202";
2430 | }
2431 | .fa-lastfm-square:before {
2432 | content: "\f203";
2433 | }
2434 | .fa-laugh:before {
2435 | content: "\f599";
2436 | }
2437 | .fa-laugh-beam:before {
2438 | content: "\f59a";
2439 | }
2440 | .fa-laugh-squint:before {
2441 | content: "\f59b";
2442 | }
2443 | .fa-laugh-wink:before {
2444 | content: "\f59c";
2445 | }
2446 | .fa-layer-group:before {
2447 | content: "\f5fd";
2448 | }
2449 | .fa-leaf:before {
2450 | content: "\f06c";
2451 | }
2452 | .fa-leanpub:before {
2453 | content: "\f212";
2454 | }
2455 | .fa-lemon:before {
2456 | content: "\f094";
2457 | }
2458 | .fa-less:before {
2459 | content: "\f41d";
2460 | }
2461 | .fa-less-than:before {
2462 | content: "\f536";
2463 | }
2464 | .fa-less-than-equal:before {
2465 | content: "\f537";
2466 | }
2467 | .fa-level-down-alt:before {
2468 | content: "\f3be";
2469 | }
2470 | .fa-level-up-alt:before {
2471 | content: "\f3bf";
2472 | }
2473 | .fa-life-ring:before {
2474 | content: "\f1cd";
2475 | }
2476 | .fa-lightbulb:before {
2477 | content: "\f0eb";
2478 | }
2479 | .fa-line:before {
2480 | content: "\f3c0";
2481 | }
2482 | .fa-link:before {
2483 | content: "\f0c1";
2484 | }
2485 | .fa-linkedin:before {
2486 | content: "\f08c";
2487 | }
2488 | .fa-linkedin-in:before {
2489 | content: "\f0e1";
2490 | }
2491 | .fa-linode:before {
2492 | content: "\f2b8";
2493 | }
2494 | .fa-linux:before {
2495 | content: "\f17c";
2496 | }
2497 | .fa-lira-sign:before {
2498 | content: "\f195";
2499 | }
2500 | .fa-list:before {
2501 | content: "\f03a";
2502 | }
2503 | .fa-list-alt:before {
2504 | content: "\f022";
2505 | }
2506 | .fa-list-ol:before {
2507 | content: "\f0cb";
2508 | }
2509 | .fa-list-ul:before {
2510 | content: "\f0ca";
2511 | }
2512 | .fa-location-arrow:before {
2513 | content: "\f124";
2514 | }
2515 | .fa-lock:before {
2516 | content: "\f023";
2517 | }
2518 | .fa-lock-open:before {
2519 | content: "\f3c1";
2520 | }
2521 | .fa-long-arrow-alt-down:before {
2522 | content: "\f309";
2523 | }
2524 | .fa-long-arrow-alt-left:before {
2525 | content: "\f30a";
2526 | }
2527 | .fa-long-arrow-alt-right:before {
2528 | content: "\f30b";
2529 | }
2530 | .fa-long-arrow-alt-up:before {
2531 | content: "\f30c";
2532 | }
2533 | .fa-low-vision:before {
2534 | content: "\f2a8";
2535 | }
2536 | .fa-luggage-cart:before {
2537 | content: "\f59d";
2538 | }
2539 | .fa-lungs:before {
2540 | content: "\f604";
2541 | }
2542 | .fa-lungs-virus:before {
2543 | content: "\f967";
2544 | }
2545 | .fa-lyft:before {
2546 | content: "\f3c3";
2547 | }
2548 | .fa-magento:before {
2549 | content: "\f3c4";
2550 | }
2551 | .fa-magic:before {
2552 | content: "\f0d0";
2553 | }
2554 | .fa-magnet:before {
2555 | content: "\f076";
2556 | }
2557 | .fa-mail-bulk:before {
2558 | content: "\f674";
2559 | }
2560 | .fa-mailchimp:before {
2561 | content: "\f59e";
2562 | }
2563 | .fa-male:before {
2564 | content: "\f183";
2565 | }
2566 | .fa-mandalorian:before {
2567 | content: "\f50f";
2568 | }
2569 | .fa-map:before {
2570 | content: "\f279";
2571 | }
2572 | .fa-map-marked:before {
2573 | content: "\f59f";
2574 | }
2575 | .fa-map-marked-alt:before {
2576 | content: "\f5a0";
2577 | }
2578 | .fa-map-marker:before {
2579 | content: "\f041";
2580 | }
2581 | .fa-map-marker-alt:before {
2582 | content: "\f3c5";
2583 | }
2584 | .fa-map-pin:before {
2585 | content: "\f276";
2586 | }
2587 | .fa-map-signs:before {
2588 | content: "\f277";
2589 | }
2590 | .fa-markdown:before {
2591 | content: "\f60f";
2592 | }
2593 | .fa-marker:before {
2594 | content: "\f5a1";
2595 | }
2596 | .fa-mars:before {
2597 | content: "\f222";
2598 | }
2599 | .fa-mars-double:before {
2600 | content: "\f227";
2601 | }
2602 | .fa-mars-stroke:before {
2603 | content: "\f229";
2604 | }
2605 | .fa-mars-stroke-h:before {
2606 | content: "\f22b";
2607 | }
2608 | .fa-mars-stroke-v:before {
2609 | content: "\f22a";
2610 | }
2611 | .fa-mask:before {
2612 | content: "\f6fa";
2613 | }
2614 | .fa-mastodon:before {
2615 | content: "\f4f6";
2616 | }
2617 | .fa-maxcdn:before {
2618 | content: "\f136";
2619 | }
2620 | .fa-mdb:before {
2621 | content: "\f8ca";
2622 | }
2623 | .fa-medal:before {
2624 | content: "\f5a2";
2625 | }
2626 | .fa-medapps:before {
2627 | content: "\f3c6";
2628 | }
2629 | .fa-medium:before {
2630 | content: "\f23a";
2631 | }
2632 | .fa-medium-m:before {
2633 | content: "\f3c7";
2634 | }
2635 | .fa-medkit:before {
2636 | content: "\f0fa";
2637 | }
2638 | .fa-medrt:before {
2639 | content: "\f3c8";
2640 | }
2641 | .fa-meetup:before {
2642 | content: "\f2e0";
2643 | }
2644 | .fa-megaport:before {
2645 | content: "\f5a3";
2646 | }
2647 | .fa-meh:before {
2648 | content: "\f11a";
2649 | }
2650 | .fa-meh-blank:before {
2651 | content: "\f5a4";
2652 | }
2653 | .fa-meh-rolling-eyes:before {
2654 | content: "\f5a5";
2655 | }
2656 | .fa-memory:before {
2657 | content: "\f538";
2658 | }
2659 | .fa-mendeley:before {
2660 | content: "\f7b3";
2661 | }
2662 | .fa-menorah:before {
2663 | content: "\f676";
2664 | }
2665 | .fa-mercury:before {
2666 | content: "\f223";
2667 | }
2668 | .fa-meteor:before {
2669 | content: "\f753";
2670 | }
2671 | .fa-microblog:before {
2672 | content: "\f91a";
2673 | }
2674 | .fa-microchip:before {
2675 | content: "\f2db";
2676 | }
2677 | .fa-microphone:before {
2678 | content: "\f130";
2679 | }
2680 | .fa-microphone-alt:before {
2681 | content: "\f3c9";
2682 | }
2683 | .fa-microphone-alt-slash:before {
2684 | content: "\f539";
2685 | }
2686 | .fa-microphone-slash:before {
2687 | content: "\f131";
2688 | }
2689 | .fa-microscope:before {
2690 | content: "\f610";
2691 | }
2692 | .fa-microsoft:before {
2693 | content: "\f3ca";
2694 | }
2695 | .fa-minus:before {
2696 | content: "\f068";
2697 | }
2698 | .fa-minus-circle:before {
2699 | content: "\f056";
2700 | }
2701 | .fa-minus-square:before {
2702 | content: "\f146";
2703 | }
2704 | .fa-mitten:before {
2705 | content: "\f7b5";
2706 | }
2707 | .fa-mix:before {
2708 | content: "\f3cb";
2709 | }
2710 | .fa-mixcloud:before {
2711 | content: "\f289";
2712 | }
2713 | .fa-mixer:before {
2714 | content: "\f956";
2715 | }
2716 | .fa-mizuni:before {
2717 | content: "\f3cc";
2718 | }
2719 | .fa-mobile:before {
2720 | content: "\f10b";
2721 | }
2722 | .fa-mobile-alt:before {
2723 | content: "\f3cd";
2724 | }
2725 | .fa-modx:before {
2726 | content: "\f285";
2727 | }
2728 | .fa-monero:before {
2729 | content: "\f3d0";
2730 | }
2731 | .fa-money-bill:before {
2732 | content: "\f0d6";
2733 | }
2734 | .fa-money-bill-alt:before {
2735 | content: "\f3d1";
2736 | }
2737 | .fa-money-bill-wave:before {
2738 | content: "\f53a";
2739 | }
2740 | .fa-money-bill-wave-alt:before {
2741 | content: "\f53b";
2742 | }
2743 | .fa-money-check:before {
2744 | content: "\f53c";
2745 | }
2746 | .fa-money-check-alt:before {
2747 | content: "\f53d";
2748 | }
2749 | .fa-monument:before {
2750 | content: "\f5a6";
2751 | }
2752 | .fa-moon:before {
2753 | content: "\f186";
2754 | }
2755 | .fa-mortar-pestle:before {
2756 | content: "\f5a7";
2757 | }
2758 | .fa-mosque:before {
2759 | content: "\f678";
2760 | }
2761 | .fa-motorcycle:before {
2762 | content: "\f21c";
2763 | }
2764 | .fa-mountain:before {
2765 | content: "\f6fc";
2766 | }
2767 | .fa-mouse:before {
2768 | content: "\f8cc";
2769 | }
2770 | .fa-mouse-pointer:before {
2771 | content: "\f245";
2772 | }
2773 | .fa-mug-hot:before {
2774 | content: "\f7b6";
2775 | }
2776 | .fa-music:before {
2777 | content: "\f001";
2778 | }
2779 | .fa-napster:before {
2780 | content: "\f3d2";
2781 | }
2782 | .fa-neos:before {
2783 | content: "\f612";
2784 | }
2785 | .fa-network-wired:before {
2786 | content: "\f6ff";
2787 | }
2788 | .fa-neuter:before {
2789 | content: "\f22c";
2790 | }
2791 | .fa-newspaper:before {
2792 | content: "\f1ea";
2793 | }
2794 | .fa-nimblr:before {
2795 | content: "\f5a8";
2796 | }
2797 | .fa-node:before {
2798 | content: "\f419";
2799 | }
2800 | .fa-node-js:before {
2801 | content: "\f3d3";
2802 | }
2803 | .fa-not-equal:before {
2804 | content: "\f53e";
2805 | }
2806 | .fa-notes-medical:before {
2807 | content: "\f481";
2808 | }
2809 | .fa-npm:before {
2810 | content: "\f3d4";
2811 | }
2812 | .fa-ns8:before {
2813 | content: "\f3d5";
2814 | }
2815 | .fa-nutritionix:before {
2816 | content: "\f3d6";
2817 | }
2818 | .fa-object-group:before {
2819 | content: "\f247";
2820 | }
2821 | .fa-object-ungroup:before {
2822 | content: "\f248";
2823 | }
2824 | .fa-odnoklassniki:before {
2825 | content: "\f263";
2826 | }
2827 | .fa-odnoklassniki-square:before {
2828 | content: "\f264";
2829 | }
2830 | .fa-oil-can:before {
2831 | content: "\f613";
2832 | }
2833 | .fa-old-republic:before {
2834 | content: "\f510";
2835 | }
2836 | .fa-om:before {
2837 | content: "\f679";
2838 | }
2839 | .fa-opencart:before {
2840 | content: "\f23d";
2841 | }
2842 | .fa-openid:before {
2843 | content: "\f19b";
2844 | }
2845 | .fa-opera:before {
2846 | content: "\f26a";
2847 | }
2848 | .fa-optin-monster:before {
2849 | content: "\f23c";
2850 | }
2851 | .fa-orcid:before {
2852 | content: "\f8d2";
2853 | }
2854 | .fa-osi:before {
2855 | content: "\f41a";
2856 | }
2857 | .fa-otter:before {
2858 | content: "\f700";
2859 | }
2860 | .fa-outdent:before {
2861 | content: "\f03b";
2862 | }
2863 | .fa-page4:before {
2864 | content: "\f3d7";
2865 | }
2866 | .fa-pagelines:before {
2867 | content: "\f18c";
2868 | }
2869 | .fa-pager:before {
2870 | content: "\f815";
2871 | }
2872 | .fa-paint-brush:before {
2873 | content: "\f1fc";
2874 | }
2875 | .fa-paint-roller:before {
2876 | content: "\f5aa";
2877 | }
2878 | .fa-palette:before {
2879 | content: "\f53f";
2880 | }
2881 | .fa-palfed:before {
2882 | content: "\f3d8";
2883 | }
2884 | .fa-pallet:before {
2885 | content: "\f482";
2886 | }
2887 | .fa-paper-plane:before {
2888 | content: "\f1d8";
2889 | }
2890 | .fa-paperclip:before {
2891 | content: "\f0c6";
2892 | }
2893 | .fa-parachute-box:before {
2894 | content: "\f4cd";
2895 | }
2896 | .fa-paragraph:before {
2897 | content: "\f1dd";
2898 | }
2899 | .fa-parking:before {
2900 | content: "\f540";
2901 | }
2902 | .fa-passport:before {
2903 | content: "\f5ab";
2904 | }
2905 | .fa-pastafarianism:before {
2906 | content: "\f67b";
2907 | }
2908 | .fa-paste:before {
2909 | content: "\f0ea";
2910 | }
2911 | .fa-patreon:before {
2912 | content: "\f3d9";
2913 | }
2914 | .fa-pause:before {
2915 | content: "\f04c";
2916 | }
2917 | .fa-pause-circle:before {
2918 | content: "\f28b";
2919 | }
2920 | .fa-paw:before {
2921 | content: "\f1b0";
2922 | }
2923 | .fa-paypal:before {
2924 | content: "\f1ed";
2925 | }
2926 | .fa-peace:before {
2927 | content: "\f67c";
2928 | }
2929 | .fa-pen:before {
2930 | content: "\f304";
2931 | }
2932 | .fa-pen-alt:before {
2933 | content: "\f305";
2934 | }
2935 | .fa-pen-fancy:before {
2936 | content: "\f5ac";
2937 | }
2938 | .fa-pen-nib:before {
2939 | content: "\f5ad";
2940 | }
2941 | .fa-pen-square:before {
2942 | content: "\f14b";
2943 | }
2944 | .fa-pencil-alt:before {
2945 | content: "\f303";
2946 | }
2947 | .fa-pencil-ruler:before {
2948 | content: "\f5ae";
2949 | }
2950 | .fa-penny-arcade:before {
2951 | content: "\f704";
2952 | }
2953 | .fa-people-arrows:before {
2954 | content: "\f968";
2955 | }
2956 | .fa-people-carry:before {
2957 | content: "\f4ce";
2958 | }
2959 | .fa-pepper-hot:before {
2960 | content: "\f816";
2961 | }
2962 | .fa-percent:before {
2963 | content: "\f295";
2964 | }
2965 | .fa-percentage:before {
2966 | content: "\f541";
2967 | }
2968 | .fa-periscope:before {
2969 | content: "\f3da";
2970 | }
2971 | .fa-person-booth:before {
2972 | content: "\f756";
2973 | }
2974 | .fa-phabricator:before {
2975 | content: "\f3db";
2976 | }
2977 | .fa-phoenix-framework:before {
2978 | content: "\f3dc";
2979 | }
2980 | .fa-phoenix-squadron:before {
2981 | content: "\f511";
2982 | }
2983 | .fa-phone:before {
2984 | content: "\f095";
2985 | }
2986 | .fa-phone-alt:before {
2987 | content: "\f879";
2988 | }
2989 | .fa-phone-slash:before {
2990 | content: "\f3dd";
2991 | }
2992 | .fa-phone-square:before {
2993 | content: "\f098";
2994 | }
2995 | .fa-phone-square-alt:before {
2996 | content: "\f87b";
2997 | }
2998 | .fa-phone-volume:before {
2999 | content: "\f2a0";
3000 | }
3001 | .fa-photo-video:before {
3002 | content: "\f87c";
3003 | }
3004 | .fa-php:before {
3005 | content: "\f457";
3006 | }
3007 | .fa-pied-piper:before {
3008 | content: "\f2ae";
3009 | }
3010 | .fa-pied-piper-alt:before {
3011 | content: "\f1a8";
3012 | }
3013 | .fa-pied-piper-hat:before {
3014 | content: "\f4e5";
3015 | }
3016 | .fa-pied-piper-pp:before {
3017 | content: "\f1a7";
3018 | }
3019 | .fa-pied-piper-square:before {
3020 | content: "\f91e";
3021 | }
3022 | .fa-piggy-bank:before {
3023 | content: "\f4d3";
3024 | }
3025 | .fa-pills:before {
3026 | content: "\f484";
3027 | }
3028 | .fa-pinterest:before {
3029 | content: "\f0d2";
3030 | }
3031 | .fa-pinterest-p:before {
3032 | content: "\f231";
3033 | }
3034 | .fa-pinterest-square:before {
3035 | content: "\f0d3";
3036 | }
3037 | .fa-pizza-slice:before {
3038 | content: "\f818";
3039 | }
3040 | .fa-place-of-worship:before {
3041 | content: "\f67f";
3042 | }
3043 | .fa-plane:before {
3044 | content: "\f072";
3045 | }
3046 | .fa-plane-arrival:before {
3047 | content: "\f5af";
3048 | }
3049 | .fa-plane-departure:before {
3050 | content: "\f5b0";
3051 | }
3052 | .fa-plane-slash:before {
3053 | content: "\f969";
3054 | }
3055 | .fa-play:before {
3056 | content: "\f04b";
3057 | }
3058 | .fa-play-circle:before {
3059 | content: "\f144";
3060 | }
3061 | .fa-playstation:before {
3062 | content: "\f3df";
3063 | }
3064 | .fa-plug:before {
3065 | content: "\f1e6";
3066 | }
3067 | .fa-plus:before {
3068 | content: "\f067";
3069 | }
3070 | .fa-plus-circle:before {
3071 | content: "\f055";
3072 | }
3073 | .fa-plus-square:before {
3074 | content: "\f0fe";
3075 | }
3076 | .fa-podcast:before {
3077 | content: "\f2ce";
3078 | }
3079 | .fa-poll:before {
3080 | content: "\f681";
3081 | }
3082 | .fa-poll-h:before {
3083 | content: "\f682";
3084 | }
3085 | .fa-poo:before {
3086 | content: "\f2fe";
3087 | }
3088 | .fa-poo-storm:before {
3089 | content: "\f75a";
3090 | }
3091 | .fa-poop:before {
3092 | content: "\f619";
3093 | }
3094 | .fa-portrait:before {
3095 | content: "\f3e0";
3096 | }
3097 | .fa-pound-sign:before {
3098 | content: "\f154";
3099 | }
3100 | .fa-power-off:before {
3101 | content: "\f011";
3102 | }
3103 | .fa-pray:before {
3104 | content: "\f683";
3105 | }
3106 | .fa-praying-hands:before {
3107 | content: "\f684";
3108 | }
3109 | .fa-prescription:before {
3110 | content: "\f5b1";
3111 | }
3112 | .fa-prescription-bottle:before {
3113 | content: "\f485";
3114 | }
3115 | .fa-prescription-bottle-alt:before {
3116 | content: "\f486";
3117 | }
3118 | .fa-print:before {
3119 | content: "\f02f";
3120 | }
3121 | .fa-procedures:before {
3122 | content: "\f487";
3123 | }
3124 | .fa-product-hunt:before {
3125 | content: "\f288";
3126 | }
3127 | .fa-project-diagram:before {
3128 | content: "\f542";
3129 | }
3130 | .fa-pump-medical:before {
3131 | content: "\f96a";
3132 | }
3133 | .fa-pump-soap:before {
3134 | content: "\f96b";
3135 | }
3136 | .fa-pushed:before {
3137 | content: "\f3e1";
3138 | }
3139 | .fa-puzzle-piece:before {
3140 | content: "\f12e";
3141 | }
3142 | .fa-python:before {
3143 | content: "\f3e2";
3144 | }
3145 | .fa-qq:before {
3146 | content: "\f1d6";
3147 | }
3148 | .fa-qrcode:before {
3149 | content: "\f029";
3150 | }
3151 | .fa-question:before {
3152 | content: "\f128";
3153 | }
3154 | .fa-question-circle:before {
3155 | content: "\f059";
3156 | }
3157 | .fa-quidditch:before {
3158 | content: "\f458";
3159 | }
3160 | .fa-quinscape:before {
3161 | content: "\f459";
3162 | }
3163 | .fa-quora:before {
3164 | content: "\f2c4";
3165 | }
3166 | .fa-quote-left:before {
3167 | content: "\f10d";
3168 | }
3169 | .fa-quote-right:before {
3170 | content: "\f10e";
3171 | }
3172 | .fa-quran:before {
3173 | content: "\f687";
3174 | }
3175 | .fa-r-project:before {
3176 | content: "\f4f7";
3177 | }
3178 | .fa-radiation:before {
3179 | content: "\f7b9";
3180 | }
3181 | .fa-radiation-alt:before {
3182 | content: "\f7ba";
3183 | }
3184 | .fa-rainbow:before {
3185 | content: "\f75b";
3186 | }
3187 | .fa-random:before {
3188 | content: "\f074";
3189 | }
3190 | .fa-raspberry-pi:before {
3191 | content: "\f7bb";
3192 | }
3193 | .fa-ravelry:before {
3194 | content: "\f2d9";
3195 | }
3196 | .fa-react:before {
3197 | content: "\f41b";
3198 | }
3199 | .fa-reacteurope:before {
3200 | content: "\f75d";
3201 | }
3202 | .fa-readme:before {
3203 | content: "\f4d5";
3204 | }
3205 | .fa-rebel:before {
3206 | content: "\f1d0";
3207 | }
3208 | .fa-receipt:before {
3209 | content: "\f543";
3210 | }
3211 | .fa-record-vinyl:before {
3212 | content: "\f8d9";
3213 | }
3214 | .fa-recycle:before {
3215 | content: "\f1b8";
3216 | }
3217 | .fa-red-river:before {
3218 | content: "\f3e3";
3219 | }
3220 | .fa-reddit:before {
3221 | content: "\f1a1";
3222 | }
3223 | .fa-reddit-alien:before {
3224 | content: "\f281";
3225 | }
3226 | .fa-reddit-square:before {
3227 | content: "\f1a2";
3228 | }
3229 | .fa-redhat:before {
3230 | content: "\f7bc";
3231 | }
3232 | .fa-redo:before {
3233 | content: "\f01e";
3234 | }
3235 | .fa-redo-alt:before {
3236 | content: "\f2f9";
3237 | }
3238 | .fa-registered:before {
3239 | content: "\f25d";
3240 | }
3241 | .fa-remove-format:before {
3242 | content: "\f87d";
3243 | }
3244 | .fa-renren:before {
3245 | content: "\f18b";
3246 | }
3247 | .fa-reply:before {
3248 | content: "\f3e5";
3249 | }
3250 | .fa-reply-all:before {
3251 | content: "\f122";
3252 | }
3253 | .fa-replyd:before {
3254 | content: "\f3e6";
3255 | }
3256 | .fa-republican:before {
3257 | content: "\f75e";
3258 | }
3259 | .fa-researchgate:before {
3260 | content: "\f4f8";
3261 | }
3262 | .fa-resolving:before {
3263 | content: "\f3e7";
3264 | }
3265 | .fa-restroom:before {
3266 | content: "\f7bd";
3267 | }
3268 | .fa-retweet:before {
3269 | content: "\f079";
3270 | }
3271 | .fa-rev:before {
3272 | content: "\f5b2";
3273 | }
3274 | .fa-ribbon:before {
3275 | content: "\f4d6";
3276 | }
3277 | .fa-ring:before {
3278 | content: "\f70b";
3279 | }
3280 | .fa-road:before {
3281 | content: "\f018";
3282 | }
3283 | .fa-robot:before {
3284 | content: "\f544";
3285 | }
3286 | .fa-rocket:before {
3287 | content: "\f135";
3288 | }
3289 | .fa-rocketchat:before {
3290 | content: "\f3e8";
3291 | }
3292 | .fa-rockrms:before {
3293 | content: "\f3e9";
3294 | }
3295 | .fa-route:before {
3296 | content: "\f4d7";
3297 | }
3298 | .fa-rss:before {
3299 | content: "\f09e";
3300 | }
3301 | .fa-rss-square:before {
3302 | content: "\f143";
3303 | }
3304 | .fa-ruble-sign:before {
3305 | content: "\f158";
3306 | }
3307 | .fa-ruler:before {
3308 | content: "\f545";
3309 | }
3310 | .fa-ruler-combined:before {
3311 | content: "\f546";
3312 | }
3313 | .fa-ruler-horizontal:before {
3314 | content: "\f547";
3315 | }
3316 | .fa-ruler-vertical:before {
3317 | content: "\f548";
3318 | }
3319 | .fa-running:before {
3320 | content: "\f70c";
3321 | }
3322 | .fa-rupee-sign:before {
3323 | content: "\f156";
3324 | }
3325 | .fa-sad-cry:before {
3326 | content: "\f5b3";
3327 | }
3328 | .fa-sad-tear:before {
3329 | content: "\f5b4";
3330 | }
3331 | .fa-safari:before {
3332 | content: "\f267";
3333 | }
3334 | .fa-salesforce:before {
3335 | content: "\f83b";
3336 | }
3337 | .fa-sass:before {
3338 | content: "\f41e";
3339 | }
3340 | .fa-satellite:before {
3341 | content: "\f7bf";
3342 | }
3343 | .fa-satellite-dish:before {
3344 | content: "\f7c0";
3345 | }
3346 | .fa-save:before {
3347 | content: "\f0c7";
3348 | }
3349 | .fa-schlix:before {
3350 | content: "\f3ea";
3351 | }
3352 | .fa-school:before {
3353 | content: "\f549";
3354 | }
3355 | .fa-screwdriver:before {
3356 | content: "\f54a";
3357 | }
3358 | .fa-scribd:before {
3359 | content: "\f28a";
3360 | }
3361 | .fa-scroll:before {
3362 | content: "\f70e";
3363 | }
3364 | .fa-sd-card:before {
3365 | content: "\f7c2";
3366 | }
3367 | .fa-search:before {
3368 | content: "\f002";
3369 | }
3370 | .fa-search-dollar:before {
3371 | content: "\f688";
3372 | }
3373 | .fa-search-location:before {
3374 | content: "\f689";
3375 | }
3376 | .fa-search-minus:before {
3377 | content: "\f010";
3378 | }
3379 | .fa-search-plus:before {
3380 | content: "\f00e";
3381 | }
3382 | .fa-searchengin:before {
3383 | content: "\f3eb";
3384 | }
3385 | .fa-seedling:before {
3386 | content: "\f4d8";
3387 | }
3388 | .fa-sellcast:before {
3389 | content: "\f2da";
3390 | }
3391 | .fa-sellsy:before {
3392 | content: "\f213";
3393 | }
3394 | .fa-server:before {
3395 | content: "\f233";
3396 | }
3397 | .fa-servicestack:before {
3398 | content: "\f3ec";
3399 | }
3400 | .fa-shapes:before {
3401 | content: "\f61f";
3402 | }
3403 | .fa-share:before {
3404 | content: "\f064";
3405 | }
3406 | .fa-share-alt:before {
3407 | content: "\f1e0";
3408 | }
3409 | .fa-share-alt-square:before {
3410 | content: "\f1e1";
3411 | }
3412 | .fa-share-square:before {
3413 | content: "\f14d";
3414 | }
3415 | .fa-shekel-sign:before {
3416 | content: "\f20b";
3417 | }
3418 | .fa-shield-alt:before {
3419 | content: "\f3ed";
3420 | }
3421 | .fa-shield-virus:before {
3422 | content: "\f96c";
3423 | }
3424 | .fa-ship:before {
3425 | content: "\f21a";
3426 | }
3427 | .fa-shipping-fast:before {
3428 | content: "\f48b";
3429 | }
3430 | .fa-shirtsinbulk:before {
3431 | content: "\f214";
3432 | }
3433 | .fa-shoe-prints:before {
3434 | content: "\f54b";
3435 | }
3436 | .fa-shopify:before {
3437 | content: "\f957";
3438 | }
3439 | .fa-shopping-bag:before {
3440 | content: "\f290";
3441 | }
3442 | .fa-shopping-basket:before {
3443 | content: "\f291";
3444 | }
3445 | .fa-shopping-cart:before {
3446 | content: "\f07a";
3447 | }
3448 | .fa-shopware:before {
3449 | content: "\f5b5";
3450 | }
3451 | .fa-shower:before {
3452 | content: "\f2cc";
3453 | }
3454 | .fa-shuttle-van:before {
3455 | content: "\f5b6";
3456 | }
3457 | .fa-sign:before {
3458 | content: "\f4d9";
3459 | }
3460 | .fa-sign-in-alt:before {
3461 | content: "\f2f6";
3462 | }
3463 | .fa-sign-language:before {
3464 | content: "\f2a7";
3465 | }
3466 | .fa-sign-out-alt:before {
3467 | content: "\f2f5";
3468 | }
3469 | .fa-signal:before {
3470 | content: "\f012";
3471 | }
3472 | .fa-signature:before {
3473 | content: "\f5b7";
3474 | }
3475 | .fa-sim-card:before {
3476 | content: "\f7c4";
3477 | }
3478 | .fa-simplybuilt:before {
3479 | content: "\f215";
3480 | }
3481 | .fa-sistrix:before {
3482 | content: "\f3ee";
3483 | }
3484 | .fa-sitemap:before {
3485 | content: "\f0e8";
3486 | }
3487 | .fa-sith:before {
3488 | content: "\f512";
3489 | }
3490 | .fa-skating:before {
3491 | content: "\f7c5";
3492 | }
3493 | .fa-sketch:before {
3494 | content: "\f7c6";
3495 | }
3496 | .fa-skiing:before {
3497 | content: "\f7c9";
3498 | }
3499 | .fa-skiing-nordic:before {
3500 | content: "\f7ca";
3501 | }
3502 | .fa-skull:before {
3503 | content: "\f54c";
3504 | }
3505 | .fa-skull-crossbones:before {
3506 | content: "\f714";
3507 | }
3508 | .fa-skyatlas:before {
3509 | content: "\f216";
3510 | }
3511 | .fa-skype:before {
3512 | content: "\f17e";
3513 | }
3514 | .fa-slack:before {
3515 | content: "\f198";
3516 | }
3517 | .fa-slack-hash:before {
3518 | content: "\f3ef";
3519 | }
3520 | .fa-slash:before {
3521 | content: "\f715";
3522 | }
3523 | .fa-sleigh:before {
3524 | content: "\f7cc";
3525 | }
3526 | .fa-sliders-h:before {
3527 | content: "\f1de";
3528 | }
3529 | .fa-slideshare:before {
3530 | content: "\f1e7";
3531 | }
3532 | .fa-smile:before {
3533 | content: "\f118";
3534 | }
3535 | .fa-smile-beam:before {
3536 | content: "\f5b8";
3537 | }
3538 | .fa-smile-wink:before {
3539 | content: "\f4da";
3540 | }
3541 | .fa-smog:before {
3542 | content: "\f75f";
3543 | }
3544 | .fa-smoking:before {
3545 | content: "\f48d";
3546 | }
3547 | .fa-smoking-ban:before {
3548 | content: "\f54d";
3549 | }
3550 | .fa-sms:before {
3551 | content: "\f7cd";
3552 | }
3553 | .fa-snapchat:before {
3554 | content: "\f2ab";
3555 | }
3556 | .fa-snapchat-ghost:before {
3557 | content: "\f2ac";
3558 | }
3559 | .fa-snapchat-square:before {
3560 | content: "\f2ad";
3561 | }
3562 | .fa-snowboarding:before {
3563 | content: "\f7ce";
3564 | }
3565 | .fa-snowflake:before {
3566 | content: "\f2dc";
3567 | }
3568 | .fa-snowman:before {
3569 | content: "\f7d0";
3570 | }
3571 | .fa-snowplow:before {
3572 | content: "\f7d2";
3573 | }
3574 | .fa-soap:before {
3575 | content: "\f96e";
3576 | }
3577 | .fa-socks:before {
3578 | content: "\f696";
3579 | }
3580 | .fa-solar-panel:before {
3581 | content: "\f5ba";
3582 | }
3583 | .fa-sort:before {
3584 | content: "\f0dc";
3585 | }
3586 | .fa-sort-alpha-down:before {
3587 | content: "\f15d";
3588 | }
3589 | .fa-sort-alpha-down-alt:before {
3590 | content: "\f881";
3591 | }
3592 | .fa-sort-alpha-up:before {
3593 | content: "\f15e";
3594 | }
3595 | .fa-sort-alpha-up-alt:before {
3596 | content: "\f882";
3597 | }
3598 | .fa-sort-amount-down:before {
3599 | content: "\f160";
3600 | }
3601 | .fa-sort-amount-down-alt:before {
3602 | content: "\f884";
3603 | }
3604 | .fa-sort-amount-up:before {
3605 | content: "\f161";
3606 | }
3607 | .fa-sort-amount-up-alt:before {
3608 | content: "\f885";
3609 | }
3610 | .fa-sort-down:before {
3611 | content: "\f0dd";
3612 | }
3613 | .fa-sort-numeric-down:before {
3614 | content: "\f162";
3615 | }
3616 | .fa-sort-numeric-down-alt:before {
3617 | content: "\f886";
3618 | }
3619 | .fa-sort-numeric-up:before {
3620 | content: "\f163";
3621 | }
3622 | .fa-sort-numeric-up-alt:before {
3623 | content: "\f887";
3624 | }
3625 | .fa-sort-up:before {
3626 | content: "\f0de";
3627 | }
3628 | .fa-soundcloud:before {
3629 | content: "\f1be";
3630 | }
3631 | .fa-sourcetree:before {
3632 | content: "\f7d3";
3633 | }
3634 | .fa-spa:before {
3635 | content: "\f5bb";
3636 | }
3637 | .fa-space-shuttle:before {
3638 | content: "\f197";
3639 | }
3640 | .fa-speakap:before {
3641 | content: "\f3f3";
3642 | }
3643 | .fa-speaker-deck:before {
3644 | content: "\f83c";
3645 | }
3646 | .fa-spell-check:before {
3647 | content: "\f891";
3648 | }
3649 | .fa-spider:before {
3650 | content: "\f717";
3651 | }
3652 | .fa-spinner:before {
3653 | content: "\f110";
3654 | }
3655 | .fa-splotch:before {
3656 | content: "\f5bc";
3657 | }
3658 | .fa-spotify:before {
3659 | content: "\f1bc";
3660 | }
3661 | .fa-spray-can:before {
3662 | content: "\f5bd";
3663 | }
3664 | .fa-square:before {
3665 | content: "\f0c8";
3666 | }
3667 | .fa-square-full:before {
3668 | content: "\f45c";
3669 | }
3670 | .fa-square-root-alt:before {
3671 | content: "\f698";
3672 | }
3673 | .fa-squarespace:before {
3674 | content: "\f5be";
3675 | }
3676 | .fa-stack-exchange:before {
3677 | content: "\f18d";
3678 | }
3679 | .fa-stack-overflow:before {
3680 | content: "\f16c";
3681 | }
3682 | .fa-stackpath:before {
3683 | content: "\f842";
3684 | }
3685 | .fa-stamp:before {
3686 | content: "\f5bf";
3687 | }
3688 | .fa-star:before {
3689 | content: "\f005";
3690 | }
3691 | .fa-star-and-crescent:before {
3692 | content: "\f699";
3693 | }
3694 | .fa-star-half:before {
3695 | content: "\f089";
3696 | }
3697 | .fa-star-half-alt:before {
3698 | content: "\f5c0";
3699 | }
3700 | .fa-star-of-david:before {
3701 | content: "\f69a";
3702 | }
3703 | .fa-star-of-life:before {
3704 | content: "\f621";
3705 | }
3706 | .fa-staylinked:before {
3707 | content: "\f3f5";
3708 | }
3709 | .fa-steam:before {
3710 | content: "\f1b6";
3711 | }
3712 | .fa-steam-square:before {
3713 | content: "\f1b7";
3714 | }
3715 | .fa-steam-symbol:before {
3716 | content: "\f3f6";
3717 | }
3718 | .fa-step-backward:before {
3719 | content: "\f048";
3720 | }
3721 | .fa-step-forward:before {
3722 | content: "\f051";
3723 | }
3724 | .fa-stethoscope:before {
3725 | content: "\f0f1";
3726 | }
3727 | .fa-sticker-mule:before {
3728 | content: "\f3f7";
3729 | }
3730 | .fa-sticky-note:before {
3731 | content: "\f249";
3732 | }
3733 | .fa-stop:before {
3734 | content: "\f04d";
3735 | }
3736 | .fa-stop-circle:before {
3737 | content: "\f28d";
3738 | }
3739 | .fa-stopwatch:before {
3740 | content: "\f2f2";
3741 | }
3742 | .fa-stopwatch-20:before {
3743 | content: "\f96f";
3744 | }
3745 | .fa-store:before {
3746 | content: "\f54e";
3747 | }
3748 | .fa-store-alt:before {
3749 | content: "\f54f";
3750 | }
3751 | .fa-store-alt-slash:before {
3752 | content: "\f970";
3753 | }
3754 | .fa-store-slash:before {
3755 | content: "\f971";
3756 | }
3757 | .fa-strava:before {
3758 | content: "\f428";
3759 | }
3760 | .fa-stream:before {
3761 | content: "\f550";
3762 | }
3763 | .fa-street-view:before {
3764 | content: "\f21d";
3765 | }
3766 | .fa-strikethrough:before {
3767 | content: "\f0cc";
3768 | }
3769 | .fa-stripe:before {
3770 | content: "\f429";
3771 | }
3772 | .fa-stripe-s:before {
3773 | content: "\f42a";
3774 | }
3775 | .fa-stroopwafel:before {
3776 | content: "\f551";
3777 | }
3778 | .fa-studiovinari:before {
3779 | content: "\f3f8";
3780 | }
3781 | .fa-stumbleupon:before {
3782 | content: "\f1a4";
3783 | }
3784 | .fa-stumbleupon-circle:before {
3785 | content: "\f1a3";
3786 | }
3787 | .fa-subscript:before {
3788 | content: "\f12c";
3789 | }
3790 | .fa-subway:before {
3791 | content: "\f239";
3792 | }
3793 | .fa-suitcase:before {
3794 | content: "\f0f2";
3795 | }
3796 | .fa-suitcase-rolling:before {
3797 | content: "\f5c1";
3798 | }
3799 | .fa-sun:before {
3800 | content: "\f185";
3801 | }
3802 | .fa-superpowers:before {
3803 | content: "\f2dd";
3804 | }
3805 | .fa-superscript:before {
3806 | content: "\f12b";
3807 | }
3808 | .fa-supple:before {
3809 | content: "\f3f9";
3810 | }
3811 | .fa-surprise:before {
3812 | content: "\f5c2";
3813 | }
3814 | .fa-suse:before {
3815 | content: "\f7d6";
3816 | }
3817 | .fa-swatchbook:before {
3818 | content: "\f5c3";
3819 | }
3820 | .fa-swift:before {
3821 | content: "\f8e1";
3822 | }
3823 | .fa-swimmer:before {
3824 | content: "\f5c4";
3825 | }
3826 | .fa-swimming-pool:before {
3827 | content: "\f5c5";
3828 | }
3829 | .fa-symfony:before {
3830 | content: "\f83d";
3831 | }
3832 | .fa-synagogue:before {
3833 | content: "\f69b";
3834 | }
3835 | .fa-sync:before {
3836 | content: "\f021";
3837 | }
3838 | .fa-sync-alt:before {
3839 | content: "\f2f1";
3840 | }
3841 | .fa-syringe:before {
3842 | content: "\f48e";
3843 | }
3844 | .fa-table:before {
3845 | content: "\f0ce";
3846 | }
3847 | .fa-table-tennis:before {
3848 | content: "\f45d";
3849 | }
3850 | .fa-tablet:before {
3851 | content: "\f10a";
3852 | }
3853 | .fa-tablet-alt:before {
3854 | content: "\f3fa";
3855 | }
3856 | .fa-tablets:before {
3857 | content: "\f490";
3858 | }
3859 | .fa-tachometer-alt:before {
3860 | content: "\f3fd";
3861 | }
3862 | .fa-tag:before {
3863 | content: "\f02b";
3864 | }
3865 | .fa-tags:before {
3866 | content: "\f02c";
3867 | }
3868 | .fa-tape:before {
3869 | content: "\f4db";
3870 | }
3871 | .fa-tasks:before {
3872 | content: "\f0ae";
3873 | }
3874 | .fa-taxi:before {
3875 | content: "\f1ba";
3876 | }
3877 | .fa-teamspeak:before {
3878 | content: "\f4f9";
3879 | }
3880 | .fa-teeth:before {
3881 | content: "\f62e";
3882 | }
3883 | .fa-teeth-open:before {
3884 | content: "\f62f";
3885 | }
3886 | .fa-telegram:before {
3887 | content: "\f2c6";
3888 | }
3889 | .fa-telegram-plane:before {
3890 | content: "\f3fe";
3891 | }
3892 | .fa-temperature-high:before {
3893 | content: "\f769";
3894 | }
3895 | .fa-temperature-low:before {
3896 | content: "\f76b";
3897 | }
3898 | .fa-tencent-weibo:before {
3899 | content: "\f1d5";
3900 | }
3901 | .fa-tenge:before {
3902 | content: "\f7d7";
3903 | }
3904 | .fa-terminal:before {
3905 | content: "\f120";
3906 | }
3907 | .fa-text-height:before {
3908 | content: "\f034";
3909 | }
3910 | .fa-text-width:before {
3911 | content: "\f035";
3912 | }
3913 | .fa-th:before {
3914 | content: "\f00a";
3915 | }
3916 | .fa-th-large:before {
3917 | content: "\f009";
3918 | }
3919 | .fa-th-list:before {
3920 | content: "\f00b";
3921 | }
3922 | .fa-the-red-yeti:before {
3923 | content: "\f69d";
3924 | }
3925 | .fa-theater-masks:before {
3926 | content: "\f630";
3927 | }
3928 | .fa-themeco:before {
3929 | content: "\f5c6";
3930 | }
3931 | .fa-themeisle:before {
3932 | content: "\f2b2";
3933 | }
3934 | .fa-thermometer:before {
3935 | content: "\f491";
3936 | }
3937 | .fa-thermometer-empty:before {
3938 | content: "\f2cb";
3939 | }
3940 | .fa-thermometer-full:before {
3941 | content: "\f2c7";
3942 | }
3943 | .fa-thermometer-half:before {
3944 | content: "\f2c9";
3945 | }
3946 | .fa-thermometer-quarter:before {
3947 | content: "\f2ca";
3948 | }
3949 | .fa-thermometer-three-quarters:before {
3950 | content: "\f2c8";
3951 | }
3952 | .fa-think-peaks:before {
3953 | content: "\f731";
3954 | }
3955 | .fa-thumbs-down:before {
3956 | content: "\f165";
3957 | }
3958 | .fa-thumbs-up:before {
3959 | content: "\f164";
3960 | }
3961 | .fa-thumbtack:before {
3962 | content: "\f08d";
3963 | }
3964 | .fa-ticket-alt:before {
3965 | content: "\f3ff";
3966 | }
3967 | .fa-times:before {
3968 | content: "\f00d";
3969 | }
3970 | .fa-times-circle:before {
3971 | content: "\f057";
3972 | }
3973 | .fa-tint:before {
3974 | content: "\f043";
3975 | }
3976 | .fa-tint-slash:before {
3977 | content: "\f5c7";
3978 | }
3979 | .fa-tired:before {
3980 | content: "\f5c8";
3981 | }
3982 | .fa-toggle-off:before {
3983 | content: "\f204";
3984 | }
3985 | .fa-toggle-on:before {
3986 | content: "\f205";
3987 | }
3988 | .fa-toilet:before {
3989 | content: "\f7d8";
3990 | }
3991 | .fa-toilet-paper:before {
3992 | content: "\f71e";
3993 | }
3994 | .fa-toilet-paper-slash:before {
3995 | content: "\f972";
3996 | }
3997 | .fa-toolbox:before {
3998 | content: "\f552";
3999 | }
4000 | .fa-tools:before {
4001 | content: "\f7d9";
4002 | }
4003 | .fa-tooth:before {
4004 | content: "\f5c9";
4005 | }
4006 | .fa-torah:before {
4007 | content: "\f6a0";
4008 | }
4009 | .fa-torii-gate:before {
4010 | content: "\f6a1";
4011 | }
4012 | .fa-tractor:before {
4013 | content: "\f722";
4014 | }
4015 | .fa-trade-federation:before {
4016 | content: "\f513";
4017 | }
4018 | .fa-trademark:before {
4019 | content: "\f25c";
4020 | }
4021 | .fa-traffic-light:before {
4022 | content: "\f637";
4023 | }
4024 | .fa-trailer:before {
4025 | content: "\f941";
4026 | }
4027 | .fa-train:before {
4028 | content: "\f238";
4029 | }
4030 | .fa-tram:before {
4031 | content: "\f7da";
4032 | }
4033 | .fa-transgender:before {
4034 | content: "\f224";
4035 | }
4036 | .fa-transgender-alt:before {
4037 | content: "\f225";
4038 | }
4039 | .fa-trash:before {
4040 | content: "\f1f8";
4041 | }
4042 | .fa-trash-alt:before {
4043 | content: "\f2ed";
4044 | }
4045 | .fa-trash-restore:before {
4046 | content: "\f829";
4047 | }
4048 | .fa-trash-restore-alt:before {
4049 | content: "\f82a";
4050 | }
4051 | .fa-tree:before {
4052 | content: "\f1bb";
4053 | }
4054 | .fa-trello:before {
4055 | content: "\f181";
4056 | }
4057 | .fa-tripadvisor:before {
4058 | content: "\f262";
4059 | }
4060 | .fa-trophy:before {
4061 | content: "\f091";
4062 | }
4063 | .fa-truck:before {
4064 | content: "\f0d1";
4065 | }
4066 | .fa-truck-loading:before {
4067 | content: "\f4de";
4068 | }
4069 | .fa-truck-monster:before {
4070 | content: "\f63b";
4071 | }
4072 | .fa-truck-moving:before {
4073 | content: "\f4df";
4074 | }
4075 | .fa-truck-pickup:before {
4076 | content: "\f63c";
4077 | }
4078 | .fa-tshirt:before {
4079 | content: "\f553";
4080 | }
4081 | .fa-tty:before {
4082 | content: "\f1e4";
4083 | }
4084 | .fa-tumblr:before {
4085 | content: "\f173";
4086 | }
4087 | .fa-tumblr-square:before {
4088 | content: "\f174";
4089 | }
4090 | .fa-tv:before {
4091 | content: "\f26c";
4092 | }
4093 | .fa-twitch:before {
4094 | content: "\f1e8";
4095 | }
4096 | .fa-twitter:before {
4097 | content: "\f099";
4098 | }
4099 | .fa-twitter-square:before {
4100 | content: "\f081";
4101 | }
4102 | .fa-typo3:before {
4103 | content: "\f42b";
4104 | }
4105 | .fa-uber:before {
4106 | content: "\f402";
4107 | }
4108 | .fa-ubuntu:before {
4109 | content: "\f7df";
4110 | }
4111 | .fa-uikit:before {
4112 | content: "\f403";
4113 | }
4114 | .fa-umbraco:before {
4115 | content: "\f8e8";
4116 | }
4117 | .fa-umbrella:before {
4118 | content: "\f0e9";
4119 | }
4120 | .fa-umbrella-beach:before {
4121 | content: "\f5ca";
4122 | }
4123 | .fa-underline:before {
4124 | content: "\f0cd";
4125 | }
4126 | .fa-undo:before {
4127 | content: "\f0e2";
4128 | }
4129 | .fa-undo-alt:before {
4130 | content: "\f2ea";
4131 | }
4132 | .fa-uniregistry:before {
4133 | content: "\f404";
4134 | }
4135 | .fa-unity:before {
4136 | content: "\f949";
4137 | }
4138 | .fa-universal-access:before {
4139 | content: "\f29a";
4140 | }
4141 | .fa-university:before {
4142 | content: "\f19c";
4143 | }
4144 | .fa-unlink:before {
4145 | content: "\f127";
4146 | }
4147 | .fa-unlock:before {
4148 | content: "\f09c";
4149 | }
4150 | .fa-unlock-alt:before {
4151 | content: "\f13e";
4152 | }
4153 | .fa-untappd:before {
4154 | content: "\f405";
4155 | }
4156 | .fa-upload:before {
4157 | content: "\f093";
4158 | }
4159 | .fa-ups:before {
4160 | content: "\f7e0";
4161 | }
4162 | .fa-usb:before {
4163 | content: "\f287";
4164 | }
4165 | .fa-user:before {
4166 | content: "\f007";
4167 | }
4168 | .fa-user-alt:before {
4169 | content: "\f406";
4170 | }
4171 | .fa-user-alt-slash:before {
4172 | content: "\f4fa";
4173 | }
4174 | .fa-user-astronaut:before {
4175 | content: "\f4fb";
4176 | }
4177 | .fa-user-check:before {
4178 | content: "\f4fc";
4179 | }
4180 | .fa-user-circle:before {
4181 | content: "\f2bd";
4182 | }
4183 | .fa-user-clock:before {
4184 | content: "\f4fd";
4185 | }
4186 | .fa-user-cog:before {
4187 | content: "\f4fe";
4188 | }
4189 | .fa-user-edit:before {
4190 | content: "\f4ff";
4191 | }
4192 | .fa-user-friends:before {
4193 | content: "\f500";
4194 | }
4195 | .fa-user-graduate:before {
4196 | content: "\f501";
4197 | }
4198 | .fa-user-injured:before {
4199 | content: "\f728";
4200 | }
4201 | .fa-user-lock:before {
4202 | content: "\f502";
4203 | }
4204 | .fa-user-md:before {
4205 | content: "\f0f0";
4206 | }
4207 | .fa-user-minus:before {
4208 | content: "\f503";
4209 | }
4210 | .fa-user-ninja:before {
4211 | content: "\f504";
4212 | }
4213 | .fa-user-nurse:before {
4214 | content: "\f82f";
4215 | }
4216 | .fa-user-plus:before {
4217 | content: "\f234";
4218 | }
4219 | .fa-user-secret:before {
4220 | content: "\f21b";
4221 | }
4222 | .fa-user-shield:before {
4223 | content: "\f505";
4224 | }
4225 | .fa-user-slash:before {
4226 | content: "\f506";
4227 | }
4228 | .fa-user-tag:before {
4229 | content: "\f507";
4230 | }
4231 | .fa-user-tie:before {
4232 | content: "\f508";
4233 | }
4234 | .fa-user-times:before {
4235 | content: "\f235";
4236 | }
4237 | .fa-users:before {
4238 | content: "\f0c0";
4239 | }
4240 | .fa-users-cog:before {
4241 | content: "\f509";
4242 | }
4243 | .fa-usps:before {
4244 | content: "\f7e1";
4245 | }
4246 | .fa-ussunnah:before {
4247 | content: "\f407";
4248 | }
4249 | .fa-utensil-spoon:before {
4250 | content: "\f2e5";
4251 | }
4252 | .fa-utensils:before {
4253 | content: "\f2e7";
4254 | }
4255 | .fa-vaadin:before {
4256 | content: "\f408";
4257 | }
4258 | .fa-vector-square:before {
4259 | content: "\f5cb";
4260 | }
4261 | .fa-venus:before {
4262 | content: "\f221";
4263 | }
4264 | .fa-venus-double:before {
4265 | content: "\f226";
4266 | }
4267 | .fa-venus-mars:before {
4268 | content: "\f228";
4269 | }
4270 | .fa-viacoin:before {
4271 | content: "\f237";
4272 | }
4273 | .fa-viadeo:before {
4274 | content: "\f2a9";
4275 | }
4276 | .fa-viadeo-square:before {
4277 | content: "\f2aa";
4278 | }
4279 | .fa-vial:before {
4280 | content: "\f492";
4281 | }
4282 | .fa-vials:before {
4283 | content: "\f493";
4284 | }
4285 | .fa-viber:before {
4286 | content: "\f409";
4287 | }
4288 | .fa-video:before {
4289 | content: "\f03d";
4290 | }
4291 | .fa-video-slash:before {
4292 | content: "\f4e2";
4293 | }
4294 | .fa-vihara:before {
4295 | content: "\f6a7";
4296 | }
4297 | .fa-vimeo:before {
4298 | content: "\f40a";
4299 | }
4300 | .fa-vimeo-square:before {
4301 | content: "\f194";
4302 | }
4303 | .fa-vimeo-v:before {
4304 | content: "\f27d";
4305 | }
4306 | .fa-vine:before {
4307 | content: "\f1ca";
4308 | }
4309 | .fa-virus:before {
4310 | content: "\f974";
4311 | }
4312 | .fa-virus-slash:before {
4313 | content: "\f975";
4314 | }
4315 | .fa-viruses:before {
4316 | content: "\f976";
4317 | }
4318 | .fa-vk:before {
4319 | content: "\f189";
4320 | }
4321 | .fa-vnv:before {
4322 | content: "\f40b";
4323 | }
4324 | .fa-voicemail:before {
4325 | content: "\f897";
4326 | }
4327 | .fa-volleyball-ball:before {
4328 | content: "\f45f";
4329 | }
4330 | .fa-volume-down:before {
4331 | content: "\f027";
4332 | }
4333 | .fa-volume-mute:before {
4334 | content: "\f6a9";
4335 | }
4336 | .fa-volume-off:before {
4337 | content: "\f026";
4338 | }
4339 | .fa-volume-up:before {
4340 | content: "\f028";
4341 | }
4342 | .fa-vote-yea:before {
4343 | content: "\f772";
4344 | }
4345 | .fa-vr-cardboard:before {
4346 | content: "\f729";
4347 | }
4348 | .fa-vuejs:before {
4349 | content: "\f41f";
4350 | }
4351 | .fa-walking:before {
4352 | content: "\f554";
4353 | }
4354 | .fa-wallet:before {
4355 | content: "\f555";
4356 | }
4357 | .fa-warehouse:before {
4358 | content: "\f494";
4359 | }
4360 | .fa-water:before {
4361 | content: "\f773";
4362 | }
4363 | .fa-wave-square:before {
4364 | content: "\f83e";
4365 | }
4366 | .fa-waze:before {
4367 | content: "\f83f";
4368 | }
4369 | .fa-weebly:before {
4370 | content: "\f5cc";
4371 | }
4372 | .fa-weibo:before {
4373 | content: "\f18a";
4374 | }
4375 | .fa-weight:before {
4376 | content: "\f496";
4377 | }
4378 | .fa-weight-hanging:before {
4379 | content: "\f5cd";
4380 | }
4381 | .fa-weixin:before {
4382 | content: "\f1d7";
4383 | }
4384 | .fa-whatsapp:before {
4385 | content: "\f232";
4386 | }
4387 | .fa-whatsapp-square:before {
4388 | content: "\f40c";
4389 | }
4390 | .fa-wheelchair:before {
4391 | content: "\f193";
4392 | }
4393 | .fa-whmcs:before {
4394 | content: "\f40d";
4395 | }
4396 | .fa-wifi:before {
4397 | content: "\f1eb";
4398 | }
4399 | .fa-wikipedia-w:before {
4400 | content: "\f266";
4401 | }
4402 | .fa-wind:before {
4403 | content: "\f72e";
4404 | }
4405 | .fa-window-close:before {
4406 | content: "\f410";
4407 | }
4408 | .fa-window-maximize:before {
4409 | content: "\f2d0";
4410 | }
4411 | .fa-window-minimize:before {
4412 | content: "\f2d1";
4413 | }
4414 | .fa-window-restore:before {
4415 | content: "\f2d2";
4416 | }
4417 | .fa-windows:before {
4418 | content: "\f17a";
4419 | }
4420 | .fa-wine-bottle:before {
4421 | content: "\f72f";
4422 | }
4423 | .fa-wine-glass:before {
4424 | content: "\f4e3";
4425 | }
4426 | .fa-wine-glass-alt:before {
4427 | content: "\f5ce";
4428 | }
4429 | .fa-wix:before {
4430 | content: "\f5cf";
4431 | }
4432 | .fa-wizards-of-the-coast:before {
4433 | content: "\f730";
4434 | }
4435 | .fa-wolf-pack-battalion:before {
4436 | content: "\f514";
4437 | }
4438 | .fa-won-sign:before {
4439 | content: "\f159";
4440 | }
4441 | .fa-wordpress:before {
4442 | content: "\f19a";
4443 | }
4444 | .fa-wordpress-simple:before {
4445 | content: "\f411";
4446 | }
4447 | .fa-wpbeginner:before {
4448 | content: "\f297";
4449 | }
4450 | .fa-wpexplorer:before {
4451 | content: "\f2de";
4452 | }
4453 | .fa-wpforms:before {
4454 | content: "\f298";
4455 | }
4456 | .fa-wpressr:before {
4457 | content: "\f3e4";
4458 | }
4459 | .fa-wrench:before {
4460 | content: "\f0ad";
4461 | }
4462 | .fa-x-ray:before {
4463 | content: "\f497";
4464 | }
4465 | .fa-xbox:before {
4466 | content: "\f412";
4467 | }
4468 | .fa-xing:before {
4469 | content: "\f168";
4470 | }
4471 | .fa-xing-square:before {
4472 | content: "\f169";
4473 | }
4474 | .fa-y-combinator:before {
4475 | content: "\f23b";
4476 | }
4477 | .fa-yahoo:before {
4478 | content: "\f19e";
4479 | }
4480 | .fa-yammer:before {
4481 | content: "\f840";
4482 | }
4483 | .fa-yandex:before {
4484 | content: "\f413";
4485 | }
4486 | .fa-yandex-international:before {
4487 | content: "\f414";
4488 | }
4489 | .fa-yarn:before {
4490 | content: "\f7e3";
4491 | }
4492 | .fa-yelp:before {
4493 | content: "\f1e9";
4494 | }
4495 | .fa-yen-sign:before {
4496 | content: "\f157";
4497 | }
4498 | .fa-yin-yang:before {
4499 | content: "\f6ad";
4500 | }
4501 | .fa-yoast:before {
4502 | content: "\f2b1";
4503 | }
4504 | .fa-youtube:before {
4505 | content: "\f167";
4506 | }
4507 | .fa-youtube-square:before {
4508 | content: "\f431";
4509 | }
4510 | .fa-zhihu:before {
4511 | content: "\f63f";
4512 | }
4513 | .sr-only {
4514 | border: 0;
4515 | clip: rect(0, 0, 0, 0);
4516 | height: 1px;
4517 | margin: -1px;
4518 | overflow: hidden;
4519 | padding: 0;
4520 | position: absolute;
4521 | width: 1px;
4522 | }
4523 | .sr-only-focusable:active,
4524 | .sr-only-focusable:focus {
4525 | clip: auto;
4526 | height: auto;
4527 | margin: 0;
4528 | overflow: visible;
4529 | position: static;
4530 | width: auto;
4531 | }
4532 | @font-face {
4533 | font-family: "Font Awesome 5 Brands";
4534 | font-style: normal;
4535 | font-weight: 400;
4536 | font-display: block;
4537 | }
4538 | .fab {
4539 | font-family: "Font Awesome 5 Brands";
4540 | }
4541 | @font-face {
4542 | font-family: "Font Awesome 5 Free";
4543 | font-style: normal;
4544 | font-weight: 400;
4545 | font-display: block;
4546 | }
4547 | .fab,
4548 | .far {
4549 | font-weight: 400;
4550 | }
4551 | @font-face {
4552 | font-family: "Font Awesome 5 Free";
4553 | font-style: normal;
4554 | font-weight: 900;
4555 | font-display: block;
4556 | }
4557 | .fa,
4558 | .far,
4559 | .fas {
4560 | font-family: "Font Awesome 5 Free";
4561 | }
4562 | .fa,
4563 | .fas {
4564 | font-weight: 900;
4565 | }
4566 |
--------------------------------------------------------------------------------
/spinburger/style2.css:
--------------------------------------------------------------------------------
1 | /*
2 |
3 | Tooplate 2121 Wave Cafe
4 |
5 | https://www.tooplate.com/view/2121-wave-cafe
6 |
7 | */
8 |
9 | html { scroll-behavior: smooth; }
10 |
11 | body {
12 | margin: 0;
13 | padding: 0;
14 | font-family: 'Open Sans', Arial, Helvetica, sans-serif;
15 | font-size: 18px;
16 | overflow-x: hidden;
17 | background-color: #1E5050;
18 | background-image: url('https://media.gettyimages.com/videos/tilt-down-blur-restaurant-for-background-video-id1273433362?s=640x640');
19 | background-size: cover;
20 |
21 |
22 | }
23 |
24 |
25 | ul {
26 | padding: 0;
27 | margin: 0;
28 | }
29 |
30 | nav > ul > li { list-style: none; }
31 |
32 | a {
33 | color: #3CF;
34 | text-decoration: none;
35 | transition: all 0.3s ease;
36 | }
37 |
38 | p {
39 | line-height: 1.8;
40 | margin-top: 0;
41 | }
42 |
43 | h2 { margin-top: 0; }
44 |
45 | #tm-video {
46 | position: fixed;
47 | right: 0;
48 | bottom: 0;
49 | z-index: -1000;
50 | }
51 |
52 | .tm-video-wrapper { position: relative; }
53 |
54 | #tm-video-control-button {
55 | cursor: pointer;
56 | position: fixed;
57 | bottom: 30px;
58 | right: 30px;
59 | z-index: 1000;
60 | background-color: rgba(0,0,0,0.5);
61 | color: white;
62 | padding: 10px;
63 | }
64 |
65 | .tm-container { padding: 30px; }
66 |
67 | .tm-row {
68 | display: flex;
69 | justify-content: space-between;
70 | }
71 |
72 | .tm-left,
73 | .tm-right {
74 | width: 50%;
75 | }
76 |
77 | .tm-left-inner { position: fixed; }
78 |
79 | .tm-site-header {
80 | background-color: white;
81 | color: #099;
82 | width: 100%;
83 | height: 160px;
84 | display: flex;
85 | align-items: center;
86 | justify-content: center;
87 | }
88 |
89 | .tm-site-logo { margin-right: 30px; }
90 |
91 | .tm-site-name {
92 | font-size: 2.2rem;
93 | font-style: italic;
94 | }
95 |
96 | .tm-left-inner {
97 | max-width: 500px;
98 | width: 100%;
99 | }
100 |
101 | .tm-site-nav-ul {
102 | display: flex;
103 | flex-wrap: wrap;
104 | justify-content: space-between;
105 | }
106 |
107 | .tm-page-nav-item { margin-top: 20px; }
108 |
109 | .tm-page-link {
110 | min-width: 240px;
111 | height: 100px;
112 | background-color: white;
113 | color: #099;
114 | display: flex;
115 | text-decoration: none;
116 | align-items: center;
117 | font-size: 1.2rem;
118 | }
119 |
120 | .tm-page-link:hover,
121 | .tm-page-link.active {
122 | background-color: #099;
123 | color: white;
124 | }
125 |
126 | .tm-page-link-icon {
127 | margin-right: 25px;
128 | margin-left: 25px;
129 | font-size: 1.5rem;
130 | }
131 |
132 | .tm-black-bg {
133 | background-color: rgba(0,0,0,0.6);
134 | color: white;
135 | }
136 |
137 | .tm-drinks-nav > ul > li { display: inline-block; }
138 |
139 | .tm-drinks-nav > ul > li > a {
140 | color: white;
141 | font-size: 1.2rem;
142 | padding-top: 15px;
143 | padding-bottom: 5px;
144 | border-bottom: 3px solid transparent;
145 | }
146 |
147 | .tm-drinks-nav { height: 80px; }
148 | .tm-main { max-width: 660px; }
149 |
150 | .tm-drinks-nav > ul {
151 | display: flex;
152 | align-items: center;
153 | justify-content: space-around;
154 | height: 100%;
155 | }
156 |
157 | .tm-drinks-nav > ul > li a.active,
158 | .tm-drinks-nav > ul > li a:hover {
159 | color: #96FEFF;
160 | border-bottom: 4px solid #96FEFF;
161 | }
162 |
163 | .tm-list-item {
164 | display: flex;
165 | align-items: center;
166 | justify-content: space-between;
167 | margin-top: 20px;
168 | }
169 |
170 | .tm-list-item-2 { align-items: flex-start; }
171 |
172 | .tm-list-item-img {
173 | margin-right: 20px;
174 | width: 160px;
175 | height: 160px;
176 | background-color: #099;
177 | }
178 |
179 | .tm-list-item-img-big {
180 | margin-right: 25px;
181 | width: 200px;
182 | height: 200px;
183 | }
184 |
185 | .tm-list-item-text {
186 | padding: 20px 25px;
187 | flex: 1;
188 | }
189 |
190 | .tm-list-item-text-2 { flex: 1; }
191 |
192 | .tm-list-item-name {
193 | display: flex;
194 | justify-content: space-between;
195 | margin-top: 0;
196 | }
197 |
198 | .tm-list-item-price { color: #96FEFF; }
199 | .tm-site-footer { margin-top: 15px; }
200 |
201 | .tm-footer-text {
202 | padding: 10px 65px 10px 20px;
203 | display: inline-block;
204 | }
205 |
206 | .tm-footer-link { color: white; }
207 | .tm-tab-content { animation: fadeEffect 1s; }
208 | .tm-page-content { animation: fadeEffect 1s; }
209 |
210 | .tm-text-primary { color: #3CC; }
211 | .tm-mb-20 { margin-bottom: 20px; }
212 | .tm-mb-30 { margin-bottom: 30px; }
213 | .tm-img-right {
214 | margin-left: 30px;
215 | margin-right: 0;
216 | }
217 |
218 | /* Go from zero to full opacity */
219 | @keyframes fadeEffect {
220 | from { opacity: 0.3; }
221 | to { opacity: 1; }
222 | }
223 |
224 | /* About */
225 | .tm-about-box-1 { padding: 40px 30px 50px 0; }
226 | .tm-about-box-2 { padding: 50px 40px 30px; }
227 | .tm-about-header { margin-left: 220px; }
228 |
229 | /* Special */
230 | .tm-special-items {
231 | display: flex;
232 | flex-wrap: wrap;
233 | margin: -30px -10px 0;
234 | }
235 |
236 | .tm-special-item {
237 | max-width: 320px;
238 | margin: 30px 10px;
239 | }
240 |
241 | .tm-special-item-title { font-size: 1.4rem; }
242 | .tm-special-item-description { padding: 25px 30px; }
243 |
244 | /* Contact */
245 | .tm-contact-text-container {
246 | padding: 45px 50px;
247 | margin-bottom: 20px;
248 | }
249 |
250 | .tm-contact-form-container {
251 | max-width: 460px;
252 | padding: 40px 50px;
253 | box-sizing: border-box;
254 | }
255 |
256 | .tm-form-group { margin-bottom: 25px; }
257 |
258 | .tm-form-control {
259 | display: block;
260 | box-sizing: border-box;
261 | width: 100%;
262 | padding: 15px;
263 | font-family: 'Open Sans', Arial, Helvetica, sans-serif;
264 | font-size: 1rem;
265 | line-height: 1.5;
266 | color: #fff;
267 | background-color: transparent;
268 | background-clip: padding-box;
269 | border: 0;
270 | border-bottom: 1px solid white;
271 | }
272 |
273 | .tm-form-control::-webkit-input-placeholder { color: white; } /* Edge */
274 | .tm-form-control:-ms-input-placeholder { color: white; } /* Internet Explorer 10-11 */
275 | .tm-form-control::placeholder { color: white; }
276 |
277 | .tm-btn-primary {
278 | color: #099;
279 | background-color: white;
280 | border: 0;
281 | padding: 12px 40px;
282 | font-size: 1.4rem;
283 | cursor: pointer;
284 | transition: all 0.3s ease;
285 | }
286 |
287 | .tm-btn-primary:hover {
288 | color: white;
289 | background-color: #099;
290 | }
291 |
292 | .tm-align-right {
293 | display: block;
294 | margin-left: auto;
295 | margin-right: 0;
296 | }
297 |
298 | .tm-mb-30 { margin-bottom: 30px; }
299 |
300 | @media (max-width: 1130px) and (min-width: 992px) {
301 | .tm-left-inner { max-width: 380px; }
302 | .tm-site-name { font-size: 2.6rem; }
303 | .tm-site-logo { margin-right: 20px; }
304 | .tm-page-link { width: 100%; }
305 | .tm-page-link-icon { margin-right: 15px; }
306 | .tm-left { width: 45%; }
307 | .tm-right { width: 55%; }
308 | }
309 |
310 | @media (max-width: 991px) {
311 | .tm-left-inner { position: static; }
312 | .tm-left, .tm-right { width: 100%; }
313 | .tm-left { margin-bottom: 50px; }
314 | .tm-row { display: block; }
315 | }
316 |
317 | @media (max-width: 574px) {
318 | .tm-site-nav-ul { display: block; }
319 | }
320 |
321 | @media (max-width: 550px) and (min-width: 501px) {
322 | .tm-list-item-img-big {
323 | width: 160px;
324 | height: 160px;
325 | }
326 |
327 | .tm-about-header { margin-left: 180px; }
328 | }
329 |
330 | @media (max-width: 500px) {
331 | .tm-about-header { margin-left: 0; }
332 | .tm-list-item-2 { flex-direction: column; }
333 | .tm-about-box-1 { padding-left: 30px; }
334 |
335 | .tm-list-item-img-big {
336 | margin-right: 0;
337 | margin-bottom: 25px;
338 | }
339 |
340 | .tm-img-right { margin-left: 0; }
341 | }
342 |
343 | @media (max-width: 479px) {
344 | .tm-site-name { font-size: 2.6rem; }
345 | .tm-site-logo { margin-right: 20px; }
346 |
347 | .tm-list-item {
348 | flex-direction: column;
349 | margin-top: 40px;
350 | }
351 |
352 | .tm-list-item-img {
353 | margin-right: 0;
354 | margin-bottom: 15px;
355 | }
356 |
357 | .tm-drinks-nav { height: auto; }
358 |
359 | .tm-drinks-nav > ul {
360 | flex-direction: column;
361 | padding: 15px;
362 | }
363 |
364 | .tm-drinks-nav > ul > li { margin-bottom: 10px; }
365 | .tm-drinks-nav > ul > li > a { display: block; }
366 | }
367 |
368 | button {
369 | border: none;
370 | outline: 0;
371 | padding: 8px;
372 | color: white;
373 | background-color: #000;
374 | text-align: center;
375 | width: 100%;
376 | font-size: 18px;
377 | }
378 |
379 | /* Contact */
380 | .checkout-button {
381 | border: 10px;
382 | outline: 0;
383 | color: white;
384 | background-color: #000;
385 | text-align: center;
386 | width: 100%;
387 | font-size: 18px;
388 | justify-content: space-between;
389 | margin-top: 20px;
390 |
391 | }
392 |
393 | button:hover{background-color:orange;}
394 |
--------------------------------------------------------------------------------