├── css ├── all.css ├── style.css ├── styles.css └── styletwo.css ├── img └── Logo.png ├── index.html ├── qrcode.html ├── qrreader.html ├── scripts ├── script.js └── scripttwo.js ├── select.html └── webfonts ├── fa-brands-400.ttf ├── fa-brands-400.woff2 ├── fa-regular-400.ttf ├── fa-regular-400.woff2 ├── fa-solid-900.ttf ├── fa-solid-900.woff2 ├── fa-v4compatibility.ttf └── fa-v4compatibility.woff2 /css/all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.1.1 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 | * Copyright 2022 Fonticons, Inc. 5 | */ 6 | .fa { 7 | font-family: var(--fa-style-family, "Font Awesome 6 Free"); 8 | font-weight: var(--fa-style, 900); } 9 | 10 | .fa, 11 | .fas, 12 | .fa-solid, 13 | .far, 14 | .fa-regular, 15 | .fal, 16 | .fa-light, 17 | .fat, 18 | .fa-thin, 19 | .fad, 20 | .fa-duotone, 21 | .fab, 22 | .fa-brands { 23 | -moz-osx-font-smoothing: grayscale; 24 | -webkit-font-smoothing: antialiased; 25 | display: var(--fa-display, inline-block); 26 | font-style: normal; 27 | font-variant: normal; 28 | line-height: 1; 29 | text-rendering: auto; } 30 | 31 | .fa-1x { 32 | font-size: 1em; } 33 | 34 | .fa-2x { 35 | font-size: 2em; } 36 | 37 | .fa-3x { 38 | font-size: 3em; } 39 | 40 | .fa-4x { 41 | font-size: 4em; } 42 | 43 | .fa-5x { 44 | font-size: 5em; } 45 | 46 | .fa-6x { 47 | font-size: 6em; } 48 | 49 | .fa-7x { 50 | font-size: 7em; } 51 | 52 | .fa-8x { 53 | font-size: 8em; } 54 | 55 | .fa-9x { 56 | font-size: 9em; } 57 | 58 | .fa-10x { 59 | font-size: 10em; } 60 | 61 | .fa-2xs { 62 | font-size: 0.625em; 63 | line-height: 0.1em; 64 | vertical-align: 0.225em; } 65 | 66 | .fa-xs { 67 | font-size: 0.75em; 68 | line-height: 0.08333em; 69 | vertical-align: 0.125em; } 70 | 71 | .fa-sm { 72 | font-size: 0.875em; 73 | line-height: 0.07143em; 74 | vertical-align: 0.05357em; } 75 | 76 | .fa-lg { 77 | font-size: 1.25em; 78 | line-height: 0.05em; 79 | vertical-align: -0.075em; } 80 | 81 | .fa-xl { 82 | font-size: 1.5em; 83 | line-height: 0.04167em; 84 | vertical-align: -0.125em; } 85 | 86 | .fa-2xl { 87 | font-size: 2em; 88 | line-height: 0.03125em; 89 | vertical-align: -0.1875em; } 90 | 91 | .fa-fw { 92 | text-align: center; 93 | width: 1.25em; } 94 | 95 | .fa-ul { 96 | list-style-type: none; 97 | margin-left: var(--fa-li-margin, 2.5em); 98 | padding-left: 0; } 99 | .fa-ul > li { 100 | position: relative; } 101 | 102 | .fa-li { 103 | left: calc(var(--fa-li-width, 2em) * -1); 104 | position: absolute; 105 | text-align: center; 106 | width: var(--fa-li-width, 2em); 107 | line-height: inherit; } 108 | 109 | .fa-border { 110 | border-color: var(--fa-border-color, #eee); 111 | border-radius: var(--fa-border-radius, 0.1em); 112 | border-style: var(--fa-border-style, solid); 113 | border-width: var(--fa-border-width, 0.08em); 114 | padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } 115 | 116 | .fa-pull-left { 117 | float: left; 118 | margin-right: var(--fa-pull-margin, 0.3em); } 119 | 120 | .fa-pull-right { 121 | float: right; 122 | margin-left: var(--fa-pull-margin, 0.3em); } 123 | 124 | .fa-beat { 125 | -webkit-animation-name: fa-beat; 126 | animation-name: fa-beat; 127 | -webkit-animation-delay: var(--fa-animation-delay, 0); 128 | animation-delay: var(--fa-animation-delay, 0); 129 | -webkit-animation-direction: var(--fa-animation-direction, normal); 130 | animation-direction: var(--fa-animation-direction, normal); 131 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 132 | animation-duration: var(--fa-animation-duration, 1s); 133 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 134 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 135 | -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); 136 | animation-timing-function: var(--fa-animation-timing, ease-in-out); } 137 | 138 | .fa-bounce { 139 | -webkit-animation-name: fa-bounce; 140 | animation-name: fa-bounce; 141 | -webkit-animation-delay: var(--fa-animation-delay, 0); 142 | animation-delay: var(--fa-animation-delay, 0); 143 | -webkit-animation-direction: var(--fa-animation-direction, normal); 144 | animation-direction: var(--fa-animation-direction, normal); 145 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 146 | animation-duration: var(--fa-animation-duration, 1s); 147 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 148 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 149 | -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); 150 | animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } 151 | 152 | .fa-fade { 153 | -webkit-animation-name: fa-fade; 154 | animation-name: fa-fade; 155 | -webkit-animation-delay: var(--fa-animation-delay, 0); 156 | animation-delay: var(--fa-animation-delay, 0); 157 | -webkit-animation-direction: var(--fa-animation-direction, normal); 158 | animation-direction: var(--fa-animation-direction, normal); 159 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 160 | animation-duration: var(--fa-animation-duration, 1s); 161 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 162 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 163 | -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); 164 | animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } 165 | 166 | .fa-beat-fade { 167 | -webkit-animation-name: fa-beat-fade; 168 | animation-name: fa-beat-fade; 169 | -webkit-animation-delay: var(--fa-animation-delay, 0); 170 | animation-delay: var(--fa-animation-delay, 0); 171 | -webkit-animation-direction: var(--fa-animation-direction, normal); 172 | animation-direction: var(--fa-animation-direction, normal); 173 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 174 | animation-duration: var(--fa-animation-duration, 1s); 175 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 176 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 177 | -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); 178 | animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } 179 | 180 | .fa-flip { 181 | -webkit-animation-name: fa-flip; 182 | animation-name: fa-flip; 183 | -webkit-animation-delay: var(--fa-animation-delay, 0); 184 | animation-delay: var(--fa-animation-delay, 0); 185 | -webkit-animation-direction: var(--fa-animation-direction, normal); 186 | animation-direction: var(--fa-animation-direction, normal); 187 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 188 | animation-duration: var(--fa-animation-duration, 1s); 189 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 190 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 191 | -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); 192 | animation-timing-function: var(--fa-animation-timing, ease-in-out); } 193 | 194 | .fa-shake { 195 | -webkit-animation-name: fa-shake; 196 | animation-name: fa-shake; 197 | -webkit-animation-delay: var(--fa-animation-delay, 0); 198 | animation-delay: var(--fa-animation-delay, 0); 199 | -webkit-animation-direction: var(--fa-animation-direction, normal); 200 | animation-direction: var(--fa-animation-direction, normal); 201 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 202 | animation-duration: var(--fa-animation-duration, 1s); 203 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 204 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 205 | -webkit-animation-timing-function: var(--fa-animation-timing, linear); 206 | animation-timing-function: var(--fa-animation-timing, linear); } 207 | 208 | .fa-spin { 209 | -webkit-animation-name: fa-spin; 210 | animation-name: fa-spin; 211 | -webkit-animation-delay: var(--fa-animation-delay, 0); 212 | animation-delay: var(--fa-animation-delay, 0); 213 | -webkit-animation-direction: var(--fa-animation-direction, normal); 214 | animation-direction: var(--fa-animation-direction, normal); 215 | -webkit-animation-duration: var(--fa-animation-duration, 2s); 216 | animation-duration: var(--fa-animation-duration, 2s); 217 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 218 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 219 | -webkit-animation-timing-function: var(--fa-animation-timing, linear); 220 | animation-timing-function: var(--fa-animation-timing, linear); } 221 | 222 | .fa-spin-reverse { 223 | --fa-animation-direction: reverse; } 224 | 225 | .fa-pulse, 226 | .fa-spin-pulse { 227 | -webkit-animation-name: fa-spin; 228 | animation-name: fa-spin; 229 | -webkit-animation-direction: var(--fa-animation-direction, normal); 230 | animation-direction: var(--fa-animation-direction, normal); 231 | -webkit-animation-duration: var(--fa-animation-duration, 1s); 232 | animation-duration: var(--fa-animation-duration, 1s); 233 | -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); 234 | animation-iteration-count: var(--fa-animation-iteration-count, infinite); 235 | -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); 236 | animation-timing-function: var(--fa-animation-timing, steps(8)); } 237 | 238 | @media (prefers-reduced-motion: reduce) { 239 | .fa-beat, 240 | .fa-bounce, 241 | .fa-fade, 242 | .fa-beat-fade, 243 | .fa-flip, 244 | .fa-pulse, 245 | .fa-shake, 246 | .fa-spin, 247 | .fa-spin-pulse { 248 | -webkit-animation-delay: -1ms; 249 | animation-delay: -1ms; 250 | -webkit-animation-duration: 1ms; 251 | animation-duration: 1ms; 252 | -webkit-animation-iteration-count: 1; 253 | animation-iteration-count: 1; 254 | transition-delay: 0s; 255 | transition-duration: 0s; } } 256 | 257 | @-webkit-keyframes fa-beat { 258 | 0%, 90% { 259 | -webkit-transform: scale(1); 260 | transform: scale(1); } 261 | 45% { 262 | -webkit-transform: scale(var(--fa-beat-scale, 1.25)); 263 | transform: scale(var(--fa-beat-scale, 1.25)); } } 264 | 265 | @keyframes fa-beat { 266 | 0%, 90% { 267 | -webkit-transform: scale(1); 268 | transform: scale(1); } 269 | 45% { 270 | -webkit-transform: scale(var(--fa-beat-scale, 1.25)); 271 | transform: scale(var(--fa-beat-scale, 1.25)); } } 272 | 273 | @-webkit-keyframes fa-bounce { 274 | 0% { 275 | -webkit-transform: scale(1, 1) translateY(0); 276 | transform: scale(1, 1) translateY(0); } 277 | 10% { 278 | -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); 279 | transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 280 | 30% { 281 | -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); 282 | transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 283 | 50% { 284 | -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); 285 | transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 286 | 57% { 287 | -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); 288 | transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 289 | 64% { 290 | -webkit-transform: scale(1, 1) translateY(0); 291 | transform: scale(1, 1) translateY(0); } 292 | 100% { 293 | -webkit-transform: scale(1, 1) translateY(0); 294 | transform: scale(1, 1) translateY(0); } } 295 | 296 | @keyframes fa-bounce { 297 | 0% { 298 | -webkit-transform: scale(1, 1) translateY(0); 299 | transform: scale(1, 1) translateY(0); } 300 | 10% { 301 | -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); 302 | transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } 303 | 30% { 304 | -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); 305 | transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } 306 | 50% { 307 | -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); 308 | transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } 309 | 57% { 310 | -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); 311 | transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } 312 | 64% { 313 | -webkit-transform: scale(1, 1) translateY(0); 314 | transform: scale(1, 1) translateY(0); } 315 | 100% { 316 | -webkit-transform: scale(1, 1) translateY(0); 317 | transform: scale(1, 1) translateY(0); } } 318 | 319 | @-webkit-keyframes fa-fade { 320 | 50% { 321 | opacity: var(--fa-fade-opacity, 0.4); } } 322 | 323 | @keyframes fa-fade { 324 | 50% { 325 | opacity: var(--fa-fade-opacity, 0.4); } } 326 | 327 | @-webkit-keyframes fa-beat-fade { 328 | 0%, 100% { 329 | opacity: var(--fa-beat-fade-opacity, 0.4); 330 | -webkit-transform: scale(1); 331 | transform: scale(1); } 332 | 50% { 333 | opacity: 1; 334 | -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); 335 | transform: scale(var(--fa-beat-fade-scale, 1.125)); } } 336 | 337 | @keyframes fa-beat-fade { 338 | 0%, 100% { 339 | opacity: var(--fa-beat-fade-opacity, 0.4); 340 | -webkit-transform: scale(1); 341 | transform: scale(1); } 342 | 50% { 343 | opacity: 1; 344 | -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); 345 | transform: scale(var(--fa-beat-fade-scale, 1.125)); } } 346 | 347 | @-webkit-keyframes fa-flip { 348 | 50% { 349 | -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); 350 | transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } 351 | 352 | @keyframes fa-flip { 353 | 50% { 354 | -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); 355 | transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } 356 | 357 | @-webkit-keyframes fa-shake { 358 | 0% { 359 | -webkit-transform: rotate(-15deg); 360 | transform: rotate(-15deg); } 361 | 4% { 362 | -webkit-transform: rotate(15deg); 363 | transform: rotate(15deg); } 364 | 8%, 24% { 365 | -webkit-transform: rotate(-18deg); 366 | transform: rotate(-18deg); } 367 | 12%, 28% { 368 | -webkit-transform: rotate(18deg); 369 | transform: rotate(18deg); } 370 | 16% { 371 | -webkit-transform: rotate(-22deg); 372 | transform: rotate(-22deg); } 373 | 20% { 374 | -webkit-transform: rotate(22deg); 375 | transform: rotate(22deg); } 376 | 32% { 377 | -webkit-transform: rotate(-12deg); 378 | transform: rotate(-12deg); } 379 | 36% { 380 | -webkit-transform: rotate(12deg); 381 | transform: rotate(12deg); } 382 | 40%, 100% { 383 | -webkit-transform: rotate(0deg); 384 | transform: rotate(0deg); } } 385 | 386 | @keyframes fa-shake { 387 | 0% { 388 | -webkit-transform: rotate(-15deg); 389 | transform: rotate(-15deg); } 390 | 4% { 391 | -webkit-transform: rotate(15deg); 392 | transform: rotate(15deg); } 393 | 8%, 24% { 394 | -webkit-transform: rotate(-18deg); 395 | transform: rotate(-18deg); } 396 | 12%, 28% { 397 | -webkit-transform: rotate(18deg); 398 | transform: rotate(18deg); } 399 | 16% { 400 | -webkit-transform: rotate(-22deg); 401 | transform: rotate(-22deg); } 402 | 20% { 403 | -webkit-transform: rotate(22deg); 404 | transform: rotate(22deg); } 405 | 32% { 406 | -webkit-transform: rotate(-12deg); 407 | transform: rotate(-12deg); } 408 | 36% { 409 | -webkit-transform: rotate(12deg); 410 | transform: rotate(12deg); } 411 | 40%, 100% { 412 | -webkit-transform: rotate(0deg); 413 | transform: rotate(0deg); } } 414 | 415 | @-webkit-keyframes fa-spin { 416 | 0% { 417 | -webkit-transform: rotate(0deg); 418 | transform: rotate(0deg); } 419 | 100% { 420 | -webkit-transform: rotate(360deg); 421 | transform: rotate(360deg); } } 422 | 423 | @keyframes fa-spin { 424 | 0% { 425 | -webkit-transform: rotate(0deg); 426 | transform: rotate(0deg); } 427 | 100% { 428 | -webkit-transform: rotate(360deg); 429 | transform: rotate(360deg); } } 430 | 431 | .fa-rotate-90 { 432 | -webkit-transform: rotate(90deg); 433 | transform: rotate(90deg); } 434 | 435 | .fa-rotate-180 { 436 | -webkit-transform: rotate(180deg); 437 | transform: rotate(180deg); } 438 | 439 | .fa-rotate-270 { 440 | -webkit-transform: rotate(270deg); 441 | transform: rotate(270deg); } 442 | 443 | .fa-flip-horizontal { 444 | -webkit-transform: scale(-1, 1); 445 | transform: scale(-1, 1); } 446 | 447 | .fa-flip-vertical { 448 | -webkit-transform: scale(1, -1); 449 | transform: scale(1, -1); } 450 | 451 | .fa-flip-both, 452 | .fa-flip-horizontal.fa-flip-vertical { 453 | -webkit-transform: scale(-1, -1); 454 | transform: scale(-1, -1); } 455 | 456 | .fa-rotate-by { 457 | -webkit-transform: rotate(var(--fa-rotate-angle, none)); 458 | transform: rotate(var(--fa-rotate-angle, none)); } 459 | 460 | .fa-stack { 461 | display: inline-block; 462 | height: 2em; 463 | line-height: 2em; 464 | position: relative; 465 | vertical-align: middle; 466 | width: 2.5em; } 467 | 468 | .fa-stack-1x, 469 | .fa-stack-2x { 470 | left: 0; 471 | position: absolute; 472 | text-align: center; 473 | width: 100%; 474 | z-index: var(--fa-stack-z-index, auto); } 475 | 476 | .fa-stack-1x { 477 | line-height: inherit; } 478 | 479 | .fa-stack-2x { 480 | font-size: 2em; } 481 | 482 | .fa-inverse { 483 | color: var(--fa-inverse, #fff); } 484 | 485 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 486 | readers do not read off random characters that represent icons */ 487 | .fa-0::before { 488 | content: "\30"; } 489 | 490 | .fa-1::before { 491 | content: "\31"; } 492 | 493 | .fa-2::before { 494 | content: "\32"; } 495 | 496 | .fa-3::before { 497 | content: "\33"; } 498 | 499 | .fa-4::before { 500 | content: "\34"; } 501 | 502 | .fa-5::before { 503 | content: "\35"; } 504 | 505 | .fa-6::before { 506 | content: "\36"; } 507 | 508 | .fa-7::before { 509 | content: "\37"; } 510 | 511 | .fa-8::before { 512 | content: "\38"; } 513 | 514 | .fa-9::before { 515 | content: "\39"; } 516 | 517 | .fa-a::before { 518 | content: "\41"; } 519 | 520 | .fa-address-book::before { 521 | content: "\f2b9"; } 522 | 523 | .fa-contact-book::before { 524 | content: "\f2b9"; } 525 | 526 | .fa-address-card::before { 527 | content: "\f2bb"; } 528 | 529 | .fa-contact-card::before { 530 | content: "\f2bb"; } 531 | 532 | .fa-vcard::before { 533 | content: "\f2bb"; } 534 | 535 | .fa-align-center::before { 536 | content: "\f037"; } 537 | 538 | .fa-align-justify::before { 539 | content: "\f039"; } 540 | 541 | .fa-align-left::before { 542 | content: "\f036"; } 543 | 544 | .fa-align-right::before { 545 | content: "\f038"; } 546 | 547 | .fa-anchor::before { 548 | content: "\f13d"; } 549 | 550 | .fa-anchor-circle-check::before { 551 | content: "\e4aa"; } 552 | 553 | .fa-anchor-circle-exclamation::before { 554 | content: "\e4ab"; } 555 | 556 | .fa-anchor-circle-xmark::before { 557 | content: "\e4ac"; } 558 | 559 | .fa-anchor-lock::before { 560 | content: "\e4ad"; } 561 | 562 | .fa-angle-down::before { 563 | content: "\f107"; } 564 | 565 | .fa-angle-left::before { 566 | content: "\f104"; } 567 | 568 | .fa-angle-right::before { 569 | content: "\f105"; } 570 | 571 | .fa-angle-up::before { 572 | content: "\f106"; } 573 | 574 | .fa-angles-down::before { 575 | content: "\f103"; } 576 | 577 | .fa-angle-double-down::before { 578 | content: "\f103"; } 579 | 580 | .fa-angles-left::before { 581 | content: "\f100"; } 582 | 583 | .fa-angle-double-left::before { 584 | content: "\f100"; } 585 | 586 | .fa-angles-right::before { 587 | content: "\f101"; } 588 | 589 | .fa-angle-double-right::before { 590 | content: "\f101"; } 591 | 592 | .fa-angles-up::before { 593 | content: "\f102"; } 594 | 595 | .fa-angle-double-up::before { 596 | content: "\f102"; } 597 | 598 | .fa-ankh::before { 599 | content: "\f644"; } 600 | 601 | .fa-apple-whole::before { 602 | content: "\f5d1"; } 603 | 604 | .fa-apple-alt::before { 605 | content: "\f5d1"; } 606 | 607 | .fa-archway::before { 608 | content: "\f557"; } 609 | 610 | .fa-arrow-down::before { 611 | content: "\f063"; } 612 | 613 | .fa-arrow-down-1-9::before { 614 | content: "\f162"; } 615 | 616 | .fa-sort-numeric-asc::before { 617 | content: "\f162"; } 618 | 619 | .fa-sort-numeric-down::before { 620 | content: "\f162"; } 621 | 622 | .fa-arrow-down-9-1::before { 623 | content: "\f886"; } 624 | 625 | .fa-sort-numeric-desc::before { 626 | content: "\f886"; } 627 | 628 | .fa-sort-numeric-down-alt::before { 629 | content: "\f886"; } 630 | 631 | .fa-arrow-down-a-z::before { 632 | content: "\f15d"; } 633 | 634 | .fa-sort-alpha-asc::before { 635 | content: "\f15d"; } 636 | 637 | .fa-sort-alpha-down::before { 638 | content: "\f15d"; } 639 | 640 | .fa-arrow-down-long::before { 641 | content: "\f175"; } 642 | 643 | .fa-long-arrow-down::before { 644 | content: "\f175"; } 645 | 646 | .fa-arrow-down-short-wide::before { 647 | content: "\f884"; } 648 | 649 | .fa-sort-amount-desc::before { 650 | content: "\f884"; } 651 | 652 | .fa-sort-amount-down-alt::before { 653 | content: "\f884"; } 654 | 655 | .fa-arrow-down-up-across-line::before { 656 | content: "\e4af"; } 657 | 658 | .fa-arrow-down-up-lock::before { 659 | content: "\e4b0"; } 660 | 661 | .fa-arrow-down-wide-short::before { 662 | content: "\f160"; } 663 | 664 | .fa-sort-amount-asc::before { 665 | content: "\f160"; } 666 | 667 | .fa-sort-amount-down::before { 668 | content: "\f160"; } 669 | 670 | .fa-arrow-down-z-a::before { 671 | content: "\f881"; } 672 | 673 | .fa-sort-alpha-desc::before { 674 | content: "\f881"; } 675 | 676 | .fa-sort-alpha-down-alt::before { 677 | content: "\f881"; } 678 | 679 | .fa-arrow-left::before { 680 | content: "\f060"; } 681 | 682 | .fa-arrow-left-long::before { 683 | content: "\f177"; } 684 | 685 | .fa-long-arrow-left::before { 686 | content: "\f177"; } 687 | 688 | .fa-arrow-pointer::before { 689 | content: "\f245"; } 690 | 691 | .fa-mouse-pointer::before { 692 | content: "\f245"; } 693 | 694 | .fa-arrow-right::before { 695 | content: "\f061"; } 696 | 697 | .fa-arrow-right-arrow-left::before { 698 | content: "\f0ec"; } 699 | 700 | .fa-exchange::before { 701 | content: "\f0ec"; } 702 | 703 | .fa-arrow-right-from-bracket::before { 704 | content: "\f08b"; } 705 | 706 | .fa-sign-out::before { 707 | content: "\f08b"; } 708 | 709 | .fa-arrow-right-long::before { 710 | content: "\f178"; } 711 | 712 | .fa-long-arrow-right::before { 713 | content: "\f178"; } 714 | 715 | .fa-arrow-right-to-bracket::before { 716 | content: "\f090"; } 717 | 718 | .fa-sign-in::before { 719 | content: "\f090"; } 720 | 721 | .fa-arrow-right-to-city::before { 722 | content: "\e4b3"; } 723 | 724 | .fa-arrow-rotate-left::before { 725 | content: "\f0e2"; } 726 | 727 | .fa-arrow-left-rotate::before { 728 | content: "\f0e2"; } 729 | 730 | .fa-arrow-rotate-back::before { 731 | content: "\f0e2"; } 732 | 733 | .fa-arrow-rotate-backward::before { 734 | content: "\f0e2"; } 735 | 736 | .fa-undo::before { 737 | content: "\f0e2"; } 738 | 739 | .fa-arrow-rotate-right::before { 740 | content: "\f01e"; } 741 | 742 | .fa-arrow-right-rotate::before { 743 | content: "\f01e"; } 744 | 745 | .fa-arrow-rotate-forward::before { 746 | content: "\f01e"; } 747 | 748 | .fa-redo::before { 749 | content: "\f01e"; } 750 | 751 | .fa-arrow-trend-down::before { 752 | content: "\e097"; } 753 | 754 | .fa-arrow-trend-up::before { 755 | content: "\e098"; } 756 | 757 | .fa-arrow-turn-down::before { 758 | content: "\f149"; } 759 | 760 | .fa-level-down::before { 761 | content: "\f149"; } 762 | 763 | .fa-arrow-turn-up::before { 764 | content: "\f148"; } 765 | 766 | .fa-level-up::before { 767 | content: "\f148"; } 768 | 769 | .fa-arrow-up::before { 770 | content: "\f062"; } 771 | 772 | .fa-arrow-up-1-9::before { 773 | content: "\f163"; } 774 | 775 | .fa-sort-numeric-up::before { 776 | content: "\f163"; } 777 | 778 | .fa-arrow-up-9-1::before { 779 | content: "\f887"; } 780 | 781 | .fa-sort-numeric-up-alt::before { 782 | content: "\f887"; } 783 | 784 | .fa-arrow-up-a-z::before { 785 | content: "\f15e"; } 786 | 787 | .fa-sort-alpha-up::before { 788 | content: "\f15e"; } 789 | 790 | .fa-arrow-up-from-bracket::before { 791 | content: "\e09a"; } 792 | 793 | .fa-arrow-up-from-ground-water::before { 794 | content: "\e4b5"; } 795 | 796 | .fa-arrow-up-from-water-pump::before { 797 | content: "\e4b6"; } 798 | 799 | .fa-arrow-up-long::before { 800 | content: "\f176"; } 801 | 802 | .fa-long-arrow-up::before { 803 | content: "\f176"; } 804 | 805 | .fa-arrow-up-right-dots::before { 806 | content: "\e4b7"; } 807 | 808 | .fa-arrow-up-right-from-square::before { 809 | content: "\f08e"; } 810 | 811 | .fa-external-link::before { 812 | content: "\f08e"; } 813 | 814 | .fa-arrow-up-short-wide::before { 815 | content: "\f885"; } 816 | 817 | .fa-sort-amount-up-alt::before { 818 | content: "\f885"; } 819 | 820 | .fa-arrow-up-wide-short::before { 821 | content: "\f161"; } 822 | 823 | .fa-sort-amount-up::before { 824 | content: "\f161"; } 825 | 826 | .fa-arrow-up-z-a::before { 827 | content: "\f882"; } 828 | 829 | .fa-sort-alpha-up-alt::before { 830 | content: "\f882"; } 831 | 832 | .fa-arrows-down-to-line::before { 833 | content: "\e4b8"; } 834 | 835 | .fa-arrows-down-to-people::before { 836 | content: "\e4b9"; } 837 | 838 | .fa-arrows-left-right::before { 839 | content: "\f07e"; } 840 | 841 | .fa-arrows-h::before { 842 | content: "\f07e"; } 843 | 844 | .fa-arrows-left-right-to-line::before { 845 | content: "\e4ba"; } 846 | 847 | .fa-arrows-rotate::before { 848 | content: "\f021"; } 849 | 850 | .fa-refresh::before { 851 | content: "\f021"; } 852 | 853 | .fa-sync::before { 854 | content: "\f021"; } 855 | 856 | .fa-arrows-spin::before { 857 | content: "\e4bb"; } 858 | 859 | .fa-arrows-split-up-and-left::before { 860 | content: "\e4bc"; } 861 | 862 | .fa-arrows-to-circle::before { 863 | content: "\e4bd"; } 864 | 865 | .fa-arrows-to-dot::before { 866 | content: "\e4be"; } 867 | 868 | .fa-arrows-to-eye::before { 869 | content: "\e4bf"; } 870 | 871 | .fa-arrows-turn-right::before { 872 | content: "\e4c0"; } 873 | 874 | .fa-arrows-turn-to-dots::before { 875 | content: "\e4c1"; } 876 | 877 | .fa-arrows-up-down::before { 878 | content: "\f07d"; } 879 | 880 | .fa-arrows-v::before { 881 | content: "\f07d"; } 882 | 883 | .fa-arrows-up-down-left-right::before { 884 | content: "\f047"; } 885 | 886 | .fa-arrows::before { 887 | content: "\f047"; } 888 | 889 | .fa-arrows-up-to-line::before { 890 | content: "\e4c2"; } 891 | 892 | .fa-asterisk::before { 893 | content: "\2a"; } 894 | 895 | .fa-at::before { 896 | content: "\40"; } 897 | 898 | .fa-atom::before { 899 | content: "\f5d2"; } 900 | 901 | .fa-audio-description::before { 902 | content: "\f29e"; } 903 | 904 | .fa-austral-sign::before { 905 | content: "\e0a9"; } 906 | 907 | .fa-award::before { 908 | content: "\f559"; } 909 | 910 | .fa-b::before { 911 | content: "\42"; } 912 | 913 | .fa-baby::before { 914 | content: "\f77c"; } 915 | 916 | .fa-baby-carriage::before { 917 | content: "\f77d"; } 918 | 919 | .fa-carriage-baby::before { 920 | content: "\f77d"; } 921 | 922 | .fa-backward::before { 923 | content: "\f04a"; } 924 | 925 | .fa-backward-fast::before { 926 | content: "\f049"; } 927 | 928 | .fa-fast-backward::before { 929 | content: "\f049"; } 930 | 931 | .fa-backward-step::before { 932 | content: "\f048"; } 933 | 934 | .fa-step-backward::before { 935 | content: "\f048"; } 936 | 937 | .fa-bacon::before { 938 | content: "\f7e5"; } 939 | 940 | .fa-bacteria::before { 941 | content: "\e059"; } 942 | 943 | .fa-bacterium::before { 944 | content: "\e05a"; } 945 | 946 | .fa-bag-shopping::before { 947 | content: "\f290"; } 948 | 949 | .fa-shopping-bag::before { 950 | content: "\f290"; } 951 | 952 | .fa-bahai::before { 953 | content: "\f666"; } 954 | 955 | .fa-baht-sign::before { 956 | content: "\e0ac"; } 957 | 958 | .fa-ban::before { 959 | content: "\f05e"; } 960 | 961 | .fa-cancel::before { 962 | content: "\f05e"; } 963 | 964 | .fa-ban-smoking::before { 965 | content: "\f54d"; } 966 | 967 | .fa-smoking-ban::before { 968 | content: "\f54d"; } 969 | 970 | .fa-bandage::before { 971 | content: "\f462"; } 972 | 973 | .fa-band-aid::before { 974 | content: "\f462"; } 975 | 976 | .fa-barcode::before { 977 | content: "\f02a"; } 978 | 979 | .fa-bars::before { 980 | content: "\f0c9"; } 981 | 982 | .fa-navicon::before { 983 | content: "\f0c9"; } 984 | 985 | .fa-bars-progress::before { 986 | content: "\f828"; } 987 | 988 | .fa-tasks-alt::before { 989 | content: "\f828"; } 990 | 991 | .fa-bars-staggered::before { 992 | content: "\f550"; } 993 | 994 | .fa-reorder::before { 995 | content: "\f550"; } 996 | 997 | .fa-stream::before { 998 | content: "\f550"; } 999 | 1000 | .fa-baseball::before { 1001 | content: "\f433"; } 1002 | 1003 | .fa-baseball-ball::before { 1004 | content: "\f433"; } 1005 | 1006 | .fa-baseball-bat-ball::before { 1007 | content: "\f432"; } 1008 | 1009 | .fa-basket-shopping::before { 1010 | content: "\f291"; } 1011 | 1012 | .fa-shopping-basket::before { 1013 | content: "\f291"; } 1014 | 1015 | .fa-basketball::before { 1016 | content: "\f434"; } 1017 | 1018 | .fa-basketball-ball::before { 1019 | content: "\f434"; } 1020 | 1021 | .fa-bath::before { 1022 | content: "\f2cd"; } 1023 | 1024 | .fa-bathtub::before { 1025 | content: "\f2cd"; } 1026 | 1027 | .fa-battery-empty::before { 1028 | content: "\f244"; } 1029 | 1030 | .fa-battery-0::before { 1031 | content: "\f244"; } 1032 | 1033 | .fa-battery-full::before { 1034 | content: "\f240"; } 1035 | 1036 | .fa-battery::before { 1037 | content: "\f240"; } 1038 | 1039 | .fa-battery-5::before { 1040 | content: "\f240"; } 1041 | 1042 | .fa-battery-half::before { 1043 | content: "\f242"; } 1044 | 1045 | .fa-battery-3::before { 1046 | content: "\f242"; } 1047 | 1048 | .fa-battery-quarter::before { 1049 | content: "\f243"; } 1050 | 1051 | .fa-battery-2::before { 1052 | content: "\f243"; } 1053 | 1054 | .fa-battery-three-quarters::before { 1055 | content: "\f241"; } 1056 | 1057 | .fa-battery-4::before { 1058 | content: "\f241"; } 1059 | 1060 | .fa-bed::before { 1061 | content: "\f236"; } 1062 | 1063 | .fa-bed-pulse::before { 1064 | content: "\f487"; } 1065 | 1066 | .fa-procedures::before { 1067 | content: "\f487"; } 1068 | 1069 | .fa-beer-mug-empty::before { 1070 | content: "\f0fc"; } 1071 | 1072 | .fa-beer::before { 1073 | content: "\f0fc"; } 1074 | 1075 | .fa-bell::before { 1076 | content: "\f0f3"; } 1077 | 1078 | .fa-bell-concierge::before { 1079 | content: "\f562"; } 1080 | 1081 | .fa-concierge-bell::before { 1082 | content: "\f562"; } 1083 | 1084 | .fa-bell-slash::before { 1085 | content: "\f1f6"; } 1086 | 1087 | .fa-bezier-curve::before { 1088 | content: "\f55b"; } 1089 | 1090 | .fa-bicycle::before { 1091 | content: "\f206"; } 1092 | 1093 | .fa-binoculars::before { 1094 | content: "\f1e5"; } 1095 | 1096 | .fa-biohazard::before { 1097 | content: "\f780"; } 1098 | 1099 | .fa-bitcoin-sign::before { 1100 | content: "\e0b4"; } 1101 | 1102 | .fa-blender::before { 1103 | content: "\f517"; } 1104 | 1105 | .fa-blender-phone::before { 1106 | content: "\f6b6"; } 1107 | 1108 | .fa-blog::before { 1109 | content: "\f781"; } 1110 | 1111 | .fa-bold::before { 1112 | content: "\f032"; } 1113 | 1114 | .fa-bolt::before { 1115 | content: "\f0e7"; } 1116 | 1117 | .fa-zap::before { 1118 | content: "\f0e7"; } 1119 | 1120 | .fa-bolt-lightning::before { 1121 | content: "\e0b7"; } 1122 | 1123 | .fa-bomb::before { 1124 | content: "\f1e2"; } 1125 | 1126 | .fa-bone::before { 1127 | content: "\f5d7"; } 1128 | 1129 | .fa-bong::before { 1130 | content: "\f55c"; } 1131 | 1132 | .fa-book::before { 1133 | content: "\f02d"; } 1134 | 1135 | .fa-book-atlas::before { 1136 | content: "\f558"; } 1137 | 1138 | .fa-atlas::before { 1139 | content: "\f558"; } 1140 | 1141 | .fa-book-bible::before { 1142 | content: "\f647"; } 1143 | 1144 | .fa-bible::before { 1145 | content: "\f647"; } 1146 | 1147 | .fa-book-bookmark::before { 1148 | content: "\e0bb"; } 1149 | 1150 | .fa-book-journal-whills::before { 1151 | content: "\f66a"; } 1152 | 1153 | .fa-journal-whills::before { 1154 | content: "\f66a"; } 1155 | 1156 | .fa-book-medical::before { 1157 | content: "\f7e6"; } 1158 | 1159 | .fa-book-open::before { 1160 | content: "\f518"; } 1161 | 1162 | .fa-book-open-reader::before { 1163 | content: "\f5da"; } 1164 | 1165 | .fa-book-reader::before { 1166 | content: "\f5da"; } 1167 | 1168 | .fa-book-quran::before { 1169 | content: "\f687"; } 1170 | 1171 | .fa-quran::before { 1172 | content: "\f687"; } 1173 | 1174 | .fa-book-skull::before { 1175 | content: "\f6b7"; } 1176 | 1177 | .fa-book-dead::before { 1178 | content: "\f6b7"; } 1179 | 1180 | .fa-bookmark::before { 1181 | content: "\f02e"; } 1182 | 1183 | .fa-border-all::before { 1184 | content: "\f84c"; } 1185 | 1186 | .fa-border-none::before { 1187 | content: "\f850"; } 1188 | 1189 | .fa-border-top-left::before { 1190 | content: "\f853"; } 1191 | 1192 | .fa-border-style::before { 1193 | content: "\f853"; } 1194 | 1195 | .fa-bore-hole::before { 1196 | content: "\e4c3"; } 1197 | 1198 | .fa-bottle-droplet::before { 1199 | content: "\e4c4"; } 1200 | 1201 | .fa-bottle-water::before { 1202 | content: "\e4c5"; } 1203 | 1204 | .fa-bowl-food::before { 1205 | content: "\e4c6"; } 1206 | 1207 | .fa-bowl-rice::before { 1208 | content: "\e2eb"; } 1209 | 1210 | .fa-bowling-ball::before { 1211 | content: "\f436"; } 1212 | 1213 | .fa-box::before { 1214 | content: "\f466"; } 1215 | 1216 | .fa-box-archive::before { 1217 | content: "\f187"; } 1218 | 1219 | .fa-archive::before { 1220 | content: "\f187"; } 1221 | 1222 | .fa-box-open::before { 1223 | content: "\f49e"; } 1224 | 1225 | .fa-box-tissue::before { 1226 | content: "\e05b"; } 1227 | 1228 | .fa-boxes-packing::before { 1229 | content: "\e4c7"; } 1230 | 1231 | .fa-boxes-stacked::before { 1232 | content: "\f468"; } 1233 | 1234 | .fa-boxes::before { 1235 | content: "\f468"; } 1236 | 1237 | .fa-boxes-alt::before { 1238 | content: "\f468"; } 1239 | 1240 | .fa-braille::before { 1241 | content: "\f2a1"; } 1242 | 1243 | .fa-brain::before { 1244 | content: "\f5dc"; } 1245 | 1246 | .fa-brazilian-real-sign::before { 1247 | content: "\e46c"; } 1248 | 1249 | .fa-bread-slice::before { 1250 | content: "\f7ec"; } 1251 | 1252 | .fa-bridge::before { 1253 | content: "\e4c8"; } 1254 | 1255 | .fa-bridge-circle-check::before { 1256 | content: "\e4c9"; } 1257 | 1258 | .fa-bridge-circle-exclamation::before { 1259 | content: "\e4ca"; } 1260 | 1261 | .fa-bridge-circle-xmark::before { 1262 | content: "\e4cb"; } 1263 | 1264 | .fa-bridge-lock::before { 1265 | content: "\e4cc"; } 1266 | 1267 | .fa-bridge-water::before { 1268 | content: "\e4ce"; } 1269 | 1270 | .fa-briefcase::before { 1271 | content: "\f0b1"; } 1272 | 1273 | .fa-briefcase-medical::before { 1274 | content: "\f469"; } 1275 | 1276 | .fa-broom::before { 1277 | content: "\f51a"; } 1278 | 1279 | .fa-broom-ball::before { 1280 | content: "\f458"; } 1281 | 1282 | .fa-quidditch::before { 1283 | content: "\f458"; } 1284 | 1285 | .fa-quidditch-broom-ball::before { 1286 | content: "\f458"; } 1287 | 1288 | .fa-brush::before { 1289 | content: "\f55d"; } 1290 | 1291 | .fa-bucket::before { 1292 | content: "\e4cf"; } 1293 | 1294 | .fa-bug::before { 1295 | content: "\f188"; } 1296 | 1297 | .fa-bug-slash::before { 1298 | content: "\e490"; } 1299 | 1300 | .fa-bugs::before { 1301 | content: "\e4d0"; } 1302 | 1303 | .fa-building::before { 1304 | content: "\f1ad"; } 1305 | 1306 | .fa-building-circle-arrow-right::before { 1307 | content: "\e4d1"; } 1308 | 1309 | .fa-building-circle-check::before { 1310 | content: "\e4d2"; } 1311 | 1312 | .fa-building-circle-exclamation::before { 1313 | content: "\e4d3"; } 1314 | 1315 | .fa-building-circle-xmark::before { 1316 | content: "\e4d4"; } 1317 | 1318 | .fa-building-columns::before { 1319 | content: "\f19c"; } 1320 | 1321 | .fa-bank::before { 1322 | content: "\f19c"; } 1323 | 1324 | .fa-institution::before { 1325 | content: "\f19c"; } 1326 | 1327 | .fa-museum::before { 1328 | content: "\f19c"; } 1329 | 1330 | .fa-university::before { 1331 | content: "\f19c"; } 1332 | 1333 | .fa-building-flag::before { 1334 | content: "\e4d5"; } 1335 | 1336 | .fa-building-lock::before { 1337 | content: "\e4d6"; } 1338 | 1339 | .fa-building-ngo::before { 1340 | content: "\e4d7"; } 1341 | 1342 | .fa-building-shield::before { 1343 | content: "\e4d8"; } 1344 | 1345 | .fa-building-un::before { 1346 | content: "\e4d9"; } 1347 | 1348 | .fa-building-user::before { 1349 | content: "\e4da"; } 1350 | 1351 | .fa-building-wheat::before { 1352 | content: "\e4db"; } 1353 | 1354 | .fa-bullhorn::before { 1355 | content: "\f0a1"; } 1356 | 1357 | .fa-bullseye::before { 1358 | content: "\f140"; } 1359 | 1360 | .fa-burger::before { 1361 | content: "\f805"; } 1362 | 1363 | .fa-hamburger::before { 1364 | content: "\f805"; } 1365 | 1366 | .fa-burst::before { 1367 | content: "\e4dc"; } 1368 | 1369 | .fa-bus::before { 1370 | content: "\f207"; } 1371 | 1372 | .fa-bus-simple::before { 1373 | content: "\f55e"; } 1374 | 1375 | .fa-bus-alt::before { 1376 | content: "\f55e"; } 1377 | 1378 | .fa-business-time::before { 1379 | content: "\f64a"; } 1380 | 1381 | .fa-briefcase-clock::before { 1382 | content: "\f64a"; } 1383 | 1384 | .fa-c::before { 1385 | content: "\43"; } 1386 | 1387 | .fa-cake-candles::before { 1388 | content: "\f1fd"; } 1389 | 1390 | .fa-birthday-cake::before { 1391 | content: "\f1fd"; } 1392 | 1393 | .fa-cake::before { 1394 | content: "\f1fd"; } 1395 | 1396 | .fa-calculator::before { 1397 | content: "\f1ec"; } 1398 | 1399 | .fa-calendar::before { 1400 | content: "\f133"; } 1401 | 1402 | .fa-calendar-check::before { 1403 | content: "\f274"; } 1404 | 1405 | .fa-calendar-day::before { 1406 | content: "\f783"; } 1407 | 1408 | .fa-calendar-days::before { 1409 | content: "\f073"; } 1410 | 1411 | .fa-calendar-alt::before { 1412 | content: "\f073"; } 1413 | 1414 | .fa-calendar-minus::before { 1415 | content: "\f272"; } 1416 | 1417 | .fa-calendar-plus::before { 1418 | content: "\f271"; } 1419 | 1420 | .fa-calendar-week::before { 1421 | content: "\f784"; } 1422 | 1423 | .fa-calendar-xmark::before { 1424 | content: "\f273"; } 1425 | 1426 | .fa-calendar-times::before { 1427 | content: "\f273"; } 1428 | 1429 | .fa-camera::before { 1430 | content: "\f030"; } 1431 | 1432 | .fa-camera-alt::before { 1433 | content: "\f030"; } 1434 | 1435 | .fa-camera-retro::before { 1436 | content: "\f083"; } 1437 | 1438 | .fa-camera-rotate::before { 1439 | content: "\e0d8"; } 1440 | 1441 | .fa-campground::before { 1442 | content: "\f6bb"; } 1443 | 1444 | .fa-candy-cane::before { 1445 | content: "\f786"; } 1446 | 1447 | .fa-cannabis::before { 1448 | content: "\f55f"; } 1449 | 1450 | .fa-capsules::before { 1451 | content: "\f46b"; } 1452 | 1453 | .fa-car::before { 1454 | content: "\f1b9"; } 1455 | 1456 | .fa-automobile::before { 1457 | content: "\f1b9"; } 1458 | 1459 | .fa-car-battery::before { 1460 | content: "\f5df"; } 1461 | 1462 | .fa-battery-car::before { 1463 | content: "\f5df"; } 1464 | 1465 | .fa-car-burst::before { 1466 | content: "\f5e1"; } 1467 | 1468 | .fa-car-crash::before { 1469 | content: "\f5e1"; } 1470 | 1471 | .fa-car-on::before { 1472 | content: "\e4dd"; } 1473 | 1474 | .fa-car-rear::before { 1475 | content: "\f5de"; } 1476 | 1477 | .fa-car-alt::before { 1478 | content: "\f5de"; } 1479 | 1480 | .fa-car-side::before { 1481 | content: "\f5e4"; } 1482 | 1483 | .fa-car-tunnel::before { 1484 | content: "\e4de"; } 1485 | 1486 | .fa-caravan::before { 1487 | content: "\f8ff"; } 1488 | 1489 | .fa-caret-down::before { 1490 | content: "\f0d7"; } 1491 | 1492 | .fa-caret-left::before { 1493 | content: "\f0d9"; } 1494 | 1495 | .fa-caret-right::before { 1496 | content: "\f0da"; } 1497 | 1498 | .fa-caret-up::before { 1499 | content: "\f0d8"; } 1500 | 1501 | .fa-carrot::before { 1502 | content: "\f787"; } 1503 | 1504 | .fa-cart-arrow-down::before { 1505 | content: "\f218"; } 1506 | 1507 | .fa-cart-flatbed::before { 1508 | content: "\f474"; } 1509 | 1510 | .fa-dolly-flatbed::before { 1511 | content: "\f474"; } 1512 | 1513 | .fa-cart-flatbed-suitcase::before { 1514 | content: "\f59d"; } 1515 | 1516 | .fa-luggage-cart::before { 1517 | content: "\f59d"; } 1518 | 1519 | .fa-cart-plus::before { 1520 | content: "\f217"; } 1521 | 1522 | .fa-cart-shopping::before { 1523 | content: "\f07a"; } 1524 | 1525 | .fa-shopping-cart::before { 1526 | content: "\f07a"; } 1527 | 1528 | .fa-cash-register::before { 1529 | content: "\f788"; } 1530 | 1531 | .fa-cat::before { 1532 | content: "\f6be"; } 1533 | 1534 | .fa-cedi-sign::before { 1535 | content: "\e0df"; } 1536 | 1537 | .fa-cent-sign::before { 1538 | content: "\e3f5"; } 1539 | 1540 | .fa-certificate::before { 1541 | content: "\f0a3"; } 1542 | 1543 | .fa-chair::before { 1544 | content: "\f6c0"; } 1545 | 1546 | .fa-chalkboard::before { 1547 | content: "\f51b"; } 1548 | 1549 | .fa-blackboard::before { 1550 | content: "\f51b"; } 1551 | 1552 | .fa-chalkboard-user::before { 1553 | content: "\f51c"; } 1554 | 1555 | .fa-chalkboard-teacher::before { 1556 | content: "\f51c"; } 1557 | 1558 | .fa-champagne-glasses::before { 1559 | content: "\f79f"; } 1560 | 1561 | .fa-glass-cheers::before { 1562 | content: "\f79f"; } 1563 | 1564 | .fa-charging-station::before { 1565 | content: "\f5e7"; } 1566 | 1567 | .fa-chart-area::before { 1568 | content: "\f1fe"; } 1569 | 1570 | .fa-area-chart::before { 1571 | content: "\f1fe"; } 1572 | 1573 | .fa-chart-bar::before { 1574 | content: "\f080"; } 1575 | 1576 | .fa-bar-chart::before { 1577 | content: "\f080"; } 1578 | 1579 | .fa-chart-column::before { 1580 | content: "\e0e3"; } 1581 | 1582 | .fa-chart-gantt::before { 1583 | content: "\e0e4"; } 1584 | 1585 | .fa-chart-line::before { 1586 | content: "\f201"; } 1587 | 1588 | .fa-line-chart::before { 1589 | content: "\f201"; } 1590 | 1591 | .fa-chart-pie::before { 1592 | content: "\f200"; } 1593 | 1594 | .fa-pie-chart::before { 1595 | content: "\f200"; } 1596 | 1597 | .fa-chart-simple::before { 1598 | content: "\e473"; } 1599 | 1600 | .fa-check::before { 1601 | content: "\f00c"; } 1602 | 1603 | .fa-check-double::before { 1604 | content: "\f560"; } 1605 | 1606 | .fa-check-to-slot::before { 1607 | content: "\f772"; } 1608 | 1609 | .fa-vote-yea::before { 1610 | content: "\f772"; } 1611 | 1612 | .fa-cheese::before { 1613 | content: "\f7ef"; } 1614 | 1615 | .fa-chess::before { 1616 | content: "\f439"; } 1617 | 1618 | .fa-chess-bishop::before { 1619 | content: "\f43a"; } 1620 | 1621 | .fa-chess-board::before { 1622 | content: "\f43c"; } 1623 | 1624 | .fa-chess-king::before { 1625 | content: "\f43f"; } 1626 | 1627 | .fa-chess-knight::before { 1628 | content: "\f441"; } 1629 | 1630 | .fa-chess-pawn::before { 1631 | content: "\f443"; } 1632 | 1633 | .fa-chess-queen::before { 1634 | content: "\f445"; } 1635 | 1636 | .fa-chess-rook::before { 1637 | content: "\f447"; } 1638 | 1639 | .fa-chevron-down::before { 1640 | content: "\f078"; } 1641 | 1642 | .fa-chevron-left::before { 1643 | content: "\f053"; } 1644 | 1645 | .fa-chevron-right::before { 1646 | content: "\f054"; } 1647 | 1648 | .fa-chevron-up::before { 1649 | content: "\f077"; } 1650 | 1651 | .fa-child::before { 1652 | content: "\f1ae"; } 1653 | 1654 | .fa-child-dress::before { 1655 | content: "\e59c"; } 1656 | 1657 | .fa-child-reaching::before { 1658 | content: "\e59d"; } 1659 | 1660 | .fa-child-rifle::before { 1661 | content: "\e4e0"; } 1662 | 1663 | .fa-children::before { 1664 | content: "\e4e1"; } 1665 | 1666 | .fa-church::before { 1667 | content: "\f51d"; } 1668 | 1669 | .fa-circle::before { 1670 | content: "\f111"; } 1671 | 1672 | .fa-circle-arrow-down::before { 1673 | content: "\f0ab"; } 1674 | 1675 | .fa-arrow-circle-down::before { 1676 | content: "\f0ab"; } 1677 | 1678 | .fa-circle-arrow-left::before { 1679 | content: "\f0a8"; } 1680 | 1681 | .fa-arrow-circle-left::before { 1682 | content: "\f0a8"; } 1683 | 1684 | .fa-circle-arrow-right::before { 1685 | content: "\f0a9"; } 1686 | 1687 | .fa-arrow-circle-right::before { 1688 | content: "\f0a9"; } 1689 | 1690 | .fa-circle-arrow-up::before { 1691 | content: "\f0aa"; } 1692 | 1693 | .fa-arrow-circle-up::before { 1694 | content: "\f0aa"; } 1695 | 1696 | .fa-circle-check::before { 1697 | content: "\f058"; } 1698 | 1699 | .fa-check-circle::before { 1700 | content: "\f058"; } 1701 | 1702 | .fa-circle-chevron-down::before { 1703 | content: "\f13a"; } 1704 | 1705 | .fa-chevron-circle-down::before { 1706 | content: "\f13a"; } 1707 | 1708 | .fa-circle-chevron-left::before { 1709 | content: "\f137"; } 1710 | 1711 | .fa-chevron-circle-left::before { 1712 | content: "\f137"; } 1713 | 1714 | .fa-circle-chevron-right::before { 1715 | content: "\f138"; } 1716 | 1717 | .fa-chevron-circle-right::before { 1718 | content: "\f138"; } 1719 | 1720 | .fa-circle-chevron-up::before { 1721 | content: "\f139"; } 1722 | 1723 | .fa-chevron-circle-up::before { 1724 | content: "\f139"; } 1725 | 1726 | .fa-circle-dollar-to-slot::before { 1727 | content: "\f4b9"; } 1728 | 1729 | .fa-donate::before { 1730 | content: "\f4b9"; } 1731 | 1732 | .fa-circle-dot::before { 1733 | content: "\f192"; } 1734 | 1735 | .fa-dot-circle::before { 1736 | content: "\f192"; } 1737 | 1738 | .fa-circle-down::before { 1739 | content: "\f358"; } 1740 | 1741 | .fa-arrow-alt-circle-down::before { 1742 | content: "\f358"; } 1743 | 1744 | .fa-circle-exclamation::before { 1745 | content: "\f06a"; } 1746 | 1747 | .fa-exclamation-circle::before { 1748 | content: "\f06a"; } 1749 | 1750 | .fa-circle-h::before { 1751 | content: "\f47e"; } 1752 | 1753 | .fa-hospital-symbol::before { 1754 | content: "\f47e"; } 1755 | 1756 | .fa-circle-half-stroke::before { 1757 | content: "\f042"; } 1758 | 1759 | .fa-adjust::before { 1760 | content: "\f042"; } 1761 | 1762 | .fa-circle-info::before { 1763 | content: "\f05a"; } 1764 | 1765 | .fa-info-circle::before { 1766 | content: "\f05a"; } 1767 | 1768 | .fa-circle-left::before { 1769 | content: "\f359"; } 1770 | 1771 | .fa-arrow-alt-circle-left::before { 1772 | content: "\f359"; } 1773 | 1774 | .fa-circle-minus::before { 1775 | content: "\f056"; } 1776 | 1777 | .fa-minus-circle::before { 1778 | content: "\f056"; } 1779 | 1780 | .fa-circle-nodes::before { 1781 | content: "\e4e2"; } 1782 | 1783 | .fa-circle-notch::before { 1784 | content: "\f1ce"; } 1785 | 1786 | .fa-circle-pause::before { 1787 | content: "\f28b"; } 1788 | 1789 | .fa-pause-circle::before { 1790 | content: "\f28b"; } 1791 | 1792 | .fa-circle-play::before { 1793 | content: "\f144"; } 1794 | 1795 | .fa-play-circle::before { 1796 | content: "\f144"; } 1797 | 1798 | .fa-circle-plus::before { 1799 | content: "\f055"; } 1800 | 1801 | .fa-plus-circle::before { 1802 | content: "\f055"; } 1803 | 1804 | .fa-circle-question::before { 1805 | content: "\f059"; } 1806 | 1807 | .fa-question-circle::before { 1808 | content: "\f059"; } 1809 | 1810 | .fa-circle-radiation::before { 1811 | content: "\f7ba"; } 1812 | 1813 | .fa-radiation-alt::before { 1814 | content: "\f7ba"; } 1815 | 1816 | .fa-circle-right::before { 1817 | content: "\f35a"; } 1818 | 1819 | .fa-arrow-alt-circle-right::before { 1820 | content: "\f35a"; } 1821 | 1822 | .fa-circle-stop::before { 1823 | content: "\f28d"; } 1824 | 1825 | .fa-stop-circle::before { 1826 | content: "\f28d"; } 1827 | 1828 | .fa-circle-up::before { 1829 | content: "\f35b"; } 1830 | 1831 | .fa-arrow-alt-circle-up::before { 1832 | content: "\f35b"; } 1833 | 1834 | .fa-circle-user::before { 1835 | content: "\f2bd"; } 1836 | 1837 | .fa-user-circle::before { 1838 | content: "\f2bd"; } 1839 | 1840 | .fa-circle-xmark::before { 1841 | content: "\f057"; } 1842 | 1843 | .fa-times-circle::before { 1844 | content: "\f057"; } 1845 | 1846 | .fa-xmark-circle::before { 1847 | content: "\f057"; } 1848 | 1849 | .fa-city::before { 1850 | content: "\f64f"; } 1851 | 1852 | .fa-clapperboard::before { 1853 | content: "\e131"; } 1854 | 1855 | .fa-clipboard::before { 1856 | content: "\f328"; } 1857 | 1858 | .fa-clipboard-check::before { 1859 | content: "\f46c"; } 1860 | 1861 | .fa-clipboard-list::before { 1862 | content: "\f46d"; } 1863 | 1864 | .fa-clipboard-question::before { 1865 | content: "\e4e3"; } 1866 | 1867 | .fa-clipboard-user::before { 1868 | content: "\f7f3"; } 1869 | 1870 | .fa-clock::before { 1871 | content: "\f017"; } 1872 | 1873 | .fa-clock-four::before { 1874 | content: "\f017"; } 1875 | 1876 | .fa-clock-rotate-left::before { 1877 | content: "\f1da"; } 1878 | 1879 | .fa-history::before { 1880 | content: "\f1da"; } 1881 | 1882 | .fa-clone::before { 1883 | content: "\f24d"; } 1884 | 1885 | .fa-closed-captioning::before { 1886 | content: "\f20a"; } 1887 | 1888 | .fa-cloud::before { 1889 | content: "\f0c2"; } 1890 | 1891 | .fa-cloud-arrow-down::before { 1892 | content: "\f0ed"; } 1893 | 1894 | .fa-cloud-download::before { 1895 | content: "\f0ed"; } 1896 | 1897 | .fa-cloud-download-alt::before { 1898 | content: "\f0ed"; } 1899 | 1900 | .fa-cloud-arrow-up::before { 1901 | content: "\f0ee"; } 1902 | 1903 | .fa-cloud-upload::before { 1904 | content: "\f0ee"; } 1905 | 1906 | .fa-cloud-upload-alt::before { 1907 | content: "\f0ee"; } 1908 | 1909 | .fa-cloud-bolt::before { 1910 | content: "\f76c"; } 1911 | 1912 | .fa-thunderstorm::before { 1913 | content: "\f76c"; } 1914 | 1915 | .fa-cloud-meatball::before { 1916 | content: "\f73b"; } 1917 | 1918 | .fa-cloud-moon::before { 1919 | content: "\f6c3"; } 1920 | 1921 | .fa-cloud-moon-rain::before { 1922 | content: "\f73c"; } 1923 | 1924 | .fa-cloud-rain::before { 1925 | content: "\f73d"; } 1926 | 1927 | .fa-cloud-showers-heavy::before { 1928 | content: "\f740"; } 1929 | 1930 | .fa-cloud-showers-water::before { 1931 | content: "\e4e4"; } 1932 | 1933 | .fa-cloud-sun::before { 1934 | content: "\f6c4"; } 1935 | 1936 | .fa-cloud-sun-rain::before { 1937 | content: "\f743"; } 1938 | 1939 | .fa-clover::before { 1940 | content: "\e139"; } 1941 | 1942 | .fa-code::before { 1943 | content: "\f121"; } 1944 | 1945 | .fa-code-branch::before { 1946 | content: "\f126"; } 1947 | 1948 | .fa-code-commit::before { 1949 | content: "\f386"; } 1950 | 1951 | .fa-code-compare::before { 1952 | content: "\e13a"; } 1953 | 1954 | .fa-code-fork::before { 1955 | content: "\e13b"; } 1956 | 1957 | .fa-code-merge::before { 1958 | content: "\f387"; } 1959 | 1960 | .fa-code-pull-request::before { 1961 | content: "\e13c"; } 1962 | 1963 | .fa-coins::before { 1964 | content: "\f51e"; } 1965 | 1966 | .fa-colon-sign::before { 1967 | content: "\e140"; } 1968 | 1969 | .fa-comment::before { 1970 | content: "\f075"; } 1971 | 1972 | .fa-comment-dollar::before { 1973 | content: "\f651"; } 1974 | 1975 | .fa-comment-dots::before { 1976 | content: "\f4ad"; } 1977 | 1978 | .fa-commenting::before { 1979 | content: "\f4ad"; } 1980 | 1981 | .fa-comment-medical::before { 1982 | content: "\f7f5"; } 1983 | 1984 | .fa-comment-slash::before { 1985 | content: "\f4b3"; } 1986 | 1987 | .fa-comment-sms::before { 1988 | content: "\f7cd"; } 1989 | 1990 | .fa-sms::before { 1991 | content: "\f7cd"; } 1992 | 1993 | .fa-comments::before { 1994 | content: "\f086"; } 1995 | 1996 | .fa-comments-dollar::before { 1997 | content: "\f653"; } 1998 | 1999 | .fa-compact-disc::before { 2000 | content: "\f51f"; } 2001 | 2002 | .fa-compass::before { 2003 | content: "\f14e"; } 2004 | 2005 | .fa-compass-drafting::before { 2006 | content: "\f568"; } 2007 | 2008 | .fa-drafting-compass::before { 2009 | content: "\f568"; } 2010 | 2011 | .fa-compress::before { 2012 | content: "\f066"; } 2013 | 2014 | .fa-computer::before { 2015 | content: "\e4e5"; } 2016 | 2017 | .fa-computer-mouse::before { 2018 | content: "\f8cc"; } 2019 | 2020 | .fa-mouse::before { 2021 | content: "\f8cc"; } 2022 | 2023 | .fa-cookie::before { 2024 | content: "\f563"; } 2025 | 2026 | .fa-cookie-bite::before { 2027 | content: "\f564"; } 2028 | 2029 | .fa-copy::before { 2030 | content: "\f0c5"; } 2031 | 2032 | .fa-copyright::before { 2033 | content: "\f1f9"; } 2034 | 2035 | .fa-couch::before { 2036 | content: "\f4b8"; } 2037 | 2038 | .fa-cow::before { 2039 | content: "\f6c8"; } 2040 | 2041 | .fa-credit-card::before { 2042 | content: "\f09d"; } 2043 | 2044 | .fa-credit-card-alt::before { 2045 | content: "\f09d"; } 2046 | 2047 | .fa-crop::before { 2048 | content: "\f125"; } 2049 | 2050 | .fa-crop-simple::before { 2051 | content: "\f565"; } 2052 | 2053 | .fa-crop-alt::before { 2054 | content: "\f565"; } 2055 | 2056 | .fa-cross::before { 2057 | content: "\f654"; } 2058 | 2059 | .fa-crosshairs::before { 2060 | content: "\f05b"; } 2061 | 2062 | .fa-crow::before { 2063 | content: "\f520"; } 2064 | 2065 | .fa-crown::before { 2066 | content: "\f521"; } 2067 | 2068 | .fa-crutch::before { 2069 | content: "\f7f7"; } 2070 | 2071 | .fa-cruzeiro-sign::before { 2072 | content: "\e152"; } 2073 | 2074 | .fa-cube::before { 2075 | content: "\f1b2"; } 2076 | 2077 | .fa-cubes::before { 2078 | content: "\f1b3"; } 2079 | 2080 | .fa-cubes-stacked::before { 2081 | content: "\e4e6"; } 2082 | 2083 | .fa-d::before { 2084 | content: "\44"; } 2085 | 2086 | .fa-database::before { 2087 | content: "\f1c0"; } 2088 | 2089 | .fa-delete-left::before { 2090 | content: "\f55a"; } 2091 | 2092 | .fa-backspace::before { 2093 | content: "\f55a"; } 2094 | 2095 | .fa-democrat::before { 2096 | content: "\f747"; } 2097 | 2098 | .fa-desktop::before { 2099 | content: "\f390"; } 2100 | 2101 | .fa-desktop-alt::before { 2102 | content: "\f390"; } 2103 | 2104 | .fa-dharmachakra::before { 2105 | content: "\f655"; } 2106 | 2107 | .fa-diagram-next::before { 2108 | content: "\e476"; } 2109 | 2110 | .fa-diagram-predecessor::before { 2111 | content: "\e477"; } 2112 | 2113 | .fa-diagram-project::before { 2114 | content: "\f542"; } 2115 | 2116 | .fa-project-diagram::before { 2117 | content: "\f542"; } 2118 | 2119 | .fa-diagram-successor::before { 2120 | content: "\e47a"; } 2121 | 2122 | .fa-diamond::before { 2123 | content: "\f219"; } 2124 | 2125 | .fa-diamond-turn-right::before { 2126 | content: "\f5eb"; } 2127 | 2128 | .fa-directions::before { 2129 | content: "\f5eb"; } 2130 | 2131 | .fa-dice::before { 2132 | content: "\f522"; } 2133 | 2134 | .fa-dice-d20::before { 2135 | content: "\f6cf"; } 2136 | 2137 | .fa-dice-d6::before { 2138 | content: "\f6d1"; } 2139 | 2140 | .fa-dice-five::before { 2141 | content: "\f523"; } 2142 | 2143 | .fa-dice-four::before { 2144 | content: "\f524"; } 2145 | 2146 | .fa-dice-one::before { 2147 | content: "\f525"; } 2148 | 2149 | .fa-dice-six::before { 2150 | content: "\f526"; } 2151 | 2152 | .fa-dice-three::before { 2153 | content: "\f527"; } 2154 | 2155 | .fa-dice-two::before { 2156 | content: "\f528"; } 2157 | 2158 | .fa-disease::before { 2159 | content: "\f7fa"; } 2160 | 2161 | .fa-display::before { 2162 | content: "\e163"; } 2163 | 2164 | .fa-divide::before { 2165 | content: "\f529"; } 2166 | 2167 | .fa-dna::before { 2168 | content: "\f471"; } 2169 | 2170 | .fa-dog::before { 2171 | content: "\f6d3"; } 2172 | 2173 | .fa-dollar-sign::before { 2174 | content: "\24"; } 2175 | 2176 | .fa-dollar::before { 2177 | content: "\24"; } 2178 | 2179 | .fa-usd::before { 2180 | content: "\24"; } 2181 | 2182 | .fa-dolly::before { 2183 | content: "\f472"; } 2184 | 2185 | .fa-dolly-box::before { 2186 | content: "\f472"; } 2187 | 2188 | .fa-dong-sign::before { 2189 | content: "\e169"; } 2190 | 2191 | .fa-door-closed::before { 2192 | content: "\f52a"; } 2193 | 2194 | .fa-door-open::before { 2195 | content: "\f52b"; } 2196 | 2197 | .fa-dove::before { 2198 | content: "\f4ba"; } 2199 | 2200 | .fa-down-left-and-up-right-to-center::before { 2201 | content: "\f422"; } 2202 | 2203 | .fa-compress-alt::before { 2204 | content: "\f422"; } 2205 | 2206 | .fa-down-long::before { 2207 | content: "\f309"; } 2208 | 2209 | .fa-long-arrow-alt-down::before { 2210 | content: "\f309"; } 2211 | 2212 | .fa-download::before { 2213 | content: "\f019"; } 2214 | 2215 | .fa-dragon::before { 2216 | content: "\f6d5"; } 2217 | 2218 | .fa-draw-polygon::before { 2219 | content: "\f5ee"; } 2220 | 2221 | .fa-droplet::before { 2222 | content: "\f043"; } 2223 | 2224 | .fa-tint::before { 2225 | content: "\f043"; } 2226 | 2227 | .fa-droplet-slash::before { 2228 | content: "\f5c7"; } 2229 | 2230 | .fa-tint-slash::before { 2231 | content: "\f5c7"; } 2232 | 2233 | .fa-drum::before { 2234 | content: "\f569"; } 2235 | 2236 | .fa-drum-steelpan::before { 2237 | content: "\f56a"; } 2238 | 2239 | .fa-drumstick-bite::before { 2240 | content: "\f6d7"; } 2241 | 2242 | .fa-dumbbell::before { 2243 | content: "\f44b"; } 2244 | 2245 | .fa-dumpster::before { 2246 | content: "\f793"; } 2247 | 2248 | .fa-dumpster-fire::before { 2249 | content: "\f794"; } 2250 | 2251 | .fa-dungeon::before { 2252 | content: "\f6d9"; } 2253 | 2254 | .fa-e::before { 2255 | content: "\45"; } 2256 | 2257 | .fa-ear-deaf::before { 2258 | content: "\f2a4"; } 2259 | 2260 | .fa-deaf::before { 2261 | content: "\f2a4"; } 2262 | 2263 | .fa-deafness::before { 2264 | content: "\f2a4"; } 2265 | 2266 | .fa-hard-of-hearing::before { 2267 | content: "\f2a4"; } 2268 | 2269 | .fa-ear-listen::before { 2270 | content: "\f2a2"; } 2271 | 2272 | .fa-assistive-listening-systems::before { 2273 | content: "\f2a2"; } 2274 | 2275 | .fa-earth-africa::before { 2276 | content: "\f57c"; } 2277 | 2278 | .fa-globe-africa::before { 2279 | content: "\f57c"; } 2280 | 2281 | .fa-earth-americas::before { 2282 | content: "\f57d"; } 2283 | 2284 | .fa-earth::before { 2285 | content: "\f57d"; } 2286 | 2287 | .fa-earth-america::before { 2288 | content: "\f57d"; } 2289 | 2290 | .fa-globe-americas::before { 2291 | content: "\f57d"; } 2292 | 2293 | .fa-earth-asia::before { 2294 | content: "\f57e"; } 2295 | 2296 | .fa-globe-asia::before { 2297 | content: "\f57e"; } 2298 | 2299 | .fa-earth-europe::before { 2300 | content: "\f7a2"; } 2301 | 2302 | .fa-globe-europe::before { 2303 | content: "\f7a2"; } 2304 | 2305 | .fa-earth-oceania::before { 2306 | content: "\e47b"; } 2307 | 2308 | .fa-globe-oceania::before { 2309 | content: "\e47b"; } 2310 | 2311 | .fa-egg::before { 2312 | content: "\f7fb"; } 2313 | 2314 | .fa-eject::before { 2315 | content: "\f052"; } 2316 | 2317 | .fa-elevator::before { 2318 | content: "\e16d"; } 2319 | 2320 | .fa-ellipsis::before { 2321 | content: "\f141"; } 2322 | 2323 | .fa-ellipsis-h::before { 2324 | content: "\f141"; } 2325 | 2326 | .fa-ellipsis-vertical::before { 2327 | content: "\f142"; } 2328 | 2329 | .fa-ellipsis-v::before { 2330 | content: "\f142"; } 2331 | 2332 | .fa-envelope::before { 2333 | content: "\f0e0"; } 2334 | 2335 | .fa-envelope-circle-check::before { 2336 | content: "\e4e8"; } 2337 | 2338 | .fa-envelope-open::before { 2339 | content: "\f2b6"; } 2340 | 2341 | .fa-envelope-open-text::before { 2342 | content: "\f658"; } 2343 | 2344 | .fa-envelopes-bulk::before { 2345 | content: "\f674"; } 2346 | 2347 | .fa-mail-bulk::before { 2348 | content: "\f674"; } 2349 | 2350 | .fa-equals::before { 2351 | content: "\3d"; } 2352 | 2353 | .fa-eraser::before { 2354 | content: "\f12d"; } 2355 | 2356 | .fa-ethernet::before { 2357 | content: "\f796"; } 2358 | 2359 | .fa-euro-sign::before { 2360 | content: "\f153"; } 2361 | 2362 | .fa-eur::before { 2363 | content: "\f153"; } 2364 | 2365 | .fa-euro::before { 2366 | content: "\f153"; } 2367 | 2368 | .fa-exclamation::before { 2369 | content: "\21"; } 2370 | 2371 | .fa-expand::before { 2372 | content: "\f065"; } 2373 | 2374 | .fa-explosion::before { 2375 | content: "\e4e9"; } 2376 | 2377 | .fa-eye::before { 2378 | content: "\f06e"; } 2379 | 2380 | .fa-eye-dropper::before { 2381 | content: "\f1fb"; } 2382 | 2383 | .fa-eye-dropper-empty::before { 2384 | content: "\f1fb"; } 2385 | 2386 | .fa-eyedropper::before { 2387 | content: "\f1fb"; } 2388 | 2389 | .fa-eye-low-vision::before { 2390 | content: "\f2a8"; } 2391 | 2392 | .fa-low-vision::before { 2393 | content: "\f2a8"; } 2394 | 2395 | .fa-eye-slash::before { 2396 | content: "\f070"; } 2397 | 2398 | .fa-f::before { 2399 | content: "\46"; } 2400 | 2401 | .fa-face-angry::before { 2402 | content: "\f556"; } 2403 | 2404 | .fa-angry::before { 2405 | content: "\f556"; } 2406 | 2407 | .fa-face-dizzy::before { 2408 | content: "\f567"; } 2409 | 2410 | .fa-dizzy::before { 2411 | content: "\f567"; } 2412 | 2413 | .fa-face-flushed::before { 2414 | content: "\f579"; } 2415 | 2416 | .fa-flushed::before { 2417 | content: "\f579"; } 2418 | 2419 | .fa-face-frown::before { 2420 | content: "\f119"; } 2421 | 2422 | .fa-frown::before { 2423 | content: "\f119"; } 2424 | 2425 | .fa-face-frown-open::before { 2426 | content: "\f57a"; } 2427 | 2428 | .fa-frown-open::before { 2429 | content: "\f57a"; } 2430 | 2431 | .fa-face-grimace::before { 2432 | content: "\f57f"; } 2433 | 2434 | .fa-grimace::before { 2435 | content: "\f57f"; } 2436 | 2437 | .fa-face-grin::before { 2438 | content: "\f580"; } 2439 | 2440 | .fa-grin::before { 2441 | content: "\f580"; } 2442 | 2443 | .fa-face-grin-beam::before { 2444 | content: "\f582"; } 2445 | 2446 | .fa-grin-beam::before { 2447 | content: "\f582"; } 2448 | 2449 | .fa-face-grin-beam-sweat::before { 2450 | content: "\f583"; } 2451 | 2452 | .fa-grin-beam-sweat::before { 2453 | content: "\f583"; } 2454 | 2455 | .fa-face-grin-hearts::before { 2456 | content: "\f584"; } 2457 | 2458 | .fa-grin-hearts::before { 2459 | content: "\f584"; } 2460 | 2461 | .fa-face-grin-squint::before { 2462 | content: "\f585"; } 2463 | 2464 | .fa-grin-squint::before { 2465 | content: "\f585"; } 2466 | 2467 | .fa-face-grin-squint-tears::before { 2468 | content: "\f586"; } 2469 | 2470 | .fa-grin-squint-tears::before { 2471 | content: "\f586"; } 2472 | 2473 | .fa-face-grin-stars::before { 2474 | content: "\f587"; } 2475 | 2476 | .fa-grin-stars::before { 2477 | content: "\f587"; } 2478 | 2479 | .fa-face-grin-tears::before { 2480 | content: "\f588"; } 2481 | 2482 | .fa-grin-tears::before { 2483 | content: "\f588"; } 2484 | 2485 | .fa-face-grin-tongue::before { 2486 | content: "\f589"; } 2487 | 2488 | .fa-grin-tongue::before { 2489 | content: "\f589"; } 2490 | 2491 | .fa-face-grin-tongue-squint::before { 2492 | content: "\f58a"; } 2493 | 2494 | .fa-grin-tongue-squint::before { 2495 | content: "\f58a"; } 2496 | 2497 | .fa-face-grin-tongue-wink::before { 2498 | content: "\f58b"; } 2499 | 2500 | .fa-grin-tongue-wink::before { 2501 | content: "\f58b"; } 2502 | 2503 | .fa-face-grin-wide::before { 2504 | content: "\f581"; } 2505 | 2506 | .fa-grin-alt::before { 2507 | content: "\f581"; } 2508 | 2509 | .fa-face-grin-wink::before { 2510 | content: "\f58c"; } 2511 | 2512 | .fa-grin-wink::before { 2513 | content: "\f58c"; } 2514 | 2515 | .fa-face-kiss::before { 2516 | content: "\f596"; } 2517 | 2518 | .fa-kiss::before { 2519 | content: "\f596"; } 2520 | 2521 | .fa-face-kiss-beam::before { 2522 | content: "\f597"; } 2523 | 2524 | .fa-kiss-beam::before { 2525 | content: "\f597"; } 2526 | 2527 | .fa-face-kiss-wink-heart::before { 2528 | content: "\f598"; } 2529 | 2530 | .fa-kiss-wink-heart::before { 2531 | content: "\f598"; } 2532 | 2533 | .fa-face-laugh::before { 2534 | content: "\f599"; } 2535 | 2536 | .fa-laugh::before { 2537 | content: "\f599"; } 2538 | 2539 | .fa-face-laugh-beam::before { 2540 | content: "\f59a"; } 2541 | 2542 | .fa-laugh-beam::before { 2543 | content: "\f59a"; } 2544 | 2545 | .fa-face-laugh-squint::before { 2546 | content: "\f59b"; } 2547 | 2548 | .fa-laugh-squint::before { 2549 | content: "\f59b"; } 2550 | 2551 | .fa-face-laugh-wink::before { 2552 | content: "\f59c"; } 2553 | 2554 | .fa-laugh-wink::before { 2555 | content: "\f59c"; } 2556 | 2557 | .fa-face-meh::before { 2558 | content: "\f11a"; } 2559 | 2560 | .fa-meh::before { 2561 | content: "\f11a"; } 2562 | 2563 | .fa-face-meh-blank::before { 2564 | content: "\f5a4"; } 2565 | 2566 | .fa-meh-blank::before { 2567 | content: "\f5a4"; } 2568 | 2569 | .fa-face-rolling-eyes::before { 2570 | content: "\f5a5"; } 2571 | 2572 | .fa-meh-rolling-eyes::before { 2573 | content: "\f5a5"; } 2574 | 2575 | .fa-face-sad-cry::before { 2576 | content: "\f5b3"; } 2577 | 2578 | .fa-sad-cry::before { 2579 | content: "\f5b3"; } 2580 | 2581 | .fa-face-sad-tear::before { 2582 | content: "\f5b4"; } 2583 | 2584 | .fa-sad-tear::before { 2585 | content: "\f5b4"; } 2586 | 2587 | .fa-face-smile::before { 2588 | content: "\f118"; } 2589 | 2590 | .fa-smile::before { 2591 | content: "\f118"; } 2592 | 2593 | .fa-face-smile-beam::before { 2594 | content: "\f5b8"; } 2595 | 2596 | .fa-smile-beam::before { 2597 | content: "\f5b8"; } 2598 | 2599 | .fa-face-smile-wink::before { 2600 | content: "\f4da"; } 2601 | 2602 | .fa-smile-wink::before { 2603 | content: "\f4da"; } 2604 | 2605 | .fa-face-surprise::before { 2606 | content: "\f5c2"; } 2607 | 2608 | .fa-surprise::before { 2609 | content: "\f5c2"; } 2610 | 2611 | .fa-face-tired::before { 2612 | content: "\f5c8"; } 2613 | 2614 | .fa-tired::before { 2615 | content: "\f5c8"; } 2616 | 2617 | .fa-fan::before { 2618 | content: "\f863"; } 2619 | 2620 | .fa-faucet::before { 2621 | content: "\e005"; } 2622 | 2623 | .fa-faucet-drip::before { 2624 | content: "\e006"; } 2625 | 2626 | .fa-fax::before { 2627 | content: "\f1ac"; } 2628 | 2629 | .fa-feather::before { 2630 | content: "\f52d"; } 2631 | 2632 | .fa-feather-pointed::before { 2633 | content: "\f56b"; } 2634 | 2635 | .fa-feather-alt::before { 2636 | content: "\f56b"; } 2637 | 2638 | .fa-ferry::before { 2639 | content: "\e4ea"; } 2640 | 2641 | .fa-file::before { 2642 | content: "\f15b"; } 2643 | 2644 | .fa-file-arrow-down::before { 2645 | content: "\f56d"; } 2646 | 2647 | .fa-file-download::before { 2648 | content: "\f56d"; } 2649 | 2650 | .fa-file-arrow-up::before { 2651 | content: "\f574"; } 2652 | 2653 | .fa-file-upload::before { 2654 | content: "\f574"; } 2655 | 2656 | .fa-file-audio::before { 2657 | content: "\f1c7"; } 2658 | 2659 | .fa-file-circle-check::before { 2660 | content: "\e493"; } 2661 | 2662 | .fa-file-circle-exclamation::before { 2663 | content: "\e4eb"; } 2664 | 2665 | .fa-file-circle-minus::before { 2666 | content: "\e4ed"; } 2667 | 2668 | .fa-file-circle-plus::before { 2669 | content: "\e4ee"; } 2670 | 2671 | .fa-file-circle-question::before { 2672 | content: "\e4ef"; } 2673 | 2674 | .fa-file-circle-xmark::before { 2675 | content: "\e494"; } 2676 | 2677 | .fa-file-code::before { 2678 | content: "\f1c9"; } 2679 | 2680 | .fa-file-contract::before { 2681 | content: "\f56c"; } 2682 | 2683 | .fa-file-csv::before { 2684 | content: "\f6dd"; } 2685 | 2686 | .fa-file-excel::before { 2687 | content: "\f1c3"; } 2688 | 2689 | .fa-file-export::before { 2690 | content: "\f56e"; } 2691 | 2692 | .fa-arrow-right-from-file::before { 2693 | content: "\f56e"; } 2694 | 2695 | .fa-file-image::before { 2696 | content: "\f1c5"; } 2697 | 2698 | .fa-file-import::before { 2699 | content: "\f56f"; } 2700 | 2701 | .fa-arrow-right-to-file::before { 2702 | content: "\f56f"; } 2703 | 2704 | .fa-file-invoice::before { 2705 | content: "\f570"; } 2706 | 2707 | .fa-file-invoice-dollar::before { 2708 | content: "\f571"; } 2709 | 2710 | .fa-file-lines::before { 2711 | content: "\f15c"; } 2712 | 2713 | .fa-file-alt::before { 2714 | content: "\f15c"; } 2715 | 2716 | .fa-file-text::before { 2717 | content: "\f15c"; } 2718 | 2719 | .fa-file-medical::before { 2720 | content: "\f477"; } 2721 | 2722 | .fa-file-pdf::before { 2723 | content: "\f1c1"; } 2724 | 2725 | .fa-file-pen::before { 2726 | content: "\f31c"; } 2727 | 2728 | .fa-file-edit::before { 2729 | content: "\f31c"; } 2730 | 2731 | .fa-file-powerpoint::before { 2732 | content: "\f1c4"; } 2733 | 2734 | .fa-file-prescription::before { 2735 | content: "\f572"; } 2736 | 2737 | .fa-file-shield::before { 2738 | content: "\e4f0"; } 2739 | 2740 | .fa-file-signature::before { 2741 | content: "\f573"; } 2742 | 2743 | .fa-file-video::before { 2744 | content: "\f1c8"; } 2745 | 2746 | .fa-file-waveform::before { 2747 | content: "\f478"; } 2748 | 2749 | .fa-file-medical-alt::before { 2750 | content: "\f478"; } 2751 | 2752 | .fa-file-word::before { 2753 | content: "\f1c2"; } 2754 | 2755 | .fa-file-zipper::before { 2756 | content: "\f1c6"; } 2757 | 2758 | .fa-file-archive::before { 2759 | content: "\f1c6"; } 2760 | 2761 | .fa-fill::before { 2762 | content: "\f575"; } 2763 | 2764 | .fa-fill-drip::before { 2765 | content: "\f576"; } 2766 | 2767 | .fa-film::before { 2768 | content: "\f008"; } 2769 | 2770 | .fa-filter::before { 2771 | content: "\f0b0"; } 2772 | 2773 | .fa-filter-circle-dollar::before { 2774 | content: "\f662"; } 2775 | 2776 | .fa-funnel-dollar::before { 2777 | content: "\f662"; } 2778 | 2779 | .fa-filter-circle-xmark::before { 2780 | content: "\e17b"; } 2781 | 2782 | .fa-fingerprint::before { 2783 | content: "\f577"; } 2784 | 2785 | .fa-fire::before { 2786 | content: "\f06d"; } 2787 | 2788 | .fa-fire-burner::before { 2789 | content: "\e4f1"; } 2790 | 2791 | .fa-fire-extinguisher::before { 2792 | content: "\f134"; } 2793 | 2794 | .fa-fire-flame-curved::before { 2795 | content: "\f7e4"; } 2796 | 2797 | .fa-fire-alt::before { 2798 | content: "\f7e4"; } 2799 | 2800 | .fa-fire-flame-simple::before { 2801 | content: "\f46a"; } 2802 | 2803 | .fa-burn::before { 2804 | content: "\f46a"; } 2805 | 2806 | .fa-fish::before { 2807 | content: "\f578"; } 2808 | 2809 | .fa-fish-fins::before { 2810 | content: "\e4f2"; } 2811 | 2812 | .fa-flag::before { 2813 | content: "\f024"; } 2814 | 2815 | .fa-flag-checkered::before { 2816 | content: "\f11e"; } 2817 | 2818 | .fa-flag-usa::before { 2819 | content: "\f74d"; } 2820 | 2821 | .fa-flask::before { 2822 | content: "\f0c3"; } 2823 | 2824 | .fa-flask-vial::before { 2825 | content: "\e4f3"; } 2826 | 2827 | .fa-floppy-disk::before { 2828 | content: "\f0c7"; } 2829 | 2830 | .fa-save::before { 2831 | content: "\f0c7"; } 2832 | 2833 | .fa-florin-sign::before { 2834 | content: "\e184"; } 2835 | 2836 | .fa-folder::before { 2837 | content: "\f07b"; } 2838 | 2839 | .fa-folder-blank::before { 2840 | content: "\f07b"; } 2841 | 2842 | .fa-folder-closed::before { 2843 | content: "\e185"; } 2844 | 2845 | .fa-folder-minus::before { 2846 | content: "\f65d"; } 2847 | 2848 | .fa-folder-open::before { 2849 | content: "\f07c"; } 2850 | 2851 | .fa-folder-plus::before { 2852 | content: "\f65e"; } 2853 | 2854 | .fa-folder-tree::before { 2855 | content: "\f802"; } 2856 | 2857 | .fa-font::before { 2858 | content: "\f031"; } 2859 | 2860 | .fa-football::before { 2861 | content: "\f44e"; } 2862 | 2863 | .fa-football-ball::before { 2864 | content: "\f44e"; } 2865 | 2866 | .fa-forward::before { 2867 | content: "\f04e"; } 2868 | 2869 | .fa-forward-fast::before { 2870 | content: "\f050"; } 2871 | 2872 | .fa-fast-forward::before { 2873 | content: "\f050"; } 2874 | 2875 | .fa-forward-step::before { 2876 | content: "\f051"; } 2877 | 2878 | .fa-step-forward::before { 2879 | content: "\f051"; } 2880 | 2881 | .fa-franc-sign::before { 2882 | content: "\e18f"; } 2883 | 2884 | .fa-frog::before { 2885 | content: "\f52e"; } 2886 | 2887 | .fa-futbol::before { 2888 | content: "\f1e3"; } 2889 | 2890 | .fa-futbol-ball::before { 2891 | content: "\f1e3"; } 2892 | 2893 | .fa-soccer-ball::before { 2894 | content: "\f1e3"; } 2895 | 2896 | .fa-g::before { 2897 | content: "\47"; } 2898 | 2899 | .fa-gamepad::before { 2900 | content: "\f11b"; } 2901 | 2902 | .fa-gas-pump::before { 2903 | content: "\f52f"; } 2904 | 2905 | .fa-gauge::before { 2906 | content: "\f624"; } 2907 | 2908 | .fa-dashboard::before { 2909 | content: "\f624"; } 2910 | 2911 | .fa-gauge-med::before { 2912 | content: "\f624"; } 2913 | 2914 | .fa-tachometer-alt-average::before { 2915 | content: "\f624"; } 2916 | 2917 | .fa-gauge-high::before { 2918 | content: "\f625"; } 2919 | 2920 | .fa-tachometer-alt::before { 2921 | content: "\f625"; } 2922 | 2923 | .fa-tachometer-alt-fast::before { 2924 | content: "\f625"; } 2925 | 2926 | .fa-gauge-simple::before { 2927 | content: "\f629"; } 2928 | 2929 | .fa-gauge-simple-med::before { 2930 | content: "\f629"; } 2931 | 2932 | .fa-tachometer-average::before { 2933 | content: "\f629"; } 2934 | 2935 | .fa-gauge-simple-high::before { 2936 | content: "\f62a"; } 2937 | 2938 | .fa-tachometer::before { 2939 | content: "\f62a"; } 2940 | 2941 | .fa-tachometer-fast::before { 2942 | content: "\f62a"; } 2943 | 2944 | .fa-gavel::before { 2945 | content: "\f0e3"; } 2946 | 2947 | .fa-legal::before { 2948 | content: "\f0e3"; } 2949 | 2950 | .fa-gear::before { 2951 | content: "\f013"; } 2952 | 2953 | .fa-cog::before { 2954 | content: "\f013"; } 2955 | 2956 | .fa-gears::before { 2957 | content: "\f085"; } 2958 | 2959 | .fa-cogs::before { 2960 | content: "\f085"; } 2961 | 2962 | .fa-gem::before { 2963 | content: "\f3a5"; } 2964 | 2965 | .fa-genderless::before { 2966 | content: "\f22d"; } 2967 | 2968 | .fa-ghost::before { 2969 | content: "\f6e2"; } 2970 | 2971 | .fa-gift::before { 2972 | content: "\f06b"; } 2973 | 2974 | .fa-gifts::before { 2975 | content: "\f79c"; } 2976 | 2977 | .fa-glass-water::before { 2978 | content: "\e4f4"; } 2979 | 2980 | .fa-glass-water-droplet::before { 2981 | content: "\e4f5"; } 2982 | 2983 | .fa-glasses::before { 2984 | content: "\f530"; } 2985 | 2986 | .fa-globe::before { 2987 | content: "\f0ac"; } 2988 | 2989 | .fa-golf-ball-tee::before { 2990 | content: "\f450"; } 2991 | 2992 | .fa-golf-ball::before { 2993 | content: "\f450"; } 2994 | 2995 | .fa-gopuram::before { 2996 | content: "\f664"; } 2997 | 2998 | .fa-graduation-cap::before { 2999 | content: "\f19d"; } 3000 | 3001 | .fa-mortar-board::before { 3002 | content: "\f19d"; } 3003 | 3004 | .fa-greater-than::before { 3005 | content: "\3e"; } 3006 | 3007 | .fa-greater-than-equal::before { 3008 | content: "\f532"; } 3009 | 3010 | .fa-grip::before { 3011 | content: "\f58d"; } 3012 | 3013 | .fa-grip-horizontal::before { 3014 | content: "\f58d"; } 3015 | 3016 | .fa-grip-lines::before { 3017 | content: "\f7a4"; } 3018 | 3019 | .fa-grip-lines-vertical::before { 3020 | content: "\f7a5"; } 3021 | 3022 | .fa-grip-vertical::before { 3023 | content: "\f58e"; } 3024 | 3025 | .fa-group-arrows-rotate::before { 3026 | content: "\e4f6"; } 3027 | 3028 | .fa-guarani-sign::before { 3029 | content: "\e19a"; } 3030 | 3031 | .fa-guitar::before { 3032 | content: "\f7a6"; } 3033 | 3034 | .fa-gun::before { 3035 | content: "\e19b"; } 3036 | 3037 | .fa-h::before { 3038 | content: "\48"; } 3039 | 3040 | .fa-hammer::before { 3041 | content: "\f6e3"; } 3042 | 3043 | .fa-hamsa::before { 3044 | content: "\f665"; } 3045 | 3046 | .fa-hand::before { 3047 | content: "\f256"; } 3048 | 3049 | .fa-hand-paper::before { 3050 | content: "\f256"; } 3051 | 3052 | .fa-hand-back-fist::before { 3053 | content: "\f255"; } 3054 | 3055 | .fa-hand-rock::before { 3056 | content: "\f255"; } 3057 | 3058 | .fa-hand-dots::before { 3059 | content: "\f461"; } 3060 | 3061 | .fa-allergies::before { 3062 | content: "\f461"; } 3063 | 3064 | .fa-hand-fist::before { 3065 | content: "\f6de"; } 3066 | 3067 | .fa-fist-raised::before { 3068 | content: "\f6de"; } 3069 | 3070 | .fa-hand-holding::before { 3071 | content: "\f4bd"; } 3072 | 3073 | .fa-hand-holding-dollar::before { 3074 | content: "\f4c0"; } 3075 | 3076 | .fa-hand-holding-usd::before { 3077 | content: "\f4c0"; } 3078 | 3079 | .fa-hand-holding-droplet::before { 3080 | content: "\f4c1"; } 3081 | 3082 | .fa-hand-holding-water::before { 3083 | content: "\f4c1"; } 3084 | 3085 | .fa-hand-holding-hand::before { 3086 | content: "\e4f7"; } 3087 | 3088 | .fa-hand-holding-heart::before { 3089 | content: "\f4be"; } 3090 | 3091 | .fa-hand-holding-medical::before { 3092 | content: "\e05c"; } 3093 | 3094 | .fa-hand-lizard::before { 3095 | content: "\f258"; } 3096 | 3097 | .fa-hand-middle-finger::before { 3098 | content: "\f806"; } 3099 | 3100 | .fa-hand-peace::before { 3101 | content: "\f25b"; } 3102 | 3103 | .fa-hand-point-down::before { 3104 | content: "\f0a7"; } 3105 | 3106 | .fa-hand-point-left::before { 3107 | content: "\f0a5"; } 3108 | 3109 | .fa-hand-point-right::before { 3110 | content: "\f0a4"; } 3111 | 3112 | .fa-hand-point-up::before { 3113 | content: "\f0a6"; } 3114 | 3115 | .fa-hand-pointer::before { 3116 | content: "\f25a"; } 3117 | 3118 | .fa-hand-scissors::before { 3119 | content: "\f257"; } 3120 | 3121 | .fa-hand-sparkles::before { 3122 | content: "\e05d"; } 3123 | 3124 | .fa-hand-spock::before { 3125 | content: "\f259"; } 3126 | 3127 | .fa-handcuffs::before { 3128 | content: "\e4f8"; } 3129 | 3130 | .fa-hands::before { 3131 | content: "\f2a7"; } 3132 | 3133 | .fa-sign-language::before { 3134 | content: "\f2a7"; } 3135 | 3136 | .fa-signing::before { 3137 | content: "\f2a7"; } 3138 | 3139 | .fa-hands-asl-interpreting::before { 3140 | content: "\f2a3"; } 3141 | 3142 | .fa-american-sign-language-interpreting::before { 3143 | content: "\f2a3"; } 3144 | 3145 | .fa-asl-interpreting::before { 3146 | content: "\f2a3"; } 3147 | 3148 | .fa-hands-american-sign-language-interpreting::before { 3149 | content: "\f2a3"; } 3150 | 3151 | .fa-hands-bound::before { 3152 | content: "\e4f9"; } 3153 | 3154 | .fa-hands-bubbles::before { 3155 | content: "\e05e"; } 3156 | 3157 | .fa-hands-wash::before { 3158 | content: "\e05e"; } 3159 | 3160 | .fa-hands-clapping::before { 3161 | content: "\e1a8"; } 3162 | 3163 | .fa-hands-holding::before { 3164 | content: "\f4c2"; } 3165 | 3166 | .fa-hands-holding-child::before { 3167 | content: "\e4fa"; } 3168 | 3169 | .fa-hands-holding-circle::before { 3170 | content: "\e4fb"; } 3171 | 3172 | .fa-hands-praying::before { 3173 | content: "\f684"; } 3174 | 3175 | .fa-praying-hands::before { 3176 | content: "\f684"; } 3177 | 3178 | .fa-handshake::before { 3179 | content: "\f2b5"; } 3180 | 3181 | .fa-handshake-angle::before { 3182 | content: "\f4c4"; } 3183 | 3184 | .fa-hands-helping::before { 3185 | content: "\f4c4"; } 3186 | 3187 | .fa-handshake-simple::before { 3188 | content: "\f4c6"; } 3189 | 3190 | .fa-handshake-alt::before { 3191 | content: "\f4c6"; } 3192 | 3193 | .fa-handshake-simple-slash::before { 3194 | content: "\e05f"; } 3195 | 3196 | .fa-handshake-alt-slash::before { 3197 | content: "\e05f"; } 3198 | 3199 | .fa-handshake-slash::before { 3200 | content: "\e060"; } 3201 | 3202 | .fa-hanukiah::before { 3203 | content: "\f6e6"; } 3204 | 3205 | .fa-hard-drive::before { 3206 | content: "\f0a0"; } 3207 | 3208 | .fa-hdd::before { 3209 | content: "\f0a0"; } 3210 | 3211 | .fa-hashtag::before { 3212 | content: "\23"; } 3213 | 3214 | .fa-hat-cowboy::before { 3215 | content: "\f8c0"; } 3216 | 3217 | .fa-hat-cowboy-side::before { 3218 | content: "\f8c1"; } 3219 | 3220 | .fa-hat-wizard::before { 3221 | content: "\f6e8"; } 3222 | 3223 | .fa-head-side-cough::before { 3224 | content: "\e061"; } 3225 | 3226 | .fa-head-side-cough-slash::before { 3227 | content: "\e062"; } 3228 | 3229 | .fa-head-side-mask::before { 3230 | content: "\e063"; } 3231 | 3232 | .fa-head-side-virus::before { 3233 | content: "\e064"; } 3234 | 3235 | .fa-heading::before { 3236 | content: "\f1dc"; } 3237 | 3238 | .fa-header::before { 3239 | content: "\f1dc"; } 3240 | 3241 | .fa-headphones::before { 3242 | content: "\f025"; } 3243 | 3244 | .fa-headphones-simple::before { 3245 | content: "\f58f"; } 3246 | 3247 | .fa-headphones-alt::before { 3248 | content: "\f58f"; } 3249 | 3250 | .fa-headset::before { 3251 | content: "\f590"; } 3252 | 3253 | .fa-heart::before { 3254 | content: "\f004"; } 3255 | 3256 | .fa-heart-circle-bolt::before { 3257 | content: "\e4fc"; } 3258 | 3259 | .fa-heart-circle-check::before { 3260 | content: "\e4fd"; } 3261 | 3262 | .fa-heart-circle-exclamation::before { 3263 | content: "\e4fe"; } 3264 | 3265 | .fa-heart-circle-minus::before { 3266 | content: "\e4ff"; } 3267 | 3268 | .fa-heart-circle-plus::before { 3269 | content: "\e500"; } 3270 | 3271 | .fa-heart-circle-xmark::before { 3272 | content: "\e501"; } 3273 | 3274 | .fa-heart-crack::before { 3275 | content: "\f7a9"; } 3276 | 3277 | .fa-heart-broken::before { 3278 | content: "\f7a9"; } 3279 | 3280 | .fa-heart-pulse::before { 3281 | content: "\f21e"; } 3282 | 3283 | .fa-heartbeat::before { 3284 | content: "\f21e"; } 3285 | 3286 | .fa-helicopter::before { 3287 | content: "\f533"; } 3288 | 3289 | .fa-helicopter-symbol::before { 3290 | content: "\e502"; } 3291 | 3292 | .fa-helmet-safety::before { 3293 | content: "\f807"; } 3294 | 3295 | .fa-hard-hat::before { 3296 | content: "\f807"; } 3297 | 3298 | .fa-hat-hard::before { 3299 | content: "\f807"; } 3300 | 3301 | .fa-helmet-un::before { 3302 | content: "\e503"; } 3303 | 3304 | .fa-highlighter::before { 3305 | content: "\f591"; } 3306 | 3307 | .fa-hill-avalanche::before { 3308 | content: "\e507"; } 3309 | 3310 | .fa-hill-rockslide::before { 3311 | content: "\e508"; } 3312 | 3313 | .fa-hippo::before { 3314 | content: "\f6ed"; } 3315 | 3316 | .fa-hockey-puck::before { 3317 | content: "\f453"; } 3318 | 3319 | .fa-holly-berry::before { 3320 | content: "\f7aa"; } 3321 | 3322 | .fa-horse::before { 3323 | content: "\f6f0"; } 3324 | 3325 | .fa-horse-head::before { 3326 | content: "\f7ab"; } 3327 | 3328 | .fa-hospital::before { 3329 | content: "\f0f8"; } 3330 | 3331 | .fa-hospital-alt::before { 3332 | content: "\f0f8"; } 3333 | 3334 | .fa-hospital-wide::before { 3335 | content: "\f0f8"; } 3336 | 3337 | .fa-hospital-user::before { 3338 | content: "\f80d"; } 3339 | 3340 | .fa-hot-tub-person::before { 3341 | content: "\f593"; } 3342 | 3343 | .fa-hot-tub::before { 3344 | content: "\f593"; } 3345 | 3346 | .fa-hotdog::before { 3347 | content: "\f80f"; } 3348 | 3349 | .fa-hotel::before { 3350 | content: "\f594"; } 3351 | 3352 | .fa-hourglass::before { 3353 | content: "\f254"; } 3354 | 3355 | .fa-hourglass-2::before { 3356 | content: "\f254"; } 3357 | 3358 | .fa-hourglass-half::before { 3359 | content: "\f254"; } 3360 | 3361 | .fa-hourglass-empty::before { 3362 | content: "\f252"; } 3363 | 3364 | .fa-hourglass-end::before { 3365 | content: "\f253"; } 3366 | 3367 | .fa-hourglass-3::before { 3368 | content: "\f253"; } 3369 | 3370 | .fa-hourglass-start::before { 3371 | content: "\f251"; } 3372 | 3373 | .fa-hourglass-1::before { 3374 | content: "\f251"; } 3375 | 3376 | .fa-house::before { 3377 | content: "\f015"; } 3378 | 3379 | .fa-home::before { 3380 | content: "\f015"; } 3381 | 3382 | .fa-home-alt::before { 3383 | content: "\f015"; } 3384 | 3385 | .fa-home-lg-alt::before { 3386 | content: "\f015"; } 3387 | 3388 | .fa-house-chimney::before { 3389 | content: "\e3af"; } 3390 | 3391 | .fa-home-lg::before { 3392 | content: "\e3af"; } 3393 | 3394 | .fa-house-chimney-crack::before { 3395 | content: "\f6f1"; } 3396 | 3397 | .fa-house-damage::before { 3398 | content: "\f6f1"; } 3399 | 3400 | .fa-house-chimney-medical::before { 3401 | content: "\f7f2"; } 3402 | 3403 | .fa-clinic-medical::before { 3404 | content: "\f7f2"; } 3405 | 3406 | .fa-house-chimney-user::before { 3407 | content: "\e065"; } 3408 | 3409 | .fa-house-chimney-window::before { 3410 | content: "\e00d"; } 3411 | 3412 | .fa-house-circle-check::before { 3413 | content: "\e509"; } 3414 | 3415 | .fa-house-circle-exclamation::before { 3416 | content: "\e50a"; } 3417 | 3418 | .fa-house-circle-xmark::before { 3419 | content: "\e50b"; } 3420 | 3421 | .fa-house-crack::before { 3422 | content: "\e3b1"; } 3423 | 3424 | .fa-house-fire::before { 3425 | content: "\e50c"; } 3426 | 3427 | .fa-house-flag::before { 3428 | content: "\e50d"; } 3429 | 3430 | .fa-house-flood-water::before { 3431 | content: "\e50e"; } 3432 | 3433 | .fa-house-flood-water-circle-arrow-right::before { 3434 | content: "\e50f"; } 3435 | 3436 | .fa-house-laptop::before { 3437 | content: "\e066"; } 3438 | 3439 | .fa-laptop-house::before { 3440 | content: "\e066"; } 3441 | 3442 | .fa-house-lock::before { 3443 | content: "\e510"; } 3444 | 3445 | .fa-house-medical::before { 3446 | content: "\e3b2"; } 3447 | 3448 | .fa-house-medical-circle-check::before { 3449 | content: "\e511"; } 3450 | 3451 | .fa-house-medical-circle-exclamation::before { 3452 | content: "\e512"; } 3453 | 3454 | .fa-house-medical-circle-xmark::before { 3455 | content: "\e513"; } 3456 | 3457 | .fa-house-medical-flag::before { 3458 | content: "\e514"; } 3459 | 3460 | .fa-house-signal::before { 3461 | content: "\e012"; } 3462 | 3463 | .fa-house-tsunami::before { 3464 | content: "\e515"; } 3465 | 3466 | .fa-house-user::before { 3467 | content: "\e1b0"; } 3468 | 3469 | .fa-home-user::before { 3470 | content: "\e1b0"; } 3471 | 3472 | .fa-hryvnia-sign::before { 3473 | content: "\f6f2"; } 3474 | 3475 | .fa-hryvnia::before { 3476 | content: "\f6f2"; } 3477 | 3478 | .fa-hurricane::before { 3479 | content: "\f751"; } 3480 | 3481 | .fa-i::before { 3482 | content: "\49"; } 3483 | 3484 | .fa-i-cursor::before { 3485 | content: "\f246"; } 3486 | 3487 | .fa-ice-cream::before { 3488 | content: "\f810"; } 3489 | 3490 | .fa-icicles::before { 3491 | content: "\f7ad"; } 3492 | 3493 | .fa-icons::before { 3494 | content: "\f86d"; } 3495 | 3496 | .fa-heart-music-camera-bolt::before { 3497 | content: "\f86d"; } 3498 | 3499 | .fa-id-badge::before { 3500 | content: "\f2c1"; } 3501 | 3502 | .fa-id-card::before { 3503 | content: "\f2c2"; } 3504 | 3505 | .fa-drivers-license::before { 3506 | content: "\f2c2"; } 3507 | 3508 | .fa-id-card-clip::before { 3509 | content: "\f47f"; } 3510 | 3511 | .fa-id-card-alt::before { 3512 | content: "\f47f"; } 3513 | 3514 | .fa-igloo::before { 3515 | content: "\f7ae"; } 3516 | 3517 | .fa-image::before { 3518 | content: "\f03e"; } 3519 | 3520 | .fa-image-portrait::before { 3521 | content: "\f3e0"; } 3522 | 3523 | .fa-portrait::before { 3524 | content: "\f3e0"; } 3525 | 3526 | .fa-images::before { 3527 | content: "\f302"; } 3528 | 3529 | .fa-inbox::before { 3530 | content: "\f01c"; } 3531 | 3532 | .fa-indent::before { 3533 | content: "\f03c"; } 3534 | 3535 | .fa-indian-rupee-sign::before { 3536 | content: "\e1bc"; } 3537 | 3538 | .fa-indian-rupee::before { 3539 | content: "\e1bc"; } 3540 | 3541 | .fa-inr::before { 3542 | content: "\e1bc"; } 3543 | 3544 | .fa-industry::before { 3545 | content: "\f275"; } 3546 | 3547 | .fa-infinity::before { 3548 | content: "\f534"; } 3549 | 3550 | .fa-info::before { 3551 | content: "\f129"; } 3552 | 3553 | .fa-italic::before { 3554 | content: "\f033"; } 3555 | 3556 | .fa-j::before { 3557 | content: "\4a"; } 3558 | 3559 | .fa-jar::before { 3560 | content: "\e516"; } 3561 | 3562 | .fa-jar-wheat::before { 3563 | content: "\e517"; } 3564 | 3565 | .fa-jedi::before { 3566 | content: "\f669"; } 3567 | 3568 | .fa-jet-fighter::before { 3569 | content: "\f0fb"; } 3570 | 3571 | .fa-fighter-jet::before { 3572 | content: "\f0fb"; } 3573 | 3574 | .fa-jet-fighter-up::before { 3575 | content: "\e518"; } 3576 | 3577 | .fa-joint::before { 3578 | content: "\f595"; } 3579 | 3580 | .fa-jug-detergent::before { 3581 | content: "\e519"; } 3582 | 3583 | .fa-k::before { 3584 | content: "\4b"; } 3585 | 3586 | .fa-kaaba::before { 3587 | content: "\f66b"; } 3588 | 3589 | .fa-key::before { 3590 | content: "\f084"; } 3591 | 3592 | .fa-keyboard::before { 3593 | content: "\f11c"; } 3594 | 3595 | .fa-khanda::before { 3596 | content: "\f66d"; } 3597 | 3598 | .fa-kip-sign::before { 3599 | content: "\e1c4"; } 3600 | 3601 | .fa-kit-medical::before { 3602 | content: "\f479"; } 3603 | 3604 | .fa-first-aid::before { 3605 | content: "\f479"; } 3606 | 3607 | .fa-kitchen-set::before { 3608 | content: "\e51a"; } 3609 | 3610 | .fa-kiwi-bird::before { 3611 | content: "\f535"; } 3612 | 3613 | .fa-l::before { 3614 | content: "\4c"; } 3615 | 3616 | .fa-land-mine-on::before { 3617 | content: "\e51b"; } 3618 | 3619 | .fa-landmark::before { 3620 | content: "\f66f"; } 3621 | 3622 | .fa-landmark-dome::before { 3623 | content: "\f752"; } 3624 | 3625 | .fa-landmark-alt::before { 3626 | content: "\f752"; } 3627 | 3628 | .fa-landmark-flag::before { 3629 | content: "\e51c"; } 3630 | 3631 | .fa-language::before { 3632 | content: "\f1ab"; } 3633 | 3634 | .fa-laptop::before { 3635 | content: "\f109"; } 3636 | 3637 | .fa-laptop-code::before { 3638 | content: "\f5fc"; } 3639 | 3640 | .fa-laptop-file::before { 3641 | content: "\e51d"; } 3642 | 3643 | .fa-laptop-medical::before { 3644 | content: "\f812"; } 3645 | 3646 | .fa-lari-sign::before { 3647 | content: "\e1c8"; } 3648 | 3649 | .fa-layer-group::before { 3650 | content: "\f5fd"; } 3651 | 3652 | .fa-leaf::before { 3653 | content: "\f06c"; } 3654 | 3655 | .fa-left-long::before { 3656 | content: "\f30a"; } 3657 | 3658 | .fa-long-arrow-alt-left::before { 3659 | content: "\f30a"; } 3660 | 3661 | .fa-left-right::before { 3662 | content: "\f337"; } 3663 | 3664 | .fa-arrows-alt-h::before { 3665 | content: "\f337"; } 3666 | 3667 | .fa-lemon::before { 3668 | content: "\f094"; } 3669 | 3670 | .fa-less-than::before { 3671 | content: "\3c"; } 3672 | 3673 | .fa-less-than-equal::before { 3674 | content: "\f537"; } 3675 | 3676 | .fa-life-ring::before { 3677 | content: "\f1cd"; } 3678 | 3679 | .fa-lightbulb::before { 3680 | content: "\f0eb"; } 3681 | 3682 | .fa-lines-leaning::before { 3683 | content: "\e51e"; } 3684 | 3685 | .fa-link::before { 3686 | content: "\f0c1"; } 3687 | 3688 | .fa-chain::before { 3689 | content: "\f0c1"; } 3690 | 3691 | .fa-link-slash::before { 3692 | content: "\f127"; } 3693 | 3694 | .fa-chain-broken::before { 3695 | content: "\f127"; } 3696 | 3697 | .fa-chain-slash::before { 3698 | content: "\f127"; } 3699 | 3700 | .fa-unlink::before { 3701 | content: "\f127"; } 3702 | 3703 | .fa-lira-sign::before { 3704 | content: "\f195"; } 3705 | 3706 | .fa-list::before { 3707 | content: "\f03a"; } 3708 | 3709 | .fa-list-squares::before { 3710 | content: "\f03a"; } 3711 | 3712 | .fa-list-check::before { 3713 | content: "\f0ae"; } 3714 | 3715 | .fa-tasks::before { 3716 | content: "\f0ae"; } 3717 | 3718 | .fa-list-ol::before { 3719 | content: "\f0cb"; } 3720 | 3721 | .fa-list-1-2::before { 3722 | content: "\f0cb"; } 3723 | 3724 | .fa-list-numeric::before { 3725 | content: "\f0cb"; } 3726 | 3727 | .fa-list-ul::before { 3728 | content: "\f0ca"; } 3729 | 3730 | .fa-list-dots::before { 3731 | content: "\f0ca"; } 3732 | 3733 | .fa-litecoin-sign::before { 3734 | content: "\e1d3"; } 3735 | 3736 | .fa-location-arrow::before { 3737 | content: "\f124"; } 3738 | 3739 | .fa-location-crosshairs::before { 3740 | content: "\f601"; } 3741 | 3742 | .fa-location::before { 3743 | content: "\f601"; } 3744 | 3745 | .fa-location-dot::before { 3746 | content: "\f3c5"; } 3747 | 3748 | .fa-map-marker-alt::before { 3749 | content: "\f3c5"; } 3750 | 3751 | .fa-location-pin::before { 3752 | content: "\f041"; } 3753 | 3754 | .fa-map-marker::before { 3755 | content: "\f041"; } 3756 | 3757 | .fa-location-pin-lock::before { 3758 | content: "\e51f"; } 3759 | 3760 | .fa-lock::before { 3761 | content: "\f023"; } 3762 | 3763 | .fa-lock-open::before { 3764 | content: "\f3c1"; } 3765 | 3766 | .fa-locust::before { 3767 | content: "\e520"; } 3768 | 3769 | .fa-lungs::before { 3770 | content: "\f604"; } 3771 | 3772 | .fa-lungs-virus::before { 3773 | content: "\e067"; } 3774 | 3775 | .fa-m::before { 3776 | content: "\4d"; } 3777 | 3778 | .fa-magnet::before { 3779 | content: "\f076"; } 3780 | 3781 | .fa-magnifying-glass::before { 3782 | content: "\f002"; } 3783 | 3784 | .fa-search::before { 3785 | content: "\f002"; } 3786 | 3787 | .fa-magnifying-glass-arrow-right::before { 3788 | content: "\e521"; } 3789 | 3790 | .fa-magnifying-glass-chart::before { 3791 | content: "\e522"; } 3792 | 3793 | .fa-magnifying-glass-dollar::before { 3794 | content: "\f688"; } 3795 | 3796 | .fa-search-dollar::before { 3797 | content: "\f688"; } 3798 | 3799 | .fa-magnifying-glass-location::before { 3800 | content: "\f689"; } 3801 | 3802 | .fa-search-location::before { 3803 | content: "\f689"; } 3804 | 3805 | .fa-magnifying-glass-minus::before { 3806 | content: "\f010"; } 3807 | 3808 | .fa-search-minus::before { 3809 | content: "\f010"; } 3810 | 3811 | .fa-magnifying-glass-plus::before { 3812 | content: "\f00e"; } 3813 | 3814 | .fa-search-plus::before { 3815 | content: "\f00e"; } 3816 | 3817 | .fa-manat-sign::before { 3818 | content: "\e1d5"; } 3819 | 3820 | .fa-map::before { 3821 | content: "\f279"; } 3822 | 3823 | .fa-map-location::before { 3824 | content: "\f59f"; } 3825 | 3826 | .fa-map-marked::before { 3827 | content: "\f59f"; } 3828 | 3829 | .fa-map-location-dot::before { 3830 | content: "\f5a0"; } 3831 | 3832 | .fa-map-marked-alt::before { 3833 | content: "\f5a0"; } 3834 | 3835 | .fa-map-pin::before { 3836 | content: "\f276"; } 3837 | 3838 | .fa-marker::before { 3839 | content: "\f5a1"; } 3840 | 3841 | .fa-mars::before { 3842 | content: "\f222"; } 3843 | 3844 | .fa-mars-and-venus::before { 3845 | content: "\f224"; } 3846 | 3847 | .fa-mars-and-venus-burst::before { 3848 | content: "\e523"; } 3849 | 3850 | .fa-mars-double::before { 3851 | content: "\f227"; } 3852 | 3853 | .fa-mars-stroke::before { 3854 | content: "\f229"; } 3855 | 3856 | .fa-mars-stroke-right::before { 3857 | content: "\f22b"; } 3858 | 3859 | .fa-mars-stroke-h::before { 3860 | content: "\f22b"; } 3861 | 3862 | .fa-mars-stroke-up::before { 3863 | content: "\f22a"; } 3864 | 3865 | .fa-mars-stroke-v::before { 3866 | content: "\f22a"; } 3867 | 3868 | .fa-martini-glass::before { 3869 | content: "\f57b"; } 3870 | 3871 | .fa-glass-martini-alt::before { 3872 | content: "\f57b"; } 3873 | 3874 | .fa-martini-glass-citrus::before { 3875 | content: "\f561"; } 3876 | 3877 | .fa-cocktail::before { 3878 | content: "\f561"; } 3879 | 3880 | .fa-martini-glass-empty::before { 3881 | content: "\f000"; } 3882 | 3883 | .fa-glass-martini::before { 3884 | content: "\f000"; } 3885 | 3886 | .fa-mask::before { 3887 | content: "\f6fa"; } 3888 | 3889 | .fa-mask-face::before { 3890 | content: "\e1d7"; } 3891 | 3892 | .fa-mask-ventilator::before { 3893 | content: "\e524"; } 3894 | 3895 | .fa-masks-theater::before { 3896 | content: "\f630"; } 3897 | 3898 | .fa-theater-masks::before { 3899 | content: "\f630"; } 3900 | 3901 | .fa-mattress-pillow::before { 3902 | content: "\e525"; } 3903 | 3904 | .fa-maximize::before { 3905 | content: "\f31e"; } 3906 | 3907 | .fa-expand-arrows-alt::before { 3908 | content: "\f31e"; } 3909 | 3910 | .fa-medal::before { 3911 | content: "\f5a2"; } 3912 | 3913 | .fa-memory::before { 3914 | content: "\f538"; } 3915 | 3916 | .fa-menorah::before { 3917 | content: "\f676"; } 3918 | 3919 | .fa-mercury::before { 3920 | content: "\f223"; } 3921 | 3922 | .fa-message::before { 3923 | content: "\f27a"; } 3924 | 3925 | .fa-comment-alt::before { 3926 | content: "\f27a"; } 3927 | 3928 | .fa-meteor::before { 3929 | content: "\f753"; } 3930 | 3931 | .fa-microchip::before { 3932 | content: "\f2db"; } 3933 | 3934 | .fa-microphone::before { 3935 | content: "\f130"; } 3936 | 3937 | .fa-microphone-lines::before { 3938 | content: "\f3c9"; } 3939 | 3940 | .fa-microphone-alt::before { 3941 | content: "\f3c9"; } 3942 | 3943 | .fa-microphone-lines-slash::before { 3944 | content: "\f539"; } 3945 | 3946 | .fa-microphone-alt-slash::before { 3947 | content: "\f539"; } 3948 | 3949 | .fa-microphone-slash::before { 3950 | content: "\f131"; } 3951 | 3952 | .fa-microscope::before { 3953 | content: "\f610"; } 3954 | 3955 | .fa-mill-sign::before { 3956 | content: "\e1ed"; } 3957 | 3958 | .fa-minimize::before { 3959 | content: "\f78c"; } 3960 | 3961 | .fa-compress-arrows-alt::before { 3962 | content: "\f78c"; } 3963 | 3964 | .fa-minus::before { 3965 | content: "\f068"; } 3966 | 3967 | .fa-subtract::before { 3968 | content: "\f068"; } 3969 | 3970 | .fa-mitten::before { 3971 | content: "\f7b5"; } 3972 | 3973 | .fa-mobile::before { 3974 | content: "\f3ce"; } 3975 | 3976 | .fa-mobile-android::before { 3977 | content: "\f3ce"; } 3978 | 3979 | .fa-mobile-phone::before { 3980 | content: "\f3ce"; } 3981 | 3982 | .fa-mobile-button::before { 3983 | content: "\f10b"; } 3984 | 3985 | .fa-mobile-retro::before { 3986 | content: "\e527"; } 3987 | 3988 | .fa-mobile-screen::before { 3989 | content: "\f3cf"; } 3990 | 3991 | .fa-mobile-android-alt::before { 3992 | content: "\f3cf"; } 3993 | 3994 | .fa-mobile-screen-button::before { 3995 | content: "\f3cd"; } 3996 | 3997 | .fa-mobile-alt::before { 3998 | content: "\f3cd"; } 3999 | 4000 | .fa-money-bill::before { 4001 | content: "\f0d6"; } 4002 | 4003 | .fa-money-bill-1::before { 4004 | content: "\f3d1"; } 4005 | 4006 | .fa-money-bill-alt::before { 4007 | content: "\f3d1"; } 4008 | 4009 | .fa-money-bill-1-wave::before { 4010 | content: "\f53b"; } 4011 | 4012 | .fa-money-bill-wave-alt::before { 4013 | content: "\f53b"; } 4014 | 4015 | .fa-money-bill-transfer::before { 4016 | content: "\e528"; } 4017 | 4018 | .fa-money-bill-trend-up::before { 4019 | content: "\e529"; } 4020 | 4021 | .fa-money-bill-wave::before { 4022 | content: "\f53a"; } 4023 | 4024 | .fa-money-bill-wheat::before { 4025 | content: "\e52a"; } 4026 | 4027 | .fa-money-bills::before { 4028 | content: "\e1f3"; } 4029 | 4030 | .fa-money-check::before { 4031 | content: "\f53c"; } 4032 | 4033 | .fa-money-check-dollar::before { 4034 | content: "\f53d"; } 4035 | 4036 | .fa-money-check-alt::before { 4037 | content: "\f53d"; } 4038 | 4039 | .fa-monument::before { 4040 | content: "\f5a6"; } 4041 | 4042 | .fa-moon::before { 4043 | content: "\f186"; } 4044 | 4045 | .fa-mortar-pestle::before { 4046 | content: "\f5a7"; } 4047 | 4048 | .fa-mosque::before { 4049 | content: "\f678"; } 4050 | 4051 | .fa-mosquito::before { 4052 | content: "\e52b"; } 4053 | 4054 | .fa-mosquito-net::before { 4055 | content: "\e52c"; } 4056 | 4057 | .fa-motorcycle::before { 4058 | content: "\f21c"; } 4059 | 4060 | .fa-mound::before { 4061 | content: "\e52d"; } 4062 | 4063 | .fa-mountain::before { 4064 | content: "\f6fc"; } 4065 | 4066 | .fa-mountain-city::before { 4067 | content: "\e52e"; } 4068 | 4069 | .fa-mountain-sun::before { 4070 | content: "\e52f"; } 4071 | 4072 | .fa-mug-hot::before { 4073 | content: "\f7b6"; } 4074 | 4075 | .fa-mug-saucer::before { 4076 | content: "\f0f4"; } 4077 | 4078 | .fa-coffee::before { 4079 | content: "\f0f4"; } 4080 | 4081 | .fa-music::before { 4082 | content: "\f001"; } 4083 | 4084 | .fa-n::before { 4085 | content: "\4e"; } 4086 | 4087 | .fa-naira-sign::before { 4088 | content: "\e1f6"; } 4089 | 4090 | .fa-network-wired::before { 4091 | content: "\f6ff"; } 4092 | 4093 | .fa-neuter::before { 4094 | content: "\f22c"; } 4095 | 4096 | .fa-newspaper::before { 4097 | content: "\f1ea"; } 4098 | 4099 | .fa-not-equal::before { 4100 | content: "\f53e"; } 4101 | 4102 | .fa-note-sticky::before { 4103 | content: "\f249"; } 4104 | 4105 | .fa-sticky-note::before { 4106 | content: "\f249"; } 4107 | 4108 | .fa-notes-medical::before { 4109 | content: "\f481"; } 4110 | 4111 | .fa-o::before { 4112 | content: "\4f"; } 4113 | 4114 | .fa-object-group::before { 4115 | content: "\f247"; } 4116 | 4117 | .fa-object-ungroup::before { 4118 | content: "\f248"; } 4119 | 4120 | .fa-oil-can::before { 4121 | content: "\f613"; } 4122 | 4123 | .fa-oil-well::before { 4124 | content: "\e532"; } 4125 | 4126 | .fa-om::before { 4127 | content: "\f679"; } 4128 | 4129 | .fa-otter::before { 4130 | content: "\f700"; } 4131 | 4132 | .fa-outdent::before { 4133 | content: "\f03b"; } 4134 | 4135 | .fa-dedent::before { 4136 | content: "\f03b"; } 4137 | 4138 | .fa-p::before { 4139 | content: "\50"; } 4140 | 4141 | .fa-pager::before { 4142 | content: "\f815"; } 4143 | 4144 | .fa-paint-roller::before { 4145 | content: "\f5aa"; } 4146 | 4147 | .fa-paintbrush::before { 4148 | content: "\f1fc"; } 4149 | 4150 | .fa-paint-brush::before { 4151 | content: "\f1fc"; } 4152 | 4153 | .fa-palette::before { 4154 | content: "\f53f"; } 4155 | 4156 | .fa-pallet::before { 4157 | content: "\f482"; } 4158 | 4159 | .fa-panorama::before { 4160 | content: "\e209"; } 4161 | 4162 | .fa-paper-plane::before { 4163 | content: "\f1d8"; } 4164 | 4165 | .fa-paperclip::before { 4166 | content: "\f0c6"; } 4167 | 4168 | .fa-parachute-box::before { 4169 | content: "\f4cd"; } 4170 | 4171 | .fa-paragraph::before { 4172 | content: "\f1dd"; } 4173 | 4174 | .fa-passport::before { 4175 | content: "\f5ab"; } 4176 | 4177 | .fa-paste::before { 4178 | content: "\f0ea"; } 4179 | 4180 | .fa-file-clipboard::before { 4181 | content: "\f0ea"; } 4182 | 4183 | .fa-pause::before { 4184 | content: "\f04c"; } 4185 | 4186 | .fa-paw::before { 4187 | content: "\f1b0"; } 4188 | 4189 | .fa-peace::before { 4190 | content: "\f67c"; } 4191 | 4192 | .fa-pen::before { 4193 | content: "\f304"; } 4194 | 4195 | .fa-pen-clip::before { 4196 | content: "\f305"; } 4197 | 4198 | .fa-pen-alt::before { 4199 | content: "\f305"; } 4200 | 4201 | .fa-pen-fancy::before { 4202 | content: "\f5ac"; } 4203 | 4204 | .fa-pen-nib::before { 4205 | content: "\f5ad"; } 4206 | 4207 | .fa-pen-ruler::before { 4208 | content: "\f5ae"; } 4209 | 4210 | .fa-pencil-ruler::before { 4211 | content: "\f5ae"; } 4212 | 4213 | .fa-pen-to-square::before { 4214 | content: "\f044"; } 4215 | 4216 | .fa-edit::before { 4217 | content: "\f044"; } 4218 | 4219 | .fa-pencil::before { 4220 | content: "\f303"; } 4221 | 4222 | .fa-pencil-alt::before { 4223 | content: "\f303"; } 4224 | 4225 | .fa-people-arrows-left-right::before { 4226 | content: "\e068"; } 4227 | 4228 | .fa-people-arrows::before { 4229 | content: "\e068"; } 4230 | 4231 | .fa-people-carry-box::before { 4232 | content: "\f4ce"; } 4233 | 4234 | .fa-people-carry::before { 4235 | content: "\f4ce"; } 4236 | 4237 | .fa-people-group::before { 4238 | content: "\e533"; } 4239 | 4240 | .fa-people-line::before { 4241 | content: "\e534"; } 4242 | 4243 | .fa-people-pulling::before { 4244 | content: "\e535"; } 4245 | 4246 | .fa-people-robbery::before { 4247 | content: "\e536"; } 4248 | 4249 | .fa-people-roof::before { 4250 | content: "\e537"; } 4251 | 4252 | .fa-pepper-hot::before { 4253 | content: "\f816"; } 4254 | 4255 | .fa-percent::before { 4256 | content: "\25"; } 4257 | 4258 | .fa-percentage::before { 4259 | content: "\25"; } 4260 | 4261 | .fa-person::before { 4262 | content: "\f183"; } 4263 | 4264 | .fa-male::before { 4265 | content: "\f183"; } 4266 | 4267 | .fa-person-arrow-down-to-line::before { 4268 | content: "\e538"; } 4269 | 4270 | .fa-person-arrow-up-from-line::before { 4271 | content: "\e539"; } 4272 | 4273 | .fa-person-biking::before { 4274 | content: "\f84a"; } 4275 | 4276 | .fa-biking::before { 4277 | content: "\f84a"; } 4278 | 4279 | .fa-person-booth::before { 4280 | content: "\f756"; } 4281 | 4282 | .fa-person-breastfeeding::before { 4283 | content: "\e53a"; } 4284 | 4285 | .fa-person-burst::before { 4286 | content: "\e53b"; } 4287 | 4288 | .fa-person-cane::before { 4289 | content: "\e53c"; } 4290 | 4291 | .fa-person-chalkboard::before { 4292 | content: "\e53d"; } 4293 | 4294 | .fa-person-circle-check::before { 4295 | content: "\e53e"; } 4296 | 4297 | .fa-person-circle-exclamation::before { 4298 | content: "\e53f"; } 4299 | 4300 | .fa-person-circle-minus::before { 4301 | content: "\e540"; } 4302 | 4303 | .fa-person-circle-plus::before { 4304 | content: "\e541"; } 4305 | 4306 | .fa-person-circle-question::before { 4307 | content: "\e542"; } 4308 | 4309 | .fa-person-circle-xmark::before { 4310 | content: "\e543"; } 4311 | 4312 | .fa-person-digging::before { 4313 | content: "\f85e"; } 4314 | 4315 | .fa-digging::before { 4316 | content: "\f85e"; } 4317 | 4318 | .fa-person-dots-from-line::before { 4319 | content: "\f470"; } 4320 | 4321 | .fa-diagnoses::before { 4322 | content: "\f470"; } 4323 | 4324 | .fa-person-dress::before { 4325 | content: "\f182"; } 4326 | 4327 | .fa-female::before { 4328 | content: "\f182"; } 4329 | 4330 | .fa-person-dress-burst::before { 4331 | content: "\e544"; } 4332 | 4333 | .fa-person-drowning::before { 4334 | content: "\e545"; } 4335 | 4336 | .fa-person-falling::before { 4337 | content: "\e546"; } 4338 | 4339 | .fa-person-falling-burst::before { 4340 | content: "\e547"; } 4341 | 4342 | .fa-person-half-dress::before { 4343 | content: "\e548"; } 4344 | 4345 | .fa-person-harassing::before { 4346 | content: "\e549"; } 4347 | 4348 | .fa-person-hiking::before { 4349 | content: "\f6ec"; } 4350 | 4351 | .fa-hiking::before { 4352 | content: "\f6ec"; } 4353 | 4354 | .fa-person-military-pointing::before { 4355 | content: "\e54a"; } 4356 | 4357 | .fa-person-military-rifle::before { 4358 | content: "\e54b"; } 4359 | 4360 | .fa-person-military-to-person::before { 4361 | content: "\e54c"; } 4362 | 4363 | .fa-person-praying::before { 4364 | content: "\f683"; } 4365 | 4366 | .fa-pray::before { 4367 | content: "\f683"; } 4368 | 4369 | .fa-person-pregnant::before { 4370 | content: "\e31e"; } 4371 | 4372 | .fa-person-rays::before { 4373 | content: "\e54d"; } 4374 | 4375 | .fa-person-rifle::before { 4376 | content: "\e54e"; } 4377 | 4378 | .fa-person-running::before { 4379 | content: "\f70c"; } 4380 | 4381 | .fa-running::before { 4382 | content: "\f70c"; } 4383 | 4384 | .fa-person-shelter::before { 4385 | content: "\e54f"; } 4386 | 4387 | .fa-person-skating::before { 4388 | content: "\f7c5"; } 4389 | 4390 | .fa-skating::before { 4391 | content: "\f7c5"; } 4392 | 4393 | .fa-person-skiing::before { 4394 | content: "\f7c9"; } 4395 | 4396 | .fa-skiing::before { 4397 | content: "\f7c9"; } 4398 | 4399 | .fa-person-skiing-nordic::before { 4400 | content: "\f7ca"; } 4401 | 4402 | .fa-skiing-nordic::before { 4403 | content: "\f7ca"; } 4404 | 4405 | .fa-person-snowboarding::before { 4406 | content: "\f7ce"; } 4407 | 4408 | .fa-snowboarding::before { 4409 | content: "\f7ce"; } 4410 | 4411 | .fa-person-swimming::before { 4412 | content: "\f5c4"; } 4413 | 4414 | .fa-swimmer::before { 4415 | content: "\f5c4"; } 4416 | 4417 | .fa-person-through-window::before { 4418 | content: "\e433"; } 4419 | 4420 | .fa-person-walking::before { 4421 | content: "\f554"; } 4422 | 4423 | .fa-walking::before { 4424 | content: "\f554"; } 4425 | 4426 | .fa-person-walking-arrow-loop-left::before { 4427 | content: "\e551"; } 4428 | 4429 | .fa-person-walking-arrow-right::before { 4430 | content: "\e552"; } 4431 | 4432 | .fa-person-walking-dashed-line-arrow-right::before { 4433 | content: "\e553"; } 4434 | 4435 | .fa-person-walking-luggage::before { 4436 | content: "\e554"; } 4437 | 4438 | .fa-person-walking-with-cane::before { 4439 | content: "\f29d"; } 4440 | 4441 | .fa-blind::before { 4442 | content: "\f29d"; } 4443 | 4444 | .fa-peseta-sign::before { 4445 | content: "\e221"; } 4446 | 4447 | .fa-peso-sign::before { 4448 | content: "\e222"; } 4449 | 4450 | .fa-phone::before { 4451 | content: "\f095"; } 4452 | 4453 | .fa-phone-flip::before { 4454 | content: "\f879"; } 4455 | 4456 | .fa-phone-alt::before { 4457 | content: "\f879"; } 4458 | 4459 | .fa-phone-slash::before { 4460 | content: "\f3dd"; } 4461 | 4462 | .fa-phone-volume::before { 4463 | content: "\f2a0"; } 4464 | 4465 | .fa-volume-control-phone::before { 4466 | content: "\f2a0"; } 4467 | 4468 | .fa-photo-film::before { 4469 | content: "\f87c"; } 4470 | 4471 | .fa-photo-video::before { 4472 | content: "\f87c"; } 4473 | 4474 | .fa-piggy-bank::before { 4475 | content: "\f4d3"; } 4476 | 4477 | .fa-pills::before { 4478 | content: "\f484"; } 4479 | 4480 | .fa-pizza-slice::before { 4481 | content: "\f818"; } 4482 | 4483 | .fa-place-of-worship::before { 4484 | content: "\f67f"; } 4485 | 4486 | .fa-plane::before { 4487 | content: "\f072"; } 4488 | 4489 | .fa-plane-arrival::before { 4490 | content: "\f5af"; } 4491 | 4492 | .fa-plane-circle-check::before { 4493 | content: "\e555"; } 4494 | 4495 | .fa-plane-circle-exclamation::before { 4496 | content: "\e556"; } 4497 | 4498 | .fa-plane-circle-xmark::before { 4499 | content: "\e557"; } 4500 | 4501 | .fa-plane-departure::before { 4502 | content: "\f5b0"; } 4503 | 4504 | .fa-plane-lock::before { 4505 | content: "\e558"; } 4506 | 4507 | .fa-plane-slash::before { 4508 | content: "\e069"; } 4509 | 4510 | .fa-plane-up::before { 4511 | content: "\e22d"; } 4512 | 4513 | .fa-plant-wilt::before { 4514 | content: "\e43b"; } 4515 | 4516 | .fa-plate-wheat::before { 4517 | content: "\e55a"; } 4518 | 4519 | .fa-play::before { 4520 | content: "\f04b"; } 4521 | 4522 | .fa-plug::before { 4523 | content: "\f1e6"; } 4524 | 4525 | .fa-plug-circle-bolt::before { 4526 | content: "\e55b"; } 4527 | 4528 | .fa-plug-circle-check::before { 4529 | content: "\e55c"; } 4530 | 4531 | .fa-plug-circle-exclamation::before { 4532 | content: "\e55d"; } 4533 | 4534 | .fa-plug-circle-minus::before { 4535 | content: "\e55e"; } 4536 | 4537 | .fa-plug-circle-plus::before { 4538 | content: "\e55f"; } 4539 | 4540 | .fa-plug-circle-xmark::before { 4541 | content: "\e560"; } 4542 | 4543 | .fa-plus::before { 4544 | content: "\2b"; } 4545 | 4546 | .fa-add::before { 4547 | content: "\2b"; } 4548 | 4549 | .fa-plus-minus::before { 4550 | content: "\e43c"; } 4551 | 4552 | .fa-podcast::before { 4553 | content: "\f2ce"; } 4554 | 4555 | .fa-poo::before { 4556 | content: "\f2fe"; } 4557 | 4558 | .fa-poo-storm::before { 4559 | content: "\f75a"; } 4560 | 4561 | .fa-poo-bolt::before { 4562 | content: "\f75a"; } 4563 | 4564 | .fa-poop::before { 4565 | content: "\f619"; } 4566 | 4567 | .fa-power-off::before { 4568 | content: "\f011"; } 4569 | 4570 | .fa-prescription::before { 4571 | content: "\f5b1"; } 4572 | 4573 | .fa-prescription-bottle::before { 4574 | content: "\f485"; } 4575 | 4576 | .fa-prescription-bottle-medical::before { 4577 | content: "\f486"; } 4578 | 4579 | .fa-prescription-bottle-alt::before { 4580 | content: "\f486"; } 4581 | 4582 | .fa-print::before { 4583 | content: "\f02f"; } 4584 | 4585 | .fa-pump-medical::before { 4586 | content: "\e06a"; } 4587 | 4588 | .fa-pump-soap::before { 4589 | content: "\e06b"; } 4590 | 4591 | .fa-puzzle-piece::before { 4592 | content: "\f12e"; } 4593 | 4594 | .fa-q::before { 4595 | content: "\51"; } 4596 | 4597 | .fa-qrcode::before { 4598 | content: "\f029"; } 4599 | 4600 | .fa-question::before { 4601 | content: "\3f"; } 4602 | 4603 | .fa-quote-left::before { 4604 | content: "\f10d"; } 4605 | 4606 | .fa-quote-left-alt::before { 4607 | content: "\f10d"; } 4608 | 4609 | .fa-quote-right::before { 4610 | content: "\f10e"; } 4611 | 4612 | .fa-quote-right-alt::before { 4613 | content: "\f10e"; } 4614 | 4615 | .fa-r::before { 4616 | content: "\52"; } 4617 | 4618 | .fa-radiation::before { 4619 | content: "\f7b9"; } 4620 | 4621 | .fa-radio::before { 4622 | content: "\f8d7"; } 4623 | 4624 | .fa-rainbow::before { 4625 | content: "\f75b"; } 4626 | 4627 | .fa-ranking-star::before { 4628 | content: "\e561"; } 4629 | 4630 | .fa-receipt::before { 4631 | content: "\f543"; } 4632 | 4633 | .fa-record-vinyl::before { 4634 | content: "\f8d9"; } 4635 | 4636 | .fa-rectangle-ad::before { 4637 | content: "\f641"; } 4638 | 4639 | .fa-ad::before { 4640 | content: "\f641"; } 4641 | 4642 | .fa-rectangle-list::before { 4643 | content: "\f022"; } 4644 | 4645 | .fa-list-alt::before { 4646 | content: "\f022"; } 4647 | 4648 | .fa-rectangle-xmark::before { 4649 | content: "\f410"; } 4650 | 4651 | .fa-rectangle-times::before { 4652 | content: "\f410"; } 4653 | 4654 | .fa-times-rectangle::before { 4655 | content: "\f410"; } 4656 | 4657 | .fa-window-close::before { 4658 | content: "\f410"; } 4659 | 4660 | .fa-recycle::before { 4661 | content: "\f1b8"; } 4662 | 4663 | .fa-registered::before { 4664 | content: "\f25d"; } 4665 | 4666 | .fa-repeat::before { 4667 | content: "\f363"; } 4668 | 4669 | .fa-reply::before { 4670 | content: "\f3e5"; } 4671 | 4672 | .fa-mail-reply::before { 4673 | content: "\f3e5"; } 4674 | 4675 | .fa-reply-all::before { 4676 | content: "\f122"; } 4677 | 4678 | .fa-mail-reply-all::before { 4679 | content: "\f122"; } 4680 | 4681 | .fa-republican::before { 4682 | content: "\f75e"; } 4683 | 4684 | .fa-restroom::before { 4685 | content: "\f7bd"; } 4686 | 4687 | .fa-retweet::before { 4688 | content: "\f079"; } 4689 | 4690 | .fa-ribbon::before { 4691 | content: "\f4d6"; } 4692 | 4693 | .fa-right-from-bracket::before { 4694 | content: "\f2f5"; } 4695 | 4696 | .fa-sign-out-alt::before { 4697 | content: "\f2f5"; } 4698 | 4699 | .fa-right-left::before { 4700 | content: "\f362"; } 4701 | 4702 | .fa-exchange-alt::before { 4703 | content: "\f362"; } 4704 | 4705 | .fa-right-long::before { 4706 | content: "\f30b"; } 4707 | 4708 | .fa-long-arrow-alt-right::before { 4709 | content: "\f30b"; } 4710 | 4711 | .fa-right-to-bracket::before { 4712 | content: "\f2f6"; } 4713 | 4714 | .fa-sign-in-alt::before { 4715 | content: "\f2f6"; } 4716 | 4717 | .fa-ring::before { 4718 | content: "\f70b"; } 4719 | 4720 | .fa-road::before { 4721 | content: "\f018"; } 4722 | 4723 | .fa-road-barrier::before { 4724 | content: "\e562"; } 4725 | 4726 | .fa-road-bridge::before { 4727 | content: "\e563"; } 4728 | 4729 | .fa-road-circle-check::before { 4730 | content: "\e564"; } 4731 | 4732 | .fa-road-circle-exclamation::before { 4733 | content: "\e565"; } 4734 | 4735 | .fa-road-circle-xmark::before { 4736 | content: "\e566"; } 4737 | 4738 | .fa-road-lock::before { 4739 | content: "\e567"; } 4740 | 4741 | .fa-road-spikes::before { 4742 | content: "\e568"; } 4743 | 4744 | .fa-robot::before { 4745 | content: "\f544"; } 4746 | 4747 | .fa-rocket::before { 4748 | content: "\f135"; } 4749 | 4750 | .fa-rotate::before { 4751 | content: "\f2f1"; } 4752 | 4753 | .fa-sync-alt::before { 4754 | content: "\f2f1"; } 4755 | 4756 | .fa-rotate-left::before { 4757 | content: "\f2ea"; } 4758 | 4759 | .fa-rotate-back::before { 4760 | content: "\f2ea"; } 4761 | 4762 | .fa-rotate-backward::before { 4763 | content: "\f2ea"; } 4764 | 4765 | .fa-undo-alt::before { 4766 | content: "\f2ea"; } 4767 | 4768 | .fa-rotate-right::before { 4769 | content: "\f2f9"; } 4770 | 4771 | .fa-redo-alt::before { 4772 | content: "\f2f9"; } 4773 | 4774 | .fa-rotate-forward::before { 4775 | content: "\f2f9"; } 4776 | 4777 | .fa-route::before { 4778 | content: "\f4d7"; } 4779 | 4780 | .fa-rss::before { 4781 | content: "\f09e"; } 4782 | 4783 | .fa-feed::before { 4784 | content: "\f09e"; } 4785 | 4786 | .fa-ruble-sign::before { 4787 | content: "\f158"; } 4788 | 4789 | .fa-rouble::before { 4790 | content: "\f158"; } 4791 | 4792 | .fa-rub::before { 4793 | content: "\f158"; } 4794 | 4795 | .fa-ruble::before { 4796 | content: "\f158"; } 4797 | 4798 | .fa-rug::before { 4799 | content: "\e569"; } 4800 | 4801 | .fa-ruler::before { 4802 | content: "\f545"; } 4803 | 4804 | .fa-ruler-combined::before { 4805 | content: "\f546"; } 4806 | 4807 | .fa-ruler-horizontal::before { 4808 | content: "\f547"; } 4809 | 4810 | .fa-ruler-vertical::before { 4811 | content: "\f548"; } 4812 | 4813 | .fa-rupee-sign::before { 4814 | content: "\f156"; } 4815 | 4816 | .fa-rupee::before { 4817 | content: "\f156"; } 4818 | 4819 | .fa-rupiah-sign::before { 4820 | content: "\e23d"; } 4821 | 4822 | .fa-s::before { 4823 | content: "\53"; } 4824 | 4825 | .fa-sack-dollar::before { 4826 | content: "\f81d"; } 4827 | 4828 | .fa-sack-xmark::before { 4829 | content: "\e56a"; } 4830 | 4831 | .fa-sailboat::before { 4832 | content: "\e445"; } 4833 | 4834 | .fa-satellite::before { 4835 | content: "\f7bf"; } 4836 | 4837 | .fa-satellite-dish::before { 4838 | content: "\f7c0"; } 4839 | 4840 | .fa-scale-balanced::before { 4841 | content: "\f24e"; } 4842 | 4843 | .fa-balance-scale::before { 4844 | content: "\f24e"; } 4845 | 4846 | .fa-scale-unbalanced::before { 4847 | content: "\f515"; } 4848 | 4849 | .fa-balance-scale-left::before { 4850 | content: "\f515"; } 4851 | 4852 | .fa-scale-unbalanced-flip::before { 4853 | content: "\f516"; } 4854 | 4855 | .fa-balance-scale-right::before { 4856 | content: "\f516"; } 4857 | 4858 | .fa-school::before { 4859 | content: "\f549"; } 4860 | 4861 | .fa-school-circle-check::before { 4862 | content: "\e56b"; } 4863 | 4864 | .fa-school-circle-exclamation::before { 4865 | content: "\e56c"; } 4866 | 4867 | .fa-school-circle-xmark::before { 4868 | content: "\e56d"; } 4869 | 4870 | .fa-school-flag::before { 4871 | content: "\e56e"; } 4872 | 4873 | .fa-school-lock::before { 4874 | content: "\e56f"; } 4875 | 4876 | .fa-scissors::before { 4877 | content: "\f0c4"; } 4878 | 4879 | .fa-cut::before { 4880 | content: "\f0c4"; } 4881 | 4882 | .fa-screwdriver::before { 4883 | content: "\f54a"; } 4884 | 4885 | .fa-screwdriver-wrench::before { 4886 | content: "\f7d9"; } 4887 | 4888 | .fa-tools::before { 4889 | content: "\f7d9"; } 4890 | 4891 | .fa-scroll::before { 4892 | content: "\f70e"; } 4893 | 4894 | .fa-scroll-torah::before { 4895 | content: "\f6a0"; } 4896 | 4897 | .fa-torah::before { 4898 | content: "\f6a0"; } 4899 | 4900 | .fa-sd-card::before { 4901 | content: "\f7c2"; } 4902 | 4903 | .fa-section::before { 4904 | content: "\e447"; } 4905 | 4906 | .fa-seedling::before { 4907 | content: "\f4d8"; } 4908 | 4909 | .fa-sprout::before { 4910 | content: "\f4d8"; } 4911 | 4912 | .fa-server::before { 4913 | content: "\f233"; } 4914 | 4915 | .fa-shapes::before { 4916 | content: "\f61f"; } 4917 | 4918 | .fa-triangle-circle-square::before { 4919 | content: "\f61f"; } 4920 | 4921 | .fa-share::before { 4922 | content: "\f064"; } 4923 | 4924 | .fa-arrow-turn-right::before { 4925 | content: "\f064"; } 4926 | 4927 | .fa-mail-forward::before { 4928 | content: "\f064"; } 4929 | 4930 | .fa-share-from-square::before { 4931 | content: "\f14d"; } 4932 | 4933 | .fa-share-square::before { 4934 | content: "\f14d"; } 4935 | 4936 | .fa-share-nodes::before { 4937 | content: "\f1e0"; } 4938 | 4939 | .fa-share-alt::before { 4940 | content: "\f1e0"; } 4941 | 4942 | .fa-sheet-plastic::before { 4943 | content: "\e571"; } 4944 | 4945 | .fa-shekel-sign::before { 4946 | content: "\f20b"; } 4947 | 4948 | .fa-ils::before { 4949 | content: "\f20b"; } 4950 | 4951 | .fa-shekel::before { 4952 | content: "\f20b"; } 4953 | 4954 | .fa-sheqel::before { 4955 | content: "\f20b"; } 4956 | 4957 | .fa-sheqel-sign::before { 4958 | content: "\f20b"; } 4959 | 4960 | .fa-shield::before { 4961 | content: "\f132"; } 4962 | 4963 | .fa-shield-blank::before { 4964 | content: "\f132"; } 4965 | 4966 | .fa-shield-cat::before { 4967 | content: "\e572"; } 4968 | 4969 | .fa-shield-dog::before { 4970 | content: "\e573"; } 4971 | 4972 | .fa-shield-halved::before { 4973 | content: "\f3ed"; } 4974 | 4975 | .fa-shield-alt::before { 4976 | content: "\f3ed"; } 4977 | 4978 | .fa-shield-heart::before { 4979 | content: "\e574"; } 4980 | 4981 | .fa-shield-virus::before { 4982 | content: "\e06c"; } 4983 | 4984 | .fa-ship::before { 4985 | content: "\f21a"; } 4986 | 4987 | .fa-shirt::before { 4988 | content: "\f553"; } 4989 | 4990 | .fa-t-shirt::before { 4991 | content: "\f553"; } 4992 | 4993 | .fa-tshirt::before { 4994 | content: "\f553"; } 4995 | 4996 | .fa-shoe-prints::before { 4997 | content: "\f54b"; } 4998 | 4999 | .fa-shop::before { 5000 | content: "\f54f"; } 5001 | 5002 | .fa-store-alt::before { 5003 | content: "\f54f"; } 5004 | 5005 | .fa-shop-lock::before { 5006 | content: "\e4a5"; } 5007 | 5008 | .fa-shop-slash::before { 5009 | content: "\e070"; } 5010 | 5011 | .fa-store-alt-slash::before { 5012 | content: "\e070"; } 5013 | 5014 | .fa-shower::before { 5015 | content: "\f2cc"; } 5016 | 5017 | .fa-shrimp::before { 5018 | content: "\e448"; } 5019 | 5020 | .fa-shuffle::before { 5021 | content: "\f074"; } 5022 | 5023 | .fa-random::before { 5024 | content: "\f074"; } 5025 | 5026 | .fa-shuttle-space::before { 5027 | content: "\f197"; } 5028 | 5029 | .fa-space-shuttle::before { 5030 | content: "\f197"; } 5031 | 5032 | .fa-sign-hanging::before { 5033 | content: "\f4d9"; } 5034 | 5035 | .fa-sign::before { 5036 | content: "\f4d9"; } 5037 | 5038 | .fa-signal::before { 5039 | content: "\f012"; } 5040 | 5041 | .fa-signal-5::before { 5042 | content: "\f012"; } 5043 | 5044 | .fa-signal-perfect::before { 5045 | content: "\f012"; } 5046 | 5047 | .fa-signature::before { 5048 | content: "\f5b7"; } 5049 | 5050 | .fa-signs-post::before { 5051 | content: "\f277"; } 5052 | 5053 | .fa-map-signs::before { 5054 | content: "\f277"; } 5055 | 5056 | .fa-sim-card::before { 5057 | content: "\f7c4"; } 5058 | 5059 | .fa-sink::before { 5060 | content: "\e06d"; } 5061 | 5062 | .fa-sitemap::before { 5063 | content: "\f0e8"; } 5064 | 5065 | .fa-skull::before { 5066 | content: "\f54c"; } 5067 | 5068 | .fa-skull-crossbones::before { 5069 | content: "\f714"; } 5070 | 5071 | .fa-slash::before { 5072 | content: "\f715"; } 5073 | 5074 | .fa-sleigh::before { 5075 | content: "\f7cc"; } 5076 | 5077 | .fa-sliders::before { 5078 | content: "\f1de"; } 5079 | 5080 | .fa-sliders-h::before { 5081 | content: "\f1de"; } 5082 | 5083 | .fa-smog::before { 5084 | content: "\f75f"; } 5085 | 5086 | .fa-smoking::before { 5087 | content: "\f48d"; } 5088 | 5089 | .fa-snowflake::before { 5090 | content: "\f2dc"; } 5091 | 5092 | .fa-snowman::before { 5093 | content: "\f7d0"; } 5094 | 5095 | .fa-snowplow::before { 5096 | content: "\f7d2"; } 5097 | 5098 | .fa-soap::before { 5099 | content: "\e06e"; } 5100 | 5101 | .fa-socks::before { 5102 | content: "\f696"; } 5103 | 5104 | .fa-solar-panel::before { 5105 | content: "\f5ba"; } 5106 | 5107 | .fa-sort::before { 5108 | content: "\f0dc"; } 5109 | 5110 | .fa-unsorted::before { 5111 | content: "\f0dc"; } 5112 | 5113 | .fa-sort-down::before { 5114 | content: "\f0dd"; } 5115 | 5116 | .fa-sort-desc::before { 5117 | content: "\f0dd"; } 5118 | 5119 | .fa-sort-up::before { 5120 | content: "\f0de"; } 5121 | 5122 | .fa-sort-asc::before { 5123 | content: "\f0de"; } 5124 | 5125 | .fa-spa::before { 5126 | content: "\f5bb"; } 5127 | 5128 | .fa-spaghetti-monster-flying::before { 5129 | content: "\f67b"; } 5130 | 5131 | .fa-pastafarianism::before { 5132 | content: "\f67b"; } 5133 | 5134 | .fa-spell-check::before { 5135 | content: "\f891"; } 5136 | 5137 | .fa-spider::before { 5138 | content: "\f717"; } 5139 | 5140 | .fa-spinner::before { 5141 | content: "\f110"; } 5142 | 5143 | .fa-splotch::before { 5144 | content: "\f5bc"; } 5145 | 5146 | .fa-spoon::before { 5147 | content: "\f2e5"; } 5148 | 5149 | .fa-utensil-spoon::before { 5150 | content: "\f2e5"; } 5151 | 5152 | .fa-spray-can::before { 5153 | content: "\f5bd"; } 5154 | 5155 | .fa-spray-can-sparkles::before { 5156 | content: "\f5d0"; } 5157 | 5158 | .fa-air-freshener::before { 5159 | content: "\f5d0"; } 5160 | 5161 | .fa-square::before { 5162 | content: "\f0c8"; } 5163 | 5164 | .fa-square-arrow-up-right::before { 5165 | content: "\f14c"; } 5166 | 5167 | .fa-external-link-square::before { 5168 | content: "\f14c"; } 5169 | 5170 | .fa-square-caret-down::before { 5171 | content: "\f150"; } 5172 | 5173 | .fa-caret-square-down::before { 5174 | content: "\f150"; } 5175 | 5176 | .fa-square-caret-left::before { 5177 | content: "\f191"; } 5178 | 5179 | .fa-caret-square-left::before { 5180 | content: "\f191"; } 5181 | 5182 | .fa-square-caret-right::before { 5183 | content: "\f152"; } 5184 | 5185 | .fa-caret-square-right::before { 5186 | content: "\f152"; } 5187 | 5188 | .fa-square-caret-up::before { 5189 | content: "\f151"; } 5190 | 5191 | .fa-caret-square-up::before { 5192 | content: "\f151"; } 5193 | 5194 | .fa-square-check::before { 5195 | content: "\f14a"; } 5196 | 5197 | .fa-check-square::before { 5198 | content: "\f14a"; } 5199 | 5200 | .fa-square-envelope::before { 5201 | content: "\f199"; } 5202 | 5203 | .fa-envelope-square::before { 5204 | content: "\f199"; } 5205 | 5206 | .fa-square-full::before { 5207 | content: "\f45c"; } 5208 | 5209 | .fa-square-h::before { 5210 | content: "\f0fd"; } 5211 | 5212 | .fa-h-square::before { 5213 | content: "\f0fd"; } 5214 | 5215 | .fa-square-minus::before { 5216 | content: "\f146"; } 5217 | 5218 | .fa-minus-square::before { 5219 | content: "\f146"; } 5220 | 5221 | .fa-square-nfi::before { 5222 | content: "\e576"; } 5223 | 5224 | .fa-square-parking::before { 5225 | content: "\f540"; } 5226 | 5227 | .fa-parking::before { 5228 | content: "\f540"; } 5229 | 5230 | .fa-square-pen::before { 5231 | content: "\f14b"; } 5232 | 5233 | .fa-pen-square::before { 5234 | content: "\f14b"; } 5235 | 5236 | .fa-pencil-square::before { 5237 | content: "\f14b"; } 5238 | 5239 | .fa-square-person-confined::before { 5240 | content: "\e577"; } 5241 | 5242 | .fa-square-phone::before { 5243 | content: "\f098"; } 5244 | 5245 | .fa-phone-square::before { 5246 | content: "\f098"; } 5247 | 5248 | .fa-square-phone-flip::before { 5249 | content: "\f87b"; } 5250 | 5251 | .fa-phone-square-alt::before { 5252 | content: "\f87b"; } 5253 | 5254 | .fa-square-plus::before { 5255 | content: "\f0fe"; } 5256 | 5257 | .fa-plus-square::before { 5258 | content: "\f0fe"; } 5259 | 5260 | .fa-square-poll-horizontal::before { 5261 | content: "\f682"; } 5262 | 5263 | .fa-poll-h::before { 5264 | content: "\f682"; } 5265 | 5266 | .fa-square-poll-vertical::before { 5267 | content: "\f681"; } 5268 | 5269 | .fa-poll::before { 5270 | content: "\f681"; } 5271 | 5272 | .fa-square-root-variable::before { 5273 | content: "\f698"; } 5274 | 5275 | .fa-square-root-alt::before { 5276 | content: "\f698"; } 5277 | 5278 | .fa-square-rss::before { 5279 | content: "\f143"; } 5280 | 5281 | .fa-rss-square::before { 5282 | content: "\f143"; } 5283 | 5284 | .fa-square-share-nodes::before { 5285 | content: "\f1e1"; } 5286 | 5287 | .fa-share-alt-square::before { 5288 | content: "\f1e1"; } 5289 | 5290 | .fa-square-up-right::before { 5291 | content: "\f360"; } 5292 | 5293 | .fa-external-link-square-alt::before { 5294 | content: "\f360"; } 5295 | 5296 | .fa-square-virus::before { 5297 | content: "\e578"; } 5298 | 5299 | .fa-square-xmark::before { 5300 | content: "\f2d3"; } 5301 | 5302 | .fa-times-square::before { 5303 | content: "\f2d3"; } 5304 | 5305 | .fa-xmark-square::before { 5306 | content: "\f2d3"; } 5307 | 5308 | .fa-staff-aesculapius::before { 5309 | content: "\e579"; } 5310 | 5311 | .fa-rod-asclepius::before { 5312 | content: "\e579"; } 5313 | 5314 | .fa-rod-snake::before { 5315 | content: "\e579"; } 5316 | 5317 | .fa-staff-snake::before { 5318 | content: "\e579"; } 5319 | 5320 | .fa-stairs::before { 5321 | content: "\e289"; } 5322 | 5323 | .fa-stamp::before { 5324 | content: "\f5bf"; } 5325 | 5326 | .fa-star::before { 5327 | content: "\f005"; } 5328 | 5329 | .fa-star-and-crescent::before { 5330 | content: "\f699"; } 5331 | 5332 | .fa-star-half::before { 5333 | content: "\f089"; } 5334 | 5335 | .fa-star-half-stroke::before { 5336 | content: "\f5c0"; } 5337 | 5338 | .fa-star-half-alt::before { 5339 | content: "\f5c0"; } 5340 | 5341 | .fa-star-of-david::before { 5342 | content: "\f69a"; } 5343 | 5344 | .fa-star-of-life::before { 5345 | content: "\f621"; } 5346 | 5347 | .fa-sterling-sign::before { 5348 | content: "\f154"; } 5349 | 5350 | .fa-gbp::before { 5351 | content: "\f154"; } 5352 | 5353 | .fa-pound-sign::before { 5354 | content: "\f154"; } 5355 | 5356 | .fa-stethoscope::before { 5357 | content: "\f0f1"; } 5358 | 5359 | .fa-stop::before { 5360 | content: "\f04d"; } 5361 | 5362 | .fa-stopwatch::before { 5363 | content: "\f2f2"; } 5364 | 5365 | .fa-stopwatch-20::before { 5366 | content: "\e06f"; } 5367 | 5368 | .fa-store::before { 5369 | content: "\f54e"; } 5370 | 5371 | .fa-store-slash::before { 5372 | content: "\e071"; } 5373 | 5374 | .fa-street-view::before { 5375 | content: "\f21d"; } 5376 | 5377 | .fa-strikethrough::before { 5378 | content: "\f0cc"; } 5379 | 5380 | .fa-stroopwafel::before { 5381 | content: "\f551"; } 5382 | 5383 | .fa-subscript::before { 5384 | content: "\f12c"; } 5385 | 5386 | .fa-suitcase::before { 5387 | content: "\f0f2"; } 5388 | 5389 | .fa-suitcase-medical::before { 5390 | content: "\f0fa"; } 5391 | 5392 | .fa-medkit::before { 5393 | content: "\f0fa"; } 5394 | 5395 | .fa-suitcase-rolling::before { 5396 | content: "\f5c1"; } 5397 | 5398 | .fa-sun::before { 5399 | content: "\f185"; } 5400 | 5401 | .fa-sun-plant-wilt::before { 5402 | content: "\e57a"; } 5403 | 5404 | .fa-superscript::before { 5405 | content: "\f12b"; } 5406 | 5407 | .fa-swatchbook::before { 5408 | content: "\f5c3"; } 5409 | 5410 | .fa-synagogue::before { 5411 | content: "\f69b"; } 5412 | 5413 | .fa-syringe::before { 5414 | content: "\f48e"; } 5415 | 5416 | .fa-t::before { 5417 | content: "\54"; } 5418 | 5419 | .fa-table::before { 5420 | content: "\f0ce"; } 5421 | 5422 | .fa-table-cells::before { 5423 | content: "\f00a"; } 5424 | 5425 | .fa-th::before { 5426 | content: "\f00a"; } 5427 | 5428 | .fa-table-cells-large::before { 5429 | content: "\f009"; } 5430 | 5431 | .fa-th-large::before { 5432 | content: "\f009"; } 5433 | 5434 | .fa-table-columns::before { 5435 | content: "\f0db"; } 5436 | 5437 | .fa-columns::before { 5438 | content: "\f0db"; } 5439 | 5440 | .fa-table-list::before { 5441 | content: "\f00b"; } 5442 | 5443 | .fa-th-list::before { 5444 | content: "\f00b"; } 5445 | 5446 | .fa-table-tennis-paddle-ball::before { 5447 | content: "\f45d"; } 5448 | 5449 | .fa-ping-pong-paddle-ball::before { 5450 | content: "\f45d"; } 5451 | 5452 | .fa-table-tennis::before { 5453 | content: "\f45d"; } 5454 | 5455 | .fa-tablet::before { 5456 | content: "\f3fb"; } 5457 | 5458 | .fa-tablet-android::before { 5459 | content: "\f3fb"; } 5460 | 5461 | .fa-tablet-button::before { 5462 | content: "\f10a"; } 5463 | 5464 | .fa-tablet-screen-button::before { 5465 | content: "\f3fa"; } 5466 | 5467 | .fa-tablet-alt::before { 5468 | content: "\f3fa"; } 5469 | 5470 | .fa-tablets::before { 5471 | content: "\f490"; } 5472 | 5473 | .fa-tachograph-digital::before { 5474 | content: "\f566"; } 5475 | 5476 | .fa-digital-tachograph::before { 5477 | content: "\f566"; } 5478 | 5479 | .fa-tag::before { 5480 | content: "\f02b"; } 5481 | 5482 | .fa-tags::before { 5483 | content: "\f02c"; } 5484 | 5485 | .fa-tape::before { 5486 | content: "\f4db"; } 5487 | 5488 | .fa-tarp::before { 5489 | content: "\e57b"; } 5490 | 5491 | .fa-tarp-droplet::before { 5492 | content: "\e57c"; } 5493 | 5494 | .fa-taxi::before { 5495 | content: "\f1ba"; } 5496 | 5497 | .fa-cab::before { 5498 | content: "\f1ba"; } 5499 | 5500 | .fa-teeth::before { 5501 | content: "\f62e"; } 5502 | 5503 | .fa-teeth-open::before { 5504 | content: "\f62f"; } 5505 | 5506 | .fa-temperature-arrow-down::before { 5507 | content: "\e03f"; } 5508 | 5509 | .fa-temperature-down::before { 5510 | content: "\e03f"; } 5511 | 5512 | .fa-temperature-arrow-up::before { 5513 | content: "\e040"; } 5514 | 5515 | .fa-temperature-up::before { 5516 | content: "\e040"; } 5517 | 5518 | .fa-temperature-empty::before { 5519 | content: "\f2cb"; } 5520 | 5521 | .fa-temperature-0::before { 5522 | content: "\f2cb"; } 5523 | 5524 | .fa-thermometer-0::before { 5525 | content: "\f2cb"; } 5526 | 5527 | .fa-thermometer-empty::before { 5528 | content: "\f2cb"; } 5529 | 5530 | .fa-temperature-full::before { 5531 | content: "\f2c7"; } 5532 | 5533 | .fa-temperature-4::before { 5534 | content: "\f2c7"; } 5535 | 5536 | .fa-thermometer-4::before { 5537 | content: "\f2c7"; } 5538 | 5539 | .fa-thermometer-full::before { 5540 | content: "\f2c7"; } 5541 | 5542 | .fa-temperature-half::before { 5543 | content: "\f2c9"; } 5544 | 5545 | .fa-temperature-2::before { 5546 | content: "\f2c9"; } 5547 | 5548 | .fa-thermometer-2::before { 5549 | content: "\f2c9"; } 5550 | 5551 | .fa-thermometer-half::before { 5552 | content: "\f2c9"; } 5553 | 5554 | .fa-temperature-high::before { 5555 | content: "\f769"; } 5556 | 5557 | .fa-temperature-low::before { 5558 | content: "\f76b"; } 5559 | 5560 | .fa-temperature-quarter::before { 5561 | content: "\f2ca"; } 5562 | 5563 | .fa-temperature-1::before { 5564 | content: "\f2ca"; } 5565 | 5566 | .fa-thermometer-1::before { 5567 | content: "\f2ca"; } 5568 | 5569 | .fa-thermometer-quarter::before { 5570 | content: "\f2ca"; } 5571 | 5572 | .fa-temperature-three-quarters::before { 5573 | content: "\f2c8"; } 5574 | 5575 | .fa-temperature-3::before { 5576 | content: "\f2c8"; } 5577 | 5578 | .fa-thermometer-3::before { 5579 | content: "\f2c8"; } 5580 | 5581 | .fa-thermometer-three-quarters::before { 5582 | content: "\f2c8"; } 5583 | 5584 | .fa-tenge-sign::before { 5585 | content: "\f7d7"; } 5586 | 5587 | .fa-tenge::before { 5588 | content: "\f7d7"; } 5589 | 5590 | .fa-tent::before { 5591 | content: "\e57d"; } 5592 | 5593 | .fa-tent-arrow-down-to-line::before { 5594 | content: "\e57e"; } 5595 | 5596 | .fa-tent-arrow-left-right::before { 5597 | content: "\e57f"; } 5598 | 5599 | .fa-tent-arrow-turn-left::before { 5600 | content: "\e580"; } 5601 | 5602 | .fa-tent-arrows-down::before { 5603 | content: "\e581"; } 5604 | 5605 | .fa-tents::before { 5606 | content: "\e582"; } 5607 | 5608 | .fa-terminal::before { 5609 | content: "\f120"; } 5610 | 5611 | .fa-text-height::before { 5612 | content: "\f034"; } 5613 | 5614 | .fa-text-slash::before { 5615 | content: "\f87d"; } 5616 | 5617 | .fa-remove-format::before { 5618 | content: "\f87d"; } 5619 | 5620 | .fa-text-width::before { 5621 | content: "\f035"; } 5622 | 5623 | .fa-thermometer::before { 5624 | content: "\f491"; } 5625 | 5626 | .fa-thumbs-down::before { 5627 | content: "\f165"; } 5628 | 5629 | .fa-thumbs-up::before { 5630 | content: "\f164"; } 5631 | 5632 | .fa-thumbtack::before { 5633 | content: "\f08d"; } 5634 | 5635 | .fa-thumb-tack::before { 5636 | content: "\f08d"; } 5637 | 5638 | .fa-ticket::before { 5639 | content: "\f145"; } 5640 | 5641 | .fa-ticket-simple::before { 5642 | content: "\f3ff"; } 5643 | 5644 | .fa-ticket-alt::before { 5645 | content: "\f3ff"; } 5646 | 5647 | .fa-timeline::before { 5648 | content: "\e29c"; } 5649 | 5650 | .fa-toggle-off::before { 5651 | content: "\f204"; } 5652 | 5653 | .fa-toggle-on::before { 5654 | content: "\f205"; } 5655 | 5656 | .fa-toilet::before { 5657 | content: "\f7d8"; } 5658 | 5659 | .fa-toilet-paper::before { 5660 | content: "\f71e"; } 5661 | 5662 | .fa-toilet-paper-slash::before { 5663 | content: "\e072"; } 5664 | 5665 | .fa-toilet-portable::before { 5666 | content: "\e583"; } 5667 | 5668 | .fa-toilets-portable::before { 5669 | content: "\e584"; } 5670 | 5671 | .fa-toolbox::before { 5672 | content: "\f552"; } 5673 | 5674 | .fa-tooth::before { 5675 | content: "\f5c9"; } 5676 | 5677 | .fa-torii-gate::before { 5678 | content: "\f6a1"; } 5679 | 5680 | .fa-tornado::before { 5681 | content: "\f76f"; } 5682 | 5683 | .fa-tower-broadcast::before { 5684 | content: "\f519"; } 5685 | 5686 | .fa-broadcast-tower::before { 5687 | content: "\f519"; } 5688 | 5689 | .fa-tower-cell::before { 5690 | content: "\e585"; } 5691 | 5692 | .fa-tower-observation::before { 5693 | content: "\e586"; } 5694 | 5695 | .fa-tractor::before { 5696 | content: "\f722"; } 5697 | 5698 | .fa-trademark::before { 5699 | content: "\f25c"; } 5700 | 5701 | .fa-traffic-light::before { 5702 | content: "\f637"; } 5703 | 5704 | .fa-trailer::before { 5705 | content: "\e041"; } 5706 | 5707 | .fa-train::before { 5708 | content: "\f238"; } 5709 | 5710 | .fa-train-subway::before { 5711 | content: "\f239"; } 5712 | 5713 | .fa-subway::before { 5714 | content: "\f239"; } 5715 | 5716 | .fa-train-tram::before { 5717 | content: "\f7da"; } 5718 | 5719 | .fa-tram::before { 5720 | content: "\f7da"; } 5721 | 5722 | .fa-transgender::before { 5723 | content: "\f225"; } 5724 | 5725 | .fa-transgender-alt::before { 5726 | content: "\f225"; } 5727 | 5728 | .fa-trash::before { 5729 | content: "\f1f8"; } 5730 | 5731 | .fa-trash-arrow-up::before { 5732 | content: "\f829"; } 5733 | 5734 | .fa-trash-restore::before { 5735 | content: "\f829"; } 5736 | 5737 | .fa-trash-can::before { 5738 | content: "\f2ed"; } 5739 | 5740 | .fa-trash-alt::before { 5741 | content: "\f2ed"; } 5742 | 5743 | .fa-trash-can-arrow-up::before { 5744 | content: "\f82a"; } 5745 | 5746 | .fa-trash-restore-alt::before { 5747 | content: "\f82a"; } 5748 | 5749 | .fa-tree::before { 5750 | content: "\f1bb"; } 5751 | 5752 | .fa-tree-city::before { 5753 | content: "\e587"; } 5754 | 5755 | .fa-triangle-exclamation::before { 5756 | content: "\f071"; } 5757 | 5758 | .fa-exclamation-triangle::before { 5759 | content: "\f071"; } 5760 | 5761 | .fa-warning::before { 5762 | content: "\f071"; } 5763 | 5764 | .fa-trophy::before { 5765 | content: "\f091"; } 5766 | 5767 | .fa-trowel::before { 5768 | content: "\e589"; } 5769 | 5770 | .fa-trowel-bricks::before { 5771 | content: "\e58a"; } 5772 | 5773 | .fa-truck::before { 5774 | content: "\f0d1"; } 5775 | 5776 | .fa-truck-arrow-right::before { 5777 | content: "\e58b"; } 5778 | 5779 | .fa-truck-droplet::before { 5780 | content: "\e58c"; } 5781 | 5782 | .fa-truck-fast::before { 5783 | content: "\f48b"; } 5784 | 5785 | .fa-shipping-fast::before { 5786 | content: "\f48b"; } 5787 | 5788 | .fa-truck-field::before { 5789 | content: "\e58d"; } 5790 | 5791 | .fa-truck-field-un::before { 5792 | content: "\e58e"; } 5793 | 5794 | .fa-truck-front::before { 5795 | content: "\e2b7"; } 5796 | 5797 | .fa-truck-medical::before { 5798 | content: "\f0f9"; } 5799 | 5800 | .fa-ambulance::before { 5801 | content: "\f0f9"; } 5802 | 5803 | .fa-truck-monster::before { 5804 | content: "\f63b"; } 5805 | 5806 | .fa-truck-moving::before { 5807 | content: "\f4df"; } 5808 | 5809 | .fa-truck-pickup::before { 5810 | content: "\f63c"; } 5811 | 5812 | .fa-truck-plane::before { 5813 | content: "\e58f"; } 5814 | 5815 | .fa-truck-ramp-box::before { 5816 | content: "\f4de"; } 5817 | 5818 | .fa-truck-loading::before { 5819 | content: "\f4de"; } 5820 | 5821 | .fa-tty::before { 5822 | content: "\f1e4"; } 5823 | 5824 | .fa-teletype::before { 5825 | content: "\f1e4"; } 5826 | 5827 | .fa-turkish-lira-sign::before { 5828 | content: "\e2bb"; } 5829 | 5830 | .fa-try::before { 5831 | content: "\e2bb"; } 5832 | 5833 | .fa-turkish-lira::before { 5834 | content: "\e2bb"; } 5835 | 5836 | .fa-turn-down::before { 5837 | content: "\f3be"; } 5838 | 5839 | .fa-level-down-alt::before { 5840 | content: "\f3be"; } 5841 | 5842 | .fa-turn-up::before { 5843 | content: "\f3bf"; } 5844 | 5845 | .fa-level-up-alt::before { 5846 | content: "\f3bf"; } 5847 | 5848 | .fa-tv::before { 5849 | content: "\f26c"; } 5850 | 5851 | .fa-television::before { 5852 | content: "\f26c"; } 5853 | 5854 | .fa-tv-alt::before { 5855 | content: "\f26c"; } 5856 | 5857 | .fa-u::before { 5858 | content: "\55"; } 5859 | 5860 | .fa-umbrella::before { 5861 | content: "\f0e9"; } 5862 | 5863 | .fa-umbrella-beach::before { 5864 | content: "\f5ca"; } 5865 | 5866 | .fa-underline::before { 5867 | content: "\f0cd"; } 5868 | 5869 | .fa-universal-access::before { 5870 | content: "\f29a"; } 5871 | 5872 | .fa-unlock::before { 5873 | content: "\f09c"; } 5874 | 5875 | .fa-unlock-keyhole::before { 5876 | content: "\f13e"; } 5877 | 5878 | .fa-unlock-alt::before { 5879 | content: "\f13e"; } 5880 | 5881 | .fa-up-down::before { 5882 | content: "\f338"; } 5883 | 5884 | .fa-arrows-alt-v::before { 5885 | content: "\f338"; } 5886 | 5887 | .fa-up-down-left-right::before { 5888 | content: "\f0b2"; } 5889 | 5890 | .fa-arrows-alt::before { 5891 | content: "\f0b2"; } 5892 | 5893 | .fa-up-long::before { 5894 | content: "\f30c"; } 5895 | 5896 | .fa-long-arrow-alt-up::before { 5897 | content: "\f30c"; } 5898 | 5899 | .fa-up-right-and-down-left-from-center::before { 5900 | content: "\f424"; } 5901 | 5902 | .fa-expand-alt::before { 5903 | content: "\f424"; } 5904 | 5905 | .fa-up-right-from-square::before { 5906 | content: "\f35d"; } 5907 | 5908 | .fa-external-link-alt::before { 5909 | content: "\f35d"; } 5910 | 5911 | .fa-upload::before { 5912 | content: "\f093"; } 5913 | 5914 | .fa-user::before { 5915 | content: "\f007"; } 5916 | 5917 | .fa-user-astronaut::before { 5918 | content: "\f4fb"; } 5919 | 5920 | .fa-user-check::before { 5921 | content: "\f4fc"; } 5922 | 5923 | .fa-user-clock::before { 5924 | content: "\f4fd"; } 5925 | 5926 | .fa-user-doctor::before { 5927 | content: "\f0f0"; } 5928 | 5929 | .fa-user-md::before { 5930 | content: "\f0f0"; } 5931 | 5932 | .fa-user-gear::before { 5933 | content: "\f4fe"; } 5934 | 5935 | .fa-user-cog::before { 5936 | content: "\f4fe"; } 5937 | 5938 | .fa-user-graduate::before { 5939 | content: "\f501"; } 5940 | 5941 | .fa-user-group::before { 5942 | content: "\f500"; } 5943 | 5944 | .fa-user-friends::before { 5945 | content: "\f500"; } 5946 | 5947 | .fa-user-injured::before { 5948 | content: "\f728"; } 5949 | 5950 | .fa-user-large::before { 5951 | content: "\f406"; } 5952 | 5953 | .fa-user-alt::before { 5954 | content: "\f406"; } 5955 | 5956 | .fa-user-large-slash::before { 5957 | content: "\f4fa"; } 5958 | 5959 | .fa-user-alt-slash::before { 5960 | content: "\f4fa"; } 5961 | 5962 | .fa-user-lock::before { 5963 | content: "\f502"; } 5964 | 5965 | .fa-user-minus::before { 5966 | content: "\f503"; } 5967 | 5968 | .fa-user-ninja::before { 5969 | content: "\f504"; } 5970 | 5971 | .fa-user-nurse::before { 5972 | content: "\f82f"; } 5973 | 5974 | .fa-user-pen::before { 5975 | content: "\f4ff"; } 5976 | 5977 | .fa-user-edit::before { 5978 | content: "\f4ff"; } 5979 | 5980 | .fa-user-plus::before { 5981 | content: "\f234"; } 5982 | 5983 | .fa-user-secret::before { 5984 | content: "\f21b"; } 5985 | 5986 | .fa-user-shield::before { 5987 | content: "\f505"; } 5988 | 5989 | .fa-user-slash::before { 5990 | content: "\f506"; } 5991 | 5992 | .fa-user-tag::before { 5993 | content: "\f507"; } 5994 | 5995 | .fa-user-tie::before { 5996 | content: "\f508"; } 5997 | 5998 | .fa-user-xmark::before { 5999 | content: "\f235"; } 6000 | 6001 | .fa-user-times::before { 6002 | content: "\f235"; } 6003 | 6004 | .fa-users::before { 6005 | content: "\f0c0"; } 6006 | 6007 | .fa-users-between-lines::before { 6008 | content: "\e591"; } 6009 | 6010 | .fa-users-gear::before { 6011 | content: "\f509"; } 6012 | 6013 | .fa-users-cog::before { 6014 | content: "\f509"; } 6015 | 6016 | .fa-users-line::before { 6017 | content: "\e592"; } 6018 | 6019 | .fa-users-rays::before { 6020 | content: "\e593"; } 6021 | 6022 | .fa-users-rectangle::before { 6023 | content: "\e594"; } 6024 | 6025 | .fa-users-slash::before { 6026 | content: "\e073"; } 6027 | 6028 | .fa-users-viewfinder::before { 6029 | content: "\e595"; } 6030 | 6031 | .fa-utensils::before { 6032 | content: "\f2e7"; } 6033 | 6034 | .fa-cutlery::before { 6035 | content: "\f2e7"; } 6036 | 6037 | .fa-v::before { 6038 | content: "\56"; } 6039 | 6040 | .fa-van-shuttle::before { 6041 | content: "\f5b6"; } 6042 | 6043 | .fa-shuttle-van::before { 6044 | content: "\f5b6"; } 6045 | 6046 | .fa-vault::before { 6047 | content: "\e2c5"; } 6048 | 6049 | .fa-vector-square::before { 6050 | content: "\f5cb"; } 6051 | 6052 | .fa-venus::before { 6053 | content: "\f221"; } 6054 | 6055 | .fa-venus-double::before { 6056 | content: "\f226"; } 6057 | 6058 | .fa-venus-mars::before { 6059 | content: "\f228"; } 6060 | 6061 | .fa-vest::before { 6062 | content: "\e085"; } 6063 | 6064 | .fa-vest-patches::before { 6065 | content: "\e086"; } 6066 | 6067 | .fa-vial::before { 6068 | content: "\f492"; } 6069 | 6070 | .fa-vial-circle-check::before { 6071 | content: "\e596"; } 6072 | 6073 | .fa-vial-virus::before { 6074 | content: "\e597"; } 6075 | 6076 | .fa-vials::before { 6077 | content: "\f493"; } 6078 | 6079 | .fa-video::before { 6080 | content: "\f03d"; } 6081 | 6082 | .fa-video-camera::before { 6083 | content: "\f03d"; } 6084 | 6085 | .fa-video-slash::before { 6086 | content: "\f4e2"; } 6087 | 6088 | .fa-vihara::before { 6089 | content: "\f6a7"; } 6090 | 6091 | .fa-virus::before { 6092 | content: "\e074"; } 6093 | 6094 | .fa-virus-covid::before { 6095 | content: "\e4a8"; } 6096 | 6097 | .fa-virus-covid-slash::before { 6098 | content: "\e4a9"; } 6099 | 6100 | .fa-virus-slash::before { 6101 | content: "\e075"; } 6102 | 6103 | .fa-viruses::before { 6104 | content: "\e076"; } 6105 | 6106 | .fa-voicemail::before { 6107 | content: "\f897"; } 6108 | 6109 | .fa-volcano::before { 6110 | content: "\f770"; } 6111 | 6112 | .fa-volleyball::before { 6113 | content: "\f45f"; } 6114 | 6115 | .fa-volleyball-ball::before { 6116 | content: "\f45f"; } 6117 | 6118 | .fa-volume-high::before { 6119 | content: "\f028"; } 6120 | 6121 | .fa-volume-up::before { 6122 | content: "\f028"; } 6123 | 6124 | .fa-volume-low::before { 6125 | content: "\f027"; } 6126 | 6127 | .fa-volume-down::before { 6128 | content: "\f027"; } 6129 | 6130 | .fa-volume-off::before { 6131 | content: "\f026"; } 6132 | 6133 | .fa-volume-xmark::before { 6134 | content: "\f6a9"; } 6135 | 6136 | .fa-volume-mute::before { 6137 | content: "\f6a9"; } 6138 | 6139 | .fa-volume-times::before { 6140 | content: "\f6a9"; } 6141 | 6142 | .fa-vr-cardboard::before { 6143 | content: "\f729"; } 6144 | 6145 | .fa-w::before { 6146 | content: "\57"; } 6147 | 6148 | .fa-walkie-talkie::before { 6149 | content: "\f8ef"; } 6150 | 6151 | .fa-wallet::before { 6152 | content: "\f555"; } 6153 | 6154 | .fa-wand-magic::before { 6155 | content: "\f0d0"; } 6156 | 6157 | .fa-magic::before { 6158 | content: "\f0d0"; } 6159 | 6160 | .fa-wand-magic-sparkles::before { 6161 | content: "\e2ca"; } 6162 | 6163 | .fa-magic-wand-sparkles::before { 6164 | content: "\e2ca"; } 6165 | 6166 | .fa-wand-sparkles::before { 6167 | content: "\f72b"; } 6168 | 6169 | .fa-warehouse::before { 6170 | content: "\f494"; } 6171 | 6172 | .fa-water::before { 6173 | content: "\f773"; } 6174 | 6175 | .fa-water-ladder::before { 6176 | content: "\f5c5"; } 6177 | 6178 | .fa-ladder-water::before { 6179 | content: "\f5c5"; } 6180 | 6181 | .fa-swimming-pool::before { 6182 | content: "\f5c5"; } 6183 | 6184 | .fa-wave-square::before { 6185 | content: "\f83e"; } 6186 | 6187 | .fa-weight-hanging::before { 6188 | content: "\f5cd"; } 6189 | 6190 | .fa-weight-scale::before { 6191 | content: "\f496"; } 6192 | 6193 | .fa-weight::before { 6194 | content: "\f496"; } 6195 | 6196 | .fa-wheat-awn::before { 6197 | content: "\e2cd"; } 6198 | 6199 | .fa-wheat-alt::before { 6200 | content: "\e2cd"; } 6201 | 6202 | .fa-wheat-awn-circle-exclamation::before { 6203 | content: "\e598"; } 6204 | 6205 | .fa-wheelchair::before { 6206 | content: "\f193"; } 6207 | 6208 | .fa-wheelchair-move::before { 6209 | content: "\e2ce"; } 6210 | 6211 | .fa-wheelchair-alt::before { 6212 | content: "\e2ce"; } 6213 | 6214 | .fa-whiskey-glass::before { 6215 | content: "\f7a0"; } 6216 | 6217 | .fa-glass-whiskey::before { 6218 | content: "\f7a0"; } 6219 | 6220 | .fa-wifi::before { 6221 | content: "\f1eb"; } 6222 | 6223 | .fa-wifi-3::before { 6224 | content: "\f1eb"; } 6225 | 6226 | .fa-wifi-strong::before { 6227 | content: "\f1eb"; } 6228 | 6229 | .fa-wind::before { 6230 | content: "\f72e"; } 6231 | 6232 | .fa-window-maximize::before { 6233 | content: "\f2d0"; } 6234 | 6235 | .fa-window-minimize::before { 6236 | content: "\f2d1"; } 6237 | 6238 | .fa-window-restore::before { 6239 | content: "\f2d2"; } 6240 | 6241 | .fa-wine-bottle::before { 6242 | content: "\f72f"; } 6243 | 6244 | .fa-wine-glass::before { 6245 | content: "\f4e3"; } 6246 | 6247 | .fa-wine-glass-empty::before { 6248 | content: "\f5ce"; } 6249 | 6250 | .fa-wine-glass-alt::before { 6251 | content: "\f5ce"; } 6252 | 6253 | .fa-won-sign::before { 6254 | content: "\f159"; } 6255 | 6256 | .fa-krw::before { 6257 | content: "\f159"; } 6258 | 6259 | .fa-won::before { 6260 | content: "\f159"; } 6261 | 6262 | .fa-worm::before { 6263 | content: "\e599"; } 6264 | 6265 | .fa-wrench::before { 6266 | content: "\f0ad"; } 6267 | 6268 | .fa-x::before { 6269 | content: "\58"; } 6270 | 6271 | .fa-x-ray::before { 6272 | content: "\f497"; } 6273 | 6274 | .fa-xmark::before { 6275 | content: "\f00d"; } 6276 | 6277 | .fa-close::before { 6278 | content: "\f00d"; } 6279 | 6280 | .fa-multiply::before { 6281 | content: "\f00d"; } 6282 | 6283 | .fa-remove::before { 6284 | content: "\f00d"; } 6285 | 6286 | .fa-times::before { 6287 | content: "\f00d"; } 6288 | 6289 | .fa-xmarks-lines::before { 6290 | content: "\e59a"; } 6291 | 6292 | .fa-y::before { 6293 | content: "\59"; } 6294 | 6295 | .fa-yen-sign::before { 6296 | content: "\f157"; } 6297 | 6298 | .fa-cny::before { 6299 | content: "\f157"; } 6300 | 6301 | .fa-jpy::before { 6302 | content: "\f157"; } 6303 | 6304 | .fa-rmb::before { 6305 | content: "\f157"; } 6306 | 6307 | .fa-yen::before { 6308 | content: "\f157"; } 6309 | 6310 | .fa-yin-yang::before { 6311 | content: "\f6ad"; } 6312 | 6313 | .fa-z::before { 6314 | content: "\5a"; } 6315 | 6316 | .sr-only, 6317 | .fa-sr-only { 6318 | position: absolute; 6319 | width: 1px; 6320 | height: 1px; 6321 | padding: 0; 6322 | margin: -1px; 6323 | overflow: hidden; 6324 | clip: rect(0, 0, 0, 0); 6325 | white-space: nowrap; 6326 | border-width: 0; } 6327 | 6328 | .sr-only-focusable:not(:focus), 6329 | .fa-sr-only-focusable:not(:focus) { 6330 | position: absolute; 6331 | width: 1px; 6332 | height: 1px; 6333 | padding: 0; 6334 | margin: -1px; 6335 | overflow: hidden; 6336 | clip: rect(0, 0, 0, 0); 6337 | white-space: nowrap; 6338 | border-width: 0; } 6339 | :root, :host { 6340 | --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } 6341 | 6342 | @font-face { 6343 | font-family: 'Font Awesome 6 Brands'; 6344 | font-style: normal; 6345 | font-weight: 400; 6346 | font-display: block; 6347 | src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } 6348 | 6349 | .fab, 6350 | .fa-brands { 6351 | font-family: 'Font Awesome 6 Brands'; 6352 | font-weight: 400; } 6353 | 6354 | .fa-42-group:before { 6355 | content: "\e080"; } 6356 | 6357 | .fa-innosoft:before { 6358 | content: "\e080"; } 6359 | 6360 | .fa-500px:before { 6361 | content: "\f26e"; } 6362 | 6363 | .fa-accessible-icon:before { 6364 | content: "\f368"; } 6365 | 6366 | .fa-accusoft:before { 6367 | content: "\f369"; } 6368 | 6369 | .fa-adn:before { 6370 | content: "\f170"; } 6371 | 6372 | .fa-adversal:before { 6373 | content: "\f36a"; } 6374 | 6375 | .fa-affiliatetheme:before { 6376 | content: "\f36b"; } 6377 | 6378 | .fa-airbnb:before { 6379 | content: "\f834"; } 6380 | 6381 | .fa-algolia:before { 6382 | content: "\f36c"; } 6383 | 6384 | .fa-alipay:before { 6385 | content: "\f642"; } 6386 | 6387 | .fa-amazon:before { 6388 | content: "\f270"; } 6389 | 6390 | .fa-amazon-pay:before { 6391 | content: "\f42c"; } 6392 | 6393 | .fa-amilia:before { 6394 | content: "\f36d"; } 6395 | 6396 | .fa-android:before { 6397 | content: "\f17b"; } 6398 | 6399 | .fa-angellist:before { 6400 | content: "\f209"; } 6401 | 6402 | .fa-angrycreative:before { 6403 | content: "\f36e"; } 6404 | 6405 | .fa-angular:before { 6406 | content: "\f420"; } 6407 | 6408 | .fa-app-store:before { 6409 | content: "\f36f"; } 6410 | 6411 | .fa-app-store-ios:before { 6412 | content: "\f370"; } 6413 | 6414 | .fa-apper:before { 6415 | content: "\f371"; } 6416 | 6417 | .fa-apple:before { 6418 | content: "\f179"; } 6419 | 6420 | .fa-apple-pay:before { 6421 | content: "\f415"; } 6422 | 6423 | .fa-artstation:before { 6424 | content: "\f77a"; } 6425 | 6426 | .fa-asymmetrik:before { 6427 | content: "\f372"; } 6428 | 6429 | .fa-atlassian:before { 6430 | content: "\f77b"; } 6431 | 6432 | .fa-audible:before { 6433 | content: "\f373"; } 6434 | 6435 | .fa-autoprefixer:before { 6436 | content: "\f41c"; } 6437 | 6438 | .fa-avianex:before { 6439 | content: "\f374"; } 6440 | 6441 | .fa-aviato:before { 6442 | content: "\f421"; } 6443 | 6444 | .fa-aws:before { 6445 | content: "\f375"; } 6446 | 6447 | .fa-bandcamp:before { 6448 | content: "\f2d5"; } 6449 | 6450 | .fa-battle-net:before { 6451 | content: "\f835"; } 6452 | 6453 | .fa-behance:before { 6454 | content: "\f1b4"; } 6455 | 6456 | .fa-behance-square:before { 6457 | content: "\f1b5"; } 6458 | 6459 | .fa-bilibili:before { 6460 | content: "\e3d9"; } 6461 | 6462 | .fa-bimobject:before { 6463 | content: "\f378"; } 6464 | 6465 | .fa-bitbucket:before { 6466 | content: "\f171"; } 6467 | 6468 | .fa-bitcoin:before { 6469 | content: "\f379"; } 6470 | 6471 | .fa-bity:before { 6472 | content: "\f37a"; } 6473 | 6474 | .fa-black-tie:before { 6475 | content: "\f27e"; } 6476 | 6477 | .fa-blackberry:before { 6478 | content: "\f37b"; } 6479 | 6480 | .fa-blogger:before { 6481 | content: "\f37c"; } 6482 | 6483 | .fa-blogger-b:before { 6484 | content: "\f37d"; } 6485 | 6486 | .fa-bluetooth:before { 6487 | content: "\f293"; } 6488 | 6489 | .fa-bluetooth-b:before { 6490 | content: "\f294"; } 6491 | 6492 | .fa-bootstrap:before { 6493 | content: "\f836"; } 6494 | 6495 | .fa-bots:before { 6496 | content: "\e340"; } 6497 | 6498 | .fa-btc:before { 6499 | content: "\f15a"; } 6500 | 6501 | .fa-buffer:before { 6502 | content: "\f837"; } 6503 | 6504 | .fa-buromobelexperte:before { 6505 | content: "\f37f"; } 6506 | 6507 | .fa-buy-n-large:before { 6508 | content: "\f8a6"; } 6509 | 6510 | .fa-buysellads:before { 6511 | content: "\f20d"; } 6512 | 6513 | .fa-canadian-maple-leaf:before { 6514 | content: "\f785"; } 6515 | 6516 | .fa-cc-amazon-pay:before { 6517 | content: "\f42d"; } 6518 | 6519 | .fa-cc-amex:before { 6520 | content: "\f1f3"; } 6521 | 6522 | .fa-cc-apple-pay:before { 6523 | content: "\f416"; } 6524 | 6525 | .fa-cc-diners-club:before { 6526 | content: "\f24c"; } 6527 | 6528 | .fa-cc-discover:before { 6529 | content: "\f1f2"; } 6530 | 6531 | .fa-cc-jcb:before { 6532 | content: "\f24b"; } 6533 | 6534 | .fa-cc-mastercard:before { 6535 | content: "\f1f1"; } 6536 | 6537 | .fa-cc-paypal:before { 6538 | content: "\f1f4"; } 6539 | 6540 | .fa-cc-stripe:before { 6541 | content: "\f1f5"; } 6542 | 6543 | .fa-cc-visa:before { 6544 | content: "\f1f0"; } 6545 | 6546 | .fa-centercode:before { 6547 | content: "\f380"; } 6548 | 6549 | .fa-centos:before { 6550 | content: "\f789"; } 6551 | 6552 | .fa-chrome:before { 6553 | content: "\f268"; } 6554 | 6555 | .fa-chromecast:before { 6556 | content: "\f838"; } 6557 | 6558 | .fa-cloudflare:before { 6559 | content: "\e07d"; } 6560 | 6561 | .fa-cloudscale:before { 6562 | content: "\f383"; } 6563 | 6564 | .fa-cloudsmith:before { 6565 | content: "\f384"; } 6566 | 6567 | .fa-cloudversify:before { 6568 | content: "\f385"; } 6569 | 6570 | .fa-cmplid:before { 6571 | content: "\e360"; } 6572 | 6573 | .fa-codepen:before { 6574 | content: "\f1cb"; } 6575 | 6576 | .fa-codiepie:before { 6577 | content: "\f284"; } 6578 | 6579 | .fa-confluence:before { 6580 | content: "\f78d"; } 6581 | 6582 | .fa-connectdevelop:before { 6583 | content: "\f20e"; } 6584 | 6585 | .fa-contao:before { 6586 | content: "\f26d"; } 6587 | 6588 | .fa-cotton-bureau:before { 6589 | content: "\f89e"; } 6590 | 6591 | .fa-cpanel:before { 6592 | content: "\f388"; } 6593 | 6594 | .fa-creative-commons:before { 6595 | content: "\f25e"; } 6596 | 6597 | .fa-creative-commons-by:before { 6598 | content: "\f4e7"; } 6599 | 6600 | .fa-creative-commons-nc:before { 6601 | content: "\f4e8"; } 6602 | 6603 | .fa-creative-commons-nc-eu:before { 6604 | content: "\f4e9"; } 6605 | 6606 | .fa-creative-commons-nc-jp:before { 6607 | content: "\f4ea"; } 6608 | 6609 | .fa-creative-commons-nd:before { 6610 | content: "\f4eb"; } 6611 | 6612 | .fa-creative-commons-pd:before { 6613 | content: "\f4ec"; } 6614 | 6615 | .fa-creative-commons-pd-alt:before { 6616 | content: "\f4ed"; } 6617 | 6618 | .fa-creative-commons-remix:before { 6619 | content: "\f4ee"; } 6620 | 6621 | .fa-creative-commons-sa:before { 6622 | content: "\f4ef"; } 6623 | 6624 | .fa-creative-commons-sampling:before { 6625 | content: "\f4f0"; } 6626 | 6627 | .fa-creative-commons-sampling-plus:before { 6628 | content: "\f4f1"; } 6629 | 6630 | .fa-creative-commons-share:before { 6631 | content: "\f4f2"; } 6632 | 6633 | .fa-creative-commons-zero:before { 6634 | content: "\f4f3"; } 6635 | 6636 | .fa-critical-role:before { 6637 | content: "\f6c9"; } 6638 | 6639 | .fa-css3:before { 6640 | content: "\f13c"; } 6641 | 6642 | .fa-css3-alt:before { 6643 | content: "\f38b"; } 6644 | 6645 | .fa-cuttlefish:before { 6646 | content: "\f38c"; } 6647 | 6648 | .fa-d-and-d:before { 6649 | content: "\f38d"; } 6650 | 6651 | .fa-d-and-d-beyond:before { 6652 | content: "\f6ca"; } 6653 | 6654 | .fa-dailymotion:before { 6655 | content: "\e052"; } 6656 | 6657 | .fa-dashcube:before { 6658 | content: "\f210"; } 6659 | 6660 | .fa-deezer:before { 6661 | content: "\e077"; } 6662 | 6663 | .fa-delicious:before { 6664 | content: "\f1a5"; } 6665 | 6666 | .fa-deploydog:before { 6667 | content: "\f38e"; } 6668 | 6669 | .fa-deskpro:before { 6670 | content: "\f38f"; } 6671 | 6672 | .fa-dev:before { 6673 | content: "\f6cc"; } 6674 | 6675 | .fa-deviantart:before { 6676 | content: "\f1bd"; } 6677 | 6678 | .fa-dhl:before { 6679 | content: "\f790"; } 6680 | 6681 | .fa-diaspora:before { 6682 | content: "\f791"; } 6683 | 6684 | .fa-digg:before { 6685 | content: "\f1a6"; } 6686 | 6687 | .fa-digital-ocean:before { 6688 | content: "\f391"; } 6689 | 6690 | .fa-discord:before { 6691 | content: "\f392"; } 6692 | 6693 | .fa-discourse:before { 6694 | content: "\f393"; } 6695 | 6696 | .fa-dochub:before { 6697 | content: "\f394"; } 6698 | 6699 | .fa-docker:before { 6700 | content: "\f395"; } 6701 | 6702 | .fa-draft2digital:before { 6703 | content: "\f396"; } 6704 | 6705 | .fa-dribbble:before { 6706 | content: "\f17d"; } 6707 | 6708 | .fa-dribbble-square:before { 6709 | content: "\f397"; } 6710 | 6711 | .fa-dropbox:before { 6712 | content: "\f16b"; } 6713 | 6714 | .fa-drupal:before { 6715 | content: "\f1a9"; } 6716 | 6717 | .fa-dyalog:before { 6718 | content: "\f399"; } 6719 | 6720 | .fa-earlybirds:before { 6721 | content: "\f39a"; } 6722 | 6723 | .fa-ebay:before { 6724 | content: "\f4f4"; } 6725 | 6726 | .fa-edge:before { 6727 | content: "\f282"; } 6728 | 6729 | .fa-edge-legacy:before { 6730 | content: "\e078"; } 6731 | 6732 | .fa-elementor:before { 6733 | content: "\f430"; } 6734 | 6735 | .fa-ello:before { 6736 | content: "\f5f1"; } 6737 | 6738 | .fa-ember:before { 6739 | content: "\f423"; } 6740 | 6741 | .fa-empire:before { 6742 | content: "\f1d1"; } 6743 | 6744 | .fa-envira:before { 6745 | content: "\f299"; } 6746 | 6747 | .fa-erlang:before { 6748 | content: "\f39d"; } 6749 | 6750 | .fa-ethereum:before { 6751 | content: "\f42e"; } 6752 | 6753 | .fa-etsy:before { 6754 | content: "\f2d7"; } 6755 | 6756 | .fa-evernote:before { 6757 | content: "\f839"; } 6758 | 6759 | .fa-expeditedssl:before { 6760 | content: "\f23e"; } 6761 | 6762 | .fa-facebook:before { 6763 | content: "\f09a"; } 6764 | 6765 | .fa-facebook-f:before { 6766 | content: "\f39e"; } 6767 | 6768 | .fa-facebook-messenger:before { 6769 | content: "\f39f"; } 6770 | 6771 | .fa-facebook-square:before { 6772 | content: "\f082"; } 6773 | 6774 | .fa-fantasy-flight-games:before { 6775 | content: "\f6dc"; } 6776 | 6777 | .fa-fedex:before { 6778 | content: "\f797"; } 6779 | 6780 | .fa-fedora:before { 6781 | content: "\f798"; } 6782 | 6783 | .fa-figma:before { 6784 | content: "\f799"; } 6785 | 6786 | .fa-firefox:before { 6787 | content: "\f269"; } 6788 | 6789 | .fa-firefox-browser:before { 6790 | content: "\e007"; } 6791 | 6792 | .fa-first-order:before { 6793 | content: "\f2b0"; } 6794 | 6795 | .fa-first-order-alt:before { 6796 | content: "\f50a"; } 6797 | 6798 | .fa-firstdraft:before { 6799 | content: "\f3a1"; } 6800 | 6801 | .fa-flickr:before { 6802 | content: "\f16e"; } 6803 | 6804 | .fa-flipboard:before { 6805 | content: "\f44d"; } 6806 | 6807 | .fa-fly:before { 6808 | content: "\f417"; } 6809 | 6810 | .fa-font-awesome:before { 6811 | content: "\f2b4"; } 6812 | 6813 | .fa-font-awesome-flag:before { 6814 | content: "\f2b4"; } 6815 | 6816 | .fa-font-awesome-logo-full:before { 6817 | content: "\f2b4"; } 6818 | 6819 | .fa-fonticons:before { 6820 | content: "\f280"; } 6821 | 6822 | .fa-fonticons-fi:before { 6823 | content: "\f3a2"; } 6824 | 6825 | .fa-fort-awesome:before { 6826 | content: "\f286"; } 6827 | 6828 | .fa-fort-awesome-alt:before { 6829 | content: "\f3a3"; } 6830 | 6831 | .fa-forumbee:before { 6832 | content: "\f211"; } 6833 | 6834 | .fa-foursquare:before { 6835 | content: "\f180"; } 6836 | 6837 | .fa-free-code-camp:before { 6838 | content: "\f2c5"; } 6839 | 6840 | .fa-freebsd:before { 6841 | content: "\f3a4"; } 6842 | 6843 | .fa-fulcrum:before { 6844 | content: "\f50b"; } 6845 | 6846 | .fa-galactic-republic:before { 6847 | content: "\f50c"; } 6848 | 6849 | .fa-galactic-senate:before { 6850 | content: "\f50d"; } 6851 | 6852 | .fa-get-pocket:before { 6853 | content: "\f265"; } 6854 | 6855 | .fa-gg:before { 6856 | content: "\f260"; } 6857 | 6858 | .fa-gg-circle:before { 6859 | content: "\f261"; } 6860 | 6861 | .fa-git:before { 6862 | content: "\f1d3"; } 6863 | 6864 | .fa-git-alt:before { 6865 | content: "\f841"; } 6866 | 6867 | .fa-git-square:before { 6868 | content: "\f1d2"; } 6869 | 6870 | .fa-github:before { 6871 | content: "\f09b"; } 6872 | 6873 | .fa-github-alt:before { 6874 | content: "\f113"; } 6875 | 6876 | .fa-github-square:before { 6877 | content: "\f092"; } 6878 | 6879 | .fa-gitkraken:before { 6880 | content: "\f3a6"; } 6881 | 6882 | .fa-gitlab:before { 6883 | content: "\f296"; } 6884 | 6885 | .fa-gitter:before { 6886 | content: "\f426"; } 6887 | 6888 | .fa-glide:before { 6889 | content: "\f2a5"; } 6890 | 6891 | .fa-glide-g:before { 6892 | content: "\f2a6"; } 6893 | 6894 | .fa-gofore:before { 6895 | content: "\f3a7"; } 6896 | 6897 | .fa-golang:before { 6898 | content: "\e40f"; } 6899 | 6900 | .fa-goodreads:before { 6901 | content: "\f3a8"; } 6902 | 6903 | .fa-goodreads-g:before { 6904 | content: "\f3a9"; } 6905 | 6906 | .fa-google:before { 6907 | content: "\f1a0"; } 6908 | 6909 | .fa-google-drive:before { 6910 | content: "\f3aa"; } 6911 | 6912 | .fa-google-pay:before { 6913 | content: "\e079"; } 6914 | 6915 | .fa-google-play:before { 6916 | content: "\f3ab"; } 6917 | 6918 | .fa-google-plus:before { 6919 | content: "\f2b3"; } 6920 | 6921 | .fa-google-plus-g:before { 6922 | content: "\f0d5"; } 6923 | 6924 | .fa-google-plus-square:before { 6925 | content: "\f0d4"; } 6926 | 6927 | .fa-google-wallet:before { 6928 | content: "\f1ee"; } 6929 | 6930 | .fa-gratipay:before { 6931 | content: "\f184"; } 6932 | 6933 | .fa-grav:before { 6934 | content: "\f2d6"; } 6935 | 6936 | .fa-gripfire:before { 6937 | content: "\f3ac"; } 6938 | 6939 | .fa-grunt:before { 6940 | content: "\f3ad"; } 6941 | 6942 | .fa-guilded:before { 6943 | content: "\e07e"; } 6944 | 6945 | .fa-gulp:before { 6946 | content: "\f3ae"; } 6947 | 6948 | .fa-hacker-news:before { 6949 | content: "\f1d4"; } 6950 | 6951 | .fa-hacker-news-square:before { 6952 | content: "\f3af"; } 6953 | 6954 | .fa-hackerrank:before { 6955 | content: "\f5f7"; } 6956 | 6957 | .fa-hashnode:before { 6958 | content: "\e499"; } 6959 | 6960 | .fa-hips:before { 6961 | content: "\f452"; } 6962 | 6963 | .fa-hire-a-helper:before { 6964 | content: "\f3b0"; } 6965 | 6966 | .fa-hive:before { 6967 | content: "\e07f"; } 6968 | 6969 | .fa-hooli:before { 6970 | content: "\f427"; } 6971 | 6972 | .fa-hornbill:before { 6973 | content: "\f592"; } 6974 | 6975 | .fa-hotjar:before { 6976 | content: "\f3b1"; } 6977 | 6978 | .fa-houzz:before { 6979 | content: "\f27c"; } 6980 | 6981 | .fa-html5:before { 6982 | content: "\f13b"; } 6983 | 6984 | .fa-hubspot:before { 6985 | content: "\f3b2"; } 6986 | 6987 | .fa-ideal:before { 6988 | content: "\e013"; } 6989 | 6990 | .fa-imdb:before { 6991 | content: "\f2d8"; } 6992 | 6993 | .fa-instagram:before { 6994 | content: "\f16d"; } 6995 | 6996 | .fa-instagram-square:before { 6997 | content: "\e055"; } 6998 | 6999 | .fa-instalod:before { 7000 | content: "\e081"; } 7001 | 7002 | .fa-intercom:before { 7003 | content: "\f7af"; } 7004 | 7005 | .fa-internet-explorer:before { 7006 | content: "\f26b"; } 7007 | 7008 | .fa-invision:before { 7009 | content: "\f7b0"; } 7010 | 7011 | .fa-ioxhost:before { 7012 | content: "\f208"; } 7013 | 7014 | .fa-itch-io:before { 7015 | content: "\f83a"; } 7016 | 7017 | .fa-itunes:before { 7018 | content: "\f3b4"; } 7019 | 7020 | .fa-itunes-note:before { 7021 | content: "\f3b5"; } 7022 | 7023 | .fa-java:before { 7024 | content: "\f4e4"; } 7025 | 7026 | .fa-jedi-order:before { 7027 | content: "\f50e"; } 7028 | 7029 | .fa-jenkins:before { 7030 | content: "\f3b6"; } 7031 | 7032 | .fa-jira:before { 7033 | content: "\f7b1"; } 7034 | 7035 | .fa-joget:before { 7036 | content: "\f3b7"; } 7037 | 7038 | .fa-joomla:before { 7039 | content: "\f1aa"; } 7040 | 7041 | .fa-js:before { 7042 | content: "\f3b8"; } 7043 | 7044 | .fa-js-square:before { 7045 | content: "\f3b9"; } 7046 | 7047 | .fa-jsfiddle:before { 7048 | content: "\f1cc"; } 7049 | 7050 | .fa-kaggle:before { 7051 | content: "\f5fa"; } 7052 | 7053 | .fa-keybase:before { 7054 | content: "\f4f5"; } 7055 | 7056 | .fa-keycdn:before { 7057 | content: "\f3ba"; } 7058 | 7059 | .fa-kickstarter:before { 7060 | content: "\f3bb"; } 7061 | 7062 | .fa-kickstarter-k:before { 7063 | content: "\f3bc"; } 7064 | 7065 | .fa-korvue:before { 7066 | content: "\f42f"; } 7067 | 7068 | .fa-laravel:before { 7069 | content: "\f3bd"; } 7070 | 7071 | .fa-lastfm:before { 7072 | content: "\f202"; } 7073 | 7074 | .fa-lastfm-square:before { 7075 | content: "\f203"; } 7076 | 7077 | .fa-leanpub:before { 7078 | content: "\f212"; } 7079 | 7080 | .fa-less:before { 7081 | content: "\f41d"; } 7082 | 7083 | .fa-line:before { 7084 | content: "\f3c0"; } 7085 | 7086 | .fa-linkedin:before { 7087 | content: "\f08c"; } 7088 | 7089 | .fa-linkedin-in:before { 7090 | content: "\f0e1"; } 7091 | 7092 | .fa-linode:before { 7093 | content: "\f2b8"; } 7094 | 7095 | .fa-linux:before { 7096 | content: "\f17c"; } 7097 | 7098 | .fa-lyft:before { 7099 | content: "\f3c3"; } 7100 | 7101 | .fa-magento:before { 7102 | content: "\f3c4"; } 7103 | 7104 | .fa-mailchimp:before { 7105 | content: "\f59e"; } 7106 | 7107 | .fa-mandalorian:before { 7108 | content: "\f50f"; } 7109 | 7110 | .fa-markdown:before { 7111 | content: "\f60f"; } 7112 | 7113 | .fa-mastodon:before { 7114 | content: "\f4f6"; } 7115 | 7116 | .fa-maxcdn:before { 7117 | content: "\f136"; } 7118 | 7119 | .fa-mdb:before { 7120 | content: "\f8ca"; } 7121 | 7122 | .fa-medapps:before { 7123 | content: "\f3c6"; } 7124 | 7125 | .fa-medium:before { 7126 | content: "\f23a"; } 7127 | 7128 | .fa-medium-m:before { 7129 | content: "\f23a"; } 7130 | 7131 | .fa-medrt:before { 7132 | content: "\f3c8"; } 7133 | 7134 | .fa-meetup:before { 7135 | content: "\f2e0"; } 7136 | 7137 | .fa-megaport:before { 7138 | content: "\f5a3"; } 7139 | 7140 | .fa-mendeley:before { 7141 | content: "\f7b3"; } 7142 | 7143 | .fa-microblog:before { 7144 | content: "\e01a"; } 7145 | 7146 | .fa-microsoft:before { 7147 | content: "\f3ca"; } 7148 | 7149 | .fa-mix:before { 7150 | content: "\f3cb"; } 7151 | 7152 | .fa-mixcloud:before { 7153 | content: "\f289"; } 7154 | 7155 | .fa-mixer:before { 7156 | content: "\e056"; } 7157 | 7158 | .fa-mizuni:before { 7159 | content: "\f3cc"; } 7160 | 7161 | .fa-modx:before { 7162 | content: "\f285"; } 7163 | 7164 | .fa-monero:before { 7165 | content: "\f3d0"; } 7166 | 7167 | .fa-napster:before { 7168 | content: "\f3d2"; } 7169 | 7170 | .fa-neos:before { 7171 | content: "\f612"; } 7172 | 7173 | .fa-nfc-directional:before { 7174 | content: "\e530"; } 7175 | 7176 | .fa-nfc-symbol:before { 7177 | content: "\e531"; } 7178 | 7179 | .fa-nimblr:before { 7180 | content: "\f5a8"; } 7181 | 7182 | .fa-node:before { 7183 | content: "\f419"; } 7184 | 7185 | .fa-node-js:before { 7186 | content: "\f3d3"; } 7187 | 7188 | .fa-npm:before { 7189 | content: "\f3d4"; } 7190 | 7191 | .fa-ns8:before { 7192 | content: "\f3d5"; } 7193 | 7194 | .fa-nutritionix:before { 7195 | content: "\f3d6"; } 7196 | 7197 | .fa-octopus-deploy:before { 7198 | content: "\e082"; } 7199 | 7200 | .fa-odnoklassniki:before { 7201 | content: "\f263"; } 7202 | 7203 | .fa-odnoklassniki-square:before { 7204 | content: "\f264"; } 7205 | 7206 | .fa-old-republic:before { 7207 | content: "\f510"; } 7208 | 7209 | .fa-opencart:before { 7210 | content: "\f23d"; } 7211 | 7212 | .fa-openid:before { 7213 | content: "\f19b"; } 7214 | 7215 | .fa-opera:before { 7216 | content: "\f26a"; } 7217 | 7218 | .fa-optin-monster:before { 7219 | content: "\f23c"; } 7220 | 7221 | .fa-orcid:before { 7222 | content: "\f8d2"; } 7223 | 7224 | .fa-osi:before { 7225 | content: "\f41a"; } 7226 | 7227 | .fa-padlet:before { 7228 | content: "\e4a0"; } 7229 | 7230 | .fa-page4:before { 7231 | content: "\f3d7"; } 7232 | 7233 | .fa-pagelines:before { 7234 | content: "\f18c"; } 7235 | 7236 | .fa-palfed:before { 7237 | content: "\f3d8"; } 7238 | 7239 | .fa-patreon:before { 7240 | content: "\f3d9"; } 7241 | 7242 | .fa-paypal:before { 7243 | content: "\f1ed"; } 7244 | 7245 | .fa-perbyte:before { 7246 | content: "\e083"; } 7247 | 7248 | .fa-periscope:before { 7249 | content: "\f3da"; } 7250 | 7251 | .fa-phabricator:before { 7252 | content: "\f3db"; } 7253 | 7254 | .fa-phoenix-framework:before { 7255 | content: "\f3dc"; } 7256 | 7257 | .fa-phoenix-squadron:before { 7258 | content: "\f511"; } 7259 | 7260 | .fa-php:before { 7261 | content: "\f457"; } 7262 | 7263 | .fa-pied-piper:before { 7264 | content: "\f2ae"; } 7265 | 7266 | .fa-pied-piper-alt:before { 7267 | content: "\f1a8"; } 7268 | 7269 | .fa-pied-piper-hat:before { 7270 | content: "\f4e5"; } 7271 | 7272 | .fa-pied-piper-pp:before { 7273 | content: "\f1a7"; } 7274 | 7275 | .fa-pied-piper-square:before { 7276 | content: "\e01e"; } 7277 | 7278 | .fa-pinterest:before { 7279 | content: "\f0d2"; } 7280 | 7281 | .fa-pinterest-p:before { 7282 | content: "\f231"; } 7283 | 7284 | .fa-pinterest-square:before { 7285 | content: "\f0d3"; } 7286 | 7287 | .fa-pix:before { 7288 | content: "\e43a"; } 7289 | 7290 | .fa-playstation:before { 7291 | content: "\f3df"; } 7292 | 7293 | .fa-product-hunt:before { 7294 | content: "\f288"; } 7295 | 7296 | .fa-pushed:before { 7297 | content: "\f3e1"; } 7298 | 7299 | .fa-python:before { 7300 | content: "\f3e2"; } 7301 | 7302 | .fa-qq:before { 7303 | content: "\f1d6"; } 7304 | 7305 | .fa-quinscape:before { 7306 | content: "\f459"; } 7307 | 7308 | .fa-quora:before { 7309 | content: "\f2c4"; } 7310 | 7311 | .fa-r-project:before { 7312 | content: "\f4f7"; } 7313 | 7314 | .fa-raspberry-pi:before { 7315 | content: "\f7bb"; } 7316 | 7317 | .fa-ravelry:before { 7318 | content: "\f2d9"; } 7319 | 7320 | .fa-react:before { 7321 | content: "\f41b"; } 7322 | 7323 | .fa-reacteurope:before { 7324 | content: "\f75d"; } 7325 | 7326 | .fa-readme:before { 7327 | content: "\f4d5"; } 7328 | 7329 | .fa-rebel:before { 7330 | content: "\f1d0"; } 7331 | 7332 | .fa-red-river:before { 7333 | content: "\f3e3"; } 7334 | 7335 | .fa-reddit:before { 7336 | content: "\f1a1"; } 7337 | 7338 | .fa-reddit-alien:before { 7339 | content: "\f281"; } 7340 | 7341 | .fa-reddit-square:before { 7342 | content: "\f1a2"; } 7343 | 7344 | .fa-redhat:before { 7345 | content: "\f7bc"; } 7346 | 7347 | .fa-renren:before { 7348 | content: "\f18b"; } 7349 | 7350 | .fa-replyd:before { 7351 | content: "\f3e6"; } 7352 | 7353 | .fa-researchgate:before { 7354 | content: "\f4f8"; } 7355 | 7356 | .fa-resolving:before { 7357 | content: "\f3e7"; } 7358 | 7359 | .fa-rev:before { 7360 | content: "\f5b2"; } 7361 | 7362 | .fa-rocketchat:before { 7363 | content: "\f3e8"; } 7364 | 7365 | .fa-rockrms:before { 7366 | content: "\f3e9"; } 7367 | 7368 | .fa-rust:before { 7369 | content: "\e07a"; } 7370 | 7371 | .fa-safari:before { 7372 | content: "\f267"; } 7373 | 7374 | .fa-salesforce:before { 7375 | content: "\f83b"; } 7376 | 7377 | .fa-sass:before { 7378 | content: "\f41e"; } 7379 | 7380 | .fa-schlix:before { 7381 | content: "\f3ea"; } 7382 | 7383 | .fa-screenpal:before { 7384 | content: "\e570"; } 7385 | 7386 | .fa-scribd:before { 7387 | content: "\f28a"; } 7388 | 7389 | .fa-searchengin:before { 7390 | content: "\f3eb"; } 7391 | 7392 | .fa-sellcast:before { 7393 | content: "\f2da"; } 7394 | 7395 | .fa-sellsy:before { 7396 | content: "\f213"; } 7397 | 7398 | .fa-servicestack:before { 7399 | content: "\f3ec"; } 7400 | 7401 | .fa-shirtsinbulk:before { 7402 | content: "\f214"; } 7403 | 7404 | .fa-shopify:before { 7405 | content: "\e057"; } 7406 | 7407 | .fa-shopware:before { 7408 | content: "\f5b5"; } 7409 | 7410 | .fa-simplybuilt:before { 7411 | content: "\f215"; } 7412 | 7413 | .fa-sistrix:before { 7414 | content: "\f3ee"; } 7415 | 7416 | .fa-sith:before { 7417 | content: "\f512"; } 7418 | 7419 | .fa-sitrox:before { 7420 | content: "\e44a"; } 7421 | 7422 | .fa-sketch:before { 7423 | content: "\f7c6"; } 7424 | 7425 | .fa-skyatlas:before { 7426 | content: "\f216"; } 7427 | 7428 | .fa-skype:before { 7429 | content: "\f17e"; } 7430 | 7431 | .fa-slack:before { 7432 | content: "\f198"; } 7433 | 7434 | .fa-slack-hash:before { 7435 | content: "\f198"; } 7436 | 7437 | .fa-slideshare:before { 7438 | content: "\f1e7"; } 7439 | 7440 | .fa-snapchat:before { 7441 | content: "\f2ab"; } 7442 | 7443 | .fa-snapchat-ghost:before { 7444 | content: "\f2ab"; } 7445 | 7446 | .fa-snapchat-square:before { 7447 | content: "\f2ad"; } 7448 | 7449 | .fa-soundcloud:before { 7450 | content: "\f1be"; } 7451 | 7452 | .fa-sourcetree:before { 7453 | content: "\f7d3"; } 7454 | 7455 | .fa-speakap:before { 7456 | content: "\f3f3"; } 7457 | 7458 | .fa-speaker-deck:before { 7459 | content: "\f83c"; } 7460 | 7461 | .fa-spotify:before { 7462 | content: "\f1bc"; } 7463 | 7464 | .fa-square-font-awesome:before { 7465 | content: "\f425"; } 7466 | 7467 | .fa-square-font-awesome-stroke:before { 7468 | content: "\f35c"; } 7469 | 7470 | .fa-font-awesome-alt:before { 7471 | content: "\f35c"; } 7472 | 7473 | .fa-squarespace:before { 7474 | content: "\f5be"; } 7475 | 7476 | .fa-stack-exchange:before { 7477 | content: "\f18d"; } 7478 | 7479 | .fa-stack-overflow:before { 7480 | content: "\f16c"; } 7481 | 7482 | .fa-stackpath:before { 7483 | content: "\f842"; } 7484 | 7485 | .fa-staylinked:before { 7486 | content: "\f3f5"; } 7487 | 7488 | .fa-steam:before { 7489 | content: "\f1b6"; } 7490 | 7491 | .fa-steam-square:before { 7492 | content: "\f1b7"; } 7493 | 7494 | .fa-steam-symbol:before { 7495 | content: "\f3f6"; } 7496 | 7497 | .fa-sticker-mule:before { 7498 | content: "\f3f7"; } 7499 | 7500 | .fa-strava:before { 7501 | content: "\f428"; } 7502 | 7503 | .fa-stripe:before { 7504 | content: "\f429"; } 7505 | 7506 | .fa-stripe-s:before { 7507 | content: "\f42a"; } 7508 | 7509 | .fa-studiovinari:before { 7510 | content: "\f3f8"; } 7511 | 7512 | .fa-stumbleupon:before { 7513 | content: "\f1a4"; } 7514 | 7515 | .fa-stumbleupon-circle:before { 7516 | content: "\f1a3"; } 7517 | 7518 | .fa-superpowers:before { 7519 | content: "\f2dd"; } 7520 | 7521 | .fa-supple:before { 7522 | content: "\f3f9"; } 7523 | 7524 | .fa-suse:before { 7525 | content: "\f7d6"; } 7526 | 7527 | .fa-swift:before { 7528 | content: "\f8e1"; } 7529 | 7530 | .fa-symfony:before { 7531 | content: "\f83d"; } 7532 | 7533 | .fa-teamspeak:before { 7534 | content: "\f4f9"; } 7535 | 7536 | .fa-telegram:before { 7537 | content: "\f2c6"; } 7538 | 7539 | .fa-telegram-plane:before { 7540 | content: "\f2c6"; } 7541 | 7542 | .fa-tencent-weibo:before { 7543 | content: "\f1d5"; } 7544 | 7545 | .fa-the-red-yeti:before { 7546 | content: "\f69d"; } 7547 | 7548 | .fa-themeco:before { 7549 | content: "\f5c6"; } 7550 | 7551 | .fa-themeisle:before { 7552 | content: "\f2b2"; } 7553 | 7554 | .fa-think-peaks:before { 7555 | content: "\f731"; } 7556 | 7557 | .fa-tiktok:before { 7558 | content: "\e07b"; } 7559 | 7560 | .fa-trade-federation:before { 7561 | content: "\f513"; } 7562 | 7563 | .fa-trello:before { 7564 | content: "\f181"; } 7565 | 7566 | .fa-tumblr:before { 7567 | content: "\f173"; } 7568 | 7569 | .fa-tumblr-square:before { 7570 | content: "\f174"; } 7571 | 7572 | .fa-twitch:before { 7573 | content: "\f1e8"; } 7574 | 7575 | .fa-twitter:before { 7576 | content: "\f099"; } 7577 | 7578 | .fa-twitter-square:before { 7579 | content: "\f081"; } 7580 | 7581 | .fa-typo3:before { 7582 | content: "\f42b"; } 7583 | 7584 | .fa-uber:before { 7585 | content: "\f402"; } 7586 | 7587 | .fa-ubuntu:before { 7588 | content: "\f7df"; } 7589 | 7590 | .fa-uikit:before { 7591 | content: "\f403"; } 7592 | 7593 | .fa-umbraco:before { 7594 | content: "\f8e8"; } 7595 | 7596 | .fa-uncharted:before { 7597 | content: "\e084"; } 7598 | 7599 | .fa-uniregistry:before { 7600 | content: "\f404"; } 7601 | 7602 | .fa-unity:before { 7603 | content: "\e049"; } 7604 | 7605 | .fa-unsplash:before { 7606 | content: "\e07c"; } 7607 | 7608 | .fa-untappd:before { 7609 | content: "\f405"; } 7610 | 7611 | .fa-ups:before { 7612 | content: "\f7e0"; } 7613 | 7614 | .fa-usb:before { 7615 | content: "\f287"; } 7616 | 7617 | .fa-usps:before { 7618 | content: "\f7e1"; } 7619 | 7620 | .fa-ussunnah:before { 7621 | content: "\f407"; } 7622 | 7623 | .fa-vaadin:before { 7624 | content: "\f408"; } 7625 | 7626 | .fa-viacoin:before { 7627 | content: "\f237"; } 7628 | 7629 | .fa-viadeo:before { 7630 | content: "\f2a9"; } 7631 | 7632 | .fa-viadeo-square:before { 7633 | content: "\f2aa"; } 7634 | 7635 | .fa-viber:before { 7636 | content: "\f409"; } 7637 | 7638 | .fa-vimeo:before { 7639 | content: "\f40a"; } 7640 | 7641 | .fa-vimeo-square:before { 7642 | content: "\f194"; } 7643 | 7644 | .fa-vimeo-v:before { 7645 | content: "\f27d"; } 7646 | 7647 | .fa-vine:before { 7648 | content: "\f1ca"; } 7649 | 7650 | .fa-vk:before { 7651 | content: "\f189"; } 7652 | 7653 | .fa-vnv:before { 7654 | content: "\f40b"; } 7655 | 7656 | .fa-vuejs:before { 7657 | content: "\f41f"; } 7658 | 7659 | .fa-watchman-monitoring:before { 7660 | content: "\e087"; } 7661 | 7662 | .fa-waze:before { 7663 | content: "\f83f"; } 7664 | 7665 | .fa-weebly:before { 7666 | content: "\f5cc"; } 7667 | 7668 | .fa-weibo:before { 7669 | content: "\f18a"; } 7670 | 7671 | .fa-weixin:before { 7672 | content: "\f1d7"; } 7673 | 7674 | .fa-whatsapp:before { 7675 | content: "\f232"; } 7676 | 7677 | .fa-whatsapp-square:before { 7678 | content: "\f40c"; } 7679 | 7680 | .fa-whmcs:before { 7681 | content: "\f40d"; } 7682 | 7683 | .fa-wikipedia-w:before { 7684 | content: "\f266"; } 7685 | 7686 | .fa-windows:before { 7687 | content: "\f17a"; } 7688 | 7689 | .fa-wirsindhandwerk:before { 7690 | content: "\e2d0"; } 7691 | 7692 | .fa-wsh:before { 7693 | content: "\e2d0"; } 7694 | 7695 | .fa-wix:before { 7696 | content: "\f5cf"; } 7697 | 7698 | .fa-wizards-of-the-coast:before { 7699 | content: "\f730"; } 7700 | 7701 | .fa-wodu:before { 7702 | content: "\e088"; } 7703 | 7704 | .fa-wolf-pack-battalion:before { 7705 | content: "\f514"; } 7706 | 7707 | .fa-wordpress:before { 7708 | content: "\f19a"; } 7709 | 7710 | .fa-wordpress-simple:before { 7711 | content: "\f411"; } 7712 | 7713 | .fa-wpbeginner:before { 7714 | content: "\f297"; } 7715 | 7716 | .fa-wpexplorer:before { 7717 | content: "\f2de"; } 7718 | 7719 | .fa-wpforms:before { 7720 | content: "\f298"; } 7721 | 7722 | .fa-wpressr:before { 7723 | content: "\f3e4"; } 7724 | 7725 | .fa-xbox:before { 7726 | content: "\f412"; } 7727 | 7728 | .fa-xing:before { 7729 | content: "\f168"; } 7730 | 7731 | .fa-xing-square:before { 7732 | content: "\f169"; } 7733 | 7734 | .fa-y-combinator:before { 7735 | content: "\f23b"; } 7736 | 7737 | .fa-yahoo:before { 7738 | content: "\f19e"; } 7739 | 7740 | .fa-yammer:before { 7741 | content: "\f840"; } 7742 | 7743 | .fa-yandex:before { 7744 | content: "\f413"; } 7745 | 7746 | .fa-yandex-international:before { 7747 | content: "\f414"; } 7748 | 7749 | .fa-yarn:before { 7750 | content: "\f7e3"; } 7751 | 7752 | .fa-yelp:before { 7753 | content: "\f1e9"; } 7754 | 7755 | .fa-yoast:before { 7756 | content: "\f2b1"; } 7757 | 7758 | .fa-youtube:before { 7759 | content: "\f167"; } 7760 | 7761 | .fa-youtube-square:before { 7762 | content: "\f431"; } 7763 | 7764 | .fa-zhihu:before { 7765 | content: "\f63f"; } 7766 | :root, :host { 7767 | --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; } 7768 | 7769 | @font-face { 7770 | font-family: 'Font Awesome 6 Free'; 7771 | font-style: normal; 7772 | font-weight: 400; 7773 | font-display: block; 7774 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } 7775 | 7776 | .far, 7777 | .fa-regular { 7778 | font-family: 'Font Awesome 6 Free'; 7779 | font-weight: 400; } 7780 | :root, :host { 7781 | --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; } 7782 | 7783 | @font-face { 7784 | font-family: 'Font Awesome 6 Free'; 7785 | font-style: normal; 7786 | font-weight: 900; 7787 | font-display: block; 7788 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 7789 | 7790 | .fas, 7791 | .fa-solid { 7792 | font-family: 'Font Awesome 6 Free'; 7793 | font-weight: 900; } 7794 | @font-face { 7795 | font-family: "Font Awesome 5 Brands"; 7796 | font-display: block; 7797 | font-weight: 400; 7798 | src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } 7799 | 7800 | @font-face { 7801 | font-family: "Font Awesome 5 Free"; 7802 | font-display: block; 7803 | font-weight: 900; 7804 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 7805 | 7806 | @font-face { 7807 | font-family: "Font Awesome 5 Free"; 7808 | font-display: block; 7809 | font-weight: 400; 7810 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } 7811 | @font-face { 7812 | font-family: "FontAwesome"; 7813 | font-display: block; 7814 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 7815 | 7816 | @font-face { 7817 | font-family: "FontAwesome"; 7818 | font-display: block; 7819 | src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } 7820 | 7821 | @font-face { 7822 | font-family: "FontAwesome"; 7823 | font-display: block; 7824 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); 7825 | unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; } 7826 | 7827 | @font-face { 7828 | font-family: "FontAwesome"; 7829 | font-display: block; 7830 | src: url("../webfonts/fa-v4compatibility.woff2") format("woff2"), url("../webfonts/fa-v4compatibility.ttf") format("truetype"); 7831 | unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F250,U+F252,U+F27A; } 7832 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | 2 | *{ 3 | margin: 0; 4 | padding: 0; 5 | box-sizing: border-box; 6 | font-family: Arial, Helvetica, sans-serif; 7 | } 8 | body{ 9 | display: flex; 10 | padding: 0 10px; 11 | min-height: 100vh; 12 | align-items: center; 13 | background: hotpink; 14 | justify-content: center; 15 | } 16 | ::selection{ 17 | color: #fff; 18 | background: hotpink; 19 | } 20 | 21 | .start_btn { 22 | position: absolute; 23 | top: 50%; 24 | left: 50%; 25 | transform: translate(-50%, -50%); 26 | } 27 | 28 | .btn-one, 29 | .btn-two { 30 | padding: 9px; 31 | margin: 20px auto; 32 | display: flex; 33 | border: none; 34 | border-radius: 7px; 35 | box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 36 | 0 6px 20px 0 rgba(0, 0, 0, 0.19); 37 | } 38 | 39 | .btn-one a, 40 | .btn-two a { 41 | text-decoration: none; 42 | font-size: 18px; 43 | color: black; 44 | } 45 | 46 | .wrapper{ 47 | height: 335px; 48 | max-width: 410px; 49 | background: #fff; 50 | border-radius: 7px; 51 | padding: 20px 25px 0; 52 | transition: height 0.2s ease; 53 | box-shadow: 0 10px 30px rgba(0,0,0,0.1); 54 | } 55 | .wrapper.active{ 56 | height: 600px; 57 | } 58 | header h1{ 59 | font-size: 21px; 60 | font-weight: 500; 61 | text-align: center; 62 | margin-bottom: 10px; 63 | } 64 | header p{ 65 | margin-top: 5px; 66 | color: #575757; 67 | font-size: 16px; 68 | text-align: center; 69 | } 70 | 71 | header a { 72 | text-decoration: none; 73 | color: hotpink; 74 | } 75 | .wrapper .form{ 76 | margin: 20px 0 25px; 77 | } 78 | .form :where(input, button){ 79 | width: 100%; 80 | height: 55px; 81 | border: none; 82 | outline: none; 83 | border-radius: 5px; 84 | transition: 0.1s ease; 85 | } 86 | .form input{ 87 | font-size: 18px; 88 | padding: 0 17px; 89 | border: 1px solid black; 90 | } 91 | .form input:focus{ 92 | box-shadow: 0 3px 6px rgba(0,0,0,0.13); 93 | } 94 | .form input::placeholder{ 95 | color: #999; 96 | } 97 | .form button{ 98 | color: #fff; 99 | cursor: pointer; 100 | margin-top: 20px; 101 | font-size: 17px; 102 | background: hotpink; 103 | } 104 | .qr-code{ 105 | opacity: 0; 106 | display: flex; 107 | padding: 33px 0; 108 | border-radius: 5px; 109 | align-items: center; 110 | pointer-events: none; 111 | justify-content: center; 112 | border: 1px solid #ccc; 113 | } 114 | .wrapper.active .qr-code{ 115 | opacity: 1; 116 | pointer-events: auto; 117 | transition: opacity 0.5s 0.05s ease; 118 | } 119 | .qr-code img{ 120 | width: 170px; 121 | } 122 | 123 | @media (max-width: 430px){ 124 | .wrapper{ 125 | height: 255px; 126 | padding: 16px 20px; 127 | } 128 | .wrapper.active{ 129 | height: 510px; 130 | } 131 | header p{ 132 | color: #696969; 133 | } 134 | .form :where(input, button){ 135 | height: 52px; 136 | } 137 | .qr-code img{ 138 | width: 160px; 139 | } 140 | } -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- 1 | 2 | *{ 3 | margin: 0; 4 | padding: 0; 5 | box-sizing: border-box; 6 | font-family: Arial, Helvetica, sans-serif; 7 | } 8 | 9 | body{ 10 | display: flex; 11 | padding: 0 10px; 12 | min-height: 100vh; 13 | align-items: center; 14 | background: white; 15 | justify-content: center; 16 | } 17 | 18 | img { 19 | width: 100px; 20 | margin: 10px auto; 21 | display: flex; 22 | } 23 | 24 | .container p { 25 | text-align: center; 26 | font-size: 18px; 27 | margin-bottom: 5px; 28 | } 29 | 30 | .follow { 31 | display: flex; 32 | justify-content: center; 33 | } 34 | 35 | .fa-brands { 36 | font-size: 1.5rem; 37 | padding-left: 3px; 38 | padding-right: 3px; 39 | } 40 | 41 | .fa-instagram-square { 42 | color: transparent; 43 | background: -webkit-radial-gradient( 44 | 30% 107%, 45 | circle, 46 | #fdf497 0%, 47 | #fdf497 5%, 48 | #fd5949 45%, 49 | #d6249f 60%, 50 | #285aeb 90% 51 | ); 52 | background: -o-radial-gradient( 53 | 30% 107%, 54 | circle, 55 | #fdf497 0%, 56 | #fdf497 5%, 57 | #fd5949 45%, 58 | #d6249f 60%, 59 | #285aeb 90% 60 | ); 61 | background: radial-gradient( 62 | circle at 30% 107%, 63 | #fdf497 0%, 64 | #fdf497 5%, 65 | #fd5949 45%, 66 | #d6249f 60%, 67 | #285aeb 90% 68 | ); 69 | background: -webkit-radial-gradient( 70 | circle at 30% 107%, 71 | #fdf497 0%, 72 | #fdf497 5%, 73 | #fd5949 45%, 74 | #d6249f 60%, 75 | #285aeb 90% 76 | ); 77 | background-clip: text; 78 | -webkit-background-clip: text; 79 | } 80 | 81 | button { 82 | margin: 20px auto 50px auto; 83 | display: flex; 84 | border: none; 85 | background: white; 86 | } 87 | 88 | button a { 89 | text-decoration: none; 90 | padding: 10px; 91 | font-size: 15px; 92 | color: magenta; 93 | border: 1px solid magenta; 94 | border-radius: 7px; 95 | } 96 | 97 | .footer-bottom { 98 | display: flex; 99 | text-align: center; 100 | flex-direction: column; 101 | margin: 7px auto 0px auto; 102 | } 103 | 104 | @media (prefers-reduced-motion: no-preference) { 105 | .my-logo { 106 | animation: Logo-spin infinite 20s linear; 107 | } 108 | } 109 | 110 | @keyframes Logo-spin { 111 | from { 112 | transform: rotate(0deg); 113 | } 114 | to { 115 | transform: rotate(360deg); 116 | } 117 | } -------------------------------------------------------------------------------- /css/styletwo.css: -------------------------------------------------------------------------------- 1 | 2 | *{ 3 | margin: 0; 4 | padding: 0; 5 | box-sizing: border-box; 6 | font-family: Arial, Helvetica, sans-serif; 7 | } 8 | body{ 9 | display: flex; 10 | align-items: center; 11 | justify-content: center; 12 | min-height: 100vh; 13 | padding: 0 10px; 14 | background: #E3F2FD; 15 | } 16 | 17 | .title { 18 | padding-bottom: 30px; 19 | } 20 | 21 | .title h4 { 22 | text-align: center; 23 | font-size: 18px; 24 | padding-bottom: 10px; 25 | } 26 | 27 | .title p { 28 | text-align: center; 29 | } 30 | 31 | .title p a { 32 | text-decoration: none; 33 | color: white; 34 | } 35 | 36 | .wrapper{ 37 | height: 420px; 38 | width: 420px; 39 | border-radius: 7px; 40 | background: hotpink; 41 | padding: 30px 30px 35px; 42 | transition: height 0.2s ease; 43 | box-shadow: 0 10px 20px rgba(0,0,0,0.1); 44 | } 45 | .wrapper.active{ 46 | margin: 30px auto; 47 | height: 665px; 48 | } 49 | .wrapper form{ 50 | height: 210px; 51 | display: flex; 52 | cursor: pointer; 53 | user-select: none; 54 | text-align: center; 55 | border-radius: 7px; 56 | background: #fff; 57 | align-items: center; 58 | justify-content: center; 59 | transition: height 0.2s ease; 60 | } 61 | .wrapper.active form{ 62 | height: 225px; 63 | pointer-events: none; 64 | } 65 | form img{ 66 | display: none; 67 | max-width: 148px; 68 | } 69 | .wrapper.active form img{ 70 | display: block; 71 | } 72 | .wrapper.active form .content{ 73 | display: none; 74 | } 75 | form .content i{ 76 | color: hotpink; 77 | font-size: 55px; 78 | } 79 | form .content p{ 80 | color: hotpink; 81 | margin-top: 15px; 82 | font-size: 16px; 83 | } 84 | .wrapper .details{ 85 | opacity: 0; 86 | margin-top: 25px; 87 | pointer-events: none; 88 | } 89 | .wrapper.active .details{ 90 | opacity: 1; 91 | pointer-events: auto; 92 | transition: opacity 0.5s 0.05s ease; 93 | } 94 | .details textarea{ 95 | width: 100%; 96 | height: 128px; 97 | outline: none; 98 | resize: none; 99 | color: #fff; 100 | font-size: 18px; 101 | background: none; 102 | border-radius: 5px; 103 | padding: 10px 15px; 104 | border: 1px solid #fff; 105 | } 106 | textarea::-webkit-scrollbar{ 107 | width: 0px; 108 | } 109 | textarea:hover::-webkit-scrollbar{ 110 | width: 5px; 111 | } 112 | textarea:hover::-webkit-scrollbar-track{ 113 | background: none; 114 | } 115 | textarea:hover::-webkit-scrollbar-thumb{ 116 | background: #fff; 117 | border-radius: 8px; 118 | } 119 | .details .buttons{ 120 | display: flex; 121 | margin-top: 20px; 122 | align-items: center; 123 | justify-content: space-between; 124 | } 125 | .buttons button{ 126 | height: 55px; 127 | outline: none; 128 | border: none; 129 | font-weight: 500; 130 | font-size: 16px; 131 | cursor: pointer; 132 | color: hotpink; 133 | border-radius: 5px; 134 | background: #fff; 135 | transition: transform 0.3s ease; 136 | width: calc(100% / 2 - 10px); 137 | } 138 | .buttons button:active{ 139 | transform: scale(0.95); 140 | } 141 | 142 | /* @media (max-width: 450px) { 143 | .wrapper{ 144 | padding: 25px; 145 | height: 260px; 146 | } 147 | .wrapper.active{ 148 | height: 520px; 149 | } 150 | } */ -------------------------------------------------------------------------------- /img/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbaddey/qr-codes-generator/59102338721985c95ba92a9eb1a74b98d6e273b5/img/Logo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | QR Code Generator 8 | 9 | 10 | 11 | 12 |
13 |

QR Code Project

14 |

By

15 |

Oyinkansola Shoroye

16 |

Teqbaddie

17 | 18 | 19 |
20 | 23 | 28 | 31 | 36 |
37 | 41 |
42 | 43 | -------------------------------------------------------------------------------- /qrcode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | QR Code Generator 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 |

QR Code Generator

16 |

To generate a QR Code, enter a text or url

17 |

Note: Once the code has been generated, take a screenshot of it and save. You can scan with a QR Code Scanner.

18 |
19 |
20 | 21 | 22 |
23 |
24 | qr-code 25 |
26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /qrreader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | QR Code Scanner 8 | 9 | 10 | 11 | 12 |
13 |
14 |

QR Code Scanner

15 |

Upload a QR Code image file below.

16 |

Note that: You can generate QR Codes using QR Code Generator.

17 |
18 |
19 | 20 | qr-code 21 |
22 | 23 |

Upload QR Code to Read

24 |
25 |
26 |
27 | 28 |
29 | 30 | 31 |
32 |
33 |
34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /scripts/script.js: -------------------------------------------------------------------------------- 1 | const wrapper = document.querySelector(".wrapper"), 2 | qrIpt = wrapper.querySelector(".form input"), 3 | generateBtn = wrapper.querySelector(".form button"), 4 | qrImg = wrapper.querySelector(".qr-code img"); 5 | let preValue; 6 | 7 | generateBtn.addEventListener("click", () => { 8 | let qrValue = qrIpt.value.trim(); 9 | if(!qrValue || preValue === qrValue) return; 10 | preValue = qrValue; 11 | generateBtn.innerText = "Generating QR Code..."; 12 | qrImg.src = `https://api.qrserver.com/v1/create-qr-code/?size=200x200&data=${qrValue}`; 13 | qrImg.addEventListener("load", () => { 14 | wrapper.classList.add("active"); 15 | generateBtn.innerText = "Generate QR Code"; 16 | }); 17 | }); 18 | 19 | qrIpt.addEventListener("keyup", () => { 20 | if(!qrIpt.value.trim()) { 21 | wrapper.classList.remove("active"); 22 | preValue = ""; 23 | } 24 | }); -------------------------------------------------------------------------------- /scripts/scripttwo.js: -------------------------------------------------------------------------------- 1 | const wrapper = document.querySelector(".wrapper"), 2 | form = document.querySelector("form"), 3 | fileInp = form.querySelector("input"), 4 | infoText = form.querySelector("p"), 5 | closeBtn = document.querySelector(".close"), 6 | copyBtn = document.querySelector(".copy"); 7 | 8 | function fetchRequest(file, formData) { 9 | infoText.innerText = "Scanning QR Code..."; 10 | fetch("http://api.qrserver.com/v1/read-qr-code/", { 11 | method: 'POST', body: formData 12 | }).then(res => res.json()).then(result => { 13 | result = result[0].symbol[0].data; 14 | infoText.innerText = result ? "Upload QR Code to Scan" : "Couldn't scan QR Code"; 15 | if(!result) return; 16 | document.querySelector("textarea").innerText = result; 17 | form.querySelector("img").src = URL.createObjectURL(file); 18 | wrapper.classList.add("active"); 19 | }).catch(() => { 20 | infoText.innerText = "Couldn't scan QR Code"; 21 | }); 22 | } 23 | 24 | fileInp.addEventListener("change", async e => { 25 | let file = e.target.files[0]; 26 | if(!file) return; 27 | let formData = new FormData(); 28 | formData.append('file', file); 29 | fetchRequest(file, formData); 30 | }); 31 | 32 | copyBtn.addEventListener("click", () => { 33 | let text = document.querySelector("textarea").textContent; 34 | navigator.clipboard.writeText(text); 35 | }); 36 | 37 | form.addEventListener("click", () => fileInp.click()); 38 | closeBtn.addEventListener("click", () => wrapper.classList.remove("active")); -------------------------------------------------------------------------------- /select.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | QR Code 8 | 9 | 10 | 11 |
12 | 13 | 14 |
15 | 16 | 17 | -------------------------------------------------------------------------------- /webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbaddey/qr-codes-generator/59102338721985c95ba92a9eb1a74b98d6e273b5/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbaddey/qr-codes-generator/59102338721985c95ba92a9eb1a74b98d6e273b5/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbaddey/qr-codes-generator/59102338721985c95ba92a9eb1a74b98d6e273b5/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbaddey/qr-codes-generator/59102338721985c95ba92a9eb1a74b98d6e273b5/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbaddey/qr-codes-generator/59102338721985c95ba92a9eb1a74b98d6e273b5/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbaddey/qr-codes-generator/59102338721985c95ba92a9eb1a74b98d6e273b5/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbaddey/qr-codes-generator/59102338721985c95ba92a9eb1a74b98d6e273b5/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbaddey/qr-codes-generator/59102338721985c95ba92a9eb1a74b98d6e273b5/webfonts/fa-v4compatibility.woff2 --------------------------------------------------------------------------------