├── assets ├── sasha.jpg └── whatsapplogo.png ├── README.md ├── LICENSE ├── index.html └── css ├── styles.css └── all.css /assets/sasha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olingomaxwell1999/html-css-class/HEAD/assets/sasha.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # html-css-class 2 | basic introduction to html and css to build a landing page for WhatsApp 3 | -------------------------------------------------------------------------------- /assets/whatsapplogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olingomaxwell1999/html-css-class/HEAD/assets/whatsapplogo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Olingo Maxwell 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | WhatsApp Clone 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 78 | 79 |
80 |
81 | WhatsApp Logo 82 |
83 |
84 |

WhatsApp Web

85 |

Lorem ipsum dolor sit amet consectetur, adipisicing elit. Provident, voluptatum. Delectus, in aliquam. Eveniet sapiente eum quisquam iste officia

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