/ css / fork-awesome.css
fork-awesome.css
   1  /*!
   2  Fork Awesome 1.2.0
   3  License - https://forkaweso.me/Fork-Awesome/license
   4  
   5  Copyright 2018 Dave Gandy & Fork Awesome
   6  
   7  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
   8  
   9  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  10  
  11  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  12   */
  13  /* FONT PATH
  14   * -------------------------- */
  15  @font-face {
  16    font-family: 'ForkAwesome';
  17    src: url('../fonts/forkawesome-webfont.eot?v=1.2.0');
  18    src: url('../fonts/forkawesome-webfont.eot?#iefix&v=1.2.0') format('embedded-opentype'), url('../fonts/forkawesome-webfont.woff2?v=1.2.0') format('woff2'), url('../fonts/forkawesome-webfont.woff?v=1.2.0') format('woff'), url('../fonts/forkawesome-webfont.ttf?v=1.2.0') format('truetype'), url('../fonts/forkawesome-webfont.svg?v=1.2.0#forkawesomeregular') format('svg');
  19    font-weight: normal;
  20    font-style: normal;
  21    font-display: block;
  22  }
  23  .fa {
  24    display: inline-block;
  25    font: normal normal normal 14px/1 ForkAwesome;
  26    font-size: inherit;
  27    text-rendering: auto;
  28    -webkit-font-smoothing: antialiased;
  29    -moz-osx-font-smoothing: grayscale;
  30  }
  31  /* makes the font 33% larger relative to the icon container */
  32  .fa-lg {
  33    font-size: 1.33333333em;
  34    line-height: 0.75em;
  35    vertical-align: -15%;
  36  }
  37  .fa-2x {
  38    font-size: 2em;
  39  }
  40  .fa-3x {
  41    font-size: 3em;
  42  }
  43  .fa-4x {
  44    font-size: 4em;
  45  }
  46  .fa-5x {
  47    font-size: 5em;
  48  }
  49  .fa-fw {
  50    width: 1.28571429em;
  51    text-align: center;
  52  }
  53  .fa-ul {
  54    padding-left: 0;
  55    margin-left: 2.14285714em;
  56    list-style-type: none;
  57  }
  58  .fa-ul > li {
  59    position: relative;
  60  }
  61  .fa-li {
  62    position: absolute;
  63    left: -2.14285714em;
  64    width: 2.14285714em;
  65    top: 0.14285714em;
  66    text-align: center;
  67  }
  68  .fa-li.fa-lg {
  69    left: -1.85714286em;
  70  }
  71  .fa-border {
  72    padding: .2em .25em .15em;
  73    border: solid 0.08em #eee;
  74    border-radius: .1em;
  75  }
  76  .fa-pull-left {
  77    float: left;
  78  }
  79  .fa-pull-right {
  80    float: right;
  81  }
  82  .fa.fa-pull-left {
  83    margin-right: .3em;
  84  }
  85  .fa.fa-pull-right {
  86    margin-left: .3em;
  87  }
  88  /* Deprecated as of 4.4.0 */
  89  .pull-right {
  90    float: right;
  91  }
  92  .pull-left {
  93    float: left;
  94  }
  95  .fa.pull-left {
  96    margin-right: .3em;
  97  }
  98  .fa.pull-right {
  99    margin-left: .3em;
 100  }
 101  .fa-spin {
 102    -webkit-animation: fa-spin 2s infinite linear;
 103    animation: fa-spin 2s infinite linear;
 104  }
 105  .fa-pulse {
 106    -webkit-animation: fa-spin 1s infinite steps(8);
 107    animation: fa-spin 1s infinite steps(8);
 108  }
 109  @-webkit-keyframes fa-spin {
 110    0% {
 111      -webkit-transform: rotate(0deg);
 112      transform: rotate(0deg);
 113    }
 114    100% {
 115      -webkit-transform: rotate(359deg);
 116      transform: rotate(359deg);
 117    }
 118  }
 119  @keyframes fa-spin {
 120    0% {
 121      -webkit-transform: rotate(0deg);
 122      transform: rotate(0deg);
 123    }
 124    100% {
 125      -webkit-transform: rotate(359deg);
 126      transform: rotate(359deg);
 127    }
 128  }
 129  .fa-rotate-90 {
 130    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
 131    -webkit-transform: rotate(90deg);
 132    -ms-transform: rotate(90deg);
 133    transform: rotate(90deg);
 134  }
 135  .fa-rotate-180 {
 136    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
 137    -webkit-transform: rotate(180deg);
 138    -ms-transform: rotate(180deg);
 139    transform: rotate(180deg);
 140  }
 141  .fa-rotate-270 {
 142    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
 143    -webkit-transform: rotate(270deg);
 144    -ms-transform: rotate(270deg);
 145    transform: rotate(270deg);
 146  }
 147  .fa-flip-horizontal {
 148    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
 149    -webkit-transform: scale(-1, 1);
 150    -ms-transform: scale(-1, 1);
 151    transform: scale(-1, 1);
 152  }
 153  .fa-flip-vertical {
 154    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
 155    -webkit-transform: scale(1, -1);
 156    -ms-transform: scale(1, -1);
 157    transform: scale(1, -1);
 158  }
 159  :root .fa-rotate-90,
 160  :root .fa-rotate-180,
 161  :root .fa-rotate-270,
 162  :root .fa-flip-horizontal,
 163  :root .fa-flip-vertical {
 164    filter: none;
 165  }
 166  .fa-stack {
 167    position: relative;
 168    display: inline-block;
 169    width: 2em;
 170    height: 2em;
 171    line-height: 2em;
 172    vertical-align: middle;
 173  }
 174  .fa-stack-1x,
 175  .fa-stack-2x {
 176    position: absolute;
 177    left: 0;
 178    width: 100%;
 179    text-align: center;
 180  }
 181  .fa-stack-1x {
 182    line-height: inherit;
 183  }
 184  .fa-stack-2x {
 185    font-size: 2em;
 186  }
 187  .fa-inverse {
 188    color: #fff;
 189  }
 190  /* Fork Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 191     readers do not read off random characters that represent icons */
 192  .fa-glass:before {
 193    content: "\f000";
 194  }
 195  .fa-music:before {
 196    content: "\f001";
 197  }
 198  .fa-search:before {
 199    content: "\f002";
 200  }
 201  .fa-envelope-o:before {
 202    content: "\f003";
 203  }
 204  .fa-heart:before {
 205    content: "\f004";
 206  }
 207  .fa-star:before {
 208    content: "\f005";
 209  }
 210  .fa-star-o:before {
 211    content: "\f006";
 212  }
 213  .fa-user:before {
 214    content: "\f007";
 215  }
 216  .fa-film:before {
 217    content: "\f008";
 218  }
 219  .fa-th-large:before {
 220    content: "\f009";
 221  }
 222  .fa-th:before {
 223    content: "\f00a";
 224  }
 225  .fa-th-list:before {
 226    content: "\f00b";
 227  }
 228  .fa-check:before {
 229    content: "\f00c";
 230  }
 231  .fa-remove:before,
 232  .fa-close:before,
 233  .fa-times:before {
 234    content: "\f00d";
 235  }
 236  .fa-search-plus:before {
 237    content: "\f00e";
 238  }
 239  .fa-search-minus:before {
 240    content: "\f010";
 241  }
 242  .fa-power-off:before {
 243    content: "\f011";
 244  }
 245  .fa-signal:before {
 246    content: "\f012";
 247  }
 248  .fa-gear:before,
 249  .fa-cog:before {
 250    content: "\f013";
 251  }
 252  .fa-trash-o:before {
 253    content: "\f014";
 254  }
 255  .fa-home:before {
 256    content: "\f015";
 257  }
 258  .fa-file-o:before {
 259    content: "\f016";
 260  }
 261  .fa-clock-o:before {
 262    content: "\f017";
 263  }
 264  .fa-road:before {
 265    content: "\f018";
 266  }
 267  .fa-download:before {
 268    content: "\f019";
 269  }
 270  .fa-arrow-circle-o-down:before {
 271    content: "\f01a";
 272  }
 273  .fa-arrow-circle-o-up:before {
 274    content: "\f01b";
 275  }
 276  .fa-inbox:before {
 277    content: "\f01c";
 278  }
 279  .fa-play-circle-o:before {
 280    content: "\f01d";
 281  }
 282  .fa-rotate-right:before,
 283  .fa-repeat:before {
 284    content: "\f01e";
 285  }
 286  .fa-sync:before,
 287  .fa-refresh:before {
 288    content: "\f021";
 289  }
 290  .fa-list-alt:before {
 291    content: "\f022";
 292  }
 293  .fa-lock:before {
 294    content: "\f023";
 295  }
 296  .fa-flag:before {
 297    content: "\f024";
 298  }
 299  .fa-headphones:before {
 300    content: "\f025";
 301  }
 302  .fa-volume-off:before {
 303    content: "\f026";
 304  }
 305  .fa-volume-down:before {
 306    content: "\f027";
 307  }
 308  .fa-volume-up:before {
 309    content: "\f028";
 310  }
 311  .fa-qrcode:before {
 312    content: "\f029";
 313  }
 314  .fa-barcode:before {
 315    content: "\f02a";
 316  }
 317  .fa-tag:before {
 318    content: "\f02b";
 319  }
 320  .fa-tags:before {
 321    content: "\f02c";
 322  }
 323  .fa-book:before {
 324    content: "\f02d";
 325  }
 326  .fa-bookmark:before {
 327    content: "\f02e";
 328  }
 329  .fa-print:before {
 330    content: "\f02f";
 331  }
 332  .fa-camera:before {
 333    content: "\f030";
 334  }
 335  .fa-font:before {
 336    content: "\f031";
 337  }
 338  .fa-bold:before {
 339    content: "\f032";
 340  }
 341  .fa-italic:before {
 342    content: "\f033";
 343  }
 344  .fa-text-height:before {
 345    content: "\f034";
 346  }
 347  .fa-text-width:before {
 348    content: "\f035";
 349  }
 350  .fa-align-left:before {
 351    content: "\f036";
 352  }
 353  .fa-align-center:before {
 354    content: "\f037";
 355  }
 356  .fa-align-right:before {
 357    content: "\f038";
 358  }
 359  .fa-align-justify:before {
 360    content: "\f039";
 361  }
 362  .fa-list:before {
 363    content: "\f03a";
 364  }
 365  .fa-dedent:before,
 366  .fa-outdent:before {
 367    content: "\f03b";
 368  }
 369  .fa-indent:before {
 370    content: "\f03c";
 371  }
 372  .fa-video:before,
 373  .fa-video-camera:before {
 374    content: "\f03d";
 375  }
 376  .fa-photo:before,
 377  .fa-image:before,
 378  .fa-picture-o:before {
 379    content: "\f03e";
 380  }
 381  .fa-pencil:before {
 382    content: "\f040";
 383  }
 384  .fa-map-marker:before {
 385    content: "\f041";
 386  }
 387  .fa-adjust:before {
 388    content: "\f042";
 389  }
 390  .fa-tint:before {
 391    content: "\f043";
 392  }
 393  .fa-edit:before,
 394  .fa-pencil-square-o:before {
 395    content: "\f044";
 396  }
 397  .fa-share-square-o:before {
 398    content: "\f045";
 399  }
 400  .fa-check-square-o:before {
 401    content: "\f046";
 402  }
 403  .fa-arrows:before {
 404    content: "\f047";
 405  }
 406  .fa-step-backward:before {
 407    content: "\f048";
 408  }
 409  .fa-fast-backward:before {
 410    content: "\f049";
 411  }
 412  .fa-backward:before {
 413    content: "\f04a";
 414  }
 415  .fa-play:before {
 416    content: "\f04b";
 417  }
 418  .fa-pause:before {
 419    content: "\f04c";
 420  }
 421  .fa-stop:before {
 422    content: "\f04d";
 423  }
 424  .fa-forward:before {
 425    content: "\f04e";
 426  }
 427  .fa-fast-forward:before {
 428    content: "\f050";
 429  }
 430  .fa-step-forward:before {
 431    content: "\f051";
 432  }
 433  .fa-eject:before {
 434    content: "\f052";
 435  }
 436  .fa-chevron-left:before {
 437    content: "\f053";
 438  }
 439  .fa-chevron-right:before {
 440    content: "\f054";
 441  }
 442  .fa-plus-circle:before {
 443    content: "\f055";
 444  }
 445  .fa-minus-circle:before {
 446    content: "\f056";
 447  }
 448  .fa-times-circle:before {
 449    content: "\f057";
 450  }
 451  .fa-check-circle:before {
 452    content: "\f058";
 453  }
 454  .fa-question-circle:before {
 455    content: "\f059";
 456  }
 457  .fa-info-circle:before {
 458    content: "\f05a";
 459  }
 460  .fa-crosshairs:before {
 461    content: "\f05b";
 462  }
 463  .fa-times-circle-o:before {
 464    content: "\f05c";
 465  }
 466  .fa-check-circle-o:before {
 467    content: "\f05d";
 468  }
 469  .fa-ban:before {
 470    content: "\f05e";
 471  }
 472  .fa-arrow-left:before {
 473    content: "\f060";
 474  }
 475  .fa-arrow-right:before {
 476    content: "\f061";
 477  }
 478  .fa-arrow-up:before {
 479    content: "\f062";
 480  }
 481  .fa-arrow-down:before {
 482    content: "\f063";
 483  }
 484  .fa-mail-forward:before,
 485  .fa-share:before {
 486    content: "\f064";
 487  }
 488  .fa-expand:before {
 489    content: "\f065";
 490  }
 491  .fa-compress:before {
 492    content: "\f066";
 493  }
 494  .fa-plus:before {
 495    content: "\f067";
 496  }
 497  .fa-minus:before {
 498    content: "\f068";
 499  }
 500  .fa-asterisk:before {
 501    content: "\f069";
 502  }
 503  .fa-exclamation-circle:before {
 504    content: "\f06a";
 505  }
 506  .fa-gift:before {
 507    content: "\f06b";
 508  }
 509  .fa-leaf:before {
 510    content: "\f06c";
 511  }
 512  .fa-fire:before {
 513    content: "\f06d";
 514  }
 515  .fa-eye:before {
 516    content: "\f06e";
 517  }
 518  .fa-eye-slash:before {
 519    content: "\f070";
 520  }
 521  .fa-warning:before,
 522  .fa-exclamation-triangle:before {
 523    content: "\f071";
 524  }
 525  .fa-plane:before {
 526    content: "\f072";
 527  }
 528  .fa-calendar:before {
 529    content: "\f073";
 530  }
 531  .fa-random:before {
 532    content: "\f074";
 533  }
 534  .fa-comment:before {
 535    content: "\f075";
 536  }
 537  .fa-magnet:before {
 538    content: "\f076";
 539  }
 540  .fa-chevron-up:before {
 541    content: "\f077";
 542  }
 543  .fa-chevron-down:before {
 544    content: "\f078";
 545  }
 546  .fa-retweet:before {
 547    content: "\f079";
 548  }
 549  .fa-shopping-cart:before {
 550    content: "\f07a";
 551  }
 552  .fa-folder:before {
 553    content: "\f07b";
 554  }
 555  .fa-folder-open:before {
 556    content: "\f07c";
 557  }
 558  .fa-arrows-v:before {
 559    content: "\f07d";
 560  }
 561  .fa-arrows-h:before {
 562    content: "\f07e";
 563  }
 564  .fa-bar-chart-o:before,
 565  .fa-bar-chart:before {
 566    content: "\f080";
 567  }
 568  .fa-twitter-square:before {
 569    content: "\f081";
 570  }
 571  .fa-facebook-square:before {
 572    content: "\f082";
 573  }
 574  .fa-camera-retro:before {
 575    content: "\f083";
 576  }
 577  .fa-key:before {
 578    content: "\f084";
 579  }
 580  .fa-gears:before,
 581  .fa-cogs:before {
 582    content: "\f085";
 583  }
 584  .fa-comments:before {
 585    content: "\f086";
 586  }
 587  .fa-thumbs-o-up:before {
 588    content: "\f087";
 589  }
 590  .fa-thumbs-o-down:before {
 591    content: "\f088";
 592  }
 593  .fa-star-half:before {
 594    content: "\f089";
 595  }
 596  .fa-heart-o:before {
 597    content: "\f08a";
 598  }
 599  .fa-sign-out:before {
 600    content: "\f08b";
 601  }
 602  .fa-linkedin-square:before {
 603    content: "\f08c";
 604  }
 605  .fa-thumb-tack:before {
 606    content: "\f08d";
 607  }
 608  .fa-external-link:before {
 609    content: "\f08e";
 610  }
 611  .fa-sign-in:before {
 612    content: "\f090";
 613  }
 614  .fa-trophy:before {
 615    content: "\f091";
 616  }
 617  .fa-github-square:before {
 618    content: "\f092";
 619  }
 620  .fa-upload:before {
 621    content: "\f093";
 622  }
 623  .fa-lemon-o:before {
 624    content: "\f094";
 625  }
 626  .fa-phone:before {
 627    content: "\f095";
 628  }
 629  .fa-square-o:before {
 630    content: "\f096";
 631  }
 632  .fa-bookmark-o:before {
 633    content: "\f097";
 634  }
 635  .fa-phone-square:before {
 636    content: "\f098";
 637  }
 638  .fa-twitter:before {
 639    content: "\f099";
 640  }
 641  .fa-facebook-f:before,
 642  .fa-facebook:before {
 643    content: "\f09a";
 644  }
 645  .fa-github:before {
 646    content: "\f09b";
 647  }
 648  .fa-unlock:before {
 649    content: "\f09c";
 650  }
 651  .fa-credit-card:before {
 652    content: "\f09d";
 653  }
 654  .fa-feed:before,
 655  .fa-rss:before {
 656    content: "\f09e";
 657  }
 658  .fa-hdd-o:before {
 659    content: "\f0a0";
 660  }
 661  .fa-bullhorn:before {
 662    content: "\f0a1";
 663  }
 664  .fa-bell-o:before {
 665    content: "\f0f3";
 666  }
 667  .fa-certificate:before {
 668    content: "\f0a3";
 669  }
 670  .fa-hand-o-right:before {
 671    content: "\f0a4";
 672  }
 673  .fa-hand-o-left:before {
 674    content: "\f0a5";
 675  }
 676  .fa-hand-o-up:before {
 677    content: "\f0a6";
 678  }
 679  .fa-hand-o-down:before {
 680    content: "\f0a7";
 681  }
 682  .fa-arrow-circle-left:before {
 683    content: "\f0a8";
 684  }
 685  .fa-arrow-circle-right:before {
 686    content: "\f0a9";
 687  }
 688  .fa-arrow-circle-up:before {
 689    content: "\f0aa";
 690  }
 691  .fa-arrow-circle-down:before {
 692    content: "\f0ab";
 693  }
 694  .fa-globe:before {
 695    content: "\f0ac";
 696  }
 697  .fa-globe-e:before {
 698    content: "\f304";
 699  }
 700  .fa-globe-w:before {
 701    content: "\f305";
 702  }
 703  .fa-wrench:before {
 704    content: "\f0ad";
 705  }
 706  .fa-tasks:before {
 707    content: "\f0ae";
 708  }
 709  .fa-filter:before {
 710    content: "\f0b0";
 711  }
 712  .fa-briefcase:before {
 713    content: "\f0b1";
 714  }
 715  .fa-arrows-alt:before {
 716    content: "\f0b2";
 717  }
 718  .fa-community:before,
 719  .fa-group:before,
 720  .fa-users:before {
 721    content: "\f0c0";
 722  }
 723  .fa-chain:before,
 724  .fa-link:before {
 725    content: "\f0c1";
 726  }
 727  .fa-cloud:before {
 728    content: "\f0c2";
 729  }
 730  .fa-flask:before {
 731    content: "\f0c3";
 732  }
 733  .fa-cut:before,
 734  .fa-scissors:before {
 735    content: "\f0c4";
 736  }
 737  .fa-copy:before,
 738  .fa-files-o:before {
 739    content: "\f0c5";
 740  }
 741  .fa-paperclip:before {
 742    content: "\f0c6";
 743  }
 744  .fa-save:before,
 745  .fa-floppy-o:before {
 746    content: "\f0c7";
 747  }
 748  .fa-square:before {
 749    content: "\f0c8";
 750  }
 751  .fa-navicon:before,
 752  .fa-reorder:before,
 753  .fa-bars:before {
 754    content: "\f0c9";
 755  }
 756  .fa-list-ul:before {
 757    content: "\f0ca";
 758  }
 759  .fa-list-ol:before {
 760    content: "\f0cb";
 761  }
 762  .fa-strikethrough:before {
 763    content: "\f0cc";
 764  }
 765  .fa-underline:before {
 766    content: "\f0cd";
 767  }
 768  .fa-table:before {
 769    content: "\f0ce";
 770  }
 771  .fa-magic:before {
 772    content: "\f0d0";
 773  }
 774  .fa-truck:before {
 775    content: "\f0d1";
 776  }
 777  .fa-pinterest:before {
 778    content: "\f0d2";
 779  }
 780  .fa-pinterest-square:before {
 781    content: "\f0d3";
 782  }
 783  .fa-google-plus-square:before {
 784    content: "\f0d4";
 785  }
 786  .fa-google-plus-g:before,
 787  .fa-google-plus:before {
 788    content: "\f0d5";
 789  }
 790  .fa-money:before {
 791    content: "\f0d6";
 792  }
 793  .fa-caret-down:before {
 794    content: "\f0d7";
 795  }
 796  .fa-caret-up:before {
 797    content: "\f0d8";
 798  }
 799  .fa-caret-left:before {
 800    content: "\f0d9";
 801  }
 802  .fa-caret-right:before {
 803    content: "\f0da";
 804  }
 805  .fa-columns:before {
 806    content: "\f0db";
 807  }
 808  .fa-unsorted:before,
 809  .fa-sort:before {
 810    content: "\f0dc";
 811  }
 812  .fa-sort-down:before,
 813  .fa-sort-desc:before {
 814    content: "\f0dd";
 815  }
 816  .fa-sort-up:before,
 817  .fa-sort-asc:before {
 818    content: "\f0de";
 819  }
 820  .fa-envelope:before {
 821    content: "\f0e0";
 822  }
 823  .fa-linkedin:before {
 824    content: "\f0e1";
 825  }
 826  .fa-rotate-left:before,
 827  .fa-undo:before {
 828    content: "\f0e2";
 829  }
 830  .fa-legal:before,
 831  .fa-gavel:before {
 832    content: "\f0e3";
 833  }
 834  .fa-dashboard:before,
 835  .fa-tachometer:before {
 836    content: "\f0e4";
 837  }
 838  .fa-comment-o:before {
 839    content: "\f0e5";
 840  }
 841  .fa-comments-o:before {
 842    content: "\f0e6";
 843  }
 844  .fa-flash:before,
 845  .fa-bolt:before {
 846    content: "\f0e7";
 847  }
 848  .fa-sitemap:before {
 849    content: "\f0e8";
 850  }
 851  .fa-umbrella:before {
 852    content: "\f0e9";
 853  }
 854  .fa-paste:before,
 855  .fa-clipboard:before {
 856    content: "\f0ea";
 857  }
 858  .fa-lightbulb-o:before {
 859    content: "\f0eb";
 860  }
 861  .fa-exchange:before {
 862    content: "\f0ec";
 863  }
 864  .fa-cloud-download:before {
 865    content: "\f0ed";
 866  }
 867  .fa-cloud-upload:before {
 868    content: "\f0ee";
 869  }
 870  .fa-user-md:before {
 871    content: "\f0f0";
 872  }
 873  .fa-stethoscope:before {
 874    content: "\f0f1";
 875  }
 876  .fa-suitcase:before {
 877    content: "\f0f2";
 878  }
 879  .fa-bell:before {
 880    content: "\f0a2";
 881  }
 882  .fa-coffee:before {
 883    content: "\f0f4";
 884  }
 885  .fa-utensils:before,
 886  .fa-cutlery:before {
 887    content: "\f0f5";
 888  }
 889  .fa-file-text-o:before {
 890    content: "\f0f6";
 891  }
 892  .fa-building-o:before {
 893    content: "\f0f7";
 894  }
 895  .fa-hospital-o:before {
 896    content: "\f0f8";
 897  }
 898  .fa-ambulance:before {
 899    content: "\f0f9";
 900  }
 901  .fa-medkit:before {
 902    content: "\f0fa";
 903  }
 904  .fa-fighter-jet:before {
 905    content: "\f0fb";
 906  }
 907  .fa-beer:before {
 908    content: "\f0fc";
 909  }
 910  .fa-h-square:before {
 911    content: "\f0fd";
 912  }
 913  .fa-plus-square:before {
 914    content: "\f0fe";
 915  }
 916  .fa-angle-double-left:before {
 917    content: "\f100";
 918  }
 919  .fa-angle-double-right:before {
 920    content: "\f101";
 921  }
 922  .fa-angle-double-up:before {
 923    content: "\f102";
 924  }
 925  .fa-angle-double-down:before {
 926    content: "\f103";
 927  }
 928  .fa-angle-left:before {
 929    content: "\f104";
 930  }
 931  .fa-angle-right:before {
 932    content: "\f105";
 933  }
 934  .fa-angle-up:before {
 935    content: "\f106";
 936  }
 937  .fa-angle-down:before {
 938    content: "\f107";
 939  }
 940  .fa-desktop:before {
 941    content: "\f108";
 942  }
 943  .fa-laptop:before {
 944    content: "\f109";
 945  }
 946  .fa-tablet:before {
 947    content: "\f10a";
 948  }
 949  .fa-mobile-phone:before,
 950  .fa-mobile:before {
 951    content: "\f10b";
 952  }
 953  .fa-circle-o:before {
 954    content: "\f10c";
 955  }
 956  .fa-quote-left:before {
 957    content: "\f10d";
 958  }
 959  .fa-quote-right:before {
 960    content: "\f10e";
 961  }
 962  .fa-spinner:before {
 963    content: "\f110";
 964  }
 965  .fa-circle:before {
 966    content: "\f111";
 967  }
 968  .fa-mail-reply:before,
 969  .fa-reply:before {
 970    content: "\f112";
 971  }
 972  .fa-github-alt:before {
 973    content: "\f113";
 974  }
 975  .fa-folder-o:before {
 976    content: "\f114";
 977  }
 978  .fa-folder-open-o:before {
 979    content: "\f115";
 980  }
 981  .fa-smile-o:before {
 982    content: "\f118";
 983  }
 984  .fa-frown-o:before {
 985    content: "\f119";
 986  }
 987  .fa-meh-o:before {
 988    content: "\f11a";
 989  }
 990  .fa-gamepad:before {
 991    content: "\f11b";
 992  }
 993  .fa-keyboard-o:before {
 994    content: "\f11c";
 995  }
 996  .fa-flag-o:before {
 997    content: "\f11d";
 998  }
 999  .fa-flag-checkered:before {
1000    content: "\f11e";
1001  }
1002  .fa-terminal:before {
1003    content: "\f120";
1004  }
1005  .fa-code:before {
1006    content: "\f121";
1007  }
1008  .fa-mail-reply-all:before,
1009  .fa-reply-all:before {
1010    content: "\f122";
1011  }
1012  .fa-star-half-empty:before,
1013  .fa-star-half-full:before,
1014  .fa-star-half-o:before {
1015    content: "\f123";
1016  }
1017  .fa-location-arrow:before {
1018    content: "\f124";
1019  }
1020  .fa-crop:before {
1021    content: "\f125";
1022  }
1023  .fa-code-fork:before {
1024    content: "\f126";
1025  }
1026  .fa-unlink:before,
1027  .fa-chain-broken:before {
1028    content: "\f127";
1029  }
1030  .fa-question:before {
1031    content: "\f128";
1032  }
1033  .fa-info:before {
1034    content: "\f129";
1035  }
1036  .fa-exclamation:before {
1037    content: "\f12a";
1038  }
1039  .fa-superscript:before {
1040    content: "\f12b";
1041  }
1042  .fa-subscript:before {
1043    content: "\f12c";
1044  }
1045  .fa-eraser:before {
1046    content: "\f12d";
1047  }
1048  .fa-puzzle-piece:before {
1049    content: "\f12e";
1050  }
1051  .fa-microphone:before {
1052    content: "\f130";
1053  }
1054  .fa-microphone-slash:before {
1055    content: "\f131";
1056  }
1057  .fa-shield:before {
1058    content: "\f132";
1059  }
1060  .fa-calendar-o:before {
1061    content: "\f133";
1062  }
1063  .fa-fire-extinguisher:before {
1064    content: "\f134";
1065  }
1066  .fa-rocket:before {
1067    content: "\f135";
1068  }
1069  .fa-maxcdn:before {
1070    content: "\f136";
1071  }
1072  .fa-chevron-circle-left:before {
1073    content: "\f137";
1074  }
1075  .fa-chevron-circle-right:before {
1076    content: "\f138";
1077  }
1078  .fa-chevron-circle-up:before {
1079    content: "\f139";
1080  }
1081  .fa-chevron-circle-down:before {
1082    content: "\f13a";
1083  }
1084  .fa-html5:before {
1085    content: "\f13b";
1086  }
1087  .fa-css3:before {
1088    content: "\f13c";
1089  }
1090  .fa-anchor:before {
1091    content: "\f13d";
1092  }
1093  .fa-unlock-alt:before {
1094    content: "\f13e";
1095  }
1096  .fa-bullseye:before {
1097    content: "\f140";
1098  }
1099  .fa-ellipsis-h:before {
1100    content: "\f141";
1101  }
1102  .fa-ellipsis-v:before {
1103    content: "\f142";
1104  }
1105  .fa-rss-square:before {
1106    content: "\f143";
1107  }
1108  .fa-play-circle:before {
1109    content: "\f144";
1110  }
1111  .fa-ticket:before {
1112    content: "\f145";
1113  }
1114  .fa-minus-square:before {
1115    content: "\f146";
1116  }
1117  .fa-minus-square-o:before {
1118    content: "\f147";
1119  }
1120  .fa-level-up:before {
1121    content: "\f148";
1122  }
1123  .fa-level-down:before {
1124    content: "\f149";
1125  }
1126  .fa-check-square:before {
1127    content: "\f14a";
1128  }
1129  .fa-pencil-square:before {
1130    content: "\f14b";
1131  }
1132  .fa-external-link-square:before {
1133    content: "\f14c";
1134  }
1135  .fa-share-square:before {
1136    content: "\f14d";
1137  }
1138  .fa-compass:before {
1139    content: "\f14e";
1140  }
1141  .fa-toggle-down:before,
1142  .fa-caret-square-o-down:before {
1143    content: "\f150";
1144  }
1145  .fa-toggle-up:before,
1146  .fa-caret-square-o-up:before {
1147    content: "\f151";
1148  }
1149  .fa-toggle-right:before,
1150  .fa-caret-square-o-right:before {
1151    content: "\f152";
1152  }
1153  .fa-euro:before,
1154  .fa-eur:before {
1155    content: "\f153";
1156  }
1157  .fa-pound:before,
1158  .fa-gbp:before {
1159    content: "\f154";
1160  }
1161  .fa-dollar:before,
1162  .fa-usd:before {
1163    content: "\f155";
1164  }
1165  .fa-rupee:before,
1166  .fa-inr:before {
1167    content: "\f156";
1168  }
1169  .fa-cny:before,
1170  .fa-rmb:before,
1171  .fa-yen:before,
1172  .fa-jpy:before {
1173    content: "\f157";
1174  }
1175  .fa-ruble:before,
1176  .fa-rouble:before,
1177  .fa-rub:before {
1178    content: "\f158";
1179  }
1180  .fa-won:before,
1181  .fa-krw:before {
1182    content: "\f159";
1183  }
1184  .fa-bitcoin:before,
1185  .fa-btc:before {
1186    content: "\f15a";
1187  }
1188  .fa-file:before {
1189    content: "\f15b";
1190  }
1191  .fa-file-text:before {
1192    content: "\f15c";
1193  }
1194  .fa-sort-alpha-down:before,
1195  .fa-sort-alpha-asc:before {
1196    content: "\f15d";
1197  }
1198  .fa-sort-alpha-up:before,
1199  .fa-sort-alpha-desc:before {
1200    content: "\f15e";
1201  }
1202  .fa-sort-amount-down:before,
1203  .fa-sort-amount-asc:before {
1204    content: "\f160";
1205  }
1206  .fa-sort-amount-up:before,
1207  .fa-sort-amount-desc:before {
1208    content: "\f161";
1209  }
1210  .fa-sort-numeric-down:before,
1211  .fa-sort-numeric-asc:before {
1212    content: "\f162";
1213  }
1214  .fa-sort-numeric-up:before,
1215  .fa-sort-numeric-desc:before {
1216    content: "\f163";
1217  }
1218  .fa-thumbs-up:before {
1219    content: "\f164";
1220  }
1221  .fa-thumbs-down:before {
1222    content: "\f165";
1223  }
1224  .fa-youtube-square:before {
1225    content: "\f166";
1226  }
1227  .fa-youtube:before {
1228    content: "\f167";
1229  }
1230  .fa-xing:before {
1231    content: "\f168";
1232  }
1233  .fa-xing-square:before {
1234    content: "\f169";
1235  }
1236  .fa-youtube-play:before {
1237    content: "\f16a";
1238  }
1239  .fa-dropbox:before {
1240    content: "\f16b";
1241  }
1242  .fa-stack-overflow:before {
1243    content: "\f16c";
1244  }
1245  .fa-instagram:before {
1246    content: "\f16d";
1247  }
1248  .fa-flickr:before {
1249    content: "\f16e";
1250  }
1251  .fa-adn:before {
1252    content: "\f170";
1253  }
1254  .fa-bitbucket:before {
1255    content: "\f171";
1256  }
1257  .fa-bitbucket-square:before {
1258    content: "\f172";
1259  }
1260  .fa-tumblr:before {
1261    content: "\f173";
1262  }
1263  .fa-tumblr-square:before {
1264    content: "\f174";
1265  }
1266  .fa-long-arrow-down:before {
1267    content: "\f175";
1268  }
1269  .fa-long-arrow-up:before {
1270    content: "\f176";
1271  }
1272  .fa-long-arrow-left:before {
1273    content: "\f177";
1274  }
1275  .fa-long-arrow-right:before {
1276    content: "\f178";
1277  }
1278  .fa-apple:before {
1279    content: "\f179";
1280  }
1281  .fa-windows:before {
1282    content: "\f17a";
1283  }
1284  .fa-android:before {
1285    content: "\f17b";
1286  }
1287  .fa-linux:before {
1288    content: "\f17c";
1289  }
1290  .fa-dribbble:before {
1291    content: "\f17d";
1292  }
1293  .fa-skype:before {
1294    content: "\f17e";
1295  }
1296  .fa-foursquare:before {
1297    content: "\f180";
1298  }
1299  .fa-trello:before {
1300    content: "\f181";
1301  }
1302  .fa-female:before {
1303    content: "\f182";
1304  }
1305  .fa-male:before {
1306    content: "\f183";
1307  }
1308  .fa-gittip:before,
1309  .fa-gratipay:before {
1310    content: "\f184";
1311  }
1312  .fa-sun-o:before {
1313    content: "\f185";
1314  }
1315  .fa-moon-o:before {
1316    content: "\f186";
1317  }
1318  .fa-archive:before {
1319    content: "\f187";
1320  }
1321  .fa-bug:before {
1322    content: "\f188";
1323  }
1324  .fa-vk:before {
1325    content: "\f189";
1326  }
1327  .fa-weibo:before {
1328    content: "\f18a";
1329  }
1330  .fa-renren:before {
1331    content: "\f18b";
1332  }
1333  .fa-pagelines:before {
1334    content: "\f18c";
1335  }
1336  .fa-stack-exchange:before {
1337    content: "\f18d";
1338  }
1339  .fa-arrow-circle-o-right:before {
1340    content: "\f18e";
1341  }
1342  .fa-arrow-circle-o-left:before {
1343    content: "\f190";
1344  }
1345  .fa-toggle-left:before,
1346  .fa-caret-square-o-left:before {
1347    content: "\f191";
1348  }
1349  .fa-dot-circle-o:before {
1350    content: "\f192";
1351  }
1352  .fa-wheelchair:before {
1353    content: "\f193";
1354  }
1355  .fa-vimeo-square:before {
1356    content: "\f194";
1357  }
1358  .fa-turkish-lira:before,
1359  .fa-try:before {
1360    content: "\f195";
1361  }
1362  .fa-plus-square-o:before {
1363    content: "\f196";
1364  }
1365  .fa-space-shuttle:before {
1366    content: "\f197";
1367  }
1368  .fa-slack:before {
1369    content: "\f198";
1370  }
1371  .fa-envelope-square:before {
1372    content: "\f199";
1373  }
1374  .fa-wordpress:before {
1375    content: "\f19a";
1376  }
1377  .fa-openid:before {
1378    content: "\f19b";
1379  }
1380  .fa-institution:before,
1381  .fa-bank:before,
1382  .fa-university:before {
1383    content: "\f19c";
1384  }
1385  .fa-mortar-board:before,
1386  .fa-graduation-cap:before {
1387    content: "\f19d";
1388  }
1389  .fa-yahoo:before {
1390    content: "\f19e";
1391  }
1392  .fa-google:before {
1393    content: "\f1a0";
1394  }
1395  .fa-reddit:before {
1396    content: "\f1a1";
1397  }
1398  .fa-reddit-square:before {
1399    content: "\f1a2";
1400  }
1401  .fa-stumbleupon-circle:before {
1402    content: "\f1a3";
1403  }
1404  .fa-stumbleupon:before {
1405    content: "\f1a4";
1406  }
1407  .fa-delicious:before {
1408    content: "\f1a5";
1409  }
1410  .fa-digg:before {
1411    content: "\f1a6";
1412  }
1413  .fa-drupal:before {
1414    content: "\f1a9";
1415  }
1416  .fa-joomla:before {
1417    content: "\f1aa";
1418  }
1419  .fa-language:before {
1420    content: "\f1ab";
1421  }
1422  .fa-fax:before {
1423    content: "\f1ac";
1424  }
1425  .fa-building:before {
1426    content: "\f1ad";
1427  }
1428  .fa-child:before {
1429    content: "\f1ae";
1430  }
1431  .fa-paw:before {
1432    content: "\f1b0";
1433  }
1434  .fa-utensil-spoon:before,
1435  .fa-spoon:before {
1436    content: "\f1b1";
1437  }
1438  .fa-cube:before {
1439    content: "\f1b2";
1440  }
1441  .fa-cubes:before {
1442    content: "\f1b3";
1443  }
1444  .fa-behance:before {
1445    content: "\f1b4";
1446  }
1447  .fa-behance-square:before {
1448    content: "\f1b5";
1449  }
1450  .fa-steam:before {
1451    content: "\f1b6";
1452  }
1453  .fa-steam-square:before {
1454    content: "\f1b7";
1455  }
1456  .fa-recycle:before {
1457    content: "\f1b8";
1458  }
1459  .fa-automobile:before,
1460  .fa-car:before {
1461    content: "\f1b9";
1462  }
1463  .fa-cab:before,
1464  .fa-taxi:before {
1465    content: "\f1ba";
1466  }
1467  .fa-tree:before {
1468    content: "\f1bb";
1469  }
1470  .fa-spotify:before {
1471    content: "\f1bc";
1472  }
1473  .fa-deviantart:before {
1474    content: "\f1bd";
1475  }
1476  .fa-soundcloud:before {
1477    content: "\f1be";
1478  }
1479  .fa-database:before {
1480    content: "\f1c0";
1481  }
1482  .fa-file-pdf-o:before {
1483    content: "\f1c1";
1484  }
1485  .fa-file-word-o:before {
1486    content: "\f1c2";
1487  }
1488  .fa-file-excel-o:before {
1489    content: "\f1c3";
1490  }
1491  .fa-file-powerpoint-o:before {
1492    content: "\f1c4";
1493  }
1494  .fa-file-photo-o:before,
1495  .fa-file-picture-o:before,
1496  .fa-file-image-o:before {
1497    content: "\f1c5";
1498  }
1499  .fa-file-zip-o:before,
1500  .fa-file-archive-o:before {
1501    content: "\f1c6";
1502  }
1503  .fa-file-sound-o:before,
1504  .fa-file-audio-o:before {
1505    content: "\f1c7";
1506  }
1507  .fa-file-movie-o:before,
1508  .fa-file-video-o:before {
1509    content: "\f1c8";
1510  }
1511  .fa-file-code-o:before {
1512    content: "\f1c9";
1513  }
1514  .fa-vine:before {
1515    content: "\f1ca";
1516  }
1517  .fa-codepen:before {
1518    content: "\f1cb";
1519  }
1520  .fa-jsfiddle:before {
1521    content: "\f1cc";
1522  }
1523  .fa-life-bouy:before,
1524  .fa-life-buoy:before,
1525  .fa-life-saver:before,
1526  .fa-support:before,
1527  .fa-life-ring:before {
1528    content: "\f1cd";
1529  }
1530  .fa-circle-o-notch:before {
1531    content: "\f1ce";
1532  }
1533  .fa-ra:before,
1534  .fa-resistance:before,
1535  .fa-rebel:before {
1536    content: "\f1d0";
1537  }
1538  .fa-ge:before,
1539  .fa-empire:before {
1540    content: "\f1d1";
1541  }
1542  .fa-git-square:before {
1543    content: "\f1d2";
1544  }
1545  .fa-git:before {
1546    content: "\f1d3";
1547  }
1548  .fa-y-combinator-square:before,
1549  .fa-yc-square:before,
1550  .fa-hacker-news:before {
1551    content: "\f1d4";
1552  }
1553  .fa-tencent-weibo:before {
1554    content: "\f1d5";
1555  }
1556  .fa-qq:before {
1557    content: "\f1d6";
1558  }
1559  .fa-wechat:before,
1560  .fa-weixin:before {
1561    content: "\f1d7";
1562  }
1563  .fa-send:before,
1564  .fa-paper-plane:before {
1565    content: "\f1d8";
1566  }
1567  .fa-send-o:before,
1568  .fa-paper-plane-o:before {
1569    content: "\f1d9";
1570  }
1571  .fa-history:before {
1572    content: "\f1da";
1573  }
1574  .fa-circle-thin:before {
1575    content: "\f1db";
1576  }
1577  .fa-heading:before,
1578  .fa-header:before {
1579    content: "\f1dc";
1580  }
1581  .fa-paragraph:before {
1582    content: "\f1dd";
1583  }
1584  .fa-sliders:before {
1585    content: "\f1de";
1586  }
1587  .fa-share-alt:before {
1588    content: "\f1e0";
1589  }
1590  .fa-share-alt-square:before {
1591    content: "\f1e1";
1592  }
1593  .fa-bomb:before {
1594    content: "\f1e2";
1595  }
1596  .fa-soccer-ball-o:before,
1597  .fa-futbol-o:before {
1598    content: "\f1e3";
1599  }
1600  .fa-tty:before {
1601    content: "\f1e4";
1602  }
1603  .fa-binoculars:before {
1604    content: "\f1e5";
1605  }
1606  .fa-plug:before {
1607    content: "\f1e6";
1608  }
1609  .fa-slideshare:before {
1610    content: "\f1e7";
1611  }
1612  .fa-twitch:before {
1613    content: "\f1e8";
1614  }
1615  .fa-yelp:before {
1616    content: "\f1e9";
1617  }
1618  .fa-newspaper-o:before {
1619    content: "\f1ea";
1620  }
1621  .fa-wifi:before {
1622    content: "\f1eb";
1623  }
1624  .fa-calculator:before {
1625    content: "\f1ec";
1626  }
1627  .fa-paypal:before {
1628    content: "\f1ed";
1629  }
1630  .fa-google-wallet:before {
1631    content: "\f1ee";
1632  }
1633  .fa-cc-visa:before {
1634    content: "\f1f0";
1635  }
1636  .fa-cc-mastercard:before {
1637    content: "\f1f1";
1638  }
1639  .fa-cc-discover:before {
1640    content: "\f1f2";
1641  }
1642  .fa-cc-amex:before {
1643    content: "\f1f3";
1644  }
1645  .fa-cc-paypal:before {
1646    content: "\f1f4";
1647  }
1648  .fa-cc-stripe:before {
1649    content: "\f1f5";
1650  }
1651  .fa-bell-slash:before {
1652    content: "\f1f6";
1653  }
1654  .fa-bell-slash-o:before {
1655    content: "\f1f7";
1656  }
1657  .fa-trash:before {
1658    content: "\f1f8";
1659  }
1660  .fa-copyright:before {
1661    content: "\f1f9";
1662  }
1663  .fa-at:before {
1664    content: "\f1fa";
1665  }
1666  .fa-eyedropper:before {
1667    content: "\f1fb";
1668  }
1669  .fa-paint-brush:before {
1670    content: "\f1fc";
1671  }
1672  .fa-birthday-cake:before {
1673    content: "\f1fd";
1674  }
1675  .fa-area-chart:before {
1676    content: "\f1fe";
1677  }
1678  .fa-pie-chart:before {
1679    content: "\f200";
1680  }
1681  .fa-line-chart:before {
1682    content: "\f201";
1683  }
1684  .fa-lastfm:before {
1685    content: "\f202";
1686  }
1687  .fa-lastfm-square:before {
1688    content: "\f203";
1689  }
1690  .fa-toggle-off:before {
1691    content: "\f204";
1692  }
1693  .fa-toggle-on:before {
1694    content: "\f205";
1695  }
1696  .fa-bicycle:before {
1697    content: "\f206";
1698  }
1699  .fa-bus:before {
1700    content: "\f207";
1701  }
1702  .fa-ioxhost:before {
1703    content: "\f208";
1704  }
1705  .fa-angellist:before {
1706    content: "\f209";
1707  }
1708  .fa-closed-captioning:before,
1709  .fa-cc:before {
1710    content: "\f20a";
1711  }
1712  .fa-shekel:before,
1713  .fa-sheqel:before,
1714  .fa-ils:before {
1715    content: "\f20b";
1716  }
1717  .fa-meanpath:before {
1718    content: "\f20c";
1719  }
1720  .fa-buysellads:before {
1721    content: "\f20d";
1722  }
1723  .fa-connectdevelop:before {
1724    content: "\f20e";
1725  }
1726  .fa-dashcube:before {
1727    content: "\f210";
1728  }
1729  .fa-forumbee:before {
1730    content: "\f211";
1731  }
1732  .fa-leanpub:before {
1733    content: "\f212";
1734  }
1735  .fa-sellsy:before {
1736    content: "\f213";
1737  }
1738  .fa-shirtsinbulk:before {
1739    content: "\f214";
1740  }
1741  .fa-simplybuilt:before {
1742    content: "\f215";
1743  }
1744  .fa-skyatlas:before {
1745    content: "\f216";
1746  }
1747  .fa-cart-plus:before {
1748    content: "\f217";
1749  }
1750  .fa-cart-arrow-down:before {
1751    content: "\f218";
1752  }
1753  .fa-gem:before,
1754  .fa-diamond:before {
1755    content: "\f219";
1756  }
1757  .fa-ship:before {
1758    content: "\f21a";
1759  }
1760  .fa-user-secret:before {
1761    content: "\f21b";
1762  }
1763  .fa-motorcycle:before {
1764    content: "\f21c";
1765  }
1766  .fa-street-view:before {
1767    content: "\f21d";
1768  }
1769  .fa-heartbeat:before {
1770    content: "\f21e";
1771  }
1772  .fa-venus:before {
1773    content: "\f221";
1774  }
1775  .fa-mars:before {
1776    content: "\f222";
1777  }
1778  .fa-mercury:before {
1779    content: "\f223";
1780  }
1781  .fa-intersex:before,
1782  .fa-transgender:before {
1783    content: "\f224";
1784  }
1785  .fa-transgender-alt:before {
1786    content: "\f225";
1787  }
1788  .fa-venus-double:before {
1789    content: "\f226";
1790  }
1791  .fa-mars-double:before {
1792    content: "\f227";
1793  }
1794  .fa-venus-mars:before {
1795    content: "\f228";
1796  }
1797  .fa-mars-stroke:before {
1798    content: "\f229";
1799  }
1800  .fa-mars-stroke-v:before {
1801    content: "\f22a";
1802  }
1803  .fa-mars-stroke-h:before {
1804    content: "\f22b";
1805  }
1806  .fa-neuter:before {
1807    content: "\f22c";
1808  }
1809  .fa-genderless:before {
1810    content: "\f22d";
1811  }
1812  .fa-facebook-official:before {
1813    content: "\f230";
1814  }
1815  .fa-pinterest-p:before {
1816    content: "\f231";
1817  }
1818  .fa-whatsapp:before {
1819    content: "\f232";
1820  }
1821  .fa-server:before {
1822    content: "\f233";
1823  }
1824  .fa-user-plus:before {
1825    content: "\f234";
1826  }
1827  .fa-user-times:before {
1828    content: "\f235";
1829  }
1830  .fa-hotel:before,
1831  .fa-bed:before {
1832    content: "\f236";
1833  }
1834  .fa-viacoin:before {
1835    content: "\f237";
1836  }
1837  .fa-train:before {
1838    content: "\f238";
1839  }
1840  .fa-subway:before {
1841    content: "\f239";
1842  }
1843  .fa-medium:before {
1844    content: "\f23a";
1845  }
1846  .fa-medium-square:before {
1847    content: "\f2f8";
1848  }
1849  .fa-yc:before,
1850  .fa-y-combinator:before {
1851    content: "\f23b";
1852  }
1853  .fa-optin-monster:before {
1854    content: "\f23c";
1855  }
1856  .fa-opencart:before {
1857    content: "\f23d";
1858  }
1859  .fa-expeditedssl:before {
1860    content: "\f23e";
1861  }
1862  .fa-battery-4:before,
1863  .fa-battery:before,
1864  .fa-battery-full:before {
1865    content: "\f240";
1866  }
1867  .fa-battery-3:before,
1868  .fa-battery-three-quarters:before {
1869    content: "\f241";
1870  }
1871  .fa-battery-2:before,
1872  .fa-battery-half:before {
1873    content: "\f242";
1874  }
1875  .fa-battery-1:before,
1876  .fa-battery-quarter:before {
1877    content: "\f243";
1878  }
1879  .fa-battery-0:before,
1880  .fa-battery-empty:before {
1881    content: "\f244";
1882  }
1883  .fa-mouse-pointer:before {
1884    content: "\f245";
1885  }
1886  .fa-i-cursor:before {
1887    content: "\f246";
1888  }
1889  .fa-object-group:before {
1890    content: "\f247";
1891  }
1892  .fa-object-ungroup:before {
1893    content: "\f248";
1894  }
1895  .fa-sticky-note:before {
1896    content: "\f249";
1897  }
1898  .fa-sticky-note-o:before {
1899    content: "\f24a";
1900  }
1901  .fa-cc-jcb:before {
1902    content: "\f24b";
1903  }
1904  .fa-cc-diners-club:before {
1905    content: "\f24c";
1906  }
1907  .fa-clone:before {
1908    content: "\f24d";
1909  }
1910  .fa-balance-scale:before {
1911    content: "\f24e";
1912  }
1913  .fa-hourglass-o:before {
1914    content: "\f250";
1915  }
1916  .fa-hourglass-1:before,
1917  .fa-hourglass-start:before {
1918    content: "\f251";
1919  }
1920  .fa-hourglass-2:before,
1921  .fa-hourglass-half:before {
1922    content: "\f252";
1923  }
1924  .fa-hourglass-3:before,
1925  .fa-hourglass-end:before {
1926    content: "\f253";
1927  }
1928  .fa-hourglass:before {
1929    content: "\f254";
1930  }
1931  .fa-hand-grab-o:before,
1932  .fa-hand-rock-o:before {
1933    content: "\f255";
1934  }
1935  .fa-hand-stop-o:before,
1936  .fa-hand-paper-o:before {
1937    content: "\f256";
1938  }
1939  .fa-hand-scissors-o:before {
1940    content: "\f257";
1941  }
1942  .fa-hand-lizard-o:before {
1943    content: "\f258";
1944  }
1945  .fa-hand-spock-o:before {
1946    content: "\f259";
1947  }
1948  .fa-hand-pointer-o:before {
1949    content: "\f25a";
1950  }
1951  .fa-hand-peace-o:before {
1952    content: "\f25b";
1953  }
1954  .fa-trademark:before {
1955    content: "\f25c";
1956  }
1957  .fa-registered:before {
1958    content: "\f25d";
1959  }
1960  .fa-creative-commons:before {
1961    content: "\f25e";
1962  }
1963  .fa-gg:before {
1964    content: "\f260";
1965  }
1966  .fa-gg-circle:before {
1967    content: "\f261";
1968  }
1969  .fa-tripadvisor:before {
1970    content: "\f262";
1971  }
1972  .fa-odnoklassniki:before {
1973    content: "\f263";
1974  }
1975  .fa-odnoklassniki-square:before {
1976    content: "\f264";
1977  }
1978  .fa-get-pocket:before {
1979    content: "\f265";
1980  }
1981  .fa-wikipedia-w:before {
1982    content: "\f266";
1983  }
1984  .fa-safari:before {
1985    content: "\f267";
1986  }
1987  .fa-chrome:before {
1988    content: "\f268";
1989  }
1990  .fa-firefox:before {
1991    content: "\f269";
1992  }
1993  .fa-opera:before {
1994    content: "\f26a";
1995  }
1996  .fa-internet-explorer:before {
1997    content: "\f26b";
1998  }
1999  .fa-tv:before,
2000  .fa-television:before {
2001    content: "\f26c";
2002  }
2003  .fa-contao:before {
2004    content: "\f26d";
2005  }
2006  .fa-500px:before {
2007    content: "\f26e";
2008  }
2009  .fa-amazon:before {
2010    content: "\f270";
2011  }
2012  .fa-calendar-plus-o:before {
2013    content: "\f271";
2014  }
2015  .fa-calendar-minus-o:before {
2016    content: "\f272";
2017  }
2018  .fa-calendar-times-o:before {
2019    content: "\f273";
2020  }
2021  .fa-calendar-check-o:before {
2022    content: "\f274";
2023  }
2024  .fa-industry:before {
2025    content: "\f275";
2026  }
2027  .fa-map-pin:before {
2028    content: "\f276";
2029  }
2030  .fa-map-signs:before {
2031    content: "\f277";
2032  }
2033  .fa-map-o:before {
2034    content: "\f278";
2035  }
2036  .fa-map:before {
2037    content: "\f279";
2038  }
2039  .fa-commenting:before {
2040    content: "\f27a";
2041  }
2042  .fa-commenting-o:before {
2043    content: "\f27b";
2044  }
2045  .fa-houzz:before {
2046    content: "\f27c";
2047  }
2048  .fa-vimeo-v:before,
2049  .fa-vimeo:before {
2050    content: "\f27d";
2051  }
2052  .fa-black-tie:before {
2053    content: "\f27e";
2054  }
2055  .fa-fonticons:before {
2056    content: "\f280";
2057  }
2058  .fa-reddit-alien:before {
2059    content: "\f281";
2060  }
2061  .fa-edge:before {
2062    content: "\f282";
2063  }
2064  .fa-credit-card-alt:before {
2065    content: "\f283";
2066  }
2067  .fa-codiepie:before {
2068    content: "\f284";
2069  }
2070  .fa-modx:before {
2071    content: "\f285";
2072  }
2073  .fa-fort-awesome:before {
2074    content: "\f286";
2075  }
2076  .fa-usb:before {
2077    content: "\f287";
2078  }
2079  .fa-product-hunt:before {
2080    content: "\f288";
2081  }
2082  .fa-mixcloud:before {
2083    content: "\f289";
2084  }
2085  .fa-scribd:before {
2086    content: "\f28a";
2087  }
2088  .fa-pause-circle:before {
2089    content: "\f28b";
2090  }
2091  .fa-pause-circle-o:before {
2092    content: "\f28c";
2093  }
2094  .fa-stop-circle:before {
2095    content: "\f28d";
2096  }
2097  .fa-stop-circle-o:before {
2098    content: "\f28e";
2099  }
2100  .fa-shopping-bag:before {
2101    content: "\f290";
2102  }
2103  .fa-shopping-basket:before {
2104    content: "\f291";
2105  }
2106  .fa-hashtag:before {
2107    content: "\f292";
2108  }
2109  .fa-bluetooth:before {
2110    content: "\f293";
2111  }
2112  .fa-bluetooth-b:before {
2113    content: "\f294";
2114  }
2115  .fa-percent:before {
2116    content: "\f295";
2117  }
2118  .fa-gitlab:before {
2119    content: "\f296";
2120  }
2121  .fa-wpbeginner:before {
2122    content: "\f297";
2123  }
2124  .fa-wpforms:before {
2125    content: "\f298";
2126  }
2127  .fa-envira:before {
2128    content: "\f299";
2129  }
2130  .fa-universal-access:before {
2131    content: "\f29a";
2132  }
2133  .fa-wheelchair-alt:before {
2134    content: "\f29b";
2135  }
2136  .fa-question-circle-o:before {
2137    content: "\f29c";
2138  }
2139  .fa-blind:before {
2140    content: "\f29d";
2141  }
2142  .fa-audio-description:before {
2143    content: "\f29e";
2144  }
2145  .fa-phone-volume:before,
2146  .fa-volume-control-phone:before {
2147    content: "\f2a0";
2148  }
2149  .fa-braille:before {
2150    content: "\f2a1";
2151  }
2152  .fa-assistive-listening-systems:before {
2153    content: "\f2a2";
2154  }
2155  .fa-asl-interpreting:before,
2156  .fa-american-sign-language-interpreting:before {
2157    content: "\f2a3";
2158  }
2159  .fa-deafness:before,
2160  .fa-hard-of-hearing:before,
2161  .fa-deaf:before {
2162    content: "\f2a4";
2163  }
2164  .fa-glide:before {
2165    content: "\f2a5";
2166  }
2167  .fa-glide-g:before {
2168    content: "\f2a6";
2169  }
2170  .fa-signing:before,
2171  .fa-sign-language:before {
2172    content: "\f2a7";
2173  }
2174  .fa-low-vision:before {
2175    content: "\f2a8";
2176  }
2177  .fa-viadeo:before {
2178    content: "\f2a9";
2179  }
2180  .fa-viadeo-square:before {
2181    content: "\f2aa";
2182  }
2183  .fa-snapchat:before {
2184    content: "\f2ab";
2185  }
2186  .fa-snapchat-ghost:before {
2187    content: "\f2ac";
2188  }
2189  .fa-snapchat-square:before {
2190    content: "\f2ad";
2191  }
2192  .fa-first-order:before {
2193    content: "\f2b0";
2194  }
2195  .fa-yoast:before {
2196    content: "\f2b1";
2197  }
2198  .fa-themeisle:before {
2199    content: "\f2b2";
2200  }
2201  .fa-google-plus-circle:before,
2202  .fa-google-plus-official:before {
2203    content: "\f2b3";
2204  }
2205  .fa-fa:before,
2206  .fa-font-awesome:before {
2207    content: "\f2b4";
2208  }
2209  .fa-handshake-o:before {
2210    content: "\f2b5";
2211  }
2212  .fa-envelope-open:before {
2213    content: "\f2b6";
2214  }
2215  .fa-envelope-open-o:before {
2216    content: "\f2b7";
2217  }
2218  .fa-linode:before {
2219    content: "\f2b8";
2220  }
2221  .fa-address-book:before {
2222    content: "\f2b9";
2223  }
2224  .fa-address-book-o:before {
2225    content: "\f2ba";
2226  }
2227  .fa-vcard:before,
2228  .fa-address-card:before {
2229    content: "\f2bb";
2230  }
2231  .fa-vcard-o:before,
2232  .fa-address-card-o:before {
2233    content: "\f2bc";
2234  }
2235  .fa-user-circle:before {
2236    content: "\f2bd";
2237  }
2238  .fa-user-circle-o:before {
2239    content: "\f2be";
2240  }
2241  .fa-user-o:before {
2242    content: "\f2c0";
2243  }
2244  .fa-id-badge:before {
2245    content: "\f2c1";
2246  }
2247  .fa-drivers-license:before,
2248  .fa-id-card:before {
2249    content: "\f2c2";
2250  }
2251  .fa-drivers-license-o:before,
2252  .fa-id-card-o:before {
2253    content: "\f2c3";
2254  }
2255  .fa-quora:before {
2256    content: "\f2c4";
2257  }
2258  .fa-free-code-camp:before {
2259    content: "\f2c5";
2260  }
2261  .fa-telegram:before {
2262    content: "\f2c6";
2263  }
2264  .fa-thermometer-4:before,
2265  .fa-thermometer:before,
2266  .fa-thermometer-full:before {
2267    content: "\f2c7";
2268  }
2269  .fa-thermometer-3:before,
2270  .fa-thermometer-three-quarters:before {
2271    content: "\f2c8";
2272  }
2273  .fa-thermometer-2:before,
2274  .fa-thermometer-half:before {
2275    content: "\f2c9";
2276  }
2277  .fa-thermometer-1:before,
2278  .fa-thermometer-quarter:before {
2279    content: "\f2ca";
2280  }
2281  .fa-thermometer-0:before,
2282  .fa-thermometer-empty:before {
2283    content: "\f2cb";
2284  }
2285  .fa-shower:before {
2286    content: "\f2cc";
2287  }
2288  .fa-bathtub:before,
2289  .fa-s15:before,
2290  .fa-bath:before {
2291    content: "\f2cd";
2292  }
2293  .fa-podcast:before {
2294    content: "\f2ce";
2295  }
2296  .fa-window-maximize:before {
2297    content: "\f2d0";
2298  }
2299  .fa-window-minimize:before {
2300    content: "\f2d1";
2301  }
2302  .fa-window-restore:before {
2303    content: "\f2d2";
2304  }
2305  .fa-times-rectangle:before,
2306  .fa-window-close:before {
2307    content: "\f2d3";
2308  }
2309  .fa-times-rectangle-o:before,
2310  .fa-window-close-o:before {
2311    content: "\f2d4";
2312  }
2313  .fa-bandcamp:before {
2314    content: "\f2d5";
2315  }
2316  .fa-grav:before {
2317    content: "\f2d6";
2318  }
2319  .fa-etsy:before {
2320    content: "\f2d7";
2321  }
2322  .fa-imdb:before {
2323    content: "\f2d8";
2324  }
2325  .fa-ravelry:before {
2326    content: "\f2d9";
2327  }
2328  .fa-eercast:before {
2329    content: "\f2da";
2330  }
2331  .fa-microchip:before {
2332    content: "\f2db";
2333  }
2334  .fa-snowflake-o:before {
2335    content: "\f2dc";
2336  }
2337  .fa-superpowers:before {
2338    content: "\f2dd";
2339  }
2340  .fa-wpexplorer:before {
2341    content: "\f2de";
2342  }
2343  .fa-meetup:before {
2344    content: "\f2e0";
2345  }
2346  .fa-mastodon:before {
2347    content: "\f2e1";
2348  }
2349  .fa-mastodon-alt:before {
2350    content: "\f2e2";
2351  }
2352  .fa-fork-circle:before,
2353  .fa-fork-awesome:before {
2354    content: "\f2e3";
2355  }
2356  .fa-peertube:before {
2357    content: "\f2e4";
2358  }
2359  .fa-diaspora:before {
2360    content: "\f2e5";
2361  }
2362  .fa-friendica:before {
2363    content: "\f2e6";
2364  }
2365  .fa-gnu-social:before {
2366    content: "\f2e7";
2367  }
2368  .fa-liberapay-square:before {
2369    content: "\f2e8";
2370  }
2371  .fa-liberapay:before {
2372    content: "\f2e9";
2373  }
2374  .fa-ssb:before,
2375  .fa-scuttlebutt:before {
2376    content: "\f2ea";
2377  }
2378  .fa-hubzilla:before {
2379    content: "\f2eb";
2380  }
2381  .fa-social-home:before {
2382    content: "\f2ec";
2383  }
2384  .fa-artstation:before {
2385    content: "\f2ed";
2386  }
2387  .fa-discord:before {
2388    content: "\f2ee";
2389  }
2390  .fa-discord-alt:before {
2391    content: "\f2ef";
2392  }
2393  .fa-patreon:before {
2394    content: "\f2f0";
2395  }
2396  .fa-snowdrift:before {
2397    content: "\f2f1";
2398  }
2399  .fa-activitypub:before {
2400    content: "\f2f2";
2401  }
2402  .fa-ethereum:before {
2403    content: "\f2f3";
2404  }
2405  .fa-keybase:before {
2406    content: "\f2f4";
2407  }
2408  .fa-shaarli:before {
2409    content: "\f2f5";
2410  }
2411  .fa-shaarli-o:before {
2412    content: "\f2f6";
2413  }
2414  .fa-cut-key:before,
2415  .fa-key-modern:before {
2416    content: "\f2f7";
2417  }
2418  .fa-xmpp:before {
2419    content: "\f2f9";
2420  }
2421  .fa-archive-org:before {
2422    content: "\f2fc";
2423  }
2424  .fa-freedombox:before {
2425    content: "\f2fd";
2426  }
2427  .fa-facebook-messenger:before {
2428    content: "\f2fe";
2429  }
2430  .fa-debian:before {
2431    content: "\f2ff";
2432  }
2433  .fa-mastodon-square:before {
2434    content: "\f300";
2435  }
2436  .fa-tipeee:before {
2437    content: "\f301";
2438  }
2439  .fa-react:before {
2440    content: "\f302";
2441  }
2442  .fa-dogmazic:before {
2443    content: "\f303";
2444  }
2445  .fa-zotero:before {
2446    content: "\f309";
2447  }
2448  .fa-nodejs:before {
2449    content: "\f308";
2450  }
2451  .fa-nextcloud:before {
2452    content: "\f306";
2453  }
2454  .fa-nextcloud-square:before {
2455    content: "\f307";
2456  }
2457  .fa-hackaday:before {
2458    content: "\f30a";
2459  }
2460  .fa-laravel:before {
2461    content: "\f30b";
2462  }
2463  .fa-signalapp:before {
2464    content: "\f30c";
2465  }
2466  .fa-gnupg:before {
2467    content: "\f30d";
2468  }
2469  .fa-php:before {
2470    content: "\f30e";
2471  }
2472  .fa-ffmpeg:before {
2473    content: "\f30f";
2474  }
2475  .fa-joplin:before {
2476    content: "\f310";
2477  }
2478  .fa-syncthing:before {
2479    content: "\f311";
2480  }
2481  .fa-inkscape:before {
2482    content: "\f312";
2483  }
2484  .fa-matrix-org:before {
2485    content: "\f313";
2486  }
2487  .fa-pixelfed:before {
2488    content: "\f314";
2489  }
2490  .fa-bootstrap:before {
2491    content: "\f315";
2492  }
2493  .fa-dev-to:before {
2494    content: "\f316";
2495  }
2496  .fa-hashnode:before {
2497    content: "\f317";
2498  }
2499  .fa-jirafeau:before {
2500    content: "\f318";
2501  }
2502  .fa-emby:before {
2503    content: "\f319";
2504  }
2505  .fa-wikidata:before {
2506    content: "\f31a";
2507  }
2508  .fa-gimp:before {
2509    content: "\f31b";
2510  }
2511  .fa-c:before {
2512    content: "\f31c";
2513  }
2514  .fa-digitalocean:before {
2515    content: "\f31d";
2516  }
2517  .fa-att:before {
2518    content: "\f31e";
2519  }
2520  .fa-gitea:before {
2521    content: "\f31f";
2522  }
2523  .fa-file-epub:before {
2524    content: "\f321";
2525  }
2526  .fa-python:before {
2527    content: "\f322";
2528  }
2529  .fa-archlinux:before {
2530    content: "\f323";
2531  }
2532  .fa-pleroma:before {
2533    content: "\f324";
2534  }
2535  .fa-unsplash:before {
2536    content: "\f325";
2537  }
2538  .fa-hackster:before {
2539    content: "\f326";
2540  }
2541  .fa-spell-check:before {
2542    content: "\f327";
2543  }
2544  .fa-moon:before {
2545    content: "\f328";
2546  }
2547  .fa-sun:before {
2548    content: "\f329";
2549  }
2550  .fa-f-droid:before {
2551    content: "\f32a";
2552  }
2553  .fa-biometric:before {
2554    content: "\f32b";
2555  }
2556  .fa-wire:before {
2557    content: "\f32c";
2558  }
2559  .fa-tor-onion:before {
2560    content: "\f32e";
2561  }
2562  .fa-volume-mute:before {
2563    content: "\f32f";
2564  }
2565  .fa-bell-ringing:before {
2566    content: "\f32d";
2567  }
2568  .fa-bell-ringing-o:before {
2569    content: "\f330";
2570  }
2571  .fa-hal:before {
2572    content: "\f333";
2573  }
2574  .fa-jupyter:before {
2575    content: "\f335";
2576  }
2577  .fa-julia:before {
2578    content: "\f334";
2579  }
2580  .fa-classicpress:before {
2581    content: "\f331";
2582  }
2583  .fa-classicpress-circle:before {
2584    content: "\f332";
2585  }
2586  .fa-open-collective:before {
2587    content: "\f336";
2588  }
2589  .fa-orcid:before {
2590    content: "\f337";
2591  }
2592  .fa-researchgate:before {
2593    content: "\f338";
2594  }
2595  .fa-funkwhale:before {
2596    content: "\f339";
2597  }
2598  .fa-askfm:before {
2599    content: "\f33a";
2600  }
2601  .fa-blockstack:before {
2602    content: "\f33b";
2603  }
2604  .fa-boardgamegeek:before {
2605    content: "\f33c";
2606  }
2607  .fa-bunny:before {
2608    content: "\f35f";
2609  }
2610  .fa-buymeacoffee:before {
2611    content: "\f33d";
2612  }
2613  .fa-cc-by:before {
2614    content: "\f33e";
2615  }
2616  .fa-creative-commons-alt:before,
2617  .fa-cc-cc:before {
2618    content: "\f33f";
2619  }
2620  .fa-cc-nc-eu:before {
2621    content: "\f341";
2622  }
2623  .fa-cc-nc-jp:before {
2624    content: "\f342";
2625  }
2626  .fa-cc-nc:before {
2627    content: "\f340";
2628  }
2629  .fa-cc-nd:before {
2630    content: "\f343";
2631  }
2632  .fa-cc-pd:before {
2633    content: "\f344";
2634  }
2635  .fa-cc-remix:before {
2636    content: "\f345";
2637  }
2638  .fa-cc-sa:before {
2639    content: "\f346";
2640  }
2641  .fa-cc-share:before {
2642    content: "\f347";
2643  }
2644  .fa-cc-zero:before {
2645    content: "\f348";
2646  }
2647  .fa-conway-hacker:before,
2648  .fa-conway-glider:before {
2649    content: "\f349";
2650  }
2651  .fa-csharp:before {
2652    content: "\f34a";
2653  }
2654  .fa-email-bulk:before {
2655    content: "\f34b";
2656  }
2657  .fa-email-bulk-o:before {
2658    content: "\f34c";
2659  }
2660  .fa-gnu:before {
2661    content: "\f34d";
2662  }
2663  .fa-google-play:before {
2664    content: "\f34e";
2665  }
2666  .fa-heroku:before {
2667    content: "\f34f";
2668  }
2669  .fa-hassio:before,
2670  .fa-home-assistant:before {
2671    content: "\f350";
2672  }
2673  .fa-java:before {
2674    content: "\f351";
2675  }
2676  .fa-mariadb:before {
2677    content: "\f352";
2678  }
2679  .fa-markdown:before {
2680    content: "\f353";
2681  }
2682  .fa-mysql:before {
2683    content: "\f354";
2684  }
2685  .fa-nordcast:before {
2686    content: "\f355";
2687  }
2688  .fa-plume:before {
2689    content: "\f356";
2690  }
2691  .fa-postgresql:before {
2692    content: "\f357";
2693  }
2694  .fa-sass-alt:before {
2695    content: "\f359";
2696  }
2697  .fa-sass:before {
2698    content: "\f358";
2699  }
2700  .fa-skate:before {
2701    content: "\f35a";
2702  }
2703  .fa-sketchfab:before {
2704    content: "\f35b";
2705  }
2706  .fa-tex:before {
2707    content: "\f35c";
2708  }
2709  .fa-textpattern:before {
2710    content: "\f35d";
2711  }
2712  .fa-unity:before {
2713    content: "\f35e";
2714  }
2715  .sr-only {
2716    position: absolute;
2717    width: 1px;
2718    height: 1px;
2719    padding: 0;
2720    margin: -1px;
2721    overflow: hidden;
2722    clip: rect(0, 0, 0, 0);
2723    border: 0;
2724  }
2725  .sr-only-focusable:active,
2726  .sr-only-focusable:focus {
2727    position: static;
2728    width: auto;
2729    height: auto;
2730    margin: 0;
2731    overflow: visible;
2732    clip: auto;
2733  }