diff --git a/custom_addons/backend_base/__init__.py b/custom_addons/backend_base/__init__.py new file mode 100644 index 000000000..d243ad314 --- /dev/null +++ b/custom_addons/backend_base/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Softhealer Technologies. + +from . import controllers +from . import models \ No newline at end of file diff --git a/custom_addons/backend_base/__manifest__.py b/custom_addons/backend_base/__manifest__.py new file mode 100644 index 000000000..d56db8c95 --- /dev/null +++ b/custom_addons/backend_base/__manifest__.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +{ + "name": "Backend Theme", + "author": "Softhealer Technologies", + + "category": "Extra Tools", + + "summary": "Material Backend Theme Responsive Backend", + "description": """Backend Base""", + "depends": ['base_setup',], + "data": [ + "security/ir.model.access.csv", + "views/sh_user_push_notification_views.xml", + "views/res_config_setting.xml", + ], + 'assets': { + 'web.assets_backend': [ + # pyeval domain + # "backend_base/static/src/lib/pyeval.js", + #Notification + 'backend_base/static/src/xml/notification_menu.xml', + 'backend_base/static/src/scss/notification.scss', + 'backend_base/static/src/js/systray_activity_menu.js', + 'backend_base/static/src/scss/light_icon/style.css', + 'backend_base/static/src/scss/regular_icon/style.css', + 'backend_base/static/src/scss/thin_icon/style.css', + # Push Notification + 'https://www.gstatic.com/firebasejs/8.4.3/firebase-app.js', + 'https://www.gstatic.com/firebasejs/8.4.3/firebase-messaging.js', + 'backend_base/static/src/js/firebase.js', + ], + }, + "images": ["static/description/background.png", ], + "installable": True, + "auto_install": False, + "application": True, +} diff --git a/custom_addons/backend_base/controllers/__init__.py b/custom_addons/backend_base/controllers/__init__.py new file mode 100644 index 000000000..f9c9ec45e --- /dev/null +++ b/custom_addons/backend_base/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import firebase_main diff --git a/custom_addons/backend_base/controllers/firebase_main.py b/custom_addons/backend_base/controllers/firebase_main.py new file mode 100644 index 000000000..f4b820f6d --- /dev/null +++ b/custom_addons/backend_base/controllers/firebase_main.py @@ -0,0 +1,114 @@ +import json +from odoo import http +from odoo.http import request +from datetime import datetime +from odoo.tools.safe_eval import safe_eval + + +class Main(http.Controller): + + @http.route('/firebase-messaging-sw.js', type='http', auth="public") + def sw_http(self): + if request.env.company and request.env.company.enable_web_push_notification: + config_obj = request.env.company.config_details + + js = """ + if ('serviceWorker' in navigator) { + navigator.serviceWorker.register('/sw.js') + .then(function(registration) { + console.log('Registration successful, scope is:', registration.scope); + }).catch(function(err) { + console.log('Service worker registration failed, error:', err); + }); + } + + importScripts('https://www.gstatic.com/firebasejs/8.4.2/firebase-app.js'); + importScripts('https://www.gstatic.com/firebasejs/8.4.2/firebase-messaging.js'); + var firebaseConfig = + """+ config_obj +""" ; + firebase.initializeApp(firebaseConfig); + + const messaging = firebase.messaging(); + + messaging.setBackgroundMessageHandler(function(payload) { + const notificationTitle = "Background Message Title"; + const notificationOptions = { + body: payload.notification.body, + icon:'https://i.pinimg.com/originals/3f/77/56/3f7756330cd418e46e642254a900a507.jpg', + }; + return self.registration.showNotification( + notificationTitle, + notificationOptions, + ); + }); + + """ + return http.request.make_response(js, [('Content-Type', 'text/javascript')]) + else: + + js = """ + if ('serviceWorker' in navigator) { + navigator.serviceWorker.register('/sw.js') + .then(function(registration) { + console.log('Registration successful, scope is:', registration.scope); + }).catch(function(err) { + console.log('Service worker registration failed, error:', err); + }); + } + + """ + return http.request.make_response(js, [('Content-Type', 'text/javascript')]) + + @http.route('/web/push_token', type='http', auth="public", csrf=False) + def getToken(self,**post): + device_search = request.env['sh.push.notification'].sudo().search( + [('register_id', '=', post.get('name'))], limit=1) + + if device_search and not request.env.user._is_public() and device_search.user_id != request.env.user.id: + if request.env.user.has_group('base.group_portal'): + device_search.write({'user_id':request.env.user.id,'user_type':'portal'}) + elif request.env.user: + device_search.write({'user_id':request.env.user.id,'user_type':'internal'}) + + if not device_search: + vals = { + 'register_id' : post.get('name'), + 'datetime' : datetime.now() + } + if request.env.user._is_public(): + public_users = request.env['res.users'].sudo() + public_groups = request.env.ref("base.group_public", raise_if_not_found=False) + if public_groups: + public_users = public_groups.sudo().with_context(active_test=False).mapped("users") + if public_users: + vals.update({'user_id':public_users[0].id,'user_type':'public'}) + elif request.env.user.has_group('base.group_portal'): + vals.update({'user_id':request.env.user.id,'user_type':'portal'}) + elif request.env.user: + vals.update({'user_id':request.env.user.id,'user_type':'internal'}) + + request.env['sh.push.notification'].sudo().create(vals) + + @http.route('/web/_config', type='json', auth="public") + def sendConfig(self): + + config_vals = {} + if request.env.company and request.env.company.enable_web_push_notification: + + config_obj = request.env.company.config_details.replace(" ","") + config_obj = request.env.company.config_details.replace("\n","").replace("\t","").replace(" ","").replace("\"","'").replace('apiKey','\'apiKey\'').replace('authDomain','\'authDomain\'').replace('projectId','\'projectId\'').replace('storageBucket','\'storageBucket\'').replace('messagingSenderId','\'messagingSenderId\'').replace('appId','\'appId\'').replace('measurementId','\'measurementId\'') + + config_vals['apiKey'] = safe_eval(config_obj)['apiKey'] + config_vals['authDomain'] = safe_eval(config_obj)['authDomain'] + config_vals['projectId'] = safe_eval(config_obj)['projectId'] + config_vals['storageBucket'] = safe_eval(config_obj)['storageBucket'] + config_vals['messagingSenderId'] = safe_eval(config_obj)['messagingSenderId'] + config_vals['appId'] = safe_eval(config_obj)['appId'] + config_vals['measurementId'] = safe_eval(config_obj)['measurementId'] + + vals = { + 'vapid' : request.env.company.vapid, + 'config': config_vals + } + json_vals = json.dumps(vals) + return json_vals diff --git a/custom_addons/backend_base/models/__init__.py b/custom_addons/backend_base/models/__init__.py new file mode 100644 index 000000000..a1d198f4e --- /dev/null +++ b/custom_addons/backend_base/models/__init__.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- + +from . import res_config_settings +from . import res_company +from . import res_users +from . import sh_push_notification +from . import sh_user_push_notification \ No newline at end of file diff --git a/custom_addons/backend_base/models/res_company.py b/custom_addons/backend_base/models/res_company.py new file mode 100644 index 000000000..49dc851d8 --- /dev/null +++ b/custom_addons/backend_base/models/res_company.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- + +from odoo import fields, models + +class ResCompany(models.Model): + _inherit = 'res.company' + + enable_web_push_notification = fields.Boolean("Enable Firebase Push Notification") + enable_bell_notification = fields.Boolean("Enable Bell Notification") + api_key = fields.Char("Api Key") + vapid = fields.Char("Vapid",readonly=False) + config_details = fields.Text("Config Details") + + diff --git a/custom_addons/backend_base/models/res_config_settings.py b/custom_addons/backend_base/models/res_config_settings.py new file mode 100644 index 000000000..11051486d --- /dev/null +++ b/custom_addons/backend_base/models/res_config_settings.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# Copyright (C) Softhealer Technologies. + +from odoo import api, fields, models +import base64 + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + enable_web_push_notification = fields.Boolean(related='company_id.enable_web_push_notification',readonly=False) + enable_bell_notification = fields.Boolean(related='company_id.enable_bell_notification',readonly=False) + api_key = fields.Char(related='company_id.api_key',readonly=False) + vapid = fields.Char(related='company_id.vapid',readonly=False) + config_details = fields.Text(related='company_id.config_details',readonly=False) + diff --git a/custom_addons/backend_base/models/res_users.py b/custom_addons/backend_base/models/res_users.py new file mode 100644 index 000000000..446d0959b --- /dev/null +++ b/custom_addons/backend_base/models/res_users.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +from odoo import models, api + +class res_users(models.Model): + _inherit = "res.users" + + @api.model + def systray_get_firebase_notifications(self): + notifications = self.env['sh.user.push.notification'].sudo().search([('user_id','=',self.env.uid)],limit=25, order='msg_read,id desc') + unread_notifications = self.env['sh.user.push.notification'].sudo().search([('user_id','=',self.env.uid),('msg_read','=',False)]) + data_notifications = [] + for notification in notifications: + data_notifications.append({ + 'id':notification.id, + 'desc':notification.description, + 'name':notification.name, + 'user_id':notification.user_id, + 'datetime':notification.datetime, + 'uid':notification.user_id.id, + 'res_model':notification.res_model, + 'res_id':notification.res_id, + 'msg_read':notification.msg_read , + }) + + return list(data_notifications), len(unread_notifications) + + @api.model + def systray_get_firebase_all_notifications(self): + notifications = self.env['sh.user.push.notification'].search([('user_id','=',self.env.uid)],order='msg_read,id desc') + unread_notifications = self.env['sh.user.push.notification'].search([('user_id','=',self.env.uid),('msg_read','=',False)]) + data_notifications = [] + for notification in notifications: + data_notifications.append({ + 'id':notification.id, + 'desc':notification.description, + 'name':notification.name, + 'user_id':notification.user_id, + 'datetime':notification.datetime, + 'uid':notification.user_id.id, + 'res_model':notification.res_model, + 'res_id':notification.res_id, + 'msg_read':notification.msg_read, + }) + + return list(data_notifications), len(unread_notifications) diff --git a/custom_addons/backend_base/models/sh_push_notification.py b/custom_addons/backend_base/models/sh_push_notification.py new file mode 100644 index 000000000..1b25ae46b --- /dev/null +++ b/custom_addons/backend_base/models/sh_push_notification.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- + +from odoo import fields, models + +class WebPushNotification(models.Model): + _name = 'sh.push.notification' + _description = 'Web Push Notification' + + user_id = fields.Many2one("res.users",string="User") + user_type=fields.Selection([('public','Public'),('portal','Portal'),('internal','Internal')],string="User Type") + datetime = fields.Datetime("Registration Time") + register_id = fields.Char("Registration Id") diff --git a/custom_addons/backend_base/models/sh_user_push_notification.py b/custom_addons/backend_base/models/sh_user_push_notification.py new file mode 100644 index 000000000..6fee6dc68 --- /dev/null +++ b/custom_addons/backend_base/models/sh_user_push_notification.py @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- + +from odoo import fields, models, api, _ +from pyfcm import FCMNotification + +class UserPushNotification(models.Model): + _name = 'sh.user.push.notification' + _description = "User Notification" + _order = 'msg_read,id desc' + + user_id = fields.Many2one("res.users",string="User") + name = fields.Char("Title") + description = fields.Text("Description") + datetime = fields.Datetime("Time") + res_model = fields.Char("Res Model") + res_id = fields.Integer("Res ID") + msg_read = fields.Boolean("Read ?") + + @api.model + def has_bell_notification_enabled(self): + has_bell_notification_enabled = False + if self.env.company.enable_bell_notification: + has_bell_notification_enabled = True + result = { + 'has_bell_notification_enabled':has_bell_notification_enabled, + } + return result + + def open_record(self): + self.write({'msg_read':True}) + if self.res_model: + return { + 'name':self.name, + 'type': 'ir.actions.act_window', + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': self.res_model, + 'res_id':self.res_id, + 'target': 'current', + } + + def create_user_notification(self,user='',name='',description='',res_model='',res_id=''): + if self.env.company.enable_bell_notification: + self.env['bus.bus']._sendone(user.partner_id, + 'sh.user.push.notifications', {}) + self.env['sh.user.push.notification'].sudo().create({ + 'user_id': user.id, + 'name':name, + 'description':description, + 'datetime':fields.Datetime.now(), + 'res_model':res_model, + 'res_id':res_id, + 'msg_read':False, + }) + if self.env.company.enable_web_push_notification: + domain = ([]) + api_key = self.env.company.api_key + push_service = FCMNotification(api_key=api_key) + registration_tokens = [] + domain = [('user_id','=',user.id)] + reg_ids = self.env['sh.push.notification'].search(domain) + for ids in reg_ids: + registration_tokens.append(ids.register_id) + message_title = name + message_body = description + push_service.notify_multiple_devices(registration_ids=registration_tokens,message_title=message_title, message_body=message_body) diff --git a/custom_addons/backend_base/security/ir.model.access.csv b/custom_addons/backend_base/security/ir.model.access.csv new file mode 100644 index 000000000..bfe01b7c2 --- /dev/null +++ b/custom_addons/backend_base/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +backend_base.access_sh_user_push_notification,access_sh_user_push_notification,backend_base.model_sh_user_push_notification,base.group_user,1,1,1,1 +backend_base.access_sh_push_notification,access_sh_push_notification,backend_base.model_sh_push_notification,base.group_user,1,1,1,1 \ No newline at end of file diff --git a/custom_addons/backend_base/static/description/icon.png b/custom_addons/backend_base/static/description/icon.png new file mode 100644 index 000000000..9b8713a58 --- /dev/null +++ b/custom_addons/backend_base/static/description/icon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d1a8d77b6ef765feac2dfde4611cb7533cbfb54e5d42368d1e1c10c162d4d83 +size 32810 diff --git a/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.eot b/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.eot new file mode 100644 index 000000000..f8226d484 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.eot @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3b0409d9e2fcee2d00a4c0b4f98756d131f75d0dc3ed44feff636423dc2a565 +size 2167096 diff --git a/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.ttf b/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.ttf new file mode 100644 index 000000000..43937309d --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4787fe7d558850226bdf221a3924323879bbc487e97839e544046821315873bd +size 2166932 diff --git a/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.woff b/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.woff new file mode 100644 index 000000000..eac82114e --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc24710ffd23fd85c74d4c286e60910e0a90b89214ae091bfb69f987d804f18b +size 2167008 diff --git a/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.woff2 b/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.woff2 new file mode 100644 index 000000000..84cabc8c6 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/light_icon/fonts/icomoon.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f073de73be01d8686fa92588c8d281f952866bbffae642dceba5add5c6d309 +size 1003848 diff --git a/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.eot b/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.eot new file mode 100644 index 000000000..81aedb319 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.eot @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e88f115b84e17b47bcf09a82b02116c16566e0c831c4af27648aa33df6f389e +size 1972196 diff --git a/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.ttf b/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.ttf new file mode 100644 index 000000000..5f5ef9ad7 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751e56ff2c429fd06b8abbd25f988d96b274e9f8877562e85c2e38564d4cb8dc +size 1972032 diff --git a/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.woff b/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.woff new file mode 100644 index 000000000..5e196f964 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51803c63042c7cae70cc6121edb95ac422fa06b95ff501d6f2371d8382e60589 +size 1972108 diff --git a/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.woff2 b/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.woff2 new file mode 100644 index 000000000..4c4ed3412 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/regular_icon/fonts/icomoon.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8df0c389fef55d27b0fa19d3a3033af186edd4c9b4c3a60f65de92eda38958e +size 921976 diff --git a/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.eot b/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.eot new file mode 100644 index 000000000..a67cb3948 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.eot @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dff44855f6722278ef33cc3ac727e8fc16c726b95b5a44e485e540bf143eeea +size 2257312 diff --git a/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.ttf b/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.ttf new file mode 100644 index 000000000..d61372f44 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4e230263ec8b1bd6e11d0709279ca71244a7570c5b2ec763cb09862c8b23e9 +size 2257148 diff --git a/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.woff b/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.woff new file mode 100644 index 000000000..2f9998e02 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.woff @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64c1d22db9dd5ecfe857984d50c4114e910c7d2f289bfdb9be94a4b4f6dad18 +size 2257224 diff --git a/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.woff2 b/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.woff2 new file mode 100644 index 000000000..f92d20a43 --- /dev/null +++ b/custom_addons/backend_base/static/src/icon/thin_icon/fonts/icomoon.woff2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b1eae825eae1133932a52ed2cf1e24c811cc67ad01a19265a2b1bbca115fcd7 +size 1065520 diff --git a/custom_addons/backend_base/static/src/js/firebase.js b/custom_addons/backend_base/static/src/js/firebase.js new file mode 100644 index 000000000..a82f51406 --- /dev/null +++ b/custom_addons/backend_base/static/src/js/firebase.js @@ -0,0 +1,55 @@ +/** @odoo-module **/ + + /** + * Executes an action of type 'ir.actions.server'. + * + * @private + * @param {ServerAction} action + * @param {ActionOptions} options + * @returns {Promise} + */ +// import ajax from "@web/legacy/js/core/ajax"; +import { rpc } from "@web/core/network/rpc"; + + +var vapid = '' +var firebaseConfig = {}; +// ajax.jsonRpc("/web/_config", 'call', {}).then(function (data) { +rpc("/web/_config").then(function (data) { + console.log("\n\n\n\n\n\n\n Dataa", data); + if(data){ + + var json = JSON.parse(data) + vapid = json.vapid + firebaseConfig = json.config + firebase.initializeApp(firebaseConfig); + const messaging = firebase.messaging(); + + messaging.onMessage((payload) => { + + const notificationOptions = { + body: payload.notification.body, + }; + let notification = payload.notification; + navigator.serviceWorker.getRegistrations().then((registration) => { + registration[0].showNotification(notification.title, notificationOptions); + }); + }); + messaging.requestPermission() + .then(function () { + messaging.getToken({ vapidKey: vapid }).then((currentToken) => { + if (currentToken) { + $.post("/web/push_token", + { + name: currentToken + }) + } else { + console.log('No registration token available. Request permission to generate one.'); + } + }).catch((err) => { + console.log('An error occurred while retrieving token. ', err); + }); + }) + + } +}); \ No newline at end of file diff --git a/custom_addons/backend_base/static/src/js/systray_activity_menu.js b/custom_addons/backend_base/static/src/js/systray_activity_menu.js new file mode 100644 index 000000000..a306f0076 --- /dev/null +++ b/custom_addons/backend_base/static/src/js/systray_activity_menu.js @@ -0,0 +1,199 @@ +/** @odoo-module **/ + +import { registry } from "@web/core/registry"; +import { _t } from "@web/core/l10n/translation"; +import { session } from "@web/session"; +import { onWillStart } from "@odoo/owl"; +import { useService } from "@web/core/utils/hooks"; +const { Component } = owl; +import { rpc } from "@web/core/network/rpc"; + +export class UserNotificationMenu extends Component { + setup() { + this.busService = this.env.services.bus_service; + this.notifications = this._getActivityData(); + this.action = useService("action"); + onWillStart(this.onWillStart); + this._updateCounter(); + } + + async onWillStart() { + this.busService.addEventListener("notification", ({ detail: notifications }) => { + for (const notif of notifications) { + if (notif.type === "sh.user.push.notifications") { + this._getActivityData(); + this._updateCounter(); + + const searchInput = document.querySelector(".o_searchview_input"); + if (searchInput) searchInput.click(); + + document.body.click(); + } + } + }); + + const result = await rpc( + "/web/dataset/call_kw/sh.user.push.notification/has_bell_notification_enabled", + { + model: "sh.user.push.notification", + method: "has_bell_notification_enabled", + args: [], + kwargs: {}, + } + ); + + const bellElements = document.querySelectorAll(".js_bell_notification"); + bellElements.forEach((el) => { + if (result.has_bell_notification_enabled) { + el.classList.remove("d-none"); + } else { + el.classList.add("d-none"); + } + }); + } + + async _onPushNotificationClick(notification) { + const data = notification; + + await rpc("/web/dataset/call_kw/sh.user.push.notification/write", { + model: "sh.user.push.notification", + method: "write", + args: [data.id, { msg_read: true }], + kwargs: {}, + }); + + await this._getActivityData(); + this._updateCounter(); + + if (data.res_model) { + await this.action.doAction({ + type: "ir.actions.act_window", + name: data.res_model, + res_model: data.res_model, + views: [ + [false, "form"], + [false, "tree"], + ], + domain: [["id", "=", data.res_id]], + res_id: data.res_id, + context: {}, + }); + } + } + + async _onClickReadAllNotification() { + const data = await rpc( + "/web/dataset/call_kw/res.users/systray_get_firebase_all_notifications", + { + model: "res.users", + method: "systray_get_firebase_all_notifications", + args: [], + kwargs: { context: session.user_context }, + } + ); + + this._notifications = data[0] || []; + + for (const each_data of this._notifications) { + await rpc("/web/dataset/call_kw/sh.user.push.notification/write", { + model: "sh.user.push.notification", + method: "write", + args: [each_data.id, { msg_read: true }], + kwargs: {}, + }); + } + + await this._getActivityData(); + this._updateCounter(); + } + + _onClickAllNotification() { + this.action.doAction({ + type: "ir.actions.act_window", + name: "Notifications", + res_model: "sh.user.push.notification", + views: [[false, "list"]], + target: "current", + domain: [["user_id", "=", session.uid]], + }); + } + + _updateCounter() { + const counter = this._counter || 0; + const counterEl = document.querySelector(".o_notification_counter"); + if (counterEl) { + counterEl.textContent = counter > 0 ? counter : ""; + } + } + + async _getActivityData() { + const data = await rpc( + "/web/dataset/call_kw/res.users/systray_get_firebase_notifications", + { + model: "res.users", + method: "systray_get_firebase_notifications", + args: [], + kwargs: { context: session.user_context }, + } + ); + + this._notifications = data[0] || []; + this._counter = data[1] || 0; + + for (const each_data of this._notifications) { + each_data.datetime = this.formatRelativeTime(each_data.datetime); + } + + this._updateCounter(); + return data; + } + + async _updateActivityPreview() { + this.notifications = this._notifications || []; + document + .querySelector(".o_notification_systray_dropdown_items") + ?.classList.remove("d-none"); + } + + async _onActivityMenuShow() { + const dropdown = document.querySelector(".o_notification_systray_dropdown"); + if (dropdown) { + dropdown.style.display = + dropdown.style.display === "none" || !dropdown.style.display + ? "block" + : "none"; + } + await this._updateActivityPreview(); + this.render(true); + } + + formatRelativeTime(dateTime) { + const now = new Date(); + const dt = new Date(dateTime); + const diffInSeconds = Math.floor((now - dt) / 1000); + + if (diffInSeconds < 60) return _t("less than a minute ago"); + if (diffInSeconds < 120) return _t("about a minute ago"); + if (diffInSeconds < 3600) + return _t(`${Math.floor(diffInSeconds / 60)} minutes ago`); + if (diffInSeconds < 7200) return _t("about an hour ago"); + if (diffInSeconds < 86400) + return _t(`${Math.floor(diffInSeconds / 3600)} hours ago`); + if (diffInSeconds < 172800) return _t("a day ago"); + if (diffInSeconds < 2592000) + return _t(`${Math.floor(diffInSeconds / 86400)} days ago`); + if (diffInSeconds < 5184000) return _t("about a month ago"); + if (diffInSeconds < 31536000) + return _t(`${Math.floor(diffInSeconds / 2592000)} months ago`); + if (diffInSeconds < 63072000) return _t("about a year ago"); + return _t(`${Math.floor(diffInSeconds / 31536000)} years ago`); + } +} + +UserNotificationMenu.template = "mail.systray.UserNotificationMenu"; + +export const systrayItem = { + Component: UserNotificationMenu, +}; + +registry.category("systray").add("UserNotificationMenu", systrayItem); diff --git a/custom_addons/backend_base/static/src/lib/pyeval.js b/custom_addons/backend_base/static/src/lib/pyeval.js new file mode 100644 index 000000000..22c09b619 --- /dev/null +++ b/custom_addons/backend_base/static/src/lib/pyeval.js @@ -0,0 +1,988 @@ +odoo.define('sh_domain_field', function (require) { + "use strict"; + + + var core = require('web.core'); + var utils = require('web.utils'); + var py_utils = require('web.py_utils'); + var _t = core._t; + var py = window.py; // to silence linters + + /* Methods copied from pyeval from odoo11 */ + + var obj = function () {}; + obj.prototype = py.object; + var asJS = function (arg) { + if (arg instanceof obj) { + return arg.toJSON(); + } + return arg; + }; + + var datetime = py.PY_call(py.object); + + var zero = py.float.fromJSON(0); + + // Port from pypy/lib_pypy/datetime.py + var DAYS_IN_MONTH = [null, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; + var DAYS_BEFORE_MONTH = [null]; + var dbm = 0; + + for (var i=1; i 2 && is_leap(year); + return DAYS_BEFORE_MONTH[month] + (post_leap_feb ? 1 : 0); + } + + function ymd2ord(year, month, day) { + var dim = days_in_month(year, month); + if (!(1 <= day && day <= dim)) { + throw new Error("ValueError: day must be in 1.." + dim); + } + return days_before_year(year) + + days_before_month(year, month) + + day; + } + + var DI400Y = days_before_year(401); + var DI100Y = days_before_year(101); + var DI4Y = days_before_year(5); + + function ord2ymd(n) { + --n; + var n400, n100, n4, n1, n0; + utils.divmod(n, DI400Y, function (_n400, n) { + n400 = _n400; + utils.divmod(n, DI100Y, function (_n100, n) { + n100 = _n100; + utils.divmod(n, DI4Y, function (_n4, n) { + n4 = _n4; + utils.divmod(n, 365, function (_n1, n) { + n1 = _n1; + n0 = n; + }); + }); + }); + }); + + n = n0; + var year = n400 * 400 + 1 + n100 * 100 + n4 * 4 + n1; + if (n1 == 4 || n100 == 100) { + utils.assert(n0 === 0); + return { + year: year - 1, + month: 12, + day: 31 + }; + } + + var leapyear = n1 === 3 && (n4 !== 24 || n100 == 3); + utils.assert(leapyear == is_leap(year)); + var month = (n + 50) >> 5; + var preceding = DAYS_BEFORE_MONTH[month] + ((month > 2 && leapyear) ? 1 : 0); + if (preceding > n) { + --month; + preceding -= DAYS_IN_MONTH[month] + ((month === 2 && leapyear) ? 1 : 0); + } + n -= preceding; + return { + year: year, + month: month, + day: n+1 + }; + } + + /** + * Converts the stuff passed in into a valid date, applying overflows as needed + */ + function tmxxx(year, month, day, hour, minute, second, microsecond) { + hour = hour || 0; minute = minute || 0; second = second || 0; + microsecond = microsecond || 0; + + if (microsecond < 0 || microsecond > 999999) { + utils.divmod(microsecond, 1000000, function (carry, ms) { + microsecond = ms; + second += carry; + }); + } + if (second < 0 || second > 59) { + utils.divmod(second, 60, function (carry, s) { + second = s; + minute += carry; + }); + } + if (minute < 0 || minute > 59) { + utils.divmod(minute, 60, function (carry, m) { + minute = m; + hour += carry; + }); + } + if (hour < 0 || hour > 23) { + utils.divmod(hour, 24, function (carry, h) { + hour = h; + day += carry; + }); + } + // That was easy. Now it gets muddy: the proper range for day + // can't be determined without knowing the correct month and year, + // but if day is, e.g., plus or minus a million, the current month + // and year values make no sense (and may also be out of bounds + // themselves). + // Saying 12 months == 1 year should be non-controversial. + if (month < 1 || month > 12) { + utils.divmod(month-1, 12, function (carry, m) { + month = m + 1; + year += carry; + }); + } + // Now only day can be out of bounds (year may also be out of bounds + // for a datetime object, but we don't care about that here). + // If day is out of bounds, what to do is arguable, but at least the + // method here is principled and explainable. + var dim = days_in_month(year, month); + if (day < 1 || day > dim) { + // Move day-1 days from the first of the month. First try to + // get off cheap if we're only one day out of range (adjustments + // for timezone alone can't be worse than that). + if (day === 0) { + --month; + if (month > 0) { + day = days_in_month(year, month); + } else { + --year; month=12; day=31; + } + } else if (day == dim + 1) { + ++month; + day = 1; + if (month > 12) { + month = 1; + ++year; + } + } else { + var r = ord2ymd(ymd2ord(year, month, 1) + (day - 1)); + year = r.year; + month = r.month; + day = r.day; + } + } + return { + year: year, + month: month, + day: day, + hour: hour, + minute: minute, + second: second, + microsecond: microsecond + }; + } + + datetime.timedelta = py.type('timedelta', null, { + __init__: function () { + var args = py.PY_parseArgs(arguments, [ + ['days', zero], ['seconds', zero], ['microseconds', zero], + ['milliseconds', zero], ['minutes', zero], ['hours', zero], + ['weeks', zero] + ]); + + var d = 0, s = 0, m = 0; + var days = args.days.toJSON() + args.weeks.toJSON() * 7; + var seconds = args.seconds.toJSON() + + args.minutes.toJSON() * 60 + + args.hours.toJSON() * 3600; + var microseconds = args.microseconds.toJSON() + + args.milliseconds.toJSON() * 1000; + + // Get rid of all fractions, and normalize s and us. + // Take a deep breath . + var daysecondsfrac = utils.modf(days, function (dayfrac, days) { + d = days; + if (dayfrac) { + return utils.modf(dayfrac * 24 * 3600, function (dsf, dsw) { + s = dsw; + return dsf; + }); + } + return 0; + }); + + var secondsfrac = utils.modf(seconds, function (sf, s) { + seconds = s; + return sf + daysecondsfrac; + }); + utils.divmod(seconds, 24*3600, function (days, seconds) { + d += days; + s += seconds; + }); + // seconds isn't referenced again before redefinition + + microseconds += secondsfrac * 1e6; + utils.divmod(microseconds, 1000000, function (seconds, microseconds) { + utils.divmod(seconds, 24*3600, function (days, seconds) { + d += days; + s += seconds; + m += Math.round(microseconds); + }); + }); + + // Carrying still possible here? + + this.days = d; + this.seconds = s; + this.microseconds = m; + }, + __str__: function () { + var hh, mm, ss; + utils.divmod(this.seconds, 60, function (m, s) { + utils.divmod(m, 60, function (h, m) { + hh = h; + mm = m; + ss = s; + }); + }); + var s = _.str.sprintf("%d:%02d:%02d", hh, mm, ss); + if (this.days) { + s = _.str.sprintf("%d day%s, %s", + this.days, + (this.days != 1 && this.days != -1) ? 's' : '', + s); + } + if (this.microseconds) { + s = _.str.sprintf("%s.%06d", s, this.microseconds); + } + return py.str.fromJSON(s); + }, + __eq__: function (other) { + if (!py.PY_isInstance(other, datetime.timedelta)) { + return py.False; + } + + return (this.days === other.days + && this.seconds === other.seconds + && this.microseconds === other.microseconds) + ? py.True : py.False; + }, + __add__: function (other) { + if (!py.PY_isInstance(other, datetime.timedelta)) { + return py.NotImplemented; + } + return py.PY_call(datetime.timedelta, [ + py.float.fromJSON(this.days + other.days), + py.float.fromJSON(this.seconds + other.seconds), + py.float.fromJSON(this.microseconds + other.microseconds) + ]); + }, + __radd__: function (other) { return this.__add__(other); }, + __sub__: function (other) { + if (!py.PY_isInstance(other, datetime.timedelta)) { + return py.NotImplemented; + } + return py.PY_call(datetime.timedelta, [ + py.float.fromJSON(this.days - other.days), + py.float.fromJSON(this.seconds - other.seconds), + py.float.fromJSON(this.microseconds - other.microseconds) + ]); + }, + __rsub__: function (other) { + if (!py.PY_isInstance(other, datetime.timedelta)) { + return py.NotImplemented; + } + return this.__neg__().__add__(other); + }, + __neg__: function () { + return py.PY_call(datetime.timedelta, [ + py.float.fromJSON(-this.days), + py.float.fromJSON(-this.seconds), + py.float.fromJSON(-this.microseconds) + ]); + }, + __pos__: function () { return this; }, + __mul__: function (other) { + if (!py.PY_isInstance(other, py.float)) { + return py.NotImplemented; + } + var n = other.toJSON(); + return py.PY_call(datetime.timedelta, [ + py.float.fromJSON(this.days * n), + py.float.fromJSON(this.seconds * n), + py.float.fromJSON(this.microseconds * n) + ]); + }, + __rmul__: function (other) { return this.__mul__(other); }, + __div__: function (other) { + if (!py.PY_isInstance(other, py.float)) { + return py.NotImplemented; + } + var usec = ((this.days * 24 * 3600) + this.seconds) * 1000000 + + this.microseconds; + return py.PY_call( + datetime.timedelta, [ + zero, zero, py.float.fromJSON(usec / other.toJSON())]); + }, + __floordiv__: function (other) { return this.__div__(other); }, + total_seconds: function () { + return py.float.fromJSON( + this.days * 86400 + + this.seconds + + this.microseconds / 1000000); + }, + __nonzero__: function () { + return (!!this.days || !!this.seconds || !!this.microseconds) + ? py.True + : py.False; + } + }); + + datetime.datetime = py.type('datetime', null, { + __init__: function () { + var zero = py.float.fromJSON(0); + var args = py.PY_parseArgs(arguments, [ + 'year', 'month', 'day', + ['hour', zero], ['minute', zero], ['second', zero], + ['microsecond', zero], ['tzinfo', py.None] + ]); + for(var key in args) { + if (!args.hasOwnProperty(key)) { continue; } + this[key] = asJS(args[key]); + } + }, + replace: function () { + var args = py.PY_parseArgs(arguments, [ + ['year', py.None], ['month', py.None], ['day', py.None], + ['hour', py.None], ['minute', py.None], ['second', py.None], + ['microsecond', py.None] // FIXME: tzinfo, can't use None as valid input + ]); + var params = {}; + for(var key in args) { + if (!args.hasOwnProperty(key)) { continue; } + + var arg = args[key]; + params[key] = (arg === py.None ? this[key] : asJS(arg)); + } + return py.PY_call(datetime.datetime, params); + }, + strftime: function () { + var self = this; + var args = py.PY_parseArgs(arguments, 'format'); + return py.str.fromJSON(args.format.toJSON() + .replace(/%([A-Za-z])/g, function (m, c) { + switch (c) { + case 'Y': return _.str.sprintf('%04d', self.year); + case 'm': return _.str.sprintf('%02d', self.month); + case 'd': return _.str.sprintf('%02d', self.day); + case 'H': return _.str.sprintf('%02d', self.hour); + case 'M': return _.str.sprintf('%02d', self.minute); + case 'S': return _.str.sprintf('%02d', self.second); + } + throw new Error('ValueError: No known conversion for ' + m); + })); + }, + now: py.classmethod.fromJSON(function () { + var d = new Date(); + return py.PY_call(datetime.datetime, [ + d.getFullYear(), d.getMonth() + 1, d.getDate(), + d.getHours(), d.getMinutes(), d.getSeconds(), + d.getMilliseconds() * 1000]); + }), + today: py.classmethod.fromJSON(function () { + var dt_class = py.PY_getAttr(datetime, 'datetime'); + return py.PY_call(py.PY_getAttr(dt_class, 'now')); + }), + utcnow: py.classmethod.fromJSON(function () { + var d = new Date(); + return py.PY_call(datetime.datetime, + [d.getUTCFullYear(), d.getUTCMonth() + 1, d.getUTCDate(), + d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds(), + d.getUTCMilliseconds() * 1000]); + }), + combine: py.classmethod.fromJSON(function () { + var args = py.PY_parseArgs(arguments, 'date time'); + return py.PY_call(datetime.datetime, [ + py.PY_getAttr(args.date, 'year'), + py.PY_getAttr(args.date, 'month'), + py.PY_getAttr(args.date, 'day'), + py.PY_getAttr(args.time, 'hour'), + py.PY_getAttr(args.time, 'minute'), + py.PY_getAttr(args.time, 'second') + ]); + }), + toJSON: function () { + return new Date( + this.year, + this.month - 1, + this.day, + this.hour, + this.minute, + this.second, + this.microsecond / 1000); + }, + __add__: function (other) { + if (!py.PY_isInstance(other, datetime.timedelta)) { + return py.NotImplemented; + } + var s = tmxxx(this.year, this.month, this.day + other.days, this.hour, this.minute, this.second + other.seconds); + return datetime.datetime.fromJSON(s.year, s.month, s.day, s.hour, s.minute, s.second); + }, + __sub__: function (other) { + if (py.PY_isInstance(other, datetime.timedelta)) { + return py.PY_add(this, py.PY_negative(other)); + } + return py.NotImplemented; + }, + fromJSON: function (year, month, day, hour, minute, second) { + return py.PY_call(datetime.datetime, [year, month, day, hour, minute, second]); + }, + }); + + datetime.date = py.type('date', null, { + __init__: function () { + var args = py.PY_parseArgs(arguments, 'year month day'); + this.year = asJS(args.year); + this.month = asJS(args.month); + this.day = asJS(args.day); + }, + strftime: function () { + var self = this; + var args = py.PY_parseArgs(arguments, 'format'); + return py.str.fromJSON(args.format.toJSON() + .replace(/%([A-Za-z])/g, function (m, c) { + switch (c) { + case 'Y': return self.year; + case 'm': return _.str.sprintf('%02d', self.month); + case 'd': return _.str.sprintf('%02d', self.day); + } + throw new Error('ValueError: No known conversion for ' + m); + })); + }, + __eq__: function (other) { + return (this.year === other.year + && this.month === other.month + && this.day === other.day) + ? py.True : py.False; + }, + replace: function () { + var args = py.PY_parseArgs(arguments, [ + ['year', py.None], ['month', py.None], ['day', py.None] + ]); + var params = {}; + for(var key in args) { + if (!args.hasOwnProperty(key)) { continue; } + + var arg = args[key]; + params[key] = (arg === py.None ? this[key] : asJS(arg)); + } + return py.PY_call(datetime.date, params); + }, + __add__: function (other) { + if (!py.PY_isInstance(other, datetime.timedelta)) { + return py.NotImplemented; + } + var s = tmxxx(this.year, this.month, this.day + other.days); + return datetime.date.fromJSON(s.year, s.month, s.day); + }, + __radd__: function (other) { return this.__add__(other); }, + __sub__: function (other) { + if (py.PY_isInstance(other, datetime.timedelta)) { + return py.PY_add(this, py.PY_negative(other)); + } + if (py.PY_isInstance(other, datetime.date)) { + // FIXME: getattr and sub API methods + return py.PY_call(datetime.timedelta, [ + py.PY_subtract( + py.PY_call(py.PY_getAttr(this, 'toordinal')), + py.PY_call(py.PY_getAttr(other, 'toordinal'))) + ]); + } + return py.NotImplemented; + }, + toordinal: function () { + return py.float.fromJSON(ymd2ord(this.year, this.month, this.day)); + }, + weekday: function () { + return py.float.fromJSON((this.toordinal().toJSON()+6)%7); + }, + fromJSON: function (year, month, day) { + return py.PY_call(datetime.date, [year, month, day]); + }, + today: py.classmethod.fromJSON(function () { + var d = new Date (); + return py.PY_call(datetime.date, [ + d.getFullYear(), d.getMonth() + 1, d.getDate()]); + }), + }); + /** + * Returns the current local date, which means the date on the client (which can be different + * compared to the date of the server). + * + * @return {datetime.date} + */ + function context_today() { + var d = new Date(); + return py.PY_call( + datetime.date, [d.getFullYear(), d.getMonth() + 1, d.getDate()]); + } + + datetime.time = py.type('time', null, { + __init__: function () { + var zero = py.float.fromJSON(0); + var args = py.PY_parseArgs(arguments, [ + ['hour', zero], ['minute', zero], ['second', zero], ['microsecond', zero], + ['tzinfo', py.None] + ]); + + for(var k in args) { + if (!args.hasOwnProperty(k)) { continue; } + this[k] = asJS(args[k]); + } + } + }); + + var time = py.PY_call(py.object); + time.strftime = py.PY_def.fromJSON(function () { + var args = py.PY_parseArgs(arguments, 'format'); + var dt_class = py.PY_getAttr(datetime, 'datetime'); + var d = py.PY_call(py.PY_getAttr(dt_class, 'utcnow')); + return py.PY_call(py.PY_getAttr(d, 'strftime'), [args.format]); + }); + + var args = _.map(('year month day ' + + 'years months weeks days ' + + 'weekday leapdays yearday nlyearday').split(' '), function (arg) { + switch (arg) { + case 'years':case 'months':case 'days':case 'leapdays':case 'weeks': + return [arg, zero]; + case 'year':case 'month':case 'day':case 'weekday': + case 'yearday':case 'nlyearday': + return [arg, null]; + default: + throw new Error("Unknown relativedelta argument " + arg); + } + }); + args.unshift('*'); + + var _utils = { + monthrange: function (year, month) { + if (month < 1 || month > 12) { + throw new Error("Illegal month " + month); + } + + var day1 = this.weekday(year, month, 1); + var ndays = this.mdays[month] + (month == this.February && this.isleap(year)); + return [day1, ndays]; + }, + weekday: function (year, month, day) { + var date = py.PY_call(datetime.date, [year, month, day]); + return py.PY_call(py.PY_getAttr(date, 'weekday')); + }, + isleap: function (year) { + return year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0); + }, + mdays: [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], + January: 1, + February: 2 + }; + + var relativedelta = py.type('relativedelta', null, { + __init__: function () { + this.ops = py.PY_parseArgs(arguments, args); + this.ops.days = py.float.fromJSON( + asJS(this.ops.days) + asJS(this.ops.weeks) * 7 + ); + + var yday = zero; + if (this.ops.nlyearday) { + yday = this.ops.nlyearday; + } else if (this.ops.yearday) { + yday = this.ops.yearday; + if (asJS(this.ops.yearday) > 59) { + this.ops.leapdays = py.float.fromJS(-1); + } + } + if (py.PY_isTrue(yday)) { + var ydayidx = [31, 59, 90, 120, 151, 181, 212, + 243, 273, 304, 334, 366]; + for(var idx=0; idx 11) { + var s = months > 0 ? 1 : -1; + utils.divmod(months * s, 12, function (years, months) { + self.ops.months = py.float.fromJSON(months*s); + self.ops.years = py.float.fromJSON( + asJS(self.ops.years) + years*s); + }); + } + this._has_time = 0; + }, + __add__: function (other) { + if (!py.PY_isInstance(other, datetime.date)) { + return py.NotImplemented; + } + // TODO: test this whole mess + var year = (asJS(this.ops.year) || asJS(other.year)) + asJS(this.ops.years); + var month = asJS(this.ops.month) || asJS(other.month); + var months; + if (months = asJS(this.ops.months)) { + if (Math.abs(months) < 1 || Math.abs(months) > 12) { + throw new Error("Can only use relative months between -12 and +12"); + } + month += months; + if (month > 12) { + year += 1; + month -= 12; + } + if (month < 1) { + year -= 1; + month += 12; + } + } + + var day = Math.min(_utils.monthrange(year, month)[1], + asJS(this.ops.day) || asJS(other.day)); + + var repl = { + year: py.float.fromJSON(year), + month: py.float.fromJSON(month), + day: py.float.fromJSON(day) + }; + + var days = asJS(this.ops.days); + if (py.PY_isTrue(this.ops.leapdays) && month > 2 && _utils.isleap(year)) { + days += asJS(this.ops.leapdays); + } + + var ret = py.PY_add( + py.PY_call(py.PY_getAttr(other, 'replace'), repl), + py.PY_call(datetime.timedelta, { + days: py.float.fromJSON(days) + }) + ); + + if (this.ops.weekday) { + // FIXME: only handles numeric weekdays, not decorated + var weekday = asJS(this.ops.weekday), nth = 1; + var jumpdays = (Math.abs(nth) - 1) * 7; + + var ret_weekday = asJS(py.PY_call(py.PY_getAttr(ret, 'weekday'))); + if (nth > 0) { + jumpdays += (7-ret_weekday+weekday) % 7; + } else { + jumpdays += (ret_weekday - weekday) % 7; + jumpdays *= -1; + } + ret = py.PY_add( + ret, + py.PY_call(datetime.timedelta, { + days: py.float.fromJSON(jumpdays) + }) + ); + } + + return ret; + }, + __radd__: function (other) { + return this.__add__(other); + }, + __rsub__: function (other) { + return this.__neg__().__radd__(other); + }, + __neg__: function () { + return py.PY_call(relativedelta, { + years: py.PY_negative(this.ops.years), + months: py.PY_negative(this.ops.months), + days: py.PY_negative(this.ops.days), + leapdays: this.ops.leapdays, + year: this.ops.year, + month: this.ops.month, + day: this.ops.day, + weekday: this.ops.weekday + }); + } + }); + + // recursively wraps JS objects passed into the context to attributedicts + // which jsonify back to JS objects + function wrap(value) { + if (value === null) { return py.None; } + + switch (typeof value) { + case 'undefined': throw new Error("No conversion for undefined"); + case 'boolean': return py.bool.fromJSON(value); + case 'number': return py.float.fromJSON(value); + case 'string': return py.str.fromJSON(value); + } + + switch(value.constructor) { + case Object: return wrapping_dict.fromJSON(value); + case Array: return wrapping_list.fromJSON(value); + } + + throw new Error("ValueError: unable to wrap " + value); + } + + var wrapping_dict = py.type('wrapping_dict', null, { + __init__: function () { + this._store = {}; + }, + __getitem__: function (key) { + var k = key.toJSON(); + if (!(k in this._store)) { + throw new Error("KeyError: '" + k + "'"); + } + return wrap(this._store[k]); + }, + __getattr__: function (key) { + return this.__getitem__(py.str.fromJSON(key)); + }, + __len__: function () { + return Object.keys(this._store).length; + }, + __nonzero__: function () { + return py.PY_size(this) > 0 ? py.True : py.False; + }, + get: function () { + var args = py.PY_parseArgs(arguments, ['k', ['d', py.None]]); + + if (!(args.k.toJSON() in this._store)) { return args.d; } + return this.__getitem__(args.k); + }, + fromJSON: function (d) { + var instance = py.PY_call(wrapping_dict); + instance._store = d; + return instance; + }, + toJSON: function () { + return this._store; + }, + }); + + var wrapping_list = py.type('wrapping_list', null, { + __init__: function () { + this._store = []; + }, + __getitem__: function (index) { + return wrap(this._store[index.toJSON()]); + }, + __len__: function () { + return this._store.length; + }, + __nonzero__: function () { + return py.PY_size(this) > 0 ? py.True : py.False; + }, + fromJSON: function (ar) { + var instance = py.PY_call(wrapping_list); + instance._store = ar; + return instance; + }, + toJSON: function () { + return this._store; + }, + }); + + function wrap_context(context) { + for (var k in context) { + if (!context.hasOwnProperty(k)) { continue; } + var val = context[k]; + + if (val === null) { continue; } + if (val.constructor === Array) { + context[k] = wrapping_list.fromJSON(val); + } else if (val.constructor === Object + && !py.PY_isInstance(val, py.object)) { + context[k] = wrapping_dict.fromJSON(val); + } + } + return context; + } + + + + function eval_domains(domains, evaluation_context) { + evaluation_context = _.extend(pycontext(), evaluation_context || {}); + var result_domain = []; + // Normalize only if the first domain is the array ["|"] or ["!"] + var need_normalization = ( + domains && + domains.length > 0 && + domains[0].length === 1 && + (domains[0][0] === "|" || domains[0][0] === "!") + ); + _(domains).each(function (domain) { + if (_.isString(domain)) { + // wrap raw strings in domain + if (domain in evaluation_context) { + result_domain.push.apply( + result_domain, $.parseJSON(evaluation_context[domain])); + return; + } + domain = { __ref: 'domain', __debug: domain }; + } + var domain_array_to_combine; + switch(domain.__ref) { + case 'domain': + evaluation_context.context = evaluation_context; + domain_array_to_combine = py.eval(domain.__debug, wrap_context(evaluation_context)); + break; + default: + domain_array_to_combine = domain; + } + if (need_normalization) { + domain_array_to_combine = get_normalized_domain(domain_array_to_combine); + } + result_domain.push.apply(result_domain, domain_array_to_combine); + }); + return result_domain; + } + function pycontext() { + return { + datetime: datetime, + context_today: context_today, + time: time, + relativedelta: relativedelta, + current_date: py.PY_call( + time.strftime, [py.str.fromJSON('%Y-%m-%d')]), + }; + } + + function eval_contexts(contexts, evaluation_context) { + evaluation_context = _.extend(pycontext(), evaluation_context || {}); + return _(contexts).reduce(function (result_context, ctx) { + // __eval_context evaluations can lead to some of `contexts`'s + // values being null, skip them as well as empty contexts + if (_.isEmpty(ctx)) { return result_context; } + if (_.isString(ctx)) { + // wrap raw strings in context + ctx = { __ref: 'context', __debug: ctx }; + } + var evaluated = ctx; + switch(ctx.__ref) { + case 'context': + evaluation_context.context = evaluation_context; + evaluated = py.eval(ctx.__debug, wrap_context(evaluation_context)); + break; + case 'compound_context': + var eval_context = eval_contexts([ctx.__eval_context]); + evaluated = eval_contexts( + ctx.__contexts, _.extend({}, evaluation_context, eval_context)); + break; + } + // add newly evaluated context to evaluation context for following + // siblings + _.extend(evaluation_context, evaluated); + return _.extend(result_context, evaluated); + }, {}); + } + + function eval_groupbys(contexts, evaluation_context) { + evaluation_context = _.extend(pycontext(), evaluation_context || {}); + var result_group = []; + _(contexts).each(function (ctx) { + if (_.isString(ctx)) { + // wrap raw strings in context + ctx = { __ref: 'context', __debug: ctx }; + } + var group; + var evaluated = ctx; + switch(ctx.__ref) { + case 'context': + evaluation_context.context = evaluation_context; + evaluated = py.eval(ctx.__debug, wrap_context(evaluation_context)); + break; + case 'compound_context': + var eval_context = eval_contexts([ctx.__eval_context]); + evaluated = eval_contexts( + ctx.__contexts, _.extend({}, evaluation_context, eval_context)); + break; + } + group = evaluated.group_by; + if (!group) { return; } + if (typeof group === 'string') { + result_group.push(group); + } else if (group instanceof Array) { + result_group.push.apply(result_group, group); + } else { + throw new Error('Got invalid groupby {{' + + JSON.stringify(group) + '}}'); + } + _.extend(evaluation_context, evaluated); + }); + return result_group; + } + + function pyeval(type, object, context, options) { + context = _.extend(pycontext(), context || {}); + + //noinspection FallthroughInSwitchStatementJS + switch(type) { + case 'context': + case 'contexts': + if (type === 'context') { + object = [object]; + } + return eval_contexts(object, context); + case 'domain': + case 'domains': + if (type === 'domain') + object = [object]; + return eval_domains(object, context); + case 'groupbys': + return eval_groupbys(object, context); + } + throw new Error("Unknow evaluation type " + type); + } + py_utils.eval = pyeval; + + + function eval_domains_and_contexts(source) { + // see Session.eval_context in Python + return { + context: pyeval('contexts', source.contexts || [], source.eval_context), + domain: pyeval('domains', source.domains, source.eval_context), + group_by: pyeval('groupbys', source.group_by_seq || [], source.eval_context), + }; + } + + + py_utils.eval_domains_and_contexts = eval_domains_and_contexts; + +}); diff --git a/custom_addons/backend_base/static/src/scss/light_icon/style.css b/custom_addons/backend_base/static/src/scss/light_icon/style.css new file mode 100644 index 000000000..f0182b8e3 --- /dev/null +++ b/custom_addons/backend_base/static/src/scss/light_icon/style.css @@ -0,0 +1,10123 @@ +@font-face { + font-family: 'icomoon'; + src: url('/backend_base/static/src/icon/light_icon/fonts/icomoon.eot?qju95'); + src: url('/backend_base/static/src/icon/light_icon/fonts/icomoon.eot?qju95#iefix') format('embedded-opentype'), + url('/backend_base/static/src/icon/light_icon/fonts/icomoon.woff2?qju95') format('woff2'), + url('/backend_base/static/src/icon/light_icon/fonts/icomoon.ttf?qju95') format('truetype'), + url('/backend_base/static/src/icon/light_icon/fonts/icomoon.woff?qju95') format('woff'), + url('/backend_base/static/src/icon/light_icon/fonts/icomoon.svg?qju95#icomoon') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="sh-light"], [class*=" sh-light"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'icomoon' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.sh-lightfa-notes:before { + content: "\c3364"; +} +.sh-lightfa-note:before { + content: "\c3363"; +} +.sh-lightfa-input-text:before { + content: "\c3362"; +} +.sh-lightfa-input-pipe:before { + content: "\c3361"; +} +.sh-lightfa-input-numeric:before { + content: "\c3360"; +} +.sh-lightfa-circle-book-open:before { + content: "\c3359"; +} +.sh-lightfa-circle-bookmark:before { + content: "\c3358"; +} +.sh-lightfa-bookmark-slash:before { + content: "\c3357"; +} +.sh-lightfa-book-circle-arrow-up:before { + content: "\c3356"; +} +.sh-lightfa-book-circle-arrow-right:before { + content: "\c3355"; +} +.sh-lightfa-book-arrow-up:before { + content: "\c3354"; +} +.sh-lightfa-book-arrow-right:before { + content: "\c3353"; +} +.sh-lightfa-blog:before { + content: "\c3352"; +} +.sh-lightfa-windsock:before { + content: "\c3351"; +} +.sh-lightfa-umbrella-simple:before { + content: "\c3350"; +} +.sh-lightfa-temperature-sun:before { + content: "\c3349"; +} +.sh-lightfa-temperature-snow:before { + content: "\c3348"; +} +.sh-lightfa-temperature-list:before { + content: "\c3347"; +} +.sh-lightfa-sun-haze:before { + content: "\c3346"; +} +.sh-lightfa-sun-dust:before { + content: "\c3345"; +} +.sh-lightfa-sun-cloud:before { + content: "\c3344"; +} +.sh-lightfa-snowflakes:before { + content: "\c3343"; +} +.sh-lightfa-snowflake-droplets:before { + content: "\c3342"; +} +.sh-lightfa-snow-blowing:before { + content: "\c3341"; +} +.sh-lightfa-smoke:before { + content: "\c3340"; +} +.sh-lightfa-smog:before { + content: "\c3339"; +} +.sh-lightfa-rainbow:before { + content: "\c3338"; +} +.sh-lightfa-poo-storm:before { + content: "\c3337"; +} +.sh-lightfa-moon-cloud:before { + content: "\c3336"; +} +.sh-lightfa-droplet-percent:before { + content: "\c3335"; +} +.sh-lightfa-droplet-degree:before { + content: "\c3334"; +} +.sh-lightfa-cloud-sun-rain:before { + content: "\c3333"; +} +.sh-lightfa-clouds-sun:before { + content: "\c3332"; +} +.sh-lightfa-cloud-snow:before { + content: "\c3331"; +} +.sh-lightfa-clouds-moon:before { + content: "\c3330"; +} +.sh-lightfa-cloud-sleet:before { + content: "\c3329"; +} +.sh-lightfa-cloud-showers:before { + content: "\c3328"; +} +.sh-lightfa-clouds:before { + content: "\c3327"; +} +.sh-lightfa-cloud-rainbow:before { + content: "\c3326"; +} +.sh-lightfa-cloud-rain:before { + content: "\c3325"; +} +.sh-lightfa-cloud-moon-rain:before { + content: "\c3324"; +} +.sh-lightfa-cloud-hail-mixed:before { + content: "\c3323"; +} +.sh-lightfa-cloud-hail:before { + content: "\c3322"; +} +.sh-lightfa-cloud-fog:before { + content: "\c3321"; +} +.sh-lightfa-cloud-drizzle:before { + content: "\c3320"; +} +.sh-lightfa-cloud-bolt-sun:before { + content: "\c3319"; +} +.sh-lightfa-cloud-bolt-moon:before { + content: "\c3318"; +} +.sh-lightfa-user-vneck-hair-long:before { + content: "\c3317"; +} +.sh-lightfa-user-vneck-hair:before { + content: "\c3316"; +} +.sh-lightfa-user-vneck:before { + content: "\c3315"; +} +.sh-lightfa-user-tag:before { + content: "\c3314"; +} +.sh-lightfa-users-slash:before { + content: "\c3313"; +} +.sh-lightfa-user-slash:before { + content: "\c3312"; +} +.sh-lightfa-user-shakespeare:before { + content: "\c3311"; +} +.sh-lightfa-users-gear:before { + content: "\c3310"; +} +.sh-lightfa-user-pen:before { + content: "\c3309"; +} +.sh-lightfa-user-ninja:before { + content: "\c3308"; +} +.sh-lightfa-user-minus:before { + content: "\c3307"; +} +.sh-lightfa-user-magnifying-glass:before { + content: "\c3306"; +} +.sh-lightfa-user-large-slash:before { + content: "\c3305"; +} +.sh-lightfa-user-large:before { + content: "\c3304"; +} +.sh-lightfa-user-headset:before { + content: "\c3303"; +} +.sh-lightfa-user-hair-long:before { + content: "\c3302"; +} +.sh-lightfa-user-hair:before { + content: "\c3301"; +} +.sh-lightfa-user-gear:before { + content: "\c3300"; +} +.sh-lightfa-user-cowboy:before { + content: "\c3299"; +} +.sh-lightfa-user-clock:before { + content: "\c3298"; +} +.sh-lightfa-user-check:before { + content: "\c3297"; +} +.sh-lightfa-square-user:before { + content: "\c3296"; +} +.sh-lightfa-person-simple:before { + content: "\c3295"; +} +.sh-lightfa-person-fairy:before { + content: "\c3294"; +} +.sh-lightfa-person-dress-simple:before { + content: "\c3293"; +} +.sh-lightfa-person-dress-fairy:before { + content: "\c3292"; +} +.sh-lightfa-people-simple:before { + content: "\c3291"; +} +.sh-lightfa-people-pants-simple:before { + content: "\c3290"; +} +.sh-lightfa-people-pants:before { + content: "\c3289"; +} +.sh-lightfa-people-dress-simple:before { + content: "\c3288"; +} +.sh-lightfa-people-dress:before { + content: "\c3287"; +} +.sh-lightfa-people:before { + content: "\c3286"; +} +.sh-lightfa-head-side-goggles:before { + content: "\c3285"; +} +.sh-lightfa-head-side-gear:before { + content: "\c3284"; +} +.sh-lightfa-head-side:before { + content: "\c3283"; +} +.sh-lightfa-child-dress:before { + content: "\c3282"; +} +.sh-lightfa-water-ladder:before { + content: "\c3281"; +} +.sh-lightfa-user-pilot-tie:before { + content: "\c3280"; +} +.sh-lightfa-user-pilot:before { + content: "\c3279"; +} +.sh-lightfa-umbrella-beach:before { + content: "\c3278"; +} +.sh-lightfa-toilet-paper-check:before { + content: "\c3277"; +} +.sh-lightfa-tickets-airline:before { + content: "\c3276"; +} +.sh-lightfa-ticket-airline:before { + content: "\c3275"; +} +.sh-lightfa-suitcase-rolling:before { + content: "\c3274"; +} +.sh-lightfa-plane-departure:before { + content: "\c3273"; +} +.sh-lightfa-plane-arrival:before { + content: "\c3272"; +} +.sh-lightfa-phone-rotary:before { + content: "\c3271"; +} +.sh-lightfa-person-seat-reclined:before { + content: "\c3270"; +} +.sh-lightfa-person-seat:before { + content: "\c3269"; +} +.sh-lightfa-island-tropical:before { + content: "\c3268"; +} +.sh-lightfa-hot-tub-person:before { + content: "\c3267"; +} +.sh-lightfa-hat-beach:before { + content: "\c3266"; +} +.sh-lightfa-escalator:before { + content: "\c3265"; +} +.sh-lightfa-elevator:before { + content: "\c3264"; +} +.sh-lightfa-earth-oceania:before { + content: "\c3263"; +} +.sh-lightfa-earth-europe:before { + content: "\c3262"; +} +.sh-lightfa-earth-asia:before { + content: "\c3261"; +} +.sh-lightfa-earth-americas:before { + content: "\c3260"; +} +.sh-lightfa-earth-africa:before { + content: "\c3259"; +} +.sh-lightfa-cart-flatbed-suitcase:before { + content: "\c3258"; +} +.sh-lightfa-bell-concierge:before { + content: "\c3257"; +} +.sh-lightfa-truck-tow:before { + content: "\c3256"; +} +.sh-lightfa-tricycle-adult:before { + content: "\c3255"; +} +.sh-lightfa-tractor:before { + content: "\c3254"; +} +.sh-lightfa-tower-control:before { + content: "\c3253"; +} +.sh-lightfa-taxi-bus:before { + content: "\c3252"; +} +.sh-lightfa-seat-airline:before { + content: "\c3251"; +} +.sh-lightfa-plane-tail:before { + content: "\c3250"; +} +.sh-lightfa-plane-slash:before { + content: "\c3249"; +} +.sh-lightfa-plane-prop:before { + content: "\c3248"; +} +.sh-lightfa-person-snowmobiling:before { + content: "\c3247"; +} +.sh-lightfa-person-ski-lift:before { + content: "\c3246"; +} +.sh-lightfa-cable-car:before { + content: "\c3245"; +} +.sh-lightfa-wifi-slash:before { + content: "\c3244"; +} +.sh-lightfa-toggle-large-on:before { + content: "\c3243"; +} +.sh-lightfa-toggle-large-off:before { + content: "\c3242"; +} +.sh-lightfa-slider:before { + content: "\c3241"; +} +.sh-lightfa-plane-up-slash:before { + content: "\c3240"; +} +.sh-lightfa-microphone1:before { + content: "\c3239"; +} +.sh-lightfa-location-crosshairs:before { + content: "\c3238"; +} +.sh-lightfa-watch-smart:before { + content: "\c3237"; +} +.sh-lightfa-watch:before { + content: "\c3236"; +} +.sh-lightfa-trash-clock:before { + content: "\c3235"; +} +.sh-lightfa-timer:before { + content: "\c3234"; +} +.sh-lightfa-stopwatch:before { + content: "\c3233"; +} +.sh-lightfa-snooze:before { + content: "\c3232"; +} +.sh-lightfa-reply-clock:before { + content: "\c3231"; +} +.sh-lightfa-hourglass-clock:before { + content: "\c3230"; +} +.sh-lightfa-clock-two-thirty:before { + content: "\c3229"; +} +.sh-lightfa-clock-two:before { + content: "\c3228"; +} +.sh-lightfa-clock-twelve-thirty:before { + content: "\c3227"; +} +.sh-lightfa-clock-twelve:before { + content: "\c3226"; +} +.sh-lightfa-clock-three-thirty:before { + content: "\c3225"; +} +.sh-lightfa-clock-three:before { + content: "\c3224"; +} +.sh-lightfa-clock-ten-thirty:before { + content: "\c3223"; +} +.sh-lightfa-clock-ten:before { + content: "\c3222"; +} +.sh-lightfa-clock-six-thirty:before { + content: "\c3221"; +} +.sh-lightfa-clock-six:before { + content: "\c3220"; +} +.sh-lightfa-clock-seven-thirty:before { + content: "\c3219"; +} +.sh-lightfa-clock-seven:before { + content: "\c3218"; +} +.sh-lightfa-clock-one-thirty:before { + content: "\c3217"; +} +.sh-lightfa-clock-one:before { + content: "\c3216"; +} +.sh-lightfa-clock-nine-thirty:before { + content: "\c3215"; +} +.sh-lightfa-clock-nine:before { + content: "\c3214"; +} +.sh-lightfa-clock-four-thirty:before { + content: "\c3213"; +} +.sh-lightfa-clock-five:before { + content: "\c3212"; +} +.sh-lightfa-clock-eleven-thirty:before { + content: "\c3211"; +} +.sh-lightfa-clock-eleven:before { + content: "\c3210"; +} +.sh-lightfa-clock-eight-thirty:before { + content: "\c3209"; +} +.sh-lightfa-clock-eight:before { + content: "\c3208"; +} +.sh-lightfa-circle-calendar:before { + content: "\c3207"; +} +.sh-lightfa-calendar-week:before { + content: "\c3206"; +} +.sh-lightfa-calendar-users:before { + content: "\c3205"; +} +.sh-lightfa-calendars:before { + content: "\c3204"; +} +.sh-lightfa-calendar-range:before { + content: "\c3203"; +} +.sh-lightfa-calendar-pen:before { + content: "\c3202"; +} +.sh-lightfa-calendar-lines-pen:before { + content: "\c3201"; +} +.sh-lightfa-calendar-lines:before { + content: "\c3200"; +} +.sh-lightfa-calendar-image:before { + content: "\c3199"; +} +.sh-lightfa-calendar-day:before { + content: "\c3198"; +} +.sh-lightfa-calendar-clock:before { + content: "\c3197"; +} +.sh-lightfa-calendar-circle-user:before { + content: "\c3196"; +} +.sh-lightfa-calendar-circle-plus:before { + content: "\c3195"; +} +.sh-lightfa-calendar-circle-minus:before { + content: "\c3194"; +} +.sh-lightfa-calendar-circle-exclamation:before { + content: "\c3193"; +} +.sh-lightfa-calendar-arrow-up:before { + content: "\c3192"; +} +.sh-lightfa-calendar-arrow-down:before { + content: "\c3191"; +} +.sh-lightfa-bell-plus:before { + content: "\c3190"; +} +.sh-lightfa-alarm-snooze:before { + content: "\c3189"; +} +.sh-lightfa-alarm-plus:before { + content: "\c3188"; +} +.sh-lightfa-text-slash:before { + content: "\c3187"; +} +.sh-lightfa-text-size:before { + content: "\c3186"; +} +.sh-lightfa-text:before { + content: "\c3185"; +} +.sh-lightfa-table-list:before { + content: "\c3184"; +} +.sh-lightfa-table-cells-large:before { + content: "\c3183"; +} +.sh-lightfa-table-cells:before { + content: "\c3182"; +} +.sh-lightfa-square-list:before { + content: "\c3181"; +} +.sh-lightfa-square-a-lock:before { + content: "\c3180"; +} +.sh-lightfa-spell-check:before { + content: "\c3179"; +} +.sh-lightfa-paragraph-left:before { + content: "\c3178"; +} +.sh-lightfa-overline:before { + content: "\c3177"; +} +.sh-lightfa-lock-hashtag:before { + content: "\c3176"; +} +.sh-lightfa-lock-a:before { + content: "\c3175"; +} +.sh-lightfa-line-height:before { + content: "\c3174"; +} +.sh-lightfa-line-columns:before { + content: "\c3173"; +} +.sh-lightfa-kerning:before { + content: "\c3172"; +} +.sh-lightfa-hashtag-lock:before { + content: "\c3171"; +} +.sh-lightfa-h6:before { + content: "\c3170"; +} +.sh-lightfa-h5:before { + content: "\c3169"; +} +.sh-lightfa-h4:before { + content: "\c3168"; +} +.sh-lightfa-h3:before { + content: "\c3167"; +} +.sh-lightfa-h2:before { + content: "\c3166"; +} +.sh-lightfa-h1:before { + content: "\c3165"; +} +.sh-lightfa-font-case:before { + content: "\c3164"; +} +.sh-lightfa-filter-slash:before { + content: "\c3163"; +} +.sh-lightfa-filters:before { + content: "\c3162"; +} +.sh-lightfa-filter-list:before { + content: "\c3161"; +} +.sh-lightfa-filter-circle-xmark:before { + content: "\c3160"; +} +.sh-lightfa-file-dashed-line:before { + content: "\c3159"; +} +.sh-lightfa-border-top-left:before { + content: "\c3158"; +} +.sh-lightfa-border-top:before { + content: "\c3157"; +} +.sh-lightfa-border-right:before { + content: "\c3156"; +} +.sh-lightfa-border-outer:before { + content: "\c3155"; +} +.sh-lightfa-border-none:before { + content: "\c3154"; +} +.sh-lightfa-border-left:before { + content: "\c3153"; +} +.sh-lightfa-border-inner:before { + content: "\c3152"; +} +.sh-lightfa-border-center-v:before { + content: "\c3151"; +} +.sh-lightfa-border-center-h:before { + content: "\c3150"; +} +.sh-lightfa-border-bottom-right:before { + content: "\c3149"; +} +.sh-lightfa-border-bottom:before { + content: "\c3148"; +} +.sh-lightfa-block-quote:before { + content: "\c3147"; +} +.sh-lightfa-border-all:before { + content: "\c3146"; +} +.sh-lightfa-align-slash:before { + content: "\c3145"; +} +.sh-lightfa-weight-hanging:before { + content: "\c3144"; +} +.sh-lightfa-watch-apple:before { + content: "\c3143"; +} +.sh-lightfa-volleyball:before { + content: "\c3142"; +} +.sh-lightfa-tennis-ball:before { + content: "\c3141"; +} +.sh-lightfa-table-tennis-paddle-ball:before { + content: "\c3140"; +} +.sh-lightfa-stopwatch-20:before { + content: "\c3139"; +} +.sh-lightfa-sportsball:before { + content: "\c3138"; +} +.sh-lightfa-spa:before { + content: "\c3137"; +} +.sh-lightfa-ski-boot-ski:before { + content: "\c3136"; +} +.sh-lightfa-shuttlecock:before { + content: "\c3135"; +} +.sh-lightfa-rugby-ball:before { + content: "\c3134"; +} +.sh-lightfa-racquet:before { + content: "\c3133"; +} +.sh-lightfa-pickleball:before { + content: "\c3132"; +} +.sh-lightfa-person-snowboarding:before { + content: "\c3131"; +} +.sh-lightfa-person-ski-jumping:before { + content: "\c3130"; +} +.sh-lightfa-person-skiing-nordic:before { + content: "\c3129"; +} +.sh-lightfa-person-skiing:before { + content: "\c3128"; +} +.sh-lightfa-person-skating:before { + content: "\c3127"; +} +.sh-lightfa-person-running-fast:before { + content: "\c3126"; +} +.sh-lightfa-person-running:before { + content: "\c3125"; +} +.sh-lightfa-medal:before { + content: "\c3124"; +} +.sh-lightfa-mask-snorkel:before { + content: "\c3123"; +} +.sh-lightfa-luchador-mask:before { + content: "\c3122"; +} +.sh-lightfa-lacrosse-stick-ball:before { + content: "\c3121"; +} +.sh-lightfa-lacrosse-stick:before { + content: "\c3120"; +} +.sh-lightfa-hockey-sticks:before { + content: "\c3119"; +} +.sh-lightfa-hockey-stick-puck:before { + content: "\c3118"; +} +.sh-lightfa-hockey-puck:before { + content: "\c3117"; +} +.sh-lightfa-golf-flag-hole:before { + content: "\c3116"; +} +.sh-lightfa-golf-club:before { + content: "\c3115"; +} +.sh-lightfa-golf-ball-tee:before { + content: "\c3114"; +} +.sh-lightfa-goal-net:before { + content: "\c3113"; +} +.sh-lightfa-football-helmet:before { + content: "\c3112"; +} +.sh-lightfa-football:before { + content: "\c3111"; +} +.sh-lightfa-flying-disc:before { + content: "\c3110"; +} +.sh-lightfa-flag-pennant:before { + content: "\c3109"; +} +.sh-lightfa-field-hockey-stick-ball:before { + content: "\c3108"; +} +.sh-lightfa-dumbbell:before { + content: "\c3107"; +} +.sh-lightfa-curling-stone:before { + content: "\c3106"; +} +.sh-lightfa-cricket-bat-ball:before { + content: "\c3105"; +} +.sh-lightfa-broom-ball:before { + content: "\c3104"; +} +.sh-lightfa-boxing-glove:before { + content: "\c3103"; +} +.sh-lightfa-bowling-pins:before { + content: "\c3102"; +} +.sh-lightfa-bowling-ball-pin:before { + content: "\c3101"; +} +.sh-lightfa-bowling-ball:before { + content: "\c3100"; +} +.sh-lightfa-basketball:before { + content: "\c3099"; +} +.sh-lightfa-baseball:before { + content: "\c3098"; +} +.sh-lightfa-badminton:before { + content: "\c3097"; +} +.sh-lightfa-award-simple:before { + content: "\c3096"; +} +.sh-lightfa-spinner-third:before { + content: "\c3095"; +} +.sh-lightfa-slash:before { + content: "\c3094"; +} +.sh-lightfa-loader:before { + content: "\c3093"; +} +.sh-lightfa-bullseye-arrow:before { + content: "\c3092"; +} +.sh-lightfa-user-group-simple:before { + content: "\c3091"; +} +.sh-lightfa-user-group:before { + content: "\c3090"; +} +.sh-lightfa-share-from-square:before { + content: "\c3089"; +} +.sh-lightfa-share1:before { + content: "\c3088"; +} +.sh-lightfa-store-slash:before { + content: "\c3087"; +} +.sh-lightfa-shop-slash:before { + content: "\c3086"; +} +.sh-lightfa-nfc-trash:before { + content: "\c3085"; +} +.sh-lightfa-nfc-symbol:before { + content: "\c3084"; +} +.sh-lightfa-nfc-slash:before { + content: "\c3083"; +} +.sh-lightfa-nfc-pen:before { + content: "\c3082"; +} +.sh-lightfa-nfc-magnifying-glass:before { + content: "\c3081"; +} +.sh-lightfa-nfc-lock:before { + content: "\c3080"; +} +.sh-lightfa-nfc:before { + content: "\c3079"; +} +.sh-lightfa-hexagon-vertical-nft-slanted:before { + content: "\c3078"; +} +.sh-lightfa-hexagon-vertical-nft:before { + content: "\c3077"; +} +.sh-lightfa-gem:before { + content: "\c3076"; +} +.sh-lightfa-cart-xmark:before { + content: "\c3075"; +} +.sh-lightfa-cart-shopping-fast:before { + content: "\c3074"; +} +.sh-lightfa-cart-minus:before { + content: "\c3073"; +} +.sh-lightfa-cart-circle-xmark:before { + content: "\c3072"; +} +.sh-lightfa-cart-circle-plus:before { + content: "\c3071"; +} +.sh-lightfa-cart-circle-exclamation:before { + content: "\c3070"; +} +.sh-lightfa-cart-circle-check:before { + content: "\c3069"; +} +.sh-lightfa-cart-circle-arrow-up:before { + content: "\c3068"; +} +.sh-lightfa-cart-circle-arrow-down:before { + content: "\c3067"; +} +.sh-lightfa-cart-arrow-up:before { + content: "\c3066"; +} +.sh-lightfa-cart-arrow-down1:before { + content: "\c3065"; +} +.sh-lightfa-basket-shopping-simple:before { + content: "\c3064"; +} +.sh-lightfa-triangle:before { + content: "\c3063"; +} +.sh-lightfa-star-sharp-half-stroke:before { + content: "\c3062"; +} +.sh-lightfa-square-star:before { + content: "\c3061"; +} +.sh-lightfa-square-small:before { + content: "\c3060"; +} +.sh-lightfa-square-quarters:before { + content: "\c3059"; +} +.sh-lightfa-square-bolt:before { + content: "\c3058"; +} +.sh-lightfa-seal:before { + content: "\c3057"; +} +.sh-lightfa-rhombus:before { + content: "\c3056"; +} +.sh-lightfa-rectangle-wide:before { + content: "\c3055"; +} +.sh-lightfa-rectangle-vertical:before { + content: "\c3054"; +} +.sh-lightfa-rectangle:before { + content: "\c3053"; +} +.sh-lightfa-octagon:before { + content: "\c3052"; +} +.sh-lightfa-hexagon:before { + content: "\c3051"; +} +.sh-lightfa-heart-half-stroke:before { + content: "\c3050"; +} +.sh-lightfa-heart-half:before { + content: "\c3049"; +} +.sh-lightfa-heart-crack:before { + content: "\c3048"; +} +.sh-lightfa-diamond-half-stroke:before { + content: "\c3047"; +} +.sh-lightfa-diamond-half:before { + content: "\c3046"; +} +.sh-lightfa-crown:before { + content: "\c3045"; +} +.sh-lightfa-circle-three-quarters:before { + content: "\c3044"; +} +.sh-lightfa-circle-star:before { + content: "\c3043"; +} +.sh-lightfa-circles-overlap:before { + content: "\c3042"; +} +.sh-lightfa-circle-small:before { + content: "\c3041"; +} +.sh-lightfa-circle-quarter:before { + content: "\c3040"; +} +.sh-lightfa-circle-half:before { + content: "\c3039"; +} +.sh-lightfa-circle-bolt:before { + content: "\c3038"; +} +.sh-lightfa-user-unlock:before { + content: "\c3037"; +} +.sh-lightfa-user-shield:before { + content: "\c3036"; +} +.sh-lightfa-user-police-tie:before { + content: "\c3035"; +} +.sh-lightfa-user-police:before { + content: "\c3034"; +} +.sh-lightfa-user-lock:before { + content: "\c3033"; +} +.sh-lightfa-unlock-keyhole:before { + content: "\c3032"; +} +.sh-lightfa-siren-on:before { + content: "\c3031"; +} +.sh-lightfa-siren:before { + content: "\c3030"; +} +.sh-lightfa-shield-xmark:before { + content: "\c3029"; +} +.sh-lightfa-shield-slash:before { + content: "\c3028"; +} +.sh-lightfa-shield-plus:before { + content: "\c3027"; +} +.sh-lightfa-shield-minus:before { + content: "\c3026"; +} +.sh-lightfa-shield-keyhole:before { + content: "\c3025"; +} +.sh-lightfa-shield-check:before { + content: "\c3024"; +} +.sh-lightfa-passport:before { + content: "\c3023"; +} +.sh-lightfa-panel-fire:before { + content: "\c3022"; +} +.sh-lightfa-panel-ews:before { + content: "\c3021"; +} +.sh-lightfa-lock-keyhole-open:before { + content: "\c3020"; +} +.sh-lightfa-lock1:before { + content: "\c3019"; +} +.sh-lightfa-gun-slash:before { + content: "\c3018"; +} +.sh-lightfa-gun:before { + content: "\c3017"; +} +.sh-lightfa-file-signature:before { + content: "\c3016"; +} +.sh-lightfa-file-contract:before { + content: "\c3015"; +} +.sh-lightfa-block-brick-fire:before { + content: "\c3014"; +} +.sh-lightfa-badge-sheriff:before { + content: "\c3013"; +} +.sh-lightfa-user-visor:before { + content: "\c3012"; +} +.sh-lightfa-user-robot-xmarks:before { + content: "\c3011"; +} +.sh-lightfa-user-robot:before { + content: "\c3010"; +} +.sh-lightfa-user-hair-buns:before { + content: "\c3009"; +} +.sh-lightfa-user-bounty-hunter:before { + content: "\c3008"; +} +.sh-lightfa-transporter-empty:before { + content: "\c3007"; +} +.sh-lightfa-transporter-7:before { + content: "\c3006"; +} +.sh-lightfa-transporter-6:before { + content: "\c3005"; +} +.sh-lightfa-transporter-5:before { + content: "\c3004"; +} +.sh-lightfa-transporter-4:before { + content: "\c3003"; +} +.sh-lightfa-transporter-3:before { + content: "\c3002"; +} +.sh-lightfa-transporter-2:before { + content: "\c3001"; +} +.sh-lightfa-transporter-1:before { + content: "\c3000"; +} +.sh-lightfa-transporter:before { + content: "\c2999"; +} +.sh-lightfa-swords-laser:before { + content: "\c2998"; +} +.sh-lightfa-sword-laser-alt:before { + content: "\c2997"; +} +.sh-lightfa-sword-laser:before { + content: "\c2996"; +} +.sh-lightfa-starship-freighter:before { + content: "\c2995"; +} +.sh-lightfa-starship:before { + content: "\c2994"; +} +.sh-lightfa-starfighter-twin-ion-engine-advanced:before { + content: "\c2993"; +} +.sh-lightfa-starfighter-twin-ion-engine:before { + content: "\c2992"; +} +.sh-lightfa-starfighter:before { + content: "\c2991"; +} +.sh-lightfa-space-station-moon-construction:before { + content: "\c2990"; +} +.sh-lightfa-space-station-moon:before { + content: "\c2989"; +} +.sh-lightfa-rocket-launch:before { + content: "\c2988"; +} +.sh-lightfa-robot-astromech:before { + content: "\c2987"; +} +.sh-lightfa-raygun:before { + content: "\c2986"; +} +.sh-lightfa-police-box:before { + content: "\c2985"; +} +.sh-lightfa-person-to-portal:before { + content: "\c2984"; +} +.sh-lightfa-person-from-portal:before { + content: "\c2983"; +} +.sh-lightfa-cloud-binary:before { + content: "\c2982"; +} +.sh-lightfa-temperature-low:before { + content: "\c2981"; +} +.sh-lightfa-temperature-high:before { + content: "\c2980"; +} +.sh-lightfa-kite:before { + content: "\c2979"; +} +.sh-lightfa-key-skeleton:before { + content: "\c2978"; +} +.sh-lightfa-yin-yang:before { + content: "\c2977"; +} +.sh-lightfa-star-of-david:before { + content: "\c2976"; +} +.sh-lightfa-star-and-crescent:before { + content: "\c2975"; +} +.sh-lightfa-spaghetti-monster-flying:before { + content: "\c2974"; +} +.sh-lightfa-scroll-torah:before { + content: "\c2973"; +} +.sh-lightfa-person-praying:before { + content: "\c2972"; +} +.sh-lightfa-peace:before { + content: "\c2971"; +} +.sh-lightfa-om:before { + content: "\c2970"; +} +.sh-lightfa-khanda:before { + content: "\c2969"; +} +.sh-lightfa-jedi:before { + content: "\c2968"; +} +.sh-lightfa-hanukiah:before { + content: "\c2967"; +} +.sh-lightfa-hamsa:before { + content: "\c2966"; +} +.sh-lightfa-dharmachakra:before { + content: "\c2965"; +} +.sh-lightfa-cross:before { + content: "\c2964"; +} +.sh-lightfa-book-tanakh:before { + content: "\c2963"; +} +.sh-lightfa-book-quran:before { + content: "\c2962"; +} +.sh-lightfa-book-journal-whills:before { + content: "\c2961"; +} +.sh-lightfa-book-bible:before { + content: "\c2960"; +} +.sh-lightfa-bahai:before { + content: "\c2959"; +} +.sh-lightfa-ankh:before { + content: "\c2958"; +} +.sh-lightfa-tick:before { + content: "\c2957"; +} +.sh-lightfa-square-ampersand:before { + content: "\c2956"; +} +.sh-lightfa-slash-forward:before { + content: "\c2955"; +} +.sh-lightfa-slash-back:before { + content: "\c2954"; +} +.sh-lightfa-semicolon:before { + content: "\c2953"; +} +.sh-lightfa-section:before { + content: "\c2952"; +} +.sh-lightfa-quotes:before { + content: "\c2951"; +} +.sh-lightfa-pipe:before { + content: "\c2950"; +} +.sh-lightfa-period:before { + content: "\c2949"; +} +.sh-lightfa-option:before { + content: "\c2948"; +} +.sh-lightfa-interrobang:before { + content: "\c2947"; +} +.sh-lightfa-hyphen:before { + content: "\c2946"; +} +.sh-lightfa-horizontal-rule:before { + content: "\c2945"; +} +.sh-lightfa-ditto:before { + content: "\c2944"; +} +.sh-lightfa-corner:before { + content: "\c2943"; +} +.sh-lightfa-comma:before { + content: "\c2942"; +} +.sh-lightfa-colon:before { + content: "\c2941"; +} +.sh-lightfa-circle-ampersand:before { + content: "\c2940"; +} +.sh-lightfa-apostrophe:before { + content: "\c2939"; +} +.sh-lightfa-ampersand:before { + content: "\c2938"; +} +.sh-lightfa-alt:before { + content: "\c2937"; +} +.sh-lightfa-accent-grave:before { + content: "\c2936"; +} +.sh-lightfa-xmark-to-slot:before { + content: "\c2935"; +} +.sh-lightfa-republican:before { + content: "\c2934"; +} +.sh-lightfa-poll-people:before { + content: "\c2933"; +} +.sh-lightfa-podium-star:before { + content: "\c2932"; +} +.sh-lightfa-person-sign:before { + content: "\c2931"; +} +.sh-lightfa-person-booth:before { + content: "\c2930"; +} +.sh-lightfa-flag-usa:before { + content: "\c2929"; +} +.sh-lightfa-flag-swallowtail:before { + content: "\c2928"; +} +.sh-lightfa-democrat:before { + content: "\c2927"; +} +.sh-lightfa-clipboard-list-check:before { + content: "\c2926"; +} +.sh-lightfa-check-to-slot:before { + content: "\c2925"; +} +.sh-lightfa-calendar-star:before { + content: "\c2924"; +} +.sh-lightfa-box-ballot:before { + content: "\c2923"; +} +.sh-lightfa-booth-curtain:before { + content: "\c2922"; +} +.sh-lightfa-ballot-check:before { + content: "\c2921"; +} +.sh-lightfa-ballot:before { + content: "\c2920"; +} +.sh-lightfa-rectangle-vertical-history:before { + content: "\c2919"; +} +.sh-lightfa-rectangle-history-circle-user:before { + content: "\c2918"; +} +.sh-lightfa-rectangle-history-circle-plus:before { + content: "\c2917"; +} +.sh-lightfa-rectangle-history:before { + content: "\c2916"; +} +.sh-lightfa-panorama:before { + content: "\c2915"; +} +.sh-lightfa-image-user:before { + content: "\c2914"; +} +.sh-lightfa-images-user:before { + content: "\c2913"; +} +.sh-lightfa-image-slash:before { + content: "\c2912"; +} +.sh-lightfa-image-portrait:before { + content: "\c2911"; +} +.sh-lightfa-image-polaroid-user:before { + content: "\c2910"; +} +.sh-lightfa-image-landscape:before { + content: "\c2909"; +} +.sh-lightfa-high-definition:before { + content: "\c2908"; +} +.sh-lightfa-hexagon-image:before { + content: "\c2907"; +} +.sh-lightfa-films:before { + content: "\c2906"; +} +.sh-lightfa-circle-camera:before { + content: "\c2905"; +} +.sh-lightfa-camera-viewfinder:before { + content: "\c2904"; +} +.sh-lightfa-camera-slash:before { + content: "\c2903"; +} +.sh-lightfa-camera-rotate:before { + content: "\c2902"; +} +.sh-lightfa-bolt-slash:before { + content: "\c2901"; +} +.sh-lightfa-bolt-lightning:before { + content: "\c2900"; +} +.sh-lightfa-bolt-auto:before { + content: "\c2899"; +} +.sh-lightfa-aperture:before { + content: "\c2898"; +} +.sh-lightfa-square-9:before { + content: "\c2897"; +} +.sh-lightfa-square-8:before { + content: "\c2896"; +} +.sh-lightfa-square-7:before { + content: "\c2895"; +} +.sh-lightfa-square-6:before { + content: "\c2894"; +} +.sh-lightfa-square-5:before { + content: "\c2893"; +} +.sh-lightfa-square-4:before { + content: "\c2892"; +} +.sh-lightfa-square-3:before { + content: "\c2891"; +} +.sh-lightfa-square-2:before { + content: "\c2890"; +} +.sh-lightfa-square-1:before { + content: "\c2889"; +} +.sh-lightfa-square-0:before { + content: "\c2888"; +} +.sh-lightfa-circle-9:before { + content: "\c2887"; +} +.sh-lightfa-circle-8:before { + content: "\c2886"; +} +.sh-lightfa-circle-7:before { + content: "\c2885"; +} +.sh-lightfa-circle-6:before { + content: "\c2884"; +} +.sh-lightfa-circle-5:before { + content: "\c2883"; +} +.sh-lightfa-circle-4:before { + content: "\c2882"; +} +.sh-lightfa-circle-3:before { + content: "\c2881"; +} +.sh-lightfa-circle-2:before { + content: "\c2880"; +} +.sh-lightfa-circle-1:before { + content: "\c2879"; +} +.sh-lightfa-circle-0:before { + content: "\c2878"; +} +.sh-lightfa-9:before { + content: "\c2877"; +} +.sh-lightfa-8:before { + content: "\c2876"; +} +.sh-lightfa-7:before { + content: "\c2875"; +} +.sh-lightfa-6:before { + content: "\c2874"; +} +.sh-lightfa-5:before { + content: "\c2873"; +} +.sh-lightfa-4:before { + content: "\c2872"; +} +.sh-lightfa-3:before { + content: "\c2871"; +} +.sh-lightfa-2:before { + content: "\c2870"; +} +.sh-lightfa-1:before { + content: "\c2869"; +} +.sh-lightfa-0:before { + content: "\c2868"; +} +.sh-lightfa-00:before { + content: "\c2867"; +} +.sh-lightfa-trillium:before { + content: "\c2866"; +} +.sh-lightfa-tree-palm:before { + content: "\c2865"; +} +.sh-lightfa-raindrops:before { + content: "\c2864"; +} +.sh-lightfa-pompebled:before { + content: "\c2863"; +} +.sh-lightfa-leaf-oak:before { + content: "\c2862"; +} +.sh-lightfa-leaf-maple:before { + content: "\c2861"; +} +.sh-lightfa-icicles:before { + content: "\c2860"; +} +.sh-lightfa-flower-tulip:before { + content: "\c2859"; +} +.sh-lightfa-flower-daffodil:before { + content: "\c2858"; +} +.sh-lightfa-flower:before { + content: "\c2857"; +} +.sh-lightfa-clover:before { + content: "\c2856"; +} +.sh-lightfa-cloud-sun:before { + content: "\c2855"; +} +.sh-lightfa-cactus:before { + content: "\c2854"; +} +.sh-lightfa-whistle:before { + content: "\c2853"; +} +.sh-lightfa-violin:before { + content: "\c2852"; +} +.sh-lightfa-user-music:before { + content: "\c2851"; +} +.sh-lightfa-turntable:before { + content: "\c2850"; +} +.sh-lightfa-trumpet:before { + content: "\c2849"; +} +.sh-lightfa-triangle-instrument:before { + content: "\c2848"; +} +.sh-lightfa-square-sliders-vertical:before { + content: "\c2847"; +} +.sh-lightfa-square-sliders:before { + content: "\c2846"; +} +.sh-lightfa-saxophone-fire:before { + content: "\c2845"; +} +.sh-lightfa-saxophone:before { + content: "\c2844"; +} +.sh-lightfa-record-vinyl:before { + content: "\c2843"; +} +.sh-lightfa-radio-tuner:before { + content: "\c2842"; +} +.sh-lightfa-piano-keyboard:before { + content: "\c2841"; +} +.sh-lightfa-piano:before { + content: "\c2840"; +} +.sh-lightfa-music-slash:before { + content: "\c2839"; +} +.sh-lightfa-music-note-slash:before { + content: "\c2838"; +} +.sh-lightfa-music-note:before { + content: "\c2837"; +} +.sh-lightfa-message-music:before { + content: "\c2836"; +} +.sh-lightfa-list-music:before { + content: "\c2835"; +} +.sh-lightfa-kazoo:before { + content: "\c2834"; +} +.sh-lightfa-guitars:before { + content: "\c2833"; +} +.sh-lightfa-guitar-electric:before { + content: "\c2832"; +} +.sh-lightfa-guitar:before { + content: "\c2831"; +} +.sh-lightfa-gramophone:before { + content: "\c2830"; +} +.sh-lightfa-flute:before { + content: "\c2829"; +} +.sh-lightfa-drum-steelpan:before { + content: "\c2828"; +} +.sh-lightfa-drum:before { + content: "\c2827"; +} +.sh-lightfa-cowbell-circle-plus:before { + content: "\c2826"; +} +.sh-lightfa-cowbell:before { + content: "\c2825"; +} +.sh-lightfa-clarinet:before { + content: "\c2824"; +} +.sh-lightfa-cassette-tape:before { + content: "\c2823"; +} +.sh-lightfa-boombox:before { + content: "\c2822"; +} +.sh-lightfa-banjo:before { + content: "\c2821"; +} +.sh-lightfa-album-collection-circle-user:before { + content: "\c2820"; +} +.sh-lightfa-album-collection-circle-plus:before { + content: "\c2819"; +} +.sh-lightfa-wine-glass-crack:before { + content: "\c2818"; +} +.sh-lightfa-truck-ramp-couch:before { + content: "\c2817"; +} +.sh-lightfa-truck-ramp-box:before { + content: "\c2816"; +} +.sh-lightfa-truck-ramp:before { + content: "\c2815"; +} +.sh-lightfa-truck-moving:before { + content: "\c2814"; +} +.sh-lightfa-tape:before { + content: "\c2813"; +} +.sh-lightfa-square-this-way-up:before { + content: "\c2812"; +} +.sh-lightfa-square-fragile:before { + content: "\c2811"; +} +.sh-lightfa-sign-hanging:before { + content: "\c2810"; +} +.sh-lightfa-ramp-loading:before { + content: "\c2809"; +} +.sh-lightfa-people-carry-box:before { + content: "\c2808"; +} +.sh-lightfa-box-taped:before { + content: "\c2807"; +} +.sh-lightfa-box-open-full:before { + content: "\c2806"; +} +.sh-lightfa-box-open:before { + content: "\c2805"; +} +.sh-lightfa-tugrik-sign:before { + content: "\c2804"; +} +.sh-lightfa-tenge-sign:before { + content: "\c2803"; +} +.sh-lightfa-sack:before { + content: "\c2802"; +} +.sh-lightfa-rupiah-sign:before { + content: "\c2801"; +} +.sh-lightfa-rupee-sign:before { + content: "\c2800"; +} +.sh-lightfa-peso-sign:before { + content: "\c2799"; +} +.sh-lightfa-peseta-sign:before { + content: "\c2798"; +} +.sh-lightfa-naira-sign:before { + content: "\c2797"; +} +.sh-lightfa-money-simple-from-bracket:before { + content: "\c2796"; +} +.sh-lightfa-money-from-bracket:before { + content: "\c2795"; +} +.sh-lightfa-money-check-dollar:before { + content: "\c2794"; +} +.sh-lightfa-money-check:before { + content: "\c2793"; +} +.sh-lightfa-money-bill-wave:before { + content: "\c2792"; +} +.sh-lightfa-money-bills-simple:before { + content: "\c2791"; +} +.sh-lightfa-money-bill-simple-wave:before { + content: "\c2790"; +} +.sh-lightfa-money-bill-simple:before { + content: "\c2789"; +} +.sh-lightfa-mill-sign:before { + content: "\c2788"; +} +.sh-lightfa-manat-sign:before { + content: "\c2787"; +} +.sh-lightfa-litecoin-sign:before { + content: "\c2786"; +} +.sh-lightfa-lira-sign:before { + content: "\c2785"; +} +.sh-lightfa-lari-sign:before { + content: "\c2784"; +} +.sh-lightfa-kip-sign:before { + content: "\c2783"; +} +.sh-lightfa-hryvnia-sign:before { + content: "\c2782"; +} +.sh-lightfa-guarani-sign:before { + content: "\c2781"; +} +.sh-lightfa-franc-sign:before { + content: "\c2780"; +} +.sh-lightfa-florin-sign:before { + content: "\c2779"; +} +.sh-lightfa-file-invoice-dollar:before { + content: "\c2778"; +} +.sh-lightfa-file-invoice:before { + content: "\c2777"; +} +.sh-lightfa-dong-sign:before { + content: "\c2776"; +} +.sh-lightfa-display-chart-up:before { + content: "\c2775"; +} +.sh-lightfa-cruzeiro-sign:before { + content: "\c2774"; +} +.sh-lightfa-credit-card-front:before { + content: "\c2773"; +} +.sh-lightfa-credit-card-blank:before { + content: "\c2772"; +} +.sh-lightfa-colon-sign:before { + content: "\c2771"; +} +.sh-lightfa-coin-vertical:before { + content: "\c2770"; +} +.sh-lightfa-coins:before { + content: "\c2769"; +} +.sh-lightfa-coin-front:before { + content: "\c2768"; +} +.sh-lightfa-coin-blank:before { + content: "\c2767"; +} +.sh-lightfa-coin:before { + content: "\c2766"; +} +.sh-lightfa-circle-yen:before { + content: "\c2765"; +} +.sh-lightfa-circle-sterling:before { + content: "\c2764"; +} +.sh-lightfa-circle-euro:before { + content: "\c2763"; +} +.sh-lightfa-chf-sign:before { + content: "\c2762"; +} +.sh-lightfa-chart-pie-simple-circle-dollar:before { + content: "\c2761"; +} +.sh-lightfa-chart-pie-simple-circle-currency:before { + content: "\c2760"; +} +.sh-lightfa-cent-sign:before { + content: "\c2759"; +} +.sh-lightfa-cedi-sign:before { + content: "\c2758"; +} +.sh-lightfa-cash-register:before { + content: "\c2757"; +} +.sh-lightfa-brazilian-real-sign:before { + content: "\c2756"; +} +.sh-lightfa-bangladeshi-taka-sign:before { + content: "\c2755"; +} +.sh-lightfa-baht-sign:before { + content: "\c2754"; +} +.sh-lightfa-austral-sign:before { + content: "\c2753"; +} +.sh-lightfa-x-ray:before { + content: "\c2752"; +} +.sh-lightfa-weight-scale:before { + content: "\c2751"; +} +.sh-lightfa-wave-pulse:before { + content: "\c2750"; +} +.sh-lightfa-watch-fitness:before { + content: "\c2749"; +} +.sh-lightfa-walker:before { + content: "\c2748"; +} +.sh-lightfa-virus-slash:before { + content: "\c2747"; +} +.sh-lightfa-viruses:before { + content: "\c2746"; +} +.sh-lightfa-virus-covid-slash:before { + content: "\c2745"; +} +.sh-lightfa-vials:before { + content: "\c2744"; +} +.sh-lightfa-vial:before { + content: "\c2743"; +} +.sh-lightfa-users-medical:before { + content: "\c2742"; +} +.sh-lightfa-user-nurse-hair-long:before { + content: "\c2741"; +} +.sh-lightfa-user-nurse-hair:before { + content: "\c2740"; +} +.sh-lightfa-user-nurse:before { + content: "\c2739"; +} +.sh-lightfa-user-doctor-message:before { + content: "\c2738"; +} +.sh-lightfa-user-doctor-hair-long:before { + content: "\c2737"; +} +.sh-lightfa-user-doctor-hair:before { + content: "\c2736"; +} +.sh-lightfa-toothbrush:before { + content: "\c2735"; +} +.sh-lightfa-tooth:before { + content: "\c2734"; +} +.sh-lightfa-thermometer1:before { + content: "\c2733"; +} +.sh-lightfa-teeth-open:before { + content: "\c2732"; +} +.sh-lightfa-teeth:before { + content: "\c2731"; +} +.sh-lightfa-tablets:before { + content: "\c2730"; +} +.sh-lightfa-stretcher:before { + content: "\c2729"; +} +.sh-lightfa-stomach:before { + content: "\c2728"; +} +.sh-lightfa-star-of-life:before { + content: "\c2727"; +} +.sh-lightfa-smoking:before { + content: "\c2726"; +} +.sh-lightfa-skeleton-ribs:before { + content: "\c2725"; +} +.sh-lightfa-skeleton:before { + content: "\c2724"; +} +.sh-lightfa-shield-virus:before { + content: "\c2723"; +} +.sh-lightfa-scalpel-line-dashed:before { + content: "\c2722"; +} +.sh-lightfa-scalpel:before { + content: "\c2721"; +} +.sh-lightfa-receipt:before { + content: "\c2720"; +} +.sh-lightfa-pump-medical:before { + content: "\c2719"; +} +.sh-lightfa-prescription-bottle-pill:before { + content: "\c2718"; +} +.sh-lightfa-prescription-bottle-medical:before { + content: "\c2717"; +} +.sh-lightfa-prescription-bottle:before { + content: "\c2716"; +} +.sh-lightfa-prescription:before { + content: "\c2715"; +} +.sh-lightfa-person-dots-from-line:before { + content: "\c2714"; +} +.sh-lightfa-pager:before { + content: "\c2713"; +} +.sh-lightfa-notes-medical:before { + content: "\c2712"; +} +.sh-lightfa-note-medical:before { + content: "\c2711"; +} +.sh-lightfa-nose:before { + content: "\c2710"; +} +.sh-lightfa-mortar-pestle:before { + content: "\c2709"; +} +.sh-lightfa-monitor-waveform:before { + content: "\c2708"; +} +.sh-lightfa-lungs-virus:before { + content: "\c2707"; +} +.sh-lightfa-lips:before { + content: "\c2706"; +} +.sh-lightfa-laptop-medical:before { + content: "\c2705"; +} +.sh-lightfa-kit-medical:before { + content: "\c2704"; +} +.sh-lightfa-kidneys:before { + content: "\c2703"; +} +.sh-lightfa-joint:before { + content: "\c2702"; +} +.sh-lightfa-inhaler:before { + content: "\c2701"; +} +.sh-lightfa-id-card-clip:before { + content: "\c2700"; +} +.sh-lightfa-head-side-virus:before { + content: "\c2699"; +} +.sh-lightfa-head-side-medical:before { + content: "\c2698"; +} +.sh-lightfa-head-side-mask:before { + content: "\c2697"; +} +.sh-lightfa-head-side-cough-slash:before { + content: "\c2696"; +} +.sh-lightfa-head-side-cough:before { + content: "\c2695"; +} +.sh-lightfa-head-side-brain:before { + content: "\c2694"; +} +.sh-lightfa-flask-gear:before { + content: "\c2693"; +} +.sh-lightfa-file-waveform:before { + content: "\c2692"; +} +.sh-lightfa-files-medical:before { + content: "\c2691"; +} +.sh-lightfa-file-prescription:before { + content: "\c2690"; +} +.sh-lightfa-file-medical:before { + content: "\c2689"; +} +.sh-lightfa-eyes:before { + content: "\c2688"; +} +.sh-lightfa-dna:before { + content: "\c2687"; +} +.sh-lightfa-disease:before { + content: "\c2686"; +} +.sh-lightfa-crutches:before { + content: "\c2685"; +} +.sh-lightfa-crutch:before { + content: "\c2684"; +} +.sh-lightfa-clock-rotate-left:before { + content: "\c2683"; +} +.sh-lightfa-clipboard-prescription:before { + content: "\c2682"; +} +.sh-lightfa-clipboard-medical:before { + content: "\c2681"; +} +.sh-lightfa-capsules:before { + content: "\c2680"; +} +.sh-lightfa-cannabis:before { + content: "\c2679"; +} +.sh-lightfa-briefcase-medical:before { + content: "\c2678"; +} +.sh-lightfa-brain:before { + content: "\c2677"; +} +.sh-lightfa-book-user:before { + content: "\c2676"; +} +.sh-lightfa-books-medical:before { + content: "\c2675"; +} +.sh-lightfa-book-medical:before { + content: "\c2674"; +} +.sh-lightfa-bong:before { + content: "\c2673"; +} +.sh-lightfa-bone-break:before { + content: "\c2672"; +} +.sh-lightfa-bed-pulse:before { + content: "\c2671"; +} +.sh-lightfa-ban-smoking:before { + content: "\c2670"; +} +.sh-lightfa-bacteria:before { + content: "\c2669"; +} +.sh-lightfa-volume-xmark:before { + content: "\c2668"; +} +.sh-lightfa-volume-slash:before { + content: "\c2667"; +} +.sh-lightfa-up-right-and-down-left-from-center1:before { + content: "\c2666"; +} +.sh-lightfa-scrubber:before { + content: "\c2665"; +} +.sh-lightfa-play-pause:before { + content: "\c2664"; +} +.sh-lightfa-pause1:before { + content: "\c2663"; +} +.sh-lightfa-minimize:before { + content: "\c2662"; +} +.sh-lightfa-expand-wide:before { + content: "\c2661"; +} +.sh-lightfa-expand1:before { + content: "\c2660"; +} +.sh-lightfa-down-left-and-up-right-to-center1:before { + content: "\c2659"; +} +.sh-lightfa-compress-wide:before { + content: "\c2658"; +} +.sh-lightfa-compress1:before { + content: "\c2657"; +} +.sh-lightfa-arrows-maximize:before { + content: "\c2656"; +} +.sh-lightfa-xmark:before { + content: "\c2655"; +} +.sh-lightfa-wave-triangle:before { + content: "\c2654"; +} +.sh-lightfa-wave-square:before { + content: "\c2653"; +} +.sh-lightfa-wave-sine:before { + content: "\c2652"; +} +.sh-lightfa-value-absolute:before { + content: "\c2651"; +} +.sh-lightfa-union:before { + content: "\c2650"; +} +.sh-lightfa-tilde:before { + content: "\c2649"; +} +.sh-lightfa-theta:before { + content: "\c2648"; +} +.sh-lightfa-tally-4:before { + content: "\c2647"; +} +.sh-lightfa-tally-3:before { + content: "\c2646"; +} +.sh-lightfa-tally-2:before { + content: "\c2645"; +} +.sh-lightfa-tally-1:before { + content: "\c2644"; +} +.sh-lightfa-tally:before { + content: "\c2643"; +} +.sh-lightfa-square-xmark:before { + content: "\c2642"; +} +.sh-lightfa-square-root-variable:before { + content: "\c2641"; +} +.sh-lightfa-square-root:before { + content: "\c2640"; +} +.sh-lightfa-square-divide:before { + content: "\c2639"; +} +.sh-lightfa-sigma:before { + content: "\c2638"; +} +.sh-lightfa-plus-minus:before { + content: "\c2637"; +} +.sh-lightfa-pi:before { + content: "\c2636"; +} +.sh-lightfa-omega:before { + content: "\c2635"; +} +.sh-lightfa-octagon-xmark:before { + content: "\c2634"; +} +.sh-lightfa-octagon-plus:before { + content: "\c2633"; +} +.sh-lightfa-octagon-minus:before { + content: "\c2632"; +} +.sh-lightfa-octagon-divide:before { + content: "\c2631"; +} +.sh-lightfa-not-equal:before { + content: "\c2630"; +} +.sh-lightfa-less-than-equal:before { + content: "\c2629"; +} +.sh-lightfa-less-than:before { + content: "\c2628"; +} +.sh-lightfa-lambda:before { + content: "\c2627"; +} +.sh-lightfa-intersection:before { + content: "\c2626"; +} +.sh-lightfa-integral:before { + content: "\c2625"; +} +.sh-lightfa-infinity:before { + content: "\c2624"; +} +.sh-lightfa-hexagon-xmark:before { + content: "\c2623"; +} +.sh-lightfa-hexagon-plus:before { + content: "\c2622"; +} +.sh-lightfa-hexagon-minus:before { + content: "\c2621"; +} +.sh-lightfa-hexagon-divide:before { + content: "\c2620"; +} +.sh-lightfa-greater-than-equal:before { + content: "\c2619"; +} +.sh-lightfa-greater-than:before { + content: "\c2618"; +} +.sh-lightfa-function:before { + content: "\c2617"; +} +.sh-lightfa-equals:before { + content: "\c2616"; +} +.sh-lightfa-empty-set:before { + content: "\c2615"; +} +.sh-lightfa-divide:before { + content: "\c2614"; +} +.sh-lightfa-circle-xmark:before { + content: "\c2613"; +} +.sh-lightfa-circle-divide:before { + content: "\c2612"; +} +.sh-lightfa-calculator-simple:before { + content: "\c2611"; +} +.sh-lightfa-abacus:before { + content: "\c2610"; +} +.sh-lightfa-user-group-crown:before { + content: "\c2609"; +} +.sh-lightfa-user-crown:before { + content: "\c2608"; +} +.sh-lightfa-rectangle-ad:before { + content: "\c2607"; +} +.sh-lightfa-messages-dollar:before { + content: "\c2606"; +} +.sh-lightfa-message-dollar:before { + content: "\c2605"; +} +.sh-lightfa-megaphone:before { + content: "\c2604"; +} +.sh-lightfa-magnifying-glass-location:before { + content: "\c2603"; +} +.sh-lightfa-magnifying-glass-dollar:before { + content: "\c2602"; +} +.sh-lightfa-lightbulb-on:before { + content: "\c2601"; +} +.sh-lightfa-lightbulb-gear:before { + content: "\c2600"; +} +.sh-lightfa-lightbulb-dollar:before { + content: "\c2599"; +} +.sh-lightfa-gift-card:before { + content: "\c2598"; +} +.sh-lightfa-filter-circle-dollar:before { + content: "\c2597"; +} +.sh-lightfa-envelopes-bulk:before { + content: "\c2596"; +} +.sh-lightfa-envelope-open-text:before { + content: "\c2595"; +} +.sh-lightfa-envelope-open-dollar:before { + content: "\c2594"; +} +.sh-lightfa-display-chart-up-circle-dollar:before { + content: "\c2593"; +} +.sh-lightfa-display-chart-up-circle-currency:before { + content: "\c2592"; +} +.sh-lightfa-comments-dollar:before { + content: "\c2591"; +} +.sh-lightfa-comment-dollar:before { + content: "\c2590"; +} +.sh-lightfa-chart-mixed-up-circle-dollar:before { + content: "\c2589"; +} +.sh-lightfa-chart-mixed-up-circle-currency:before { + content: "\c2588"; +} +.sh-lightfa-bullseye-pointer:before { + content: "\c2587"; +} +.sh-lightfa-billboard:before { + content: "\c2586"; +} +.sh-lightfa-water-arrow-up:before { + content: "\c2585"; +} +.sh-lightfa-water-arrow-down:before { + content: "\c2584"; +} +.sh-lightfa-person-swimming:before { + content: "\c2583"; +} +.sh-lightfa-fish-cooked:before { + content: "\c2582"; +} +.sh-lightfa-dolphin1:before { + content: "\c2581"; +} +.sh-lightfa-buoy-mooring:before { + content: "\c2580"; +} +.sh-lightfa-buoy:before { + content: "\c2579"; +} +.sh-lightfa-truck-plow:before { + content: "\c2578"; +} +.sh-lightfa-trophy-star:before { + content: "\c2577"; +} +.sh-lightfa-train-tram:before { + content: "\c2576"; +} +.sh-lightfa-train-track:before { + content: "\c2575"; +} +.sh-lightfa-traffic-light-stop:before { + content: "\c2574"; +} +.sh-lightfa-traffic-light-slow:before { + content: "\c2573"; +} +.sh-lightfa-traffic-light-go:before { + content: "\c2572"; +} +.sh-lightfa-traffic-light:before { + content: "\c2571"; +} +.sh-lightfa-ticket-simple:before { + content: "\c2570"; +} +.sh-lightfa-square-parking-slash:before { + content: "\c2569"; +} +.sh-lightfa-square-parking:before { + content: "\c2568"; +} +.sh-lightfa-snowplow:before { + content: "\c2567"; +} +.sh-lightfa-route-interstate:before { + content: "\c2566"; +} +.sh-lightfa-route-highway:before { + content: "\c2565"; +} +.sh-lightfa-restroom:before { + content: "\c2564"; +} +.sh-lightfa-plane-engines:before { + content: "\c2563"; +} +.sh-lightfa-plane1:before { + content: "\c2562"; +} +.sh-lightfa-money-bill:before { + content: "\c2561"; +} +.sh-lightfa-location-xmark:before { + content: "\c2560"; +} +.sh-lightfa-location-smile:before { + content: "\c2559"; +} +.sh-lightfa-location-question:before { + content: "\c2558"; +} +.sh-lightfa-location-plus:before { + content: "\c2557"; +} +.sh-lightfa-location-pin-slash:before { + content: "\c2556"; +} +.sh-lightfa-location-pin:before { + content: "\c2555"; +} +.sh-lightfa-location-pen:before { + content: "\c2554"; +} +.sh-lightfa-location-minus:before { + content: "\c2553"; +} +.sh-lightfa-location-dot-slash:before { + content: "\c2552"; +} +.sh-lightfa-location-crosshairs-slash:before { + content: "\c2551"; +} +.sh-lightfa-location-check:before { + content: "\c2550"; +} +.sh-lightfa-images:before { + content: "\c2549"; +} +.sh-lightfa-do-not-enter:before { + content: "\c2548"; +} +.sh-lightfa-diamond-turn-right:before { + content: "\c2547"; +} +.sh-lightfa-compass-slash:before { + content: "\c2546"; +} +.sh-lightfa-circle-parking:before { + content: "\c2545"; +} +.sh-lightfa-circle-location-arrow:before { + content: "\c2544"; +} +.sh-lightfa-bookmark1:before { + content: "\c2543"; +} +.sh-lightfa-book-atlas:before { + content: "\c2542"; +} +.sh-lightfa-ban-parking:before { + content: "\c2541"; +} +.sh-lightfa-bags-shopping:before { + content: "\c2540"; +} +.sh-lightfa-truck-flatbed:before { + content: "\c2539"; +} +.sh-lightfa-truck-fast:before { + content: "\c2538"; +} +.sh-lightfa-truck-container-empty:before { + content: "\c2537"; +} +.sh-lightfa-truck-clock:before { + content: "\c2536"; +} +.sh-lightfa-train-subway-tunnel:before { + content: "\c2535"; +} +.sh-lightfa-tablet-rugged:before { + content: "\c2534"; +} +.sh-lightfa-shelves-empty:before { + content: "\c2533"; +} +.sh-lightfa-shelves:before { + content: "\c2532"; +} +.sh-lightfa-scanner-touchscreen:before { + content: "\c2531"; +} +.sh-lightfa-scanner-keyboard:before { + content: "\c2530"; +} +.sh-lightfa-scanner-gun:before { + content: "\c2529"; +} +.sh-lightfa-rectangle-barcode:before { + content: "\c2528"; +} +.sh-lightfa-person-dolly-empty:before { + content: "\c2527"; +} +.sh-lightfa-person-dolly:before { + content: "\c2526"; +} +.sh-lightfa-person-carry-box:before { + content: "\c2525"; +} +.sh-lightfa-pallet-boxes:before { + content: "\c2524"; +} +.sh-lightfa-pallet-box:before { + content: "\c2523"; +} +.sh-lightfa-pallet:before { + content: "\c2522"; +} +.sh-lightfa-gear-complex:before { + content: "\c2521"; +} +.sh-lightfa-dolly-empty:before { + content: "\c2520"; +} +.sh-lightfa-dolly:before { + content: "\c2519"; +} +.sh-lightfa-conveyor-belt-empty:before { + content: "\c2518"; +} +.sh-lightfa-conveyor-belt-boxes:before { + content: "\c2517"; +} +.sh-lightfa-conveyor-belt-arm:before { + content: "\c2516"; +} +.sh-lightfa-conveyor-belt:before { + content: "\c2515"; +} +.sh-lightfa-clipboard-list:before { + content: "\c2514"; +} +.sh-lightfa-clipboard-check:before { + content: "\c2513"; +} +.sh-lightfa-cart-flatbed-empty:before { + content: "\c2512"; +} +.sh-lightfa-cart-flatbed-boxes:before { + content: "\c2511"; +} +.sh-lightfa-cart-flatbed:before { + content: "\c2510"; +} +.sh-lightfa-boxes-stacked:before { + content: "\c2509"; +} +.sh-lightfa-box-circle-check:before { + content: "\c2508"; +} +.sh-lightfa-box-check:before { + content: "\c2507"; +} +.sh-lightfa-box:before { + content: "\c2506"; +} +.sh-lightfa-barcode-scan:before { + content: "\c2505"; +} +.sh-lightfa-virus-covid:before { + content: "\c2504"; +} +.sh-lightfa-virus:before { + content: "\c2503"; +} +.sh-lightfa-vial-virus:before { + content: "\c2502"; +} +.sh-lightfa-vial-circle-check:before { + content: "\c2501"; +} +.sh-lightfa-users-viewfinder:before { + content: "\c2500"; +} +.sh-lightfa-users-rectangle:before { + content: "\c2499"; +} +.sh-lightfa-users-rays:before { + content: "\c2498"; +} +.sh-lightfa-users-line:before { + content: "\c2497"; +} +.sh-lightfa-users-between-lines:before { + content: "\c2496"; +} +.sh-lightfa-user-injured:before { + content: "\c2495"; +} +.sh-lightfa-truck-plane:before { + content: "\c2494"; +} +.sh-lightfa-truck-front:before { + content: "\c2493"; +} +.sh-lightfa-truck-droplet:before { + content: "\c2492"; +} +.sh-lightfa-truck-arrow-right:before { + content: "\c2491"; +} +.sh-lightfa-syringe:before { + content: "\c2490"; +} +.sh-lightfa-staff-snake:before { + content: "\c2489"; +} +.sh-lightfa-square-virus:before { + content: "\c2488"; +} +.sh-lightfa-square-person-confined:before { + content: "\c2487"; +} +.sh-lightfa-square-nfi:before { + content: "\c2486"; +} +.sh-lightfa-shield-heart:before { + content: "\c2485"; +} +.sh-lightfa-sailboat:before { + content: "\c2484"; +} +.sh-lightfa-sack-xmark:before { + content: "\c2483"; +} +.sh-lightfa-sack-dollar:before { + content: "\c2482"; +} +.sh-lightfa-road-spikes:before { + content: "\c2481"; +} +.sh-lightfa-road-lock:before { + content: "\c2480"; +} +.sh-lightfa-road-circle-xmark:before { + content: "\c2479"; +} +.sh-lightfa-road-circle-exclamation:before { + content: "\c2478"; +} +.sh-lightfa-road-circle-check:before { + content: "\c2477"; +} +.sh-lightfa-road-bridge:before { + content: "\c2476"; +} +.sh-lightfa-road-barrier:before { + content: "\c2475"; +} +.sh-lightfa-ranking-star:before { + content: "\c2474"; +} +.sh-lightfa-radio:before { + content: "\c2473"; +} +.sh-lightfa-plane-up:before { + content: "\c2472"; +} +.sh-lightfa-plane-lock:before { + content: "\c2471"; +} +.sh-lightfa-plane-circle-xmark:before { + content: "\c2470"; +} +.sh-lightfa-plane-circle-exclamation:before { + content: "\c2469"; +} +.sh-lightfa-plane-circle-check:before { + content: "\c2468"; +} +.sh-lightfa-pills:before { + content: "\c2467"; +} +.sh-lightfa-person-walking-luggage:before { + content: "\c2466"; +} +.sh-lightfa-person-walking:before { + content: "\c2465"; +} +.sh-lightfa-person-through-window:before { + content: "\c2464"; +} +.sh-lightfa-person-rays:before { + content: "\c2463"; +} +.sh-lightfa-person-pregnant:before { + content: "\c2462"; +} +.sh-lightfa-person-military-to-person:before { + content: "\c2461"; +} +.sh-lightfa-person-military-rifle:before { + content: "\c2460"; +} +.sh-lightfa-person-military-pointing:before { + content: "\c2459"; +} +.sh-lightfa-person-harassing:before { + content: "\c2458"; +} +.sh-lightfa-person-half-dress:before { + content: "\c2457"; +} +.sh-lightfa-person-falling-burst:before { + content: "\c2456"; +} +.sh-lightfa-person-falling:before { + content: "\c2455"; +} +.sh-lightfa-person-dress-burst:before { + content: "\c2454"; +} +.sh-lightfa-person-circle-xmark:before { + content: "\c2453"; +} +.sh-lightfa-person-circle-question:before { + content: "\c2452"; +} +.sh-lightfa-person-circle-plus:before { + content: "\c2451"; +} +.sh-lightfa-person-circle-minus:before { + content: "\c2450"; +} +.sh-lightfa-person-circle-exclamation:before { + content: "\c2449"; +} +.sh-lightfa-person-circle-check:before { + content: "\c2448"; +} +.sh-lightfa-person-burst:before { + content: "\c2447"; +} +.sh-lightfa-person-arrow-up-from-line:before { + content: "\c2446"; +} +.sh-lightfa-person-arrow-down-to-line:before { + content: "\c2445"; +} +.sh-lightfa-people-robbery:before { + content: "\c2444"; +} +.sh-lightfa-people-pulling:before { + content: "\c2443"; +} +.sh-lightfa-people-line:before { + content: "\c2442"; +} +.sh-lightfa-people-group:before { + content: "\c2441"; +} +.sh-lightfa-people-arrows:before { + content: "\c2440"; +} +.sh-lightfa-money-bill-wheat:before { + content: "\c2439"; +} +.sh-lightfa-money-bill-trend-up:before { + content: "\c2438"; +} +.sh-lightfa-money-bill-transfer:before { + content: "\c2437"; +} +.sh-lightfa-money-bills:before { + content: "\c2436"; +} +.sh-lightfa-mask-ventilator:before { + content: "\c2435"; +} +.sh-lightfa-mask-face:before { + content: "\c2434"; +} +.sh-lightfa-mars-and-venus-burst:before { + content: "\c2433"; +} +.sh-lightfa-lungs:before { + content: "\c2432"; +} +.sh-lightfa-location-pin-lock:before { + content: "\c2431"; +} +.sh-lightfa-land-mine-on:before { + content: "\c2430"; +} +.sh-lightfa-jet-fighter-up:before { + content: "\c2429"; +} +.sh-lightfa-helicopter-symbol:before { + content: "\c2428"; +} +.sh-lightfa-helicopter:before { + content: "\c2427"; +} +.sh-lightfa-heart-circle-xmark:before { + content: "\c2426"; +} +.sh-lightfa-heart-circle-plus:before { + content: "\c2425"; +} +.sh-lightfa-heart-circle-minus:before { + content: "\c2424"; +} +.sh-lightfa-heart-circle-exclamation:before { + content: "\c2423"; +} +.sh-lightfa-heart-circle-check:before { + content: "\c2422"; +} +.sh-lightfa-heart-circle-bolt:before { + content: "\c2421"; +} +.sh-lightfa-handcuffs:before { + content: "\c2420"; +} +.sh-lightfa-group-arrows-rotate:before { + content: "\c2419"; +} +.sh-lightfa-flask-vial:before { + content: "\c2418"; +} +.sh-lightfa-ferry:before { + content: "\c2417"; +} +.sh-lightfa-clipboard-user:before { + content: "\c2416"; +} +.sh-lightfa-bridge-water:before { + content: "\c2415"; +} +.sh-lightfa-bridge-lock:before { + content: "\c2414"; +} +.sh-lightfa-bridge-circle-xmark:before { + content: "\c2413"; +} +.sh-lightfa-bridge-circle-exclamation:before { + content: "\c2412"; +} +.sh-lightfa-bridge-circle-check:before { + content: "\c2411"; +} +.sh-lightfa-book-bookmark:before { + content: "\c2410"; +} +.sh-lightfa-bacterium:before { + content: "\c2409"; +} +.sh-lightfa-arrows-down-to-people:before { + content: "\c2408"; +} +.sh-lightfa-anchor-lock:before { + content: "\c2407"; +} +.sh-lightfa-anchor-circle-xmark:before { + content: "\c2406"; +} +.sh-lightfa-anchor-circle-exclamation:before { + content: "\c2405"; +} +.sh-lightfa-anchor-circle-check:before { + content: "\c2404"; +} +.sh-lightfa-window-frame-open:before { + content: "\c2403"; +} +.sh-lightfa-window-frame:before { + content: "\c2402"; +} +.sh-lightfa-washing-machine:before { + content: "\c2401"; +} +.sh-lightfa-vacuum-robot:before { + content: "\c2400"; +} +.sh-lightfa-vacuum:before { + content: "\c2399"; +} +.sh-lightfa-utensils-slash:before { + content: "\c2398"; +} +.sh-lightfa-utensils:before { + content: "\c2397"; +} +.sh-lightfa-toilet-paper-xmark:before { + content: "\c2396"; +} +.sh-lightfa-toilet-paper-under-slash:before { + content: "\c2395"; +} +.sh-lightfa-toilet-paper-under:before { + content: "\c2394"; +} +.sh-lightfa-toilet-paper-slash:before { + content: "\c2393"; +} +.sh-lightfa-toilet-paper-blank-under:before { + content: "\c2392"; +} +.sh-lightfa-toilet:before { + content: "\c2391"; +} +.sh-lightfa-stairs:before { + content: "\c2390"; +} +.sh-lightfa-square-ring:before { + content: "\c2389"; +} +.sh-lightfa-sprinkler-ceiling:before { + content: "\c2388"; +} +.sh-lightfa-sprinkler:before { + content: "\c2387"; +} +.sh-lightfa-soap:before { + content: "\c2386"; +} +.sh-lightfa-sink:before { + content: "\c2385"; +} +.sh-lightfa-shutters:before { + content: "\c2384"; +} +.sh-lightfa-shower-down:before { + content: "\c2383"; +} +.sh-lightfa-rug:before { + content: "\c2382"; +} +.sh-lightfa-refrigerator:before { + content: "\c2381"; +} +.sh-lightfa-pump-soap:before { + content: "\c2380"; +} +.sh-lightfa-plate-utensils:before { + content: "\c2379"; +} +.sh-lightfa-person-to-door:before { + content: "\c2378"; +} +.sh-lightfa-oven:before { + content: "\c2377"; +} +.sh-lightfa-microwave:before { + content: "\c2376"; +} +.sh-lightfa-loveseat:before { + content: "\c2375"; +} +.sh-lightfa-light-switch-on:before { + content: "\c2374"; +} +.sh-lightfa-light-switch-off:before { + content: "\c2373"; +} +.sh-lightfa-light-switch:before { + content: "\c2372"; +} +.sh-lightfa-light-ceiling:before { + content: "\c2371"; +} +.sh-lightfa-lightbulb-cfl-on:before { + content: "\c2370"; +} +.sh-lightfa-lamp-floor:before { + content: "\c2369"; +} +.sh-lightfa-lamp:before { + content: "\c2368"; +} +.sh-lightfa-knife:before { + content: "\c2367"; +} +.sh-lightfa-kitchen-set:before { + content: "\c2366"; +} +.sh-lightfa-jug-detergent:before { + content: "\c2365"; +} +.sh-lightfa-house-user:before { + content: "\c2364"; +} +.sh-lightfa-house-person-return:before { + content: "\c2363"; +} +.sh-lightfa-house-person-leave:before { + content: "\c2362"; +} +.sh-lightfa-house-chimney-user:before { + content: "\c2361"; +} +.sh-lightfa-fork-knife:before { + content: "\c2360"; +} +.sh-lightfa-fork:before { + content: "\c2359"; +} +.sh-lightfa-fire-hydrant:before { + content: "\c2358"; +} +.sh-lightfa-fan-table:before { + content: "\c2357"; +} +.sh-lightfa-dryer-heat:before { + content: "\c2356"; +} +.sh-lightfa-dryer:before { + content: "\c2355"; +} +.sh-lightfa-door-open:before { + content: "\c2354"; +} +.sh-lightfa-door-closed:before { + content: "\c2353"; +} +.sh-lightfa-couch:before { + content: "\c2352"; +} +.sh-lightfa-clothes-hanger:before { + content: "\c2351"; +} +.sh-lightfa-clock-desk:before { + content: "\c2350"; +} +.sh-lightfa-circle-sort-up:before { + content: "\c2349"; +} +.sh-lightfa-circle-sort-down:before { + content: "\c2348"; +} +.sh-lightfa-circle-sort:before { + content: "\c2347"; +} +.sh-lightfa-chair-office:before { + content: "\c2346"; +} +.sh-lightfa-chair:before { + content: "\c2345"; +} +.sh-lightfa-camera-security:before { + content: "\c2344"; +} +.sh-lightfa-box-tissue:before { + content: "\c2343"; +} +.sh-lightfa-blinds-raised:before { + content: "\c2342"; +} +.sh-lightfa-blinds-open:before { + content: "\c2341"; +} +.sh-lightfa-blinds:before { + content: "\c2340"; +} +.sh-lightfa-blanket-fire:before { + content: "\c2339"; +} +.sh-lightfa-blanket:before { + content: "\c2338"; +} +.sh-lightfa-bin-recycle:before { + content: "\c2337"; +} +.sh-lightfa-bin-bottles-recycle:before { + content: "\c2336"; +} +.sh-lightfa-bin-bottles:before { + content: "\c2335"; +} +.sh-lightfa-bed-front:before { + content: "\c2334"; +} +.sh-lightfa-bed-empty:before { + content: "\c2333"; +} +.sh-lightfa-bed-bunk:before { + content: "\c2332"; +} +.sh-lightfa-bag-seedling:before { + content: "\c2331"; +} +.sh-lightfa-arrow-up-from-water-pump:before { + content: "\c2330"; +} +.sh-lightfa-air-conditioner:before { + content: "\c2329"; +} +.sh-lightfa-wreath:before { + content: "\c2328"; +} +.sh-lightfa-tree-decorated:before { + content: "\c2327"; +} +.sh-lightfa-tree-christmas:before { + content: "\c2326"; +} +.sh-lightfa-star-christmas:before { + content: "\c2325"; +} +.sh-lightfa-sleigh:before { + content: "\c2324"; +} +.sh-lightfa-rings-wedding:before { + content: "\c2323"; +} +.sh-lightfa-ring-diamond:before { + content: "\c2322"; +} +.sh-lightfa-ornament:before { + content: "\c2321"; +} +.sh-lightfa-mistletoe:before { + content: "\c2320"; +} +.sh-lightfa-menorah:before { + content: "\c2319"; +} +.sh-lightfa-lights-holiday:before { + content: "\c2318"; +} +.sh-lightfa-holly-berry:before { + content: "\c2317"; +} +.sh-lightfa-gifts:before { + content: "\c2316"; +} +.sh-lightfa-fireplace:before { + content: "\c2315"; +} +.sh-lightfa-calendar-heart:before { + content: "\c2314"; +} +.sh-lightfa-angel:before { + content: "\c2313"; +} +.sh-lightfa-youtube:before { + content: "\c2312"; +} +.sh-lightfa-whatsapp:before { + content: "\c2311"; +} +.sh-lightfa-wechat:before { + content: "\c2310"; +} +.sh-lightfa-viber:before { + content: "\c2309"; +} +.sh-lightfa-twitter:before { + content: "\c2308"; +} +.sh-lightfa-tumblr:before { + content: "\c2307"; +} +.sh-lightfa-tiktok:before { + content: "\c2306"; +} +.sh-lightfa-telegram:before { + content: "\c2305"; +} +.sh-lightfa-snapfish:before { + content: "\c2304"; +} +.sh-lightfa-snapchat:before { + content: "\c2303"; +} +.sh-lightfa-skype:before { + content: "\c2302"; +} +.sh-lightfa-reddit:before { + content: "\c2301"; +} +.sh-lightfa-quora:before { + content: "\c2300"; +} +.sh-lightfa-pinterest:before { + content: "\c2299"; +} +.sh-lightfa-myspace:before { + content: "\c2298"; +} +.sh-lightfa-microsoft-teams:before { + content: "\c2297"; +} +.sh-lightfa-linkedin:before { + content: "\c2296"; +} +.sh-lightfa-instagram:before { + content: "\c2295"; +} +.sh-lightfa-hike:before { + content: "\c2294"; +} +.sh-lightfa-hangouts:before { + content: "\c2293"; +} +.sh-lightfa-flixster:before { + content: "\c2292"; +} +.sh-lightfa-facebook:before { + content: "\c2291"; +} +.sh-lightfa-dribbble:before { + content: "\c2290"; +} +.sh-lightfa-clutch:before { + content: "\c2289"; +} +.sh-lightfa-classmates:before { + content: "\c2288"; +} +.sh-lightfa-hand-wave:before { + content: "\c2287"; +} +.sh-lightfa-hands-praying:before { + content: "\c2286"; +} +.sh-lightfa-hand-sparkles:before { + content: "\c2285"; +} +.sh-lightfa-hands-holding-diamond:before { + content: "\c2284"; +} +.sh-lightfa-hands-holding:before { + content: "\c2283"; +} +.sh-lightfa-handshake-slash:before { + content: "\c2282"; +} +.sh-lightfa-hands-clapping:before { + content: "\c2281"; +} +.sh-lightfa-hands-bubbles:before { + content: "\c2280"; +} +.sh-lightfa-hands-bound:before { + content: "\c2279"; +} +.sh-lightfa-hand-point-up:before { + content: "\c2278"; +} +.sh-lightfa-hand-point-right:before { + content: "\c2277"; +} +.sh-lightfa-hand-point-ribbon:before { + content: "\c2276"; +} +.sh-lightfa-hand-point-left:before { + content: "\c2275"; +} +.sh-lightfa-hand-point-down:before { + content: "\c2274"; +} +.sh-lightfa-hand-middle-finger:before { + content: "\c2273"; +} +.sh-lightfa-hand-love:before { + content: "\c2272"; +} +.sh-lightfa-hand-horns:before { + content: "\c2271"; +} +.sh-lightfa-hand-holding-skull:before { + content: "\c2270"; +} +.sh-lightfa-hand-holding-medical:before { + content: "\c2269"; +} +.sh-lightfa-hand-holding-box:before { + content: "\c2268"; +} +.sh-lightfa-hand-holding:before { + content: "\c2267"; +} +.sh-lightfa-hand-fist:before { + content: "\c2266"; +} +.sh-lightfa-hand-fingers-crossed:before { + content: "\c2265"; +} +.sh-lightfa-hand-dots:before { + content: "\c2264"; +} +.sh-lightfa-hand-back-point-up:before { + content: "\c2263"; +} +.sh-lightfa-hand-back-point-right:before { + content: "\c2262"; +} +.sh-lightfa-hand-back-point-ribbon:before { + content: "\c2261"; +} +.sh-lightfa-hand-back-point-left:before { + content: "\c2260"; +} +.sh-lightfa-hand-back-point-down:before { + content: "\c2259"; +} +.sh-lightfa-tombstone-blank:before { + content: "\c2258"; +} +.sh-lightfa-tombstone:before { + content: "\c2257"; +} +.sh-lightfa-spider-web:before { + content: "\c2256"; +} +.sh-lightfa-skull:before { + content: "\c2255"; +} +.sh-lightfa-scarecrow:before { + content: "\c2254"; +} +.sh-lightfa-mask:before { + content: "\c2253"; +} +.sh-lightfa-knife-kitchen:before { + content: "\c2252"; +} +.sh-lightfa-jack-o-lantern:before { + content: "\c2251"; +} +.sh-lightfa-hockey-mask:before { + content: "\c2250"; +} +.sh-lightfa-coffin-cross:before { + content: "\c2249"; +} +.sh-lightfa-coffin:before { + content: "\c2248"; +} +.sh-lightfa-cloud-moon:before { + content: "\c2247"; +} +.sh-lightfa-claw-marks:before { + content: "\c2246"; +} +.sh-lightfa-candle-holder:before { + content: "\c2245"; +} +.sh-lightfa-broom:before { + content: "\c2244"; +} +.sh-lightfa-wreath-laurel:before { + content: "\c2243"; +} +.sh-lightfa-wand-sparkles:before { + content: "\c2242"; +} +.sh-lightfa-wand:before { + content: "\c2241"; +} +.sh-lightfa-vr-cardboard:before { + content: "\c2240"; +} +.sh-lightfa-treasure-chest:before { + content: "\c2239"; +} +.sh-lightfa-swords:before { + content: "\c2238"; +} +.sh-lightfa-sword:before { + content: "\c2237"; +} +.sh-lightfa-staff:before { + content: "\c2236"; +} +.sh-lightfa-square-full:before { + content: "\c2235"; +} +.sh-lightfa-sparkles:before { + content: "\c2234"; +} +.sh-lightfa-spade:before { + content: "\c2233"; +} +.sh-lightfa-sickle:before { + content: "\c2232"; +} +.sh-lightfa-shield-quartered:before { + content: "\c2231"; +} +.sh-lightfa-shield-halved:before { + content: "\c2230"; +} +.sh-lightfa-shield-cross:before { + content: "\c2229"; +} +.sh-lightfa-scythe:before { + content: "\c2228"; +} +.sh-lightfa-scroll-old:before { + content: "\c2227"; +} +.sh-lightfa-scroll:before { + content: "\c2226"; +} +.sh-lightfa-ring:before { + content: "\c2225"; +} +.sh-lightfa-puzzle-piece-simple:before { + content: "\c2224"; +} +.sh-lightfa-puzzle:before { + content: "\c2223"; +} +.sh-lightfa-pinball:before { + content: "\c2222"; +} +.sh-lightfa-person-pinball:before { + content: "\c2221"; +} +.sh-lightfa-nesting-dolls:before { + content: "\c2220"; +} +.sh-lightfa-mandolin:before { + content: "\c2219"; +} +.sh-lightfa-mace:before { + content: "\c2218"; +} +.sh-lightfa-joystick:before { + content: "\c2217"; +} +.sh-lightfa-helmet-battle:before { + content: "\c2216"; +} +.sh-lightfa-hand-holding-magic:before { + content: "\c2215"; +} +.sh-lightfa-hammer-war:before { + content: "\c2214"; +} +.sh-lightfa-ghost:before { + content: "\c2213"; +} +.sh-lightfa-gamepad-modern:before { + content: "\c2212"; +} +.sh-lightfa-game-board-simple:before { + content: "\c2211"; +} +.sh-lightfa-game-board:before { + content: "\c2210"; +} +.sh-lightfa-fire-flame:before { + content: "\c2209"; +} +.sh-lightfa-eye-evil:before { + content: "\c2208"; +} +.sh-lightfa-dreidel:before { + content: "\c2207"; +} +.sh-lightfa-dice-two:before { + content: "\c2206"; +} +.sh-lightfa-dice-three:before { + content: "\c2205"; +} +.sh-lightfa-dice-six:before { + content: "\c2204"; +} +.sh-lightfa-dice-one:before { + content: "\c2203"; +} +.sh-lightfa-dice-four:before { + content: "\c2202"; +} +.sh-lightfa-dice-five:before { + content: "\c2201"; +} +.sh-lightfa-dice-d20:before { + content: "\c2200"; +} +.sh-lightfa-dice-d12:before { + content: "\c2199"; +} +.sh-lightfa-dice-d10:before { + content: "\c2198"; +} +.sh-lightfa-dice-d8:before { + content: "\c2197"; +} +.sh-lightfa-dice-d6:before { + content: "\c2196"; +} +.sh-lightfa-dice-d4:before { + content: "\c2195"; +} +.sh-lightfa-dice:before { + content: "\c2194"; +} +.sh-lightfa-diamond1:before { + content: "\c2193"; +} +.sh-lightfa-dagger:before { + content: "\c2192"; +} +.sh-lightfa-club:before { + content: "\c2191"; +} +.sh-lightfa-chess-rook-piece:before { + content: "\c2190"; +} +.sh-lightfa-chess-rook:before { + content: "\c2189"; +} +.sh-lightfa-chess-queen-piece:before { + content: "\c2188"; +} +.sh-lightfa-chess-queen:before { + content: "\c2187"; +} +.sh-lightfa-chess-pawn-piece:before { + content: "\c2186"; +} +.sh-lightfa-chess-pawn:before { + content: "\c2185"; +} +.sh-lightfa-chess-knight-piece:before { + content: "\c2184"; +} +.sh-lightfa-chess-knight:before { + content: "\c2183"; +} +.sh-lightfa-chess-king-piece:before { + content: "\c2182"; +} +.sh-lightfa-chess-king:before { + content: "\c2181"; +} +.sh-lightfa-chess-clock-flip:before { + content: "\c2180"; +} +.sh-lightfa-chess-clock:before { + content: "\c2179"; +} +.sh-lightfa-chess-board:before { + content: "\c2178"; +} +.sh-lightfa-chess-bishop-piece:before { + content: "\c2177"; +} +.sh-lightfa-chess-bishop:before { + content: "\c2176"; +} +.sh-lightfa-chess:before { + content: "\c2175"; +} +.sh-lightfa-card-spade:before { + content: "\c2174"; +} +.sh-lightfa-cards-blank:before { + content: "\c2173"; +} +.sh-lightfa-cards:before { + content: "\c2172"; +} +.sh-lightfa-card-heart:before { + content: "\c2171"; +} +.sh-lightfa-card-diamond:before { + content: "\c2170"; +} +.sh-lightfa-card-club:before { + content: "\c2169"; +} +.sh-lightfa-bow-arrow:before { + content: "\c2168"; +} +.sh-lightfa-book-sparkles:before { + content: "\c2167"; +} +.sh-lightfa-book-skull:before { + content: "\c2166"; +} +.sh-lightfa-axe-battle:before { + content: "\c2165"; +} +.sh-lightfa-alien-8bit:before { + content: "\c2164"; +} +.sh-lightfa-watermelon-slice:before { + content: "\c2163"; +} +.sh-lightfa-tomato:before { + content: "\c2162"; +} +.sh-lightfa-strawberry:before { + content: "\c2161"; +} +.sh-lightfa-potato:before { + content: "\c2160"; +} +.sh-lightfa-pineapple:before { + content: "\c2159"; +} +.sh-lightfa-pepper:before { + content: "\c2158"; +} +.sh-lightfa-pear:before { + content: "\c2157"; +} +.sh-lightfa-peapod:before { + content: "\c2156"; +} +.sh-lightfa-peanuts:before { + content: "\c2155"; +} +.sh-lightfa-peanut:before { + content: "\c2154"; +} +.sh-lightfa-peach:before { + content: "\c2153"; +} +.sh-lightfa-onion:before { + content: "\c2152"; +} +.sh-lightfa-olive-branch:before { + content: "\c2151"; +} +.sh-lightfa-olive:before { + content: "\c2150"; +} +.sh-lightfa-mushroom:before { + content: "\c2149"; +} +.sh-lightfa-melon-slice:before { + content: "\c2148"; +} +.sh-lightfa-melon:before { + content: "\c2147"; +} +.sh-lightfa-mango:before { + content: "\c2146"; +} +.sh-lightfa-leafy-green:before { + content: "\c2145"; +} +.sh-lightfa-kiwi-fruit:before { + content: "\c2144"; +} +.sh-lightfa-grapes:before { + content: "\c2143"; +} +.sh-lightfa-garlic:before { + content: "\c2142"; +} +.sh-lightfa-eggplant:before { + content: "\c2141"; +} +.sh-lightfa-cucumber:before { + content: "\c2140"; +} +.sh-lightfa-crate-empty:before { + content: "\c2139"; +} +.sh-lightfa-coconut:before { + content: "\c2138"; +} +.sh-lightfa-citrus-slice:before { + content: "\c2137"; +} +.sh-lightfa-citrus:before { + content: "\c2136"; +} +.sh-lightfa-chestnut:before { + content: "\c2135"; +} +.sh-lightfa-cherries:before { + content: "\c2134"; +} +.sh-lightfa-broccoli:before { + content: "\c2133"; +} +.sh-lightfa-blueberries:before { + content: "\c2132"; +} +.sh-lightfa-banana:before { + content: "\c2131"; +} +.sh-lightfa-avocado:before { + content: "\c2130"; +} +.sh-lightfa-apple-core:before { + content: "\c2129"; +} +.sh-lightfa-wine-glass-empty:before { + content: "\c2128"; +} +.sh-lightfa-wine-glass:before { + content: "\c2127"; +} +.sh-lightfa-wine-bottle:before { + content: "\c2126"; +} +.sh-lightfa-whiskey-glass-ice:before { + content: "\c2125"; +} +.sh-lightfa-whiskey-glass:before { + content: "\c2124"; +} +.sh-lightfa-wheat-slash:before { + content: "\c2123"; +} +.sh-lightfa-wheat-awn-slash:before { + content: "\c2122"; +} +.sh-lightfa-wheat-awn:before { + content: "\c2121"; +} +.sh-lightfa-wheat:before { + content: "\c2120"; +} +.sh-lightfa-waffle:before { + content: "\c2119"; +} +.sh-lightfa-user-chef:before { + content: "\c2118"; +} +.sh-lightfa-turkey:before { + content: "\c2117"; +} +.sh-lightfa-tamale:before { + content: "\c2116"; +} +.sh-lightfa-taco:before { + content: "\c2115"; +} +.sh-lightfa-sushi-roll:before { + content: "\c2114"; +} +.sh-lightfa-sushi:before { + content: "\c2113"; +} +.sh-lightfa-stroopwafel:before { + content: "\c2112"; +} +.sh-lightfa-steak:before { + content: "\c2111"; +} +.sh-lightfa-sausage:before { + content: "\c2110"; +} +.sh-lightfa-sandwich:before { + content: "\c2109"; +} +.sh-lightfa-salt-shaker:before { + content: "\c2108"; +} +.sh-lightfa-salad:before { + content: "\c2107"; +} +.sh-lightfa-pumpkin:before { + content: "\c2106"; +} +.sh-lightfa-pot-food:before { + content: "\c2105"; +} +.sh-lightfa-popcorn:before { + content: "\c2104"; +} +.sh-lightfa-plate-wheat:before { + content: "\c2103"; +} +.sh-lightfa-pizza-slice:before { + content: "\c2102"; +} +.sh-lightfa-pizza:before { + content: "\c2101"; +} +.sh-lightfa-pie:before { + content: "\c2100"; +} +.sh-lightfa-pepper-hot:before { + content: "\c2099"; +} +.sh-lightfa-pan-frying:before { + content: "\c2098"; +} +.sh-lightfa-pan-food:before { + content: "\c2097"; +} +.sh-lightfa-pancakes:before { + content: "\c2096"; +} +.sh-lightfa-mug-tea:before { + content: "\c2095"; +} +.sh-lightfa-mug-saucer:before { + content: "\c2094"; +} +.sh-lightfa-mug-marshmallows:before { + content: "\c2093"; +} +.sh-lightfa-mug-hot:before { + content: "\c2092"; +} +.sh-lightfa-mug:before { + content: "\c2091"; +} +.sh-lightfa-meat:before { + content: "\c2090"; +} +.sh-lightfa-martini-glass-citrus:before { + content: "\c2089"; +} +.sh-lightfa-martini-glass:before { + content: "\c2088"; +} +.sh-lightfa-jug-bottle:before { + content: "\c2087"; +} +.sh-lightfa-jug:before { + content: "\c2086"; +} +.sh-lightfa-jar-wheat:before { + content: "\c2085"; +} +.sh-lightfa-jar:before { + content: "\c2084"; +} +.sh-lightfa-hotdog:before { + content: "\c2083"; +} +.sh-lightfa-honey-pot:before { + content: "\c2082"; +} +.sh-lightfa-hat-chef:before { + content: "\c2081"; +} +.sh-lightfa-glass-water-droplet:before { + content: "\c2080"; +} +.sh-lightfa-glass-water:before { + content: "\c2079"; +} +.sh-lightfa-glass-half:before { + content: "\c2078"; +} +.sh-lightfa-glass-empty:before { + content: "\c2077"; +} +.sh-lightfa-glass-citrus:before { + content: "\c2076"; +} +.sh-lightfa-glass1:before { + content: "\c2075"; +} +.sh-lightfa-gingerbread-man:before { + content: "\c2074"; +} +.sh-lightfa-french-fries:before { + content: "\c2073"; +} +.sh-lightfa-fondue-pot:before { + content: "\c2072"; +} +.sh-lightfa-flatbread-stuffed:before { + content: "\c2071"; +} +.sh-lightfa-flatbread:before { + content: "\c2070"; +} +.sh-lightfa-flask-round-potion:before { + content: "\c2069"; +} +.sh-lightfa-flask-round-poison:before { + content: "\c2068"; +} +.sh-lightfa-falafel:before { + content: "\c2067"; +} +.sh-lightfa-egg-fried:before { + content: "\c2066"; +} +.sh-lightfa-egg:before { + content: "\c2065"; +} +.sh-lightfa-drumstick-bite:before { + content: "\c2064"; +} +.sh-lightfa-drumstick:before { + content: "\c2063"; +} +.sh-lightfa-donut:before { + content: "\c2062"; +} +.sh-lightfa-custard:before { + content: "\c2061"; +} +.sh-lightfa-cup-togo:before { + content: "\c2060"; +} +.sh-lightfa-cup-straw-swoosh:before { + content: "\c2059"; +} +.sh-lightfa-cup-straw:before { + content: "\c2058"; +} +.sh-lightfa-croissant:before { + content: "\c2057"; +} +.sh-lightfa-crate-apple:before { + content: "\c2056"; +} +.sh-lightfa-corn:before { + content: "\c2055"; +} +.sh-lightfa-cookie:before { + content: "\c2054"; +} +.sh-lightfa-coffee-beans:before { + content: "\c2053"; +} +.sh-lightfa-coffee-bean:before { + content: "\c2052"; +} +.sh-lightfa-cloud-meatball:before { + content: "\c2051"; +} +.sh-lightfa-chopsticks:before { + content: "\c2050"; +} +.sh-lightfa-cheese-swiss:before { + content: "\c2049"; +} +.sh-lightfa-cheese:before { + content: "\c2048"; +} +.sh-lightfa-champagne-glasses:before { + content: "\c2047"; +} +.sh-lightfa-champagne-glass:before { + content: "\c2046"; +} +.sh-lightfa-carrot:before { + content: "\c2045"; +} +.sh-lightfa-can-food:before { + content: "\c2044"; +} +.sh-lightfa-candy-corn:before { + content: "\c2043"; +} +.sh-lightfa-candy-cane:before { + content: "\c2042"; +} +.sh-lightfa-butter:before { + content: "\c2041"; +} +.sh-lightfa-burger-soda:before { + content: "\c2040"; +} +.sh-lightfa-burger-lettuce:before { + content: "\c2039"; +} +.sh-lightfa-burger-glass:before { + content: "\c2038"; +} +.sh-lightfa-burger-fries:before { + content: "\c2037"; +} +.sh-lightfa-burger-cheese:before { + content: "\c2036"; +} +.sh-lightfa-burger:before { + content: "\c2035"; +} +.sh-lightfa-bread-slice-butter:before { + content: "\c2034"; +} +.sh-lightfa-bread-slice:before { + content: "\c2033"; +} +.sh-lightfa-bread-loaf:before { + content: "\c2032"; +} +.sh-lightfa-bowl-spoon:before { + content: "\c2031"; +} +.sh-lightfa-bowl-scoops:before { + content: "\c2030"; +} +.sh-lightfa-bowl-scoop:before { + content: "\c2029"; +} +.sh-lightfa-bowl-rice:before { + content: "\c2028"; +} +.sh-lightfa-bowl-hot:before { + content: "\c2027"; +} +.sh-lightfa-bowl-food:before { + content: "\c2026"; +} +.sh-lightfa-bowl-chopsticks-noodles:before { + content: "\c2025"; +} +.sh-lightfa-bowl-chopsticks:before { + content: "\c2024"; +} +.sh-lightfa-bottle-droplet:before { + content: "\c2023"; +} +.sh-lightfa-bone:before { + content: "\c2022"; +} +.sh-lightfa-blender:before { + content: "\c2021"; +} +.sh-lightfa-beer-mug-empty:before { + content: "\c2020"; +} +.sh-lightfa-baguette:before { + content: "\c2019"; +} +.sh-lightfa-bagel:before { + content: "\c2018"; +} +.sh-lightfa-bacon:before { + content: "\c2017"; +} +.sh-lightfa-waveform-lines:before { + content: "\c2016"; +} +.sh-lightfa-waveform:before { + content: "\c2015"; +} +.sh-lightfa-video-arrow-up-right:before { + content: "\c2014"; +} +.sh-lightfa-video-arrow-down-left:before { + content: "\c2013"; +} +.sh-lightfa-ticket1:before { + content: "\c2012"; +} +.sh-lightfa-standard-definition:before { + content: "\c2011"; +} +.sh-lightfa-screencast:before { + content: "\c2010"; +} +.sh-lightfa-photo-film-music:before { + content: "\c2009"; +} +.sh-lightfa-microphone-stand:before { + content: "\c2008"; +} +.sh-lightfa-head-side-headphones:before { + content: "\c2007"; +} +.sh-lightfa-gif:before { + content: "\c2006"; +} +.sh-lightfa-film-slash:before { + content: "\c2005"; +} +.sh-lightfa-film-simple:before { + content: "\c2004"; +} +.sh-lightfa-film-canister:before { + content: "\c2003"; +} +.sh-lightfa-face-viewfinder:before { + content: "\c2002"; +} +.sh-lightfa-drone-front:before { + content: "\c2001"; +} +.sh-lightfa-drone:before { + content: "\c2000"; +} +.sh-lightfa-cloud-music:before { + content: "\c1999"; +} +.sh-lightfa-clapperboard-play:before { + content: "\c1998"; +} +.sh-lightfa-clapperboard:before { + content: "\c1997"; +} +.sh-lightfa-circle-waveform-lines:before { + content: "\c1996"; +} +.sh-lightfa-circle-video:before { + content: "\c1995"; +} +.sh-lightfa-circle-microphone-lines:before { + content: "\c1994"; +} +.sh-lightfa-circle-microphone:before { + content: "\c1993"; +} +.sh-lightfa-cassette-vhs:before { + content: "\c1992"; +} +.sh-lightfa-cassette-betamax:before { + content: "\c1991"; +} +.sh-lightfa-camera-movie:before { + content: "\c1990"; +} +.sh-lightfa-camera-cctv:before { + content: "\c1989"; +} +.sh-lightfa-camcorder:before { + content: "\c1988"; +} +.sh-lightfa-amp-guitar:before { + content: "\c1987"; +} +.sh-lightfa-album-collection:before { + content: "\c1986"; +} +.sh-lightfa-airplay:before { + content: "\c1985"; +} +.sh-lightfa-360-degrees:before { + content: "\c1984"; +} +.sh-lightfa-photo-film:before { + content: "\c1983"; +} +.sh-lightfa-page-caret-up:before { + content: "\c1982"; +} +.sh-lightfa-page-caret-down:before { + content: "\c1981"; +} +.sh-lightfa-page:before { + content: "\c1980"; +} +.sh-lightfa-note-sticky:before { + content: "\c1979"; +} +.sh-lightfa-memo-pad:before { + content: "\c1978"; +} +.sh-lightfa-memo-circle-info:before { + content: "\c1977"; +} +.sh-lightfa-memo-circle-check:before { + content: "\c1976"; +} +.sh-lightfa-memo:before { + content: "\c1975"; +} +.sh-lightfa-folder-user:before { + content: "\c1974"; +} +.sh-lightfa-folder-music:before { + content: "\c1973"; +} +.sh-lightfa-folder-medical:before { + content: "\c1972"; +} +.sh-lightfa-folder-magnifying-glass:before { + content: "\c1971"; +} +.sh-lightfa-folder-image:before { + content: "\c1970"; +} +.sh-lightfa-folder-heart:before { + content: "\c1969"; +} +.sh-lightfa-folder-grid:before { + content: "\c1968"; +} +.sh-lightfa-folder-gear:before { + content: "\c1967"; +} +.sh-lightfa-folder-closed:before { + content: "\c1966"; +} +.sh-lightfa-folder-bookmark:before { + content: "\c1965"; +} +.sh-lightfa-file-zip:before { + content: "\c1964"; +} +.sh-lightfa-file-xmark:before { + content: "\c1963"; +} +.sh-lightfa-file-slash:before { + content: "\c1962"; +} +.sh-lightfa-file-shield:before { + content: "\c1961"; +} +.sh-lightfa-files:before { + content: "\c1960"; +} +.sh-lightfa-file-plus-minus:before { + content: "\c1959"; +} +.sh-lightfa-file-plus:before { + content: "\c1958"; +} +.sh-lightfa-file-pen:before { + content: "\c1957"; +} +.sh-lightfa-file-pdf:before { + content: "\c1956"; +} +.sh-lightfa-file-music:before { + content: "\c1955"; +} +.sh-lightfa-file-minus:before { + content: "\c1954"; +} +.sh-lightfa-file-magnifying-glass:before { + content: "\c1953"; +} +.sh-lightfa-file-lock:before { + content: "\c1952"; +} +.sh-lightfa-file-import:before { + content: "\c1951"; +} +.sh-lightfa-file-heart:before { + content: "\c1950"; +} +.sh-lightfa-file-export:before { + content: "\c1949"; +} +.sh-lightfa-file-doc:before { + content: "\c1948"; +} +.sh-lightfa-file-csv:before { + content: "\c1947"; +} +.sh-lightfa-file-circle-xmark:before { + content: "\c1946"; +} +.sh-lightfa-file-circle-question:before { + content: "\c1945"; +} +.sh-lightfa-file-circle-minus:before { + content: "\c1944"; +} +.sh-lightfa-file-circle-exclamation:before { + content: "\c1943"; +} +.sh-lightfa-file-circle-check:before { + content: "\c1942"; +} +.sh-lightfa-file-check:before { + content: "\c1941"; +} +.sh-lightfa-file-binary:before { + content: "\c1940"; +} +.sh-lightfa-file-arrow-up:before { + content: "\c1939"; +} +.sh-lightfa-file-arrow-down:before { + content: "\c1938"; +} +.sh-lightfa-wind-turbine:before { + content: "\c1937"; +} +.sh-lightfa-water:before { + content: "\c1936"; +} +.sh-lightfa-vent-damper:before { + content: "\c1935"; +} +.sh-lightfa-utility-pole-double:before { + content: "\c1934"; +} +.sh-lightfa-utility-pole:before { + content: "\c1933"; +} +.sh-lightfa-transformer-bolt:before { + content: "\c1932"; +} +.sh-lightfa-solar-panel:before { + content: "\c1931"; +} +.sh-lightfa-plug-circle-xmark:before { + content: "\c1930"; +} +.sh-lightfa-plug-circle-plus:before { + content: "\c1929"; +} +.sh-lightfa-plug-circle-minus:before { + content: "\c1928"; +} +.sh-lightfa-plug-circle-exclamation:before { + content: "\c1927"; +} +.sh-lightfa-plug-circle-check:before { + content: "\c1926"; +} +.sh-lightfa-plug-circle-bolt:before { + content: "\c1925"; +} +.sh-lightfa-pipe-valve:before { + content: "\c1924"; +} +.sh-lightfa-pipe-section:before { + content: "\c1923"; +} +.sh-lightfa-pipe-collar:before { + content: "\c1922"; +} +.sh-lightfa-pipe-circle-check:before { + content: "\c1921"; +} +.sh-lightfa-pedestal:before { + content: "\c1920"; +} +.sh-lightfa-outlet:before { + content: "\c1919"; +} +.sh-lightfa-meter-fire:before { + content: "\c1918"; +} +.sh-lightfa-meter-droplet:before { + content: "\c1917"; +} +.sh-lightfa-meter-bolt:before { + content: "\c1916"; +} +.sh-lightfa-manhole:before { + content: "\c1915"; +} +.sh-lightfa-lightbulb-cfl:before { + content: "\c1914"; +} +.sh-lightfa-lamp-street:before { + content: "\c1913"; +} +.sh-lightfa-fire-flame-simple:before { + content: "\c1912"; +} +.sh-lightfa-fan:before { + content: "\c1911"; +} +.sh-lightfa-explosion:before { + content: "\c1910"; +} +.sh-lightfa-burrito:before { + content: "\c1909"; +} +.sh-lightfa-battery-slash:before { + content: "\c1908"; +} +.sh-lightfa-battery-bolt:before { + content: "\c1907"; +} +.sh-lightfa-face-zipper:before { + content: "\c1906"; +} +.sh-lightfa-face-zany:before { + content: "\c1905"; +} +.sh-lightfa-face-worried:before { + content: "\c1904"; +} +.sh-lightfa-face-woozy:before { + content: "\c1903"; +} +.sh-lightfa-face-weary:before { + content: "\c1902"; +} +.sh-lightfa-face-vomit:before { + content: "\c1901"; +} +.sh-lightfa-face-unamused:before { + content: "\c1900"; +} +.sh-lightfa-face-tongue-sweat:before { + content: "\c1899"; +} +.sh-lightfa-face-tongue-money:before { + content: "\c1898"; +} +.sh-lightfa-face-tissue:before { + content: "\c1897"; +} +.sh-lightfa-face-tired:before { + content: "\c1896"; +} +.sh-lightfa-face-thinking:before { + content: "\c1895"; +} +.sh-lightfa-face-thermometer:before { + content: "\c1894"; +} +.sh-lightfa-face-swear:before { + content: "\c1893"; +} +.sh-lightfa-face-surprise:before { + content: "\c1892"; +} +.sh-lightfa-face-sunglasses:before { + content: "\c1891"; +} +.sh-lightfa-face-spiral-eyes:before { + content: "\c1890"; +} +.sh-lightfa-face-smirking:before { + content: "\c1889"; +} +.sh-lightfa-face-smiling-hands:before { + content: "\c1888"; +} +.sh-lightfa-face-smile-wink:before { + content: "\c1887"; +} +.sh-lightfa-face-smile-upside-down:before { + content: "\c1886"; +} +.sh-lightfa-face-smile-tongue:before { + content: "\c1885"; +} +.sh-lightfa-face-smile-tear:before { + content: "\c1884"; +} +.sh-lightfa-face-smile-relaxed:before { + content: "\c1883"; +} +.sh-lightfa-face-smile-horns:before { + content: "\c1882"; +} +.sh-lightfa-face-smile-hearts:before { + content: "\c1881"; +} +.sh-lightfa-face-smile-halo:before { + content: "\c1880"; +} +.sh-lightfa-face-smile-beam:before { + content: "\c1879"; +} +.sh-lightfa-face-sleepy:before { + content: "\c1878"; +} +.sh-lightfa-face-sleeping:before { + content: "\c1877"; +} +.sh-lightfa-face-shush:before { + content: "\c1876"; +} +.sh-lightfa-face-scream:before { + content: "\c1875"; +} +.sh-lightfa-face-saluting:before { + content: "\c1874"; +} +.sh-lightfa-face-sad-tear:before { + content: "\c1873"; +} +.sh-lightfa-face-sad-sweat:before { + content: "\c1872"; +} +.sh-lightfa-face-sad-cry:before { + content: "\c1871"; +} +.sh-lightfa-face-rolling-eyes:before { + content: "\c1870"; +} +.sh-lightfa-face-relieved:before { + content: "\c1869"; +} +.sh-lightfa-face-raised-eyebrow:before { + content: "\c1868"; +} +.sh-lightfa-face-pouting:before { + content: "\c1867"; +} +.sh-lightfa-face-pleading:before { + content: "\c1866"; +} +.sh-lightfa-face-persevering:before { + content: "\c1865"; +} +.sh-lightfa-face-pensive:before { + content: "\c1864"; +} +.sh-lightfa-face-party:before { + content: "\c1863"; +} +.sh-lightfa-face-nose-steam:before { + content: "\c1862"; +} +.sh-lightfa-face-nauseated:before { + content: "\c1861"; +} +.sh-lightfa-face-monocle:before { + content: "\c1860"; +} +.sh-lightfa-face-melting:before { + content: "\c1859"; +} +.sh-lightfa-face-meh-blank:before { + content: "\c1858"; +} +.sh-lightfa-face-mask:before { + content: "\c1857"; +} +.sh-lightfa-face-lying:before { + content: "\c1856"; +} +.sh-lightfa-face-laugh-wink:before { + content: "\c1855"; +} +.sh-lightfa-face-laugh-squint:before { + content: "\c1854"; +} +.sh-lightfa-face-laugh-beam:before { + content: "\c1853"; +} +.sh-lightfa-face-laugh:before { + content: "\c1852"; +} +.sh-lightfa-face-kiss-wink-heart:before { + content: "\c1851"; +} +.sh-lightfa-face-kiss-closed-eyes:before { + content: "\c1850"; +} +.sh-lightfa-face-kiss-beam:before { + content: "\c1849"; +} +.sh-lightfa-face-kiss:before { + content: "\c1848"; +} +.sh-lightfa-face-icicles:before { + content: "\c1847"; +} +.sh-lightfa-face-hushed:before { + content: "\c1846"; +} +.sh-lightfa-face-holding-back-tears:before { + content: "\c1845"; +} +.sh-lightfa-face-head-bandage:before { + content: "\c1844"; +} +.sh-lightfa-face-hand-yawn:before { + content: "\c1843"; +} +.sh-lightfa-face-hand-peeking:before { + content: "\c1842"; +} +.sh-lightfa-face-hand-over-mouth:before { + content: "\c1841"; +} +.sh-lightfa-face-grin-wink:before { + content: "\c1840"; +} +.sh-lightfa-face-grin-wide:before { + content: "\c1839"; +} +.sh-lightfa-face-grin-tongue-wink:before { + content: "\c1838"; +} +.sh-lightfa-face-grin-tongue-squint:before { + content: "\c1837"; +} +.sh-lightfa-face-grin-tongue:before { + content: "\c1836"; +} +.sh-lightfa-face-grin-tears:before { + content: "\c1835"; +} +.sh-lightfa-face-grin-stars:before { + content: "\c1834"; +} +.sh-lightfa-face-grin-squint-tears:before { + content: "\c1833"; +} +.sh-lightfa-face-grin-squint:before { + content: "\c1832"; +} +.sh-lightfa-face-grin-hearts:before { + content: "\c1831"; +} +.sh-lightfa-face-grin-beam-sweat:before { + content: "\c1830"; +} +.sh-lightfa-face-grin-beam:before { + content: "\c1829"; +} +.sh-lightfa-face-grin:before { + content: "\c1828"; +} +.sh-lightfa-face-grimace:before { + content: "\c1827"; +} +.sh-lightfa-face-glasses:before { + content: "\c1826"; +} +.sh-lightfa-face-frown-slight:before { + content: "\c1825"; +} +.sh-lightfa-face-frown-open:before { + content: "\c1824"; +} +.sh-lightfa-face-flushed:before { + content: "\c1823"; +} +.sh-lightfa-face-fearful:before { + content: "\c1822"; +} +.sh-lightfa-face-eyes-xmarks:before { + content: "\c1821"; +} +.sh-lightfa-face-expressionless:before { + content: "\c1820"; +} +.sh-lightfa-face-explode:before { + content: "\c1819"; +} +.sh-lightfa-face-exhaling:before { + content: "\c1818"; +} +.sh-lightfa-face-drooling:before { + content: "\c1817"; +} +.sh-lightfa-face-downcast-sweat:before { + content: "\c1816"; +} +.sh-lightfa-face-dotted:before { + content: "\c1815"; +} +.sh-lightfa-face-dizzy:before { + content: "\c1814"; +} +.sh-lightfa-face-disguise:before { + content: "\c1813"; +} +.sh-lightfa-face-disappointed:before { + content: "\c1812"; +} +.sh-lightfa-face-diagonal-mouth:before { + content: "\c1811"; +} +.sh-lightfa-face-cowboy-hat:before { + content: "\c1810"; +} +.sh-lightfa-face-confused:before { + content: "\c1809"; +} +.sh-lightfa-face-confounded:before { + content: "\c1808"; +} +.sh-lightfa-face-clouds:before { + content: "\c1807"; +} +.sh-lightfa-face-beam-hand-over-mouth:before { + content: "\c1806"; +} +.sh-lightfa-face-astonished:before { + content: "\c1805"; +} +.sh-lightfa-face-anxious-sweat:before { + content: "\c1804"; +} +.sh-lightfa-face-anguished:before { + content: "\c1803"; +} +.sh-lightfa-face-angry-horns:before { + content: "\c1802"; +} +.sh-lightfa-face-angry:before { + content: "\c1801"; +} +.sh-lightfa-user-graduate:before { + content: "\c1800"; +} +.sh-lightfa-screen-users:before { + content: "\c1799"; +} +.sh-lightfa-pen-paintbrush:before { + content: "\c1798"; +} +.sh-lightfa-microscope:before { + content: "\c1797"; +} +.sh-lightfa-masks-theater:before { + content: "\c1796"; +} +.sh-lightfa-file-laptop:before { + content: "\c1795"; +} +.sh-lightfa-globe-stand:before { + content: "\c1794"; +} +.sh-lightfa-glasses-round:before { + content: "\c1793"; +} +.sh-lightfa-file-certificate:before { + content: "\c1792"; +} +.sh-lightfa-diploma:before { + content: "\c1791"; +} +.sh-lightfa-chalkboard-user:before { + content: "\c1790"; +} +.sh-lightfa-chalkboard:before { + content: "\c1789"; +} +.sh-lightfa-bus-school:before { + content: "\c1788"; +} +.sh-lightfa-books:before { + content: "\c1787"; +} +.sh-lightfa-book-open-reader:before { + content: "\c1786"; +} +.sh-lightfa-book-open-cover:before { + content: "\c1785"; +} +.sh-lightfa-book-open:before { + content: "\c1784"; +} +.sh-lightfa-book-copy:before { + content: "\c1783"; +} +.sh-lightfa-book-blank:before { + content: "\c1782"; +} +.sh-lightfa-award:before { + content: "\c1781"; +} +.sh-lightfa-atom-simple:before { + content: "\c1780"; +} +.sh-lightfa-atom:before { + content: "\c1779"; +} +.sh-lightfa-trash-xmark:before { + content: "\c1778"; +} +.sh-lightfa-trash-undo:before { + content: "\c1777"; +} +.sh-lightfa-trash-slash:before { + content: "\c1776"; +} +.sh-lightfa-trash-plus:before { + content: "\c1775"; +} +.sh-lightfa-trash-can-undo:before { + content: "\c1774"; +} +.sh-lightfa-trash-can-slash:before { + content: "\c1773"; +} +.sh-lightfa-trash-can-plus:before { + content: "\c1772"; +} +.sh-lightfa-trash-can-list:before { + content: "\c1771"; +} +.sh-lightfa-trash-can-clock:before { + content: "\c1770"; +} +.sh-lightfa-trash-can-check:before { + content: "\c1769"; +} +.sh-lightfa-trash-can-arrow-up:before { + content: "\c1768"; +} +.sh-lightfa-trash-arrow-up:before { + content: "\c1767"; +} +.sh-lightfa-square-ellipsis-vertical:before { + content: "\c1766"; +} +.sh-lightfa-square-ellipsis:before { + content: "\c1765"; +} +.sh-lightfa-sliders-up:before { + content: "\c1764"; +} +.sh-lightfa-sliders-simple:before { + content: "\c1763"; +} +.sh-lightfa-pen-swirl:before { + content: "\c1762"; +} +.sh-lightfa-pen-slash:before { + content: "\c1761"; +} +.sh-lightfa-pen-line:before { + content: "\c1760"; +} +.sh-lightfa-pen-field:before { + content: "\c1759"; +} +.sh-lightfa-pen-fancy-slash:before { + content: "\c1758"; +} +.sh-lightfa-pen-clip-slash:before { + content: "\c1757"; +} +.sh-lightfa-pencil-slash:before { + content: "\c1756"; +} +.sh-lightfa-octagon-check:before { + content: "\c1755"; +} +.sh-lightfa-hexagon-check:before { + content: "\c1754"; +} +.sh-lightfa-grip-vertical:before { + content: "\c1753"; +} +.sh-lightfa-grip-lines-vertical:before { + content: "\c1752"; +} +.sh-lightfa-grip-lines:before { + content: "\c1751"; +} +.sh-lightfa-grip-dots-vertical:before { + content: "\c1750"; +} +.sh-lightfa-grip-dots:before { + content: "\c1749"; +} +.sh-lightfa-grip:before { + content: "\c1748"; +} +.sh-lightfa-grid-round-5:before { + content: "\c1747"; +} +.sh-lightfa-grid-round-4:before { + content: "\c1746"; +} +.sh-lightfa-grid-round-2:before { + content: "\c1745"; +} +.sh-lightfa-grid-round:before { + content: "\c1744"; +} +.sh-lightfa-ellipsis-stroke-vertical:before { + content: "\c1743"; +} +.sh-lightfa-ellipsis-stroke:before { + content: "\c1742"; +} +.sh-lightfa-dial-off:before { + content: "\c1741"; +} +.sh-lightfa-dial-min:before { + content: "\c1740"; +} +.sh-lightfa-dial-med-low:before { + content: "\c1739"; +} +.sh-lightfa-dial-med:before { + content: "\c1738"; +} +.sh-lightfa-dial-max:before { + content: "\c1737"; +} +.sh-lightfa-dial-low:before { + content: "\c1736"; +} +.sh-lightfa-dial-high:before { + content: "\c1735"; +} +.sh-lightfa-dial:before { + content: "\c1734"; +} +.sh-lightfa-delete-right:before { + content: "\c1733"; +} +.sh-lightfa-delete-left:before { + content: "\c1732"; +} +.sh-lightfa-dash:before { + content: "\c1731"; +} +.sh-lightfa-command:before { + content: "\c1730"; +} +.sh-lightfa-circle-trash:before { + content: "\c1729"; +} +.sh-lightfa-circle-ellipsis-vertical:before { + content: "\c1728"; +} +.sh-lightfa-circle-ellipsis:before { + content: "\c1727"; +} +.sh-lightfa-check-double:before { + content: "\c1726"; +} +.sh-lightfa-bandage:before { + content: "\c1725"; +} +.sh-lightfa-xmarks-lines:before { + content: "\c1724"; +} +.sh-lightfa-wind:before { + content: "\c1723"; +} +.sh-lightfa-wheat-awn-circle-exclamation:before { + content: "\c1722"; +} +.sh-lightfa-volcano:before { + content: "\c1721"; +} +.sh-lightfa-tornado:before { + content: "\c1720"; +} +.sh-lightfa-temperature-arrow-up:before { + content: "\c1719"; +} +.sh-lightfa-temperature-arrow-down:before { + content: "\c1718"; +} +.sh-lightfa-sun-plant-wilt:before { + content: "\c1717"; +} +.sh-lightfa-plant-wilt:before { + content: "\c1716"; +} +.sh-lightfa-person-walking-dashed-line-arrow-right:before { + content: "\c1715"; +} +.sh-lightfa-person-walking-arrow-right:before { + content: "\c1714"; +} +.sh-lightfa-person-walking-arrow-loop-left:before { + content: "\c1713"; +} +.sh-lightfa-person-rifle:before { + content: "\c1712"; +} +.sh-lightfa-person-drowning:before { + content: "\c1711"; +} +.sh-lightfa-hurricane:before { + content: "\c1710"; +} +.sh-lightfa-house-tsunami:before { + content: "\c1709"; +} +.sh-lightfa-house-flood-water-circle-arrow-right:before { + content: "\c1708"; +} +.sh-lightfa-house-flood-water:before { + content: "\c1707"; +} +.sh-lightfa-hill-rockslide:before { + content: "\c1706"; +} +.sh-lightfa-hill-avalanche:before { + content: "\c1705"; +} +.sh-lightfa-helmet-un:before { + content: "\c1704"; +} +.sh-lightfa-heat:before { + content: "\c1703"; +} +.sh-lightfa-cloud-showers-water:before { + content: "\c1702"; +} +.sh-lightfa-cloud-showers-heavy:before { + content: "\c1701"; +} +.sh-lightfa-cloud-bolt:before { + content: "\c1700"; +} +.sh-lightfa-child-combatant:before { + content: "\c1699"; +} +.sh-lightfa-burst:before { + content: "\c1698"; +} +.sh-lightfa-biohazard:before { + content: "\c1697"; +} +.sh-lightfa-watch-calculator:before { + content: "\c1696"; +} +.sh-lightfa-usb-drive:before { + content: "\c1695"; +} +.sh-lightfa-typewriter:before { + content: "\c1694"; +} +.sh-lightfa-tv-retro:before { + content: "\c1693"; +} +.sh-lightfa-tv-music:before { + content: "\c1692"; +} +.sh-lightfa-tachograph-digital:before { + content: "\c1691"; +} +.sh-lightfa-speakers:before { + content: "\c1690"; +} +.sh-lightfa-speaker:before { + content: "\c1689"; +} +.sh-lightfa-sim-cards:before { + content: "\c1688"; +} +.sh-lightfa-sim-card:before { + content: "\c1687"; +} +.sh-lightfa-sd-cards:before { + content: "\c1686"; +} +.sh-lightfa-sd-card:before { + content: "\c1685"; +} +.sh-lightfa-mp3-player:before { + content: "\c1684"; +} +.sh-lightfa-microchip-ai:before { + content: "\c1683"; +} +.sh-lightfa-meter:before { + content: "\c1682"; +} +.sh-lightfa-memory:before { + content: "\c1681"; +} +.sh-lightfa-laptop-slash:before { + content: "\c1680"; +} +.sh-lightfa-laptop-binary:before { + content: "\c1679"; +} +.sh-lightfa-laptop-arrow-down:before { + content: "\c1678"; +} +.sh-lightfa-keyboard-left:before { + content: "\c1677"; +} +.sh-lightfa-keyboard-down:before { + content: "\c1676"; +} +.sh-lightfa-game-console-handheld-crank:before { + content: "\c1675"; +} +.sh-lightfa-floppy-disk-pen:before { + content: "\c1674"; +} +.sh-lightfa-display-slash:before { + content: "\c1673"; +} +.sh-lightfa-display-medical:before { + content: "\c1672"; +} +.sh-lightfa-display-code:before { + content: "\c1671"; +} +.sh-lightfa-display-arrow-down:before { + content: "\c1670"; +} +.sh-lightfa-display:before { + content: "\c1669"; +} +.sh-lightfa-disc-drive:before { + content: "\c1668"; +} +.sh-lightfa-desktop-arrow-down:before { + content: "\c1667"; +} +.sh-lightfa-computer-speaker:before { + content: "\c1666"; +} +.sh-lightfa-computer-mouse-scrollwheel:before { + content: "\c1665"; +} +.sh-lightfa-computer-mouse:before { + content: "\c1664"; +} +.sh-lightfa-computer:before { + content: "\c1663"; +} +.sh-lightfa-compact-disc:before { + content: "\c1662"; +} +.sh-lightfa-camera-web-slash:before { + content: "\c1661"; +} +.sh-lightfa-camera-web:before { + content: "\c1660"; +} +.sh-lightfa-album-circle-user:before { + content: "\c1659"; +} +.sh-lightfa-album-circle-plus:before { + content: "\c1658"; +} +.sh-lightfa-album:before { + content: "\c1657"; +} +.sh-lightfa-vector-square:before { + content: "\c1656"; +} +.sh-lightfa-vector-polygon:before { + content: "\c1655"; +} +.sh-lightfa-vector-circle:before { + content: "\c1654"; +} +.sh-lightfa-swatchbook:before { + content: "\c1653"; +} +.sh-lightfa-stamp:before { + content: "\c1652"; +} +.sh-lightfa-square-dashed-circle-plus:before { + content: "\c1651"; +} +.sh-lightfa-square-dashed:before { + content: "\c1650"; +} +.sh-lightfa-spray-can:before { + content: "\c1649"; +} +.sh-lightfa-splotch:before { + content: "\c1648"; +} +.sh-lightfa-sparkle:before { + content: "\c1647"; +} +.sh-lightfa-send-backward:before { + content: "\c1646"; +} +.sh-lightfa-send-back:before { + content: "\c1645"; +} +.sh-lightfa-scribble:before { + content: "\c1644"; +} +.sh-lightfa-rectangles-mixed:before { + content: "\c1643"; +} +.sh-lightfa-pen-circle:before { + content: "\c1642"; +} +.sh-lightfa-pencil-mechanical:before { + content: "\c1641"; +} +.sh-lightfa-palette:before { + content: "\c1640"; +} +.sh-lightfa-paintbrush-pencil:before { + content: "\c1639"; +} +.sh-lightfa-paintbrush-fine:before { + content: "\c1638"; +} +.sh-lightfa-object-union:before { + content: "\c1637"; +} +.sh-lightfa-object-subtract:before { + content: "\c1636"; +} +.sh-lightfa-objects-column:before { + content: "\c1635"; +} +.sh-lightfa-objects-align-top:before { + content: "\c1634"; +} +.sh-lightfa-objects-align-right:before { + content: "\c1633"; +} +.sh-lightfa-objects-align-left:before { + content: "\c1632"; +} +.sh-lightfa-objects-align-center-vertical:before { + content: "\c1631"; +} +.sh-lightfa-objects-align-center-horizontal:before { + content: "\c1630"; +} +.sh-lightfa-objects-align-bottom:before { + content: "\c1629"; +} +.sh-lightfa-object-intersect:before { + content: "\c1628"; +} +.sh-lightfa-object-exclude:before { + content: "\c1627"; +} +.sh-lightfa-lines-leaning:before { + content: "\c1626"; +} +.sh-lightfa-layer-plus:before { + content: "\c1625"; +} +.sh-lightfa-layer-minus:before { + content: "\c1624"; +} +.sh-lightfa-layer-group:before { + content: "\c1623"; +} +.sh-lightfa-lasso-sparkles:before { + content: "\c1622"; +} +.sh-lightfa-lasso:before { + content: "\c1621"; +} +.sh-lightfa-image-polaroid:before { + content: "\c1620"; +} +.sh-lightfa-highlighter-line:before { + content: "\c1619"; +} +.sh-lightfa-grid-dividers:before { + content: "\c1618"; +} +.sh-lightfa-grid-5:before { + content: "\c1617"; +} +.sh-lightfa-grid-4:before { + content: "\c1616"; +} +.sh-lightfa-grid-2-plus:before { + content: "\c1615"; +} +.sh-lightfa-grid:before { + content: "\c1614"; +} +.sh-lightfa-gallery-thumbnails:before { + content: "\c1613"; +} +.sh-lightfa-fill-drip:before { + content: "\c1612"; +} +.sh-lightfa-fill:before { + content: "\c1611"; +} +.sh-lightfa-eye-dropper-half:before { + content: "\c1610"; +} +.sh-lightfa-eye-dropper-full:before { + content: "\c1609"; +} +.sh-lightfa-droplet-slash:before { + content: "\c1608"; +} +.sh-lightfa-droplet:before { + content: "\c1607"; +} +.sh-lightfa-draw-square:before { + content: "\c1606"; +} +.sh-lightfa-draw-polygon:before { + content: "\c1605"; +} +.sh-lightfa-draw-circle:before { + content: "\c1604"; +} +.sh-lightfa-distribute-spacing-vertical:before { + content: "\c1603"; +} +.sh-lightfa-distribute-spacing-horizontal:before { + content: "\c1602"; +} +.sh-lightfa-crosshairs-simple:before { + content: "\c1601"; +} +.sh-lightfa-crop-simple:before { + content: "\c1600"; +} +.sh-lightfa-columns-3:before { + content: "\c1599"; +} +.sh-lightfa-circle-dashed:before { + content: "\c1598"; +} +.sh-lightfa-camera-polaroid:before { + content: "\c1597"; +} +.sh-lightfa-broom-wide:before { + content: "\c1596"; +} +.sh-lightfa-bring-front:before { + content: "\c1595"; +} +.sh-lightfa-bring-forward:before { + content: "\c1594"; +} +.sh-lightfa-book-font:before { + content: "\c1593"; +} +.sh-lightfa-bezier-curve:before { + content: "\c1592"; +} +.sh-lightfa-user-helmet-safety:before { + content: "\c1591"; +} +.sh-lightfa-truck-container:before { + content: "\c1590"; +} +.sh-lightfa-trowel-bricks:before { + content: "\c1589"; +} +.sh-lightfa-trowel:before { + content: "\c1588"; +} +.sh-lightfa-triangle-person-digging:before { + content: "\c1587"; +} +.sh-lightfa-traffic-cone:before { + content: "\c1586"; +} +.sh-lightfa-toolbox:before { + content: "\c1585"; +} +.sh-lightfa-shovel-snow:before { + content: "\c1584"; +} +.sh-lightfa-sheet-plastic:before { + content: "\c1583"; +} +.sh-lightfa-screwdriver-wrench:before { + content: "\c1582"; +} +.sh-lightfa-screwdriver:before { + content: "\c1581"; +} +.sh-lightfa-ruler-vertical:before { + content: "\c1580"; +} +.sh-lightfa-ruler-triangle:before { + content: "\c1579"; +} +.sh-lightfa-ruler-horizontal:before { + content: "\c1578"; +} +.sh-lightfa-ruler-combined:before { + content: "\c1577"; +} +.sh-lightfa-ruler:before { + content: "\c1576"; +} +.sh-lightfa-person-digging:before { + content: "\c1575"; +} +.sh-lightfa-pen-ruler:before { + content: "\c1574"; +} +.sh-lightfa-paint-roller:before { + content: "\c1573"; +} +.sh-lightfa-mound:before { + content: "\c1572"; +} +.sh-lightfa-hose-reel:before { + content: "\c1571"; +} +.sh-lightfa-hose:before { + content: "\c1570"; +} +.sh-lightfa-helmet-safety:before { + content: "\c1569"; +} +.sh-lightfa-hammer-crash:before { + content: "\c1568"; +} +.sh-lightfa-hammer:before { + content: "\c1567"; +} +.sh-lightfa-grate-droplet:before { + content: "\c1566"; +} +.sh-lightfa-grate:before { + content: "\c1565"; +} +.sh-lightfa-frame:before { + content: "\c1564"; +} +.sh-lightfa-forklift:before { + content: "\c1563"; +} +.sh-lightfa-dumpster-fire:before { + content: "\c1562"; +} +.sh-lightfa-dumpster:before { + content: "\c1561"; +} +.sh-lightfa-compass-drafting:before { + content: "\c1560"; +} +.sh-lightfa-brush:before { + content: "\c1559"; +} +.sh-lightfa-bore-hole:before { + content: "\c1558"; +} +.sh-lightfa-block-brick:before { + content: "\c1557"; +} +.sh-lightfa-arrow-up-from-ground-water:before { + content: "\c1556"; +} +.sh-lightfa-angle-90:before { + content: "\c1555"; +} +.sh-lightfa-angle:before { + content: "\c1554"; +} +.sh-lightfa-wifi-weak:before { + content: "\c1553"; +} +.sh-lightfa-wifi-fair:before { + content: "\c1552"; +} +.sh-lightfa-tower-broadcast:before { + content: "\c1551"; +} +.sh-lightfa-signal-weak:before { + content: "\c1550"; +} +.sh-lightfa-signal-strong:before { + content: "\c1549"; +} +.sh-lightfa-signal-stream-slash:before { + content: "\c1548"; +} +.sh-lightfa-signal-stream:before { + content: "\c1547"; +} +.sh-lightfa-signal-good:before { + content: "\c1546"; +} +.sh-lightfa-signal-fair:before { + content: "\c1545"; +} +.sh-lightfa-signal-bars-weak:before { + content: "\c1544"; +} +.sh-lightfa-signal-bars-slash:before { + content: "\c1543"; +} +.sh-lightfa-signal-bars-good:before { + content: "\c1542"; +} +.sh-lightfa-signal-bars-fair:before { + content: "\c1541"; +} +.sh-lightfa-nfc-signal:before { + content: "\c1540"; +} +.sh-lightfa-mobile-signal-out:before { + content: "\c1539"; +} +.sh-lightfa-mobile-signal:before { + content: "\c1538"; +} +.sh-lightfa-link-horizontal-slash:before { + content: "\c1537"; +} +.sh-lightfa-link-horizontal:before { + content: "\c1536"; +} +.sh-lightfa-house-signal:before { + content: "\c1535"; +} +.sh-lightfa-ethernet:before { + content: "\c1534"; +} +.sh-lightfa-cloud-xmark:before { + content: "\c1533"; +} +.sh-lightfa-cloud-slash:before { + content: "\c1532"; +} +.sh-lightfa-cloud-plus:before { + content: "\c1531"; +} +.sh-lightfa-cloud-minus:before { + content: "\c1530"; +} +.sh-lightfa-cloud-check:before { + content: "\c1529"; +} +.sh-lightfa-walkie-talkie:before { + content: "\c1528"; +} +.sh-lightfa-voicemail:before { + content: "\c1527"; +} +.sh-lightfa-video-plus:before { + content: "\c1526"; +} +.sh-lightfa-tower-cell:before { + content: "\c1525"; +} +.sh-lightfa-symbols:before { + content: "\c1524"; +} +.sh-lightfa-square-quote:before { + content: "\c1523"; +} +.sh-lightfa-square-phone-hangup:before { + content: "\c1522"; +} +.sh-lightfa-poo:before { + content: "\c1521"; +} +.sh-lightfa-phone-xmark:before { + content: "\c1520"; +} +.sh-lightfa-phone-plus:before { + content: "\c1519"; +} +.sh-lightfa-phone-missed:before { + content: "\c1518"; +} +.sh-lightfa-phone-hangup:before { + content: "\c1517"; +} +.sh-lightfa-phone-arrow-up-right:before { + content: "\c1516"; +} +.sh-lightfa-phone-arrow-right:before { + content: "\c1515"; +} +.sh-lightfa-phone-arrow-down-left:before { + content: "\c1514"; +} +.sh-lightfa-paper-plane-top:before { + content: "\c1513"; +} +.sh-lightfa-mobile-screen-button:before { + content: "\c1512"; +} +.sh-lightfa-mobile-screen:before { + content: "\c1511"; +} +.sh-lightfa-mobile-retro:before { + content: "\c1510"; +} +.sh-lightfa-mobile-notch:before { + content: "\c1509"; +} +.sh-lightfa-mobile-button:before { + content: "\c1508"; +} +.sh-lightfa-message-xmark:before { + content: "\c1507"; +} +.sh-lightfa-message-text:before { + content: "\c1506"; +} +.sh-lightfa-messages-question:before { + content: "\c1505"; +} +.sh-lightfa-message-sms:before { + content: "\c1504"; +} +.sh-lightfa-message-smile:before { + content: "\c1503"; +} +.sh-lightfa-message-slash:before { + content: "\c1502"; +} +.sh-lightfa-messages:before { + content: "\c1501"; +} +.sh-lightfa-message-quote:before { + content: "\c1500"; +} +.sh-lightfa-message-question:before { + content: "\c1499"; +} +.sh-lightfa-message-plus:before { + content: "\c1498"; +} +.sh-lightfa-message-pen:before { + content: "\c1497"; +} +.sh-lightfa-message-minus:before { + content: "\c1496"; +} +.sh-lightfa-message-middle-top:before { + content: "\c1495"; +} +.sh-lightfa-message-middle:before { + content: "\c1494"; +} +.sh-lightfa-message-medical:before { + content: "\c1493"; +} +.sh-lightfa-message-lines:before { + content: "\c1492"; +} +.sh-lightfa-message-image:before { + content: "\c1491"; +} +.sh-lightfa-message-heart:before { + content: "\c1490"; +} +.sh-lightfa-message-dots:before { + content: "\c1489"; +} +.sh-lightfa-message-code:before { + content: "\c1488"; +} +.sh-lightfa-message-check:before { + content: "\c1487"; +} +.sh-lightfa-message-bot:before { + content: "\c1486"; +} +.sh-lightfa-message-arrow-up-right:before { + content: "\c1485"; +} +.sh-lightfa-message-arrow-up:before { + content: "\c1484"; +} +.sh-lightfa-message-arrow-down:before { + content: "\c1483"; +} +.sh-lightfa-message:before { + content: "\c1482"; +} +.sh-lightfa-mailbox-flag-up:before { + content: "\c1481"; +} +.sh-lightfa-mailbox:before { + content: "\c1480"; +} +.sh-lightfa-icons:before { + content: "\c1479"; +} +.sh-lightfa-hundred-points:before { + content: "\c1478"; +} +.sh-lightfa-face-smile-plus:before { + content: "\c1477"; +} +.sh-lightfa-face-awesome:before { + content: "\c1476"; +} +.sh-lightfa-crystal-ball:before { + content: "\c1475"; +} +.sh-lightfa-comment-xmark:before { + content: "\c1474"; +} +.sh-lightfa-comment-text:before { + content: "\c1473"; +} +.sh-lightfa-comments-question-check:before { + content: "\c1472"; +} +.sh-lightfa-comments-question:before { + content: "\c1471"; +} +.sh-lightfa-comment-sms:before { + content: "\c1470"; +} +.sh-lightfa-comment-smile:before { + content: "\c1469"; +} +.sh-lightfa-comment-slash:before { + content: "\c1468"; +} +.sh-lightfa-comment-quote:before { + content: "\c1467"; +} +.sh-lightfa-comment-question:before { + content: "\c1466"; +} +.sh-lightfa-comment-plus:before { + content: "\c1465"; +} +.sh-lightfa-comment-pen:before { + content: "\c1464"; +} +.sh-lightfa-comment-music:before { + content: "\c1463"; +} +.sh-lightfa-comment-minus:before { + content: "\c1462"; +} +.sh-lightfa-comment-middle-top:before { + content: "\c1461"; +} +.sh-lightfa-comment-middle:before { + content: "\c1460"; +} +.sh-lightfa-comment-medical:before { + content: "\c1459"; +} +.sh-lightfa-comment-lines:before { + content: "\c1458"; +} +.sh-lightfa-comment-image:before { + content: "\c1457"; +} +.sh-lightfa-comment-heart:before { + content: "\c1456"; +} +.sh-lightfa-comment-code:before { + content: "\c1455"; +} +.sh-lightfa-comment-check:before { + content: "\c1454"; +} +.sh-lightfa-comment-arrow-up-right:before { + content: "\c1453"; +} +.sh-lightfa-comment-arrow-up:before { + content: "\c1452"; +} +.sh-lightfa-comment-arrow-down:before { + content: "\c1451"; +} +.sh-lightfa-circle-phone-hangup:before { + content: "\c1450"; +} +.sh-lightfa-circle-phone-flip:before { + content: "\c1449"; +} +.sh-lightfa-circle-phone:before { + content: "\c1448"; +} +.sh-lightfa-circle-envelope:before { + content: "\c1447"; +} +.sh-lightfa-blender-phone:before { + content: "\c1446"; +} +.sh-lightfa-wrench-simple:before { + content: "\c1445"; +} +.sh-lightfa-window-flip:before { + content: "\c1444"; +} +.sh-lightfa-window:before { + content: "\c1443"; +} +.sh-lightfa-webhook:before { + content: "\c1442"; +} +.sh-lightfa-sidebar-flip:before { + content: "\c1441"; +} +.sh-lightfa-sidebar:before { + content: "\c1440"; +} +.sh-lightfa-rectangle-xmark:before { + content: "\c1439"; +} +.sh-lightfa-notdef:before { + content: "\c1438"; +} +.sh-lightfa-laptop-mobile:before { + content: "\c1437"; +} +.sh-lightfa-laptop-code:before { + content: "\c1436"; +} +.sh-lightfa-key-skeleton-left-right:before { + content: "\c1435"; +} +.sh-lightfa-code-pull-request-draft:before { + content: "\c1434"; +} +.sh-lightfa-code-pull-request-closed:before { + content: "\c1433"; +} +.sh-lightfa-code-pull-request:before { + content: "\c1432"; +} +.sh-lightfa-code-merge:before { + content: "\c1431"; +} +.sh-lightfa-code-compare:before { + content: "\c1430"; +} +.sh-lightfa-code-commit:before { + content: "\c1429"; +} +.sh-lightfa-circle-nodes:before { + content: "\c1428"; +} +.sh-lightfa-bug-slash:before { + content: "\c1427"; +} +.sh-lightfa-browsers:before { + content: "\c1426"; +} +.sh-lightfa-browser:before { + content: "\c1425"; +} +.sh-lightfa-brain-circuit:before { + content: "\c1424"; +} +.sh-lightfa-brackets-square:before { + content: "\c1423"; +} +.sh-lightfa-brackets-round:before { + content: "\c1422"; +} +.sh-lightfa-bracket-square-right:before { + content: "\c1421"; +} +.sh-lightfa-bracket-square:before { + content: "\c1420"; +} +.sh-lightfa-brackets-curly:before { + content: "\c1419"; +} +.sh-lightfa-bracket-round-right:before { + content: "\c1418"; +} +.sh-lightfa-bracket-round:before { + content: "\c1417"; +} +.sh-lightfa-bracket-curly-right:before { + content: "\c1416"; +} +.sh-lightfa-bracket-curly:before { + content: "\c1415"; +} +.sh-lightfa-binary-slash:before { + content: "\c1414"; +} +.sh-lightfa-binary-lock:before { + content: "\c1413"; +} +.sh-lightfa-binary-circle-check:before { + content: "\c1412"; +} +.sh-lightfa-binary:before { + content: "\c1411"; +} +.sh-lightfa-bars-sort:before { + content: "\c1410"; +} +.sh-lightfa-bars-filter:before { + content: "\c1409"; +} +.sh-lightfa-ban-bug:before { + content: "\c1408"; +} +.sh-lightfa-vest-patches:before { + content: "\c1407"; +} +.sh-lightfa-vest:before { + content: "\c1406"; +} +.sh-lightfa-user-tie:before { + content: "\c1405"; +} +.sh-lightfa-uniform-martial-arts:before { + content: "\c1404"; +} +.sh-lightfa-sunglasses:before { + content: "\c1403"; +} +.sh-lightfa-stocking:before { + content: "\c1402"; +} +.sh-lightfa-ski-boot:before { + content: "\c1401"; +} +.sh-lightfa-shoe-prints:before { + content: "\c1400"; +} +.sh-lightfa-shirt-tank-top:before { + content: "\c1399"; +} +.sh-lightfa-shirt-running:before { + content: "\c1398"; +} +.sh-lightfa-shirt-long-sleeve:before { + content: "\c1397"; +} +.sh-lightfa-shirt:before { + content: "\c1396"; +} +.sh-lightfa-scarf:before { + content: "\c1395"; +} +.sh-lightfa-reel:before { + content: "\c1394"; +} +.sh-lightfa-pipe-smoking:before { + content: "\c1393"; +} +.sh-lightfa-mustache:before { + content: "\c1392"; +} +.sh-lightfa-ice-skate:before { + content: "\c1391"; +} +.sh-lightfa-hood-cloak:before { + content: "\c1390"; +} +.sh-lightfa-hat-wizard:before { + content: "\c1389"; +} +.sh-lightfa-hat-witch:before { + content: "\c1388"; +} +.sh-lightfa-hat-winter:before { + content: "\c1387"; +} +.sh-lightfa-hat-santa:before { + content: "\c1386"; +} +.sh-lightfa-hat-cowboy-side:before { + content: "\c1385"; +} +.sh-lightfa-hat-cowboy:before { + content: "\c1384"; +} +.sh-lightfa-ear-muffs:before { + content: "\c1383"; +} +.sh-lightfa-boot-heeled:before { + content: "\c1382"; +} +.sh-lightfa-tricycle:before { + content: "\c1381"; +} +.sh-lightfa-thought-bubble:before { + content: "\c1380"; +} +.sh-lightfa-soft-serve:before { + content: "\c1379"; +} +.sh-lightfa-snowman-head:before { + content: "\c1378"; +} +.sh-lightfa-snowman:before { + content: "\c1377"; +} +.sh-lightfa-shapes:before { + content: "\c1376"; +} +.sh-lightfa-robot:before { + content: "\c1375"; +} +.sh-lightfa-pretzel:before { + content: "\c1374"; +} +.sh-lightfa-popsicle:before { + content: "\c1373"; +} +.sh-lightfa-pool-8-ball:before { + content: "\c1372"; +} +.sh-lightfa-pinata:before { + content: "\c1371"; +} +.sh-lightfa-person-sledding:before { + content: "\c1370"; +} +.sh-lightfa-person-breastfeeding:before { + content: "\c1369"; +} +.sh-lightfa-person-biking:before { + content: "\c1368"; +} +.sh-lightfa-mitten:before { + content: "\c1367"; +} +.sh-lightfa-lollipop:before { + content: "\c1366"; +} +.sh-lightfa-ice-cream:before { + content: "\c1365"; +} +.sh-lightfa-gun-squirt:before { + content: "\c1364"; +} +.sh-lightfa-globe-snow:before { + content: "\c1363"; +} +.sh-lightfa-game-console-handheld:before { + content: "\c1362"; +} +.sh-lightfa-family-pants:before { + content: "\c1361"; +} +.sh-lightfa-family-dress:before { + content: "\c1360"; +} +.sh-lightfa-family:before { + content: "\c1359"; +} +.sh-lightfa-cupcake:before { + content: "\c1358"; +} +.sh-lightfa-cubes-stacked:before { + content: "\c1357"; +} +.sh-lightfa-cookie-bite:before { + content: "\c1356"; +} +.sh-lightfa-children:before { + content: "\c1355"; +} +.sh-lightfa-child-reaching:before { + content: "\c1354"; +} +.sh-lightfa-candy-bar:before { + content: "\c1353"; +} +.sh-lightfa-candy:before { + content: "\c1352"; +} +.sh-lightfa-cake-slice:before { + content: "\c1351"; +} +.sh-lightfa-bowl-soft-serve:before { + content: "\c1350"; +} +.sh-lightfa-block-question:before { + content: "\c1349"; +} +.sh-lightfa-block:before { + content: "\c1348"; +} +.sh-lightfa-basketball-hoop:before { + content: "\c1347"; +} +.sh-lightfa-baseball-bat-ball:before { + content: "\c1346"; +} +.sh-lightfa-ball-pile:before { + content: "\c1345"; +} +.sh-lightfa-balloons:before { + content: "\c1344"; +} +.sh-lightfa-balloon:before { + content: "\c1343"; +} +.sh-lightfa-baby-carriage:before { + content: "\c1342"; +} +.sh-lightfa-baby:before { + content: "\c1341"; +} +.sh-lightfa-apple-whole:before { + content: "\c1340"; +} +.sh-lightfa-diagram-successor:before { + content: "\c1339"; +} +.sh-lightfa-diagram-subtask:before { + content: "\c1338"; +} +.sh-lightfa-diagram-sankey:before { + content: "\c1337"; +} +.sh-lightfa-diagram-project:before { + content: "\c1336"; +} +.sh-lightfa-diagram-previous:before { + content: "\c1335"; +} +.sh-lightfa-diagram-predecessor:before { + content: "\c1334"; +} +.sh-lightfa-diagram-next:before { + content: "\c1333"; +} +.sh-lightfa-diagram-nested:before { + content: "\c1332"; +} +.sh-lightfa-diagram-lean-canvas:before { + content: "\c1331"; +} +.sh-lightfa-diagram-cells:before { + content: "\c1330"; +} +.sh-lightfa-circle-three-quarters-stroke:before { + content: "\c1329"; +} +.sh-lightfa-circle-quarter-stroke:before { + content: "\c1328"; +} +.sh-lightfa-circle-half-stroke:before { + content: "\c1327"; +} +.sh-lightfa-chart-waterfall:before { + content: "\c1326"; +} +.sh-lightfa-chart-scatter-bubble:before { + content: "\c1325"; +} +.sh-lightfa-chart-scatter-3d:before { + content: "\c1324"; +} +.sh-lightfa-chart-scatter:before { + content: "\c1323"; +} +.sh-lightfa-chart-radar:before { + content: "\c1322"; +} +.sh-lightfa-chart-network:before { + content: "\c1321"; +} +.sh-lightfa-chart-mixed:before { + content: "\c1320"; +} +.sh-lightfa-chart-gantt:before { + content: "\c1319"; +} +.sh-lightfa-chart-candlestick:before { + content: "\c1318"; +} +.sh-lightfa-chart-bullet:before { + content: "\c1317"; +} +.sh-lightfa-chart-bar:before { + content: "\c1316"; +} +.sh-lightfa-square-heart:before { + content: "\c1315"; +} +.sh-lightfa-square-dollar:before { + content: "\c1314"; +} +.sh-lightfa-seedling:before { + content: "\c1313"; +} +.sh-lightfa-ribbon:before { + content: "\c1312"; +} +.sh-lightfa-piggy-bank:before { + content: "\c1311"; +} +.sh-lightfa-parachute-box:before { + content: "\c1310"; +} +.sh-lightfa-leaf-heart:before { + content: "\c1309"; +} +.sh-lightfa-house-heart:before { + content: "\c1308"; +} +.sh-lightfa-house-chimney-heart:before { + content: "\c1307"; +} +.sh-lightfa-hands-holding-heart:before { + content: "\c1306"; +} +.sh-lightfa-hands-holding-dollar:before { + content: "\c1305"; +} +.sh-lightfa-hands-holding-circle:before { + content: "\c1304"; +} +.sh-lightfa-hands-holding-child:before { + content: "\c1303"; +} +.sh-lightfa-hand-holding-heart:before { + content: "\c1302"; +} +.sh-lightfa-hand-holding-hand:before { + content: "\c1301"; +} +.sh-lightfa-hand-holding-droplet:before { + content: "\c1300"; +} +.sh-lightfa-hand-holding-dollar:before { + content: "\c1299"; +} +.sh-lightfa-hand-heart:before { + content: "\c1298"; +} +.sh-lightfa-circle-heart:before { + content: "\c1297"; +} +.sh-lightfa-circle-dollar-to-slot:before { + content: "\c1296"; +} +.sh-lightfa-circle-dollar:before { + content: "\c1295"; +} +.sh-lightfa-box-heart:before { + content: "\c1294"; +} +.sh-lightfa-box-dollar:before { + content: "\c1293"; +} +.sh-lightfa-book-heart:before { + content: "\c1292"; +} +.sh-lighta-hand-holding-seedling:before { + content: "\c1291"; +} +.sh-lightfa-trees:before { + content: "\c1290"; +} +.sh-lightfa-tree-large:before { + content: "\c1289"; +} +.sh-lightfa-tree-deciduous:before { + content: "\c1288"; +} +.sh-lightfa-toilet-paper-blank:before { + content: "\c1287"; +} +.sh-lightfa-toilet-paper:before { + content: "\c1286"; +} +.sh-lightfa-tarp-droplet:before { + content: "\c1285"; +} +.sh-lightfa-tarp:before { + content: "\c1284"; +} +.sh-lightfa-table-picnic:before { + content: "\c1283"; +} +.sh-lightfa-sunset:before { + content: "\c1282"; +} +.sh-lightfa-sunrise:before { + content: "\c1281"; +} +.sh-lightfa-shovel:before { + content: "\c1280"; +} +.sh-lightfa-shish-kebab:before { + content: "\c1279"; +} +.sh-lightfa-route:before { + content: "\c1278"; +} +.sh-lightfa-pickaxe:before { + content: "\c1277"; +} +.sh-lightfa-person-shelter:before { + content: "\c1276"; +} +.sh-lightfa-person-hiking:before { + content: "\c1275"; +} +.sh-lightfa-person-biking-mountain:before { + content: "\c1274"; +} +.sh-lightfa-people-roof:before { + content: "\c1273"; +} +.sh-lightfa-mountain-sun:before { + content: "\c1272"; +} +.sh-lightfa-mountains:before { + content: "\c1271"; +} +.sh-lightfa-mountain:before { + content: "\c1270"; +} +.sh-lightfa-mosquito-net:before { + content: "\c1269"; +} +.sh-lightfa-mattress-pillow:before { + content: "\c1268"; +} +.sh-lightfa-map-location-dot:before { + content: "\c1267"; +} +.sh-lightfa-map-location:before { + content: "\c1266"; +} +.sh-lightfa-grill-hot:before { + content: "\c1265"; +} +.sh-lightfa-grill-fire:before { + content: "\c1264"; +} +.sh-lightfa-grill:before { + content: "\c1263"; +} +.sh-lightfa-fishing-rod:before { + content: "\c1262"; +} +.sh-lightfa-fire-smoke:before { + content: "\c1261"; +} +.sh-lightfa-fire-flame-curved:before { + content: "\c1260"; +} +.sh-lightfa-fire-burner:before { + content: "\c1259"; +} +.sh-lightfa-faucet-drip:before { + content: "\c1258"; +} +.sh-lightfa-faucet:before { + content: "\c1257"; +} +.sh-lightfa-cauldron:before { + content: "\c1256"; +} +.sh-lightfa-campfire:before { + content: "\c1255"; +} +.sh-lightfa-bucket:before { + content: "\c1254"; +} +.sh-lightfa-bottle-water:before { + content: "\c1253"; +} +.sh-lightfa-boot:before { + content: "\c1252"; +} +.sh-lightfa-bench-tree:before { + content: "\c1251"; +} +.sh-lightfa-backpack:before { + content: "\c1250"; +} +.sh-lightfa-axe:before { + content: "\c1249"; +} +.sh-lightfa-acorn:before { + content: "\c1248"; +} +.sh-lightfa-wallet:before { + content: "\c1247"; +} +.sh-lightfa-vault:before { + content: "\c1246"; +} +.sh-lightfa-user-tie-hair-long:before { + content: "\c1245"; +} +.sh-lightfa-user-tie-hair:before { + content: "\c1244"; +} +.sh-lightfa-user-hair-mullet:before { + content: "\c1243"; +} +.sh-lightfa-timeline-arrow:before { + content: "\c1242"; +} +.sh-lightfa-timeline:before { + content: "\c1241"; +} +.sh-lightfa-table-tree:before { + content: "\c1240"; +} +.sh-lightfa-table-rows:before { + content: "\c1239"; +} +.sh-lightfa-table-pivot:before { + content: "\c1238"; +} +.sh-lightfa-table-layout:before { + content: "\c1237"; +} +.sh-lightfa-stapler:before { + content: "\c1236"; +} +.sh-lightfa-square-poll-vertical:before { + content: "\c1235"; +} +.sh-lightfa-square-poll-horizontal:before { + content: "\c1234"; +} +.sh-lightfa-square-phone-flip:before { + content: "\c1233"; +} +.sh-lightfa-square-pen:before { + content: "\c1232"; +} +.sh-lightfa-square-kanban:before { + content: "\c1231"; +} +.sh-lightfa-socks:before { + content: "\c1230"; +} +.sh-lightfa-slot-machine:before { + content: "\c1229"; +} +.sh-lightfa-signature-slash:before { + content: "\c1228"; +} +.sh-lightfa-signature-lock:before { + content: "\c1227"; +} +.sh-lightfa-signature:before { + content: "\c1226"; +} +.sh-lightfa-shredder:before { + content: "\c1225"; +} +.sh-lightfa-scanner-image:before { + content: "\c1224"; +} +.sh-lightfa-scale-unbalanced-flip:before { + content: "\c1223"; +} +.sh-lightfa-scale-unbalanced:before { + content: "\c1222"; +} +.sh-lightfa-router:before { + content: "\c1221"; +} +.sh-lightfa-rectangle-pro:before { + content: "\c1220"; +} +.sh-lightfa-projector:before { + content: "\c1219"; +} +.sh-lightfa-print-slash:before { + content: "\c1218"; +} +.sh-lightfa-print-magnifying-glass:before { + content: "\c1217"; +} +.sh-lightfa-presentation-screen:before { + content: "\c1216"; +} +.sh-lightfa-podium:before { + content: "\c1215"; +} +.sh-lightfa-phone-slash:before { + content: "\c1214"; +} +.sh-lightfa-phone-office:before { + content: "\c1213"; +} +.sh-lightfa-phone-intercom:before { + content: "\c1212"; +} +.sh-lightfa-person-chalkboard:before { + content: "\c1211"; +} +.sh-lightfa-pen-nib-slash:before { + content: "\c1210"; +} +.sh-lightfa-pen-nib:before { + content: "\c1209"; +} +.sh-lightfa-pen-fancy:before { + content: "\c1208"; +} +.sh-lightfa-pen-clip:before { + content: "\c1207"; +} +.sh-lightfa-pen:before { + content: "\c1206"; +} +.sh-lightfa-paperclip-vertical:before { + content: "\c1205"; +} +.sh-lightfa-notebook:before { + content: "\c1204"; +} +.sh-lightfa-network-wired:before { + content: "\c1203"; +} +.sh-lightfa-money-check-pen:before { + content: "\c1202"; +} +.sh-lightfa-money-check-dollar-pen:before { + content: "\c1201"; +} +.sh-lightfa-marker:before { + content: "\c1200"; +} +.sh-lightfa-magnifying-glass-chart:before { + content: "\c1199"; +} +.sh-lightfa-magnifying-glass-arrow-right:before { + content: "\c1198"; +} +.sh-lightfa-list-tree:before { + content: "\c1197"; +} +.sh-lightfa-list-timeline:before { + content: "\c1196"; +} +.sh-lightfa-list-radio:before { + content: "\c1195"; +} +.sh-lightfa-list-dropdown:before { + content: "\c1194"; +} +.sh-lightfa-list-check:before { + content: "\c1193"; +} +.sh-lightfa-laptop-file:before { + content: "\c1192"; +} +.sh-lightfa-lamp-desk:before { + content: "\c1191"; +} +.sh-lightfa-keynote:before { + content: "\c1190"; +} +.sh-lightfa-inbox-full:before { + content: "\c1189"; +} +.sh-lightfa-inboxes:before { + content: "\c1188"; +} +.sh-lightfa-house-laptop:before { + content: "\c1187"; +} +.sh-lightfa-highlighter:before { + content: "\c1186"; +} +.sh-lightfa-globe-alt:before { + content: "\c1185"; +} +.sh-lightfa-glasses:before { + content: "\c1184"; +} +.sh-lightfa-folder-xmark:before { + content: "\c1183"; +} +.sh-lightfa-folder-tree:before { + content: "\c1182"; +} +.sh-lightfa-folder-plus:before { + content: "\c1181"; +} +.sh-lightfa-folder-minus:before { + content: "\c1180"; +} +.sh-lightfa-folder-arrow-up:before { + content: "\c1179"; +} +.sh-lightfa-folder-arrow-down:before { + content: "\c1178"; +} +.sh-lightfa-floppy-disk-circle-xmark:before { + content: "\c1177"; +} +.sh-lightfa-floppy-disk-circle-arrow-right:before { + content: "\c1176"; +} +.sh-lightfa-file-user:before { + content: "\c1175"; +} +.sh-lightfa-file-spreadsheet:before { + content: "\c1174"; +} +.sh-lightfa-file-circle-plus:before { + content: "\c1173"; +} +.sh-lightfa-file-circle-info:before { + content: "\c1172"; +} +.sh-lightfa-file-chart-pie:before { + content: "\c1171"; +} +.sh-lightfa-file-chart-column:before { + content: "\c1170"; +} +.sh-lightfa-envelopes:before { + content: "\c1169"; +} +.sh-lightfa-envelope-dot:before { + content: "\c1168"; +} +.sh-lightfa-envelope-circle-check:before { + content: "\c1167"; +} +.sh-lightfa-diagram-venn:before { + content: "\c1166"; +} +.sh-lightfa-computer-classic:before { + content: "\c1165"; +} +.sh-lightfa-coffee-pot:before { + content: "\c1164"; +} +.sh-lightfa-cloud-word:before { + content: "\c1163"; +} +.sh-lightfa-clipboard-question:before { + content: "\c1162"; +} +.sh-lightfa-chart-user:before { + content: "\c1161"; +} +.sh-lightfa-chart-tree-map:before { + content: "\c1160"; +} +.sh-lightfa-chart-simple-horizontal:before { + content: "\c1159"; +} +.sh-lightfa-chart-simple:before { + content: "\c1158"; +} +.sh-lightfa-chart-pyramid:before { + content: "\c1157"; +} +.sh-lightfa-chart-pie-simple:before { + content: "\c1156"; +} +.sh-lightfa-chart-line-up:before { + content: "\c1155"; +} +.sh-lightfa-chart-line-down:before { + content: "\c1154"; +} +.sh-lightfa-cabinet-filing:before { + content: "\c1153"; +} +.sh-lightfa-business-time:before { + content: "\c1152"; +} +.sh-lightfa-briefcase-blank:before { + content: "\c1151"; +} +.sh-lightfa-briefcase-arrow-right:before { + content: "\c1150"; +} +.sh-lightfa-brain-arrow-curved-right:before { + content: "\c1149"; +} +.sh-lightfa-boxes-packing:before { + content: "\c1148"; +} +.sh-lightfa-book-section:before { + content: "\c1147"; +} +.sh-lightfa-bars-staggered:before { + content: "\c1146"; +} +.sh-lightfa-bars-progress:before { + content: "\c1145"; +} +.sh-lightfa-badge-percent:before { + content: "\c1144"; +} +.sh-lightfa-badge-dollar:before { + content: "\c1143"; +} +.sh-lightfa-badge-check:before { + content: "\c1142"; +} +.sh-lightfa-badge:before { + content: "\c1141"; +} +.sh-lightfa-warehouse-full:before { + content: "\c1140"; +} +.sh-lightfa-warehouse:before { + content: "\c1139"; +} +.sh-lightfa-vihara:before { + content: "\c1138"; +} +.sh-lightfa-tree-city:before { + content: "\c1137"; +} +.sh-lightfa-tower-observation:before { + content: "\c1136"; +} +.sh-lightfa-torii-gate:before { + content: "\c1135"; +} +.sh-lightfa-toilets-portable:before { + content: "\c1134"; +} +.sh-lightfa-toilet-portable:before { + content: "\c1133"; +} +.sh-lightfa-tents:before { + content: "\c1132"; +} +.sh-lightfa-tent-arrow-turn-left:before { + content: "\c1131"; +} +.sh-lightfa-tent-arrows-down:before { + content: "\c1130"; +} +.sh-lightfa-tent-arrow-left-right:before { + content: "\c1129"; +} +.sh-lightfa-tent-arrow-down-to-line:before { + content: "\c1128"; +} +.sh-lightfa-tent:before { + content: "\c1127"; +} +.sh-lightfa-synagogue:before { + content: "\c1126"; +} +.sh-lightfa-store-lock:before { + content: "\c1125"; +} +.sh-lightfa-store:before { + content: "\c1124"; +} +.sh-lightfa-shop-lock:before { + content: "\c1123"; +} +.sh-lightfa-shop:before { + content: "\c1122"; +} +.sh-lightfa-school-lock:before { + content: "\c1121"; +} +.sh-lightfa-school-flag:before { + content: "\c1120"; +} +.sh-lightfa-school-circle-xmark:before { + content: "\c1119"; +} +.sh-lightfa-school-circle-exclamation:before { + content: "\c1118"; +} +.sh-lightfa-school-circle-check:before { + content: "\c1117"; +} +.sh-lightfa-school:before { + content: "\c1116"; +} +.sh-lightfa-roller-coaster:before { + content: "\c1115"; +} +.sh-lightfa-place-of-worship:before { + content: "\c1114"; +} +.sh-lightfa-oil-well:before { + content: "\c1113"; +} +.sh-lightfa-mountain-city:before { + content: "\c1112"; +} +.sh-lightfa-mosque:before { + content: "\c1111"; +} +.sh-lightfa-monument:before { + content: "\c1110"; +} +.sh-lightfa-landmark-flag:before { + content: "\c1109"; +} +.sh-lightfa-landmark-dome:before { + content: "\c1108"; +} +.sh-lightfa-landmark:before { + content: "\c1107"; +} +.sh-lightfa-kaaba:before { + content: "\c1106"; +} +.sh-lightfa-igloo:before { + content: "\c1105"; +} +.sh-lightfa-house-window:before { + content: "\c1104"; +} +.sh-lightfa-house-water:before { + content: "\c1103"; +} +.sh-lightfa-house-turret:before { + content: "\c1102"; +} +.sh-lightfa-house-tree:before { + content: "\c1101"; +} +.sh-lightfa-house-night:before { + content: "\c1100"; +} +.sh-lightfa-house-medical-flag:before { + content: "\c1099"; +} +.sh-lightfa-house-medical-circle-xmark:before { + content: "\c1098"; +} +.sh-lightfa-house-medical-circle-exclamation:before { + content: "\c1097"; +} +.sh-lightfa-house-medical-circle-check:before { + content: "\c1096"; +} +.sh-lightfa-house-medical:before { + content: "\c1095"; +} +.sh-lightfa-house-lock:before { + content: "\c1094"; +} +.sh-lightfa-house-flag:before { + content: "\c1093"; +} +.sh-lightfa-house-fire:before { + content: "\c1092"; +} +.sh-lightfa-house-day:before { + content: "\c1091"; +} +.sh-lightfa-house-crack:before { + content: "\c1090"; +} +.sh-lightfa-house-circle-xmark:before { + content: "\c1089"; +} +.sh-lightfa-house-circle-exclamation:before { + content: "\c1088"; +} +.sh-lightfa-house-circle-check:before { + content: "\c1087"; +} +.sh-lightfa-house-chimney-window:before { + content: "\c1086"; +} +.sh-lightfa-house-chimney-medical:before { + content: "\c1085"; +} +.sh-lightfa-house-chimney-crack:before { + content: "\c1084"; +} +.sh-lightfa-house-chimney-blank:before { + content: "\c1083"; +} +.sh-lightfa-house-chimney:before { + content: "\c1082"; +} +.sh-lightfa-house-building:before { + content: "\c1081"; +} +.sh-lightfa-house-blank:before { + content: "\c1080"; +} +.sh-lightfa-hotel1:before { + content: "\c1079"; +} +.sh-lightfa-hospital-user:before { + content: "\c1078"; +} +.sh-lightfa-hospitals:before { + content: "\c1077"; +} +.sh-lightfa-gopuram:before { + content: "\c1076"; +} +.sh-lightfa-fort:before { + content: "\c1075"; +} +.sh-lightfa-ferris-wheel:before { + content: "\c1074"; +} +.sh-lightfa-fence:before { + content: "\c1073"; +} +.sh-lightfa-farm:before { + content: "\c1072"; +} +.sh-lightfa-dungeon:before { + content: "\c1071"; +} +.sh-lightfa-container-storage:before { + content: "\c1070"; +} +.sh-lightfa-city:before { + content: "\c1069"; +} +.sh-lightfa-church:before { + content: "\c1068"; +} +.sh-lightfa-chimney:before { + content: "\c1067"; +} +.sh-lightfa-castle:before { + content: "\c1066"; +} +.sh-lightfa-campground:before { + content: "\c1065"; +} +.sh-lightfa-cabin:before { + content: "\c1064"; +} +.sh-lightfa-building-wheat:before { + content: "\c1063"; +} +.sh-lightfa-building-user:before { + content: "\c1062"; +} +.sh-lightfa-building-un:before { + content: "\c1061"; +} +.sh-lightfa-building-shield:before { + content: "\c1060"; +} +.sh-lightfa-buildings:before { + content: "\c1059"; +} +.sh-lightfa-building-ngo:before { + content: "\c1058"; +} +.sh-lightfa-building-lock:before { + content: "\c1057"; +} +.sh-lightfa-building-flag:before { + content: "\c1056"; +} +.sh-lightfa-building-circle-xmark:before { + content: "\c1055"; +} +.sh-lightfa-building-circle-exclamation:before { + content: "\c1054"; +} +.sh-lightfa-building-circle-check:before { + content: "\c1053"; +} +.sh-lightfa-building-circle-arrow-right:before { + content: "\c1052"; +} +.sh-lightfa-bridge-suspension:before { + content: "\c1051"; +} +.sh-lightfa-arrow-right-to-city:before { + content: "\c1050"; +} +.sh-lightfa-archway:before { + content: "\c1049"; +} +.sh-lightfa-apartment:before { + content: "\c1048"; +} +.sh-lightfa-stars:before { + content: "\c1047"; +} +.sh-lightfa-telescope:before { + content: "\c1046"; +} +.sh-lightfa-user-astronaut:before { + content: "\c1045"; +} +.sh-lightfa-user-alien:before { + content: "\c1044"; +} +.sh-lightfa-ufo-beam:before { + content: "\c1043"; +} +.sh-lightfa-ufo:before { + content: "\c1042"; +} +.sh-lightfa-star-shooting:before { + content: "\c1041"; +} +.sh-lightfa-solar-system:before { + content: "\c1040"; +} +.sh-lightfa-satellite-dish:before { + content: "\c1039"; +} +.sh-lightfa-satellite:before { + content: "\c1038"; +} +.sh-lightfa-radar:before { + content: "\c1037"; +} +.sh-lightfa-planet-ringed:before { + content: "\c1036"; +} +.sh-lightfa-planet-moon:before { + content: "\c1035"; +} +.sh-lightfa-moon-stars:before { + content: "\c1034"; +} +.sh-lightfa-moon-over-sun:before { + content: "\c1033"; +} +.sh-lightfa-meteor:before { + content: "\c1032"; +} +.sh-lightfa-galaxy:before { + content: "\c1031"; +} +.sh-lightfa-eclipse:before { + content: "\c1030"; +} +.sh-lightfa-comet:before { + content: "\c1029"; +} +.sh-lightfa-alien:before { + content: "\c1028"; +} +.sh-lightfa-up-to-line:before { + content: "\c1027"; +} +.sh-lightfa-up-to-dotted-line:before { + content: "\c1026"; +} +.sh-lightfa-up-right-and-down-left-from-center:before { + content: "\c1025"; +} +.sh-lightfa-up-right:before { + content: "\c1024"; +} +.sh-lightfa-up-long:before { + content: "\c1023"; +} +.sh-lightfa-up-left:before { + content: "\c1022"; +} +.sh-lightfa-up-from-dotted-line:before { + content: "\c1021"; +} +.sh-lightfa-up-from-bracket:before { + content: "\c1020"; +} +.sh-lightfa-up:before { + content: "\c1019"; +} +.sh-lightfa-turn-down-right:before { + content: "\c1018"; +} +.sh-lightfa-turn-down-left:before { + content: "\c1017"; +} +.sh-lightfa-square-up-right:before { + content: "\c1016"; +} +.sh-lightfa-square-up-left:before { + content: "\c1015"; +} +.sh-lightfa-square-up:before { + content: "\c1014"; +} +.sh-lightfa-square-right:before { + content: "\c1013"; +} +.sh-lightfa-square-left:before { + content: "\c1012"; +} +.sh-lightfa-square-down-right:before { + content: "\c1011"; +} +.sh-lightfa-square-down-left:before { + content: "\c1010"; +} +.sh-lightfa-square-down:before { + content: "\c1009"; +} +.sh-lightfa-square-chevron-up:before { + content: "\c1008"; +} +.sh-lightfa-square-chevron-right:before { + content: "\c1007"; +} +.sh-lightfa-square-chevron-left:before { + content: "\c1006"; +} +.sh-lightfa-square-chevron-down:before { + content: "\c1005"; +} +.sh-lightfa-square-arrow-up-left:before { + content: "\c1004"; +} +.sh-lightfa-square-arrow-up:before { + content: "\c1003"; +} +.sh-lightfa-square-arrow-right:before { + content: "\c1002"; +} +.sh-lightfa-square-arrow-left:before { + content: "\c1001"; +} +.sh-lightfa-square-arrow-down-right:before { + content: "\c1000"; +} +.sh-lightfa-square-arrow-down-left:before { + content: "\c0999"; +} +.sh-lightfa-square-arrow-down:before { + content: "\c0998"; +} +.sh-lightfa-split:before { + content: "\c0997"; +} +.sh-lightfa-share-all:before { + content: "\c0996"; +} +.sh-lightfa-rotate-right-arrow:before { + content: "\c0995"; +} +.sh-lightfa-rotate-left-arrow:before { + content: "\c0994"; +} +.sh-lightfa-right-to-line:before { + content: "\c0993"; +} +.sh-lightfa-right-long-to-line:before { + content: "\c0992"; +} +.sh-lightfa-right-long:before { + content: "\c0991"; +} +.sh-lightfa-right-left:before { + content: "\c0990"; +} +.sh-lightfa-right-from-line:before { + content: "\c0989"; +} +.sh-lightfa-right:before { + content: "\c0988"; +} +.sh-lightfa-repeat-1:before { + content: "\c0987"; +} +.sh-lightfa-merge:before { + content: "\c0986"; +} +.sh-lightfa-left-to-line:before { + content: "\c0985"; +} +.sh-lightfa-left-right:before { + content: "\c0984"; +} +.sh-lightfa-left-long-to-line:before { + content: "\c0983"; +} +.sh-lightfa-left-long:before { + content: "\c0982"; +} +.sh-lightfa-left-from-line:before { + content: "\c0981"; +} +.sh-lightfa-left:before { + content: "\c0980"; +} +.sh-lightfa-inbox-out:before { + content: "\c0979"; +} +.sh-lightfa-inbox-in:before { + content: "\c0978"; +} +.sh-lightfa-down-to-line:before { + content: "\c0977"; +} +.sh-lightfa-down-to-dotted-line:before { + content: "\c0976"; +} +.sh-lightfa-down-to-bracket:before { + content: "\c0975"; +} +.sh-lightfa-down-right:before { + content: "\c0974"; +} +.sh-lightfa-down-long:before { + content: "\c0973"; +} +.sh-lightfa-down-left-and-up-right-to-center:before { + content: "\c0972"; +} +.sh-lightfa-down-left:before { + content: "\c0971"; +} +.sh-lightfa-down-from-line:before { + content: "\c0970"; +} +.sh-lightfa-down-from-dotted-line:before { + content: "\c0969"; +} +.sh-lightfa-down:before { + content: "\c0968"; +} +.sh-lightfa-circle-up-right:before { + content: "\c0967"; +} +.sh-lightfa-circle-up-left:before { + content: "\c0966"; +} +.sh-lightfa-circle-up:before { + content: "\c0965"; +} +.sh-lightfa-circle-right:before { + content: "\c0964"; +} +.sh-lightfa-circle-left:before { + content: "\c0963"; +} +.sh-lightfa-circle-down-right:before { + content: "\c0962"; +} +.sh-lightfa-circle-down-left:before { + content: "\c0961"; +} +.sh-lightfa-circle-down:before { + content: "\c0960"; +} +.sh-lightfa-circle-chevron-up:before { + content: "\c0959"; +} +.sh-lightfa-circle-chevron-right:before { + content: "\c0958"; +} +.sh-lightfa-circle-chevron-left:before { + content: "\c0957"; +} +.sh-lightfa-circle-chevron-down:before { + content: "\c0956"; +} +.sh-lightfa-circle-caret-up:before { + content: "\c0955"; +} +.sh-lightfa-circle-caret-right:before { + content: "\c0954"; +} +.sh-lightfa-circle-caret-left:before { + content: "\c0953"; +} +.sh-lightfa-circle-caret-down:before { + content: "\c0952"; +} +.sh-lightfa-circle-arrow-up-right:before { + content: "\c0951"; +} +.sh-lightfa-circle-arrow-up-left:before { + content: "\c0950"; +} +.sh-lightfa-circle-arrow-down-right:before { + content: "\c0949"; +} +.sh-lightfa-circle-arrow-down-left:before { + content: "\c0948"; +} +.sh-lightfa-arrow-up-z-a:before { + content: "\c0947"; +} +.sh-lightfa-arrow-up-wide-short:before { + content: "\c0946"; +} +.sh-lightfa-arrow-up-triangle-square:before { + content: "\c0945"; +} +.sh-lightfa-arrow-up-to-line:before { + content: "\c0944"; +} +.sh-lightfa-arrow-up-to-dotted-line:before { + content: "\c0943"; +} +.sh-lightfa-arrow-up-square-triangle:before { + content: "\c0942"; +} +.sh-lightfa-arrow-up-small-big:before { + content: "\c0941"; +} +.sh-lightfa-arrow-up-short-wide:before { + content: "\c0940"; +} +.sh-lightfa-arrow-up-right-dots:before { + content: "\c0939"; +} +.sh-lightfa-arrow-up-right:before { + content: "\c0938"; +} +.sh-lightfa-arrow-up-left-from-circle:before { + content: "\c0937"; +} +.sh-lightfa-arrow-up-left:before { + content: "\c0936"; +} +.sh-lightfa-arrow-up-from-square:before { + content: "\c0935"; +} +.sh-lightfa-arrow-up-from-line:before { + content: "\c0934"; +} +.sh-lightfa-arrow-up-from-dotted-line:before { + content: "\c0933"; +} +.sh-lightfa-arrow-up-from-bracket:before { + content: "\c0932"; +} +.sh-lightfa-arrow-up-from-arc:before { + content: "\c0931"; +} +.sh-lightfa-arrow-up-down-left-right:before { + content: "\c0930"; +} +.sh-lightfa-arrow-up-down:before { + content: "\c0929"; +} +.sh-lightfa-arrow-up-big-small:before { + content: "\c0928"; +} +.sh-lightfa-arrow-up-a-z:before { + content: "\c0927"; +} +.sh-lightfa-arrow-up-arrow-down:before { + content: "\c0926"; +} +.sh-lightfa-arrow-up-9-1:before { + content: "\c0925"; +} +.sh-lightfa-arrow-up-1-9:before { + content: "\c0924"; +} +.sh-lightfa-arrow-turn-up:before { + content: "\c0923"; +} +.sh-lightfa-arrow-turn-down-right:before { + content: "\c0922"; +} +.sh-lightfa-arrow-turn-down-left:before { + content: "\c0921"; +} +.sh-lightfa-arrow-turn-down:before { + content: "\c0920"; +} +.sh-lightfa-arrow-trend-up:before { + content: "\c0919"; +} +.sh-lightfa-arrow-trend-down:before { + content: "\c0918"; +} +.sh-lightfa-arrows-up-to-line:before { + content: "\c0917"; +} +.sh-lightfa-arrows-turn-to-dots:before { + content: "\c0916"; +} +.sh-lightfa-arrows-turn-right:before { + content: "\c0915"; +} +.sh-lightfa-arrows-to-line:before { + content: "\c0914"; +} +.sh-lightfa-arrows-to-eye:before { + content: "\c0913"; +} +.sh-lightfa-arrows-to-dotted-line:before { + content: "\c0912"; +} +.sh-lightfa-arrows-to-dot:before { + content: "\c0911"; +} +.sh-lightfa-arrows-to-circle:before { + content: "\c0910"; +} +.sh-lightfa-arrows-split-up-and-left:before { + content: "\c0909"; +} +.sh-lightfa-arrows-spin:before { + content: "\c0908"; +} +.sh-lightfa-arrows-retweet:before { + content: "\c0907"; +} +.sh-lightfa-arrows-repeat:before { + content: "\c0906"; +} +.sh-lightfa-arrows-left-right-to-line:before { + content: "\c0905"; +} +.sh-lightfa-arrows-from-line:before { + content: "\c0904"; +} +.sh-lightfa-arrows-from-dotted-line:before { + content: "\c0903"; +} +.sh-lightfa-arrows-down-to-line:before { + content: "\c0902"; +} +.sh-lightfa-arrows-cross:before { + content: "\c0901"; +} +.sh-lightfa-arrow-rotate:before { + content: "\c0900"; +} +.sh-lightfa-arrow-right-to-line:before { + content: "\c0899"; +} +.sh-lightfa-arrow-right-to-arc:before { + content: "\c0898"; +} +.sh-lightfa-arrow-right-long-to-line:before { + content: "\c0897"; +} +.sh-lightfa-arrow-right-from-line:before { + content: "\c0896"; +} +.sh-lightfa-arrow-right-from-arc:before { + content: "\c0895"; +} +.sh-lightfa-arrow-repeat-1:before { + content: "\c0894"; +} +.sh-lightfa-arrow-maximize:before { + content: "\c0893"; +} +.sh-lightfa-arrow-left-to-line:before { + content: "\c0892"; +} +.sh-lightfa-arrow-left-right:before { + content: "\c0891"; +} +.sh-lightfa-arrow-left-long-to-line:before { + content: "\c0890"; +} +.sh-lightfa-arrow-left-from-line:before { + content: "\c0889"; +} +.sh-lightfa-arrow-down-up-lock:before { + content: "\c0888"; +} +.sh-lightfa-arrow-down-up-across-line:before { + content: "\c0887"; +} +.sh-lightfa-arrow-down-triangle-square:before { + content: "\c0886"; +} +.sh-lightfa-arrow-down-to-square:before { + content: "\c0885"; +} +.sh-lightfa-arrow-down-to-line:before { + content: "\c0884"; +} +.sh-lightfa-arrow-down-to-dotted-line:before { + content: "\c0883"; +} +.sh-lightfa-arrow-down-to-bracket:before { + content: "\c0882"; +} +.sh-lightfa-arrow-down-to-arc:before { + content: "\c0881"; +} +.sh-lightfa-arrow-down-square-triangle:before { + content: "\c0880"; +} +.sh-lightfa-arrow-down-small-big:before { + content: "\c0879"; +} +.sh-lightfa-arrow-down-right:before { + content: "\c0878"; +} +.sh-lightfa-arrow-down-left:before { + content: "\c0877"; +} +.sh-lightfa-arrow-down-from-line:before { + content: "\c0876"; +} +.sh-lightfa-arrow-down-from-dotted-line:before { + content: "\c0875"; +} +.sh-lightfa-arrow-down-big-small:before { + content: "\c0874"; +} +.sh-lightfa-arrow-down-arrow-up:before { + content: "\c0873"; +} +.sh-lightfa-worm:before { + content: "\c0872"; +} +.sh-lightfa-whale:before { + content: "\c0871"; +} +.sh-lightfa-unicorn:before { + content: "\c0870"; +} +.sh-lightfa-turtle:before { + content: "\c0869"; +} +.sh-lightfa-teddy-bear:before { + content: "\c0868"; +} +.sh-lightfa-squirrel:before { + content: "\c0867"; +} +.sh-lightfa-squid:before { + content: "\c0866"; +} +.sh-lightfa-spider-black-widow:before { + content: "\c0865"; +} +.sh-lightfa-spider:before { + content: "\c0864"; +} +.sh-lightfa-snake:before { + content: "\c0863"; +} +.sh-lightfa-skull-cow:before { + content: "\c0862"; +} +.sh-lightfa-shrimp:before { + content: "\c0861"; +} +.sh-lightfa-shield-dog:before { + content: "\c0860"; +} +.sh-lightfa-shield-cat:before { + content: "\c0859"; +} +.sh-lightfa-sheep:before { + content: "\c0858"; +} +.sh-lightfa-ram:before { + content: "\c0857"; +} +.sh-lightfa-rabbit-running:before { + content: "\c0856"; +} +.sh-lightfa-rabbit:before { + content: "\c0855"; +} +.sh-lightfa-pig:before { + content: "\c0854"; +} +.sh-lightfa-pegasus:before { + content: "\c0853"; +} +.sh-lightfa-paw-simple:before { + content: "\c0852"; +} +.sh-lightfa-paw-claws:before { + content: "\c0851"; +} +.sh-lightfa-otter:before { + content: "\c0850"; +} +.sh-lightfa-narwhal:before { + content: "\c0849"; +} +.sh-lightfa-mouse-field:before { + content: "\c0848"; +} +.sh-lightfa-mosquito:before { + content: "\c0847"; +} +.sh-lightfa-monkey:before { + content: "\c0846"; +} +.sh-lightfa-locust:before { + content: "\c0845"; +} +.sh-lightfa-lobster:before { + content: "\c0844"; +} +.sh-lightfa-kiwi-bird:before { + content: "\c0843"; +} +.sh-lightfa-horse-saddle:before { + content: "\c0842"; +} +.sh-lightfa-horse-head:before { + content: "\c0841"; +} +.sh-lightfa-horse:before { + content: "\c0840"; +} +.sh-lightfa-hippo:before { + content: "\c0839"; +} +.sh-lightfa-frog:before { + content: "\c0838"; +} +.sh-lightfa-fish-fins:before { + content: "\c0837"; +} +.sh-lightfa-fish-bones:before { + content: "\c0836"; +} +.sh-lightfa-fish:before { + content: "\c0835"; +} +.sh-lightfa-feather-pointed:before { + content: "\c0834"; +} +.sh-lightfa-feather:before { + content: "\c0833"; +} +.sh-lightfa-elephant:before { + content: "\c0832"; +} +.sh-lightfa-duck:before { + content: "\c0831"; +} +.sh-lightfa-dragon:before { + content: "\c0830"; +} +.sh-lightfa-dove:before { + content: "\c0829"; +} +.sh-lightfa-dolphin:before { + content: "\c0828"; +} +.sh-lightfa-dog:before { + content: "\c0827"; +} +.sh-lightfa-deer-rudolph:before { + content: "\c0826"; +} +.sh-lightfa-deer:before { + content: "\c0825"; +} +.sh-lightfa-crow:before { + content: "\c0824"; +} +.sh-lightfa-crab:before { + content: "\c0823"; +} +.sh-lightfa-cow:before { + content: "\c0822"; +} +.sh-lightfa-cat-space:before { + content: "\c0821"; +} +.sh-lightfa-cat:before { + content: "\c0820"; +} +.sh-lightfa-bugs:before { + content: "\c0819"; +} +.sh-lightfa-bird:before { + content: "\c0818"; +} +.sh-lightfa-bee:before { + content: "\c0817"; +} +.sh-lightfa-bat:before { + content: "\c0816"; +} +.sh-lightfa-badger-honey:before { + content: "\c0815"; +} +.sh-lightfa-alicorn:before { + content: "\c0814"; +} +.sh-lightfa-square-z:before { + content: "\c0813"; +} +.sh-lightfa-square-y:before { + content: "\c0812"; +} +.sh-lightfa-square-x:before { + content: "\c0811"; +} +.sh-lightfa-square-w:before { + content: "\c0810"; +} +.sh-lightfa-square-v:before { + content: "\c0809"; +} +.sh-lightfa-square-u:before { + content: "\c0808"; +} +.sh-lightfa-square-t:before { + content: "\c0807"; +} +.sh-lightfa-square-s:before { + content: "\c0806"; +} +.sh-lightfa-square-r:before { + content: "\c0805"; +} +.sh-lightfa-square-q:before { + content: "\c0804"; +} +.sh-lightfa-square-p:before { + content: "\c0803"; +} +.sh-lightfa-square-o1:before { + content: "\c0802"; +} +.sh-lightfa-square-n:before { + content: "\c0801"; +} +.sh-lightfa-square-m:before { + content: "\c0800"; +} +.sh-lightfa-square-l:before { + content: "\c0799"; +} +.sh-lightfa-square-k:before { + content: "\c0798"; +} +.sh-lightfa-square-j:before { + content: "\c0797"; +} +.sh-lightfa-square-i:before { + content: "\c0796"; +} +.sh-lightfa-square-h:before { + content: "\c0795"; +} +.sh-lightfa-square-g:before { + content: "\c0794"; +} +.sh-lightfa-square-f:before { + content: "\c0793"; +} +.sh-lightfa-square-e:before { + content: "\c0792"; +} +.sh-lightfa-square-d:before { + content: "\c0791"; +} +.sh-lightfa-square-c:before { + content: "\c0790"; +} +.sh-lightfa-square-b:before { + content: "\c0789"; +} +.sh-lightfa-square-a:before { + content: "\c0788"; +} +.sh-lightfa-circle-z:before { + content: "\c0787"; +} +.sh-lightfa-circle-y:before { + content: "\c0786"; +} +.sh-lightfa-circle-x:before { + content: "\c0785"; +} +.sh-lightfa-circle-w:before { + content: "\c0784"; +} +.sh-lightfa-circle-v:before { + content: "\c0783"; +} +.sh-lightfa-circle-u:before { + content: "\c0782"; +} +.sh-lightfa-circle-t:before { + content: "\c0781"; +} +.sh-lightfa-circle-s:before { + content: "\c0780"; +} +.sh-lightfa-circle-r:before { + content: "\c0779"; +} +.sh-lightfa-circle-q:before { + content: "\c0778"; +} +.sh-lightfa-circle-p:before { + content: "\c0777"; +} +.sh-lightfa-circle-o1:before { + content: "\c0776"; +} +.sh-lightfa-circle-n:before { + content: "\c0775"; +} +.sh-lightfa-circle-m:before { + content: "\c0774"; +} +.sh-lightfa-circle-l:before { + content: "\c0773"; +} +.sh-lightfa-circle-k:before { + content: "\c0772"; +} +.sh-lightfa-circle-j:before { + content: "\c0771"; +} +.sh-lightfa-circle-i:before { + content: "\c0770"; +} +.sh-lightfa-circle-h:before { + content: "\c0769"; +} +.sh-lightfa-circle-g:before { + content: "\c0768"; +} +.sh-lightfa-circle-f:before { + content: "\c0767"; +} +.sh-lightfa-circle-e:before { + content: "\c0766"; +} +.sh-lightfa-circle-d:before { + content: "\c0765"; +} +.sh-lightfa-circle-c:before { + content: "\c0764"; +} +.sh-lightfa-circle-b:before { + content: "\c0763"; +} +.sh-lightfa-circle-a:before { + content: "\c0762"; +} +.sh-lightfa-z:before { + content: "\c0761"; +} +.sh-lightfa-y:before { + content: "\c0760"; +} +.sh-lightfa-x:before { + content: "\c0759"; +} +.sh-lightfa-w:before { + content: "\c0758"; +} +.sh-lightfa-v:before { + content: "\c0757"; +} +.sh-lightfa-u:before { + content: "\c0756"; +} +.sh-lightfa-t:before { + content: "\c0755"; +} +.sh-lightfa-s:before { + content: "\c0754"; +} +.sh-lightfa-r:before { + content: "\c0753"; +} +.sh-lightfa-q:before { + content: "\c0752"; +} +.sh-lightfa-p:before { + content: "\c0751"; +} +.sh-lightfa-o:before { + content: "\c0750"; +} +.sh-lightfa-n:before { + content: "\c0749"; +} +.sh-lightfa-m:before { + content: "\c0748"; +} +.sh-lightfa-l:before { + content: "\c0747"; +} +.sh-lightfa-k:before { + content: "\c0746"; +} +.sh-lightfa-j:before { + content: "\c0745"; +} +.sh-lightfa-i:before { + content: "\c0744"; +} +.sh-lightfa-h:before { + content: "\c0743"; +} +.sh-lightfa-g:before { + content: "\c0742"; +} +.sh-lightfa-f:before { + content: "\c0741"; +} +.sh-lightfa-e:before { + content: "\c0740"; +} +.sh-lightfa-d:before { + content: "\c0739"; +} +.sh-lightfa-c:before { + content: "\c0738"; +} +.sh-lightfa-b:before { + content: "\c0737"; +} +.sh-lightfa-a:before { + content: "\c0736"; +} +.sh-lightfa-wagon-covered:before { + content: "\c0735"; +} +.sh-lightfa-van-shuttle:before { + content: "\c0734"; +} +.sh-lightfa-truck-pickup:before { + content: "\c0733"; +} +.sh-lightfa-truck-monster:before { + content: "\c0732"; +} +.sh-lightfa-truck-field-un:before { + content: "\c0731"; +} +.sh-lightfa-truck-field:before { + content: "\c0730"; +} +.sh-lightfa-truck-bolt:before { + content: "\c0729"; +} +.sh-lightfa-trailer:before { + content: "\c0728"; +} +.sh-lightfa-tire-rugged:before { + content: "\c0727"; +} +.sh-lightfa-tire-pressure-warning:before { + content: "\c0726"; +} +.sh-lightfa-tire-flat:before { + content: "\c0725"; +} +.sh-lightfa-tire:before { + content: "\c0724"; +} +.sh-lightfa-tank-water:before { + content: "\c0723"; +} +.sh-lightfa-steering-wheel:before { + content: "\c0722"; +} +.sh-lightfa-spray-can-sparkles:before { + content: "\c0721"; +} +.sh-lightfa-rv:before { + content: "\c0720"; +} +.sh-lightfa-pump:before { + content: "\c0719"; +} +.sh-lightfa-oil-temperature:before { + content: "\c0718"; +} +.sh-lightfa-oil-can-drip:before { + content: "\c0717"; +} +.sh-lightfa-oil-can:before { + content: "\c0716"; +} +.sh-lightfa-moped:before { + content: "\c0715"; +} +.sh-lightfa-gauge-simple-min:before { + content: "\c0714"; +} +.sh-lightfa-gauge-simple-max:before { + content: "\c0713"; +} +.sh-lightfa-gauge-simple-low:before { + content: "\c0712"; +} +.sh-lightfa-gauge-simple-high:before { + content: "\c0711"; +} +.sh-lightfa-gauge-simple:before { + content: "\c0710"; +} +.sh-lightfa-gauge-min:before { + content: "\c0709"; +} +.sh-lightfa-gauge-max:before { + content: "\c0708"; +} +.sh-lightfa-gauge-low:before { + content: "\c0707"; +} +.sh-lightfa-gauge-high:before { + content: "\c0706"; +} +.sh-lightfa-gauge-circle-plus:before { + content: "\c0705"; +} +.sh-lightfa-gauge-circle-minus:before { + content: "\c0704"; +} +.sh-lightfa-gauge-circle-bolt:before { + content: "\c0703"; +} +.sh-lightfa-gauge:before { + content: "\c0702"; +} +.sh-lightfa-gas-pump-slash:before { + content: "\c0701"; +} +.sh-lightfa-gas-pump:before { + content: "\c0700"; +} +.sh-lightfa-garage-open:before { + content: "\c0699"; +} +.sh-lightfa-garage-car:before { + content: "\c0698"; +} +.sh-lightfa-garage:before { + content: "\c0697"; +} +.sh-lightfa-flux-capacitor:before { + content: "\c0696"; +} +.sh-lightfa-engine:before { + content: "\c0695"; +} +.sh-lightfa-charging-station:before { + content: "\c0694"; +} +.sh-lightfa-car-wrench:before { + content: "\c0693"; +} +.sh-lightfa-car-wash:before { + content: "\c0692"; +} +.sh-lightfa-car-tunnel:before { + content: "\c0691"; +} +.sh-lightfa-car-tilt:before { + content: "\c0690"; +} +.sh-lightfa-car-side-bolt:before { + content: "\c0689"; +} +.sh-lightfa-car-side:before { + content: "\c0688"; +} +.sh-lightfa-cars:before { + content: "\c0687"; +} +.sh-lightfa-car-rear:before { + content: "\c0686"; +} +.sh-lightfa-car-on:before { + content: "\c0685"; +} +.sh-lightfa-car-mirrors:before { + content: "\c0684"; +} +.sh-lightfa-car-garage:before { + content: "\c0683"; +} +.sh-lightfa-car-circle-bolt:before { + content: "\c0682"; +} +.sh-lightfa-car-bus:before { + content: "\c0681"; +} +.sh-lightfa-car-burst:before { + content: "\c0680"; +} +.sh-lightfa-car-bump:before { + content: "\c0679"; +} +.sh-lightfa-car-building:before { + content: "\c0678"; +} +.sh-lightfa-car-bolt:before { + content: "\c0677"; +} +.sh-lightfa-car-battery:before { + content: "\c0676"; +} +.sh-lightfa-caravan-simple:before { + content: "\c0675"; +} +.sh-lightfa-caravan:before { + content: "\c0674"; +} +.sh-lightfa-bus-simple:before { + content: "\c0673"; +} +.sh-lightfa-brake-warning:before { + content: "\c0672"; +} +.sh-lightfa-wind-warning:before { + content: "\c0671"; +} +.sh-lightfa-wifi-exclamation:before { + content: "\c0670"; +} +.sh-lightfa-star-exclamation:before { + content: "\c0669"; +} +.sh-lightfa-square-exclamation:before { + content: "\c0668"; +} +.sh-lightfa-skull-crossbones:before { + content: "\c0667"; +} +.sh-lightfa-shield-exclamation:before { + content: "\c0666"; +} +.sh-lightfa-sensor-triangle-exclamation:before { + content: "\c0665"; +} +.sh-lightfa-sensor-on:before { + content: "\c0664"; +} +.sh-lightfa-sensor-fire:before { + content: "\c0663"; +} +.sh-lightfa-sensor-cloud:before { + content: "\c0662"; +} +.sh-lightfa-sensor:before { + content: "\c0661"; +} +.sh-lightfa-seal-question:before { + content: "\c0660"; +} +.sh-lightfa-seal-exclamation:before { + content: "\c0659"; +} +.sh-lightfa-rotate-exclamation:before { + content: "\c0658"; +} +.sh-lightfa-radiation:before { + content: "\c0657"; +} +.sh-lightfa-party-horn:before { + content: "\c0656"; +} +.sh-lightfa-party-bell:before { + content: "\c0655"; +} +.sh-lightfa-octagon-exclamation:before { + content: "\c0654"; +} +.sh-lightfa-message-exclamation:before { + content: "\c0653"; +} +.sh-lightfa-location-exclamation:before { + content: "\c0652"; +} +.sh-lightfa-light-emergency-on:before { + content: "\c0651"; +} +.sh-lightfa-light-emergency:before { + content: "\c0650"; +} +.sh-lightfa-lightbulb-exclamation-on:before { + content: "\c0649"; +} +.sh-lightfa-lightbulb-exclamation:before { + content: "\c0648"; +} +.sh-lightfa-hexagon-exclamation:before { + content: "\c0647"; +} +.sh-lightfa-file-exclamation:before { + content: "\c0646"; +} +.sh-lightfa-engine-warning:before { + content: "\c0645"; +} +.sh-lightfa-diamond-exclamation:before { + content: "\c0644"; +} +.sh-lightfa-comment-exclamation:before { + content: "\c0643"; +} +.sh-lightfa-cloud-question:before { + content: "\c0642"; +} +.sh-lightfa-cloud-exclamation:before { + content: "\c0641"; +} +.sh-lightfa-circle-radiation:before { + content: "\c0640"; +} +.sh-lightfa-circle-quarters:before { + content: "\c0639"; +} +.sh-lightfa-circle-exclamation-check:before { + content: "\c0638"; +} +.sh-lightfa-calendar-exclamation:before { + content: "\c0637"; +} +.sh-lightfa-bell-school-slash:before { + content: "\c0636"; +} +.sh-lightfa-bells:before { + content: "\c0635"; +} +.sh-lightfa-bell-on:before { + content: "\c0634"; +} +.sh-lightfa-bell-exclamation:before { + content: "\c0633"; +} +.sh-lightfa-battery-exclamation:before { + content: "\c0632"; +} +.sh-lightfa-alarm-exclamation:before { + content: "\c0631"; +} +.sh-lightfa-alarm-clock:before { + content: "\c0630"; +} +.sh-lightfa-phone-volume:before { + content: "\c0629"; +} +.sh-lightfa-tty-answer:before { + content: "\c0628"; +} +.sh-lightfa-square-question:before { + content: "\c0627"; +} +.sh-lightfa-square-info:before { + content: "\c0626"; +} +.sh-lightfa-person-cane:before { + content: "\c0625"; +} +.sh-lightfa-message-captions:before { + content: "\c0624"; +} +.sh-lightfa-keyboard-brightness-low:before { + content: "\c0623"; +} +.sh-lightfa-keyboard-brightness:before { + content: "\c0622"; +} +.sh-lightfa-head-side-heart:before { + content: "\c0621"; +} +.sh-lightfa-handshake-angle:before { + content: "\c0620"; +} +.sh-lightfa-fingerprint:before { + content: "\c0619"; +} +.sh-lightfa-ear:before { + content: "\c0618"; +} +.sh-lightfa-dog-leashed:before { + content: "\c0617"; +} +.sh-lightfa-comment-captions:before { + content: "\c0616"; +} +.sh-lightfa-closed-captioning-slash:before { + content: "\c0615"; +} +.sh-lightfa-brightness-low:before { + content: "\c0614"; +} +.sh-lightfa-brightness:before { + content: "\c0613"; +} +.sh-lightfa-audio-description-slash:before { + content: "\c0612"; +} +.sh-lightfa-user-md:before { + content: "\c0611"; +} +.sh-lightfa-stethoscope:before { + content: "\c0610"; +} +.sh-lightfa-medkit:before { + content: "\c0609"; +} +.sh-lightfa-hospital-o:before { + content: "\c0608"; +} +.sh-lightfa-h-square:before { + content: "\c0607"; +} +.sh-lightfa-stop-circle-o:before { + content: "\c0606"; +} +.sh-lightfa-stop-circle:before { + content: "\c0605"; +} +.sh-lightfa-stop:before { + content: "\c0604"; +} +.sh-lightfa-step-forward:before { + content: "\c0603"; +} +.sh-lightfa-step-backward:before { + content: "\c0602"; +} +.sh-lightfa-play-circle-o:before { + content: "\c0601"; +} +.sh-lightfa-play-circle:before { + content: "\c0600"; +} +.sh-lightfa-play:before { + content: "\c0599"; +} +.sh-lightfa-pause-circle-o:before { + content: "\c0598"; +} +.sh-lightfa-pause-circle:before { + content: "\c0597"; +} +.sh-lightfa-pause:before { + content: "\c0596"; +} +.sh-lightfa-forward:before { + content: "\c0595"; +} +.sh-lightfa-fast-forward:before { + content: "\c0594"; +} +.sh-lightfa-fast-backward:before { + content: "\c0593"; +} +.sh-lightfa-eject:before { + content: "\c0592"; +} +.sh-lightfa-backward:before { + content: "\c0591"; +} +.sh-lightfa-long-arrow-up:before { + content: "\c0590"; +} +.sh-lightfa-long-arrow-left:before { + content: "\c0589"; +} +.sh-lightfa-long-arrow-down:before { + content: "\c0588"; +} +.sh-lightfa-chevron-up:before { + content: "\c0587"; +} +.sh-lightfa-chevron-circle-up:before { + content: "\c0586"; +} +.sh-lightfa-chevron-circle-right:before { + content: "\c0585"; +} +.sh-lightfa-chevron-circle-left:before { + content: "\c0584"; +} +.sh-lightfa-chevron-circle-down:before { + content: "\c0583"; +} +.sh-lightfa-caret-up:before { + content: "\c0582"; +} +.sh-lightfa-caret-left:before { + content: "\c0581"; +} +.sh-lightfa-arrow-down:before { + content: "\c0580"; +} +.sh-lightfa-arrow-circle-o-up:before { + content: "\c0579"; +} +.sh-lightfa-arrow-circle-o-right:before { + content: "\c0578"; +} +.sh-lightfa-arrow-circle-up:before { + content: "\c0577"; +} +.sh-lightfa-arrow-circle-right:before { + content: "\c0576"; +} +.sh-lightfa-arrow-circle-o-left:before { + content: "\c0575"; +} +.sh-lightfa-arrow-circle-o-down:before { + content: "\c0574"; +} +.sh-lightfa-arrow-circle-left:before { + content: "\c0573"; +} +.sh-lightfa-arrow-circle-down:before { + content: "\c0572"; +} +.sh-lightfa-angle-right:before { + content: "\c0571"; +} +.sh-lightfa-angle-left:before { + content: "\c0570"; +} +.sh-lightfa-angle-down:before { + content: "\c0569"; +} +.sh-lightfa-angle-double-up:before { + content: "\c0568"; +} +.sh-lightfa-angle-double-left:before { + content: "\c0567"; +} +.sh-lightfa-angle-double-down:before { + content: "\c0566"; +} +.sh-lightfa-text-width:before { + content: "\c0565"; +} +.sh-lightfa-text-height:before { + content: "\c0564"; +} +.sh-lightfa-superscript:before { + content: "\c0563"; +} +.sh-lightfa-subscript:before { + content: "\c056"; +} +.sh-lightfa-scissors:before { + content: "\c0561"; +} +.sh-lightfa-rotate-right:before { + content: "\c0560"; +} +.sh-lightfa-rotate-left:before { + content: "\c0559"; +} +.sh-lightfa-paste:before { + content: "\c0558"; +} +.sh-lightfa-paragraph:before { + content: "\c0557"; +} +.sh-lightfa-outdent:before { + content: "\c0556"; +} +.sh-lightfa-indent:before { + content: "\c0555"; +} +.sh-lightfa-header:before { + content: "\c0554"; +} +.sh-lightfa-floppy-o:before { + content: "\c0553"; +} +.sh-lightfa-dedent:before { + content: "\c0552"; +} +.sh-lightfa-cut:before { + content: "\c0551"; +} +.sh-lightfa-copy:before { + content: "\c0550"; +} +.sh-lightfa-columns:before { + content: "\c0549"; +} +.sh-lightfa-clipboard:before { + content: "\c0548"; +} +.sh-lightfa-chain-broken:before { + content: "\c0547"; +} +.sh-lightfa-align-right:before { + content: "\c0546"; +} +.sh-lightfa-align-left:before { + content: "\c0545"; +} +.sh-lightfa-align-justify:before { + content: "\c0544"; +} +.sh-lightfa-align-center:before { + content: "\c0543"; +} +.sh-lightfa-yen:before { + content: "\c0542"; +} +.sh-lightfa-won:before { + content: "\c0541"; +} +.sh-lightfa-viacoin:before { + content: "\c0540"; +} +.sh-lightfa-turkish-lira:before { + content: "\c0539"; +} +.sh-lightfa-try:before { + content: "\c0538"; +} +.sh-lightfa-sheqel:before { + content: "\c0537"; +} +.sh-lightfa-shekel:before { + content: "\c0536"; +} +.sh-lightfa-rupee:before { + content: "\c0535"; +} +.sh-lightfa-ruble:before { + content: "\c0534"; +} +.sh-lightfa-rub:before { + content: "\c0533"; +} +.sh-lightfa-rouble:before { + content: "\c0532"; +} +.sh-lightfa-rmb:before { + content: "\c0531"; +} +.sh-lightfa-krw:before { + content: "\c0530"; +} +.sh-lightfa-jpy:before { + content: "\c0529"; +} +.sh-lightfa-inr:before { + content: "\c0528"; +} +.sh-lightfa-ils:before { + content: "\c0527"; +} +.sh-lightfa-gg-circle:before { + content: "\c0526"; +} +.sh-lightfa-gg:before { + content: "\c0525"; +} +.sh-lightfa-gbp:before { + content: "\c0524"; +} +.sh-lightfa-euro:before { + content: "\c0523"; +} +.sh-lightfa-eur:before { + content: "\c0522"; +} +.sh-lightfa-dollar:before { + content: "\c0521"; +} +.sh-lightfa-cny:before { + content: "\c0520"; +} +.sh-lightfa-btc:before { + content: "\c0519"; +} +.sh-lightfa-bitcoin:before { + content: "\c0518"; +} +.sh-lightfa-file-text:before { + content: "\c0517"; +} +.sh-lightfa-file-o:before { + content: "\c0516"; +} +.sh-lightfa-file-excel-o:before { + content: "\c0515"; +} +.sh-lightfa-file:before { + content: "\c0514"; +} +.sh-lightfa-venus-mars:before { + content: "\c0513"; +} +.sh-lightfa-venus-double:before { + content: "\c0512"; +} +.sh-lightfa-venus:before { + content: "\c0511"; +} +.sh-lightfa-transgender-alt:before { + content: "\c0510"; +} +.sh-lightfa-transgender:before { + content: "\c0509"; +} +.sh-lightfa-neuter:before { + content: "\c0508"; +} +.sh-lightfa-mercury:before { + content: "\c0507"; +} +.sh-lightfa-mars-stroke-v:before { + content: "\c0506"; +} +.sh-lightfa-mars-stroke-h:before { + content: "\c0505"; +} +.sh-lightfa-mars-stroke:before { + content: "\c0504"; +} +.sh-lightfa-mars-double:before { + content: "\c0503"; +} +.sh-lightfa-mars:before { + content: "\c0502"; +} +.sh-lightfa-intersex:before { + content: "\c0501"; +} +.sh-lightfa-genderless:before { + content: "\c0500"; +} +.sh-lightfa-train:before { + content: "\c0499"; +} +.sh-lightfa-subway:before { + content: "\c0498"; +} +.sh-lightfa-ambulance:before { + content: "\c0497"; +} +.sh-lightfa-hand-o-up:before { + content: "\c0496"; +} +.sh-lightfa-hand-o-right:before { + content: "\c0495"; +} +.sh-lightfa-hand-o-left:before { + content: "\c0494"; +} +.sh-lightfa-hand-o-down:before { + content: "\c0493"; +} +.sh-lightfa-window-restore:before { + content: "\c0492"; +} +.sh-lightfa-window-minimize:before { + content: "\c0491"; +} +.sh-lightfa-window-maximize:before { + content: "\c0490"; +} +.sh-lightfa-window-close-o:before { + content: "\c0489"; +} +.sh-lightfa-window-close:before { + content: "\c0488"; +} +.sh-lightfa-wifi:before { + content: "\c0487"; +} +.sh-lightfa-wheelchair-alt:before { + content: "\c0486"; +} +.sh-lightfa-wheelchair:before { + content: "\c0485"; +} +.sh-lightfa-warning:before { + content: "\c0484"; +} +.sh-lightfa-volume-control-phone:before { + content: "\c0483"; +} +.sh-lightfa-vcard-o:before { + content: "\c0482"; +} +.sh-lightfa-vcard:before { + content: "\c0481"; +} +.sh-lightfa-user-times:before { + content: "\c0480"; +} +.sh-lightfa-user-secret:before { + content: "\c0479"; +} +.sh-lightfa-user-o:before { + content: "\c0478"; +} +.sh-lightfa-user-circle-o:before { + content: "\c0477"; +} +.sh-lightfa-user-circle:before { + content: "\c0476"; +} +.sh-lightfa-unsorted:before { + content: "\c0475"; +} +.sh-lightfa-unlock-alt:before { + content: "\c0474"; +} +.sh-lightfa-unlock:before { + content: "\c0473"; +} +.sh-lightfa-universal-access:before { + content: "\c0472"; +} +.sh-lightfa-umbrella:before { + content: "\c0471"; +} +.sh-lightfa-tv:before { + content: "\c0470"; +} +.sh-lightfa-tty:before { + content: "\c0469"; +} +.sh-lightfa-tree:before { + content: "\c0468"; +} +.sh-lightfa-trademark:before { + content: "\c0467"; +} +.sh-lightfa-toggle-up:before { + content: "\c0466"; +} +.sh-lightfa-toggle-right:before { + content: "\c0465"; +} +.sh-lightfa-toggle-left:before { + content: "\c0464"; +} +.sh-lightfa-toggle-down:before { + content: "\c0463"; +} +.sh-lightfa-tint:before { + content: "\c0462"; +} +.sh-lightfa-times-rectangle-o:before { + content: "\c0461"; +} +.sh-lightfa-times-rectangle:before { + content: "\c0460"; +} +.sh-lightfa-thumb-tack:before { + content: "\c0459"; +} +.sh-lightfa-thumbs-o-up:before { + content: "\c0458"; +} +.sh-lightfa-thumbs-o-down:before { + content: "\c0457"; +} +.sh-lightfa-thumbs-down:before { + content: "\c0456"; +} +.sh-lightfa-thermometer-three-quarters:before { + content: "\c0455"; +} +.sh-lightfa-thermometer-quarter:before { + content: "\c0454"; +} +.sh-lightfa-thermometer-half:before { + content: "\c0453"; +} +.sh-lightfa-thermometer-full:before { + content: "\c0452"; +} +.sh-lightfa-thermometer-empty:before { + content: "\c0451"; +} +.sh-lightfa-thermometer-4:before { + content: "\c0450"; +} +.sh-lightfa-thermometer-3:before { + content: "\c0449"; +} +.sh-lightfa-thermometer-2:before { + content: "\c0448"; +} +.sh-lightfa-thermometer-1:before { + content: "\c0447"; +} +.sh-lightfa-thermometer-0:before { + content: "\c0446"; +} +.sh-lightfa-thermometer:before { + content: "\c0445"; +} +.sh-lightfa-terminal:before { + content: "\c0444"; +} +.sh-lightfa-television:before { + content: "\c0443"; +} +.sh-lightfa-taxi:before { + content: "\c0442"; +} +.sh-lightfa-tags:before { + content: "\c0441"; +} +.sh-lightfa-tag:before { + content: "\c0440"; +} +.sh-lightfa-tablet:before { + content: "\c0439"; +} +.sh-lightfa-support:before { + content: "\c0438"; +} +.sh-lightfa-suitcase:before { + content: "\c0437"; +} +.sh-lightfa-street-view:before { + content: "\c0436"; +} +.sh-lightfa-sticky-note-o:before { + content: "\c0435"; +} +.sh-lightfa-sticky-note:before { + content: "\c0434"; +} +.sh-lightfa-star-half-o:before { + content: "\c0433"; +} +.sh-lightfa-star-half-full:before { + content: "\c0432"; +} +.sh-lightfa-star-half-empty:before { + content: "\c0431"; +} +.sh-lightfa-star-half:before { + content: "\c0430"; +} +.sh-lightfa-square:before { + content: "\c0429"; +} +.sh-lightfa-spoon:before { + content: "\c0428"; +} +.sh-lightfa-spinner:before { + content: "\c0427"; +} +.sh-lightfa-space-shuttle:before { + content: "\c0426"; +} +.sh-lightfa-sort-numeric-desc:before { + content: "\c0425"; +} +.sh-lightfa-sort-numeric-asc:before { + content: "\c0424"; +} +.sh-lightfa-sort-up:before { + content: "\c0423"; +} +.sh-lightfa-sort-down:before { + content: "\c0422"; +} +.sh-lightfa-sort-desc:before { + content: "\c0421"; +} +.sh-lightfa-sort-asc:before { + content: "\c0420"; +} +.sh-lightfa-sort-alpha-desc:before { + content: "\c0419"; +} +.sh-lightfa-sort-alpha-asc:before { + content: "\c0418"; +} +.sh-lightfa-soccer-ball-o:before { + content: "\c0417"; +} +.sh-lightfa-snowflake-o:before { + content: "\c0416"; +} +.sh-lightfa-sliders:before { + content: "\c0415"; +} +.sh-lightfa-signing:before { + content: "\c0414"; +} +.sh-lightfa-sign-language:before { + content: "\c0413"; +} +.sh-lightfa-shower:before { + content: "\c0412"; +} +.sh-lightfa-shopping-cart:before { + content: "\c0411"; +} +.sh-lightfa-shopping-bag:before { + content: "\c0410"; +} +.sh-lightfa-ship:before { + content: "\c0409"; +} +.sh-lightfa-shield:before { + content: "\c0408"; +} +.sh-lightfa-share-square-o:before { + content: "\c0407"; +} +.sh-lightfa-share-square:before { + content: "\c0406"; +} +.sh-lightfa-share-alt-square:before { + content: "\c0405"; +} +.sh-lightfa-share-alt:before { + content: "\c0404"; +} +.sh-lightfa-share:before { + content: "\c0403"; +} +.sh-lightfa-server:before { + content: "\c0402"; +} +.sh-lightfa-send-o:before { + content: "\c0401"; +} +.sh-lightfa-send:before { + content: "\c0400"; +} +.sh-lightfa-search-minus:before { + content: "\c0399"; +} +.sh-lightfa-s15:before { + content: "\c0398"; +} +.sh-lightfa-rss-square:before { + content: "\c0397"; +} +.sh-lightfa-rss:before { + content: "\c0396"; +} +.sh-lightfa-rocket:before { + content: "\c0395"; +} +.sh-lightfa-road:before { + content: "\c0394"; +} +.sh-lightfa-retweet:before { + content: "\c0393"; +} +.sh-lightfa-reply-all:before { + content: "\c0392"; +} +.sh-lightfa-reorder:before { + content: "\c0391"; +} +.sh-lightfa-remove:before { + content: "\c0390"; +} +.sh-lightfa-registered:before { + content: "\c0389"; +} +.sh-lightfa-recycle:before { + content: "\c0388"; +} +.sh-lightfa-quote-right:before { + content: "\c0387"; +} +.sh-lightfa-quote-left:before { + content: "\c0386"; +} +.sh-lightfa-question-circle-o:before { + content: "\c0385"; +} +.sh-lightfa-question-circle:before { + content: "\c0384"; +} +.sh-lightfa-question:before { + content: "\c0383"; +} +.sh-lightfa-qrcode:before { + content: "\c0382"; +} +.sh-lightfa-power-off:before { + content: "\c0381"; +} +.sh-lightfa-podcast:before { + content: "\c0380"; +} +.sh-lightfa-plus-square-o:before { + content: "\c0379"; +} +.sh-lightfa-plug:before { + content: "\c0378"; +} +.sh-lightfa-picture-o:before { + content: "\c0377"; +} +.sh-lightfa-photo:before { + content: "\c0376"; +} +.sh-lightfa-phone-square:before { + content: "\c0375"; +} +.sh-lightfa-percent:before { + content: "\c0374"; +} +.sh-lightfa-pencil-square:before { + content: "\c0373"; +} +.sh-lightfa-paw:before { + content: "\c0372"; +} +.sh-lightfa-object-ungroup:before { + content: "\c0371"; +} +.sh-lightfa-object-group:before { + content: "\c0370"; +} +.sh-lightfa-newspaper-o:before { + content: "\c0369"; +} +.sh-lightfa-navicon:before { + content: "\c0368"; +} +.sh-lightfa-music:before { + content: "\c0367"; +} +.sh-lightfa-motorcycle:before { + content: "\c0366"; +} +.sh-lightfa-mortar-board:before { + content: "\c0365"; +} +.sh-lightfa-moon-o:before { + content: "\c0364"; +} +.sh-lightfa-mobile-phone:before { + content: "\c0363"; +} +.sh-lightfa-minus-square-o:before { + content: "\c0362"; +} +.sh-lightfa-microchip:before { + content: "\c0361"; +} +.sh-lightfa-meh-o:before { + content: "\c0360"; +} +.sh-lightfa-map-signs:before { + content: "\c0359"; +} +.sh-lightfa-map-pin:before { + content: "\c0358"; +} +.sh-lightfa-map-o:before { + content: "\c0357"; +} +.sh-lightfa-map:before { + content: "\c0356"; +} +.sh-lightfa-male:before { + content: "\c0355"; +} +.sh-lightfa-mail-reply-all:before { + content: "\c0354"; +} +.sh-lightfa-mail-reply:before { + content: "\c0353"; +} +.sh-lightfa-mail-forward:before { + content: "\c0352"; +} +.sh-lightfa-magnet:before { + content: "\c0351"; +} +.sh-lightfa-magic:before { + content: "\c0350"; +} +.sh-lightfa-low-vision:before { + content: "\c0349"; +} +.sh-lightfa-lock:before { + content: "\c0348"; +} +.sh-lightfa-location-arrow:before { + content: "\c0347"; +} +.sh-lightfa-lightbulb-o:before { + content: "\c0346"; +} +.sh-lightfa-life-saver:before { + content: "\c0345"; +} +.sh-lightfa-life-ring:before { + content: "\c0344"; +} +.sh-lightfa-life-buoy:before { + content: "\c0343"; +} +.sh-lightfa-life-bouy:before { + content: "\c0342"; +} +.sh-lightfa-level-down:before { + content: "\c0341"; +} +.sh-lightfa-lemon-o:before { + content: "\c0340"; +} +.sh-lightfa-legal:before { + content: "\c0339"; +} +.sh-lightfa-leaf:before { + content: "\c0338"; +} +.sh-lightfa-laptop:before { + content: "\c0337"; +} +.sh-lightfa-language:before { + content: "\c0336"; +} +.sh-lightfa-keyboard-o:before { + content: "\c0335"; +} +.sh-lightfa-key:before { + content: "\c0334"; +} +.sh-lightfa-institution:before { + content: "\c0333"; +} +.sh-lightfa-info:before { + content: "\c0332"; +} +.sh-lightfa-industry:before { + content: "\c0331"; +} +.sh-lightfa-image:before { + content: "\c0330"; +} +.sh-lightfa-id-card:before { + content: "\c0329"; +} +.sh-lightfa-id-badge:before { + content: "\c0328"; +} +.sh-lightfa-i-cursor:before { + content: "\c0327"; +} +.sh-lightfa-hourglass-start:before { + content: "\c0326"; +} +.sh-lightfa-hourglass-o:before { + content: "\c0325"; +} +.sh-lightfa-hourglass-end:before { + content: "\c0324"; +} +.sh-lightfa-hourglass-3:before { + content: "\c0323"; +} +.sh-lightfa-hourglass-2:before { + content: "\c0322"; +} +.sh-lightfa-hourglass-1:before { + content: "\c0321"; +} +.sh-lightfa-hourglass:before { + content: "\c0320"; +} +.sh-lightfa-hotel:before { + content: "\c0319"; +} +.sh-lightfa-home:before { + content: "\c0318"; +} +.sh-lightfa-heart-o:before { + content: "\c0317"; +} +.sh-lightfa-heartbeat:before { + content: "\c0316"; +} +.sh-lightfa-hdd-o:before { + content: "\c0315"; +} +.sh-lightfa-hard-of-hearing:before { + content: "\c0314"; +} +.sh-lightfa-hand-stop-o:before { + content: "\c0313"; +} +.sh-lightfa-hand-spock-o:before { + content: "\c0312"; +} +.sh-lightfa-handshake-o:before { + content: "\c0311"; +} +.sh-lightfa-hand-scissors-o:before { + content: "\c0310"; +} +.sh-lightfa-hand-rock-o:before { + content: "\c0309"; +} +.sh-lightfa-hand-pointer-o:before { + content: "\c0308"; +} +.sh-lightfa-hand-peace-o:before { + content: "\c0307"; +} +.sh-lightfa-hand-paper-o:before { + content: "\c0306"; +} +.sh-lightfa-hand-lizard-o:before { + content: "\c0305"; +} +.sh-lightfa-hand-grab-o:before { + content: "\c0304"; +} +.sh-lightfa-group:before { + content: "\c0303"; +} +.sh-lightfa-graduation-cap:before { + content: "\c0302"; +} +.sh-lightfa-glass:before { + content: "\c0301"; +} +.sh-lightfa-gears:before { + content: "\c0300"; +} +.sh-lightfa-gear:before { + content: "\c0299"; +} +.sh-lightfa-gavel:before { + content: "\c0298"; +} +.sh-lightfa-gamepad:before { + content: "\c0297"; +} +.sh-lightfa-futbol-o:before { + content: "\c0296"; +} +.sh-lightfa-frown-o:before { + content: "\c0295"; +} +.sh-lightfa-folder-open-o:before { + content: "\c0294"; +} +.sh-lightfa-folder-open:before { + content: "\c0293"; +} +.sh-lightfa-folder-o:before { + content: "\c0292"; +} +.sh-lightfa-flash:before { + content: "\c0291"; +} +.sh-lightfa-flag-o:before { + content: "\c0290"; +} +.sh-lightfa-flag-checkered:before { + content: "\c0289"; +} +.sh-lightfa-flag:before { + content: "\c0288"; +} +.sh-lightfa-fire-extinguisher:before { + content: "\c0287"; +} +.sh-lightfa-fire:before { + content: "\c0286"; +} +.sh-lightfa-film:before { + content: "\c0285"; +} +.sh-lightfa-file-zip-o:before { + content: "\c0284"; +} +.sh-lightfa-file-word-o:before { + content: "\c0283"; +} +.sh-lightfa-file-video-o:before { + content: "\c0282"; +} +.sh-lightfa-file-sound-o:before { + content: "\c0281"; +} +.sh-lightfa-file-powerpoint-o:before { + content: "\c0280"; +} +.sh-lightfa-file-picture-o:before { + content: "\c0279"; +} +.sh-lightfa-file-photo-o:before { + content: "\c0278"; +} +.sh-lightfa-file-pdf-o:before { + content: "\c0277"; +} +.sh-lightfa-file-movie-o:before { + content: "\c0276"; +} +.sh-lightfa-file-image-o:before { + content: "\c0275"; +} +.sh-lightfa-file-code-o:before { + content: "\c0274"; +} +.sh-lightfa-file-audio-o:before { + content: "\c0273"; +} +.sh-lightfa-file-archive-o:before { + content: "\c0272"; +} +.sh-lightfa-fighter-jet:before { + content: "\c0271"; +} +.sh-lightfa-female:before { + content: "\c0270"; +} +.sh-lightfa-feed:before { + content: "\c0269"; +} +.sh-lightfa-fax:before { + content: "\c0268"; +} +.sh-lightfa-eye-slash:before { + content: "\c0267"; +} +.sh-lightfa-eyedropper:before { + content: "\c0266"; +} +.sh-lightfa-external-link-square:before { + content: "\c0265"; +} +.sh-lightfa-exclamation-circle:before { + content: "\c0264"; +} +.sh-lightfa-exclamation:before { + content: "\c0263"; +} +.sh-lightfa-envelope-square:before { + content: "\c0262"; +} +.sh-lightfa-envelope-open-o:before { + content: "\c0261"; +} +.sh-lightfa-envelope-open:before { + content: "\c0260"; +} +.sh-lightfa-envelope-o:before { + content: "\c0259"; +} +.sh-lightfa-drivers-license-o:before { + content: "\c0258"; +} +.sh-lightfa-drivers-license:before { + content: "\c0257"; +} +.sh-lightfa-dot-circle-o:before { + content: "\c0256"; +} +.sh-lightfa-diamond:before { + content: "\c0255"; +} +.sh-lightfa-deafness:before { + content: "\c0254"; +} +.sh-lightfa-deaf:before { + content: "\c0253"; +} +.sh-lightfa-dashboard:before { + content: "\c0252"; +} +.sh-lightfa-cube:before { + content: "\c0251"; +} +.sh-lightfa-crosshairs:before { + content: "\c0250"; +} +.sh-lightfa-crop:before { + content: "\c0249"; +} +.sh-lightfa-credit-card-alt:before { + content: "\c0248"; +} +.sh-lightfa-copyright:before { + content: "\c0247"; +} +.sh-lightfa-compass:before { + content: "\c0246"; +} +.sh-lightfa-comments-o:before { + content: "\c0245"; +} +.sh-lightfa-comment-o:before { + content: "\c0244"; +} +.sh-lightfa-commenting-o:before { + content: "\c0243"; +} +.sh-lightfa-commenting:before { + content: "\c0242"; +} +.sh-lightfa-comment:before { + content: "\c0241"; +} +.sh-lightfa-coffee:before { + content: "\c0240"; +} +.sh-lightfa-code-fork:before { + content: "\c0239"; +} +.sh-lightfa-cloud-upload:before { + content: "\c0238"; +} +.sh-lightfa-cloud-download:before { + content: "\c0237"; +} +.sh-lightfa-cloud:before { + content: "\c0236"; +} +.sh-lightfa-close:before { + content: "\c0235"; +} +.sh-lightfa-clone:before { + content: "\c0234"; +} +.sh-lightfa-circle-thin:before { + content: "\c0233"; +} +.sh-lightfa-circle-o-notch:before { + content: "\c0232"; +} +.sh-lightfa-child:before { + content: "\c0231"; +} +.sh-lightfa-check-square-o:before { + content: "\c0230"; +} +.sh-lightfa-check-circle-o:before { + content: "\c0229"; +} +.sh-lightfa-certificate:before { + content: "\c0228"; +} +.sh-lightfa-cc:before { + content: "\c0227"; +} +.sh-lightfa-cart-plus:before { + content: "\c0226"; +} +.sh-lightfa-cart-arrow-down:before { + content: "\c0225"; +} +.sh-lightfa-caret-square-o-up:before { + content: "\c0224"; +} +.sh-lightfa-caret-square-o-right:before { + content: "\c0223"; +} +.sh-lightfa-caret-square-o-left:before { + content: "\c0222"; +} +.sh-lightfa-caret-square-o-down:before { + content: "\c0221"; +} +.sh-lightfa-camera-retro:before { + content: "\c0220"; +} +.sh-lightfa-camera:before { + content: "\c0219"; +} +.sh-lightfa-calendar-times-o:before { + content: "\c0218"; +} +.sh-lightfa-calendar-minus-o:before { + content: "\c0217"; +} +.sh-lightfa-calculator:before { + content: "\c0216"; +} +.sh-lightfa-cab:before { + content: "\c0215"; +} +.sh-lightfa-bus:before { + content: "\c0214"; +} +.sh-lightfa-bullhorn:before { + content: "\c0213"; +} +.sh-lightfa-briefcase:before { + content: "\c0212"; +} +.sh-lightfa-braille:before { + content: "\c0211"; +} +.sh-lightfa-bomb:before { + content: "\c0210"; +} +.sh-lightfa-bolt:before { + content: "\c0209"; +} +.sh-lightfa-bluetooth-b:before { + content: "\c0208"; +} +.sh-lightfa-bluetooth:before { + content: "\c0207"; +} +.sh-lightfa-blind:before { + content: "\c0206"; +} +.sh-lightfa-birthday-cake:before { + content: "\c0205"; +} +.sh-lightfa-binoculars:before { + content: "\c0204"; +} +.sh-lightfa-bicycle:before { + content: "\c0203"; +} +.sh-lightfa-bell-slash-o:before { + content: "\c0202"; +} +.sh-lightfa-bell-o:before { + content: "\c0201"; +} +.sh-lightfa-bell:before { + content: "\c0200"; +} +.sh-lightfa-beer:before { + content: "\c0199"; +} +.sh-lightfa-bed:before { + content: "\c0198"; +} +.sh-lightfa-battery-three-quarters:before { + content: "\c0197"; +} +.sh-lightfa-battery-quarter:before { + content: "\c0196"; +} +.sh-lightfa-battery-half:before { + content: "\c0195"; +} +.sh-lightfa-battery-full:before { + content: "\c0194"; +} +.sh-lightfa-battery-empty:before { + content: "\c0193"; +} +.sh-lightfa-battery-4:before { + content: "\c0192"; +} +.sh-lightfa-battery-3:before { + content: "\c0191"; +} +.sh-lightfa-battery-2:before { + content: "\c0190"; +} +.sh-lightfa-battery-1:before { + content: "\c0189"; +} +.sh-lightfa-battery-0:before { + content: "\c0188"; +} +.sh-lightfa-battery:before { + content: "\c0187"; +} +.sh-lightfa-bath:before { + content: "\c0185"; +} +.sh-lightfa-bathtub:before { + content: "\c0186"; +} +.sh-lightfa-barcode:before { + content: "\c0184"; +} +.sh-lightfa-bar-chart-o:before { + content: "\c0183"; +} +.sh-lightfa-bank:before { + content: "\c0182"; +} +.sh-lightfa-ban:before { + content: "\c0181"; +} +.sh-lightfa-balance-scale:before { + content: "\c0180"; +} +.sh-lightfa-automobile:before { + content: "\c0179"; +} +.sh-lightfa-audio-description:before { + content: "\c0178"; +} +.sh-lightfa-at:before { + content: "\c0177"; +} +.sh-lightfa-asterisk:before { + content: "\c0176"; +} +.sh-lightfa-assistive-listening-systems:before { + content: "\c0175"; +} +.sh-lightfa-asl-interpreting:before { + content: "\c0174"; +} +.sh-lightfa-arrows-h:before { + content: "\c0173"; +} +.sh-lightfa-archive:before { + content: "\c0172"; +} +.sh-lightfa-anchor:before { + content: "\c0171"; +} +.sh-lightfa-american-sign-language-interpreting:before { + content: "\c0170"; +} +.sh-lightfa-address-card:before { + content: "\c0168"; +} +.sh-lightfa-address-card-o:before { + content: "\c0169"; +} +.sh-lightfa-address-book:before { + content: "\c0166"; +} +.sh-lightfa-address-book-o:before { + content: "\c0167"; +} +.sh-lightfa-compress:before { + content: "\c0165"; +} +.sh-lightfa-eye:before { + content: "\c0164"; +} +.sh-lightfa-angle-double-right:before { + content: "\c0163"; +} +.sh-lightfa-caret-right:before { + content: "\c0162"; +} +.sh-lightfa-angle-up:before { + content: "\c0161"; +} +.sh-lightfa-minus:before { + content: "\c0160"; +} +.sh-lightfa-eraser:before { + content: "\c0159"; +} +.sh-lightfa-unlink:before { + content: "\c0158"; +} +.sh-lightfa-chain:before { + content: "\c0157"; +} +.sh-lightfa-link:before { + content: "\c0156"; +} +.sh-lightfa-list-ol:before { + content: "\c0155"; +} +.sh-lightfa-paint-brush:before { + content: "\c0154"; +} +.sh-lightfa-font:before { + content: "\c0153"; +} +.sh-lightfa-strikethrough:before { + content: "\c0152"; +} +.sh-lightfa-underline:before { + content: "\c0151"; +} +.sh-lightfa-italic:before { + content: "\c0150"; +} +.sh-lightfa-bold:before { + content: "\c0149"; +} +.sh-lightfa-heart:before { + content: "\c0148"; +} +.sh-lightfa-times-circle-o:before { + content: "\c0147"; +} +.sh-lightfa-square-o:before { + content: "\c0146"; +} +.sh-lightfa-check-square:before { + content: "\c0145"; +} +.sh-lightfa-volume-down:before { + content: "\c0144"; +} +.sh-lightfa-volume-up:before { + content: "\c0143"; +} +.sh-lightfa-volume-off:before { + content: "\c0142"; +} +.sh-lightfa-microphone:before { + content: "\c0141"; +} +.sh-lightfa-arrows-alt:before { + content: "\c0140"; +} +.sh-lightfa-desktop:before { + content: "\c0139"; +} +.sh-lightfa-headphones:before { + content: "\c0138"; +} +.sh-lightfa-microphone-slash:before { + content: "\c0137"; +} +.sh-lightsh-icon-tasks1:before { + content: "\c0136"; +} +.sh-lightsh-icon-sun:before { + content: "\c0135"; +} +.sh-lightsh-icon-moon:before { + content: "\c0134"; +} +.sh-lightsh-icon-language-selector:before { + content: "\c0133"; +} +.sh-lightsh-icon-expand1:before { + content: "\c0132"; +} +.sh-lightsh-icon-compress1:before { + content: "\c0131"; +} +.sh-lightsh-icon-calculator1:before { + content: "\c0130"; +} +.sh-lightfa-bookmark-o:before { + content: "\c0129"; +} +.sh-lightfa-bookmark:before { + content: "\c0128"; +} +.sh-lightfa-wrench:before { + content: "\c0127"; +} +.sh-lightfa-video-camera:before { + content: "\c0126"; +} +.sh-lightfa-users:before { + content: "\c0125"; +} +.sh-lightfa-user-plus:before { + content: "\c0124"; +} +.sh-lightfa-user:before { + content: "\c0123"; +} +.sh-lightfa-usd:before { + content: "\c0122"; +} +.sh-lightfa-upload:before { + content: "\c0121"; +} +.sh-lightfa-university:before { + content: "\c0120"; +} +.sh-lightfa-undo:before { + content: "\c0119"; +} +.sh-lightfa-truck:before { + content: "\c0118"; +} +.sh-lightfa-trophy:before { + content: "\c0117"; +} +.sh-lightfa-trash:before { + content: "\c0115"; +} +.sh-lightfa-trash-o:before { + content: "\c0116"; +} +.sh-lightfa-toggle-on:before { + content: "\c0114"; +} +.sh-lightfa-toggle-off:before { + content: "\c0113"; +} +.sh-lightfa-times-circle:before { + content: "\c0112"; +} +.sh-lightfa-times:before { + content: "\c0111"; +} +.sh-lightfa-ticket:before { + content: "\c0110"; +} +.sh-lightfa-thumbs-up:before { + content: "\c0109"; +} +.sh-lightfa-list:before { + content: "\c0061"; +} +.sh-lightfa-th-large:before { + content: "\c0107"; +} +.sh-lightfa-th:before { + content: "\c0106"; +} +.sh-lightfa-tasks:before { + content: "\c0105"; +} +.sh-lightfa-tachometer:before { + content: "\c0104"; +} +.sh-lightfa-table:before { + content: "\c0103"; +} +.sh-lightfa-sun-o:before { + content: "\c0102"; +} +.sh-lightfa-star-o:before { + content: "\c0100"; +} +.sh-lightfa-star:before { + content: "\c0101"; +} +.sh-lightfa-sort-amount-desc:before { + content: "\c0099"; +} +.sh-lightfa-sort-amount-asc:before { + content: "\c0098"; +} +.sh-lightfa-sort:before { + content: "\c0097"; +} +.sh-lightfa-smile-o:before { + content: "\c0096"; +} +.sh-lightfa-sitemap:before { + content: "\c0095"; +} +.sh-lightfa-sign-out:before { + content: "\c0094"; +} +.sh-lightfa-sign-in:before { + content: "\c0093"; +} +.sh-lightfa-signal:before { + content: "\c0092"; +} +.sh-lightfa-shopping-basket:before { + content: "\c0091"; +} +.sh-lightfa-search-plus:before { + content: "\c0090"; +} +.sh-lightfa-search:before { + content: "\c0089"; +} +.sh-lightfa-save:before { + content: "\c0088"; +} +.sh-lightfa-reply:before { + content: "\c0087"; +} +.sh-lightfa-repeat:before { + content: "\c0086"; +} +.sh-lightfa-refresh:before { + content: "\c0085"; +} +.sh-lightfa-random:before { + content: "\c0084"; +} +.sh-lightfa-puzzle-piece:before { + content: "\c0083"; +} +.sh-lightfa-print:before { + content: "\c0082"; +} +.sh-lightfa-plus-square:before { + content: "\c0081"; +} +.sh-lightfa-plus-circle:before { + content: "\c0080"; +} +.sh-lightfa-plus:before { + content: "\c0079"; +} +.sh-lightfa-plane:before { + content: "\c0078"; +} +.sh-lightfa-pie-chart:before { + content: "\c0077"; +} +.sh-lightfa-phone:before { + content: "\c0076"; +} +.sh-lightfa-pencil-square-o:before { + content: "\c0075"; +} +.sh-lightfa-pencil:before { + content: "\c0074"; +} +.sh-lightfa-paper-plane-o:before { + content: "\c0073"; +} +.sh-lightfa-paper-plane:before { + content: "\c0072"; +} +.sh-lightfa-paperclip:before { + content: "\c0071"; +} +.sh-lightfa-mouse-pointer:before { + content: "\c0070"; +} +.sh-lightfa-money:before { + content: "\c0069"; +} +.sh-lightfa-mobile:before { + content: "\c0068"; +} +.sh-lightfa-minus-square:before { + content: "\c0067"; +} +.sh-lightfa-minus-circle:before { + content: "\c0066"; +} +.sh-lightfa-map-marker:before { + content: "\c0065"; +} +.sh-lightfa-long-arrow-right:before { + content: "\c0064"; +} +.sh-lightfa-list-ul:before { + content: "\c0063"; +} +.sh-lightfa-list-alt:before { + content: "\c0062"; +} +.sh-lightfa-th-list:before { + content: "\c0108"; +} +.sh-lightfa-line-chart:before { + content: "\c0060"; +} +.sh-lightfa-level-up:before { + content: "\c0059"; +} +.sh-lightfa-info-circle:before { + content: "\c0058"; +} +.sh-lightfa-inbox:before { + content: "\c0057"; +} +.sh-lightfa-id-card-o:before { + content: "\c0056"; +} +.sh-lightfa-hourglass-half:before { + content: "\c0055"; +} +.sh-lightfa-history:before { + content: "\c0054"; +} +.sh-lightfa-hashtag:before { + content: "\c0053"; +} +.sh-lightfa-globe:before { + content: "\c0052"; +} +.sh-lightfa-gift:before { + content: "\c0051"; +} +.sh-lightfa-folder:before { + content: "\c0050"; +} +.sh-lightfa-flask:before { + content: "\c0049"; +} +.sh-lightfa-filter:before { + content: "\c0048"; +} +.sh-lightfa-file-text-o:before { + content: "\c0047"; +} +.sh-lightfa-files-o:before { + content: "\c0046"; +} +.sh-lightfa-external-link:before { + content: "\c0045"; +} +.sh-lightfa-expand:before { + content: "\c0044"; +} +.sh-lightfa-exclamation-triangle:before { + content: "\c0043"; +} +.sh-lightfa-exchange:before { + content: "\c0042"; +} +.sh-lightfa-envelope:before { + content: "\c0041"; +} +.sh-lightfa-ellipsis-v:before { + content: "\c0040"; +} +.sh-lightfa-ellipsis-h:before { + content: "\c0039"; +} +.sh-lightfa-edit:before { + content: "\c0038"; +} +.sh-lightfa-download:before { + content: "\c0037"; +} +.sh-lightfa-database:before { + content: "\c0036"; +} +.sh-lightfa-cutlery:before { + content: "\c0035"; +} +.sh-lightfa-cubes:before { + content: "\c0034"; +} +.sh-lightfa-credit-card:before { + content: "\c0033"; +} +.sh-lightfa-comments:before { + content: "\c0032"; +} +.sh-lightfa-cogs:before { + content: "\c0031"; +} +.sh-lightfa-cog:before { + content: "\c0030"; +} +.sh-lightfa-code:before { + content: "\c0029"; +} +.sh-lightfa-clock-o:before { + content: "\c0028"; +} +.sh-lightfa-circle-o:before { + content: "\c0027"; +} +.sh-lightfa-circle:before { + content: "\c0026"; +} +.sh-lightfa-chevron-left:before { + content: "\c0025"; +} +.sh-lightfa-chevron-right:before { + content: "\c0024"; +} +.sh-lightfa-chevron-down:before { + content: "\c0023"; +} +.sh-lightfa-check-circle:before { + content: "\c0022"; +} +.sh-lightfa-check:before { + content: "\c0021"; +} +.sh-lightfa-caret-down:before { + content: "\c0020"; +} +.sh-lightfa-car:before { + content: "\c0019"; +} +.sh-lightfa-calendar-plus-o:before { + content: "\c0018"; +} +.sh-lightfa-calendar-o:before { + content: "\c0017"; +} +.sh-lightfa-calendar-check-o:before { + content: "\c0016"; +} +.sh-lightfa-calendar:before { + content: "\c0015"; +} +.sh-lightfa-bullseye:before { + content: "\c0014"; +} +.sh-lightfa-building:before { + content: "\c0012"; +} +.sh-lightfa-building-o:before { + content: "\c0013"; +} +.sh-lightfa-bug:before { + content: "\c0011"; +} +.sh-lightfa-book:before { + content: "\c0010"; +} +.sh-lightfa-bell-slash:before { + content: "\c0009"; +} +.sh-lightfa-bars:before { + content: "\c0008"; +} +.sh-lightfa-bar-chart:before { + content: "\c0007"; +} +.sh-lightfa-arrow-up:before { + content: "\c0006"; +} +.sh-lightfa-arrows-v:before { + content: "\c0005"; +} +.sh-lightfa-arrows:before { + content: "\c0004"; +} +.sh-lightfa-arrow-left:before { + content: "\c0003"; +} +.sh-lightfa-arrow-right:before { + content: "\c0002"; +} +.sh-lightfa-area-chart:before { + content: "\c0001"; +} +.sh-lightfa-adjust:before { + content: "\c0000"; +} diff --git a/custom_addons/backend_base/static/src/scss/notification.scss b/custom_addons/backend_base/static/src/scss/notification.scss new file mode 100644 index 000000000..c8b800fd7 --- /dev/null +++ b/custom_addons/backend_base/static/src/scss/notification.scss @@ -0,0 +1,33 @@ +//.o_main_navbar .o_menu_systray .o_notification_systray_item .o_notification_counter.badge{background: $primary_hover;font-size: 10px !important;margin-top: -0.8rem;margin-right: 0px;margin-left: -0.6rem;color: white;vertical-align: super;} +.o_menu_systray .o_notification_systray_item a.sh_view_all_btn .sh_view_all_notification{color: #fff;} +.o_menu_systray .o_notification_systray_item .view_all_btn_right a.sh_view_all_btn, +.o_menu_systray .o_notification_systray_item .rd_all_btn_left a.sh_view_read_all_btn{padding: 6px 10px;background: darken($o-brand-primary, 10%);text-align: right;cursor: pointer;text-decoration:none;color: #fff;display: block;} +.o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info{padding: 10px;} +.o_menu_systray .o_notification_systray_item .o_notification_systray_dropdown.dropdown-menu {flex: 0 1 auto;width: 350px;min-height: 50px;max-height: 562px;z-index: 1100; left: auto; right:0;} +.o_menu_systray .o_notification_systray_item .o_mail_preview:hover{background: #ededed;} +.o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info.sh_unread .o_preview_title{color: darken($o-brand-primary, 10%);} +.o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info.sh_unread{background: #ededed;} +.o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info p.para_text{margin-bottom: 0px;} +.o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info h6{margin-bottom: 0px;} +.o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info p.para_text{width: 100%;max-height: 20px;color: #9d9d9d;max-width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;vertical-align: top;} +.o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info .d-flex{display: flex;justify-content: space-between;align-items: center;width: 100%;} +.o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info b {width: 75%;max-height: 20px;max-width: 75%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;} +.o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info .o_preview_name{width: 100%;} +.o_menu_systray .o_notification_systray_item .js_bell_notification{display: flex;align-items: center;width: auto;height: var(--o-navbar-height, 40px);user-select: none;background: transparent;font-size: 1.08333333rem;color: rgba(255, 255, 255, 0.9); margin-right: 10px;} + + + +@media only screen and (max-width: 992px) and (min-width: 768px){ + .o_menu_systray .o_notification_systray_item{position: unset;} +} +@media only screen and (max-width: 767.98px){ + .o_menu_systray .o_notification_systray_item .o_mail_preview .o_preview_info{margin-left: 0px;} + .o_menu_systray .o_notification_systray_item .o_mail_preview{padding: 0px;} + .o_menu_systray .o_notification_systray_item .o_notification_systray_dropdown.dropdown-menu{margin-top: 0px;} + .o_menu_systray .o_notification_systray_item .o_notification_systray_dropdown.dropdown-menu{box-shadow: none;-webkit-box-orient: vertical;-webkit-box-direction: normal;flex-direction: column;height: calc(100vh - 46px);max-height: calc(100vh - 46px);position: fixed;width: 100vw;z-index: 500;top: 52px;transform: none;} +} +.o_notification_systray_item .dropdown-item-text.text-center.o_no_activity{padding: 0.45rem 1.5rem;} + +.o_menu_systray .o_notification_systray_item .tile_header{display: flex;background: darken($o-brand-primary, 10%);justify-content: space-between;} +// 24-2-23 // +.o_menu_systray .o_notification_systray_item .js_bell_notification .o_notification_counter{position: relative;transform: translate(-5px, -5px);margin-right: -10px;background: #222;border: 1px solid #222;} \ No newline at end of file diff --git a/custom_addons/backend_base/static/src/scss/regular_icon/style.css b/custom_addons/backend_base/static/src/scss/regular_icon/style.css new file mode 100644 index 000000000..d52d8c94a --- /dev/null +++ b/custom_addons/backend_base/static/src/scss/regular_icon/style.css @@ -0,0 +1,10123 @@ +@font-face { + font-family: 'icomoon'; + src: url('/backend_base/static/src/icon/regular_icon/fonts/icomoon.eot?ptl3ga'); + src: url('/backend_base/static/src/icon/regular_icon/fonts/icomoon.eot?ptl3ga#iefix') format('embedded-opentype'), + url('/backend_base/static/src/icon/regular_icon/fonts/icomoon.woff2?ptl3ga') format('woff2'), + url('/backend_base/static/src/icon/regular_icon/fonts/icomoon.ttf?ptl3ga') format('truetype'), + url('/backend_base/static/src/icon/regular_icon/fonts/icomoon.woff?ptl3ga') format('woff'), + url('/backend_base/static/src/icon/regular_icon/fonts/icomoon.svg?ptl3ga#icomoon') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="sh-regular"], [class*=" sh-regular"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'icomoon' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.sh-regularfa-notes:before { + content: "\e3364"; +} +.sh-regularfa-note:before { + content: "\e3363"; +} +.sh-regularfa-input-text:before { + content: "\e3362"; +} +.sh-regularfa-input-pipe:before { + content: "\e3361"; +} +.sh-regularfa-input-numeric:before { + content: "\e3360"; +} +.sh-regularfa-circle-book-open:before { + content: "\e3359"; +} +.sh-regularfa-circle-bookmark:before { + content: "\e3358"; +} +.sh-regularfa-bookmark-slash:before { + content: "\e3357"; +} +.sh-regularfa-book-circle-arrow-up:before { + content: "\e3356"; +} +.sh-regularfa-book-circle-arrow-right:before { + content: "\e3355"; +} +.sh-regularfa-book-arrow-up:before { + content: "\e3354"; +} +.sh-regularfa-book-arrow-right:before { + content: "\e3353"; +} +.sh-regularfa-blog:before { + content: "\e3352"; +} +.sh-regularfa-windsock:before { + content: "\e3351"; +} +.sh-regularfa-umbrella-simple:before { + content: "\e3350"; +} +.sh-regularfa-temperature-sun:before { + content: "\e3349"; +} +.sh-regularfa-temperature-snow:before { + content: "\e3348"; +} +.sh-regularfa-temperature-list:before { + content: "\e3347"; +} +.sh-regularfa-sun-haze:before { + content: "\e3346"; +} +.sh-regularfa-sun-dust:before { + content: "\e3345"; +} +.sh-regularfa-sun-cloud:before { + content: "\e3344"; +} +.sh-regularfa-snowflakes:before { + content: "\e3343"; +} +.sh-regularfa-snowflake-droplets:before { + content: "\e3342"; +} +.sh-regularfa-snow-blowing:before { + content: "\e3341"; +} +.sh-regularfa-smoke:before { + content: "\e3340"; +} +.sh-regularfa-smog:before { + content: "\e3339"; +} +.sh-regularfa-rainbow:before { + content: "\e3338"; +} +.sh-regularfa-poo-storm:before { + content: "\e3337"; +} +.sh-regularfa-moon-cloud:before { + content: "\e3336"; +} +.sh-regularfa-droplet-percent:before { + content: "\e3335"; +} +.sh-regularfa-droplet-degree:before { + content: "\e3334"; +} +.sh-regularfa-cloud-sun-rain:before { + content: "\e3333"; +} +.sh-regularfa-clouds-sun:before { + content: "\e3332"; +} +.sh-regularfa-cloud-snow:before { + content: "\e3331"; +} +.sh-regularfa-clouds-moon:before { + content: "\e3330"; +} +.sh-regularfa-cloud-sleet:before { + content: "\e3329"; +} +.sh-regularfa-cloud-showers:before { + content: "\e3328"; +} +.sh-regularfa-clouds:before { + content: "\e3327"; +} +.sh-regularfa-cloud-rainbow:before { + content: "\e3326"; +} +.sh-regularfa-cloud-rain:before { + content: "\e3325"; +} +.sh-regularfa-cloud-moon-rain:before { + content: "\e3324"; +} +.sh-regularfa-cloud-hail-mixed:before { + content: "\e3323"; +} +.sh-regularfa-cloud-hail:before { + content: "\e3322"; +} +.sh-regularfa-cloud-fog:before { + content: "\e3321"; +} +.sh-regularfa-cloud-drizzle:before { + content: "\e3320"; +} +.sh-regularfa-cloud-bolt-sun:before { + content: "\e3319"; +} +.sh-regularfa-cloud-bolt-moon:before { + content: "\e3318"; +} +.sh-regularfa-user-vneck-hair-long:before { + content: "\e3317"; +} +.sh-regularfa-user-vneck-hair:before { + content: "\e3316"; +} +.sh-regularfa-user-vneck:before { + content: "\e3315"; +} +.sh-regularfa-user-tag:before { + content: "\e3314"; +} +.sh-regularfa-users-slash:before { + content: "\e3313"; +} +.sh-regularfa-user-slash:before { + content: "\e3312"; +} +.sh-regularfa-user-shakespeare:before { + content: "\e3311"; +} +.sh-regularfa-users-gear:before { + content: "\e3310"; +} +.sh-regularfa-user-pen:before { + content: "\e3309"; +} +.sh-regularfa-user-ninja:before { + content: "\e3308"; +} +.sh-regularfa-user-minus:before { + content: "\e3307"; +} +.sh-regularfa-user-magnifying-glass:before { + content: "\e3306"; +} +.sh-regularfa-user-large-slash:before { + content: "\e3305"; +} +.sh-regularfa-user-large:before { + content: "\e3304"; +} +.sh-regularfa-user-headset:before { + content: "\e3303"; +} +.sh-regularfa-user-hair-long:before { + content: "\e3302"; +} +.sh-regularfa-user-hair:before { + content: "\e3301"; +} +.sh-regularfa-user-gear:before { + content: "\e3300"; +} +.sh-regularfa-user-cowboy:before { + content: "\e3299"; +} +.sh-regularfa-user-clock:before { + content: "\e3298"; +} +.sh-regularfa-user-check:before { + content: "\e3297"; +} +.sh-regularfa-square-user:before { + content: "\e3296"; +} +.sh-regularfa-person-simple:before { + content: "\e3295"; +} +.sh-regularfa-person-fairy:before { + content: "\e3294"; +} +.sh-regularfa-person-dress-simple:before { + content: "\e3293"; +} +.sh-regularfa-person-dress-fairy:before { + content: "\e3292"; +} +.sh-regularfa-people-simple:before { + content: "\e3291"; +} +.sh-regularfa-people-pants-simple:before { + content: "\e3290"; +} +.sh-regularfa-people-pants:before { + content: "\e3289"; +} +.sh-regularfa-people-dress-simple:before { + content: "\e3288"; +} +.sh-regularfa-people-dress:before { + content: "\e3287"; +} +.sh-regularfa-people:before { + content: "\e3286"; +} +.sh-regularfa-head-side-goggles:before { + content: "\e3285"; +} +.sh-regularfa-head-side-gear:before { + content: "\e3284"; +} +.sh-regularfa-head-side:before { + content: "\e3283"; +} +.sh-regularfa-child-dress:before { + content: "\e3282"; +} +.sh-regularfa-water-ladder:before { + content: "\e3281"; +} +.sh-regularfa-user-pilot-tie:before { + content: "\e3280"; +} +.sh-regularfa-user-pilot:before { + content: "\e3279"; +} +.sh-regularfa-umbrella-beach:before { + content: "\e3278"; +} +.sh-regularfa-toilet-paper-check:before { + content: "\e3277"; +} +.sh-regularfa-tickets-airline:before { + content: "\e3276"; +} +.sh-regularfa-ticket-airline:before { + content: "\e3275"; +} +.sh-regularfa-suitcase-rolling:before { + content: "\e3274"; +} +.sh-regularfa-plane-departure:before { + content: "\e3273"; +} +.sh-regularfa-plane-arrival:before { + content: "\e3272"; +} +.sh-regularfa-phone-rotary:before { + content: "\e3271"; +} +.sh-regularfa-person-seat-reclined:before { + content: "\e3270"; +} +.sh-regularfa-person-seat:before { + content: "\e3269"; +} +.sh-regularfa-island-tropical:before { + content: "\e3268"; +} +.sh-regularfa-hot-tub-person:before { + content: "\e3267"; +} +.sh-regularfa-hat-beach:before { + content: "\e3266"; +} +.sh-regularfa-escalator:before { + content: "\e3265"; +} +.sh-regularfa-elevator:before { + content: "\e3264"; +} +.sh-regularfa-earth-oceania:before { + content: "\e3263"; +} +.sh-regularfa-earth-europe:before { + content: "\e3262"; +} +.sh-regularfa-earth-asia:before { + content: "\e3261"; +} +.sh-regularfa-earth-americas:before { + content: "\e3260"; +} +.sh-regularfa-earth-africa:before { + content: "\e3259"; +} +.sh-regularfa-cart-flatbed-suitcase:before { + content: "\e3258"; +} +.sh-regularfa-bell-concierge:before { + content: "\e3257"; +} +.sh-regularfa-truck-tow:before { + content: "\e3256"; +} +.sh-regularfa-tricycle-adult:before { + content: "\e3255"; +} +.sh-regularfa-tractor:before { + content: "\e3254"; +} +.sh-regularfa-tower-control:before { + content: "\e3253"; +} +.sh-regularfa-taxi-bus:before { + content: "\e3252"; +} +.sh-regularfa-seat-airline:before { + content: "\e3251"; +} +.sh-regularfa-plane-tail:before { + content: "\e3250"; +} +.sh-regularfa-plane-slash:before { + content: "\e3249"; +} +.sh-regularfa-plane-prop:before { + content: "\e3248"; +} +.sh-regularfa-person-snowmobiling:before { + content: "\e3247"; +} +.sh-regularfa-person-ski-lift:before { + content: "\e3246"; +} +.sh-regularfa-cable-car:before { + content: "\e3245"; +} +.sh-regularfa-wifi-slash:before { + content: "\e3244"; +} +.sh-regularfa-toggle-large-on:before { + content: "\e3243"; +} +.sh-regularfa-toggle-large-off:before { + content: "\e3242"; +} +.sh-regularfa-slider:before { + content: "\e3241"; +} +.sh-regularfa-plane-up-slash:before { + content: "\e3240"; +} +.sh-regularfa-microphone1:before { + content: "\e3239"; +} +.sh-regularfa-location-crosshairs:before { + content: "\e3238"; +} +.sh-regularfa-watch-smart:before { + content: "\e3237"; +} +.sh-regularfa-watch:before { + content: "\e3236"; +} +.sh-regularfa-trash-clock:before { + content: "\e3235"; +} +.sh-regularfa-timer:before { + content: "\e3234"; +} +.sh-regularfa-stopwatch:before { + content: "\e3233"; +} +.sh-regularfa-snooze:before { + content: "\e3232"; +} +.sh-regularfa-reply-clock:before { + content: "\e3231"; +} +.sh-regularfa-hourglass-clock:before { + content: "\e3230"; +} +.sh-regularfa-clock-two-thirty:before { + content: "\e3229"; +} +.sh-regularfa-clock-two:before { + content: "\e3228"; +} +.sh-regularfa-clock-twelve-thirty:before { + content: "\e3227"; +} +.sh-regularfa-clock-twelve:before { + content: "\e3226"; +} +.sh-regularfa-clock-three-thirty:before { + content: "\e3225"; +} +.sh-regularfa-clock-three:before { + content: "\e3224"; +} +.sh-regularfa-clock-ten-thirty:before { + content: "\e3223"; +} +.sh-regularfa-clock-ten:before { + content: "\e3222"; +} +.sh-regularfa-clock-six-thirty:before { + content: "\e3221"; +} +.sh-regularfa-clock-six:before { + content: "\e3220"; +} +.sh-regularfa-clock-seven-thirty:before { + content: "\e3219"; +} +.sh-regularfa-clock-seven:before { + content: "\e3218"; +} +.sh-regularfa-clock-one-thirty:before { + content: "\e3217"; +} +.sh-regularfa-clock-one:before { + content: "\e3216"; +} +.sh-regularfa-clock-nine-thirty:before { + content: "\e3215"; +} +.sh-regularfa-clock-nine:before { + content: "\e3214"; +} +.sh-regularfa-clock-four-thirty:before { + content: "\e3213"; +} +.sh-regularfa-clock-five:before { + content: "\e3212"; +} +.sh-regularfa-clock-eleven-thirty:before { + content: "\e3211"; +} +.sh-regularfa-clock-eleven:before { + content: "\e3210"; +} +.sh-regularfa-clock-eight-thirty:before { + content: "\e3209"; +} +.sh-regularfa-clock-eight:before { + content: "\e3208"; +} +.sh-regularfa-circle-calendar:before { + content: "\e3207"; +} +.sh-regularfa-calendar-week:before { + content: "\e3206"; +} +.sh-regularfa-calendar-users:before { + content: "\e3205"; +} +.sh-regularfa-calendars:before { + content: "\e3204"; +} +.sh-regularfa-calendar-range:before { + content: "\e3203"; +} +.sh-regularfa-calendar-pen:before { + content: "\e3202"; +} +.sh-regularfa-calendar-lines-pen:before { + content: "\e3201"; +} +.sh-regularfa-calendar-lines:before { + content: "\e3200"; +} +.sh-regularfa-calendar-image:before { + content: "\e3199"; +} +.sh-regularfa-calendar-day:before { + content: "\e3198"; +} +.sh-regularfa-calendar-clock:before { + content: "\e3197"; +} +.sh-regularfa-calendar-circle-user:before { + content: "\e3196"; +} +.sh-regularfa-calendar-circle-plus:before { + content: "\e3195"; +} +.sh-regularfa-calendar-circle-minus:before { + content: "\e3194"; +} +.sh-regularfa-calendar-circle-exclamation:before { + content: "\e3193"; +} +.sh-regularfa-calendar-arrow-up:before { + content: "\e3192"; +} +.sh-regularfa-calendar-arrow-down:before { + content: "\e3191"; +} +.sh-regularfa-bell-plus:before { + content: "\e3190"; +} +.sh-regularfa-alarm-snooze:before { + content: "\e3189"; +} +.sh-regularfa-alarm-plus:before { + content: "\e3188"; +} +.sh-regularfa-text-slash:before { + content: "\e3187"; +} +.sh-regularfa-text-size:before { + content: "\e3186"; +} +.sh-regularfa-text:before { + content: "\e3185"; +} +.sh-regularfa-table-list:before { + content: "\e3184"; +} +.sh-regularfa-table-cells-large:before { + content: "\e3183"; +} +.sh-regularfa-table-cells:before { + content: "\e3182"; +} +.sh-regularfa-square-list:before { + content: "\e3181"; +} +.sh-regularfa-square-a-lock:before { + content: "\e3180"; +} +.sh-regularfa-spell-check:before { + content: "\e3179"; +} +.sh-regularfa-paragraph-left:before { + content: "\e3178"; +} +.sh-regularfa-overline:before { + content: "\e3177"; +} +.sh-regularfa-lock-hashtag:before { + content: "\e3176"; +} +.sh-regularfa-lock-a:before { + content: "\e3175"; +} +.sh-regularfa-line-height:before { + content: "\e3174"; +} +.sh-regularfa-line-columns:before { + content: "\e3173"; +} +.sh-regularfa-kerning:before { + content: "\e3172"; +} +.sh-regularfa-hashtag-lock:before { + content: "\e3171"; +} +.sh-regularfa-h6:before { + content: "\e3170"; +} +.sh-regularfa-h5:before { + content: "\e3169"; +} +.sh-regularfa-h4:before { + content: "\e3168"; +} +.sh-regularfa-h3:before { + content: "\e3167"; +} +.sh-regularfa-h2:before { + content: "\e3166"; +} +.sh-regularfa-h1:before { + content: "\e3165"; +} +.sh-regularfa-font-case:before { + content: "\e3164"; +} +.sh-regularfa-filter-slash:before { + content: "\e3163"; +} +.sh-regularfa-filters:before { + content: "\e3162"; +} +.sh-regularfa-filter-list:before { + content: "\e3161"; +} +.sh-regularfa-filter-circle-xmark:before { + content: "\e3160"; +} +.sh-regularfa-file-dashed-line:before { + content: "\e3159"; +} +.sh-regularfa-border-top-left:before { + content: "\e3158"; +} +.sh-regularfa-border-top:before { + content: "\e3157"; +} +.sh-regularfa-border-right:before { + content: "\e3156"; +} +.sh-regularfa-border-outer:before { + content: "\e3155"; +} +.sh-regularfa-border-none:before { + content: "\e3154"; +} +.sh-regularfa-border-left:before { + content: "\e3153"; +} +.sh-regularfa-border-inner:before { + content: "\e3152"; +} +.sh-regularfa-border-center-v:before { + content: "\e3151"; +} +.sh-regularfa-border-center-h:before { + content: "\e3150"; +} +.sh-regularfa-border-bottom-right:before { + content: "\e3149"; +} +.sh-regularfa-border-bottom:before { + content: "\e3148"; +} +.sh-regularfa-border-all:before { + content: "\e3147"; +} +.sh-regularfa-block-quote:before { + content: "\e3146"; +} +.sh-regularfa-align-slash:before { + content: "\e3145"; +} +.sh-regularfa-weight-hanging:before { + content: "\e3144"; +} +.sh-regularfa-watch-apple:before { + content: "\e3143"; +} +.sh-regularfa-volleyball:before { + content: "\e3142"; +} +.sh-regularfa-tennis-ball:before { + content: "\e3141"; +} +.sh-regularfa-table-tennis-paddle-ball:before { + content: "\e3140"; +} +.sh-regularfa-stopwatch-20:before { + content: "\e3139"; +} +.sh-regularfa-sportsball:before { + content: "\e3138"; +} +.sh-regularfa-spa:before { + content: "\e3137"; +} +.sh-regularfa-ski-boot-ski:before { + content: "\e3136"; +} +.sh-regularfa-shuttlecock:before { + content: "\e3135"; +} +.sh-regularfa-rugby-ball:before { + content: "\e3134"; +} +.sh-regularfa-racquet:before { + content: "\e3133"; +} +.sh-regularfa-pickleball:before { + content: "\e3132"; +} +.sh-regularfa-person-snowboarding:before { + content: "\e3131"; +} +.sh-regularfa-person-ski-jumping:before { + content: "\e3130"; +} +.sh-regularfa-person-skiing-nordic:before { + content: "\e3129"; +} +.sh-regularfa-person-skiing:before { + content: "\e3128"; +} +.sh-regularfa-person-skating:before { + content: "\e3127"; +} +.sh-regularfa-person-running-fast:before { + content: "\e3126"; +} +.sh-regularfa-person-running:before { + content: "\e3125"; +} +.sh-regularfa-medal:before { + content: "\e3124"; +} +.sh-regularfa-mask-snorkel:before { + content: "\e3123"; +} +.sh-regularfa-luchador-mask:before { + content: "\e3122"; +} +.sh-regularfa-lacrosse-stick-ball:before { + content: "\e3121"; +} +.sh-regularfa-lacrosse-stick:before { + content: "\e3120"; +} +.sh-regularfa-hockey-sticks:before { + content: "\e3119"; +} +.sh-regularfa-hockey-stick-puck:before { + content: "\e3118"; +} +.sh-regularfa-hockey-puck:before { + content: "\e3117"; +} +.sh-regularfa-golf-flag-hole:before { + content: "\e3116"; +} +.sh-regularfa-golf-club:before { + content: "\e3115"; +} +.sh-regularfa-golf-ball-tee:before { + content: "\e3114"; +} +.sh-regularfa-goal-net:before { + content: "\e3113"; +} +.sh-regularfa-football-helmet:before { + content: "\e3112"; +} +.sh-regularfa-football:before { + content: "\e3111"; +} +.sh-regularfa-flying-disc:before { + content: "\e3110"; +} +.sh-regularfa-flag-pennant:before { + content: "\e3109"; +} +.sh-regularfa-field-hockey-stick-ball:before { + content: "\e3108"; +} +.sh-regularfa-dumbbell:before { + content: "\e3107"; +} +.sh-regularfa-curling-stone:before { + content: "\e3106"; +} +.sh-regularfa-cricket-bat-ball:before { + content: "\e3105"; +} +.sh-regularfa-broom-ball:before { + content: "\e3104"; +} +.sh-regularfa-boxing-glove:before { + content: "\e3103"; +} +.sh-regularfa-bowling-pins:before { + content: "\e3102"; +} +.sh-regularfa-bowling-ball-pin:before { + content: "\e3101"; +} +.sh-regularfa-bowling-ball:before { + content: "\e3100"; +} +.sh-regularfa-basketball:before { + content: "\e3099"; +} +.sh-regularfa-baseball:before { + content: "\e3098"; +} +.sh-regularfa-badminton:before { + content: "\e3097"; +} +.sh-regularfa-award-simple:before { + content: "\e3096"; +} +.sh-regularfa-spinner-third:before { + content: "\e3095"; +} +.sh-regularfa-slash:before { + content: "\e3094"; +} +.sh-regularfa-loader:before { + content: "\e3093"; +} +.sh-regularfa-bullseye-arrow:before { + content: "\e3092"; +} +.sh-regularfa-user-group-simple:before { + content: "\e3091"; +} +.sh-regularfa-user-group:before { + content: "\e3090"; +} +.sh-regularfa-share-from-square:before { + content: "\e3089"; +} +.sh-regularfa-share1:before { + content: "\e3088"; +} +.sh-regularfa-store-slash:before { + content: "\e3087"; +} +.sh-regularfa-shop-slash:before { + content: "\e3086"; +} +.sh-regularfa-nfc-trash:before { + content: "\e3085"; +} +.sh-regularfa-nfc-symbol:before { + content: "\e3084"; +} +.sh-regularfa-nfc-slash:before { + content: "\e3083"; +} +.sh-regularfa-nfc-pen:before { + content: "\e3082"; +} +.sh-regularfa-nfc-magnifying-glass:before { + content: "\e3081"; +} +.sh-regularfa-nfc-lock:before { + content: "\e3080"; +} +.sh-regularfa-nfc:before { + content: "\e3079"; +} +.sh-regularfa-hexagon-vertical-nft-slanted:before { + content: "\e3078"; +} +.sh-regularfa-hexagon-vertical-nft:before { + content: "\e3077"; +} +.sh-regularfa-gem:before { + content: "\e3076"; +} +.sh-regularfa-cart-xmark:before { + content: "\e3075"; +} +.sh-regularfa-cart-shopping-fast:before { + content: "\e3074"; +} +.sh-regularfa-cart-minus:before { + content: "\e3073"; +} +.sh-regularfa-cart-circle-xmark:before { + content: "\e3072"; +} +.sh-regularfa-cart-circle-plus:before { + content: "\e3071"; +} +.sh-regularfa-cart-circle-exclamation:before { + content: "\e3070"; +} +.sh-regularfa-cart-circle-check:before { + content: "\e3069"; +} +.sh-regularfa-cart-circle-arrow-up:before { + content: "\e3068"; +} +.sh-regularfa-cart-circle-arrow-down:before { + content: "\e3067"; +} +.sh-regularfa-cart-arrow-up:before { + content: "\e3066"; +} +.sh-regularfa-cart-arrow-down1:before { + content: "\e3065"; +} +.sh-regularfa-basket-shopping-simple:before { + content: "\e3064"; +} +.sh-regularfa-triangle:before { + content: "\e3063"; +} +.sh-regularfa-star-sharp-half-stroke:before { + content: "\e3062"; +} +.sh-regularfa-square-star:before { + content: "\e3061"; +} +.sh-regularfa-square-small:before { + content: "\e3060"; +} +.sh-regularfa-square-quarters:before { + content: "\e3059"; +} +.sh-regularfa-square-bolt:before { + content: "\e3058"; +} +.sh-regularfa-seal:before { + content: "\e3057"; +} +.sh-regularfa-rhombus:before { + content: "\e3056"; +} +.sh-regularfa-rectangle-wide:before { + content: "\e3055"; +} +.sh-regularfa-rectangle-vertical:before { + content: "\e3054"; +} +.sh-regularfa-rectangle:before { + content: "\e3053"; +} +.sh-regularfa-octagon:before { + content: "\e3052"; +} +.sh-regularfa-hexagon:before { + content: "\e3051"; +} +.sh-regularfa-heart-half-stroke:before { + content: "\e3050"; +} +.sh-regularfa-heart-half:before { + content: "\e3049"; +} +.sh-regularfa-heart-crack:before { + content: "\e3048"; +} +.sh-regularfa-diamond-half-stroke:before { + content: "\e3047"; +} +.sh-regularfa-diamond-half:before { + content: "\e3046"; +} +.sh-regularfa-crown:before { + content: "\e3045"; +} +.sh-regularfa-circle-three-quarters:before { + content: "\e3044"; +} +.sh-regularfa-circle-star:before { + content: "\e3043"; +} +.sh-regularfa-circles-overlap:before { + content: "\e3042"; +} +.sh-regularfa-circle-small:before { + content: "\e3041"; +} +.sh-regularfa-circle-quarter:before { + content: "\e3040"; +} +.sh-regularfa-circle-half:before { + content: "\e3039"; +} +.sh-regularfa-circle-bolt:before { + content: "\e3038"; +} +.sh-regularfa-user-unlock:before { + content: "\e3037"; +} +.sh-regularfa-user-shield:before { + content: "\e3036"; +} +.sh-regularfa-user-police-tie:before { + content: "\e3035"; +} +.sh-regularfa-user-police:before { + content: "\e3034"; +} +.sh-regularfa-user-lock:before { + content: "\e3033"; +} +.sh-regularfa-unlock-keyhole:before { + content: "\e3032"; +} +.sh-regularfa-siren-on:before { + content: "\e3031"; +} +.sh-regularfa-siren:before { + content: "\e3030"; +} +.sh-regularfa-shield-xmark:before { + content: "\e3029"; +} +.sh-regularfa-shield-slash:before { + content: "\e3028"; +} +.sh-regularfa-shield-plus:before { + content: "\e3027"; +} +.sh-regularfa-shield-minus:before { + content: "\e3026"; +} +.sh-regularfa-shield-keyhole:before { + content: "\e3025"; +} +.sh-regularfa-shield-check:before { + content: "\e3024"; +} +.sh-regularfa-passport:before { + content: "\e3023"; +} +.sh-regularfa-panel-fire:before { + content: "\e3022"; +} +.sh-regularfa-panel-ews:before { + content: "\e3021"; +} +.sh-regularfa-lock-keyhole-open:before { + content: "\e3020"; +} +.sh-regularfa-lock1:before { + content: "\e3019"; +} +.sh-regularfa-gun-slash:before { + content: "\e3018"; +} +.sh-regularfa-gun:before { + content: "\e3017"; +} +.sh-regularfa-file-signature:before { + content: "\e3016"; +} +.sh-regularfa-file-contract:before { + content: "\e3015"; +} +.sh-regularfa-block-brick-fire:before { + content: "\e3014"; +} +.sh-regularfa-badge-sheriff:before { + content: "\e3013"; +} +.sh-regularfa-user-visor:before { + content: "\e3012"; +} +.sh-regularfa-user-robot-xmarks:before { + content: "\e3011"; +} +.sh-regularfa-user-robot:before { + content: "\e3010"; +} +.sh-regularfa-user-hair-buns:before { + content: "\e3009"; +} +.sh-regularfa-user-bounty-hunter:before { + content: "\e3008"; +} +.sh-regularfa-transporter-empty:before { + content: "\e3007"; +} +.sh-regularfa-transporter-7:before { + content: "\e3006"; +} +.sh-regularfa-transporter-6:before { + content: "\e3005"; +} +.sh-regularfa-transporter-5:before { + content: "\e3004"; +} +.sh-regularfa-transporter-4:before { + content: "\e3003"; +} +.sh-regularfa-transporter-3:before { + content: "\e3002"; +} +.sh-regularfa-transporter-2:before { + content: "\e3001"; +} +.sh-regularfa-transporter-1:before { + content: "\e3000"; +} +.sh-regularfa-transporter:before { + content: "\e2999"; +} +.sh-regularfa-swords-laser:before { + content: "\e2998"; +} +.sh-regularfa-sword-laser-alt:before { + content: "\e2997"; +} +.sh-regularfa-sword-laser:before { + content: "\e2996"; +} +.sh-regularfa-starship-freighter:before { + content: "\e2995"; +} +.sh-regularfa-starship:before { + content: "\e2994"; +} +.sh-regularfa-starfighter-twin-ion-engine-advanced:before { + content: "\e2993"; +} +.sh-regularfa-starfighter-twin-ion-engine:before { + content: "\e2992"; +} +.sh-regularfa-starfighter:before { + content: "\e2991"; +} +.sh-regularfa-space-station-moon-construction:before { + content: "\e2990"; +} +.sh-regularfa-space-station-moon:before { + content: "\e2989"; +} +.sh-regularfa-rocket-launch:before { + content: "\e2988"; +} +.sh-regularfa-robot-astromech:before { + content: "\e2987"; +} +.sh-regularfa-raygun:before { + content: "\e2986"; +} +.sh-regularfa-police-box:before { + content: "\e2985"; +} +.sh-regularfa-person-to-portal:before { + content: "\e2984"; +} +.sh-regularfa-person-from-portal:before { + content: "\e2983"; +} +.sh-regularfa-cloud-binary:before { + content: "\e2982"; +} +.sh-regularfa-temperature-low:before { + content: "\e2981"; +} +.sh-regularfa-temperature-high:before { + content: "\e2980"; +} +.sh-regularfa-kite:before { + content: "\e2979"; +} +.sh-regularfa-key-skeleton:before { + content: "\e2978"; +} +.sh-regularfa-yin-yang:before { + content: "\e2977"; +} +.sh-regularfa-star-of-david:before { + content: "\e2976"; +} +.sh-regularfa-star-and-crescent:before { + content: "\e2975"; +} +.sh-regularfa-spaghetti-monster-flying:before { + content: "\e2974"; +} +.sh-regularfa-scroll-torah:before { + content: "\e2973"; +} +.sh-regularfa-person-praying:before { + content: "\e2972"; +} +.sh-regularfa-peace:before { + content: "\e2971"; +} +.sh-regularfa-om:before { + content: "\e2970"; +} +.sh-regularfa-khanda:before { + content: "\e2969"; +} +.sh-regularfa-jedi:before { + content: "\e2968"; +} +.sh-regularfa-hanukiah:before { + content: "\e2967"; +} +.sh-regularfa-hamsa:before { + content: "\e2966"; +} +.sh-regularfa-dharmachakra:before { + content: "\e2965"; +} +.sh-regularfa-cross:before { + content: "\e2964"; +} +.sh-regularfa-book-tanakh:before { + content: "\e2963"; +} +.sh-regularfa-book-quran:before { + content: "\e2962"; +} +.sh-regularfa-book-journal-whills:before { + content: "\e2961"; +} +.sh-regularfa-book-bible:before { + content: "\e2960"; +} +.sh-regularfa-bahai:before { + content: "\e2959"; +} +.sh-regularfa-ankh:before { + content: "\e2958"; +} +.sh-regularfa-tick:before { + content: "\e2957"; +} +.sh-regularfa-square-ampersand:before { + content: "\e2956"; +} +.sh-regularfa-slash-forward:before { + content: "\e2955"; +} +.sh-regularfa-slash-back:before { + content: "\e2954"; +} +.sh-regularfa-semicolon:before { + content: "\e2953"; +} +.sh-regularfa-section:before { + content: "\e2952"; +} +.sh-regularfa-quotes:before { + content: "\e2951"; +} +.sh-regularfa-pipe:before { + content: "\e2950"; +} +.sh-regularfa-period:before { + content: "\e2949"; +} +.sh-regularfa-option:before { + content: "\e2948"; +} +.sh-regularfa-interrobang:before { + content: "\e2947"; +} +.sh-regularfa-hyphen:before { + content: "\e2946"; +} +.sh-regularfa-horizontal-rule:before { + content: "\e2945"; +} +.sh-regularfa-ditto:before { + content: "\e2944"; +} +.sh-regularfa-corner:before { + content: "\e2943"; +} +.sh-regularfa-comma:before { + content: "\e2942"; +} +.sh-regularfa-colon:before { + content: "\e2941"; +} +.sh-regularfa-circle-ampersand:before { + content: "\e2940"; +} +.sh-regularfa-apostrophe:before { + content: "\e2939"; +} +.sh-regularfa-ampersand:before { + content: "\e2938"; +} +.sh-regularfa-alt:before { + content: "\e2937"; +} +.sh-regularfa-accent-grave:before { + content: "\e2936"; +} +.sh-regularfa-xmark-to-slot:before { + content: "\e2935"; +} +.sh-regularfa-republican:before { + content: "\e2934"; +} +.sh-regularfa-poll-people:before { + content: "\e2933"; +} +.sh-regularfa-podium-star:before { + content: "\e2932"; +} +.sh-regularfa-person-sign:before { + content: "\e2931"; +} +.sh-regularfa-person-booth:before { + content: "\e2930"; +} +.sh-regularfa-flag-usa:before { + content: "\e2929"; +} +.sh-regularfa-flag-swallowtail:before { + content: "\e2928"; +} +.sh-regularfa-democrat:before { + content: "\e2927"; +} +.sh-regularfa-clipboard-list-check:before { + content: "\e2926"; +} +.sh-regularfa-check-to-slot:before { + content: "\e2925"; +} +.sh-regularfa-calendar-star:before { + content: "\e2924"; +} +.sh-regularfa-box-ballot:before { + content: "\e2923"; +} +.sh-regularfa-booth-curtain:before { + content: "\e2922"; +} +.sh-regularfa-ballot-check:before { + content: "\e2921"; +} +.sh-regularfa-ballot:before { + content: "\e2920"; +} +.sh-regularfa-rectangle-vertical-history:before { + content: "\e2919"; +} +.sh-regularfa-rectangle-history-circle-user:before { + content: "\e2918"; +} +.sh-regularfa-rectangle-history-circle-plus:before { + content: "\e2917"; +} +.sh-regularfa-rectangle-history:before { + content: "\e2916"; +} +.sh-regularfa-panorama:before { + content: "\e2915"; +} +.sh-regularfa-image-user:before { + content: "\e2914"; +} +.sh-regularfa-images-user:before { + content: "\e2913"; +} +.sh-regularfa-image-slash:before { + content: "\e2912"; +} +.sh-regularfa-image-portrait:before { + content: "\e2911"; +} +.sh-regularfa-image-polaroid-user:before { + content: "\e2910"; +} +.sh-regularfa-image-landscape:before { + content: "\e2909"; +} +.sh-regularfa-high-definition:before { + content: "\e2908"; +} +.sh-regularfa-hexagon-image:before { + content: "\e2907"; +} +.sh-regularfa-films:before { + content: "\e2906"; +} +.sh-regularfa-circle-camera:before { + content: "\e2905"; +} +.sh-regularfa-camera-viewfinder:before { + content: "\e2904"; +} +.sh-regularfa-camera-slash:before { + content: "\e2903"; +} +.sh-regularfa-camera-rotate:before { + content: "\e2902"; +} +.sh-regularfa-bolt-slash:before { + content: "\e2901"; +} +.sh-regularfa-bolt-lightning:before { + content: "\e2900"; +} +.sh-regularfa-bolt-auto:before { + content: "\e2899"; +} +.sh-regularfa-aperture:before { + content: "\e2898"; +} +.sh-regularfa-square-9:before { + content: "\e2897"; +} +.sh-regularfa-square-8:before { + content: "\e2896"; +} +.sh-regularfa-square-7:before { + content: "\e2895"; +} +.sh-regularfa-square-6:before { + content: "\e2894"; +} +.sh-regularfa-square-5:before { + content: "\e2893"; +} +.sh-regularfa-square-4:before { + content: "\e2892"; +} +.sh-regularfa-square-3:before { + content: "\e2891"; +} +.sh-regularfa-square-2:before { + content: "\e2890"; +} +.sh-regularfa-square-1:before { + content: "\e2889"; +} +.sh-regularfa-square-0:before { + content: "\e2888"; +} +.sh-regularfa-circle-9:before { + content: "\e2887"; +} +.sh-regularfa-circle-8:before { + content: "\e2886"; +} +.sh-regularfa-circle-7:before { + content: "\e2885"; +} +.sh-regularfa-circle-6:before { + content: "\e2884"; +} +.sh-regularfa-circle-5:before { + content: "\e2883"; +} +.sh-regularfa-circle-4:before { + content: "\e2882"; +} +.sh-regularfa-circle-3:before { + content: "\e2881"; +} +.sh-regularfa-circle-2:before { + content: "\e2880"; +} +.sh-regularfa-circle-1:before { + content: "\e2879"; +} +.sh-regularfa-circle-0:before { + content: "\e2878"; +} +.sh-regularfa-9:before { + content: "\e2877"; +} +.sh-regularfa-8:before { + content: "\e2876"; +} +.sh-regularfa-7:before { + content: "\e2875"; +} +.sh-regularfa-6:before { + content: "\e2874"; +} +.sh-regularfa-5:before { + content: "\e2873"; +} +.sh-regularfa-4:before { + content: "\e2872"; +} +.sh-regularfa-3:before { + content: "\e2871"; +} +.sh-regularfa-2:before { + content: "\e2870"; +} +.sh-regularfa-1:before { + content: "\e2869"; +} +.sh-regularfa-0:before { + content: "\e2868"; +} +.sh-regularfa-00:before { + content: "\e2867"; +} +.sh-regularfa-trillium:before { + content: "\e2866"; +} +.sh-regularfa-tree-palm:before { + content: "\e2865"; +} +.sh-regularfa-raindrops:before { + content: "\e2864"; +} +.sh-regularfa-pompebled:before { + content: "\e2863"; +} +.sh-regularfa-leaf-oak:before { + content: "\e2862"; +} +.sh-regularfa-leaf-maple:before { + content: "\e2861"; +} +.sh-regularfa-icicles:before { + content: "\e2860"; +} +.sh-regularfa-flower-tulip:before { + content: "\e2859"; +} +.sh-regularfa-flower-daffodil:before { + content: "\e2858"; +} +.sh-regularfa-flower:before { + content: "\e2857"; +} +.sh-regularfa-clover:before { + content: "\e2856"; +} +.sh-regularfa-cloud-sun:before { + content: "\e2855"; +} +.sh-regularfa-cactus:before { + content: "\e2854"; +} +.sh-regularfa-whistle:before { + content: "\e2853"; +} +.sh-regularfa-violin:before { + content: "\e2852"; +} +.sh-regularfa-user-music:before { + content: "\e2851"; +} +.sh-regularfa-turntable:before { + content: "\e2850"; +} +.sh-regularfa-trumpet:before { + content: "\e2849"; +} +.sh-regularfa-triangle-instrument:before { + content: "\e2848"; +} +.sh-regularfa-square-sliders-vertical:before { + content: "\e2847"; +} +.sh-regularfa-square-sliders:before { + content: "\e2846"; +} +.sh-regularfa-saxophone-fire:before { + content: "\e2845"; +} +.sh-regularfa-saxophone:before { + content: "\e2844"; +} +.sh-regularfa-record-vinyl:before { + content: "\e2843"; +} +.sh-regularfa-radio-tuner:before { + content: "\e2842"; +} +.sh-regularfa-piano-keyboard:before { + content: "\e2841"; +} +.sh-regularfa-piano:before { + content: "\e2840"; +} +.sh-regularfa-music-slash:before { + content: "\e2839"; +} +.sh-regularfa-music-note-slash:before { + content: "\e2838"; +} +.sh-regularfa-music-note:before { + content: "\e2837"; +} +.sh-regularfa-message-music:before { + content: "\e2836"; +} +.sh-regularfa-list-music:before { + content: "\e2835"; +} +.sh-regularfa-kazoo:before { + content: "\e2834"; +} +.sh-regularfa-guitars:before { + content: "\e2833"; +} +.sh-regularfa-guitar-electric:before { + content: "\e2832"; +} +.sh-regularfa-guitar:before { + content: "\e2831"; +} +.sh-regularfa-gramophone:before { + content: "\e2830"; +} +.sh-regularfa-flute:before { + content: "\e2829"; +} +.sh-regularfa-drum-steelpan:before { + content: "\e2828"; +} +.sh-regularfa-drum:before { + content: "\e2827"; +} +.sh-regularfa-cowbell-circle-plus:before { + content: "\e2826"; +} +.sh-regularfa-cowbell:before { + content: "\e2825"; +} +.sh-regularfa-clarinet:before { + content: "\e2824"; +} +.sh-regularfa-cassette-tape:before { + content: "\e2823"; +} +.sh-regularfa-boombox:before { + content: "\e2822"; +} +.sh-regularfa-banjo:before { + content: "\e2821"; +} +.sh-regularfa-album-collection-circle-user:before { + content: "\e2820"; +} +.sh-regularfa-album-collection-circle-plus:before { + content: "\e2819"; +} +.sh-regularfa-wine-glass-crack:before { + content: "\e2818"; +} +.sh-regularfa-truck-ramp-couch:before { + content: "\e2817"; +} +.sh-regularfa-truck-ramp-box:before { + content: "\e2816"; +} +.sh-regularfa-truck-ramp:before { + content: "\e2815"; +} +.sh-regularfa-truck-moving:before { + content: "\e2814"; +} +.sh-regularfa-tape:before { + content: "\e2813"; +} +.sh-regularfa-square-this-way-up:before { + content: "\e2812"; +} +.sh-regularfa-square-fragile:before { + content: "\e2811"; +} +.sh-regularfa-sign-hanging:before { + content: "\e2810"; +} +.sh-regularfa-ramp-loading:before { + content: "\e2809"; +} +.sh-regularfa-people-carry-box:before { + content: "\e2808"; +} +.sh-regularfa-box-taped:before { + content: "\e2807"; +} +.sh-regularfa-box-open-full:before { + content: "\e2806"; +} +.sh-regularfa-box-open:before { + content: "\e2805"; +} +.sh-regularfa-tugrik-sign:before { + content: "\e2804"; +} +.sh-regularfa-tenge-sign:before { + content: "\e2803"; +} +.sh-regularfa-sack:before { + content: "\e2802"; +} +.sh-regularfa-rupiah-sign:before { + content: "\e2801"; +} +.sh-regularfa-rupee-sign:before { + content: "\e2800"; +} +.sh-regularfa-peso-sign:before { + content: "\e2799"; +} +.sh-regularfa-peseta-sign:before { + content: "\e2798"; +} +.sh-regularfa-naira-sign:before { + content: "\e2797"; +} +.sh-regularfa-money-simple-from-bracket:before { + content: "\e2796"; +} +.sh-regularfa-money-from-bracket:before { + content: "\e2795"; +} +.sh-regularfa-money-check-dollar:before { + content: "\e2794"; +} +.sh-regularfa-money-check:before { + content: "\e2793"; +} +.sh-regularfa-money-bill-wave:before { + content: "\e2792"; +} +.sh-regularfa-money-bills-simple:before { + content: "\e2791"; +} +.sh-regularfa-money-bill-simple-wave:before { + content: "\e2790"; +} +.sh-regularfa-money-bill-simple:before { + content: "\e2789"; +} +.sh-regularfa-mill-sign:before { + content: "\e2788"; +} +.sh-regularfa-manat-sign:before { + content: "\e2787"; +} +.sh-regularfa-litecoin-sign:before { + content: "\e2786"; +} +.sh-regularfa-lira-sign:before { + content: "\e2785"; +} +.sh-regularfa-lari-sign:before { + content: "\e2784"; +} +.sh-regularfa-kip-sign:before { + content: "\e2783"; +} +.sh-regularfa-hryvnia-sign:before { + content: "\e2782"; +} +.sh-regularfa-guarani-sign:before { + content: "\e2781"; +} +.sh-regularfa-franc-sign:before { + content: "\e2780"; +} +.sh-regularfa-florin-sign:before { + content: "\e2779"; +} +.sh-regularfa-file-invoice-dollar:before { + content: "\e2778"; +} +.sh-regularfa-file-invoice:before { + content: "\e2777"; +} +.sh-regularfa-dong-sign:before { + content: "\e2776"; +} +.sh-regularfa-display-chart-up:before { + content: "\e2775"; +} +.sh-regularfa-cruzeiro-sign:before { + content: "\e2774"; +} +.sh-regularfa-credit-card-front:before { + content: "\e2773"; +} +.sh-regularfa-credit-card-blank:before { + content: "\e2772"; +} +.sh-regularfa-colon-sign:before { + content: "\e2771"; +} +.sh-regularfa-coin-vertical:before { + content: "\e2770"; +} +.sh-regularfa-coins:before { + content: "\e2769"; +} +.sh-regularfa-coin-front:before { + content: "\e2768"; +} +.sh-regularfa-coin-blank:before { + content: "\e2767"; +} +.sh-regularfa-coin:before { + content: "\e2766"; +} +.sh-regularfa-circle-yen:before { + content: "\e2765"; +} +.sh-regularfa-circle-sterling:before { + content: "\e2764"; +} +.sh-regularfa-circle-euro:before { + content: "\e2763"; +} +.sh-regularfa-chf-sign:before { + content: "\e2762"; +} +.sh-regularfa-chart-pie-simple-circle-dollar:before { + content: "\e2761"; +} +.sh-regularfa-chart-pie-simple-circle-currency:before { + content: "\e2760"; +} +.sh-regularfa-cent-sign:before { + content: "\e2759"; +} +.sh-regularfa-cedi-sign:before { + content: "\e2758"; +} +.sh-regularfa-cash-register:before { + content: "\e2757"; +} +.sh-regularfa-brazilian-real-sign:before { + content: "\e2756"; +} +.sh-regularfa-bangladeshi-taka-sign:before { + content: "\e2755"; +} +.sh-regularfa-baht-sign:before { + content: "\e2754"; +} +.sh-regularfa-austral-sign:before { + content: "\e2753"; +} +.sh-regularfa-x-ray:before { + content: "\e2752"; +} +.sh-regularfa-weight-scale:before { + content: "\e2751"; +} +.sh-regularfa-wave-pulse:before { + content: "\e2750"; +} +.sh-regularfa-watch-fitness:before { + content: "\e2749"; +} +.sh-regularfa-walker:before { + content: "\e2748"; +} +.sh-regularfa-virus-slash:before { + content: "\e2747"; +} +.sh-regularfa-viruses:before { + content: "\e2746"; +} +.sh-regularfa-virus-covid-slash:before { + content: "\e2745"; +} +.sh-regularfa-vials:before { + content: "\e2744"; +} +.sh-regularfa-vial:before { + content: "\e2743"; +} +.sh-regularfa-users-medical:before { + content: "\e2742"; +} +.sh-regularfa-user-nurse-hair-long:before { + content: "\e2741"; +} +.sh-regularfa-user-nurse-hair:before { + content: "\e2740"; +} +.sh-regularfa-user-nurse:before { + content: "\e2739"; +} +.sh-regularfa-user-doctor-message:before { + content: "\e2738"; +} +.sh-regularfa-user-doctor-hair-long:before { + content: "\e2737"; +} +.sh-regularfa-user-doctor-hair:before { + content: "\e2736"; +} +.sh-regularfa-toothbrush:before { + content: "\e2735"; +} +.sh-regularfa-tooth:before { + content: "\e2734"; +} +.sh-regularfa-thermometer1:before { + content: "\e2733"; +} +.sh-regularfa-teeth-open:before { + content: "\e2732"; +} +.sh-regularfa-teeth:before { + content: "\e2731"; +} +.sh-regularfa-tablets:before { + content: "\e2730"; +} +.sh-regularfa-stretcher:before { + content: "\e2729"; +} +.sh-regularfa-stomach:before { + content: "\e2728"; +} +.sh-regularfa-star-of-life:before { + content: "\e2727"; +} +.sh-regularfa-smoking:before { + content: "\e2726"; +} +.sh-regularfa-skeleton-ribs:before { + content: "\e2725"; +} +.sh-regularfa-skeleton:before { + content: "\e2724"; +} +.sh-regularfa-shield-virus:before { + content: "\e2723"; +} +.sh-regularfa-scalpel-line-dashed:before { + content: "\e2722"; +} +.sh-regularfa-scalpel:before { + content: "\e2721"; +} +.sh-regularfa-receipt:before { + content: "\e2720"; +} +.sh-regularfa-pump-medical:before { + content: "\e2719"; +} +.sh-regularfa-prescription-bottle-pill:before { + content: "\e2718"; +} +.sh-regularfa-prescription-bottle-medical:before { + content: "\e2717"; +} +.sh-regularfa-prescription-bottle:before { + content: "\e2716"; +} +.sh-regularfa-prescription:before { + content: "\e2715"; +} +.sh-regularfa-person-dots-from-line:before { + content: "\e2714"; +} +.sh-regularfa-pager:before { + content: "\e2713"; +} +.sh-regularfa-notes-medical:before { + content: "\e2712"; +} +.sh-regularfa-note-medical:before { + content: "\e2711"; +} +.sh-regularfa-nose:before { + content: "\e2710"; +} +.sh-regularfa-mortar-pestle:before { + content: "\e2709"; +} +.sh-regularfa-monitor-waveform:before { + content: "\e2708"; +} +.sh-regularfa-lungs-virus:before { + content: "\e2707"; +} +.sh-regularfa-lips:before { + content: "\e2706"; +} +.sh-regularfa-laptop-medical:before { + content: "\e2705"; +} +.sh-regularfa-kit-medical:before { + content: "\e2704"; +} +.sh-regularfa-kidneys:before { + content: "\e2703"; +} +.sh-regularfa-joint:before { + content: "\e2702"; +} +.sh-regularfa-inhaler:before { + content: "\e2701"; +} +.sh-regularfa-id-card-clip:before { + content: "\e2700"; +} +.sh-regularfa-head-side-virus:before { + content: "\e2699"; +} +.sh-regularfa-head-side-medical:before { + content: "\e2698"; +} +.sh-regularfa-head-side-mask:before { + content: "\e2697"; +} +.sh-regularfa-head-side-cough-slash:before { + content: "\e2696"; +} +.sh-regularfa-head-side-cough:before { + content: "\e2695"; +} +.sh-regularfa-head-side-brain:before { + content: "\e2694"; +} +.sh-regularfa-flask-gear:before { + content: "\e2693"; +} +.sh-regularfa-file-waveform:before { + content: "\e2692"; +} +.sh-regularfa-files-medical:before { + content: "\e2691"; +} +.sh-regularfa-file-prescription:before { + content: "\e2690"; +} +.sh-regularfa-file-medical:before { + content: "\e2689"; +} +.sh-regularfa-eyes:before { + content: "\e2688"; +} +.sh-regularfa-dna:before { + content: "\e2687"; +} +.sh-regularfa-disease:before { + content: "\e2686"; +} +.sh-regularfa-crutches:before { + content: "\e2685"; +} +.sh-regularfa-crutch:before { + content: "\e2684"; +} +.sh-regularfa-clock-rotate-left:before { + content: "\e2683"; +} +.sh-regularfa-clipboard-prescription:before { + content: "\e2682"; +} +.sh-regularfa-clipboard-medical:before { + content: "\e2681"; +} +.sh-regularfa-capsules:before { + content: "\e2680"; +} +.sh-regularfa-cannabis:before { + content: "\e2679"; +} +.sh-regularfa-briefcase-medical:before { + content: "\e2678"; +} +.sh-regularfa-brain:before { + content: "\e2677"; +} +.sh-regularfa-book-user:before { + content: "\e2676"; +} +.sh-regularfa-books-medical:before { + content: "\e2675"; +} +.sh-regularfa-book-medical:before { + content: "\e2674"; +} +.sh-regularfa-bong:before { + content: "\e2673"; +} +.sh-regularfa-bone-break:before { + content: "\e2672"; +} +.sh-regularfa-bed-pulse:before { + content: "\e2671"; +} +.sh-regularfa-ban-smoking:before { + content: "\e2670"; +} +.sh-regularfa-bacteria:before { + content: "\e2669"; +} +.sh-regularfa-volume-xmark:before { + content: "\e2668"; +} +.sh-regularfa-volume-slash:before { + content: "\e2667"; +} +.sh-regularfa-up-right-and-down-left-from-center1:before { + content: "\e2666"; +} +.sh-regularfa-scrubber:before { + content: "\e2665"; +} +.sh-regularfa-play-pause:before { + content: "\e2664"; +} +.sh-regularfa-pause1:before { + content: "\e2663"; +} +.sh-regularfa-minimize:before { + content: "\e2662"; +} +.sh-regularfa-expand-wide:before { + content: "\e2661"; +} +.sh-regularfa-expand1:before { + content: "\e2660"; +} +.sh-regularfa-down-left-and-up-right-to-center1:before { + content: "\e2659"; +} +.sh-regularfa-compress-wide:before { + content: "\e2658"; +} +.sh-regularfa-compress1:before { + content: "\e2657"; +} +.sh-regularfa-arrows-maximize:before { + content: "\e2656"; +} +.sh-regularfa-xmark:before { + content: "\e2655"; +} +.sh-regularfa-wave-triangle:before { + content: "\e2654"; +} +.sh-regularfa-wave-square:before { + content: "\e2653"; +} +.sh-regularfa-wave-sine:before { + content: "\e2652"; +} +.sh-regularfa-value-absolute:before { + content: "\e2651"; +} +.sh-regularfa-union:before { + content: "\e2650"; +} +.sh-regularfa-tilde:before { + content: "\e2649"; +} +.sh-regularfa-theta:before { + content: "\e2648"; +} +.sh-regularfa-tally-4:before { + content: "\e2647"; +} +.sh-regularfa-tally-3:before { + content: "\e2646"; +} +.sh-regularfa-tally-2:before { + content: "\e2645"; +} +.sh-regularfa-tally-1:before { + content: "\e2644"; +} +.sh-regularfa-tally:before { + content: "\e2643"; +} +.sh-regularfa-square-xmark:before { + content: "\e2642"; +} +.sh-regularfa-square-root-variable:before { + content: "\e2641"; +} +.sh-regularfa-square-root:before { + content: "\e2640"; +} +.sh-regularfa-square-divide:before { + content: "\e2639"; +} +.sh-regularfa-sigma:before { + content: "\e2638"; +} +.sh-regularfa-plus-minus:before { + content: "\e2637"; +} +.sh-regularfa-pi:before { + content: "\e2636"; +} +.sh-regularfa-omega:before { + content: "\e2635"; +} +.sh-regularfa-octagon-xmark:before { + content: "\e2634"; +} +.sh-regularfa-octagon-plus:before { + content: "\e2633"; +} +.sh-regularfa-octagon-minus:before { + content: "\e2632"; +} +.sh-regularfa-octagon-divide:before { + content: "\e2631"; +} +.sh-regularfa-not-equal:before { + content: "\e2630"; +} +.sh-regularfa-less-than-equal:before { + content: "\e2629"; +} +.sh-regularfa-less-than:before { + content: "\e2628"; +} +.sh-regularfa-lambda:before { + content: "\e2627"; +} +.sh-regularfa-intersection:before { + content: "\e2626"; +} +.sh-regularfa-integral:before { + content: "\e2625"; +} +.sh-regularfa-infinity:before { + content: "\e2624"; +} +.sh-regularfa-hexagon-xmark:before { + content: "\e2623"; +} +.sh-regularfa-hexagon-plus:before { + content: "\e2622"; +} +.sh-regularfa-hexagon-minus:before { + content: "\e2621"; +} +.sh-regularfa-hexagon-divide:before { + content: "\e2620"; +} +.sh-regularfa-greater-than-equal:before { + content: "\e2619"; +} +.sh-regularfa-greater-than:before { + content: "\e2618"; +} +.sh-regularfa-function:before { + content: "\e2617"; +} +.sh-regularfa-equals:before { + content: "\e2616"; +} +.sh-regularfa-empty-set:before { + content: "\e2615"; +} +.sh-regularfa-divide:before { + content: "\e2614"; +} +.sh-regularfa-circle-xmark:before { + content: "\e2613"; +} +.sh-regularfa-circle-divide:before { + content: "\e2612"; +} +.sh-regularfa-calculator-simple:before { + content: "\e2611"; +} +.sh-regularfa-abacus:before { + content: "\e2610"; +} +.sh-regularfa-user-group-crown:before { + content: "\e2609"; +} +.sh-regularfa-user-crown:before { + content: "\e2608"; +} +.sh-regularfa-rectangle-ad:before { + content: "\e2607"; +} +.sh-regularfa-messages-dollar:before { + content: "\e2606"; +} +.sh-regularfa-message-dollar:before { + content: "\e2605"; +} +.sh-regularfa-megaphone:before { + content: "\e2604"; +} +.sh-regularfa-magnifying-glass-location:before { + content: "\e2603"; +} +.sh-regularfa-magnifying-glass-dollar:before { + content: "\e2602"; +} +.sh-regularfa-lightbulb-on:before { + content: "\e2601"; +} +.sh-regularfa-lightbulb-gear:before { + content: "\e2600"; +} +.sh-regularfa-lightbulb-dollar:before { + content: "\e2599"; +} +.sh-regularfa-gift-card:before { + content: "\e2598"; +} +.sh-regularfa-filter-circle-dollar:before { + content: "\e2597"; +} +.sh-regularfa-envelopes-bulk:before { + content: "\e2596"; +} +.sh-regularfa-envelope-open-text:before { + content: "\e2595"; +} +.sh-regularfa-envelope-open-dollar:before { + content: "\e2594"; +} +.sh-regularfa-display-chart-up-circle-dollar:before { + content: "\e2593"; +} +.sh-regularfa-display-chart-up-circle-currency:before { + content: "\e2592"; +} +.sh-regularfa-comments-dollar:before { + content: "\e2591"; +} +.sh-regularfa-comment-dollar:before { + content: "\e2590"; +} +.sh-regularfa-chart-mixed-up-circle-dollar:before { + content: "\e2589"; +} +.sh-regularfa-chart-mixed-up-circle-currency:before { + content: "\e2588"; +} +.sh-regularfa-bullseye-pointer:before { + content: "\e2587"; +} +.sh-regularfa-billboard:before { + content: "\e2586"; +} +.sh-regularfa-water-arrow-up:before { + content: "\e2585"; +} +.sh-regularfa-water-arrow-down:before { + content: "\e2584"; +} +.sh-regularfa-person-swimming:before { + content: "\e2583"; +} +.sh-regularfa-fish-cooked:before { + content: "\e2582"; +} +.sh-regularfa-dolphin1:before { + content: "\e2581"; +} +.sh-regularfa-buoy-mooring:before { + content: "\e2580"; +} +.sh-regularfa-buoy:before { + content: "\e2579"; +} +.sh-regularfa-truck-plow:before { + content: "\e2578"; +} +.sh-regularfa-trophy-star:before { + content: "\e2577"; +} +.sh-regularfa-train-tram:before { + content: "\e2576"; +} +.sh-regularfa-train-track:before { + content: "\e2575"; +} +.sh-regularfa-traffic-light-stop:before { + content: "\e2574"; +} +.sh-regularfa-traffic-light-slow:before { + content: "\e2573"; +} +.sh-regularfa-traffic-light-go:before { + content: "\e2572"; +} +.sh-regularfa-traffic-light:before { + content: "\e2571"; +} +.sh-regularfa-ticket-simple:before { + content: "\e2570"; +} +.sh-regularfa-square-parking-slash:before { + content: "\e2569"; +} +.sh-regularfa-square-parking:before { + content: "\e2568"; +} +.sh-regularfa-snowplow:before { + content: "\e2567"; +} +.sh-regularfa-route-interstate:before { + content: "\e2566"; +} +.sh-regularfa-route-highway:before { + content: "\e2565"; +} +.sh-regularfa-restroom:before { + content: "\e2564"; +} +.sh-regularfa-plane-engines:before { + content: "\e2563"; +} +.sh-regularfa-plane1:before { + content: "\e2562"; +} +.sh-regularfa-money-bill:before { + content: "\e2561"; +} +.sh-regularfa-location-xmark:before { + content: "\e2560"; +} +.sh-regularfa-location-smile:before { + content: "\e2559"; +} +.sh-regularfa-location-question:before { + content: "\e2558"; +} +.sh-regularfa-location-plus:before { + content: "\e2557"; +} +.sh-regularfa-location-pin-slash:before { + content: "\e2556"; +} +.sh-regularfa-location-pin:before { + content: "\e2555"; +} +.sh-regularfa-location-pen:before { + content: "\e2554"; +} +.sh-regularfa-location-minus:before { + content: "\e2553"; +} +.sh-regularfa-location-dot-slash:before { + content: "\e2552"; +} +.sh-regularfa-location-crosshairs-slash:before { + content: "\e2551"; +} +.sh-regularfa-location-check:before { + content: "\e2550"; +} +.sh-regularfa-images:before { + content: "\e2549"; +} +.sh-regularfa-do-not-enter:before { + content: "\e2548"; +} +.sh-regularfa-diamond-turn-right:before { + content: "\e2547"; +} +.sh-regularfa-compass-slash:before { + content: "\e2546"; +} +.sh-regularfa-circle-parking:before { + content: "\e2545"; +} +.sh-regularfa-circle-location-arrow:before { + content: "\e2544"; +} +.sh-regularfa-bookmark1:before { + content: "\e2543"; +} +.sh-regularfa-book-atlas:before { + content: "\e2542"; +} +.sh-regularfa-ban-parking:before { + content: "\e2541"; +} +.sh-regularfa-bags-shopping:before { + content: "\e2540"; +} +.sh-regularfa-truck-flatbed:before { + content: "\e2539"; +} +.sh-regularfa-truck-fast:before { + content: "\e2538"; +} +.sh-regularfa-truck-container-empty:before { + content: "\e2537"; +} +.sh-regularfa-truck-clock:before { + content: "\e2536"; +} +.sh-regularfa-train-subway-tunnel:before { + content: "\e2535"; +} +.sh-regularfa-tablet-rugged:before { + content: "\e2534"; +} +.sh-regularfa-shelves-empty:before { + content: "\e2533"; +} +.sh-regularfa-shelves:before { + content: "\e2532"; +} +.sh-regularfa-scanner-touchscreen:before { + content: "\e2531"; +} +.sh-regularfa-scanner-keyboard:before { + content: "\e2530"; +} +.sh-regularfa-scanner-gun:before { + content: "\e2529"; +} +.sh-regularfa-rectangle-barcode:before { + content: "\e2528"; +} +.sh-regularfa-person-dolly-empty:before { + content: "\e2527"; +} +.sh-regularfa-person-dolly:before { + content: "\e2526"; +} +.sh-regularfa-person-carry-box:before { + content: "\e2525"; +} +.sh-regularfa-pallet-boxes:before { + content: "\e2524"; +} +.sh-regularfa-pallet-box:before { + content: "\e2523"; +} +.sh-regularfa-pallet:before { + content: "\e2522"; +} +.sh-regularfa-gear-complex:before { + content: "\e2521"; +} +.sh-regularfa-dolly-empty:before { + content: "\e2520"; +} +.sh-regularfa-dolly:before { + content: "\e2519"; +} +.sh-regularfa-conveyor-belt-empty:before { + content: "\e2518"; +} +.sh-regularfa-conveyor-belt-boxes:before { + content: "\e2517"; +} +.sh-regularfa-conveyor-belt-arm:before { + content: "\e2516"; +} +.sh-regularfa-conveyor-belt:before { + content: "\e2515"; +} +.sh-regularfa-clipboard-list:before { + content: "\e2514"; +} +.sh-regularfa-clipboard-check:before { + content: "\e2513"; +} +.sh-regularfa-cart-flatbed-empty:before { + content: "\e2512"; +} +.sh-regularfa-cart-flatbed-boxes:before { + content: "\e2511"; +} +.sh-regularfa-cart-flatbed:before { + content: "\e2510"; +} +.sh-regularfa-boxes-stacked:before { + content: "\e2509"; +} +.sh-regularfa-box-circle-check:before { + content: "\e2508"; +} +.sh-regularfa-box-check:before { + content: "\e2507"; +} +.sh-regularfa-box:before { + content: "\e2506"; +} +.sh-regularfa-barcode-scan:before { + content: "\e2505"; +} +.sh-regularfa-virus-covid:before { + content: "\e2504"; +} +.sh-regularfa-virus:before { + content: "\e2503"; +} +.sh-regularfa-vial-virus:before { + content: "\e2502"; +} +.sh-regularfa-vial-circle-check:before { + content: "\e2501"; +} +.sh-regularfa-users-viewfinder:before { + content: "\e2500"; +} +.sh-regularfa-users-rectangle:before { + content: "\e2499"; +} +.sh-regularfa-users-rays:before { + content: "\e2498"; +} +.sh-regularfa-users-line:before { + content: "\e2497"; +} +.sh-regularfa-users-between-lines:before { + content: "\e2496"; +} +.sh-regularfa-user-injured:before { + content: "\e2495"; +} +.sh-regularfa-truck-plane:before { + content: "\e2494"; +} +.sh-regularfa-truck-front:before { + content: "\e2493"; +} +.sh-regularfa-truck-droplet:before { + content: "\e2492"; +} +.sh-regularfa-truck-arrow-right:before { + content: "\e2491"; +} +.sh-regularfa-syringe:before { + content: "\e2490"; +} +.sh-regularfa-staff-snake:before { + content: "\e2489"; +} +.sh-regularfa-square-virus:before { + content: "\e2488"; +} +.sh-regularfa-square-person-confined:before { + content: "\e2487"; +} +.sh-regularfa-square-nfi:before { + content: "\e2486"; +} +.sh-regularfa-shield-heart:before { + content: "\e2485"; +} +.sh-regularfa-sailboat:before { + content: "\e2484"; +} +.sh-regularfa-sack-xmark:before { + content: "\e2483"; +} +.sh-regularfa-sack-dollar:before { + content: "\e2482"; +} +.sh-regularfa-road-spikes:before { + content: "\e2481"; +} +.sh-regularfa-road-lock:before { + content: "\e2480"; +} +.sh-regularfa-road-circle-xmark:before { + content: "\e2479"; +} +.sh-regularfa-road-circle-exclamation:before { + content: "\e2478"; +} +.sh-regularfa-road-circle-check:before { + content: "\e2477"; +} +.sh-regularfa-road-bridge:before { + content: "\e2476"; +} +.sh-regularfa-road-barrier:before { + content: "\e2475"; +} +.sh-regularfa-ranking-star:before { + content: "\e2474"; +} +.sh-regularfa-radio:before { + content: "\e2473"; +} +.sh-regularfa-plane-up:before { + content: "\e2472"; +} +.sh-regularfa-plane-lock:before { + content: "\e2471"; +} +.sh-regularfa-plane-circle-xmark:before { + content: "\e2470"; +} +.sh-regularfa-plane-circle-exclamation:before { + content: "\e2469"; +} +.sh-regularfa-plane-circle-check:before { + content: "\e2468"; +} +.sh-regularfa-pills:before { + content: "\e2467"; +} +.sh-regularfa-person-walking-luggage:before { + content: "\e2466"; +} +.sh-regularfa-person-walking:before { + content: "\e2465"; +} +.sh-regularfa-person-through-window:before { + content: "\e2464"; +} +.sh-regularfa-person-rays:before { + content: "\e2463"; +} +.sh-regularfa-person-pregnant:before { + content: "\e2462"; +} +.sh-regularfa-person-military-to-person:before { + content: "\e2461"; +} +.sh-regularfa-person-military-rifle:before { + content: "\e2460"; +} +.sh-regularfa-person-military-pointing:before { + content: "\e2459"; +} +.sh-regularfa-person-harassing:before { + content: "\e2458"; +} +.sh-regularfa-person-half-dress:before { + content: "\e2457"; +} +.sh-regularfa-person-falling-burst:before { + content: "\e2456"; +} +.sh-regularfa-person-falling:before { + content: "\e2455"; +} +.sh-regularfa-person-dress-burst:before { + content: "\e2454"; +} +.sh-regularfa-person-circle-xmark:before { + content: "\e2453"; +} +.sh-regularfa-person-circle-question:before { + content: "\e2452"; +} +.sh-regularfa-person-circle-plus:before { + content: "\e2451"; +} +.sh-regularfa-person-circle-minus:before { + content: "\e2450"; +} +.sh-regularfa-person-circle-exclamation:before { + content: "\e2449"; +} +.sh-regularfa-person-circle-check:before { + content: "\e2448"; +} +.sh-regularfa-person-burst:before { + content: "\e2447"; +} +.sh-regularfa-person-arrow-up-from-line:before { + content: "\e2446"; +} +.sh-regularfa-person-arrow-down-to-line:before { + content: "\e2445"; +} +.sh-regularfa-people-robbery:before { + content: "\e2444"; +} +.sh-regularfa-people-pulling:before { + content: "\e2443"; +} +.sh-regularfa-people-line:before { + content: "\e2442"; +} +.sh-regularfa-people-group:before { + content: "\e2441"; +} +.sh-regularfa-people-arrows:before { + content: "\e2440"; +} +.sh-regularfa-money-bill-wheat:before { + content: "\e2439"; +} +.sh-regularfa-money-bill-trend-up:before { + content: "\e2438"; +} +.sh-regularfa-money-bill-transfer:before { + content: "\e2437"; +} +.sh-regularfa-money-bills:before { + content: "\e2436"; +} +.sh-regularfa-mask-ventilator:before { + content: "\e2435"; +} +.sh-regularfa-mask-face:before { + content: "\e2434"; +} +.sh-regularfa-mars-and-venus-burst:before { + content: "\e2433"; +} +.sh-regularfa-lungs:before { + content: "\e2432"; +} +.sh-regularfa-location-pin-lock:before { + content: "\e2431"; +} +.sh-regularfa-land-mine-on:before { + content: "\e2430"; +} +.sh-regularfa-jet-fighter-up:before { + content: "\e2429"; +} +.sh-regularfa-helicopter-symbol:before { + content: "\e2428"; +} +.sh-regularfa-helicopter:before { + content: "\e2427"; +} +.sh-regularfa-heart-circle-xmark:before { + content: "\e2426"; +} +.sh-regularfa-heart-circle-plus:before { + content: "\e2425"; +} +.sh-regularfa-heart-circle-minus:before { + content: "\e2424"; +} +.sh-regularfa-heart-circle-exclamation:before { + content: "\e2423"; +} +.sh-regularfa-heart-circle-check:before { + content: "\e2422"; +} +.sh-regularfa-heart-circle-bolt:before { + content: "\e2421"; +} +.sh-regularfa-handcuffs:before { + content: "\e2420"; +} +.sh-regularfa-group-arrows-rotate:before { + content: "\e2419"; +} +.sh-regularfa-flask-vial:before { + content: "\e2418"; +} +.sh-regularfa-ferry:before { + content: "\e2417"; +} +.sh-regularfa-clipboard-user:before { + content: "\e2416"; +} +.sh-regularfa-bridge-water:before { + content: "\e2415"; +} +.sh-regularfa-bridge-lock:before { + content: "\e2414"; +} +.sh-regularfa-bridge-circle-xmark:before { + content: "\e2413"; +} +.sh-regularfa-bridge-circle-exclamation:before { + content: "\e2412"; +} +.sh-regularfa-bridge-circle-check:before { + content: "\e2411"; +} +.sh-regularfa-book-bookmark:before { + content: "\e2410"; +} +.sh-regularfa-bacterium:before { + content: "\e2409"; +} +.sh-regularfa-arrows-down-to-people:before { + content: "\e2408"; +} +.sh-regularfa-anchor-lock:before { + content: "\e2407"; +} +.sh-regularfa-anchor-circle-xmark:before { + content: "\e2406"; +} +.sh-regularfa-anchor-circle-exclamation:before { + content: "\e2405"; +} +.sh-regularfa-anchor-circle-check:before { + content: "\e2404"; +} +.sh-regularfa-window-frame-open:before { + content: "\e2403"; +} +.sh-regularfa-window-frame:before { + content: "\e2402"; +} +.sh-regularfa-washing-machine:before { + content: "\e2401"; +} +.sh-regularfa-vacuum-robot:before { + content: "\e2400"; +} +.sh-regularfa-vacuum:before { + content: "\e2399"; +} +.sh-regularfa-utensils-slash:before { + content: "\e2398"; +} +.sh-regularfa-utensils:before { + content: "\e2397"; +} +.sh-regularfa-toilet-paper-xmark:before { + content: "\e2396"; +} +.sh-regularfa-toilet-paper-under-slash:before { + content: "\e2395"; +} +.sh-regularfa-toilet-paper-under:before { + content: "\e2394"; +} +.sh-regularfa-toilet-paper-slash:before { + content: "\e2393"; +} +.sh-regularfa-toilet-paper-blank-under:before { + content: "\e2392"; +} +.sh-regularfa-toilet:before { + content: "\e2391"; +} +.sh-regularfa-stairs:before { + content: "\e2390"; +} +.sh-regularfa-square-ring:before { + content: "\e2389"; +} +.sh-regularfa-sprinkler-ceiling:before { + content: "\e2388"; +} +.sh-regularfa-sprinkler:before { + content: "\e2387"; +} +.sh-regularfa-soap:before { + content: "\e2386"; +} +.sh-regularfa-sink:before { + content: "\e2385"; +} +.sh-regularfa-shutters:before { + content: "\e2384"; +} +.sh-regularfa-shower-down:before { + content: "\e2383"; +} +.sh-regularfa-rug:before { + content: "\e2382"; +} +.sh-regularfa-refrigerator:before { + content: "\e2381"; +} +.sh-regularfa-pump-soap:before { + content: "\e2380"; +} +.sh-regularfa-plate-utensils:before { + content: "\e2379"; +} +.sh-regularfa-person-to-door:before { + content: "\e2378"; +} +.sh-regularfa-oven:before { + content: "\e2377"; +} +.sh-regularfa-microwave:before { + content: "\e2376"; +} +.sh-regularfa-loveseat:before { + content: "\e2375"; +} +.sh-regularfa-light-switch-on:before { + content: "\e2374"; +} +.sh-regularfa-light-switch-off:before { + content: "\e2373"; +} +.sh-regularfa-light-switch:before { + content: "\e2372"; +} +.sh-regularfa-light-ceiling:before { + content: "\e2371"; +} +.sh-regularfa-lightbulb-cfl-on:before { + content: "\e2370"; +} +.sh-regularfa-lamp-floor:before { + content: "\e2369"; +} +.sh-regularfa-lamp:before { + content: "\e2368"; +} +.sh-regularfa-knife:before { + content: "\e2367"; +} +.sh-regularfa-kitchen-set:before { + content: "\e2366"; +} +.sh-regularfa-jug-detergent:before { + content: "\e2365"; +} +.sh-regularfa-house-user:before { + content: "\e2364"; +} +.sh-regularfa-house-person-return:before { + content: "\e2363"; +} +.sh-regularfa-house-person-leave:before { + content: "\e2362"; +} +.sh-regularfa-house-chimney-user:before { + content: "\e2361"; +} +.sh-regularfa-fork-knife:before { + content: "\e2360"; +} +.sh-regularfa-fork:before { + content: "\e2359"; +} +.sh-regularfa-fire-hydrant:before { + content: "\e2358"; +} +.sh-regularfa-fan-table:before { + content: "\e2357"; +} +.sh-regularfa-dryer-heat:before { + content: "\e2356"; +} +.sh-regularfa-dryer:before { + content: "\e2355"; +} +.sh-regularfa-door-open:before { + content: "\e2354"; +} +.sh-regularfa-door-closed:before { + content: "\e2353"; +} +.sh-regularfa-couch:before { + content: "\e2352"; +} +.sh-regularfa-clothes-hanger:before { + content: "\e2351"; +} +.sh-regularfa-clock-desk:before { + content: "\e2350"; +} +.sh-regularfa-circle-sort-up:before { + content: "\e2349"; +} +.sh-regularfa-circle-sort-down:before { + content: "\e2348"; +} +.sh-regularfa-circle-sort:before { + content: "\e2347"; +} +.sh-regularfa-chair-office:before { + content: "\e2346"; +} +.sh-regularfa-chair:before { + content: "\e2345"; +} +.sh-regularfa-camera-security:before { + content: "\e2344"; +} +.sh-regularfa-box-tissue:before { + content: "\e2343"; +} +.sh-regularfa-blinds-raised:before { + content: "\e2342"; +} +.sh-regularfa-blinds-open:before { + content: "\e2341"; +} +.sh-regularfa-blinds:before { + content: "\e2340"; +} +.sh-regularfa-blanket-fire:before { + content: "\e2339"; +} +.sh-regularfa-blanket:before { + content: "\e2338"; +} +.sh-regularfa-bin-recycle:before { + content: "\e2337"; +} +.sh-regularfa-bin-bottles-recycle:before { + content: "\e2336"; +} +.sh-regularfa-bin-bottles:before { + content: "\e2335"; +} +.sh-regularfa-bed-front:before { + content: "\e2334"; +} +.sh-regularfa-bed-empty:before { + content: "\e2333"; +} +.sh-regularfa-bed-bunk:before { + content: "\e2332"; +} +.sh-regularfa-bag-seedling:before { + content: "\e2331"; +} +.sh-regularfa-arrow-up-from-water-pump:before { + content: "\e2330"; +} +.sh-regularfa-air-conditioner:before { + content: "\e2329"; +} +.sh-regularfa-wreath:before { + content: "\e2328"; +} +.sh-regularfa-tree-decorated:before { + content: "\e2327"; +} +.sh-regularfa-tree-christmas:before { + content: "\e2326"; +} +.sh-regularfa-star-christmas:before { + content: "\e2325"; +} +.sh-regularfa-sleigh:before { + content: "\e2324"; +} +.sh-regularfa-rings-wedding:before { + content: "\e2323"; +} +.sh-regularfa-ring-diamond:before { + content: "\e2322"; +} +.sh-regularfa-ornament:before { + content: "\e2321"; +} +.sh-regularfa-mistletoe:before { + content: "\e2320"; +} +.sh-regularfa-menorah:before { + content: "\e2319"; +} +.sh-regularfa-lights-holiday:before { + content: "\e2318"; +} +.sh-regularfa-holly-berry:before { + content: "\e2317"; +} +.sh-regularfa-gifts:before { + content: "\e2316"; +} +.sh-regularfa-fireplace:before { + content: "\e2315"; +} +.sh-regularfa-calendar-heart:before { + content: "\e2314"; +} +.sh-regularfa-angel:before { + content: "\e2313"; +} +.sh-regularfa-youtube:before { + content: "\e2312"; +} +.sh-regularfa-whatsapp:before { + content: "\e2311"; +} +.sh-regularfa-wechat:before { + content: "\e2310"; +} +.sh-regularfa-viber:before { + content: "\e2309"; +} +.sh-regularfa-twitter:before { + content: "\e2308"; +} +.sh-regularfa-tumblr:before { + content: "\e2307"; +} +.sh-regularfa-tiktok:before { + content: "\e2306"; +} +.sh-regularfa-telegram:before { + content: "\e2305"; +} +.sh-regularfa-snapfish:before { + content: "\e2304"; +} +.sh-regularfa-snapchat:before { + content: "\e2303"; +} +.sh-regularfa-skype:before { + content: "\e2302"; +} +.sh-regularfa-reddit:before { + content: "\e2301"; +} +.sh-regularfa-quora:before { + content: "\e2300"; +} +.sh-regularfa-pinterest:before { + content: "\e2299"; +} +.sh-regularfa-myspace:before { + content: "\e2298"; +} +.sh-regularfa-microsoft-teams:before { + content: "\e2297"; +} +.sh-regularfa-linkedin:before { + content: "\e2296"; +} +.sh-regularfa-instagram:before { + content: "\e2295"; +} +.sh-regularfa-hike:before { + content: "\e2294"; +} +.sh-regularfa-hangouts:before { + content: "\e2293"; +} +.sh-regularfa-flixster:before { + content: "\e2292"; +} +.sh-regularfa-facebook:before { + content: "\e2291"; +} +.sh-regularfa-dribbble:before { + content: "\e2290"; +} +.sh-regularfa-clutch:before { + content: "\e2289"; +} +.sh-regularfa-classmates:before { + content: "\e2288"; +} +.sh-regularfa-hand-wave:before { + content: "\e2287"; +} +.sh-regularfa-hands-praying:before { + content: "\e2286"; +} +.sh-regularfa-hand-sparkles:before { + content: "\e2285"; +} +.sh-regularfa-hands-holding-diamond:before { + content: "\e2284"; +} +.sh-regularfa-hands-holding:before { + content: "\e2283"; +} +.sh-regularfa-handshake-slash:before { + content: "\e2282"; +} +.sh-regularfa-hands-clapping:before { + content: "\e2281"; +} +.sh-regularfa-hands-bubbles:before { + content: "\e2280"; +} +.sh-regularfa-hands-bound:before { + content: "\e2279"; +} +.sh-regularfa-hand-point-up:before { + content: "\e2278"; +} +.sh-regularfa-hand-point-right:before { + content: "\e2277"; +} +.sh-regularfa-hand-point-ribbon:before { + content: "\e2276"; +} +.sh-regularfa-hand-point-left:before { + content: "\e2275"; +} +.sh-regularfa-hand-point-down:before { + content: "\e2274"; +} +.sh-regularfa-hand-middle-finger:before { + content: "\e2273"; +} +.sh-regularfa-hand-love:before { + content: "\e2272"; +} +.sh-regularfa-hand-horns:before { + content: "\e2271"; +} +.sh-regularfa-hand-holding-skull:before { + content: "\e2270"; +} +.sh-regularfa-hand-holding-medical:before { + content: "\e2269"; +} +.sh-regularfa-hand-holding-box:before { + content: "\e2268"; +} +.sh-regularfa-hand-holding:before { + content: "\e2267"; +} +.sh-regularfa-hand-fist:before { + content: "\e2266"; +} +.sh-regularfa-hand-fingers-crossed:before { + content: "\e2265"; +} +.sh-regularfa-hand-dots:before { + content: "\e2264"; +} +.sh-regularfa-hand-back-point-up:before { + content: "\e2263"; +} +.sh-regularfa-hand-back-point-right:before { + content: "\e2262"; +} +.sh-regularfa-hand-back-point-ribbon:before { + content: "\e2261"; +} +.sh-regularfa-hand-back-point-left:before { + content: "\e2260"; +} +.sh-regularfa-hand-back-point-down:before { + content: "\e2259"; +} +.sh-regularfa-tombstone-blank:before { + content: "\e2258"; +} +.sh-regularfa-tombstone:before { + content: "\e2257"; +} +.sh-regularfa-spider-web:before { + content: "\e2256"; +} +.sh-regularfa-skull:before { + content: "\e2255"; +} +.sh-regularfa-scarecrow:before { + content: "\e2254"; +} +.sh-regularfa-mask:before { + content: "\e2253"; +} +.sh-regularfa-knife-kitchen:before { + content: "\e2252"; +} +.sh-regularfa-jack-o-lantern:before { + content: "\e2251"; +} +.sh-regularfa-hockey-mask:before { + content: "\e2250"; +} +.sh-regularfa-coffin-cross:before { + content: "\e2249"; +} +.sh-regularfa-coffin:before { + content: "\e2248"; +} +.sh-regularfa-cloud-moon:before { + content: "\e2247"; +} +.sh-regularfa-claw-marks:before { + content: "\e2246"; +} +.sh-regularfa-candle-holder:before { + content: "\e2245"; +} +.sh-regularfa-broom:before { + content: "\e2244"; +} +.sh-regularfa-wreath-laurel:before { + content: "\e2243"; +} +.sh-regularfa-wand-sparkles:before { + content: "\e2242"; +} +.sh-regularfa-wand:before { + content: "\e2241"; +} +.sh-regularfa-vr-cardboard:before { + content: "\e2240"; +} +.sh-regularfa-treasure-chest:before { + content: "\e2239"; +} +.sh-regularfa-swords:before { + content: "\e2238"; +} +.sh-regularfa-sword:before { + content: "\e2237"; +} +.sh-regularfa-staff:before { + content: "\e2236"; +} +.sh-regularfa-square-full:before { + content: "\e2235"; +} +.sh-regularfa-sparkles:before { + content: "\e2234"; +} +.sh-regularfa-spade:before { + content: "\e2233"; +} +.sh-regularfa-sickle:before { + content: "\e2232"; +} +.sh-regularfa-shield-quartered:before { + content: "\e2231"; +} +.sh-regularfa-shield-halved:before { + content: "\e2230"; +} +.sh-regularfa-shield-cross:before { + content: "\e2229"; +} +.sh-regularfa-scythe:before { + content: "\e2228"; +} +.sh-regularfa-scroll-old:before { + content: "\e2227"; +} +.sh-regularfa-scroll:before { + content: "\e2226"; +} +.sh-regularfa-ring:before { + content: "\e2225"; +} +.sh-regularfa-puzzle-piece-simple:before { + content: "\e2224"; +} +.sh-regularfa-puzzle:before { + content: "\e2223"; +} +.sh-regularfa-pinball:before { + content: "\e2222"; +} +.sh-regularfa-person-pinball:before { + content: "\e2221"; +} +.sh-regularfa-nesting-dolls:before { + content: "\e2220"; +} +.sh-regularfa-mandolin:before { + content: "\e2219"; +} +.sh-regularfa-mace:before { + content: "\e2218"; +} +.sh-regularfa-joystick:before { + content: "\e2217"; +} +.sh-regularfa-helmet-battle:before { + content: "\e2216"; +} +.sh-regularfa-hand-holding-magic:before { + content: "\e2215"; +} +.sh-regularfa-hammer-war:before { + content: "\e2214"; +} +.sh-regularfa-ghost:before { + content: "\e2213"; +} +.sh-regularfa-gamepad-modern:before { + content: "\e2212"; +} +.sh-regularfa-game-board-simple:before { + content: "\e2211"; +} +.sh-regularfa-game-board:before { + content: "\e2210"; +} +.sh-regularfa-fire-flame:before { + content: "\e2209"; +} +.sh-regularfa-eye-evil:before { + content: "\e2208"; +} +.sh-regularfa-dreidel:before { + content: "\e2207"; +} +.sh-regularfa-dice-two:before { + content: "\e2206"; +} +.sh-regularfa-dice-three:before { + content: "\e2205"; +} +.sh-regularfa-dice-six:before { + content: "\e2204"; +} +.sh-regularfa-dice-one:before { + content: "\e2203"; +} +.sh-regularfa-dice-four:before { + content: "\e2202"; +} +.sh-regularfa-dice-five:before { + content: "\e2201"; +} +.sh-regularfa-dice-d20:before { + content: "\e2200"; +} +.sh-regularfa-dice-d12:before { + content: "\e2199"; +} +.sh-regularfa-dice-d10:before { + content: "\e2198"; +} +.sh-regularfa-dice-d8:before { + content: "\e2197"; +} +.sh-regularfa-dice-d6:before { + content: "\e2196"; +} +.sh-regularfa-dice-d4:before { + content: "\e2195"; +} +.sh-regularfa-dice:before { + content: "\e2194"; +} +.sh-regularfa-diamond1:before { + content: "\e2193"; +} +.sh-regularfa-dagger:before { + content: "\e2192"; +} +.sh-regularfa-club:before { + content: "\e2191"; +} +.sh-regularfa-chess-rook-piece:before { + content: "\e2190"; +} +.sh-regularfa-chess-rook:before { + content: "\e2189"; +} +.sh-regularfa-chess-queen-piece:before { + content: "\e2188"; +} +.sh-regularfa-chess-queen:before { + content: "\e2187"; +} +.sh-regularfa-chess-pawn-piece:before { + content: "\e2186"; +} +.sh-regularfa-chess-pawn:before { + content: "\e2185"; +} +.sh-regularfa-chess-knight-piece:before { + content: "\e2184"; +} +.sh-regularfa-chess-knight:before { + content: "\e2183"; +} +.sh-regularfa-chess-king-piece:before { + content: "\e2182"; +} +.sh-regularfa-chess-king:before { + content: "\e2181"; +} +.sh-regularfa-chess-clock-flip:before { + content: "\e2180"; +} +.sh-regularfa-chess-clock:before { + content: "\e2179"; +} +.sh-regularfa-chess-board:before { + content: "\e2178"; +} +.sh-regularfa-chess-bishop-piece:before { + content: "\e2177"; +} +.sh-regularfa-chess-bishop:before { + content: "\e2176"; +} +.sh-regularfa-chess:before { + content: "\e2175"; +} +.sh-regularfa-card-spade:before { + content: "\e2174"; +} +.sh-regularfa-cards-blank:before { + content: "\e2173"; +} +.sh-regularfa-cards:before { + content: "\e2172"; +} +.sh-regularfa-card-heart:before { + content: "\e2171"; +} +.sh-regularfa-card-diamond:before { + content: "\e2170"; +} +.sh-regularfa-card-club:before { + content: "\e2169"; +} +.sh-regularfa-bow-arrow:before { + content: "\e2168"; +} +.sh-regularfa-book-sparkles:before { + content: "\e2167"; +} +.sh-regularfa-book-skull:before { + content: "\e2166"; +} +.sh-regularfa-axe-battle:before { + content: "\e2165"; +} +.sh-regularfa-alien-8bit:before { + content: "\e2164"; +} +.sh-regularfa-watermelon-slice:before { + content: "\e2163"; +} +.sh-regularfa-tomato:before { + content: "\e2162"; +} +.sh-regularfa-strawberry:before { + content: "\e2161"; +} +.sh-regularfa-potato:before { + content: "\e2160"; +} +.sh-regularfa-pineapple:before { + content: "\e2159"; +} +.sh-regularfa-pepper:before { + content: "\e2158"; +} +.sh-regularfa-pear:before { + content: "\e2157"; +} +.sh-regularfa-peapod:before { + content: "\e2156"; +} +.sh-regularfa-peanuts:before { + content: "\e2155"; +} +.sh-regularfa-peanut:before { + content: "\e2154"; +} +.sh-regularfa-peach:before { + content: "\e2153"; +} +.sh-regularfa-onion:before { + content: "\e2152"; +} +.sh-regularfa-olive-branch:before { + content: "\e2151"; +} +.sh-regularfa-olive:before { + content: "\e2150"; +} +.sh-regularfa-mushroom:before { + content: "\e2149"; +} +.sh-regularfa-melon-slice:before { + content: "\e2148"; +} +.sh-regularfa-melon:before { + content: "\e2147"; +} +.sh-regularfa-mango:before { + content: "\e2146"; +} +.sh-regularfa-leafy-green:before { + content: "\e2145"; +} +.sh-regularfa-kiwi-fruit:before { + content: "\e2144"; +} +.sh-regularfa-grapes:before { + content: "\e2143"; +} +.sh-regularfa-garlic:before { + content: "\e2142"; +} +.sh-regularfa-eggplant:before { + content: "\e2141"; +} +.sh-regularfa-cucumber:before { + content: "\e2140"; +} +.sh-regularfa-crate-empty:before { + content: "\e2139"; +} +.sh-regularfa-coconut:before { + content: "\e2138"; +} +.sh-regularfa-citrus-slice:before { + content: "\e2137"; +} +.sh-regularfa-citrus:before { + content: "\e2136"; +} +.sh-regularfa-chestnut:before { + content: "\e2135"; +} +.sh-regularfa-cherries:before { + content: "\e2134"; +} +.sh-regularfa-broccoli:before { + content: "\e2133"; +} +.sh-regularfa-blueberries:before { + content: "\e2132"; +} +.sh-regularfa-banana:before { + content: "\e2131"; +} +.sh-regularfa-avocado:before { + content: "\e2130"; +} +.sh-regularfa-apple-core:before { + content: "\e2129"; +} +.sh-regularfa-wine-glass-empty:before { + content: "\e2128"; +} +.sh-regularfa-wine-glass:before { + content: "\e2127"; +} +.sh-regularfa-wine-bottle:before { + content: "\e2126"; +} +.sh-regularfa-whiskey-glass-ice:before { + content: "\e2125"; +} +.sh-regularfa-whiskey-glass:before { + content: "\e2124"; +} +.sh-regularfa-wheat-slash:before { + content: "\e2123"; +} +.sh-regularfa-wheat-awn-slash:before { + content: "\e2122"; +} +.sh-regularfa-wheat-awn:before { + content: "\e2121"; +} +.sh-regularfa-wheat:before { + content: "\e2120"; +} +.sh-regularfa-waffle:before { + content: "\e2119"; +} +.sh-regularfa-user-chef:before { + content: "\e2118"; +} +.sh-regularfa-turkey:before { + content: "\e2117"; +} +.sh-regularfa-tamale:before { + content: "\e2116"; +} +.sh-regularfa-taco:before { + content: "\e2115"; +} +.sh-regularfa-sushi-roll:before { + content: "\e2114"; +} +.sh-regularfa-sushi:before { + content: "\e2113"; +} +.sh-regularfa-stroopwafel:before { + content: "\e2112"; +} +.sh-regularfa-steak:before { + content: "\e2111"; +} +.sh-regularfa-sausage:before { + content: "\e2110"; +} +.sh-regularfa-sandwich:before { + content: "\e2109"; +} +.sh-regularfa-salt-shaker:before { + content: "\e2108"; +} +.sh-regularfa-salad:before { + content: "\e2107"; +} +.sh-regularfa-pumpkin:before { + content: "\e2106"; +} +.sh-regularfa-pot-food:before { + content: "\e2105"; +} +.sh-regularfa-popcorn:before { + content: "\e2104"; +} +.sh-regularfa-plate-wheat:before { + content: "\e2103"; +} +.sh-regularfa-pizza-slice:before { + content: "\e2102"; +} +.sh-regularfa-pizza:before { + content: "\e2101"; +} +.sh-regularfa-pie:before { + content: "\e2100"; +} +.sh-regularfa-pepper-hot:before { + content: "\e2099"; +} +.sh-regularfa-pan-frying:before { + content: "\e2098"; +} +.sh-regularfa-pan-food:before { + content: "\e2097"; +} +.sh-regularfa-pancakes:before { + content: "\e2096"; +} +.sh-regularfa-mug-tea:before { + content: "\e2095"; +} +.sh-regularfa-mug-saucer:before { + content: "\e2094"; +} +.sh-regularfa-mug-marshmallows:before { + content: "\e2093"; +} +.sh-regularfa-mug-hot:before { + content: "\e2092"; +} +.sh-regularfa-mug:before { + content: "\e2091"; +} +.sh-regularfa-meat:before { + content: "\e2090"; +} +.sh-regularfa-martini-glass-citrus:before { + content: "\e2089"; +} +.sh-regularfa-martini-glass:before { + content: "\e2088"; +} +.sh-regularfa-jug-bottle:before { + content: "\e2087"; +} +.sh-regularfa-jug:before { + content: "\e2086"; +} +.sh-regularfa-jar-wheat:before { + content: "\e2085"; +} +.sh-regularfa-jar:before { + content: "\e2084"; +} +.sh-regularfa-hotdog:before { + content: "\e2083"; +} +.sh-regularfa-honey-pot:before { + content: "\e2082"; +} +.sh-regularfa-hat-chef:before { + content: "\e2081"; +} +.sh-regularfa-glass-water-droplet:before { + content: "\e2080"; +} +.sh-regularfa-glass-water:before { + content: "\e2079"; +} +.sh-regularfa-glass-half:before { + content: "\e2078"; +} +.sh-regularfa-glass-empty:before { + content: "\e2077"; +} +.sh-regularfa-glass-citrus:before { + content: "\e2076"; +} +.sh-regularfa-glass1:before { + content: "\e2075"; +} +.sh-regularfa-gingerbread-man:before { + content: "\e2074"; +} +.sh-regularfa-french-fries:before { + content: "\e2073"; +} +.sh-regularfa-fondue-pot:before { + content: "\e2072"; +} +.sh-regularfa-flatbread-stuffed:before { + content: "\e2071"; +} +.sh-regularfa-flatbread:before { + content: "\e2070"; +} +.sh-regularfa-flask-round-potion:before { + content: "\e2069"; +} +.sh-regularfa-flask-round-poison:before { + content: "\e2068"; +} +.sh-regularfa-falafel:before { + content: "\e2067"; +} +.sh-regularfa-egg-fried:before { + content: "\e2066"; +} +.sh-regularfa-egg:before { + content: "\e2065"; +} +.sh-regularfa-drumstick-bite:before { + content: "\e2064"; +} +.sh-regularfa-drumstick:before { + content: "\e2063"; +} +.sh-regularfa-donut:before { + content: "\e2062"; +} +.sh-regularfa-custard:before { + content: "\e2061"; +} +.sh-regularfa-cup-togo:before { + content: "\e2060"; +} +.sh-regularfa-cup-straw-swoosh:before { + content: "\e2059"; +} +.sh-regularfa-cup-straw:before { + content: "\e2058"; +} +.sh-regularfa-croissant:before { + content: "\e2057"; +} +.sh-regularfa-crate-apple:before { + content: "\e2056"; +} +.sh-regularfa-corn:before { + content: "\e2055"; +} +.sh-regularfa-cookie:before { + content: "\e2054"; +} +.sh-regularfa-coffee-beans:before { + content: "\e2053"; +} +.sh-regularfa-coffee-bean:before { + content: "\e2052"; +} +.sh-regularfa-cloud-meatball:before { + content: "\e2051"; +} +.sh-regularfa-chopsticks:before { + content: "\e2050"; +} +.sh-regularfa-cheese-swiss:before { + content: "\e2049"; +} +.sh-regularfa-cheese:before { + content: "\e2048"; +} +.sh-regularfa-champagne-glasses:before { + content: "\e2047"; +} +.sh-regularfa-champagne-glass:before { + content: "\e2046"; +} +.sh-regularfa-carrot:before { + content: "\e2045"; +} +.sh-regularfa-can-food:before { + content: "\e2044"; +} +.sh-regularfa-candy-corn:before { + content: "\e2043"; +} +.sh-regularfa-candy-cane:before { + content: "\e2042"; +} +.sh-regularfa-butter:before { + content: "\e2041"; +} +.sh-regularfa-burger-soda:before { + content: "\e2040"; +} +.sh-regularfa-burger-lettuce:before { + content: "\e2039"; +} +.sh-regularfa-burger-glass:before { + content: "\e2038"; +} +.sh-regularfa-burger-fries:before { + content: "\e2037"; +} +.sh-regularfa-burger-cheese:before { + content: "\e2036"; +} +.sh-regularfa-burger:before { + content: "\e2035"; +} +.sh-regularfa-bread-slice-butter:before { + content: "\e2034"; +} +.sh-regularfa-bread-slice:before { + content: "\e2033"; +} +.sh-regularfa-bread-loaf:before { + content: "\e2032"; +} +.sh-regularfa-bowl-spoon:before { + content: "\e2031"; +} +.sh-regularfa-bowl-scoops:before { + content: "\e2030"; +} +.sh-regularfa-bowl-scoop:before { + content: "\e2029"; +} +.sh-regularfa-bowl-rice:before { + content: "\e2028"; +} +.sh-regularfa-bowl-hot:before { + content: "\e2027"; +} +.sh-regularfa-bowl-food:before { + content: "\e2026"; +} +.sh-regularfa-bowl-chopsticks-noodles:before { + content: "\e2025"; +} +.sh-regularfa-bowl-chopsticks:before { + content: "\e2024"; +} +.sh-regularfa-bottle-droplet:before { + content: "\e2023"; +} +.sh-regularfa-bone:before { + content: "\e2022"; +} +.sh-regularfa-blender:before { + content: "\e2021"; +} +.sh-regularfa-beer-mug-empty:before { + content: "\e2020"; +} +.sh-regularfa-baguette:before { + content: "\e2019"; +} +.sh-regularfa-bagel:before { + content: "\e2018"; +} +.sh-regularfa-bacon:before { + content: "\e2017"; +} +.sh-regularfa-waveform-lines:before { + content: "\e2016"; +} +.sh-regularfa-waveform:before { + content: "\e2015"; +} +.sh-regularfa-video-arrow-up-right:before { + content: "\e2014"; +} +.sh-regularfa-video-arrow-down-left:before { + content: "\e2013"; +} +.sh-regularfa-ticket1:before { + content: "\e2012"; +} +.sh-regularfa-standard-definition:before { + content: "\e2011"; +} +.sh-regularfa-screencast:before { + content: "\e2010"; +} +.sh-regularfa-photo-film-music:before { + content: "\e2009"; +} +.sh-regularfa-microphone-stand:before { + content: "\e2008"; +} +.sh-regularfa-head-side-headphones:before { + content: "\e2007"; +} +.sh-regularfa-gif:before { + content: "\e2006"; +} +.sh-regularfa-film-slash:before { + content: "\e2005"; +} +.sh-regularfa-film-simple:before { + content: "\e2004"; +} +.sh-regularfa-film-canister:before { + content: "\e2003"; +} +.sh-regularfa-face-viewfinder:before { + content: "\e2002"; +} +.sh-regularfa-drone-front:before { + content: "\e2001"; +} +.sh-regularfa-drone:before { + content: "\e2000"; +} +.sh-regularfa-cloud-music:before { + content: "\e1999"; +} +.sh-regularfa-clapperboard-play:before { + content: "\e1998"; +} +.sh-regularfa-clapperboard:before { + content: "\e1997"; +} +.sh-regularfa-circle-waveform-lines:before { + content: "\e1996"; +} +.sh-regularfa-circle-video:before { + content: "\e1995"; +} +.sh-regularfa-circle-microphone-lines:before { + content: "\e1994"; +} +.sh-regularfa-circle-microphone:before { + content: "\e1993"; +} +.sh-regularfa-cassette-vhs:before { + content: "\e1992"; +} +.sh-regularfa-cassette-betamax:before { + content: "\e1991"; +} +.sh-regularfa-camera-movie:before { + content: "\e1990"; +} +.sh-regularfa-camera-cctv:before { + content: "\e1989"; +} +.sh-regularfa-camcorder:before { + content: "\e1988"; +} +.sh-regularfa-amp-guitar:before { + content: "\e1987"; +} +.sh-regularfa-album-collection:before { + content: "\e1986"; +} +.sh-regularfa-airplay:before { + content: "\e1985"; +} +.sh-regularfa-360-degrees:before { + content: "\e1984"; +} +.sh-regularfa-photo-film:before { + content: "\e1983"; +} +.sh-regularfa-page-caret-up:before { + content: "\e1982"; +} +.sh-regularfa-page-caret-down:before { + content: "\e1981"; +} +.sh-regularfa-page:before { + content: "\e1980"; +} +.sh-regularfa-note-sticky:before { + content: "\e1979"; +} +.sh-regularfa-memo-pad:before { + content: "\e1978"; +} +.sh-regularfa-memo-circle-info:before { + content: "\e1977"; +} +.sh-regularfa-memo-circle-check:before { + content: "\e1976"; +} +.sh-regularfa-memo:before { + content: "\e1975"; +} +.sh-regularfa-folder-user:before { + content: "\e1974"; +} +.sh-regularfa-folder-music:before { + content: "\e1973"; +} +.sh-regularfa-folder-medical:before { + content: "\e1972"; +} +.sh-regularfa-folder-magnifying-glass:before { + content: "\e1971"; +} +.sh-regularfa-folder-image:before { + content: "\e1970"; +} +.sh-regularfa-folder-heart:before { + content: "\e1969"; +} +.sh-regularfa-folder-grid:before { + content: "\e1968"; +} +.sh-regularfa-folder-gear:before { + content: "\e1967"; +} +.sh-regularfa-folder-closed:before { + content: "\e1966"; +} +.sh-regularfa-folder-bookmark:before { + content: "\e1965"; +} +.sh-regularfa-file-zip:before { + content: "\e1964"; +} +.sh-regularfa-file-xmark:before { + content: "\e1963"; +} +.sh-regularfa-file-slash:before { + content: "\e1962"; +} +.sh-regularfa-file-shield:before { + content: "\e1961"; +} +.sh-regularfa-files:before { + content: "\e1960"; +} +.sh-regularfa-file-plus-minus:before { + content: "\e1959"; +} +.sh-regularfa-file-plus:before { + content: "\e1958"; +} +.sh-regularfa-file-pen:before { + content: "\e1957"; +} +.sh-regularfa-file-pdf:before { + content: "\e1956"; +} +.sh-regularfa-file-music:before { + content: "\e1955"; +} +.sh-regularfa-file-minus:before { + content: "\e1954"; +} +.sh-regularfa-file-magnifying-glass:before { + content: "\e1953"; +} +.sh-regularfa-file-lock:before { + content: "\e1952"; +} +.sh-regularfa-file-import:before { + content: "\e1951"; +} +.sh-regularfa-file-heart:before { + content: "\e1950"; +} +.sh-regularfa-file-export:before { + content: "\e1949"; +} +.sh-regularfa-file-doc:before { + content: "\e1948"; +} +.sh-regularfa-file-csv:before { + content: "\e1947"; +} +.sh-regularfa-file-circle-xmark:before { + content: "\e1946"; +} +.sh-regularfa-file-circle-question:before { + content: "\e1945"; +} +.sh-regularfa-file-circle-minus:before { + content: "\e1944"; +} +.sh-regularfa-file-circle-exclamation:before { + content: "\e1943"; +} +.sh-regularfa-file-circle-check:before { + content: "\e1942"; +} +.sh-regularfa-file-check:before { + content: "\e1941"; +} +.sh-regularfa-file-binary:before { + content: "\e1940"; +} +.sh-regularfa-file-arrow-up:before { + content: "\e1939"; +} +.sh-regularfa-file-arrow-down:before { + content: "\e1938"; +} +.sh-regularfa-wind-turbine:before { + content: "\e1937"; +} +.sh-regularfa-water:before { + content: "\e1936"; +} +.sh-regularfa-vent-damper:before { + content: "\e1935"; +} +.sh-regularfa-utility-pole-double:before { + content: "\e1934"; +} +.sh-regularfa-utility-pole:before { + content: "\e1933"; +} +.sh-regularfa-transformer-bolt:before { + content: "\e1932"; +} +.sh-regularfa-solar-panel:before { + content: "\e1931"; +} +.sh-regularfa-plug-circle-xmark:before { + content: "\e1930"; +} +.sh-regularfa-plug-circle-plus:before { + content: "\e1929"; +} +.sh-regularfa-plug-circle-minus:before { + content: "\e1928"; +} +.sh-regularfa-plug-circle-exclamation:before { + content: "\e1927"; +} +.sh-regularfa-plug-circle-check:before { + content: "\e1926"; +} +.sh-regularfa-plug-circle-bolt:before { + content: "\e1925"; +} +.sh-regularfa-pipe-valve:before { + content: "\e1924"; +} +.sh-regularfa-pipe-section:before { + content: "\e1923"; +} +.sh-regularfa-pipe-collar:before { + content: "\e1922"; +} +.sh-regularfa-pipe-circle-check:before { + content: "\e1921"; +} +.sh-regularfa-pedestal:before { + content: "\e1920"; +} +.sh-regularfa-outlet:before { + content: "\e1919"; +} +.sh-regularfa-meter-fire:before { + content: "\e1918"; +} +.sh-regularfa-meter-droplet:before { + content: "\e1917"; +} +.sh-regularfa-meter-bolt:before { + content: "\e1916"; +} +.sh-regularfa-manhole:before { + content: "\e1915"; +} +.sh-regularfa-lightbulb-cfl:before { + content: "\e1914"; +} +.sh-regularfa-lamp-street:before { + content: "\e1913"; +} +.sh-regularfa-fire-flame-simple:before { + content: "\e1912"; +} +.sh-regularfa-fan:before { + content: "\e1911"; +} +.sh-regularfa-explosion:before { + content: "\e1910"; +} +.sh-regularfa-burrito:before { + content: "\e1909"; +} +.sh-regularfa-battery-slash:before { + content: "\e1908"; +} +.sh-regularfa-battery-bolt:before { + content: "\e1907"; +} +.sh-regularfa-face-zipper:before { + content: "\e1906"; +} +.sh-regularfa-face-zany:before { + content: "\e1905"; +} +.sh-regularfa-face-worried:before { + content: "\e1904"; +} +.sh-regularfa-face-woozy:before { + content: "\e1903"; +} +.sh-regularfa-face-weary:before { + content: "\e1902"; +} +.sh-regularfa-face-vomit:before { + content: "\e1901"; +} +.sh-regularfa-face-unamused:before { + content: "\e1900"; +} +.sh-regularfa-face-tongue-sweat:before { + content: "\e1899"; +} +.sh-regularfa-face-tongue-money:before { + content: "\e1898"; +} +.sh-regularfa-face-tissue:before { + content: "\e1897"; +} +.sh-regularfa-face-tired:before { + content: "\e1896"; +} +.sh-regularfa-face-thinking:before { + content: "\e1895"; +} +.sh-regularfa-face-thermometer:before { + content: "\e1894"; +} +.sh-regularfa-face-swear:before { + content: "\e1893"; +} +.sh-regularfa-face-surprise:before { + content: "\e1892"; +} +.sh-regularfa-face-sunglasses:before { + content: "\e1891"; +} +.sh-regularfa-face-spiral-eyes:before { + content: "\e1890"; +} +.sh-regularfa-face-smirking:before { + content: "\e1889"; +} +.sh-regularfa-face-smiling-hands:before { + content: "\e1888"; +} +.sh-regularfa-face-smile-wink:before { + content: "\e1887"; +} +.sh-regularfa-face-smile-upside-down:before { + content: "\e1886"; +} +.sh-regularfa-face-smile-tongue:before { + content: "\e1885"; +} +.sh-regularfa-face-smile-tear:before { + content: "\e1884"; +} +.sh-regularfa-face-smile-relaxed:before { + content: "\e1883"; +} +.sh-regularfa-face-smile-horns:before { + content: "\e1882"; +} +.sh-regularfa-face-smile-hearts:before { + content: "\e1881"; +} +.sh-regularfa-face-smile-halo:before { + content: "\e1880"; +} +.sh-regularfa-face-smile-beam:before { + content: "\e1879"; +} +.sh-regularfa-face-sleepy:before { + content: "\e1878"; +} +.sh-regularfa-face-sleeping:before { + content: "\e1877"; +} +.sh-regularfa-face-shush:before { + content: "\e1876"; +} +.sh-regularfa-face-scream:before { + content: "\e1875"; +} +.sh-regularfa-face-saluting:before { + content: "\e1874"; +} +.sh-regularfa-face-sad-tear:before { + content: "\e1873"; +} +.sh-regularfa-face-sad-sweat:before { + content: "\e1872"; +} +.sh-regularfa-face-sad-cry:before { + content: "\e1871"; +} +.sh-regularfa-face-rolling-eyes:before { + content: "\e1870"; +} +.sh-regularfa-face-relieved:before { + content: "\e1869"; +} +.sh-regularfa-face-raised-eyebrow:before { + content: "\e1868"; +} +.sh-regularfa-face-pouting:before { + content: "\e1867"; +} +.sh-regularfa-face-pleading:before { + content: "\e1866"; +} +.sh-regularfa-face-persevering:before { + content: "\e1865"; +} +.sh-regularfa-face-pensive:before { + content: "\e1864"; +} +.sh-regularfa-face-party:before { + content: "\e1863"; +} +.sh-regularfa-face-nose-steam:before { + content: "\e1862"; +} +.sh-regularfa-face-nauseated:before { + content: "\e1861"; +} +.sh-regularfa-face-monocle:before { + content: "\e1860"; +} +.sh-regularfa-face-melting:before { + content: "\e1859"; +} +.sh-regularfa-face-meh-blank:before { + content: "\e1858"; +} +.sh-regularfa-face-mask:before { + content: "\e1857"; +} +.sh-regularfa-face-lying:before { + content: "\e1856"; +} +.sh-regularfa-face-laugh-wink:before { + content: "\e1855"; +} +.sh-regularfa-face-laugh-squint:before { + content: "\e1854"; +} +.sh-regularfa-face-laugh-beam:before { + content: "\e1853"; +} +.sh-regularfa-face-laugh:before { + content: "\e1852"; +} +.sh-regularfa-face-kiss-wink-heart:before { + content: "\e1851"; +} +.sh-regularfa-face-kiss-closed-eyes:before { + content: "\e1850"; +} +.sh-regularfa-face-kiss-beam:before { + content: "\e1849"; +} +.sh-regularfa-face-kiss:before { + content: "\e1848"; +} +.sh-regularfa-face-icicles:before { + content: "\e1847"; +} +.sh-regularfa-face-hushed:before { + content: "\e1846"; +} +.sh-regularfa-face-holding-back-tears:before { + content: "\e1845"; +} +.sh-regularfa-face-head-bandage:before { + content: "\e1844"; +} +.sh-regularfa-face-hand-yawn:before { + content: "\e1843"; +} +.sh-regularfa-face-hand-peeking:before { + content: "\e1842"; +} +.sh-regularfa-face-hand-over-mouth:before { + content: "\e1841"; +} +.sh-regularfa-face-grin-wink:before { + content: "\e1840"; +} +.sh-regularfa-face-grin-wide:before { + content: "\e1839"; +} +.sh-regularfa-face-grin-tongue-wink:before { + content: "\e1838"; +} +.sh-regularfa-face-grin-tongue-squint:before { + content: "\e1837"; +} +.sh-regularfa-face-grin-tongue:before { + content: "\e1836"; +} +.sh-regularfa-face-grin-tears:before { + content: "\e1835"; +} +.sh-regularfa-face-grin-stars:before { + content: "\e1834"; +} +.sh-regularfa-face-grin-squint-tears:before { + content: "\e1833"; +} +.sh-regularfa-face-grin-squint:before { + content: "\e1832"; +} +.sh-regularfa-face-grin-hearts:before { + content: "\e1831"; +} +.sh-regularfa-face-grin-beam-sweat:before { + content: "\e1830"; +} +.sh-regularfa-face-grin-beam:before { + content: "\e1829"; +} +.sh-regularfa-face-grin:before { + content: "\e1828"; +} +.sh-regularfa-face-grimace:before { + content: "\e1827"; +} +.sh-regularfa-face-glasses:before { + content: "\e1826"; +} +.sh-regularfa-face-frown-slight:before { + content: "\e1825"; +} +.sh-regularfa-face-frown-open:before { + content: "\e1824"; +} +.sh-regularfa-face-flushed:before { + content: "\e1823"; +} +.sh-regularfa-face-fearful:before { + content: "\e1822"; +} +.sh-regularfa-face-eyes-xmarks:before { + content: "\e1821"; +} +.sh-regularfa-face-expressionless:before { + content: "\e1820"; +} +.sh-regularfa-face-explode:before { + content: "\e1819"; +} +.sh-regularfa-face-exhaling:before { + content: "\e1818"; +} +.sh-regularfa-face-drooling:before { + content: "\e1817"; +} +.sh-regularfa-face-downcast-sweat:before { + content: "\e1816"; +} +.sh-regularfa-face-dotted:before { + content: "\e1815"; +} +.sh-regularfa-face-dizzy:before { + content: "\e1814"; +} +.sh-regularfa-face-disguise:before { + content: "\e1813"; +} +.sh-regularfa-face-disappointed:before { + content: "\e1812"; +} +.sh-regularfa-face-diagonal-mouth:before { + content: "\e1811"; +} +.sh-regularfa-face-cowboy-hat:before { + content: "\e1810"; +} +.sh-regularfa-face-confused:before { + content: "\e1809"; +} +.sh-regularfa-face-confounded:before { + content: "\e1808"; +} +.sh-regularfa-face-clouds:before { + content: "\e1807"; +} +.sh-regularfa-face-beam-hand-over-mouth:before { + content: "\e1806"; +} +.sh-regularfa-face-astonished:before { + content: "\e1805"; +} +.sh-regularfa-face-anxious-sweat:before { + content: "\e1804"; +} +.sh-regularfa-face-anguished:before { + content: "\e1803"; +} +.sh-regularfa-face-angry-horns:before { + content: "\e1802"; +} +.sh-regularfa-face-angry:before { + content: "\e1801"; +} +.sh-regularfa-user-graduate:before { + content: "\e1800"; +} +.sh-regularfa-screen-users:before { + content: "\e1799"; +} +.sh-regularfa-pen-paintbrush:before { + content: "\e1798"; +} +.sh-regularfa-microscope:before { + content: "\e1797"; +} +.sh-regularfa-masks-theater:before { + content: "\e1796"; +} +.sh-regularfa-file-laptop:before { + content: "\e1795"; +} +.sh-regularfa-globe-stand:before { + content: "\e1794"; +} +.sh-regularfa-glasses-round:before { + content: "\e1793"; +} +.sh-regularfa-file-certificate:before { + content: "\e1792"; +} +.sh-regularfa-diploma:before { + content: "\e1791"; +} +.sh-regularfa-chalkboard-user:before { + content: "\e1790"; +} +.sh-regularfa-chalkboard:before { + content: "\e1789"; +} +.sh-regularfa-bus-school:before { + content: "\e1788"; +} +.sh-regularfa-books:before { + content: "\e1787"; +} +.sh-regularfa-book-open-reader:before { + content: "\e1786"; +} +.sh-regularfa-book-open-cover:before { + content: "\e1785"; +} +.sh-regularfa-book-open:before { + content: "\e1784"; +} +.sh-regularfa-book-copy:before { + content: "\e1783"; +} +.sh-regularfa-book-blank:before { + content: "\e1782"; +} +.sh-regularfa-award:before { + content: "\e1781"; +} +.sh-regularfa-atom-simple:before { + content: "\e1780"; +} +.sh-regularfa-atom:before { + content: "\e1779"; +} +.sh-regularfa-trash-xmark:before { + content: "\e1778"; +} +.sh-regularfa-trash-undo:before { + content: "\e1777"; +} +.sh-regularfa-trash-slash:before { + content: "\e1776"; +} +.sh-regularfa-trash-plus:before { + content: "\e1775"; +} +.sh-regularfa-trash-can-undo:before { + content: "\e1774"; +} +.sh-regularfa-trash-can-slash:before { + content: "\e1773"; +} +.sh-regularfa-trash-can-plus:before { + content: "\e1772"; +} +.sh-regularfa-trash-can-list:before { + content: "\e1771"; +} +.sh-regularfa-trash-can-clock:before { + content: "\e1770"; +} +.sh-regularfa-trash-can-check:before { + content: "\e1769"; +} +.sh-regularfa-trash-can-arrow-up:before { + content: "\e1768"; +} +.sh-regularfa-trash-arrow-up:before { + content: "\e1767"; +} +.sh-regularfa-square-ellipsis-vertical:before { + content: "\e1766"; +} +.sh-regularfa-square-ellipsis:before { + content: "\e1765"; +} +.sh-regularfa-sliders-up:before { + content: "\e1764"; +} +.sh-regularfa-sliders-simple:before { + content: "\e1763"; +} +.sh-regularfa-pen-swirl:before { + content: "\e1762"; +} +.sh-regularfa-pen-slash:before { + content: "\e1761"; +} +.sh-regularfa-pen-line:before { + content: "\e1760"; +} +.sh-regularfa-pen-field:before { + content: "\e1759"; +} +.sh-regularfa-pen-fancy-slash:before { + content: "\e1758"; +} +.sh-regularfa-pen-clip-slash:before { + content: "\e1757"; +} +.sh-regularfa-pencil-slash:before { + content: "\e1756"; +} +.sh-regularfa-octagon-check:before { + content: "\e1755"; +} +.sh-regularfa-hexagon-check:before { + content: "\e1754"; +} +.sh-regularfa-grip-vertical:before { + content: "\e1753"; +} +.sh-regularfa-grip-lines-vertical:before { + content: "\e1752"; +} +.sh-regularfa-grip-lines:before { + content: "\e1751"; +} +.sh-regularfa-grip-dots-vertical:before { + content: "\e1750"; +} +.sh-regularfa-grip-dots:before { + content: "\e1749"; +} +.sh-regularfa-grip:before { + content: "\e1748"; +} +.sh-regularfa-grid-round-5:before { + content: "\e1747"; +} +.sh-regularfa-grid-round-4:before { + content: "\e1746"; +} +.sh-regularfa-grid-round-2:before { + content: "\e1745"; +} +.sh-regularfa-grid-round:before { + content: "\e1744"; +} +.sh-regularfa-ellipsis-stroke-vertical:before { + content: "\e1743"; +} +.sh-regularfa-ellipsis-stroke:before { + content: "\e1742"; +} +.sh-regularfa-dial-off:before { + content: "\e1741"; +} +.sh-regularfa-dial-min:before { + content: "\e1740"; +} +.sh-regularfa-dial-med-low:before { + content: "\e1739"; +} +.sh-regularfa-dial-med:before { + content: "\e1738"; +} +.sh-regularfa-dial-max:before { + content: "\e1737"; +} +.sh-regularfa-dial-low:before { + content: "\e1736"; +} +.sh-regularfa-dial-high:before { + content: "\e1735"; +} +.sh-regularfa-dial:before { + content: "\e1734"; +} +.sh-regularfa-delete-right:before { + content: "\e1733"; +} +.sh-regularfa-delete-left:before { + content: "\e1732"; +} +.sh-regularfa-dash:before { + content: "\e1731"; +} +.sh-regularfa-command:before { + content: "\e1730"; +} +.sh-regularfa-circle-trash:before { + content: "\e1729"; +} +.sh-regularfa-circle-ellipsis-vertical:before { + content: "\e1728"; +} +.sh-regularfa-circle-ellipsis:before { + content: "\e1727"; +} +.sh-regularfa-check-double:before { + content: "\e1726"; +} +.sh-regularfa-bandage:before { + content: "\e1725"; +} +.sh-regularfa-xmarks-lines:before { + content: "\e1724"; +} +.sh-regularfa-wind:before { + content: "\e1723"; +} +.sh-regularfa-wheat-awn-circle-exclamation:before { + content: "\e1722"; +} +.sh-regularfa-volcano:before { + content: "\e1721"; +} +.sh-regularfa-tornado:before { + content: "\e1720"; +} +.sh-regularfa-temperature-arrow-up:before { + content: "\e1719"; +} +.sh-regularfa-temperature-arrow-down:before { + content: "\e1718"; +} +.sh-regularfa-sun-plant-wilt:before { + content: "\e1717"; +} +.sh-regularfa-plant-wilt:before { + content: "\e1716"; +} +.sh-regularfa-person-walking-dashed-line-arrow-right:before { + content: "\e1715"; +} +.sh-regularfa-person-walking-arrow-right:before { + content: "\e1714"; +} +.sh-regularfa-person-walking-arrow-loop-left:before { + content: "\e1713"; +} +.sh-regularfa-person-rifle:before { + content: "\e1712"; +} +.sh-regularfa-person-drowning:before { + content: "\e1711"; +} +.sh-regularfa-hurricane:before { + content: "\e1710"; +} +.sh-regularfa-house-tsunami:before { + content: "\e1709"; +} +.sh-regularfa-house-flood-water-circle-arrow-right:before { + content: "\e1708"; +} +.sh-regularfa-house-flood-water:before { + content: "\e1707"; +} +.sh-regularfa-hill-rockslide:before { + content: "\e1706"; +} +.sh-regularfa-hill-avalanche:before { + content: "\e1705"; +} +.sh-regularfa-helmet-un:before { + content: "\e1704"; +} +.sh-regularfa-heat:before { + content: "\e1703"; +} +.sh-regularfa-cloud-showers-water:before { + content: "\e1702"; +} +.sh-regularfa-cloud-showers-heavy:before { + content: "\e1701"; +} +.sh-regularfa-cloud-bolt:before { + content: "\e1700"; +} +.sh-regularfa-child-combatant:before { + content: "\e1699"; +} +.sh-regularfa-burst:before { + content: "\e1698"; +} +.sh-regularfa-biohazard:before { + content: "\e1697"; +} +.sh-regularfa-watch-calculator:before { + content: "\e1696"; +} +.sh-regularfa-usb-drive:before { + content: "\e1695"; +} +.sh-regularfa-typewriter:before { + content: "\e1694"; +} +.sh-regularfa-tv-retro:before { + content: "\e1693"; +} +.sh-regularfa-tv-music:before { + content: "\e1692"; +} +.sh-regularfa-tachograph-digital:before { + content: "\e1691"; +} +.sh-regularfa-speakers:before { + content: "\e1690"; +} +.sh-regularfa-speaker:before { + content: "\e1689"; +} +.sh-regularfa-sim-cards:before { + content: "\e1688"; +} +.sh-regularfa-sim-card:before { + content: "\e1687"; +} +.sh-regularfa-sd-cards:before { + content: "\e1686"; +} +.sh-regularfa-sd-card:before { + content: "\e1685"; +} +.sh-regularfa-mp3-player:before { + content: "\e1684"; +} +.sh-regularfa-microchip-ai:before { + content: "\e1683"; +} +.sh-regularfa-meter:before { + content: "\e1682"; +} +.sh-regularfa-memory:before { + content: "\e1681"; +} +.sh-regularfa-laptop-slash:before { + content: "\e1680"; +} +.sh-regularfa-laptop-binary:before { + content: "\e1679"; +} +.sh-regularfa-laptop-arrow-down:before { + content: "\e1678"; +} +.sh-regularfa-keyboard-left:before { + content: "\e1677"; +} +.sh-regularfa-keyboard-down:before { + content: "\e1676"; +} +.sh-regularfa-game-console-handheld-crank:before { + content: "\e1675"; +} +.sh-regularfa-floppy-disk-pen:before { + content: "\e1674"; +} +.sh-regularfa-display-slash:before { + content: "\e1673"; +} +.sh-regularfa-display-medical:before { + content: "\e1672"; +} +.sh-regularfa-display-code:before { + content: "\e1671"; +} +.sh-regularfa-display-arrow-down:before { + content: "\e1670"; +} +.sh-regularfa-display:before { + content: "\e1669"; +} +.sh-regularfa-disc-drive:before { + content: "\e1668"; +} +.sh-regularfa-desktop-arrow-down:before { + content: "\e1667"; +} +.sh-regularfa-computer-speaker:before { + content: "\e1666"; +} +.sh-regularfa-computer-mouse-scrollwheel:before { + content: "\e1665"; +} +.sh-regularfa-computer-mouse:before { + content: "\e1664"; +} +.sh-regularfa-computer:before { + content: "\e1663"; +} +.sh-regularfa-compact-disc:before { + content: "\e1662"; +} +.sh-regularfa-camera-web-slash:before { + content: "\e1661"; +} +.sh-regularfa-camera-web:before { + content: "\e1660"; +} +.sh-regularfa-album-circle-user:before { + content: "\e1659"; +} +.sh-regularfa-album-circle-plus:before { + content: "\e1658"; +} +.sh-regularfa-album:before { + content: "\e1657"; +} +.sh-regularfa-vector-square:before { + content: "\e1656"; +} +.sh-regularfa-vector-polygon:before { + content: "\e1655"; +} +.sh-regularfa-vector-circle:before { + content: "\e1654"; +} +.sh-regularfa-swatchbook:before { + content: "\e1653"; +} +.sh-regularfa-stamp:before { + content: "\e1652"; +} +.sh-regularfa-square-dashed-circle-plus:before { + content: "\e1651"; +} +.sh-regularfa-square-dashed:before { + content: "\e1650"; +} +.sh-regularfa-spray-can:before { + content: "\e1649"; +} +.sh-regularfa-splotch:before { + content: "\e1648"; +} +.sh-regularfa-sparkle:before { + content: "\e1647"; +} +.sh-regularfa-send-backward:before { + content: "\e1646"; +} +.sh-regularfa-send-back:before { + content: "\e1645"; +} +.sh-regularfa-scribble:before { + content: "\e1644"; +} +.sh-regularfa-rectangles-mixed:before { + content: "\e1643"; +} +.sh-regularfa-pen-circle:before { + content: "\e1642"; +} +.sh-regularfa-pencil-mechanical:before { + content: "\e1641"; +} +.sh-regularfa-palette:before { + content: "\e1640"; +} +.sh-regularfa-paintbrush-pencil:before { + content: "\e1639"; +} +.sh-regularfa-paintbrush-fine:before { + content: "\e1638"; +} +.sh-regularfa-object-union:before { + content: "\e1637"; +} +.sh-regularfa-object-subtract:before { + content: "\e1636"; +} +.sh-regularfa-objects-column:before { + content: "\e1635"; +} +.sh-regularfa-objects-align-top:before { + content: "\e1634"; +} +.sh-regularfa-objects-align-right:before { + content: "\e1633"; +} +.sh-regularfa-objects-align-left:before { + content: "\e1632"; +} +.sh-regularfa-objects-align-center-vertical:before { + content: "\e1631"; +} +.sh-regularfa-objects-align-center-horizontal:before { + content: "\e1630"; +} +.sh-regularfa-objects-align-bottom:before { + content: "\e1629"; +} +.sh-regularfa-object-intersect:before { + content: "\e1628"; +} +.sh-regularfa-object-exclude:before { + content: "\e1627"; +} +.sh-regularfa-lines-leaning:before { + content: "\e1626"; +} +.sh-regularfa-layer-plus:before { + content: "\e1625"; +} +.sh-regularfa-layer-minus:before { + content: "\e1624"; +} +.sh-regularfa-layer-group:before { + content: "\e1623"; +} +.sh-regularfa-lasso-sparkles:before { + content: "\e1622"; +} +.sh-regularfa-lasso:before { + content: "\e1621"; +} +.sh-regularfa-image-polaroid:before { + content: "\e1620"; +} +.sh-regularfa-highlighter-line:before { + content: "\e1619"; +} +.sh-regularfa-grid-dividers:before { + content: "\e1618"; +} +.sh-regularfa-grid-5:before { + content: "\e1617"; +} +.sh-regularfa-grid-4:before { + content: "\e1616"; +} +.sh-regularfa-grid-2-plus:before { + content: "\e1615"; +} +.sh-regularfa-grid:before { + content: "\e1614"; +} +.sh-regularfa-gallery-thumbnails:before { + content: "\e1613"; +} +.sh-regularfa-fill-drip:before { + content: "\e1612"; +} +.sh-regularfa-fill:before { + content: "\e1611"; +} +.sh-regularfa-eye-dropper-half:before { + content: "\e1610"; +} +.sh-regularfa-eye-dropper-full:before { + content: "\e1609"; +} +.sh-regularfa-droplet-slash:before { + content: "\e1608"; +} +.sh-regularfa-droplet:before { + content: "\e1607"; +} +.sh-regularfa-draw-square:before { + content: "\e1606"; +} +.sh-regularfa-draw-polygon:before { + content: "\e1605"; +} +.sh-regularfa-draw-circle:before { + content: "\e1604"; +} +.sh-regularfa-distribute-spacing-vertical:before { + content: "\e1603"; +} +.sh-regularfa-distribute-spacing-horizontal:before { + content: "\e1602"; +} +.sh-regularfa-crosshairs-simple:before { + content: "\e1601"; +} +.sh-regularfa-crop-simple:before { + content: "\e1600"; +} +.sh-regularfa-columns-3:before { + content: "\e1599"; +} +.sh-regularfa-circle-dashed:before { + content: "\e1598"; +} +.sh-regularfa-camera-polaroid:before { + content: "\e1597"; +} +.sh-regularfa-broom-wide:before { + content: "\e1596"; +} +.sh-regularfa-bring-front:before { + content: "\e1595"; +} +.sh-regularfa-bring-forward:before { + content: "\e1594"; +} +.sh-regularfa-book-font:before { + content: "\e1593"; +} +.sh-regularfa-bezier-curve:before { + content: "\e1592"; +} +.sh-regularfa-user-helmet-safety:before { + content: "\e1591"; +} +.sh-regularfa-truck-container:before { + content: "\e1590"; +} +.sh-regularfa-trowel-bricks:before { + content: "\e1589"; +} +.sh-regularfa-trowel:before { + content: "\e1588"; +} +.sh-regularfa-triangle-person-digging:before { + content: "\e1587"; +} +.sh-regularfa-traffic-cone:before { + content: "\e1586"; +} +.sh-regularfa-toolbox:before { + content: "\e1585"; +} +.sh-regularfa-shovel-snow:before { + content: "\e1584"; +} +.sh-regularfa-sheet-plastic:before { + content: "\e1583"; +} +.sh-regularfa-screwdriver-wrench:before { + content: "\e1582"; +} +.sh-regularfa-screwdriver:before { + content: "\e1581"; +} +.sh-regularfa-ruler-vertical:before { + content: "\e1580"; +} +.sh-regularfa-ruler-triangle:before { + content: "\e1579"; +} +.sh-regularfa-ruler-horizontal:before { + content: "\e1578"; +} +.sh-regularfa-ruler-combined:before { + content: "\e1577"; +} +.sh-regularfa-ruler:before { + content: "\e1576"; +} +.sh-regularfa-person-digging:before { + content: "\e1575"; +} +.sh-regularfa-pen-ruler:before { + content: "\e1574"; +} +.sh-regularfa-paint-roller:before { + content: "\e1573"; +} +.sh-regularfa-mound:before { + content: "\e1572"; +} +.sh-regularfa-hose-reel:before { + content: "\e1571"; +} +.sh-regularfa-hose:before { + content: "\e1570"; +} +.sh-regularfa-helmet-safety:before { + content: "\e1569"; +} +.sh-regularfa-hammer-crash:before { + content: "\e1568"; +} +.sh-regularfa-hammer:before { + content: "\e1567"; +} +.sh-regularfa-grate-droplet:before { + content: "\e1566"; +} +.sh-regularfa-grate:before { + content: "\e1565"; +} +.sh-regularfa-frame:before { + content: "\e1564"; +} +.sh-regularfa-forklift:before { + content: "\e1563"; +} +.sh-regularfa-dumpster-fire:before { + content: "\e1562"; +} +.sh-regularfa-dumpster:before { + content: "\e1561"; +} +.sh-regularfa-compass-drafting:before { + content: "\e1560"; +} +.sh-regularfa-brush:before { + content: "\e1559"; +} +.sh-regularfa-bore-hole:before { + content: "\e1558"; +} +.sh-regularfa-block-brick:before { + content: "\e1557"; +} +.sh-regularfa-arrow-up-from-ground-water:before { + content: "\e1556"; +} +.sh-regularfa-angle-90:before { + content: "\e1555"; +} +.sh-regularfa-angle:before { + content: "\e1554"; +} +.sh-regularfa-wifi-weak:before { + content: "\e1553"; +} +.sh-regularfa-wifi-fair:before { + content: "\e1552"; +} +.sh-regularfa-tower-broadcast:before { + content: "\e1551"; +} +.sh-regularfa-signal-weak:before { + content: "\e1550"; +} +.sh-regularfa-signal-strong:before { + content: "\e1549"; +} +.sh-regularfa-signal-stream-slash:before { + content: "\e1548"; +} +.sh-regularfa-signal-stream:before { + content: "\e1547"; +} +.sh-regularfa-signal-good:before { + content: "\e1546"; +} +.sh-regularfa-signal-fair:before { + content: "\e1545"; +} +.sh-regularfa-signal-bars-weak:before { + content: "\e1544"; +} +.sh-regularfa-signal-bars-slash:before { + content: "\e1543"; +} +.sh-regularfa-signal-bars-good:before { + content: "\e1542"; +} +.sh-regularfa-signal-bars-fair:before { + content: "\e1541"; +} +.sh-regularfa-nfc-signal:before { + content: "\e1540"; +} +.sh-regularfa-mobile-signal-out:before { + content: "\e1539"; +} +.sh-regularfa-mobile-signal:before { + content: "\e1538"; +} +.sh-regularfa-link-horizontal-slash:before { + content: "\e1537"; +} +.sh-regularfa-link-horizontal:before { + content: "\e1536"; +} +.sh-regularfa-house-signal:before { + content: "\e1535"; +} +.sh-regularfa-ethernet:before { + content: "\e1534"; +} +.sh-regularfa-cloud-xmark:before { + content: "\e1533"; +} +.sh-regularfa-cloud-slash:before { + content: "\e1532"; +} +.sh-regularfa-cloud-plus:before { + content: "\e1531"; +} +.sh-regularfa-cloud-minus:before { + content: "\e1530"; +} +.sh-regularfa-cloud-check:before { + content: "\e1529"; +} +.sh-regularfa-walkie-talkie:before { + content: "\e1528"; +} +.sh-regularfa-voicemail:before { + content: "\e1527"; +} +.sh-regularfa-video-plus:before { + content: "\e1526"; +} +.sh-regularfa-tower-cell:before { + content: "\e1525"; +} +.sh-regularfa-symbols:before { + content: "\e1524"; +} +.sh-regularfa-square-quote:before { + content: "\e1523"; +} +.sh-regularfa-square-phone-hangup:before { + content: "\e1522"; +} +.sh-regularfa-poo:before { + content: "\e1521"; +} +.sh-regularfa-phone-xmark:before { + content: "\e1520"; +} +.sh-regularfa-phone-plus:before { + content: "\e1519"; +} +.sh-regularfa-phone-missed:before { + content: "\e1518"; +} +.sh-regularfa-phone-hangup:before { + content: "\e1517"; +} +.sh-regularfa-phone-arrow-up-right:before { + content: "\e1516"; +} +.sh-regularfa-phone-arrow-right:before { + content: "\e1515"; +} +.sh-regularfa-phone-arrow-down-left:before { + content: "\e1514"; +} +.sh-regularfa-paper-plane-top:before { + content: "\e1513"; +} +.sh-regularfa-mobile-screen-button:before { + content: "\e1512"; +} +.sh-regularfa-mobile-screen:before { + content: "\e1511"; +} +.sh-regularfa-mobile-retro:before { + content: "\e1510"; +} +.sh-regularfa-mobile-notch:before { + content: "\e1509"; +} +.sh-regularfa-mobile-button:before { + content: "\e1508"; +} +.sh-regularfa-message-xmark:before { + content: "\e1507"; +} +.sh-regularfa-message-text:before { + content: "\e1506"; +} +.sh-regularfa-messages-question:before { + content: "\e1505"; +} +.sh-regularfa-message-sms:before { + content: "\e1504"; +} +.sh-regularfa-message-smile:before { + content: "\e1503"; +} +.sh-regularfa-message-slash:before { + content: "\e1502"; +} +.sh-regularfa-messages:before { + content: "\e1501"; +} +.sh-regularfa-message-quote:before { + content: "\e1500"; +} +.sh-regularfa-message-question:before { + content: "\e1499"; +} +.sh-regularfa-message-plus:before { + content: "\e1498"; +} +.sh-regularfa-message-pen:before { + content: "\e1497"; +} +.sh-regularfa-message-minus:before { + content: "\e1496"; +} +.sh-regularfa-message-middle-top:before { + content: "\e1495"; +} +.sh-regularfa-message-middle:before { + content: "\e1494"; +} +.sh-regularfa-message-medical:before { + content: "\e1493"; +} +.sh-regularfa-message-lines:before { + content: "\e1492"; +} +.sh-regularfa-message-image:before { + content: "\e1491"; +} +.sh-regularfa-message-heart:before { + content: "\e1490"; +} +.sh-regularfa-message-dots:before { + content: "\e1489"; +} +.sh-regularfa-message-code:before { + content: "\e1488"; +} +.sh-regularfa-message-check:before { + content: "\e1487"; +} +.sh-regularfa-message-bot:before { + content: "\e1486"; +} +.sh-regularfa-message-arrow-up-right:before { + content: "\e1485"; +} +.sh-regularfa-message-arrow-up:before { + content: "\e1484"; +} +.sh-regularfa-message-arrow-down:before { + content: "\e1483"; +} +.sh-regularfa-message:before { + content: "\e1482"; +} +.sh-regularfa-mailbox-flag-up:before { + content: "\e1481"; +} +.sh-regularfa-mailbox:before { + content: "\e1480"; +} +.sh-regularfa-icons:before { + content: "\e1479"; +} +.sh-regularfa-hundred-points:before { + content: "\e1478"; +} +.sh-regularfa-face-smile-plus:before { + content: "\e1477"; +} +.sh-regularfa-face-awesome:before { + content: "\e1476"; +} +.sh-regularfa-crystal-ball:before { + content: "\e1475"; +} +.sh-regularfa-comment-xmark:before { + content: "\e1474"; +} +.sh-regularfa-comment-text:before { + content: "\e1473"; +} +.sh-regularfa-comments-question-check:before { + content: "\e1472"; +} +.sh-regularfa-comments-question:before { + content: "\e1471"; +} +.sh-regularfa-comment-sms:before { + content: "\e1470"; +} +.sh-regularfa-comment-smile:before { + content: "\e1469"; +} +.sh-regularfa-comment-slash:before { + content: "\e1468"; +} +.sh-regularfa-comment-quote:before { + content: "\e1467"; +} +.sh-regularfa-comment-question:before { + content: "\e1466"; +} +.sh-regularfa-comment-plus:before { + content: "\e1465"; +} +.sh-regularfa-comment-pen:before { + content: "\e1464"; +} +.sh-regularfa-comment-music:before { + content: "\e1463"; +} +.sh-regularfa-comment-minus:before { + content: "\e1462"; +} +.sh-regularfa-comment-middle-top:before { + content: "\e1461"; +} +.sh-regularfa-comment-middle:before { + content: "\e1460"; +} +.sh-regularfa-comment-medical:before { + content: "\e1459"; +} +.sh-regularfa-comment-lines:before { + content: "\e1458"; +} +.sh-regularfa-comment-image:before { + content: "\e1457"; +} +.sh-regularfa-comment-heart:before { + content: "\e1456"; +} +.sh-regularfa-comment-code:before { + content: "\e1455"; +} +.sh-regularfa-comment-check:before { + content: "\e1454"; +} +.sh-regularfa-comment-arrow-up-right:before { + content: "\e1453"; +} +.sh-regularfa-comment-arrow-up:before { + content: "\e1452"; +} +.sh-regularfa-comment-arrow-down:before { + content: "\e1451"; +} +.sh-regularfa-circle-phone-hangup:before { + content: "\e1450"; +} +.sh-regularfa-circle-phone-flip:before { + content: "\e1449"; +} +.sh-regularfa-circle-phone:before { + content: "\e1448"; +} +.sh-regularfa-circle-envelope:before { + content: "\e1447"; +} +.sh-regularfa-blender-phone:before { + content: "\e1446"; +} +.sh-regularfa-wrench-simple:before { + content: "\e1445"; +} +.sh-regularfa-window-flip:before { + content: "\e1444"; +} +.sh-regularfa-window:before { + content: "\e1443"; +} +.sh-regularfa-webhook:before { + content: "\e1442"; +} +.sh-regularfa-sidebar-flip:before { + content: "\e1441"; +} +.sh-regularfa-sidebar:before { + content: "\e1440"; +} +.sh-regularfa-rectangle-xmark:before { + content: "\e1439"; +} +.sh-regularfa-notdef:before { + content: "\e1438"; +} +.sh-regularfa-laptop-mobile:before { + content: "\e1437"; +} +.sh-regularfa-laptop-code:before { + content: "\e1436"; +} +.sh-regularfa-key-skeleton-left-right:before { + content: "\e1435"; +} +.sh-regularfa-code-pull-request-draft:before { + content: "\e1434"; +} +.sh-regularfa-code-pull-request-closed:before { + content: "\e1433"; +} +.sh-regularfa-code-pull-request:before { + content: "\e1432"; +} +.sh-regularfa-code-merge:before { + content: "\e1431"; +} +.sh-regularfa-code-compare:before { + content: "\e1430"; +} +.sh-regularfa-code-commit:before { + content: "\e1429"; +} +.sh-regularfa-circle-nodes:before { + content: "\e1428"; +} +.sh-regularfa-bug-slash:before { + content: "\e1427"; +} +.sh-regularfa-browsers:before { + content: "\e1426"; +} +.sh-regularfa-browser:before { + content: "\e1425"; +} +.sh-regularfa-brain-circuit:before { + content: "\e1424"; +} +.sh-regularfa-brackets-square:before { + content: "\e1423"; +} +.sh-regularfa-brackets-round:before { + content: "\e1422"; +} +.sh-regularfa-bracket-square-right:before { + content: "\e1421"; +} +.sh-regularfa-bracket-square:before { + content: "\e1420"; +} +.sh-regularfa-brackets-curly:before { + content: "\e1419"; +} +.sh-regularfa-bracket-round-right:before { + content: "\e1418"; +} +.sh-regularfa-bracket-round:before { + content: "\e1417"; +} +.sh-regularfa-bracket-curly-right:before { + content: "\e1416"; +} +.sh-regularfa-bracket-curly:before { + content: "\e1415"; +} +.sh-regularfa-binary-slash:before { + content: "\e1414"; +} +.sh-regularfa-binary-lock:before { + content: "\e1413"; +} +.sh-regularfa-binary-circle-check:before { + content: "\e1412"; +} +.sh-regularfa-binary:before { + content: "\e1411"; +} +.sh-regularfa-bars-sort:before { + content: "\e1410"; +} +.sh-regularfa-bars-filter:before { + content: "\e1409"; +} +.sh-regularfa-ban-bug:before { + content: "\e1408"; +} +.sh-regularfa-vest-patches:before { + content: "\e1407"; +} +.sh-regularfa-vest:before { + content: "\e1406"; +} +.sh-regularfa-user-tie:before { + content: "\e1405"; +} +.sh-regularfa-uniform-martial-arts:before { + content: "\e1404"; +} +.sh-regularfa-sunglasses:before { + content: "\e1403"; +} +.sh-regularfa-stocking:before { + content: "\e1402"; +} +.sh-regularfa-ski-boot:before { + content: "\e1401"; +} +.sh-regularfa-shoe-prints:before { + content: "\e1400"; +} +.sh-regularfa-shirt-tank-top:before { + content: "\e1399"; +} +.sh-regularfa-shirt-running:before { + content: "\e1398"; +} +.sh-regularfa-shirt-long-sleeve:before { + content: "\e1397"; +} +.sh-regularfa-shirt:before { + content: "\e1396"; +} +.sh-regularfa-scarf:before { + content: "\e1395"; +} +.sh-regularfa-reel:before { + content: "\e1394"; +} +.sh-regularfa-pipe-smoking:before { + content: "\e1393"; +} +.sh-regularfa-mustache:before { + content: "\e1392"; +} +.sh-regularfa-ice-skate:before { + content: "\e1391"; +} +.sh-regularfa-hood-cloak:before { + content: "\e1390"; +} +.sh-regularfa-hat-wizard:before { + content: "\e1389"; +} +.sh-regularfa-hat-witch:before { + content: "\e1388"; +} +.sh-regularfa-hat-winter:before { + content: "\e1387"; +} +.sh-regularfa-hat-santa:before { + content: "\e1386"; +} +.sh-regularfa-hat-cowboy-side:before { + content: "\e1385"; +} +.sh-regularfa-hat-cowboy:before { + content: "\e1384"; +} +.sh-regularfa-ear-muffs:before { + content: "\e1383"; +} +.sh-regularfa-boot-heeled:before { + content: "\e1382"; +} +.sh-regularfa-tricycle:before { + content: "\e1381"; +} +.sh-regularfa-thought-bubble:before { + content: "\e1380"; +} +.sh-regularfa-soft-serve:before { + content: "\e1379"; +} +.sh-regularfa-snowman-head:before { + content: "\e1378"; +} +.sh-regularfa-snowman:before { + content: "\e1377"; +} +.sh-regularfa-shapes:before { + content: "\e1376"; +} +.sh-regularfa-robot:before { + content: "\e1375"; +} +.sh-regularfa-pretzel:before { + content: "\e1374"; +} +.sh-regularfa-popsicle:before { + content: "\e1373"; +} +.sh-regularfa-pool-8-ball:before { + content: "\e1372"; +} +.sh-regularfa-pinata:before { + content: "\e1371"; +} +.sh-regularfa-person-sledding:before { + content: "\e1370"; +} +.sh-regularfa-person-breastfeeding:before { + content: "\e1369"; +} +.sh-regularfa-person-biking:before { + content: "\e1368"; +} +.sh-regularfa-mitten:before { + content: "\e1367"; +} +.sh-regularfa-lollipop:before { + content: "\e1366"; +} +.sh-regularfa-ice-cream:before { + content: "\e1365"; +} +.sh-regularfa-gun-squirt:before { + content: "\e1364"; +} +.sh-regularfa-globe-snow:before { + content: "\e1363"; +} +.sh-regularfa-game-console-handheld:before { + content: "\e1362"; +} +.sh-regularfa-family-pants:before { + content: "\e1361"; +} +.sh-regularfa-family-dress:before { + content: "\e1360"; +} +.sh-regularfa-family:before { + content: "\e1359"; +} +.sh-regularfa-cupcake:before { + content: "\e1358"; +} +.sh-regularfa-cubes-stacked:before { + content: "\e1357"; +} +.sh-regularfa-cookie-bite:before { + content: "\e1356"; +} +.sh-regularfa-children:before { + content: "\e1355"; +} +.sh-regularfa-child-reaching:before { + content: "\e1354"; +} +.sh-regularfa-candy-bar:before { + content: "\e1353"; +} +.sh-regularfa-candy:before { + content: "\e1352"; +} +.sh-regularfa-cake-slice:before { + content: "\e1351"; +} +.sh-regularfa-bowl-soft-serve:before { + content: "\e1350"; +} +.sh-regularfa-block-question:before { + content: "\e1349"; +} +.sh-regularfa-block:before { + content: "\e1348"; +} +.sh-regularfa-basketball-hoop:before { + content: "\e1347"; +} +.sh-regularfa-baseball-bat-ball:before { + content: "\e1346"; +} +.sh-regularfa-ball-pile:before { + content: "\e1345"; +} +.sh-regularfa-balloons:before { + content: "\e1344"; +} +.sh-regularfa-balloon:before { + content: "\e1343"; +} +.sh-regularfa-baby-carriage:before { + content: "\e1342"; +} +.sh-regularfa-baby:before { + content: "\e1341"; +} +.sh-regularfa-apple-whole:before { + content: "\e1340"; +} +.sh-regularfa-diagram-successor:before { + content: "\e1339"; +} +.sh-regularfa-diagram-subtask:before { + content: "\e1338"; +} +.sh-regularfa-diagram-sankey:before { + content: "\e1337"; +} +.sh-regularfa-diagram-project:before { + content: "\e1336"; +} +.sh-regularfa-diagram-previous:before { + content: "\e1335"; +} +.sh-regularfa-diagram-predecessor:before { + content: "\e1334"; +} +.sh-regularfa-diagram-next:before { + content: "\e1333"; +} +.sh-regularfa-diagram-nested:before { + content: "\e1332"; +} +.sh-regularfa-diagram-lean-canvas:before { + content: "\e1331"; +} +.sh-regularfa-diagram-cells:before { + content: "\e1330"; +} +.sh-regularfa-circle-three-quarters-stroke:before { + content: "\e1329"; +} +.sh-regularfa-circle-quarter-stroke:before { + content: "\e1328"; +} +.sh-regularfa-circle-half-stroke:before { + content: "\e1327"; +} +.sh-regularfa-chart-waterfall:before { + content: "\e1326"; +} +.sh-regularfa-chart-scatter-bubble:before { + content: "\e1325"; +} +.sh-regularfa-chart-scatter-3d:before { + content: "\e1324"; +} +.sh-regularfa-chart-scatter:before { + content: "\e1323"; +} +.sh-regularfa-chart-radar:before { + content: "\e1322"; +} +.sh-regularfa-chart-network:before { + content: "\e1321"; +} +.sh-regularfa-chart-mixed:before { + content: "\e1320"; +} +.sh-regularfa-chart-gantt:before { + content: "\e1319"; +} +.sh-regularfa-chart-candlestick:before { + content: "\e1318"; +} +.sh-regularfa-chart-bullet:before { + content: "\e1317"; +} +.sh-regularfa-chart-bar:before { + content: "\e1316"; +} +.sh-regularfa-square-heart:before { + content: "\e1315"; +} +.sh-regularfa-square-dollar:before { + content: "\e1314"; +} +.sh-regularfa-seedling:before { + content: "\e1313"; +} +.sh-regularfa-ribbon:before { + content: "\e1312"; +} +.sh-regularfa-piggy-bank:before { + content: "\e1311"; +} +.sh-regularfa-parachute-box:before { + content: "\e1310"; +} +.sh-regularfa-leaf-heart:before { + content: "\e1309"; +} +.sh-regularfa-house-heart:before { + content: "\e1308"; +} +.sh-regularfa-house-chimney-heart:before { + content: "\e1307"; +} +.sh-regularfa-hands-holding-heart:before { + content: "\e1306"; +} +.sh-regularfa-hands-holding-dollar:before { + content: "\e1305"; +} +.sh-regularfa-hands-holding-circle:before { + content: "\e1304"; +} +.sh-regularfa-hands-holding-child:before { + content: "\e1303"; +} +.sh-regularfa-hand-holding-heart:before { + content: "\e1302"; +} +.sh-regularfa-hand-holding-hand:before { + content: "\e1301"; +} +.sh-regularfa-hand-holding-droplet:before { + content: "\e1300"; +} +.sh-regularfa-hand-holding-dollar:before { + content: "\e1299"; +} +.sh-regularfa-hand-heart:before { + content: "\e1298"; +} +.sh-regularfa-circle-heart:before { + content: "\e1297"; +} +.sh-regularfa-circle-dollar-to-slot:before { + content: "\e1296"; +} +.sh-regularfa-circle-dollar:before { + content: "\e1295"; +} +.sh-regularfa-box-heart:before { + content: "\e1294"; +} +.sh-regularfa-box-dollar:before { + content: "\e1293"; +} +.sh-regularfa-book-heart:before { + content: "\e1292"; +} +.sh-regulara-hand-holding-seedling:before { + content: "\e1291"; +} +.sh-regularfa-trees:before { + content: "\e1290"; +} +.sh-regularfa-tree-large:before { + content: "\e1289"; +} +.sh-regularfa-tree-deciduous:before { + content: "\e1288"; +} +.sh-regularfa-toilet-paper-blank:before { + content: "\e1287"; +} +.sh-regularfa-toilet-paper:before { + content: "\e1286"; +} +.sh-regularfa-tarp-droplet:before { + content: "\e1285"; +} +.sh-regularfa-tarp:before { + content: "\e1284"; +} +.sh-regularfa-table-picnic:before { + content: "\e1283"; +} +.sh-regularfa-sunset:before { + content: "\e1282"; +} +.sh-regularfa-sunrise:before { + content: "\e1281"; +} +.sh-regularfa-shovel:before { + content: "\e1280"; +} +.sh-regularfa-shish-kebab:before { + content: "\e1279"; +} +.sh-regularfa-route:before { + content: "\e1278"; +} +.sh-regularfa-pickaxe:before { + content: "\e1277"; +} +.sh-regularfa-person-shelter:before { + content: "\e1276"; +} +.sh-regularfa-person-hiking:before { + content: "\e1275"; +} +.sh-regularfa-person-biking-mountain:before { + content: "\e1274"; +} +.sh-regularfa-people-roof:before { + content: "\e1273"; +} +.sh-regularfa-mountain-sun:before { + content: "\e1272"; +} +.sh-regularfa-mountains:before { + content: "\e1271"; +} +.sh-regularfa-mountain:before { + content: "\e1270"; +} +.sh-regularfa-mosquito-net:before { + content: "\e1269"; +} +.sh-regularfa-mattress-pillow:before { + content: "\e1268"; +} +.sh-regularfa-map-location-dot:before { + content: "\e1267"; +} +.sh-regularfa-map-location:before { + content: "\e1266"; +} +.sh-regularfa-grill-hot:before { + content: "\e1265"; +} +.sh-regularfa-grill-fire:before { + content: "\e1264"; +} +.sh-regularfa-grill:before { + content: "\e1263"; +} +.sh-regularfa-fishing-rod:before { + content: "\e1262"; +} +.sh-regularfa-fire-smoke:before { + content: "\e1261"; +} +.sh-regularfa-fire-flame-curved:before { + content: "\e1260"; +} +.sh-regularfa-fire-burner:before { + content: "\e1259"; +} +.sh-regularfa-faucet-drip:before { + content: "\e1258"; +} +.sh-regularfa-faucet:before { + content: "\e1257"; +} +.sh-regularfa-cauldron:before { + content: "\e1256"; +} +.sh-regularfa-campfire:before { + content: "\e1255"; +} +.sh-regularfa-bucket:before { + content: "\e1254"; +} +.sh-regularfa-bottle-water:before { + content: "\e1253"; +} +.sh-regularfa-boot:before { + content: "\e1252"; +} +.sh-regularfa-bench-tree:before { + content: "\e1251"; +} +.sh-regularfa-backpack:before { + content: "\e1250"; +} +.sh-regularfa-axe:before { + content: "\e1249"; +} +.sh-regularfa-acorn:before { + content: "\e1248"; +} +.sh-regularfa-wallet:before { + content: "\e1247"; +} +.sh-regularfa-vault:before { + content: "\e1246"; +} +.sh-regularfa-user-tie-hair-long:before { + content: "\e1245"; +} +.sh-regularfa-user-tie-hair:before { + content: "\e1244"; +} +.sh-regularfa-user-hair-mullet:before { + content: "\e1243"; +} +.sh-regularfa-timeline-arrow:before { + content: "\e1242"; +} +.sh-regularfa-timeline:before { + content: "\e1241"; +} +.sh-regularfa-table-tree:before { + content: "\e1240"; +} +.sh-regularfa-table-rows:before { + content: "\e1239"; +} +.sh-regularfa-table-pivot:before { + content: "\e1238"; +} +.sh-regularfa-table-layout:before { + content: "\e1237"; +} +.sh-regularfa-stapler:before { + content: "\e1236"; +} +.sh-regularfa-square-poll-vertical:before { + content: "\e1235"; +} +.sh-regularfa-square-poll-horizontal:before { + content: "\e1234"; +} +.sh-regularfa-square-phone-flip:before { + content: "\e1233"; +} +.sh-regularfa-square-pen:before { + content: "\e1232"; +} +.sh-regularfa-square-kanban:before { + content: "\e1231"; +} +.sh-regularfa-socks:before { + content: "\e1230"; +} +.sh-regularfa-slot-machine:before { + content: "\e1229"; +} +.sh-regularfa-signature-slash:before { + content: "\e1228"; +} +.sh-regularfa-signature-lock:before { + content: "\e1227"; +} +.sh-regularfa-signature:before { + content: "\e1226"; +} +.sh-regularfa-shredder:before { + content: "\e1225"; +} +.sh-regularfa-scanner-image:before { + content: "\e1224"; +} +.sh-regularfa-scale-unbalanced-flip:before { + content: "\e1223"; +} +.sh-regularfa-scale-unbalanced:before { + content: "\e1222"; +} +.sh-regularfa-router:before { + content: "\e1221"; +} +.sh-regularfa-rectangle-pro:before { + content: "\e1220"; +} +.sh-regularfa-projector:before { + content: "\e1219"; +} +.sh-regularfa-print-slash:before { + content: "\e1218"; +} +.sh-regularfa-print-magnifying-glass:before { + content: "\e1217"; +} +.sh-regularfa-presentation-screen:before { + content: "\e1216"; +} +.sh-regularfa-podium:before { + content: "\e1215"; +} +.sh-regularfa-phone-slash:before { + content: "\e1214"; +} +.sh-regularfa-phone-office:before { + content: "\e1213"; +} +.sh-regularfa-phone-intercom:before { + content: "\e1212"; +} +.sh-regularfa-person-chalkboard:before { + content: "\e1211"; +} +.sh-regularfa-pen-nib-slash:before { + content: "\e1210"; +} +.sh-regularfa-pen-nib:before { + content: "\e1209"; +} +.sh-regularfa-pen-fancy:before { + content: "\e1208"; +} +.sh-regularfa-pen-clip:before { + content: "\e1207"; +} +.sh-regularfa-pen:before { + content: "\e1206"; +} +.sh-regularfa-paperclip-vertical:before { + content: "\e1205"; +} +.sh-regularfa-notebook:before { + content: "\e1204"; +} +.sh-regularfa-network-wired:before { + content: "\e1203"; +} +.sh-regularfa-money-check-pen:before { + content: "\e1202"; +} +.sh-regularfa-money-check-dollar-pen:before { + content: "\e1201"; +} +.sh-regularfa-marker:before { + content: "\e1200"; +} +.sh-regularfa-magnifying-glass-chart:before { + content: "\e1199"; +} +.sh-regularfa-magnifying-glass-arrow-right:before { + content: "\e1198"; +} +.sh-regularfa-list-tree:before { + content: "\e1197"; +} +.sh-regularfa-list-timeline:before { + content: "\e1196"; +} +.sh-regularfa-list-radio:before { + content: "\e1195"; +} +.sh-regularfa-list-dropdown:before { + content: "\e1194"; +} +.sh-regularfa-list-check:before { + content: "\e1193"; +} +.sh-regularfa-laptop-file:before { + content: "\e1192"; +} +.sh-regularfa-lamp-desk:before { + content: "\e1191"; +} +.sh-regularfa-keynote:before { + content: "\e1190"; +} +.sh-regularfa-inbox-full:before { + content: "\e1189"; +} +.sh-regularfa-inboxes:before { + content: "\e1188"; +} +.sh-regularfa-house-laptop:before { + content: "\e1187"; +} +.sh-regularfa-highlighter:before { + content: "\e1186"; +} +.sh-regularfa-globe-alt:before { + content: "\e1185"; +} +.sh-regularfa-glasses:before { + content: "\e1184"; +} +.sh-regularfa-folder-xmark:before { + content: "\e1183"; +} +.sh-regularfa-folder-tree:before { + content: "\e1182"; +} +.sh-regularfa-folder-plus:before { + content: "\e1181"; +} +.sh-regularfa-folder-minus:before { + content: "\e1180"; +} +.sh-regularfa-folder-arrow-up:before { + content: "\e1179"; +} +.sh-regularfa-folder-arrow-down:before { + content: "\e1178"; +} +.sh-regularfa-floppy-disk-circle-xmark:before { + content: "\e1177"; +} +.sh-regularfa-floppy-disk-circle-arrow-right:before { + content: "\e1176"; +} +.sh-regularfa-file-user:before { + content: "\e1175"; +} +.sh-regularfa-file-spreadsheet:before { + content: "\e1174"; +} +.sh-regularfa-file-circle-plus:before { + content: "\e1173"; +} +.sh-regularfa-file-circle-info:before { + content: "\e1172"; +} +.sh-regularfa-file-chart-pie:before { + content: "\e1171"; +} +.sh-regularfa-file-chart-column:before { + content: "\e1170"; +} +.sh-regularfa-envelopes:before { + content: "\e1169"; +} +.sh-regularfa-envelope-dot:before { + content: "\e1168"; +} +.sh-regularfa-envelope-circle-check:before { + content: "\e1167"; +} +.sh-regularfa-diagram-venn:before { + content: "\e1166"; +} +.sh-regularfa-computer-classic:before { + content: "\e1165"; +} +.sh-regularfa-coffee-pot:before { + content: "\e1164"; +} +.sh-regularfa-cloud-word:before { + content: "\e1163"; +} +.sh-regularfa-clipboard-question:before { + content: "\e1162"; +} +.sh-regularfa-chart-user:before { + content: "\e1161"; +} +.sh-regularfa-chart-tree-map:before { + content: "\e1160"; +} +.sh-regularfa-chart-simple-horizontal:before { + content: "\e1159"; +} +.sh-regularfa-chart-simple:before { + content: "\e1158"; +} +.sh-regularfa-chart-pyramid:before { + content: "\e1157"; +} +.sh-regularfa-chart-pie-simple:before { + content: "\e1156"; +} +.sh-regularfa-chart-line-up:before { + content: "\e1155"; +} +.sh-regularfa-chart-line-down:before { + content: "\e1154"; +} +.sh-regularfa-cabinet-filing:before { + content: "\e1153"; +} +.sh-regularfa-business-time:before { + content: "\e1152"; +} +.sh-regularfa-briefcase-blank:before { + content: "\e1151"; +} +.sh-regularfa-briefcase-arrow-right:before { + content: "\e1150"; +} +.sh-regularfa-brain-arrow-curved-right:before { + content: "\e1149"; +} +.sh-regularfa-boxes-packing:before { + content: "\e1148"; +} +.sh-regularfa-book-section:before { + content: "\e1147"; +} +.sh-regularfa-bars-staggered:before { + content: "\e1146"; +} +.sh-regularfa-bars-progress:before { + content: "\e1145"; +} +.sh-regularfa-badge-percent:before { + content: "\e1144"; +} +.sh-regularfa-badge-dollar:before { + content: "\e1143"; +} +.sh-regularfa-badge-check:before { + content: "\e1142"; +} +.sh-regularfa-badge:before { + content: "\e1141"; +} +.sh-regularfa-warehouse-full:before { + content: "\e1140"; +} +.sh-regularfa-warehouse:before { + content: "\e1139"; +} +.sh-regularfa-vihara:before { + content: "\e1138"; +} +.sh-regularfa-tree-city:before { + content: "\e1137"; +} +.sh-regularfa-tower-observation:before { + content: "\e1136"; +} +.sh-regularfa-torii-gate:before { + content: "\e1135"; +} +.sh-regularfa-toilets-portable:before { + content: "\e1134"; +} +.sh-regularfa-toilet-portable:before { + content: "\e1133"; +} +.sh-regularfa-tents:before { + content: "\e1132"; +} +.sh-regularfa-tent-arrow-turn-left:before { + content: "\e1131"; +} +.sh-regularfa-tent-arrows-down:before { + content: "\e1130"; +} +.sh-regularfa-tent-arrow-left-right:before { + content: "\e1129"; +} +.sh-regularfa-tent-arrow-down-to-line:before { + content: "\e1128"; +} +.sh-regularfa-tent:before { + content: "\e1127"; +} +.sh-regularfa-synagogue:before { + content: "\e1126"; +} +.sh-regularfa-store-lock:before { + content: "\e1125"; +} +.sh-regularfa-store:before { + content: "\e1124"; +} +.sh-regularfa-shop-lock:before { + content: "\e1123"; +} +.sh-regularfa-shop:before { + content: "\e1122"; +} +.sh-regularfa-school-lock:before { + content: "\e1121"; +} +.sh-regularfa-school-flag:before { + content: "\e1120"; +} +.sh-regularfa-school-circle-xmark:before { + content: "\e1119"; +} +.sh-regularfa-school-circle-exclamation:before { + content: "\e1118"; +} +.sh-regularfa-school-circle-check:before { + content: "\e1117"; +} +.sh-regularfa-school:before { + content: "\e1116"; +} +.sh-regularfa-roller-coaster:before { + content: "\e1115"; +} +.sh-regularfa-place-of-worship:before { + content: "\e1114"; +} +.sh-regularfa-oil-well:before { + content: "\e1113"; +} +.sh-regularfa-mountain-city:before { + content: "\e1112"; +} +.sh-regularfa-mosque:before { + content: "\e1111"; +} +.sh-regularfa-monument:before { + content: "\e1110"; +} +.sh-regularfa-landmark-flag:before { + content: "\e1109"; +} +.sh-regularfa-landmark-dome:before { + content: "\e1108"; +} +.sh-regularfa-landmark:before { + content: "\e1107"; +} +.sh-regularfa-kaaba:before { + content: "\e1106"; +} +.sh-regularfa-igloo:before { + content: "\e1105"; +} +.sh-regularfa-house-window:before { + content: "\e1104"; +} +.sh-regularfa-house-water:before { + content: "\e1103"; +} +.sh-regularfa-house-turret:before { + content: "\e1102"; +} +.sh-regularfa-house-tree:before { + content: "\e1101"; +} +.sh-regularfa-house-night:before { + content: "\e1100"; +} +.sh-regularfa-house-medical-flag:before { + content: "\e1099"; +} +.sh-regularfa-house-medical-circle-xmark:before { + content: "\e1098"; +} +.sh-regularfa-house-medical-circle-exclamation:before { + content: "\e1097"; +} +.sh-regularfa-house-medical-circle-check:before { + content: "\e1096"; +} +.sh-regularfa-house-medical:before { + content: "\e1095"; +} +.sh-regularfa-house-lock:before { + content: "\e1094"; +} +.sh-regularfa-house-flag:before { + content: "\e1093"; +} +.sh-regularfa-house-fire:before { + content: "\e1092"; +} +.sh-regularfa-house-day:before { + content: "\e1091"; +} +.sh-regularfa-house-crack:before { + content: "\e1090"; +} +.sh-regularfa-house-circle-xmark:before { + content: "\e1089"; +} +.sh-regularfa-house-circle-exclamation:before { + content: "\e1088"; +} +.sh-regularfa-house-circle-check:before { + content: "\e1087"; +} +.sh-regularfa-house-chimney-window:before { + content: "\e1086"; +} +.sh-regularfa-house-chimney-medical:before { + content: "\e1085"; +} +.sh-regularfa-house-chimney-crack:before { + content: "\e1084"; +} +.sh-regularfa-house-chimney-blank:before { + content: "\e1083"; +} +.sh-regularfa-house-chimney:before { + content: "\e1082"; +} +.sh-regularfa-house-building:before { + content: "\e1081"; +} +.sh-regularfa-house-blank:before { + content: "\e1080"; +} +.sh-regularfa-hotel1:before { + content: "\e1079"; +} +.sh-regularfa-hospital-user:before { + content: "\e1078"; +} +.sh-regularfa-hospitals:before { + content: "\e1077"; +} +.sh-regularfa-gopuram:before { + content: "\e1076"; +} +.sh-regularfa-fort:before { + content: "\e1075"; +} +.sh-regularfa-ferris-wheel:before { + content: "\e1074"; +} +.sh-regularfa-fence:before { + content: "\e1073"; +} +.sh-regularfa-farm:before { + content: "\e1072"; +} +.sh-regularfa-dungeon:before { + content: "\e1071"; +} +.sh-regularfa-container-storage:before { + content: "\e1070"; +} +.sh-regularfa-city:before { + content: "\e1069"; +} +.sh-regularfa-church:before { + content: "\e1068"; +} +.sh-regularfa-chimney:before { + content: "\e1067"; +} +.sh-regularfa-castle:before { + content: "\e1066"; +} +.sh-regularfa-campground:before { + content: "\e1065"; +} +.sh-regularfa-cabin:before { + content: "\e1064"; +} +.sh-regularfa-building-wheat:before { + content: "\e1063"; +} +.sh-regularfa-building-user:before { + content: "\e1062"; +} +.sh-regularfa-building-un:before { + content: "\e1061"; +} +.sh-regularfa-building-shield:before { + content: "\e1060"; +} +.sh-regularfa-buildings:before { + content: "\e1059"; +} +.sh-regularfa-building-ngo:before { + content: "\e1058"; +} +.sh-regularfa-building-lock:before { + content: "\e1057"; +} +.sh-regularfa-building-flag:before { + content: "\e1056"; +} +.sh-regularfa-building-circle-xmark:before { + content: "\e1055"; +} +.sh-regularfa-building-circle-exclamation:before { + content: "\e1054"; +} +.sh-regularfa-building-circle-check:before { + content: "\e1053"; +} +.sh-regularfa-building-circle-arrow-right:before { + content: "\e1052"; +} +.sh-regularfa-bridge-suspension:before { + content: "\e1051"; +} +.sh-regularfa-arrow-right-to-city:before { + content: "\e1050"; +} +.sh-regularfa-archway:before { + content: "\e1049"; +} +.sh-regularfa-apartment:before { + content: "\e1048"; +} +.sh-regularfa-user-astronaut:before { + content: "\e1047"; +} +.sh-regularfa-user-alien:before { + content: "\e1046"; +} +.sh-regularfa-ufo-beam:before { + content: "\e1045"; +} +.sh-regularfa-ufo:before { + content: "\e1044"; +} +.sh-regularfa-telescope:before { + content: "\e1043"; +} +.sh-regularfa-star-shooting:before { + content: "\e1042"; +} +.sh-regularfa-stars:before { + content: "\e1041"; +} +.sh-regularfa-solar-system:before { + content: "\e1040"; +} +.sh-regularfa-satellite-dish:before { + content: "\e1039"; +} +.sh-regularfa-satellite:before { + content: "\e1038"; +} +.sh-regularfa-radar:before { + content: "\e1037"; +} +.sh-regularfa-planet-ringed:before { + content: "\e1036"; +} +.sh-regularfa-planet-moon:before { + content: "\e1035"; +} +.sh-regularfa-moon-stars:before { + content: "\e1034"; +} +.sh-regularfa-moon-over-sun:before { + content: "\e1033"; +} +.sh-regularfa-meteor:before { + content: "\e1032"; +} +.sh-regularfa-galaxy:before { + content: "\e1031"; +} +.sh-regularfa-eclipse:before { + content: "\e1030"; +} +.sh-regularfa-comet:before { + content: "\e1029"; +} +.sh-regularfa-alien:before { + content: "\e1028"; +} +.sh-regularfa-up-to-line:before { + content: "\e1027"; +} +.sh-regularfa-up-to-dotted-line:before { + content: "\e1026"; +} +.sh-regularfa-up-right-and-down-left-from-center:before { + content: "\e1025"; +} +.sh-regularfa-up-right:before { + content: "\e1024"; +} +.sh-regularfa-up-long:before { + content: "\e1023"; +} +.sh-regularfa-up-left:before { + content: "\e1022"; +} +.sh-regularfa-up-from-dotted-line:before { + content: "\e1021"; +} +.sh-regularfa-up-from-bracket:before { + content: "\e1020"; +} +.sh-regularfa-up:before { + content: "\e1019"; +} +.sh-regularfa-turn-down-right:before { + content: "\e1018"; +} +.sh-regularfa-turn-down-left:before { + content: "\e1017"; +} +.sh-regularfa-square-up-right:before { + content: "\e1016"; +} +.sh-regularfa-square-up-left:before { + content: "\e1015"; +} +.sh-regularfa-square-up:before { + content: "\e1014"; +} +.sh-regularfa-square-right:before { + content: "\e1013"; +} +.sh-regularfa-square-left:before { + content: "\e1012"; +} +.sh-regularfa-square-down-right:before { + content: "\e1011"; +} +.sh-regularfa-square-down-left:before { + content: "\e1010"; +} +.sh-regularfa-square-down:before { + content: "\e1009"; +} +.sh-regularfa-square-chevron-up:before { + content: "\e1008"; +} +.sh-regularfa-square-chevron-right:before { + content: "\e1007"; +} +.sh-regularfa-square-chevron-left:before { + content: "\e1006"; +} +.sh-regularfa-square-chevron-down:before { + content: "\e1005"; +} +.sh-regularfa-square-arrow-up-left:before { + content: "\e1004"; +} +.sh-regularfa-square-arrow-up:before { + content: "\e1003"; +} +.sh-regularfa-square-arrow-right:before { + content: "\e1002"; +} +.sh-regularfa-square-arrow-left:before { + content: "\e1001"; +} +.sh-regularfa-square-arrow-down-right:before { + content: "\e1000"; +} +.sh-regularfa-square-arrow-down-left:before { + content: "\e0999"; +} +.sh-regularfa-square-arrow-down:before { + content: "\e0998"; +} +.sh-regularfa-split:before { + content: "\e0997"; +} +.sh-regularfa-share-all:before { + content: "\e0996"; +} +.sh-regularfa-rotate-right-arrow:before { + content: "\e0995"; +} +.sh-regularfa-rotate-left-arrow:before { + content: "\e0994"; +} +.sh-regularfa-right-to-line:before { + content: "\e0993"; +} +.sh-regularfa-right-long-to-line:before { + content: "\e0992"; +} +.sh-regularfa-right-long:before { + content: "\e0991"; +} +.sh-regularfa-right-left:before { + content: "\e0990"; +} +.sh-regularfa-right-from-line:before { + content: "\e0989"; +} +.sh-regularfa-right:before { + content: "\e0988"; +} +.sh-regularfa-repeat-1:before { + content: "\e0987"; +} +.sh-regularfa-merge:before { + content: "\e0986"; +} +.sh-regularfa-left-to-line:before { + content: "\e0985"; +} +.sh-regularfa-left-right:before { + content: "\e0984"; +} +.sh-regularfa-left-long-to-line:before { + content: "\e0983"; +} +.sh-regularfa-left-long:before { + content: "\e0982"; +} +.sh-regularfa-left-from-line:before { + content: "\e0981"; +} +.sh-regularfa-left:before { + content: "\e0980"; +} +.sh-regularfa-inbox-out:before { + content: "\e0979"; +} +.sh-regularfa-inbox-in:before { + content: "\e0978"; +} +.sh-regularfa-down-to-line:before { + content: "\e0977"; +} +.sh-regularfa-down-to-dotted-line:before { + content: "\e0976"; +} +.sh-regularfa-down-to-bracket:before { + content: "\e0975"; +} +.sh-regularfa-down-right:before { + content: "\e0974"; +} +.sh-regularfa-down-long:before { + content: "\e0973"; +} +.sh-regularfa-down-left-and-up-right-to-center:before { + content: "\e0972"; +} +.sh-regularfa-down-left:before { + content: "\e0971"; +} +.sh-regularfa-down-from-line:before { + content: "\e0970"; +} +.sh-regularfa-down-from-dotted-line:before { + content: "\e0969"; +} +.sh-regularfa-down:before { + content: "\e0968"; +} +.sh-regularfa-circle-up-right:before { + content: "\e0967"; +} +.sh-regularfa-circle-up-left:before { + content: "\e0966"; +} +.sh-regularfa-circle-up:before { + content: "\e0965"; +} +.sh-regularfa-circle-right:before { + content: "\e0964"; +} +.sh-regularfa-circle-left:before { + content: "\e0963"; +} +.sh-regularfa-circle-down-right:before { + content: "\e0962"; +} +.sh-regularfa-circle-down-left:before { + content: "\e0961"; +} +.sh-regularfa-circle-down:before { + content: "\e0960"; +} +.sh-regularfa-circle-chevron-up:before { + content: "\e0959"; +} +.sh-regularfa-circle-chevron-right:before { + content: "\e0958"; +} +.sh-regularfa-circle-chevron-left:before { + content: "\e0957"; +} +.sh-regularfa-circle-chevron-down:before { + content: "\e0956"; +} +.sh-regularfa-circle-caret-up:before { + content: "\e0955"; +} +.sh-regularfa-circle-caret-right:before { + content: "\e0954"; +} +.sh-regularfa-circle-caret-left:before { + content: "\e0953"; +} +.sh-regularfa-circle-caret-down:before { + content: "\e0952"; +} +.sh-regularfa-circle-arrow-up-right:before { + content: "\e0951"; +} +.sh-regularfa-circle-arrow-up-left:before { + content: "\e0950"; +} +.sh-regularfa-circle-arrow-down-right:before { + content: "\e0949"; +} +.sh-regularfa-circle-arrow-down-left:before { + content: "\e0948"; +} +.sh-regularfa-arrow-up-z-a:before { + content: "\e0947"; +} +.sh-regularfa-arrow-up-wide-short:before { + content: "\e0946"; +} +.sh-regularfa-arrow-up-triangle-square:before { + content: "\e0945"; +} +.sh-regularfa-arrow-up-to-line:before { + content: "\e0944"; +} +.sh-regularfa-arrow-up-to-dotted-line:before { + content: "\e0943"; +} +.sh-regularfa-arrow-up-square-triangle:before { + content: "\e0942"; +} +.sh-regularfa-arrow-up-small-big:before { + content: "\e0941"; +} +.sh-regularfa-arrow-up-short-wide:before { + content: "\e0940"; +} +.sh-regularfa-arrow-up-right-dots:before { + content: "\e0939"; +} +.sh-regularfa-arrow-up-right:before { + content: "\e0938"; +} +.sh-regularfa-arrow-up-left-from-circle:before { + content: "\e0937"; +} +.sh-regularfa-arrow-up-left:before { + content: "\e0936"; +} +.sh-regularfa-arrow-up-from-square:before { + content: "\e0935"; +} +.sh-regularfa-arrow-up-from-line:before { + content: "\e0934"; +} +.sh-regularfa-arrow-up-from-dotted-line:before { + content: "\e0933"; +} +.sh-regularfa-arrow-up-from-bracket:before { + content: "\e0932"; +} +.sh-regularfa-arrow-up-from-arc:before { + content: "\e0931"; +} +.sh-regularfa-arrow-up-down-left-right:before { + content: "\e0930"; +} +.sh-regularfa-arrow-up-down:before { + content: "\e0929"; +} +.sh-regularfa-arrow-up-big-small:before { + content: "\e0928"; +} +.sh-regularfa-arrow-up-a-z:before { + content: "\e0927"; +} +.sh-regularfa-arrow-up-arrow-down:before { + content: "\e0926"; +} +.sh-regularfa-arrow-up-9-1:before { + content: "\e0925"; +} +.sh-regularfa-arrow-up-1-9:before { + content: "\e0924"; +} +.sh-regularfa-arrow-turn-up:before { + content: "\e0923"; +} +.sh-regularfa-arrow-turn-down-right:before { + content: "\e0922"; +} +.sh-regularfa-arrow-turn-down-left:before { + content: "\e0921"; +} +.sh-regularfa-arrow-turn-down:before { + content: "\e0920"; +} +.sh-regularfa-arrow-trend-up:before { + content: "\e0919"; +} +.sh-regularfa-arrow-trend-down:before { + content: "\e0918"; +} +.sh-regularfa-arrows-up-to-line:before { + content: "\e0917"; +} +.sh-regularfa-arrows-turn-to-dots:before { + content: "\e0916"; +} +.sh-regularfa-arrows-turn-right:before { + content: "\e0915"; +} +.sh-regularfa-arrows-to-line:before { + content: "\e0914"; +} +.sh-regularfa-arrows-to-eye:before { + content: "\e0913"; +} +.sh-regularfa-arrows-to-dotted-line:before { + content: "\e0912"; +} +.sh-regularfa-arrows-to-dot:before { + content: "\e0911"; +} +.sh-regularfa-arrows-to-circle:before { + content: "\e0910"; +} +.sh-regularfa-arrows-split-up-and-left:before { + content: "\e0909"; +} +.sh-regularfa-arrows-spin:before { + content: "\e0908"; +} +.sh-regularfa-arrows-retweet:before { + content: "\e0907"; +} +.sh-regularfa-arrows-repeat:before { + content: "\e0906"; +} +.sh-regularfa-arrows-left-right-to-line:before { + content: "\e0905"; +} +.sh-regularfa-arrows-from-line:before { + content: "\e0904"; +} +.sh-regularfa-arrows-from-dotted-line:before { + content: "\e0903"; +} +.sh-regularfa-arrows-down-to-line:before { + content: "\e0902"; +} +.sh-regularfa-arrows-cross:before { + content: "\e0901"; +} +.sh-regularfa-arrow-rotate:before { + content: "\e0900"; +} +.sh-regularfa-arrow-right-to-line:before { + content: "\e0899"; +} +.sh-regularfa-arrow-right-to-arc:before { + content: "\e0898"; +} +.sh-regularfa-arrow-right-long-to-line:before { + content: "\e0897"; +} +.sh-regularfa-arrow-right-from-line:before { + content: "\e0896"; +} +.sh-regularfa-arrow-right-from-arc:before { + content: "\e0895"; +} +.sh-regularfa-arrow-repeat-1:before { + content: "\e0894"; +} +.sh-regularfa-arrow-maximize:before { + content: "\e0893"; +} +.sh-regularfa-arrow-left-to-line:before { + content: "\e0892"; +} +.sh-regularfa-arrow-left-right:before { + content: "\e0891"; +} +.sh-regularfa-arrow-left-long-to-line:before { + content: "\e0890"; +} +.sh-regularfa-arrow-left-from-line:before { + content: "\e0889"; +} +.sh-regularfa-arrow-down-up-lock:before { + content: "\e0888"; +} +.sh-regularfa-arrow-down-up-across-line:before { + content: "\e0887"; +} +.sh-regularfa-arrow-down-triangle-square:before { + content: "\e0886"; +} +.sh-regularfa-arrow-down-to-square:before { + content: "\e0885"; +} +.sh-regularfa-arrow-down-to-line:before { + content: "\e0884"; +} +.sh-regularfa-arrow-down-to-dotted-line:before { + content: "\e0883"; +} +.sh-regularfa-arrow-down-to-bracket:before { + content: "\e0882"; +} +.sh-regularfa-arrow-down-to-arc:before { + content: "\e0881"; +} +.sh-regularfa-arrow-down-square-triangle:before { + content: "\e0880"; +} +.sh-regularfa-arrow-down-small-big:before { + content: "\e0879"; +} +.sh-regularfa-arrow-down-right:before { + content: "\e0878"; +} +.sh-regularfa-arrow-down-left:before { + content: "\e0877"; +} +.sh-regularfa-arrow-down-from-line:before { + content: "\e0876"; +} +.sh-regularfa-arrow-down-from-dotted-line:before { + content: "\e0875"; +} +.sh-regularfa-arrow-down-big-small:before { + content: "\e0874"; +} +.sh-regularfa-arrow-down-arrow-up:before { + content: "\e0873"; +} +.sh-regularfa-worm:before { + content: "\e0872"; +} +.sh-regularfa-whale:before { + content: "\e0871"; +} +.sh-regularfa-unicorn:before { + content: "\e0870"; +} +.sh-regularfa-turtle:before { + content: "\e0869"; +} +.sh-regularfa-teddy-bear:before { + content: "\e0868"; +} +.sh-regularfa-squirrel:before { + content: "\e0867"; +} +.sh-regularfa-squid:before { + content: "\e0866"; +} +.sh-regularfa-spider-black-widow:before { + content: "\e0865"; +} +.sh-regularfa-spider:before { + content: "\e0864"; +} +.sh-regularfa-snake:before { + content: "\e0863"; +} +.sh-regularfa-skull-cow:before { + content: "\e0862"; +} +.sh-regularfa-shrimp:before { + content: "\e0861"; +} +.sh-regularfa-shield-dog:before { + content: "\e0860"; +} +.sh-regularfa-shield-cat:before { + content: "\e0859"; +} +.sh-regularfa-sheep:before { + content: "\e0858"; +} +.sh-regularfa-ram:before { + content: "\e0857"; +} +.sh-regularfa-rabbit-running:before { + content: "\e0856"; +} +.sh-regularfa-rabbit:before { + content: "\e0855"; +} +.sh-regularfa-pig:before { + content: "\e0854"; +} +.sh-regularfa-pegasus:before { + content: "\e0853"; +} +.sh-regularfa-paw-simple:before { + content: "\e0852"; +} +.sh-regularfa-paw-claws:before { + content: "\e0851"; +} +.sh-regularfa-otter:before { + content: "\e0850"; +} +.sh-regularfa-narwhal:before { + content: "\e0849"; +} +.sh-regularfa-mouse-field:before { + content: "\e0848"; +} +.sh-regularfa-mosquito:before { + content: "\e0847"; +} +.sh-regularfa-monkey:before { + content: "\e0846"; +} +.sh-regularfa-locust:before { + content: "\e0845"; +} +.sh-regularfa-lobster:before { + content: "\e0844"; +} +.sh-regularfa-kiwi-bird:before { + content: "\e0843"; +} +.sh-regularfa-horse-saddle:before { + content: "\e0842"; +} +.sh-regularfa-horse-head:before { + content: "\e0841"; +} +.sh-regularfa-horse:before { + content: "\e0840"; +} +.sh-regularfa-hippo:before { + content: "\e0839"; +} +.sh-regularfa-frog:before { + content: "\e0838"; +} +.sh-regularfa-fish-fins:before { + content: "\e0837"; +} +.sh-regularfa-fish-bones:before { + content: "\e0836"; +} +.sh-regularfa-fish:before { + content: "\e0835"; +} +.sh-regularfa-feather-pointed:before { + content: "\e0834"; +} +.sh-regularfa-feather:before { + content: "\e0833"; +} +.sh-regularfa-elephant:before { + content: "\e0832"; +} +.sh-regularfa-duck:before { + content: "\e0831"; +} +.sh-regularfa-dragon:before { + content: "\e0830"; +} +.sh-regularfa-dove:before { + content: "\e0829"; +} +.sh-regularfa-dolphin:before { + content: "\e0828"; +} +.sh-regularfa-dog:before { + content: "\e0827"; +} +.sh-regularfa-deer-rudolph:before { + content: "\e0826"; +} +.sh-regularfa-deer:before { + content: "\e0825"; +} +.sh-regularfa-crow:before { + content: "\e0824"; +} +.sh-regularfa-crab:before { + content: "\e0823"; +} +.sh-regularfa-cow:before { + content: "\e0822"; +} +.sh-regularfa-cat-space:before { + content: "\e0821"; +} +.sh-regularfa-cat:before { + content: "\e0820"; +} +.sh-regularfa-bugs:before { + content: "\e0819"; +} +.sh-regularfa-bird:before { + content: "\e0818"; +} +.sh-regularfa-bee:before { + content: "\e0817"; +} +.sh-regularfa-bat:before { + content: "\e0816"; +} +.sh-regularfa-badger-honey:before { + content: "\e0815"; +} +.sh-regularfa-alicorn:before { + content: "\e0814"; +} +.sh-regularfa-square-z:before { + content: "\e0813"; +} +.sh-regularfa-square-y:before { + content: "\e0812"; +} +.sh-regularfa-square-x:before { + content: "\e0811"; +} +.sh-regularfa-square-w:before { + content: "\e0810"; +} +.sh-regularfa-square-v:before { + content: "\e0809"; +} +.sh-regularfa-square-u:before { + content: "\e0808"; +} +.sh-regularfa-square-t:before { + content: "\e0807"; +} +.sh-regularfa-square-s:before { + content: "\e0806"; +} +.sh-regularfa-square-r:before { + content: "\e0805"; +} +.sh-regularfa-square-q:before { + content: "\e0804"; +} +.sh-regularfa-square-p:before { + content: "\e0803"; +} +.sh-regularfa-square-o1:before { + content: "\e0802"; +} +.sh-regularfa-square-n:before { + content: "\e0801"; +} +.sh-regularfa-square-m:before { + content: "\e0800"; +} +.sh-regularfa-square-l:before { + content: "\e0799"; +} +.sh-regularfa-square-k:before { + content: "\e0798"; +} +.sh-regularfa-square-j:before { + content: "\e0797"; +} +.sh-regularfa-square-i:before { + content: "\e0796"; +} +.sh-regularfa-square-h:before { + content: "\e0795"; +} +.sh-regularfa-square-g:before { + content: "\e0794"; +} +.sh-regularfa-square-f:before { + content: "\e0793"; +} +.sh-regularfa-square-e:before { + content: "\e0792"; +} +.sh-regularfa-square-d:before { + content: "\e0791"; +} +.sh-regularfa-square-c:before { + content: "\e0790"; +} +.sh-regularfa-square-b:before { + content: "\e0789"; +} +.sh-regularfa-square-a:before { + content: "\e0788"; +} +.sh-regularfa-circle-z:before { + content: "\e0787"; +} +.sh-regularfa-circle-y:before { + content: "\e0786"; +} +.sh-regularfa-circle-x:before { + content: "\e0785"; +} +.sh-regularfa-circle-w:before { + content: "\e0784"; +} +.sh-regularfa-circle-v:before { + content: "\e0783"; +} +.sh-regularfa-circle-u:before { + content: "\e0782"; +} +.sh-regularfa-circle-t:before { + content: "\e0781"; +} +.sh-regularfa-circle-s:before { + content: "\e0780"; +} +.sh-regularfa-circle-r:before { + content: "\e0779"; +} +.sh-regularfa-circle-q:before { + content: "\e0778"; +} +.sh-regularfa-circle-p:before { + content: "\e0777"; +} +.sh-regularfa-circle-o1:before { + content: "\e0776"; +} +.sh-regularfa-circle-n:before { + content: "\e0775"; +} +.sh-regularfa-circle-m:before { + content: "\e0774"; +} +.sh-regularfa-circle-l:before { + content: "\e0773"; +} +.sh-regularfa-circle-k:before { + content: "\e0772"; +} +.sh-regularfa-circle-j:before { + content: "\e0771"; +} +.sh-regularfa-circle-i:before { + content: "\e0770"; +} +.sh-regularfa-circle-h:before { + content: "\e0769"; +} +.sh-regularfa-circle-g:before { + content: "\e0768"; +} +.sh-regularfa-circle-f:before { + content: "\e0767"; +} +.sh-regularfa-circle-e:before { + content: "\e0766"; +} +.sh-regularfa-circle-d:before { + content: "\e0765"; +} +.sh-regularfa-circle-c:before { + content: "\e0764"; +} +.sh-regularfa-circle-b:before { + content: "\e0763"; +} +.sh-regularfa-circle-a:before { + content: "\e0762"; +} +.sh-regularfa-z:before { + content: "\e0761"; +} +.sh-regularfa-y:before { + content: "\e0760"; +} +.sh-regularfa-x:before { + content: "\e0759"; +} +.sh-regularfa-w:before { + content: "\e0758"; +} +.sh-regularfa-v:before { + content: "\e0757"; +} +.sh-regularfa-u:before { + content: "\e0756"; +} +.sh-regularfa-t:before { + content: "\e0755"; +} +.sh-regularfa-s:before { + content: "\e0754"; +} +.sh-regularfa-r:before { + content: "\e0753"; +} +.sh-regularfa-q:before { + content: "\e0752"; +} +.sh-regularfa-p:before { + content: "\e0751"; +} +.sh-regularfa-o:before { + content: "\e0750"; +} +.sh-regularfa-n:before { + content: "\e0749"; +} +.sh-regularfa-m:before { + content: "\e0748"; +} +.sh-regularfa-l:before { + content: "\e0747"; +} +.sh-regularfa-k:before { + content: "\e0746"; +} +.sh-regularfa-j:before { + content: "\e0745"; +} +.sh-regularfa-i:before { + content: "\e0744"; +} +.sh-regularfa-h:before { + content: "\e0743"; +} +.sh-regularfa-g:before { + content: "\e0742"; +} +.sh-regularfa-f:before { + content: "\e0741"; +} +.sh-regularfa-e:before { + content: "\e0740"; +} +.sh-regularfa-d:before { + content: "\e0739"; +} +.sh-regularfa-c:before { + content: "\e0738"; +} +.sh-regularfa-b:before { + content: "\e0737"; +} +.sh-regularfa-a:before { + content: "\e0736"; +} +.sh-regularfa-wagon-covered:before { + content: "\e0735"; +} +.sh-regularfa-van-shuttle:before { + content: "\e0734"; +} +.sh-regularfa-truck-pickup:before { + content: "\e0733"; +} +.sh-regularfa-truck-monster:before { + content: "\e0732"; +} +.sh-regularfa-truck-field-un:before { + content: "\e0731"; +} +.sh-regularfa-truck-field:before { + content: "\e0730"; +} +.sh-regularfa-truck-bolt:before { + content: "\e0729"; +} +.sh-regularfa-trailer:before { + content: "\e0728"; +} +.sh-regularfa-tire-rugged:before { + content: "\e0727"; +} +.sh-regularfa-tire-pressure-warning:before { + content: "\e0726"; +} +.sh-regularfa-tire-flat:before { + content: "\e0725"; +} +.sh-regularfa-tire:before { + content: "\e0724"; +} +.sh-regularfa-tank-water:before { + content: "\e0723"; +} +.sh-regularfa-steering-wheel:before { + content: "\e0722"; +} +.sh-regularfa-spray-can-sparkles:before { + content: "\e0721"; +} +.sh-regularfa-rv:before { + content: "\e0720"; +} +.sh-regularfa-pump:before { + content: "\e0719"; +} +.sh-regularfa-oil-temperature:before { + content: "\e0718"; +} +.sh-regularfa-oil-can-drip:before { + content: "\e0717"; +} +.sh-regularfa-oil-can:before { + content: "\e0716"; +} +.sh-regularfa-moped:before { + content: "\e0715"; +} +.sh-regularfa-gauge-simple-min:before { + content: "\e0714"; +} +.sh-regularfa-gauge-simple-max:before { + content: "\e0713"; +} +.sh-regularfa-gauge-simple-low:before { + content: "\e0712"; +} +.sh-regularfa-gauge-simple-high:before { + content: "\e0711"; +} +.sh-regularfa-gauge-simple:before { + content: "\e0710"; +} +.sh-regularfa-gauge-min:before { + content: "\e0709"; +} +.sh-regularfa-gauge-max:before { + content: "\e0708"; +} +.sh-regularfa-gauge-low:before { + content: "\e0707"; +} +.sh-regularfa-gauge-high:before { + content: "\e0706"; +} +.sh-regularfa-gauge-circle-plus:before { + content: "\e0705"; +} +.sh-regularfa-gauge-circle-minus:before { + content: "\e0704"; +} +.sh-regularfa-gauge-circle-bolt:before { + content: "\e0703"; +} +.sh-regularfa-gauge:before { + content: "\e0702"; +} +.sh-regularfa-gas-pump-slash:before { + content: "\e0701"; +} +.sh-regularfa-gas-pump:before { + content: "\e0700"; +} +.sh-regularfa-garage-open:before { + content: "\e0699"; +} +.sh-regularfa-garage-car:before { + content: "\e0698"; +} +.sh-regularfa-garage:before { + content: "\e0697"; +} +.sh-regularfa-flux-capacitor:before { + content: "\e0696"; +} +.sh-regularfa-engine:before { + content: "\e0695"; +} +.sh-regularfa-charging-station:before { + content: "\e0694"; +} +.sh-regularfa-car-wrench:before { + content: "\e0693"; +} +.sh-regularfa-car-wash:before { + content: "\e0692"; +} +.sh-regularfa-car-tunnel:before { + content: "\e0691"; +} +.sh-regularfa-car-tilt:before { + content: "\e0690"; +} +.sh-regularfa-car-side-bolt:before { + content: "\e0689"; +} +.sh-regularfa-car-side:before { + content: "\e0688"; +} +.sh-regularfa-cars:before { + content: "\e0687"; +} +.sh-regularfa-car-rear:before { + content: "\e0686"; +} +.sh-regularfa-car-on:before { + content: "\e0685"; +} +.sh-regularfa-car-mirrors:before { + content: "\e0684"; +} +.sh-regularfa-car-garage:before { + content: "\e0683"; +} +.sh-regularfa-car-circle-bolt:before { + content: "\e0682"; +} +.sh-regularfa-car-bus:before { + content: "\e0681"; +} +.sh-regularfa-car-burst:before { + content: "\e0680"; +} +.sh-regularfa-car-bump:before { + content: "\e0679"; +} +.sh-regularfa-car-building:before { + content: "\e0678"; +} +.sh-regularfa-car-bolt:before { + content: "\e0677"; +} +.sh-regularfa-car-battery:before { + content: "\e0676"; +} +.sh-regularfa-caravan-simple:before { + content: "\e0675"; +} +.sh-regularfa-caravan:before { + content: "\e0674"; +} +.sh-regularfa-bus-simple:before { + content: "\e0673"; +} +.sh-regularfa-brake-warning:before { + content: "\e0672"; +} +.sh-regularfa-wind-warning:before { + content: "\e0671"; +} +.sh-regularfa-wifi-exclamation:before { + content: "\e0670"; +} +.sh-regularfa-star-exclamation:before { + content: "\e0669"; +} +.sh-regularfa-square-exclamation:before { + content: "\e0668"; +} +.sh-regularfa-skull-crossbones:before { + content: "\e0667"; +} +.sh-regularfa-shield-exclamation:before { + content: "\e0666"; +} +.sh-regularfa-sensor-triangle-exclamation:before { + content: "\e0665"; +} +.sh-regularfa-sensor-on:before { + content: "\e0664"; +} +.sh-regularfa-sensor-fire:before { + content: "\e0663"; +} +.sh-regularfa-sensor-cloud:before { + content: "\e0662"; +} +.sh-regularfa-sensor:before { + content: "\e0661"; +} +.sh-regularfa-seal-question:before { + content: "\e0660"; +} +.sh-regularfa-seal-exclamation:before { + content: "\e0659"; +} +.sh-regularfa-rotate-exclamation:before { + content: "\e0658"; +} +.sh-regularfa-radiation:before { + content: "\e0657"; +} +.sh-regularfa-party-horn:before { + content: "\e0656"; +} +.sh-regularfa-party-bell:before { + content: "\e0655"; +} +.sh-regularfa-octagon-exclamation:before { + content: "\e0654"; +} +.sh-regularfa-message-exclamation:before { + content: "\e0653"; +} +.sh-regularfa-location-exclamation:before { + content: "\e0652"; +} +.sh-regularfa-light-emergency-on:before { + content: "\e0651"; +} +.sh-regularfa-light-emergency:before { + content: "\e0650"; +} +.sh-regularfa-lightbulb-exclamation-on:before { + content: "\e0649"; +} +.sh-regularfa-lightbulb-exclamation:before { + content: "\e0648"; +} +.sh-regularfa-hexagon-exclamation:before { + content: "\e0647"; +} +.sh-regularfa-file-exclamation:before { + content: "\e0646"; +} +.sh-regularfa-engine-warning:before { + content: "\e0645"; +} +.sh-regularfa-diamond-exclamation:before { + content: "\e0644"; +} +.sh-regularfa-comment-exclamation:before { + content: "\e0643"; +} +.sh-regularfa-cloud-question:before { + content: "\e0642"; +} +.sh-regularfa-cloud-exclamation:before { + content: "\e0641"; +} +.sh-regularfa-circle-radiation:before { + content: "\e0640"; +} +.sh-regularfa-circle-quarters:before { + content: "\e0639"; +} +.sh-regularfa-circle-exclamation-check:before { + content: "\e0638"; +} +.sh-regularfa-calendar-exclamation:before { + content: "\e0637"; +} +.sh-regularfa-bell-school-slash:before { + content: "\e0636"; +} +.sh-regularfa-bells:before { + content: "\e0635"; +} +.sh-regularfa-bell-on:before { + content: "\e0634"; +} +.sh-regularfa-bell-exclamation:before { + content: "\e0633"; +} +.sh-regularfa-battery-exclamation:before { + content: "\e0632"; +} +.sh-regularfa-alarm-exclamation:before { + content: "\e0631"; +} +.sh-regularfa-alarm-clock:before { + content: "\e0630"; +} +.sh-regularfa-phone-volume:before { + content: "\e0629"; +} +.sh-regularfa-tty-answer:before { + content: "\e0628"; +} +.sh-regularfa-square-question:before { + content: "\e0627"; +} +.sh-regularfa-square-info:before { + content: "\e0626"; +} +.sh-regularfa-person-cane:before { + content: "\e0625"; +} +.sh-regularfa-message-captions:before { + content: "\e0624"; +} +.sh-regularfa-keyboard-brightness-low:before { + content: "\e0623"; +} +.sh-regularfa-keyboard-brightness:before { + content: "\e0622"; +} +.sh-regularfa-head-side-heart:before { + content: "\e0621"; +} +.sh-regularfa-handshake-angle:before { + content: "\e0620"; +} +.sh-regularfa-fingerprint:before { + content: "\e0619"; +} +.sh-regularfa-ear:before { + content: "\e0618"; +} +.sh-regularfa-dog-leashed:before { + content: "\e0617"; +} +.sh-regularfa-comment-captions:before { + content: "\e0616"; +} +.sh-regularfa-closed-captioning-slash:before { + content: "\e0615"; +} +.sh-regularfa-brightness-low:before { + content: "\e0614"; +} +.sh-regularfa-brightness:before { + content: "\e0613"; +} +.sh-regularfa-audio-description-slash:before { + content: "\e0612"; +} +.sh-regularfa-user-md:before { + content: "\e0611"; +} +.sh-regularfa-stethoscope:before { + content: "\e0610"; +} +.sh-regularfa-medkit:before { + content: "\e0609"; +} +.sh-regularfa-hospital-o:before { + content: "\e0608"; +} +.sh-regularfa-h-square:before { + content: "\e0607"; +} +.sh-regularfa-stop-circle-o:before { + content: "\e0606"; +} +.sh-regularfa-stop-circle:before { + content: "\e0605"; +} +.sh-regularfa-stop:before { + content: "\e0604"; +} +.sh-regularfa-step-forward:before { + content: "\e0603"; +} +.sh-regularfa-step-backward:before { + content: "\e0602"; +} +.sh-regularfa-play-circle-o:before { + content: "\e0601"; +} +.sh-regularfa-play-circle:before { + content: "\e0600"; +} +.sh-regularfa-play:before { + content: "\e0599"; +} +.sh-regularfa-pause-circle-o:before { + content: "\e0598"; +} +.sh-regularfa-pause-circle:before { + content: "\e0597"; +} +.sh-regularfa-pause:before { + content: "\e0596"; +} +.sh-regularfa-forward:before { + content: "\e0595"; +} +.sh-regularfa-fast-forward:before { + content: "\e0594"; +} +.sh-regularfa-fast-backward:before { + content: "\e0593"; +} +.sh-regularfa-eject:before { + content: "\e0592"; +} +.sh-regularfa-backward:before { + content: "\e0591"; +} +.sh-regularfa-long-arrow-up:before { + content: "\e0590"; +} +.sh-regularfa-long-arrow-left:before { + content: "\e0589"; +} +.sh-regularfa-long-arrow-down:before { + content: "\e0588"; +} +.sh-regularfa-chevron-up:before { + content: "\e0587"; +} +.sh-regularfa-chevron-circle-up:before { + content: "\e0586"; +} +.sh-regularfa-chevron-circle-right:before { + content: "\e0585"; +} +.sh-regularfa-chevron-circle-left:before { + content: "\e0584"; +} +.sh-regularfa-chevron-circle-down:before { + content: "\e0583"; +} +.sh-regularfa-caret-up:before { + content: "\e0582"; +} +.sh-regularfa-caret-left:before { + content: "\e0581"; +} +.sh-regularfa-arrow-down:before { + content: "\e0580"; +} +.sh-regularfa-arrow-circle-up:before { + content: "\e0579"; +} +.sh-regularfa-arrow-circle-right:before { + content: "\e0578"; +} +.sh-regularfa-arrow-circle-o-up:before { + content: "\e0577"; +} +.sh-regularfa-arrow-circle-o-right:before { + content: "\e0576"; +} +.sh-regularfa-arrow-circle-o-left:before { + content: "\e0575"; +} +.sh-regularfa-arrow-circle-o-down:before { + content: "\e0574"; +} +.sh-regularfa-arrow-circle-left:before { + content: "\e0573"; +} +.sh-regularfa-arrow-circle-down:before { + content: "\e0572"; +} +.sh-regularfa-angle-right:before { + content: "\e0571"; +} +.sh-regularfa-angle-left:before { + content: "\e0570"; +} +.sh-regularfa-angle-down:before { + content: "\e0569"; +} +.sh-regularfa-angle-double-up:before { + content: "\e0568"; +} +.sh-regularfa-angle-double-left:before { + content: "\e0567"; +} +.sh-regularfa-angle-double-down:before { + content: "\e0566"; +} +.sh-regularfa-text-width:before { + content: "\e0565"; +} +.sh-regularfa-text-height:before { + content: "\e0564"; +} +.sh-regularfa-superscript:before { + content: "\e0563"; +} +.sh-regularfa-subscript:before { + content: "\e0562"; +} +.sh-regularfa-scissors:before { + content: "\e0561"; +} +.sh-regularfa-rotate-right:before { + content: "\e0560"; +} +.sh-regularfa-rotate-left:before { + content: "\e0559"; +} +.sh-regularfa-paste:before { + content: "\e0558"; +} +.sh-regularfa-paragraph:before { + content: "\e0557"; +} +.sh-regularfa-outdent:before { + content: "\e0556"; +} +.sh-regularfa-indent:before { + content: "\e0555"; +} +.sh-regularfa-header:before { + content: "\e0554"; +} +.sh-regularfa-floppy-o:before { + content: "\e0553"; +} +.sh-regularfa-dedent:before { + content: "\e0552"; +} +.sh-regularfa-cut:before { + content: "\e0551"; +} +.sh-regularfa-copy:before { + content: "\e0550"; +} +.sh-regularfa-columns:before { + content: "\e0549"; +} +.sh-regularfa-clipboard:before { + content: "\e0548"; +} +.sh-regularfa-chain-broken:before { + content: "\e0547"; +} +.sh-regularfa-align-right:before { + content: "\e0546"; +} +.sh-regularfa-align-left:before { + content: "\e0545"; +} +.sh-regularfa-align-justify:before { + content: "\e0544"; +} +.sh-regularfa-align-center:before { + content: "\e0543"; +} +.sh-regularfa-yen:before { + content: "\e0542"; +} +.sh-regularfa-won:before { + content: "\e0541"; +} +.sh-regularfa-viacoin:before { + content: "\e0540"; +} +.sh-regularfa-turkish-lira:before { + content: "\e0539"; +} +.sh-regularfa-try:before { + content: "\e0538"; +} +.sh-regularfa-sheqel:before { + content: "\e0537"; +} +.sh-regularfa-shekel:before { + content: "\e0536"; +} +.sh-regularfa-rupee:before { + content: "\e0535"; +} +.sh-regularfa-ruble:before { + content: "\e0534"; +} +.sh-regularfa-rub:before { + content: "\e0533"; +} +.sh-regularfa-rouble:before { + content: "\e0532"; +} +.sh-regularfa-rmb:before { + content: "\e0531"; +} +.sh-regularfa-krw:before { + content: "\e0530"; +} +.sh-regularfa-jpy:before { + content: "\e0529"; +} +.sh-regularfa-inr:before { + content: "\e0528"; +} +.sh-regularfa-ils:before { + content: "\e0527"; +} +.sh-regularfa-gg-circle:before { + content: "\e0526"; +} +.sh-regularfa-gg:before { + content: "\e0525"; +} +.sh-regularfa-gbp:before { + content: "\e0524"; +} +.sh-regularfa-euro:before { + content: "\e0523"; +} +.sh-regularfa-eur:before { + content: "\e0522"; +} +.sh-regularfa-dollar:before { + content: "\e0521"; +} +.sh-regularfa-cny:before { + content: "\e0520"; +} +.sh-regularfa-btc:before { + content: "\e0519"; +} +.sh-regularfa-bitcoin:before { + content: "\e0518"; +} +.sh-regularfa-file-text:before { + content: "\e0517"; +} +.sh-regularfa-file-o:before { + content: "\e0516"; +} +.sh-regularfa-file-excel-o:before { + content: "\e0515"; +} +.sh-regularfa-file:before { + content: "\e0514"; +} +.sh-regularfa-venus-mars:before { + content: "\e0513"; +} +.sh-regularfa-venus-double:before { + content: "\e0512"; +} +.sh-regularfa-venus:before { + content: "\e0511"; +} +.sh-regularfa-transgender-alt:before { + content: "\e0510"; +} +.sh-regularfa-transgender:before { + content: "\e0509"; +} +.sh-regularfa-neuter:before { + content: "\e0508"; +} +.sh-regularfa-mercury:before { + content: "\e0507"; +} +.sh-regularfa-mars-stroke-v:before { + content: "\e0506"; +} +.sh-regularfa-mars-stroke-h:before { + content: "\e0505"; +} +.sh-regularfa-mars-stroke:before { + content: "\e0504"; +} +.sh-regularfa-mars-double:before { + content: "\e0503"; +} +.sh-regularfa-mars:before { + content: "\e0502"; +} +.sh-regularfa-intersex:before { + content: "\e0501"; +} +.sh-regularfa-genderless:before { + content: "\e0500"; +} +.sh-regularfa-train:before { + content: "\e0499"; +} +.sh-regularfa-subway:before { + content: "\e0498"; +} +.sh-regularfa-ambulance:before { + content: "\e0497"; +} +.sh-regularfa-hand-o-up:before { + content: "\e0496"; +} +.sh-regularfa-hand-o-right:before { + content: "\e0495"; +} +.sh-regularfa-hand-o-left:before { + content: "\e0494"; +} +.sh-regularfa-hand-o-down:before { + content: "\e0493"; +} +.sh-regularfa-window-restore:before { + content: "\e0492"; +} +.sh-regularfa-window-minimize:before { + content: "\e0491"; +} +.sh-regularfa-window-maximize:before { + content: "\e0490"; +} +.sh-regularfa-window-close-o:before { + content: "\e0489"; +} +.sh-regularfa-window-close:before { + content: "\e0488"; +} +.sh-regularfa-wifi:before { + content: "\e0487"; +} +.sh-regularfa-wheelchair-alt:before { + content: "\e0486"; +} +.sh-regularfa-wheelchair:before { + content: "\e0485"; +} +.sh-regularfa-warning:before { + content: "\e0484"; +} +.sh-regularfa-volume-control-phone:before { + content: "\e0483"; +} +.sh-regularfa-vcard-o:before { + content: "\e0482"; +} +.sh-regularfa-vcard:before { + content: "\e0481"; +} +.sh-regularfa-user-times:before { + content: "\e0480"; +} +.sh-regularfa-user-secret:before { + content: "\e0479"; +} +.sh-regularfa-user-o:before { + content: "\e0478"; +} +.sh-regularfa-user-circle-o:before { + content: "\e0477"; +} +.sh-regularfa-user-circle:before { + content: "\e0476"; +} +.sh-regularfa-unsorted:before { + content: "\e0475"; +} +.sh-regularfa-unlock-alt:before { + content: "\e0474"; +} +.sh-regularfa-unlock:before { + content: "\e0473"; +} +.sh-regularfa-universal-access:before { + content: "\e0472"; +} +.sh-regularfa-umbrella:before { + content: "\e0471"; +} +.sh-regularfa-tv:before { + content: "\e0470"; +} +.sh-regularfa-tty:before { + content: "\e0469"; +} +.sh-regularfa-tree:before { + content: "\e0468"; +} +.sh-regularfa-trademark:before { + content: "\e0467"; +} +.sh-regularfa-toggle-up:before { + content: "\e0466"; +} +.sh-regularfa-toggle-right:before { + content: "\e0465"; +} +.sh-regularfa-toggle-left:before { + content: "\e0464"; +} +.sh-regularfa-toggle-down:before { + content: "\e0463"; +} +.sh-regularfa-tint:before { + content: "\e0462"; +} +.sh-regularfa-times-rectangle-o:before { + content: "\e0461"; +} +.sh-regularfa-times-rectangle:before { + content: "\e0460"; +} +.sh-regularfa-thumb-tack:before { + content: "\e0459"; +} +.sh-regularfa-thumbs-o-up:before { + content: "\e0458"; +} +.sh-regularfa-thumbs-o-down:before { + content: "\e0457"; +} +.sh-regularfa-thumbs-down:before { + content: "\e0456"; +} +.sh-regularfa-thermometer-three-quarters:before { + content: "\e0455"; +} +.sh-regularfa-thermometer-quarter:before { + content: "\e0454"; +} +.sh-regularfa-thermometer-half:before { + content: "\e0453"; +} +.sh-regularfa-thermometer-full:before { + content: "\e0452"; +} +.sh-regularfa-thermometer-empty:before { + content: "\e0451"; +} +.sh-regularfa-thermometer-4:before { + content: "\e0450"; +} +.sh-regularfa-thermometer-3:before { + content: "\e0449"; +} +.sh-regularfa-thermometer-2:before { + content: "\e0448"; +} +.sh-regularfa-thermometer-1:before { + content: "\e0447"; +} +.sh-regularfa-thermometer-0:before { + content: "\e0446"; +} +.sh-regularfa-thermometer:before { + content: "\e0445"; +} +.sh-regularfa-terminal:before { + content: "\e0444"; +} +.sh-regularfa-television:before { + content: "\e0443"; +} +.sh-regularfa-taxi:before { + content: "\e0442"; +} +.sh-regularfa-tags:before { + content: "\e0441"; +} +.sh-regularfa-tag:before { + content: "\e0440"; +} +.sh-regularfa-tablet:before { + content: "\e0439"; +} +.sh-regularfa-support:before { + content: "\e0438"; +} +.sh-regularfa-suitcase:before { + content: "\e0437"; +} +.sh-regularfa-street-view:before { + content: "\e0436"; +} +.sh-regularfa-sticky-note-o:before { + content: "\e0435"; +} +.sh-regularfa-sticky-note:before { + content: "\e0434"; +} +.sh-regularfa-star-half-o:before { + content: "\e0433"; +} +.sh-regularfa-star-half-full:before { + content: "\e0432"; +} +.sh-regularfa-star-half-empty:before { + content: "\e0431"; +} +.sh-regularfa-star-half:before { + content: "\e0430"; +} +.sh-regularfa-square:before { + content: "\e0429"; +} +.sh-regularfa-spoon:before { + content: "\e0428"; +} +.sh-regularfa-spinner:before { + content: "\e0427"; +} +.sh-regularfa-space-shuttle:before { + content: "\e0426"; +} +.sh-regularfa-sort-numeric-desc:before { + content: "\e0425"; +} +.sh-regularfa-sort-numeric-asc:before { + content: "\e0424"; +} +.sh-regularfa-sort-up:before { + content: "\e0423"; +} +.sh-regularfa-sort-down:before { + content: "\e0422"; +} +.sh-regularfa-sort-desc:before { + content: "\e0421"; +} +.sh-regularfa-sort-asc:before { + content: "\e0420"; +} +.sh-regularfa-sort-alpha-desc:before { + content: "\e0419"; +} +.sh-regularfa-sort-alpha-asc:before { + content: "\e0418"; +} +.sh-regularfa-soccer-ball-o:before { + content: "\e0417"; +} +.sh-regularfa-snowflake-o:before { + content: "\e0416"; +} +.sh-regularfa-sliders:before { + content: "\e0415"; +} +.sh-regularfa-signing:before { + content: "\e0414"; +} +.sh-regularfa-sign-language:before { + content: "\e0413"; +} +.sh-regularfa-shower:before { + content: "\e0412"; +} +.sh-regularfa-shopping-cart:before { + content: "\e0411"; +} +.sh-regularfa-shopping-bag:before { + content: "\e0410"; +} +.sh-regularfa-ship:before { + content: "\e0409"; +} +.sh-regularfa-shield:before { + content: "\e0408"; +} +.sh-regularfa-share-square-o:before { + content: "\e0407"; +} +.sh-regularfa-share-square:before { + content: "\e0406"; +} +.sh-regularfa-share-alt-square:before { + content: "\e0405"; +} +.sh-regularfa-share-alt:before { + content: "\e0404"; +} +.sh-regularfa-share:before { + content: "\e0403"; +} +.sh-regularfa-server:before { + content: "\e0402"; +} +.sh-regularfa-send-o:before { + content: "\e0401"; +} +.sh-regularfa-send:before { + content: "\e0400"; +} +.sh-regularfa-search-minus:before { + content: "\e0399"; +} +.sh-regularfa-s15:before { + content: "\e0398"; +} +.sh-regularfa-rss-square:before { + content: "\e0397"; +} +.sh-regularfa-rss:before { + content: "\e0396"; +} +.sh-regularfa-rocket:before { + content: "\e0395"; +} +.sh-regularfa-road:before { + content: "\e0394"; +} +.sh-regularfa-retweet:before { + content: "\e0393"; +} +.sh-regularfa-reply-all:before { + content: "\e0392"; +} +.sh-regularfa-reorder:before { + content: "\e0391"; +} +.sh-regularfa-remove:before { + content: "\e0390"; +} +.sh-regularfa-registered:before { + content: "\e0389"; +} +.sh-regularfa-recycle:before { + content: "\e0388"; +} +.sh-regularfa-quote-right:before { + content: "\e0387"; +} +.sh-regularfa-quote-left:before { + content: "\e0386"; +} +.sh-regularfa-question-circle-o:before { + content: "\e0385"; +} +.sh-regularfa-question-circle:before { + content: "\e0384"; +} +.sh-regularfa-question:before { + content: "\e0383"; +} +.sh-regularfa-qrcode:before { + content: "\e0382"; +} +.sh-regularfa-power-off:before { + content: "\e0381"; +} +.sh-regularfa-podcast:before { + content: "\e0380"; +} +.sh-regularfa-plus-square-o:before { + content: "\e0379"; +} +.sh-regularfa-plug:before { + content: "\e0378"; +} +.sh-regularfa-picture-o:before { + content: "\e0377"; +} +.sh-regularfa-photo:before { + content: "\e0376"; +} +.sh-regularfa-phone-square:before { + content: "\e0375"; +} +.sh-regularfa-percent:before { + content: "\e0374"; +} +.sh-regularfa-pencil-square:before { + content: "\e0373"; +} +.sh-regularfa-paw:before { + content: "\e0372"; +} +.sh-regularfa-object-ungroup:before { + content: "\e0371"; +} +.sh-regularfa-object-group:before { + content: "\e0370"; +} +.sh-regularfa-newspaper-o:before { + content: "\e0369"; +} +.sh-regularfa-navicon:before { + content: "\e0368"; +} +.sh-regularfa-music:before { + content: "\e0367"; +} +.sh-regularfa-motorcycle:before { + content: "\e0366"; +} +.sh-regularfa-mortar-board:before { + content: "\e0365"; +} +.sh-regularfa-moon-o:before { + content: "\e0364"; +} +.sh-regularfa-mobile-phone:before { + content: "\e0363"; +} +.sh-regularfa-minus-square-o:before { + content: "\e0362"; +} +.sh-regularfa-microchip:before { + content: "\e0361"; +} +.sh-regularfa-meh-o:before { + content: "\e0360"; +} +.sh-regularfa-map-signs:before { + content: "\e0359"; +} +.sh-regularfa-map-pin:before { + content: "\e0358"; +} +.sh-regularfa-map-o:before { + content: "\e0357"; +} +.sh-regularfa-map:before { + content: "\e0356"; +} +.sh-regularfa-male:before { + content: "\e0355"; +} +.sh-regularfa-mail-reply-all:before { + content: "\e0354"; +} +.sh-regularfa-mail-reply:before { + content: "\e0353"; +} +.sh-regularfa-mail-forward:before { + content: "\e0352"; +} +.sh-regularfa-magnet:before { + content: "\e0351"; +} +.sh-regularfa-magic:before { + content: "\e0350"; +} +.sh-regularfa-low-vision:before { + content: "\e0349"; +} +.sh-regularfa-lock:before { + content: "\e0348"; +} +.sh-regularfa-location-arrow:before { + content: "\e0347"; +} +.sh-regularfa-lightbulb-o:before { + content: "\e0346"; +} +.sh-regularfa-life-saver:before { + content: "\e0345"; +} +.sh-regularfa-life-ring:before { + content: "\e0344"; +} +.sh-regularfa-life-buoy:before { + content: "\e0343"; +} +.sh-regularfa-life-bouy:before { + content: "\e0342"; +} +.sh-regularfa-level-down:before { + content: "\e0341"; +} +.sh-regularfa-lemon-o:before { + content: "\e0340"; +} +.sh-regularfa-legal:before { + content: "\e0339"; +} +.sh-regularfa-leaf:before { + content: "\e0338"; +} +.sh-regularfa-laptop:before { + content: "\e0337"; +} +.sh-regularfa-language:before { + content: "\e0336"; +} +.sh-regularfa-keyboard-o:before { + content: "\e0335"; +} +.sh-regularfa-key:before { + content: "\e0334"; +} +.sh-regularfa-institution:before { + content: "\e0333"; +} +.sh-regularfa-info:before { + content: "\e0332"; +} +.sh-regularfa-industry:before { + content: "\e0331"; +} +.sh-regularfa-image:before { + content: "\e0330"; +} +.sh-regularfa-id-card:before { + content: "\e0329"; +} +.sh-regularfa-id-badge:before { + content: "\e0328"; +} +.sh-regularfa-i-cursor:before { + content: "\e0327"; +} +.sh-regularfa-hourglass-start:before { + content: "\e0326"; +} +.sh-regularfa-hourglass-o:before { + content: "\e0325"; +} +.sh-regularfa-hourglass-end:before { + content: "\e0324"; +} +.sh-regularfa-hourglass-3:before { + content: "\e0323"; +} +.sh-regularfa-hourglass-2:before { + content: "\e0322"; +} +.sh-regularfa-hourglass-1:before { + content: "\e0321"; +} +.sh-regularfa-hourglass:before { + content: "\e0320"; +} +.sh-regularfa-hotel:before { + content: "\e0319"; +} +.sh-regularfa-home:before { + content: "\e0318"; +} +.sh-regularfa-heart-o:before { + content: "\e0317"; +} +.sh-regularfa-heartbeat:before { + content: "\e0316"; +} +.sh-regularfa-hdd-o:before { + content: "\e0315"; +} +.sh-regularfa-hard-of-hearing:before { + content: "\e0314"; +} +.sh-regularfa-hand-stop-o:before { + content: "\e0313"; +} +.sh-regularfa-hand-spock-o:before { + content: "\e0312"; +} +.sh-regularfa-handshake-o:before { + content: "\e0311"; +} +.sh-regularfa-hand-scissors-o:before { + content: "\e0310"; +} +.sh-regularfa-hand-rock-o:before { + content: "\e0309"; +} +.sh-regularfa-hand-pointer-o:before { + content: "\e0308"; +} +.sh-regularfa-hand-peace-o:before { + content: "\e0307"; +} +.sh-regularfa-hand-paper-o:before { + content: "\e0306"; +} +.sh-regularfa-hand-lizard-o:before { + content: "\e0305"; +} +.sh-regularfa-hand-grab-o:before { + content: "\e0304"; +} +.sh-regularfa-group:before { + content: "\e0303"; +} +.sh-regularfa-graduation-cap:before { + content: "\e0302"; +} +.sh-regularfa-glass:before { + content: "\e0301"; +} +.sh-regularfa-gears:before { + content: "\e0300"; +} +.sh-regularfa-gear:before { + content: "\e0299"; +} +.sh-regularfa-gavel:before { + content: "\e0298"; +} +.sh-regularfa-gamepad:before { + content: "\e0297"; +} +.sh-regularfa-futbol-o:before { + content: "\e0296"; +} +.sh-regularfa-frown-o:before { + content: "\e0295"; +} +.sh-regularfa-folder-open-o:before { + content: "\e0294"; +} +.sh-regularfa-folder-open:before { + content: "\e0293"; +} +.sh-regularfa-folder-o:before { + content: "\e0292"; +} +.sh-regularfa-flash:before { + content: "\e0291"; +} +.sh-regularfa-flag-o:before { + content: "\e0290"; +} +.sh-regularfa-flag-checkered:before { + content: "\e0289"; +} +.sh-regularfa-flag:before { + content: "\e0288"; +} +.sh-regularfa-fire-extinguisher:before { + content: "\e0287"; +} +.sh-regularfa-fire:before { + content: "\e0286"; +} +.sh-regularfa-film:before { + content: "\e0285"; +} +.sh-regularfa-file-zip-o:before { + content: "\e0284"; +} +.sh-regularfa-file-word-o:before { + content: "\e0283"; +} +.sh-regularfa-file-video-o:before { + content: "\e0282"; +} +.sh-regularfa-file-sound-o:before { + content: "\e0281"; +} +.sh-regularfa-file-powerpoint-o:before { + content: "\e0280"; +} +.sh-regularfa-file-picture-o:before { + content: "\e0279"; +} +.sh-regularfa-file-photo-o:before { + content: "\e0278"; +} +.sh-regularfa-file-pdf-o:before { + content: "\e0277"; +} +.sh-regularfa-file-movie-o:before { + content: "\e0276"; +} +.sh-regularfa-file-image-o:before { + content: "\e0275"; +} +.sh-regularfa-file-code-o:before { + content: "\e0274"; +} +.sh-regularfa-file-audio-o:before { + content: "\e0273"; +} +.sh-regularfa-file-archive-o:before { + content: "\e0272"; +} +.sh-regularfa-fighter-jet:before { + content: "\e0271"; +} +.sh-regularfa-female:before { + content: "\e0270"; +} +.sh-regularfa-feed:before { + content: "\e0269"; +} +.sh-regularfa-fax:before { + content: "\e0268"; +} +.sh-regularfa-eye-slash:before { + content: "\e0267"; +} +.sh-regularfa-eyedropper:before { + content: "\e0266"; +} +.sh-regularfa-external-link-square:before { + content: "\e0265"; +} +.sh-regularfa-exclamation-circle:before { + content: "\e0264"; +} +.sh-regularfa-exclamation:before { + content: "\e0263"; +} +.sh-regularfa-envelope-square:before { + content: "\e0262"; +} +.sh-regularfa-envelope-open-o:before { + content: "\e0261"; +} +.sh-regularfa-envelope-open:before { + content: "\e0260"; +} +.sh-regularfa-envelope-o:before { + content: "\e0259"; +} +.sh-regularfa-drivers-license-o:before { + content: "\e0258"; +} +.sh-regularfa-drivers-license:before { + content: "\e0257"; +} +.sh-regularfa-dot-circle-o:before { + content: "\e0256"; +} +.sh-regularfa-diamond:before { + content: "\e0255"; +} +.sh-regularfa-deafness:before { + content: "\e0254"; +} +.sh-regularfa-deaf:before { + content: "\e0253"; +} +.sh-regularfa-dashboard:before { + content: "\e0252"; +} +.sh-regularfa-cube:before { + content: "\e0251"; +} +.sh-regularfa-crosshairs:before { + content: "\e0250"; +} +.sh-regularfa-crop:before { + content: "\e0249"; +} +.sh-regularfa-credit-card-alt:before { + content: "\e0248"; +} +.sh-regularfa-copyright:before { + content: "\e0247"; +} +.sh-regularfa-compass:before { + content: "\e0246"; +} +.sh-regularfa-comments-o:before { + content: "\e0245"; +} +.sh-regularfa-comment-o:before { + content: "\e0244"; +} +.sh-regularfa-commenting-o:before { + content: "\e0243"; +} +.sh-regularfa-commenting:before { + content: "\e0242"; +} +.sh-regularfa-comment:before { + content: "\e0241"; +} +.sh-regularfa-coffee:before { + content: "\e0240"; +} +.sh-regularfa-code-fork:before { + content: "\e0239"; +} +.sh-regularfa-cloud-upload:before { + content: "\e0238"; +} +.sh-regularfa-cloud-download:before { + content: "\e0237"; +} +.sh-regularfa-cloud:before { + content: "\e0236"; +} +.sh-regularfa-close:before { + content: "\e0235"; +} +.sh-regularfa-clone:before { + content: "\e0234"; +} +.sh-regularfa-circle-thin:before { + content: "\e0233"; +} +.sh-regularfa-circle-o-notch:before { + content: "\e0232"; +} +.sh-regularfa-child:before { + content: "\e0231"; +} +.sh-regularfa-check-square-o:before { + content: "\e0230"; +} +.sh-regularfa-check-circle-o:before { + content: "\e0229"; +} +.sh-regularfa-certificate:before { + content: "\e0228"; +} +.sh-regularfa-cc:before { + content: "\e0227"; +} +.sh-regularfa-cart-plus:before { + content: "\e0226"; +} +.sh-regularfa-cart-arrow-down:before { + content: "\e0225"; +} +.sh-regularfa-caret-square-o-up:before { + content: "\e0224"; +} +.sh-regularfa-caret-square-o-right:before { + content: "\e0223"; +} +.sh-regularfa-caret-square-o-left:before { + content: "\e0222"; +} +.sh-regularfa-caret-square-o-down:before { + content: "\e0221"; +} +.sh-regularfa-camera-retro:before { + content: "\e0220"; +} +.sh-regularfa-camera:before { + content: "\e0219"; +} +.sh-regularfa-calendar-times-o:before { + content: "\e0218"; +} +.sh-regularfa-calendar-minus-o:before { + content: "\e0217"; +} +.sh-regularfa-calculator:before { + content: "\e0216"; +} +.sh-regularfa-cab:before { + content: "\e0215"; +} +.sh-regularfa-bus:before { + content: "\e0214"; +} +.sh-regularfa-bullhorn:before { + content: "\e0213"; +} +.sh-regularfa-briefcase:before { + content: "\e0212"; +} +.sh-regularfa-braille:before { + content: "\e0211"; +} +.sh-regularfa-bomb:before { + content: "\e0210"; +} +.sh-regularfa-bolt:before { + content: "\e0209"; +} +.sh-regularfa-bluetooth-b:before { + content: "\e0208"; +} +.sh-regularfa-bluetooth:before { + content: "\e0207"; +} +.sh-regularfa-blind:before { + content: "\e0206"; +} +.sh-regularfa-birthday-cake:before { + content: "\e0205"; +} +.sh-regularfa-binoculars:before { + content: "\e0204"; +} +.sh-regularfa-bicycle:before { + content: "\e0203"; +} +.sh-regularfa-bell-slash-o:before { + content: "\e0202"; +} +.sh-regularfa-bell-o:before { + content: "\e0201"; +} +.sh-regularfa-bell:before { + content: "\e0200"; +} +.sh-regularfa-beer:before { + content: "\e0199"; +} +.sh-regularfa-bed:before { + content: "\e0198"; +} +.sh-regularfa-battery-three-quarters:before { + content: "\e0197"; +} +.sh-regularfa-battery-quarter:before { + content: "\e0196"; +} +.sh-regularfa-battery-half:before { + content: "\e0195"; +} +.sh-regularfa-battery-full:before { + content: "\e0194"; +} +.sh-regularfa-battery-empty:before { + content: "\e0193"; +} +.sh-regularfa-battery-4:before { + content: "\e0192"; +} +.sh-regularfa-battery-3:before { + content: "\e0191"; +} +.sh-regularfa-battery-2:before { + content: "\e0190"; +} +.sh-regularfa-battery-1:before { + content: "\e0189"; +} +.sh-regularfa-battery-0:before { + content: "\e0188"; +} +.sh-regularfa-battery:before { + content: "\e0187"; +} +.sh-regularfa-bathtub:before { + content: "\e0186"; +} +.sh-regularfa-bath:before { + content: "\e0185"; +} +.sh-regularfa-barcode:before { + content: "\e0184"; +} +.sh-regularfa-bar-chart-o:before { + content: "\e0183"; +} +.sh-regularfa-bank:before { + content: "\e0182"; +} +.sh-regularfa-ban:before { + content: "\e0181"; +} +.sh-regularfa-balance-scale:before { + content: "\e0180"; +} +.sh-regularfa-automobile:before { + content: "\e0179"; +} +.sh-regularfa-audio-description:before { + content: "\e0178"; +} +.sh-regularfa-at:before { + content: "\e0177"; +} +.sh-regularfa-asterisk:before { + content: "\e0176"; +} +.sh-regularfa-assistive-listening-systems:before { + content: "\e0175"; +} +.sh-regularfa-asl-interpreting:before { + content: "\e0174"; +} +.sh-regularfa-arrows-h:before { + content: "\e0173"; +} +.sh-regularfa-archive:before { + content: "\e0172"; +} +.sh-regularfa-anchor:before { + content: "\e0171"; +} +.sh-regularfa-american-sign-language-interpreting:before { + content: "\e0170"; +} +.sh-regularfa-address-card-o:before { + content: "\e0169"; +} +.sh-regularfa-address-card:before { + content: "\e0168"; +} +.sh-regularfa-address-book-o:before { + content: "\e0167"; +} +.sh-regularfa-address-book:before { + content: "\e0166"; +} +.sh-regularfa-compress:before { + content: "\e0165"; +} +.sh-regularfa-eye:before { + content: "\e0164"; +} +.sh-regularfa-angle-double-right:before { + content: "\e0163"; +} +.sh-regularfa-caret-right:before { + content: "\e0162"; +} +.sh-regularfa-angle-up:before { + content: "\e0161"; +} +.sh-regularfa-minus:before { + content: "\e0160"; +} +.sh-regularfa-eraser:before { + content: "\e0159"; +} +.sh-regularfa-unlink:before { + content: "\e0158"; +} +.sh-regularfa-chain:before { + content: "\e0157"; +} +.sh-regularfa-link:before { + content: "\e0156"; +} +.sh-regularfa-list-ol:before { + content: "\e0155"; +} +.sh-regularfa-paint-brush:before { + content: "\e0154"; +} +.sh-regularfa-font:before { + content: "\e0153"; +} +.sh-regularfa-strikethrough:before { + content: "\e0152"; +} +.sh-regularfa-underline:before { + content: "\e0151"; +} +.sh-regularfa-italic:before { + content: "\e0150"; +} +.sh-regularfa-bold:before { + content: "\e0149"; +} +.sh-regularfa-heart:before { + content: "\e0148"; +} +.sh-regularfa-times-circle-o:before { + content: "\e0147"; +} +.sh-regularfa-square-o:before { + content: "\e0146"; +} +.sh-regularfa-check-square:before { + content: "\e0145"; +} +.sh-regularfa-volume-down:before { + content: "\e0144"; +} +.sh-regularfa-volume-up:before { + content: "\e0143"; +} +.sh-regularfa-volume-off:before { + content: "\e0142"; +} +.sh-regularfa-microphone:before { + content: "\e0141"; +} +.sh-regularfa-arrows-alt:before { + content: "\e0140"; +} +.sh-regularfa-desktop:before { + content: "\e0139"; +} +.sh-regularfa-headphones:before { + content: "\e0138"; +} +.sh-regularfa-microphone-slash:before { + content: "\e0137"; +} +.sh-regularsh-icon-tasks1:before { + content: "\e0136"; +} +.sh-regularsh-icon-sun:before { + content: "\e0135"; +} +.sh-regularsh-icon-moon:before { + content: "\e0134"; +} +.sh-regularsh-icon-language-selector:before { + content: "\e0133"; +} +.sh-regularsh-icon-expand1:before { + content: "\e0132"; +} +.sh-regularsh-icon-compress1:before { + content: "\e0131"; +} +.sh-regularsh-icon-calculator1:before { + content: "\e0130"; +} +.sh-regularfa-bookmark-o:before { + content: "\e0129"; +} +.sh-regularfa-bookmark:before { + content: "\e0128"; +} +.sh-regularfa-wrench:before { + content: "\e0127"; +} +.sh-regularfa-video-camera:before { + content: "\e0126"; +} +.sh-regularfa-users:before { + content: "\e0125"; +} +.sh-regularfa-user-plus:before { + content: "\e0124"; +} +.sh-regularfa-user:before { + content: "\e0123"; +} +.sh-regularfa-usd:before { + content: "\e0122"; +} +.sh-regularfa-upload:before { + content: "\e0121"; +} +.sh-regularfa-university:before { + content: "\e0120"; +} +.sh-regularfa-undo:before { + content: "\e0119"; +} +.sh-regularfa-truck:before { + content: "\e0118"; +} +.sh-regularfa-trophy:before { + content: "\e0117"; +} +.sh-regularfa-trash-o:before { + content: "\e0116"; +} +.sh-regularfa-trash:before { + content: "\e0115"; +} +.sh-regularfa-toggle-on:before { + content: "\e0114"; +} +.sh-regularfa-toggle-off:before { + content: "\e0113"; +} +.sh-regularfa-times-circle:before { + content: "\e0112"; +} +.sh-regularfa-times:before { + content: "\e0111"; +} +.sh-regularfa-ticket:before { + content: "\e0110"; +} +.sh-regularfa-thumbs-up:before { + content: "\e0109"; +} +.sh-regularfa-th-list:before { + content: "\e0108"; +} +.sh-regularfa-th-large:before { + content: "\e0107"; +} +.sh-regularfa-th:before { + content: "\e0106"; +} +.sh-regularfa-tasks:before { + content: "\e0105"; +} +.sh-regularfa-tachometer:before { + content: "\e0104"; +} +.sh-regularfa-table:before { + content: "\e0103"; +} +.sh-regularfa-sun-o:before { + content: "\e0102"; +} +.sh-regularfa-star-o:before { + content: "\e0101"; +} +.sh-regularfa-star:before { + content: "\e0100"; +} +.sh-regularfa-sort-amount-desc:before { + content: "\e0099"; +} +.sh-regularfa-sort-amount-asc:before { + content: "\e0098"; +} +.sh-regularfa-sort:before { + content: "\e0097"; +} +.sh-regularfa-smile-o:before { + content: "\e0096"; +} +.sh-regularfa-sitemap:before { + content: "\e0095"; +} +.sh-regularfa-sign-out:before { + content: "\e0094"; +} +.sh-regularfa-sign-in:before { + content: "\e0093"; +} +.sh-regularfa-signal:before { + content: "\e0092"; +} +.sh-regularfa-shopping-basket:before { + content: "\e0091"; +} +.sh-regularfa-search-plus:before { + content: "\e0090"; +} +.sh-regularfa-search:before { + content: "\e0089"; +} +.sh-regularfa-save:before { + content: "\e0088"; +} +.sh-regularfa-reply:before { + content: "\e0087"; +} +.sh-regularfa-repeat:before { + content: "\e0086"; +} +.sh-regularfa-refresh:before { + content: "\e0085"; +} +.sh-regularfa-random:before { + content: "\e0084"; +} +.sh-regularfa-puzzle-piece:before { + content: "\e0083"; +} +.sh-regularfa-print:before { + content: "\e0082"; +} +.sh-regularfa-plus-square:before { + content: "\e0081"; +} +.sh-regularfa-plus-circle:before { + content: "\e0080"; +} +.sh-regularfa-plus:before { + content: "\e0079"; +} +.sh-regularfa-plane:before { + content: "\e0078"; +} +.sh-regularfa-pie-chart:before { + content: "\e0077"; +} +.sh-regularfa-phone:before { + content: "\e0076"; +} +.sh-regularfa-pencil-square-o:before { + content: "\e0075"; +} +.sh-regularfa-pencil:before { + content: "\e0074"; +} +.sh-regularfa-paper-plane-o:before { + content: "\e0073"; +} +.sh-regularfa-paper-plane:before { + content: "\e0072"; +} +.sh-regularfa-paperclip:before { + content: "\e0071"; +} +.sh-regularfa-mouse-pointer:before { + content: "\e0070"; +} +.sh-regularfa-money:before { + content: "\e0069"; +} +.sh-regularfa-mobile:before { + content: "\e0068"; +} +.sh-regularfa-minus-square:before { + content: "\e0067"; +} +.sh-regularfa-minus-circle:before { + content: "\e0066"; +} +.sh-regularfa-map-marker:before { + content: "\e0065"; +} +.sh-regularfa-long-arrow-right:before { + content: "\e0064"; +} +.sh-regularfa-list-ul:before { + content: "\e0063"; +} +.sh-regularfa-list-alt:before { + content: "\e0062"; +} +.sh-regularfa-list:before { + content: "\e0061"; +} +.sh-regularfa-line-chart:before { + content: "\e0060"; +} +.sh-regularfa-level-up:before { + content: "\e0059"; +} +.sh-regularfa-info-circle:before { + content: "\e0058"; +} +.sh-regularfa-inbox:before { + content: "\e0057"; +} +.sh-regularfa-id-card-o:before { + content: "\e0056"; +} +.sh-regularfa-hourglass-half:before { + content: "\e0055"; +} +.sh-regularfa-history:before { + content: "\e0054"; +} +.sh-regularfa-hashtag:before { + content: "\e0053"; +} +.sh-regularfa-globe:before { + content: "\e0052"; +} +.sh-regularfa-gift:before { + content: "\e0051"; +} +.sh-regularfa-folder:before { + content: "\e0050"; +} +.sh-regularfa-flask:before { + content: "\e0049"; +} +.sh-regularfa-filter:before { + content: "\e0048"; +} +.sh-regularfa-file-text-o:before { + content: "\e0047"; +} +.sh-regularfa-files-o:before { + content: "\e0046"; +} +.sh-regularfa-external-link:before { + content: "\e0045"; +} +.sh-regularfa-expand:before { + content: "\e0044"; +} +.sh-regularfa-exclamation-triangle:before { + content: "\e0043"; +} +.sh-regularfa-exchange:before { + content: "\e0042"; +} +.sh-regularfa-envelope:before { + content: "\e0041"; +} +.sh-regularfa-ellipsis-v:before { + content: "\e0040"; +} +.sh-regularfa-ellipsis-h:before { + content: "\e0039"; +} +.sh-regularfa-edit:before { + content: "\e0038"; +} +.sh-regularfa-download:before { + content: "\e0037"; +} +.sh-regularfa-database:before { + content: "\e0036"; +} +.sh-regularfa-cutlery:before { + content: "\e0035"; +} +.sh-regularfa-cubes:before { + content: "\e0034"; +} +.sh-regularfa-credit-card:before { + content: "\e0033"; +} +.sh-regularfa-comments:before { + content: "\e0032"; +} +.sh-regularfa-cogs:before { + content: "\e0031"; +} +.sh-regularfa-cog:before { + content: "\e0030"; +} +.sh-regularfa-code:before { + content: "\e0029"; +} +.sh-regularfa-clock-o:before { + content: "\e0028"; +} +.sh-regularfa-circle-o:before { + content: "\e0027"; +} +.sh-regularfa-circle:before { + content: "\e0026"; +} +.sh-regularfa-chevron-left:before { + content: "\e0025"; +} +.sh-regularfa-chevron-right:before { + content: "\e0024"; +} +.sh-regularfa-chevron-down:before { + content: "\e0023"; +} +.sh-regularfa-check-circle:before { + content: "\e0022"; +} +.sh-regularfa-check:before { + content: "\e0021"; +} +.sh-regularfa-caret-down:before { + content: "\e0020"; +} +.sh-regularfa-car:before { + content: "\e0019"; +} +.sh-regularfa-calendar-plus-o:before { + content: "\e0018"; +} +.sh-regularfa-calendar-o:before { + content: "\e0017"; +} +.sh-regularfa-calendar-check-o:before { + content: "\e0016"; +} +.sh-regularfa-calendar:before { + content: "\e0015"; +} +.sh-regularfa-bullseye:before { + content: "\e0014"; +} +.sh-regularfa-building-o:before { + content: "\e0013"; +} +.sh-regularfa-building:before { + content: "\e0012"; +} +.sh-regularfa-bug:before { + content: "\e0011"; +} +.sh-regularfa-book:before { + content: "\e0010"; +} +.sh-regularfa-bell-slash:before { + content: "\e0009"; +} +.sh-regularfa-bars:before { + content: "\e0008"; +} +.sh-regularfa-bar-chart:before { + content: "\e0007"; +} +.sh-regularfa-arrow-up:before { + content: "\e0006"; +} +.sh-regularfa-arrows-v:before { + content: "\e0005"; +} +.sh-regularfa-arrows:before { + content: "\e0004"; +} +.sh-regularfa-arrow-left:before { + content: "\e0003"; +} +.sh-regularfa-arrow-right:before { + content: "\e0002"; +} +.sh-regularfa-area-chart:before { + content: "\e0001"; +} +.sh-regularfa-adjust:before { + content: "\e0000"; +} diff --git a/custom_addons/backend_base/static/src/scss/thin_icon/style.css b/custom_addons/backend_base/static/src/scss/thin_icon/style.css new file mode 100644 index 000000000..a3a7b1d15 --- /dev/null +++ b/custom_addons/backend_base/static/src/scss/thin_icon/style.css @@ -0,0 +1,10124 @@ +@font-face { + font-family: 'icomoon'; + src: url('/backend_base/static/src/icon/thin_icon/fonts/icomoon.eot?ovjvib'); + src: url('/backend_base/static/src/icon/thin_icon/fonts/icomoon.eot?ovjvib#iefix') format('embedded-opentype'), + url('/backend_base/static/src/icon/thin_icon/fonts/icomoon.woff2?ovjvib') format('woff2'), + url('/backend_base/static/src/icon/thin_icon/fonts/icomoon.ttf?ovjvib') format('truetype'), + url('/backend_base/static/src/icon/thin_icon/fonts/icomoon.woff?ovjvib') format('woff'), + url('/backend_base/static/src/icon/thin_icon/fonts/icomoon.svg?ovjvib#icomoon') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="sh-thin"], [class*=" sh-thin"] { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'icomoon' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.sh-thinfa-notes:before { + content: "\a3364"; +} +.sh-thinfa-note:before { + content: "\a3363"; +} +.sh-thinfa-input-text:before { + content: "\a3362"; +} +.sh-thinfa-input-pipe:before { + content: "\a3361"; +} +.sh-thinfa-input-numeric:before { + content: "\a3360"; +} +.sh-thinfa-circle-book-open:before { + content: "\a3359"; +} +.sh-thinfa-circle-bookmark:before { + content: "\a3358"; +} +.sh-thinfa-bookmark-slash:before { + content: "\a3357"; +} +.sh-thinfa-book-circle-arrow-up:before { + content: "\a3356"; +} +.sh-thinfa-book-circle-arrow-right:before { + content: "\a3355"; +} +.sh-thinfa-book-arrow-up:before { + content: "\a3354"; +} +.sh-thinfa-book-arrow-right:before { + content: "\a3353"; +} +.sh-thinfa-blog:before { + content: "\a3352"; +} +.sh-thinfa-windsock:before { + content: "\a3351"; +} +.sh-thinfa-umbrella-simple:before { + content: "\a3350"; +} +.sh-thinfa-temperature-sun:before { + content: "\a3349"; +} +.sh-thinfa-temperature-snow:before { + content: "\a3348"; +} +.sh-thinfa-temperature-list:before { + content: "\a3347"; +} +.sh-thinfa-sun-haze:before { + content: "\a3346"; +} +.sh-thinfa-sun-dust:before { + content: "\a3345"; +} +.sh-thinfa-sun-cloud:before { + content: "\a3344"; +} +.sh-thinfa-snowflakes:before { + content: "\a3343"; +} +.sh-thinfa-snowflake-droplets:before { + content: "\a3342"; +} +.sh-thinfa-snow-blowing:before { + content: "\a3341"; +} +.sh-thinfa-smoke:before { + content: "\a3340"; +} +.sh-thinfa-smog:before { + content: "\a3339"; +} +.sh-thinfa-rainbow:before { + content: "\a3338"; +} +.sh-thinfa-poo-storm:before { + content: "\a3337"; +} +.sh-thinfa-moon-cloud:before { + content: "\a3336"; +} +.sh-thinfa-droplet-percent:before { + content: "\a3335"; +} +.sh-thinfa-droplet-degree:before { + content: "\a3334"; +} +.sh-thinfa-cloud-sun-rain:before { + content: "\a3333"; +} +.sh-thinfa-clouds-sun:before { + content: "\a3332"; +} +.sh-thinfa-cloud-snow:before { + content: "\a3331"; +} +.sh-thinfa-clouds-moon:before { + content: "\a3330"; +} +.sh-thinfa-cloud-sleet:before { + content: "\a3329"; +} +.sh-thinfa-cloud-showers:before { + content: "\a3328"; +} +.sh-thinfa-clouds:before { + content: "\a3327"; +} +.sh-thinfa-cloud-rainbow:before { + content: "\a3326"; +} +.sh-thinfa-cloud-rain:before { + content: "\a3325"; +} +.sh-thinfa-cloud-moon-rain:before { + content: "\a3324"; +} +.sh-thinfa-cloud-hail-mixed:before { + content: "\a3323"; +} +.sh-thinfa-cloud-hail:before { + content: "\a3322"; +} +.sh-thinfa-cloud-fog:before { + content: "\a3321"; +} +.sh-thinfa-cloud-drizzle:before { + content: "\a3320"; +} +.sh-thinfa-cloud-bolt-sun:before { + content: "\a3319"; +} +.sh-thinfa-cloud-bolt-moon:before { + content: "\a3318"; +} +.sh-thinfa-user-vneck-hair-long:before { + content: "\a3317"; +} +.sh-thinfa-user-vneck-hair:before { + content: "\a3316"; +} +.sh-thinfa-user-vneck:before { + content: "\a3315"; +} +.sh-thinfa-user-tag:before { + content: "\a3314"; +} +.sh-thinfa-users-slash:before { + content: "\a3313"; +} +.sh-thinfa-user-slash:before { + content: "\a3312"; +} +.sh-thinfa-user-shakespeare:before { + content: "\a3311"; +} +.sh-thinfa-users-gear:before { + content: "\a3310"; +} +.sh-thinfa-user-pen:before { + content: "\a3309"; +} +.sh-thinfa-user-ninja:before { + content: "\a3308"; +} +.sh-thinfa-user-minus:before { + content: "\a3307"; +} +.sh-thinfa-user-magnifying-glass:before { + content: "\a3306"; +} +.sh-thinfa-user-large-slash:before { + content: "\a3305"; +} +.sh-thinfa-user-large:before { + content: "\a3304"; +} +.sh-thinfa-user-headset:before { + content: "\a3303"; +} +.sh-thinfa-user-hair-long:before { + content: "\a3302"; +} +.sh-thinfa-user-hair:before { + content: "\a3301"; +} +.sh-thinfa-user-gear:before { + content: "\a3300"; +} +.sh-thinfa-user-cowboy:before { + content: "\a3299"; +} +.sh-thinfa-user-clock:before { + content: "\a3298"; +} +.sh-thinfa-user-check:before { + content: "\a3297"; +} +.sh-thinfa-square-user:before { + content: "\a3296"; +} +.sh-thinfa-person-simple:before { + content: "\a3295"; +} +.sh-thinfa-person-fairy:before { + content: "\a3294"; +} +.sh-thinfa-person-dress-simple:before { + content: "\a3293"; +} +.sh-thinfa-person-dress-fairy:before { + content: "\a3292"; +} +.sh-thinfa-people-simple:before { + content: "\a3291"; +} +.sh-thinfa-people-pants-simple:before { + content: "\a3290"; +} +.sh-thinfa-people-pants:before { + content: "\a3289"; +} +.sh-thinfa-people-dress-simple:before { + content: "\a3288"; +} +.sh-thinfa-people-dress:before { + content: "\a3287"; +} +.sh-thinfa-people:before { + content: "\a3286"; +} +.sh-thinfa-head-side-goggles:before { + content: "\a3285"; +} +.sh-thinfa-head-side-gear:before { + content: "\a3284"; +} +.sh-thinfa-head-side:before { + content: "\a3283"; +} +.sh-thinfa-child-dress:before { + content: "\a3282"; +} +.sh-thinfa-water-ladder:before { + content: "\a3281"; +} +.sh-thinfa-user-pilot-tie:before { + content: "\a3280"; +} +.sh-thinfa-user-pilot:before { + content: "\a3279"; +} +.sh-thinfa-umbrella-beach:before { + content: "\a3278"; +} +.sh-thinfa-toilet-paper-check:before { + content: "\a3277"; +} +.sh-thinfa-tickets-airline:before { + content: "\a3276"; +} +.sh-thinfa-ticket-airline:before { + content: "\a3275"; +} +.sh-thinfa-suitcase-rolling:before { + content: "\a3274"; +} +.sh-thinfa-plane-departure:before { + content: "\a3273"; +} +.sh-thinfa-plane-arrival:before { + content: "\a3272"; +} +.sh-thinfa-phone-rotary:before { + content: "\a3271"; +} +.sh-thinfa-person-seat-reclined:before { + content: "\a3270"; +} +.sh-thinfa-person-seat:before { + content: "\a3269"; +} +.sh-thinfa-island-tropical:before { + content: "\a3268"; +} +.sh-thinfa-hot-tub-person:before { + content: "\a3267"; +} +.sh-thinfa-hat-beach:before { + content: "\a3266"; +} +.sh-thinfa-escalator:before { + content: "\a3265"; +} +.sh-thinfa-elevator:before { + content: "\a3264"; +} +.sh-thinfa-earth-oceania:before { + content: "\a3263"; +} +.sh-thinfa-earth-europe:before { + content: "\a3262"; +} +.sh-thinfa-earth-asia:before { + content: "\a3261"; +} +.sh-thinfa-earth-americas:before { + content: "\a3260"; +} +.sh-thinfa-earth-africa:before { + content: "\a3259"; +} +.sh-thinfa-cart-flatbed-suitcase:before { + content: "\a3258"; +} +.sh-thinfa-bell-concierge:before { + content: "\a3257"; +} +.sh-thinfa-truck-tow:before { + content: "\a3256"; +} +.sh-thinfa-tricycle-adult:before { + content: "\a3255"; +} +.sh-thinfa-tractor:before { + content: "\a3254"; +} +.sh-thinfa-tower-control:before { + content: "\a3253"; +} +.sh-thinfa-taxi-bus:before { + content: "\a3252"; +} +.sh-thinfa-seat-airline:before { + content: "\a3251"; +} +.sh-thinfa-plane-tail:before { + content: "\a3250"; +} +.sh-thinfa-plane-slash:before { + content: "\a3249"; +} +.sh-thinfa-plane-prop:before { + content: "\a3248"; +} +.sh-thinfa-person-snowmobiling:before { + content: "\a3247"; +} +.sh-thinfa-person-ski-lift:before { + content: "\a3246"; +} +.sh-thinfa-cable-car:before { + content: "\a3245"; +} +.sh-thinfa-wifi-slash:before { + content: "\a3244"; +} +.sh-thinfa-toggle-large-on:before { + content: "\a3243"; +} +.sh-thinfa-toggle-large-off:before { + content: "\a3242"; +} +.sh-thinfa-slider:before { + content: "\a3241"; +} +.sh-thinfa-plane-up-slash:before { + content: "\a3240"; +} +.sh-thinfa-microphone1:before { + content: "\a3239"; +} +.sh-thinfa-location-crosshairs:before { + content: "\a3238"; +} +.sh-thinfa-watch-smart:before { + content: "\a3237"; +} +.sh-thinfa-watch:before { + content: "\a3236"; +} +.sh-thinfa-trash-clock:before { + content: "\a3235"; +} +.sh-thinfa-timer:before { + content: "\a3234"; +} +.sh-thinfa-stopwatch:before { + content: "\a3233"; +} +.sh-thinfa-snooze:before { + content: "\a3232"; +} +.sh-thinfa-reply-clock:before { + content: "\a3231"; +} +.sh-thinfa-hourglass-clock:before { + content: "\a3230"; +} +.sh-thinfa-clock-two-thirty:before { + content: "\a3229"; +} +.sh-thinfa-clock-two:before { + content: "\a3228"; +} +.sh-thinfa-clock-twelve-thirty:before { + content: "\a3227"; +} +.sh-thinfa-clock-twelve:before { + content: "\a3226"; +} +.sh-thinfa-clock-three-thirty:before { + content: "\a3225"; +} +.sh-thinfa-clock-three:before { + content: "\a3224"; +} +.sh-thinfa-clock-ten-thirty:before { + content: "\a3223"; +} +.sh-thinfa-clock-ten:before { + content: "\a3222"; +} +.sh-thinfa-clock-six-thirty:before { + content: "\a3221"; +} +.sh-thinfa-clock-six:before { + content: "\a3220"; +} +.sh-thinfa-clock-seven-thirty:before { + content: "\a3219"; +} +.sh-thinfa-clock-seven:before { + content: "\a3218"; +} +.sh-thinfa-clock-one-thirty:before { + content: "\a3217"; +} +.sh-thinfa-clock-one:before { + content: "\a3216"; +} +.sh-thinfa-clock-nine-thirty:before { + content: "\a3215"; +} +.sh-thinfa-clock-nine:before { + content: "\a3214"; +} +.sh-thinfa-clock-four-thirty:before { + content: "\a3213"; +} +.sh-thinfa-clock-five:before { + content: "\a3212"; +} +.sh-thinfa-clock-eleven-thirty:before { + content: "\a3211"; +} +.sh-thinfa-clock-eleven:before { + content: "\a3210"; +} +.sh-thinfa-clock-eight-thirty:before { + content: "\a3209"; +} +.sh-thinfa-clock-eight:before { + content: "\a3208"; +} +.sh-thinfa-circle-calendar:before { + content: "\a3207"; +} +.sh-thinfa-calendar-week:before { + content: "\a3206"; +} +.sh-thinfa-calendar-users:before { + content: "\a3205"; +} +.sh-thinfa-calendars:before { + content: "\a3204"; +} +.sh-thinfa-calendar-range:before { + content: "\a3203"; +} +.sh-thinfa-calendar-pen:before { + content: "\a3202"; +} +.sh-thinfa-calendar-lines-pen:before { + content: "\a3201"; +} +.sh-thinfa-calendar-lines:before { + content: "\a3200"; +} +.sh-thinfa-calendar-image:before { + content: "\a3199"; +} +.sh-thinfa-calendar-day:before { + content: "\a3198"; +} +.sh-thinfa-calendar-clock:before { + content: "\a3197"; +} +.sh-thinfa-calendar-circle-user:before { + content: "\a3196"; +} +.sh-thinfa-calendar-circle-plus:before { + content: "\a3195"; +} +.sh-thinfa-calendar-circle-minus:before { + content: "\a3194"; +} +.sh-thinfa-calendar-circle-exclamation:before { + content: "\a3193"; +} +.sh-thinfa-calendar-arrow-up:before { + content: "\a3192"; +} +.sh-thinfa-calendar-arrow-down:before { + content: "\a3191"; +} +.sh-thinfa-bell-plus:before { + content: "\a3190"; +} +.sh-thinfa-alarm-snooze:before { + content: "\a3189"; +} +.sh-thinfa-alarm-plus:before { + content: "\a3188"; +} +.sh-thinfa-text-slash:before { + content: "\a3187"; +} +.sh-thinfa-text-size:before { + content: "\a3186"; +} +.sh-thinfa-text:before { + content: "\a3185"; +} +.sh-thinfa-table-list:before { + content: "\a3184"; +} +.sh-thinfa-table-cells-large:before { + content: "\a3183"; +} +.sh-thinfa-table-cells:before { + content: "\a3182"; +} +.sh-thinfa-square-list:before { + content: "\a3181"; +} +.sh-thinfa-square-a-lock:before { + content: "\a3180"; +} +.sh-thinfa-spell-check:before { + content: "\a3179"; +} +.sh-thinfa-paragraph-left:before { + content: "\a3178"; +} +.sh-thinfa-overline:before { + content: "\a3177"; +} +.sh-thinfa-lock-hashtag:before { + content: "\a3176"; +} +.sh-thinfa-lock-a:before { + content: "\a3175"; +} +.sh-thinfa-line-height:before { + content: "\a3174"; +} +.sh-thinfa-line-columns:before { + content: "\a3173"; +} +.sh-thinfa-kerning:before { + content: "\a3172"; +} +.sh-thinfa-hashtag-lock:before { + content: "\a3171"; +} +.sh-thinfa-h6:before { + content: "\a3170"; +} +.sh-thinfa-h5:before { + content: "\a3169"; +} +.sh-thinfa-h4:before { + content: "\a3168"; +} +.sh-thinfa-h3:before { + content: "\a3167"; +} +.sh-thinfa-h2:before { + content: "\a3166"; +} +.sh-thinfa-h1:before { + content: "\a3165"; +} +.sh-thinfa-font-case:before { + content: "\a3164"; +} +.sh-thinfa-filter-slash:before { + content: "\a3163"; +} +.sh-thinfa-filters:before { + content: "\a3162"; +} +.sh-thinfa-filter-list:before { + content: "\a3161"; +} +.sh-thinfa-filter-circle-xmark:before { + content: "\a3160"; +} +.sh-thinfa-file-dashed-line:before { + content: "\a3159"; +} +.sh-thinfa-border-top-left:before { + content: "\a3158"; +} +.sh-thinfa-border-top:before { + content: "\a3157"; +} +.sh-thinfa-border-right:before { + content: "\a3156"; +} +.sh-thinfa-border-outer:before { + content: "\a3155"; +} +.sh-thinfa-border-none:before { + content: "\a3154"; +} +.sh-thinfa-border-left:before { + content: "\a3153"; +} +.sh-thinfa-border-inner:before { + content: "\a3152"; +} +.sh-thinfa-border-center-v:before { + content: "\a3151"; +} +.sh-thinfa-border-center-h:before { + content: "\a3150"; +} +.sh-thinfa-border-bottom-right:before { + content: "\a3149"; +} +.sh-thinfa-border-bottom:before { + content: "\a3148"; +} +.sh-thinfa-border-all:before { + content: "\a3147"; +} +.sh-thinfa-block-quote:before { + content: "\a3146"; +} +.sh-thinfa-align-slash:before { + content: "\a3145"; +} +.sh-thinfa-weight-hanging:before { + content: "\a3144"; +} +.sh-thinfa-watch-apple:before { + content: "\a3143"; +} +.sh-thinfa-volleyball:before { + content: "\a3142"; +} +.sh-thinfa-tennis-ball:before { + content: "\a3141"; +} +.sh-thinfa-table-tennis-paddle-ball:before { + content: "\a3140"; +} +.sh-thinfa-stopwatch-20:before { + content: "\a3139"; +} +.sh-thinfa-sportsball:before { + content: "\a3138"; +} +.sh-thinfa-spa:before { + content: "\a3137"; +} +.sh-thinfa-ski-boot-ski:before { + content: "\a3136"; +} +.sh-thinfa-shuttlecock:before { + content: "\a3135"; +} +.sh-thinfa-rugby-ball:before { + content: "\a3134"; +} +.sh-thinfa-racquet:before { + content: "\a3133"; +} +.sh-thinfa-pickleball:before { + content: "\a3132"; +} +.sh-thinfa-person-snowboarding:before { + content: "\a3131"; +} +.sh-thinfa-person-ski-jumping:before { + content: "\a3130"; +} +.sh-thinfa-person-skiing-nordic:before { + content: "\a3129"; +} +.sh-thinfa-person-skiing:before { + content: "\a3128"; +} +.sh-thinfa-person-skating:before { + content: "\a3127"; +} +.sh-thinfa-person-running-fast:before { + content: "\a3126"; +} +.sh-thinfa-person-running:before { + content: "\a3125"; +} +.sh-thinfa-medal:before { + content: "\a3124"; +} +.sh-thinfa-mask-snorkel:before { + content: "\a3123"; +} +.sh-thinfa-luchador-mask:before { + content: "\a3122"; +} +.sh-thinfa-lacrosse-stick-ball:before { + content: "\a3121"; +} +.sh-thinfa-lacrosse-stick:before { + content: "\a3120"; +} +.sh-thinfa-hockey-sticks:before { + content: "\a3119"; +} +.sh-thinfa-hockey-stick-puck:before { + content: "\a3118"; +} +.sh-thinfa-hockey-puck:before { + content: "\a3117"; +} +.sh-thinfa-golf-flag-hole:before { + content: "\a3116"; +} +.sh-thinfa-golf-club:before { + content: "\a3115"; +} +.sh-thinfa-golf-ball-tee:before { + content: "\a3114"; +} +.sh-thinfa-goal-net:before { + content: "\a3113"; +} +.sh-thinfa-football-helmet:before { + content: "\a3112"; +} +.sh-thinfa-football:before { + content: "\a3111"; +} +.sh-thinfa-flying-disc:before { + content: "\a3110"; +} +.sh-thinfa-flag-pennant:before { + content: "\a3109"; +} +.sh-thinfa-field-hockey-stick-ball:before { + content: "\a3108"; +} +.sh-thinfa-dumbbell:before { + content: "\a3107"; +} +.sh-thinfa-curling-stone:before { + content: "\a3106"; +} +.sh-thinfa-cricket-bat-ball:before { + content: "\a3105"; +} +.sh-thinfa-broom-ball:before { + content: "\a3104"; +} +.sh-thinfa-boxing-glove:before { + content: "\a3103"; +} +.sh-thinfa-bowling-pins:before { + content: "\a3102"; +} +.sh-thinfa-bowling-ball-pin:before { + content: "\a3101"; +} +.sh-thinfa-bowling-ball:before { + content: "\a3100"; +} +.sh-thinfa-basketball:before { + content: "\a3099"; +} +.sh-thinfa-baseball:before { + content: "\a3098"; +} +.sh-thinfa-badminton:before { + content: "\a3097"; +} +.sh-thinfa-award-simple:before { + content: "\a3096"; +} +.sh-thinfa-spinner-third:before { + content: "\a3095"; +} +.sh-thinfa-slash:before { + content: "\a3094"; +} +.sh-thinfa-loader:before { + content: "\a3093"; +} +.sh-thinfa-bullseye-arrow:before { + content: "\a3092"; +} +.sh-thinfa-user-group-simple:before { + content: "\a3091"; +} +.sh-thinfa-user-group:before { + content: "\a3090"; +} +.sh-thinfa-share-from-square:before { + content: "\a3089"; +} +.sh-thinfa-share1:before { + content: "\a3088"; +} +.sh-thinfa-store-slash:before { + content: "\a3087"; +} +.sh-thinfa-shop-slash:before { + content: "\a3086"; +} +.sh-thinfa-nfc-trash:before { + content: "\a3085"; +} +.sh-thinfa-nfc-symbol:before { + content: "\a3084"; +} +.sh-thinfa-nfc-slash:before { + content: "\a3083"; +} +.sh-thinfa-nfc-pen:before { + content: "\a3082"; +} +.sh-thinfa-nfc-magnifying-glass:before { + content: "\a3081"; +} +.sh-thinfa-nfc-lock:before { + content: "\a3080"; +} +.sh-thinfa-nfc:before { + content: "\a3079"; +} +.sh-thinfa-hexagon-vertical-nft-slanted:before { + content: "\a3078"; +} +.sh-thinfa-hexagon-vertical-nft:before { + content: "\a3077"; +} +.sh-thinfa-gem:before { + content: "\a3076"; +} +.sh-thinfa-cart-xmark:before { + content: "\a3075"; +} +.sh-thinfa-cart-shopping-fast:before { + content: "\a3074"; +} +.sh-thinfa-cart-minus:before { + content: "\a3073"; +} +.sh-thinfa-cart-circle-xmark:before { + content: "\a3072"; +} +.sh-thinfa-cart-circle-plus:before { + content: "\a3071"; +} +.sh-thinfa-cart-circle-exclamation:before { + content: "\a3070"; +} +.sh-thinfa-cart-circle-check:before { + content: "\a3069"; +} +.sh-thinfa-cart-circle-arrow-up:before { + content: "\a3068"; +} +.sh-thinfa-cart-circle-arrow-down:before { + content: "\a3067"; +} +.sh-thinfa-cart-arrow-up:before { + content: "\a3066"; +} +.sh-thinfa-cart-arrow-down1:before { + content: "\a3065"; +} +.sh-thinfa-basket-shopping-simple:before { + content: "\a3064"; +} +.sh-thinfa-triangle:before { + content: "\a3063"; +} +.sh-thinfa-star-sharp-half-stroke:before { + content: "\a3062"; +} +.sh-thinfa-square-star:before { + content: "\a3061"; +} +.sh-thinfa-square-small:before { + content: "\a3060"; +} +.sh-thinfa-square-quarters:before { + content: "\a3059"; +} +.sh-thinfa-square-bolt:before { + content: "\a3058"; +} +.sh-thinfa-seal:before { + content: "\a3057"; +} +.sh-thinfa-rhombus:before { + content: "\a3056"; +} +.sh-thinfa-rectangle-wide:before { + content: "\a3055"; +} +.sh-thinfa-rectangle-vertical:before { + content: "\a3054"; +} +.sh-thinfa-rectangle:before { + content: "\a3053"; +} +.sh-thinfa-octagon:before { + content: "\a3052"; +} +.sh-thinfa-hexagon:before { + content: "\a3051"; +} +.sh-thinfa-heart-half-stroke:before { + content: "\a3050"; +} +.sh-thinfa-heart-half:before { + content: "\a3049"; +} +.sh-thinfa-heart-crack:before { + content: "\a3048"; +} +.sh-thinfa-diamond-half-stroke:before { + content: "\a3047"; +} +.sh-thinfa-diamond-half:before { + content: "\a3046"; +} +.sh-thinfa-crown:before { + content: "\a3045"; +} +.sh-thinfa-circle-three-quarters:before { + content: "\a3044"; +} +.sh-thinfa-circle-star:before { + content: "\a3043"; +} +.sh-thinfa-circles-overlap:before { + content: "\a3042"; +} +.sh-thinfa-circle-small:before { + content: "\a3041"; +} +.sh-thinfa-circle-quarter:before { + content: "\a3040"; +} +.sh-thinfa-circle-half:before { + content: "\a3039"; +} +.sh-thinfa-circle-bolt:before { + content: "\a3038"; +} +.sh-thinfa-user-unlock:before { + content: "\a3037"; +} +.sh-thinfa-user-shield:before { + content: "\a3036"; +} +.sh-thinfa-user-police-tie:before { + content: "\a3035"; +} +.sh-thinfa-user-police:before { + content: "\a3034"; +} +.sh-thinfa-user-lock:before { + content: "\a3033"; +} +.sh-thinfa-unlock-keyhole:before { + content: "\a3032"; +} +.sh-thinfa-siren-on:before { + content: "\a3031"; +} +.sh-thinfa-siren:before { + content: "\a3030"; +} +.sh-thinfa-shield-xmark:before { + content: "\a3029"; +} +.sh-thinfa-shield-slash:before { + content: "\a3028"; +} +.sh-thinfa-shield-plus:before { + content: "\a3027"; +} +.sh-thinfa-shield-minus:before { + content: "\a3026"; +} +.sh-thinfa-shield-keyhole:before { + content: "\a3025"; +} +.sh-thinfa-shield-check:before { + content: "\a3024"; +} +.sh-thinfa-passport:before { + content: "\a3023"; +} +.sh-thinfa-panel-fire:before { + content: "\a3022"; +} +.sh-thinfa-panel-ews:before { + content: "\a3021"; +} +.sh-thinfa-lock-keyhole-open:before { + content: "\a3020"; +} +.sh-thinfa-lock1:before { + content: "\a3019"; +} +.sh-thinfa-gun-slash:before { + content: "\a3018"; +} +.sh-thinfa-gun:before { + content: "\a3017"; +} +.sh-thinfa-file-signature:before { + content: "\a3016"; +} +.sh-thinfa-file-contract:before { + content: "\a3015"; +} +.sh-thinfa-block-brick-fire:before { + content: "\a3014"; +} +.sh-thinfa-badge-sheriff:before { + content: "\a3013"; +} +.sh-thinfa-user-visor:before { + content: "\a3012"; +} +.sh-thinfa-user-robot-xmarks:before { + content: "\a3011"; +} +.sh-thinfa-user-robot:before { + content: "\a3010"; +} +.sh-thinfa-user-hair-buns:before { + content: "\a3009"; +} +.sh-thinfa-user-bounty-hunter:before { + content: "\a3008"; +} +.sh-thinfa-transporter-empty:before { + content: "\a3007"; +} +.sh-thinfa-transporter-7:before { + content: "\a3006"; +} +.sh-thinfa-transporter-6:before { + content: "\a3005"; +} +.sh-thinfa-transporter-5:before { + content: "\a3004"; +} +.sh-thinfa-transporter-4:before { + content: "\a3003"; +} +.sh-thinfa-transporter-3:before { + content: "\a3002"; +} +.sh-thinfa-transporter-2:before { + content: "\a3001"; +} +.sh-thinfa-transporter-1:before { + content: "\a3000"; +} +.sh-thinfa-transporter:before { + content: "\a2999"; +} +.sh-thinfa-swords-laser:before { + content: "\a2998"; +} +.sh-thinfa-sword-laser-alt:before { + content: "\a2997"; +} +.sh-thinfa-sword-laser:before { + content: "\a2996"; +} +.sh-thinfa-starship-freighter:before { + content: "\a2995"; +} +.sh-thinfa-starship:before { + content: "\a2994"; +} +.sh-thinfa-starfighter-twin-ion-engine-advanced:before { + content: "\a2993"; +} +.sh-thinfa-starfighter-twin-ion-engine:before { + content: "\a2992"; +} +.sh-thinfa-starfighter:before { + content: "\a2991"; +} +.sh-thinfa-space-station-moon-construction:before { + content: "\a2990"; +} +.sh-thinfa-space-station-moon:before { + content: "\a2989"; +} +.sh-thinfa-rocket-launch:before { + content: "\a2988"; +} +.sh-thinfa-robot-astromech:before { + content: "\a2987"; +} +.sh-thinfa-raygun:before { + content: "\a2986"; +} +.sh-thinfa-police-box:before { + content: "\a2985"; +} +.sh-thinfa-person-to-portal:before { + content: "\a2984"; +} +.sh-thinfa-person-from-portal:before { + content: "\a2983"; +} +.sh-thinfa-cloud-binary:before { + content: "\a2982"; +} +.sh-thinfa-temperature-low:before { + content: "\a2981"; +} +.sh-thinfa-temperature-high:before { + content: "\a2980"; +} +.sh-thinfa-kite:before { + content: "\a2979"; +} +.sh-thinfa-key-skeleton:before { + content: "\a2978"; +} +.sh-thinfa-yin-yang:before { + content: "\a2977"; +} +.sh-thinfa-star-of-david:before { + content: "\a2976"; +} +.sh-thinfa-star-and-crescent:before { + content: "\a2975"; +} +.sh-thinfa-spaghetti-monster-flying:before { + content: "\a2974"; +} +.sh-thinfa-scroll-torah:before { + content: "\a2973"; +} +.sh-thinfa-person-praying:before { + content: "\a2972"; +} +.sh-thinfa-peace:before { + content: "\a2971"; +} +.sh-thinfa-om:before { + content: "\a2970"; +} +.sh-thinfa-khanda:before { + content: "\a2969"; +} +.sh-thinfa-jedi:before { + content: "\a2968"; +} +.sh-thinfa-hanukiah:before { + content: "\a2967"; +} +.sh-thinfa-hamsa:before { + content: "\a2966"; +} +.sh-thinfa-dharmachakra:before { + content: "\a2965"; +} +.sh-thinfa-cross:before { + content: "\a2964"; +} +.sh-thinfa-book-tanakh:before { + content: "\a2963"; +} +.sh-thinfa-book-quran:before { + content: "\a2962"; +} +.sh-thinfa-book-journal-whills:before { + content: "\a2961"; +} +.sh-thinfa-book-bible:before { + content: "\a2960"; +} +.sh-thinfa-bahai:before { + content: "\a2959"; +} +.sh-thinfa-ankh:before { + content: "\a2958"; +} +.sh-thinfa-tick:before { + content: "\a2957"; +} +.sh-thinfa-square-ampersand:before { + content: "\a2956"; +} +.sh-thinfa-slash-forward:before { + content: "\a2955"; +} +.sh-thinfa-slash-back:before { + content: "\a2954"; +} +.sh-thinfa-semicolon:before { + content: "\a2953"; +} +.sh-thinfa-section:before { + content: "\a2952"; +} +.sh-thinfa-quotes:before { + content: "\a2951"; +} +.sh-thinfa-pipe:before { + content: "\a2950"; +} +.sh-thinfa-period:before { + content: "\a2949"; +} +.sh-thinfa-option:before { + content: "\a2948"; +} +.sh-thinfa-interrobang:before { + content: "\a2947"; +} +.sh-thinfa-hyphen:before { + content: "\a2946"; +} +.sh-thinfa-horizontal-rule:before { + content: "\a2945"; +} +.sh-thinfa-ditto:before { + content: "\a2944"; +} +.sh-thinfa-corner:before { + content: "\a2943"; +} +.sh-thinfa-comma:before { + content: "\a2942"; +} +.sh-thinfa-colon:before { + content: "\a2941"; +} +.sh-thinfa-circle-ampersand:before { + content: "\a2940"; +} +.sh-thinfa-apostrophe:before { + content: "\a2939"; +} +.sh-thinfa-ampersand:before { + content: "\a2938"; +} +.sh-thinfa-alt:before { + content: "\a2937"; +} +.sh-thinfa-accent-grave:before { + content: "\a2936"; +} +.sh-thinfa-xmark-to-slot:before { + content: "\a2935"; +} +.sh-thinfa-republican:before { + content: "\a2934"; +} +.sh-thinfa-poll-people:before { + content: "\a2933"; +} +.sh-thinfa-podium-star:before { + content: "\a2932"; +} +.sh-thinfa-person-sign:before { + content: "\a2931"; +} +.sh-thinfa-person-booth:before { + content: "\a2930"; +} +.sh-thinfa-flag-usa:before { + content: "\a2929"; +} +.sh-thinfa-flag-swallowtail:before { + content: "\a2928"; +} +.sh-thinfa-democrat:before { + content: "\a2927"; +} +.sh-thinfa-clipboard-list-check:before { + content: "\a2926"; +} +.sh-thinfa-check-to-slot:before { + content: "\a2925"; +} +.sh-thinfa-calendar-star:before { + content: "\a2924"; +} +.sh-thinfa-box-ballot:before { + content: "\a2923"; +} +.sh-thinfa-booth-curtain:before { + content: "\a2922"; +} +.sh-thinfa-ballot-check:before { + content: "\a2921"; +} +.sh-thinfa-ballot:before { + content: "\a2920"; +} +.sh-thinfa-rectangle-vertical-history:before { + content: "\a2919"; +} +.sh-thinfa-rectangle-history-circle-user:before { + content: "\a2918"; +} +.sh-thinfa-rectangle-history-circle-plus:before { + content: "\a2917"; +} +.sh-thinfa-rectangle-history:before { + content: "\a2916"; +} +.sh-thinfa-panorama:before { + content: "\a2915"; +} +.sh-thinfa-image-user:before { + content: "\a2914"; +} +.sh-thinfa-images-user:before { + content: "\a2913"; +} +.sh-thinfa-image-slash:before { + content: "\a2912"; +} +.sh-thinfa-image-portrait:before { + content: "\a2911"; +} +.sh-thinfa-image-polaroid-user:before { + content: "\a2910"; +} +.sh-thinfa-image-landscape:before { + content: "\a2909"; +} +.sh-thinfa-high-definition:before { + content: "\a2908"; +} +.sh-thinfa-hexagon-image:before { + content: "\a2907"; +} +.sh-thinfa-films:before { + content: "\a2906"; +} +.sh-thinfa-circle-camera:before { + content: "\a2905"; +} +.sh-thinfa-camera-viewfinder:before { + content: "\a2904"; +} +.sh-thinfa-camera-slash:before { + content: "\a2903"; +} +.sh-thinfa-camera-rotate:before { + content: "\a2902"; +} +.sh-thinfa-bolt-slash:before { + content: "\a2901"; +} +.sh-thinfa-bolt-lightning:before { + content: "\a2900"; +} +.sh-thinfa-bolt-auto:before { + content: "\a2899"; +} +.sh-thinfa-aperture:before { + content: "\a2898"; +} +.sh-thinfa-square-9:before { + content: "\a2897"; +} +.sh-thinfa-square-8:before { + content: "\a2896"; +} +.sh-thinfa-square-7:before { + content: "\a2895"; +} +.sh-thinfa-square-6:before { + content: "\a2894"; +} +.sh-thinfa-square-5:before { + content: "\a2893"; +} +.sh-thinfa-square-4:before { + content: "\a2892"; +} +.sh-thinfa-square-3:before { + content: "\a2891"; +} +.sh-thinfa-square-2:before { + content: "\a2890"; +} +.sh-thinfa-square-1:before { + content: "\a2889"; +} +.sh-thinfa-square-0:before { + content: "\a2888"; +} +.sh-thinfa-circle-9:before { + content: "\a2887"; +} +.sh-thinfa-circle-8:before { + content: "\a2886"; +} +.sh-thinfa-circle-7:before { + content: "\a2885"; +} +.sh-thinfa-circle-6:before { + content: "\a2884"; +} +.sh-thinfa-circle-5:before { + content: "\a2883"; +} +.sh-thinfa-circle-4:before { + content: "\a2882"; +} +.sh-thinfa-circle-3:before { + content: "\a2881"; +} +.sh-thinfa-circle-2:before { + content: "\a2880"; +} +.sh-thinfa-circle-1:before { + content: "\a2879"; +} +.sh-thinfa-circle-0:before { + content: "\a2878"; +} +.sh-thinfa-9:before { + content: "\a2877"; +} +.sh-thinfa-8:before { + content: "\a2876"; +} +.sh-thinfa-7:before { + content: "\a2875"; +} +.sh-thinfa-6:before { + content: "\a2874"; +} +.sh-thinfa-5:before { + content: "\a2873"; +} +.sh-thinfa-4:before { + content: "\a2872"; +} +.sh-thinfa-3:before { + content: "\a2871"; +} +.sh-thinfa-2:before { + content: "\a2870"; +} +.sh-thinfa-1:before { + content: "\a2869"; +} +.sh-thinfa-0:before { + content: "\a2868"; +} +.sh-thinfa-00:before { + content: "\a2867"; +} +.sh-thinfa-trillium:before { + content: "\a2866"; +} +.sh-thinfa-tree-palm:before { + content: "\a2865"; +} +.sh-thinfa-raindrops:before { + content: "\a2864"; +} +.sh-thinfa-pompebled:before { + content: "\a2863"; +} +.sh-thinfa-leaf-oak:before { + content: "\a2862"; +} +.sh-thinfa-leaf-maple:before { + content: "\a2861"; +} +.sh-thinfa-icicles:before { + content: "\a2860"; +} +.sh-thinfa-flower-tulip:before { + content: "\a2859"; +} +.sh-thinfa-flower-daffodil:before { + content: "\a2858"; +} +.sh-thinfa-flower:before { + content: "\a2857"; +} +.sh-thinfa-clover:before { + content: "\a2856"; +} +.sh-thinfa-cloud-sun:before { + content: "\a2855"; +} +.sh-thinfa-cactus:before { + content: "\a2854"; +} +.sh-thinfa-whistle:before { + content: "\a2853"; +} +.sh-thinfa-violin:before { + content: "\a2852"; +} +.sh-thinfa-user-music:before { + content: "\a2851"; +} +.sh-thinfa-turntable:before { + content: "\a2850"; +} +.sh-thinfa-trumpet:before { + content: "\a2849"; +} +.sh-thinfa-triangle-instrument:before { + content: "\a2848"; +} +.sh-thinfa-square-sliders-vertical:before { + content: "\a2847"; +} +.sh-thinfa-square-sliders:before { + content: "\a2846"; +} +.sh-thinfa-saxophone-fire:before { + content: "\a2845"; +} +.sh-thinfa-saxophone:before { + content: "\a2844"; +} +.sh-thinfa-record-vinyl:before { + content: "\a2843"; +} +.sh-thinfa-radio-tuner:before { + content: "\a2842"; +} +.sh-thinfa-piano-keyboard:before { + content: "\a2841"; +} +.sh-thinfa-piano:before { + content: "\a2840"; +} +.sh-thinfa-music-slash:before { + content: "\a2839"; +} +.sh-thinfa-music-note-slash:before { + content: "\a2838"; +} +.sh-thinfa-music-note:before { + content: "\a2837"; +} +.sh-thinfa-message-music:before { + content: "\a2836"; +} +.sh-thinfa-list-music:before { + content: "\a2835"; +} +.sh-thinfa-kazoo:before { + content: "\a2834"; +} +.sh-thinfa-guitars:before { + content: "\a2833"; +} +.sh-thinfa-guitar-electric:before { + content: "\a2832"; +} +.sh-thinfa-guitar:before { + content: "\a2831"; +} +.sh-thinfa-gramophone:before { + content: "\a2830"; +} +.sh-thinfa-flute:before { + content: "\a2829"; +} +.sh-thinfa-drum-steelpan:before { + content: "\a2828"; +} +.sh-thinfa-drum:before { + content: "\a2827"; +} +.sh-thinfa-cowbell-circle-plus:before { + content: "\a2826"; +} +.sh-thinfa-cowbell:before { + content: "\a2825"; +} +.sh-thinfa-clarinet:before { + content: "\a2824"; +} +.sh-thinfa-cassette-tape:before { + content: "\a2823"; +} +.sh-thinfa-boombox:before { + content: "\a2822"; +} +.sh-thinfa-banjo:before { + content: "\a2821"; +} +.sh-thinfa-album-collection-circle-user:before { + content: "\a2820"; +} +.sh-thinfa-album-collection-circle-plus:before { + content: "\a2819"; +} +.sh-thinfa-wine-glass-crack:before { + content: "\a2818"; +} +.sh-thinfa-truck-ramp-couch:before { + content: "\a2817"; +} +.sh-thinfa-truck-ramp-box:before { + content: "\a2816"; +} +.sh-thinfa-truck-ramp:before { + content: "\a2815"; +} +.sh-thinfa-truck-moving:before { + content: "\a2814"; +} +.sh-thinfa-tape:before { + content: "\a2813"; +} +.sh-thinfa-square-this-way-up:before { + content: "\a2812"; +} +.sh-thinfa-square-fragile:before { + content: "\a2811"; +} +.sh-thinfa-sign-hanging:before { + content: "\a2810"; +} +.sh-thinfa-ramp-loading:before { + content: "\a2809"; +} +.sh-thinfa-people-carry-box:before { + content: "\a2808"; +} +.sh-thinfa-box-taped:before { + content: "\a2807"; +} +.sh-thinfa-box-open-full:before { + content: "\a2806"; +} +.sh-thinfa-box-open:before { + content: "\a2805"; +} +.sh-thinfa-tugrik-sign:before { + content: "\a2804"; +} +.sh-thinfa-tenge-sign:before { + content: "\a2803"; +} +.sh-thinfa-sack:before { + content: "\a2802"; +} +.sh-thinfa-rupiah-sign:before { + content: "\a2801"; +} +.sh-thinfa-rupee-sign:before { + content: "\a2800"; +} +.sh-thinfa-peso-sign:before { + content: "\a2799"; +} +.sh-thinfa-peseta-sign:before { + content: "\a2798"; +} +.sh-thinfa-naira-sign:before { + content: "\a2797"; +} +.sh-thinfa-money-simple-from-bracket:before { + content: "\a2796"; +} +.sh-thinfa-money-from-bracket:before { + content: "\a2795"; +} +.sh-thinfa-money-check-dollar:before { + content: "\a2794"; +} +.sh-thinfa-money-check:before { + content: "\a2793"; +} +.sh-thinfa-money-bill-wave:before { + content: "\a2792"; +} +.sh-thinfa-money-bills-simple:before { + content: "\a2791"; +} +.sh-thinfa-money-bill-simple-wave:before { + content: "\a2790"; +} +.sh-thinfa-money-bill-simple:before { + content: "\a2789"; +} +.sh-thinfa-mill-sign:before { + content: "\a2788"; +} +.sh-thinfa-manat-sign:before { + content: "\a2787"; +} +.sh-thinfa-litecoin-sign:before { + content: "\a2786"; +} +.sh-thinfa-lira-sign:before { + content: "\a2785"; +} +.sh-thinfa-lari-sign:before { + content: "\a2784"; +} +.sh-thinfa-kip-sign:before { + content: "\a2783"; +} +.sh-thinfa-hryvnia-sign:before { + content: "\a2782"; +} +.sh-thinfa-guarani-sign:before { + content: "\a2781"; +} +.sh-thinfa-franc-sign:before { + content: "\a2780"; +} +.sh-thinfa-florin-sign:before { + content: "\a2779"; +} +.sh-thinfa-file-invoice-dollar:before { + content: "\a2778"; +} +.sh-thinfa-file-invoice:before { + content: "\a2777"; +} +.sh-thinfa-dong-sign:before { + content: "\a2776"; +} +.sh-thinfa-display-chart-up:before { + content: "\a2775"; +} +.sh-thinfa-cruzeiro-sign:before { + content: "\a2774"; +} +.sh-thinfa-credit-card-front:before { + content: "\a2773"; +} +.sh-thinfa-credit-card-blank:before { + content: "\a2772"; +} +.sh-thinfa-colon-sign:before { + content: "\a2771"; +} +.sh-thinfa-coin-vertical:before { + content: "\a2770"; +} +.sh-thinfa-coins:before { + content: "\a2769"; +} +.sh-thinfa-coin-front:before { + content: "\a2768"; +} +.sh-thinfa-coin-blank:before { + content: "\a2767"; +} +.sh-thinfa-coin:before { + content: "\a2766"; +} +.sh-thinfa-circle-yen:before { + content: "\a2765"; +} +.sh-thinfa-circle-sterling:before { + content: "\a2764"; +} +.sh-thinfa-circle-euro:before { + content: "\a2763"; +} +.sh-thinfa-chf-sign:before { + content: "\a2762"; +} +.sh-thinfa-chart-pie-simple-circle-dollar:before { + content: "\a2761"; +} +.sh-thinfa-chart-pie-simple-circle-currency:before { + content: "\a2760"; +} +.sh-thinfa-cent-sign:before { + content: "\a2759"; +} +.sh-thinfa-cedi-sign:before { + content: "\a2758"; +} +.sh-thinfa-cash-register:before { + content: "\a2757"; +} +.sh-thinfa-brazilian-real-sign:before { + content: "\a2756"; +} +.sh-thinfa-bangladeshi-taka-sign:before { + content: "\a2755"; +} +.sh-thinfa-baht-sign:before { + content: "\a2754"; +} +.sh-thinfa-austral-sign:before { + content: "\a2753"; +} +.sh-thinfa-x-ray:before { + content: "\a2752"; +} +.sh-thinfa-weight-scale:before { + content: "\a2751"; +} +.sh-thinfa-wave-pulse:before { + content: "\a2750"; +} +.sh-thinfa-watch-fitness:before { + content: "\a2749"; +} +.sh-thinfa-walker:before { + content: "\a2748"; +} +.sh-thinfa-virus-slash:before { + content: "\a2747"; +} +.sh-thinfa-viruses:before { + content: "\a2746"; +} +.sh-thinfa-virus-covid-slash:before { + content: "\a2745"; +} +.sh-thinfa-vials:before { + content: "\a2744"; +} +.sh-thinfa-vial:before { + content: "\a2743"; +} +.sh-thinfa-users-medical:before { + content: "\a2742"; +} +.sh-thinfa-user-nurse-hair-long:before { + content: "\a2741"; +} +.sh-thinfa-user-nurse-hair:before { + content: "\a2740"; +} +.sh-thinfa-user-nurse:before { + content: "\a2739"; +} +.sh-thinfa-user-doctor-message:before { + content: "\a2738"; +} +.sh-thinfa-user-doctor-hair-long:before { + content: "\a2737"; +} +.sh-thinfa-user-doctor-hair:before { + content: "\a2736"; +} +.sh-thinfa-toothbrush:before { + content: "\a2735"; +} +.sh-thinfa-tooth:before { + content: "\a2734"; +} +.sh-thinfa-thermometer1:before { + content: "\a2733"; +} +.sh-thinfa-teeth-open:before { + content: "\a2732"; +} +.sh-thinfa-teeth:before { + content: "\a2731"; +} +.sh-thinfa-tablets:before { + content: "\a2730"; +} +.sh-thinfa-stretcher:before { + content: "\a2729"; +} +.sh-thinfa-stomach:before { + content: "\a2728"; +} +.sh-thinfa-star-of-life:before { + content: "\a2727"; +} +.sh-thinfa-smoking:before { + content: "\a2726"; +} +.sh-thinfa-skeleton-ribs:before { + content: "\a2725"; +} +.sh-thinfa-skeleton:before { + content: "\a2724"; +} +.sh-thinfa-shield-virus:before { + content: "\a2723"; +} +.sh-thinfa-scalpel-line-dashed:before { + content: "\a2722"; +} +.sh-thinfa-scalpel:before { + content: "\a2721"; +} +.sh-thinfa-receipt:before { + content: "\a2720"; +} +.sh-thinfa-pump-medical:before { + content: "\a2719"; +} +.sh-thinfa-prescription-bottle-pill:before { + content: "\a2718"; +} +.sh-thinfa-prescription-bottle-medical:before { + content: "\a2717"; +} +.sh-thinfa-prescription-bottle:before { + content: "\a2716"; +} +.sh-thinfa-prescription:before { + content: "\a2715"; +} +.sh-thinfa-person-dots-from-line:before { + content: "\a2714"; +} +.sh-thinfa-pager:before { + content: "\a2713"; +} +.sh-thinfa-notes-medical:before { + content: "\a2712"; +} +.sh-thinfa-note-medical:before { + content: "\a2711"; +} +.sh-thinfa-nose:before { + content: "\a2710"; +} +.sh-thinfa-mortar-pestle:before { + content: "\a2709"; +} +.sh-thinfa-monitor-waveform:before { + content: "\a2708"; +} +.sh-thinfa-lungs-virus:before { + content: "\a2707"; +} +.sh-thinfa-lips:before { + content: "\a2706"; +} +.sh-thinfa-laptop-medical:before { + content: "\a2705"; +} +.sh-thinfa-kit-medical:before { + content: "\a2704"; +} +.sh-thinfa-kidneys:before { + content: "\a2703"; +} +.sh-thinfa-joint:before { + content: "\a2702"; +} +.sh-thinfa-inhaler:before { + content: "\a2701"; +} +.sh-thinfa-id-card-clip:before { + content: "\a2700"; +} +.sh-thinfa-head-side-virus:before { + content: "\a2699"; +} +.sh-thinfa-head-side-medical:before { + content: "\a2698"; +} +.sh-thinfa-head-side-mask:before { + content: "\a2697"; +} +.sh-thinfa-head-side-cough-slash:before { + content: "\a2696"; +} +.sh-thinfa-head-side-cough:before { + content: "\a2695"; +} +.sh-thinfa-head-side-brain:before { + content: "\a2694"; +} +.sh-thinfa-flask-gear:before { + content: "\a2693"; +} +.sh-thinfa-file-waveform:before { + content: "\a2692"; +} +.sh-thinfa-files-medical:before { + content: "\a2691"; +} +.sh-thinfa-file-prescription:before { + content: "\a2690"; +} +.sh-thinfa-file-medical:before { + content: "\a2689"; +} +.sh-thinfa-eyes:before { + content: "\a2688"; +} +.sh-thinfa-dna:before { + content: "\a2687"; +} +.sh-thinfa-disease:before { + content: "\a2686"; +} +.sh-thinfa-crutches:before { + content: "\a2685"; +} +.sh-thinfa-crutch:before { + content: "\a2684"; +} +.sh-thinfa-clock-rotate-left:before { + content: "\a2683"; +} +.sh-thinfa-clipboard-prescription:before { + content: "\a2682"; +} +.sh-thinfa-clipboard-medical:before { + content: "\a2681"; +} +.sh-thinfa-capsules:before { + content: "\a2680"; +} +.sh-thinfa-cannabis:before { + content: "\a2679"; +} +.sh-thinfa-briefcase-medical:before { + content: "\a2678"; +} +.sh-thinfa-brain:before { + content: "\a2677"; +} +.sh-thinfa-book-user:before { + content: "\a2676"; +} +.sh-thinfa-books-medical:before { + content: "\a2675"; +} +.sh-thinfa-book-medical:before { + content: "\a2674"; +} +.sh-thinfa-bong:before { + content: "\a2673"; +} +.sh-thinfa-bone-break:before { + content: "\a2672"; +} +.sh-thinfa-bed-pulse:before { + content: "\a2671"; +} +.sh-thinfa-ban-smoking:before { + content: "\a2670"; +} +.sh-thinfa-bacteria:before { + content: "\a2669"; +} +.sh-thinfa-volume-xmark:before { + content: "\a2668"; +} +.sh-thinfa-volume-slash:before { + content: "\a2667"; +} +.sh-thinfa-up-right-and-down-left-from-center1:before { + content: "\a2666"; +} +.sh-thinfa-scrubber:before { + content: "\a2665"; +} +.sh-thinfa-play-pause:before { + content: "\a2664"; +} +.sh-thinfa-pause1:before { + content: "\a2663"; +} +.sh-thinfa-minimize:before { + content: "\a2662"; +} +.sh-thinfa-expand-wide:before { + content: "\a2661"; +} +.sh-thinfa-expand1:before { + content: "\a2660"; +} +.sh-thinfa-down-left-and-up-right-to-center1:before { + content: "\a2659"; +} +.sh-thinfa-compress-wide:before { + content: "\a2658"; +} +.sh-thinfa-compress1:before { + content: "\a2657"; +} +.sh-thinfa-arrows-maximize:before { + content: "\a2656"; +} +.sh-thinfa-xmark:before { + content: "\a2655"; +} +.sh-thinfa-wave-triangle:before { + content: "\a2654"; +} +.sh-thinfa-wave-square:before { + content: "\a2653"; +} +.sh-thinfa-wave-sine:before { + content: "\a2652"; +} +.sh-thinfa-value-absolute:before { + content: "\a2651"; +} +.sh-thinfa-union:before { + content: "\a2650"; +} +.sh-thinfa-tilde:before { + content: "\a2649"; +} +.sh-thinfa-theta:before { + content: "\a2648"; +} +.sh-thinfa-tally-4:before { + content: "\a2647"; +} +.sh-thinfa-tally-3:before { + content: "\a2646"; +} +.sh-thinfa-tally-2:before { + content: "\a2645"; +} +.sh-thinfa-tally-1:before { + content: "\a2644"; +} +.sh-thinfa-tally:before { + content: "\a2643"; +} +.sh-thinfa-square-xmark:before { + content: "\a2642"; +} +.sh-thinfa-square-root-variable:before { + content: "\a2641"; +} +.sh-thinfa-square-root:before { + content: "\a2640"; +} +.sh-thinfa-square-divide:before { + content: "\a2639"; +} +.sh-thinfa-sigma:before { + content: "\a2638"; +} +.sh-thinfa-plus-minus:before { + content: "\a2637"; +} +.sh-thinfa-pi:before { + content: "\a2636"; +} +.sh-thinfa-omega:before { + content: "\a2635"; +} +.sh-thinfa-octagon-xmark:before { + content: "\a2634"; +} +.sh-thinfa-octagon-plus:before { + content: "\a2633"; +} +.sh-thinfa-octagon-minus:before { + content: "\a2632"; +} +.sh-thinfa-octagon-divide:before { + content: "\a2631"; +} +.sh-thinfa-not-equal:before { + content: "\a2630"; +} +.sh-thinfa-less-than-equal:before { + content: "\a2629"; +} +.sh-thinfa-less-than:before { + content: "\a2628"; +} +.sh-thinfa-lambda:before { + content: "\a2627"; +} +.sh-thinfa-intersection:before { + content: "\a2626"; +} +.sh-thinfa-integral:before { + content: "\a2625"; +} +.sh-thinfa-infinity:before { + content: "\a2624"; +} +.sh-thinfa-hexagon-xmark:before { + content: "\a2623"; +} +.sh-thinfa-hexagon-plus:before { + content: "\a2622"; +} +.sh-thinfa-hexagon-minus:before { + content: "\a2621"; +} +.sh-thinfa-hexagon-divide:before { + content: "\a2620"; +} +.sh-thinfa-greater-than-equal:before { + content: "\a2619"; +} +.sh-thinfa-greater-than:before { + content: "\a2618"; +} +.sh-thinfa-function:before { + content: "\a2617"; +} +.sh-thinfa-equals:before { + content: "\a2616"; +} +.sh-thinfa-empty-set:before { + content: "\a2615"; +} +.sh-thinfa-divide:before { + content: "\a2614"; +} +.sh-thinfa-circle-xmark:before { + content: "\a2613"; +} +.sh-thinfa-circle-divide:before { + content: "\a2612"; +} +.sh-thinfa-calculator-simple:before { + content: "\a2611"; +} +.sh-thinfa-abacus:before { + content: "\a2610"; +} +.sh-thinfa-user-group-crown:before { + content: "\a2609"; +} +.sh-thinfa-user-crown:before { + content: "\a2608"; +} +.sh-thinfa-rectangle-ad:before { + content: "\a2607"; +} +.sh-thinfa-messages-dollar:before { + content: "\a2606"; +} +.sh-thinfa-message-dollar:before { + content: "\a2605"; +} +.sh-thinfa-megaphone:before { + content: "\a2604"; +} +.sh-thinfa-magnifying-glass-location:before { + content: "\a2603"; +} +.sh-thinfa-magnifying-glass-dollar:before { + content: "\a2602"; +} +.sh-thinfa-lightbulb-on:before { + content: "\a2601"; +} +.sh-thinfa-lightbulb-gear:before { + content: "\a2600"; +} +.sh-thinfa-lightbulb-dollar:before { + content: "\a2599"; +} +.sh-thinfa-gift-card:before { + content: "\a2598"; +} +.sh-thinfa-filter-circle-dollar:before { + content: "\a2597"; +} +.sh-thinfa-envelopes-bulk:before { + content: "\a2596"; +} +.sh-thinfa-envelope-open-text:before { + content: "\a2595"; +} +.sh-thinfa-envelope-open-dollar:before { + content: "\a2594"; +} +.sh-thinfa-display-chart-up-circle-dollar:before { + content: "\a2593"; +} +.sh-thinfa-display-chart-up-circle-currency:before { + content: "\a2592"; +} +.sh-thinfa-comments-dollar:before { + content: "\a2591"; +} +.sh-thinfa-comment-dollar:before { + content: "\a2590"; +} +.sh-thinfa-chart-mixed-up-circle-dollar:before { + content: "\a2589"; +} +.sh-thinfa-chart-mixed-up-circle-currency:before { + content: "\a2588"; +} +.sh-thinfa-bullseye-pointer:before { + content: "\a2587"; +} +.sh-thinfa-billboard:before { + content: "\a2586"; +} +.sh-thinfa-water-arrow-up:before { + content: "\a2585"; +} +.sh-thinfa-water-arrow-down:before { + content: "\a2584"; +} +.sh-thinfa-person-swimming:before { + content: "\a2583"; +} +.sh-thinfa-fish-cooked:before { + content: "\a2582"; +} +.sh-thinfa-dolphin1:before { + content: "\a2581"; +} +.sh-thinfa-buoy-mooring:before { + content: "\a2580"; +} +.sh-thinfa-buoy:before { + content: "\a2579"; +} +.sh-thinfa-truck-plow:before { + content: "\a2578"; +} +.sh-thinfa-trophy-star:before { + content: "\a2577"; +} +.sh-thinfa-train-tram:before { + content: "\a2576"; +} +.sh-thinfa-train-track:before { + content: "\a2575"; +} +.sh-thinfa-traffic-light-stop:before { + content: "\a2574"; +} +.sh-thinfa-traffic-light-slow:before { + content: "\a2573"; +} +.sh-thinfa-traffic-light-go:before { + content: "\a2572"; +} +.sh-thinfa-traffic-light:before { + content: "\a2571"; +} +.sh-thinfa-ticket-simple:before { + content: "\a2570"; +} +.sh-thinfa-square-parking-slash:before { + content: "\a2569"; +} +.sh-thinfa-square-parking:before { + content: "\a2568"; +} +.sh-thinfa-snowplow:before { + content: "\a2567"; +} +.sh-thinfa-route-interstate:before { + content: "\a2566"; +} +.sh-thinfa-route-highway:before { + content: "\a2565"; +} +.sh-thinfa-restroom:before { + content: "\a2564"; +} +.sh-thinfa-plane-engines:before { + content: "\a2563"; +} +.sh-thinfa-plane1:before { + content: "\a2562"; +} +.sh-thinfa-money-bill:before { + content: "\a2561"; +} +.sh-thinfa-location-xmark:before { + content: "\a2560"; +} +.sh-thinfa-location-smile:before { + content: "\a2559"; +} +.sh-thinfa-location-question:before { + content: "\a2558"; +} +.sh-thinfa-location-plus:before { + content: "\a2557"; +} +.sh-thinfa-location-pin-slash:before { + content: "\a2556"; +} +.sh-thinfa-location-pin:before { + content: "\a2555"; +} +.sh-thinfa-location-pen:before { + content: "\a2554"; +} +.sh-thinfa-location-minus:before { + content: "\a2553"; +} +.sh-thinfa-location-dot-slash:before { + content: "\a2552"; +} +.sh-thinfa-location-crosshairs-slash:before { + content: "\a2551"; +} +.sh-thinfa-location-check:before { + content: "\a2550"; +} +.sh-thinfa-images:before { + content: "\a2549"; +} +.sh-thinfa-do-not-enter:before { + content: "\a2548"; +} +.sh-thinfa-diamond-turn-right:before { + content: "\a2547"; +} +.sh-thinfa-compass-slash:before { + content: "\a2546"; +} +.sh-thinfa-circle-parking:before { + content: "\a2545"; +} +.sh-thinfa-circle-location-arrow:before { + content: "\a2544"; +} +.sh-thinfa-bookmark1:before { + content: "\a2543"; +} +.sh-thinfa-book-atlas:before { + content: "\a2542"; +} +.sh-thinfa-ban-parking:before { + content: "\a2541"; +} +.sh-thinfa-bags-shopping:before { + content: "\a2540"; +} +.sh-thinfa-truck-flatbed:before { + content: "\a2539"; +} +.sh-thinfa-truck-fast:before { + content: "\a2538"; +} +.sh-thinfa-truck-container-empty:before { + content: "\a2537"; +} +.sh-thinfa-truck-clock:before { + content: "\a2536"; +} +.sh-thinfa-train-subway-tunnel:before { + content: "\a2535"; +} +.sh-thinfa-tablet-rugged:before { + content: "\a2534"; +} +.sh-thinfa-shelves-empty:before { + content: "\a2533"; +} +.sh-thinfa-shelves:before { + content: "\a2532"; +} +.sh-thinfa-scanner-touchscreen:before { + content: "\a2531"; +} +.sh-thinfa-scanner-keyboard:before { + content: "\a2530"; +} +.sh-thinfa-scanner-gun:before { + content: "\a2529"; +} +.sh-thinfa-rectangle-barcode:before { + content: "\a2528"; +} +.sh-thinfa-person-dolly-empty:before { + content: "\a2527"; +} +.sh-thinfa-person-dolly:before { + content: "\a2526"; +} +.sh-thinfa-person-carry-box:before { + content: "\a2525"; +} +.sh-thinfa-pallet-boxes:before { + content: "\a2524"; +} +.sh-thinfa-pallet-box:before { + content: "\a2523"; +} +.sh-thinfa-pallet:before { + content: "\a2522"; +} +.sh-thinfa-gear-complex:before { + content: "\a2521"; +} +.sh-thinfa-dolly-empty:before { + content: "\a2520"; +} +.sh-thinfa-dolly:before { + content: "\a2519"; +} +.sh-thinfa-conveyor-belt-empty:before { + content: "\a2518"; +} +.sh-thinfa-conveyor-belt-boxes:before { + content: "\a2517"; +} +.sh-thinfa-conveyor-belt-arm:before { + content: "\a2516"; +} +.sh-thinfa-conveyor-belt:before { + content: "\a2515"; +} +.sh-thinfa-clipboard-list:before { + content: "\a2514"; +} +.sh-thinfa-clipboard-check:before { + content: "\a2513"; +} +.sh-thinfa-cart-flatbed-empty:before { + content: "\a2512"; +} +.sh-thinfa-cart-flatbed-boxes:before { + content: "\a2511"; +} +.sh-thinfa-cart-flatbed:before { + content: "\a2510"; +} +.sh-thinfa-boxes-stacked:before { + content: "\a2509"; +} +.sh-thinfa-box-circle-check:before { + content: "\a2508"; +} +.sh-thinfa-box-check:before { + content: "\a2507"; +} +.sh-thinfa-box:before { + content: "\a2506"; +} +.sh-thinfa-barcode-scan:before { + content: "\a2505"; +} +.sh-thinfa-virus-covid:before { + content: "\a2504"; +} +.sh-thinfa-virus:before { + content: "\a2503"; +} +.sh-thinfa-vial-virus:before { + content: "\a2502"; +} +.sh-thinfa-vial-circle-check:before { + content: "\a2501"; +} +.sh-thinfa-users-viewfinder:before { + content: "\a2500"; +} +.sh-thinfa-users-rectangle:before { + content: "\a2499"; +} +.sh-thinfa-users-rays:before { + content: "\a2498"; +} +.sh-thinfa-users-line:before { + content: "\a2497"; +} +.sh-thinfa-users-between-lines:before { + content: "\a2496"; +} +.sh-thinfa-user-injured:before { + content: "\a2495"; +} +.sh-thinfa-truck-plane:before { + content: "\a2494"; +} +.sh-thinfa-truck-front:before { + content: "\a2493"; +} +.sh-thinfa-truck-droplet:before { + content: "\a2492"; +} +.sh-thinfa-truck-arrow-right:before { + content: "\a2491"; +} +.sh-thinfa-syringe:before { + content: "\a2490"; +} +.sh-thinfa-staff-snake:before { + content: "\a2489"; +} +.sh-thinfa-square-virus:before { + content: "\a2488"; +} +.sh-thinfa-square-person-confined:before { + content: "\a2487"; +} +.sh-thinfa-square-nfi:before { + content: "\a2486"; +} +.sh-thinfa-shield-heart:before { + content: "\a2485"; +} +.sh-thinfa-sailboat:before { + content: "\a2484"; +} +.sh-thinfa-sack-xmark:before { + content: "\a2483"; +} +.sh-thinfa-sack-dollar:before { + content: "\a2482"; +} +.sh-thinfa-road-spikes:before { + content: "\a2481"; +} +.sh-thinfa-road-lock:before { + content: "\a2480"; +} +.sh-thinfa-road-circle-xmark:before { + content: "\a2479"; +} +.sh-thinfa-road-circle-exclamation:before { + content: "\a2478"; +} +.sh-thinfa-road-circle-check:before { + content: "\a2477"; +} +.sh-thinfa-road-bridge:before { + content: "\a2476"; +} +.sh-thinfa-road-barrier:before { + content: "\a2475"; +} +.sh-thinfa-ranking-star:before { + content: "\a2474"; +} +.sh-thinfa-radio:before { + content: "\a2473"; +} +.sh-thinfa-plane-up:before { + content: "\a2472"; +} +.sh-thinfa-plane-lock:before { + content: "\a2471"; +} +.sh-thinfa-plane-circle-xmark:before { + content: "\a2470"; +} +.sh-thinfa-plane-circle-exclamation:before { + content: "\a2469"; +} +.sh-thinfa-plane-circle-check:before { + content: "\a2468"; +} +.sh-thinfa-pills:before { + content: "\a2467"; +} +.sh-thinfa-person-walking-luggage:before { + content: "\a2466"; +} +.sh-thinfa-person-walking:before { + content: "\a2465"; +} +.sh-thinfa-person-through-window:before { + content: "\a2464"; +} +.sh-thinfa-person-rays:before { + content: "\a2463"; +} +.sh-thinfa-person-pregnant:before { + content: "\a2462"; +} +.sh-thinfa-person-military-to-person:before { + content: "\a2461"; +} +.sh-thinfa-person-military-rifle:before { + content: "\a2460"; +} +.sh-thinfa-person-military-pointing:before { + content: "\a2459"; +} +.sh-thinfa-person-harassing:before { + content: "\a2458"; +} +.sh-thinfa-person-half-dress:before { + content: "\a2457"; +} +.sh-thinfa-person-falling-burst:before { + content: "\a2456"; +} +.sh-thinfa-person-falling:before { + content: "\a2455"; +} +.sh-thinfa-person-dress-burst:before { + content: "\a2454"; +} +.sh-thinfa-person-circle-xmark:before { + content: "\a2453"; +} +.sh-thinfa-person-circle-question:before { + content: "\a2452"; +} +.sh-thinfa-person-circle-plus:before { + content: "\a2451"; +} +.sh-thinfa-person-circle-minus:before { + content: "\a2450"; +} +.sh-thinfa-person-circle-exclamation:before { + content: "\a2449"; +} +.sh-thinfa-person-circle-check:before { + content: "\a2448"; +} +.sh-thinfa-person-burst:before { + content: "\a2447"; +} +.sh-thinfa-person-arrow-up-from-line:before { + content: "\a2446"; +} +.sh-thinfa-person-arrow-down-to-line:before { + content: "\a2445"; +} +.sh-thinfa-people-robbery:before { + content: "\a2444"; +} +.sh-thinfa-people-pulling:before { + content: "\a2443"; +} +.sh-thinfa-people-line:before { + content: "\a2442"; +} +.sh-thinfa-people-group:before { + content: "\a2441"; +} +.sh-thinfa-people-arrows:before { + content: "\a2440"; +} +.sh-thinfa-money-bill-wheat:before { + content: "\a2439"; +} +.sh-thinfa-money-bill-trend-up:before { + content: "\a2438"; +} +.sh-thinfa-money-bill-transfer:before { + content: "\a2437"; +} +.sh-thinfa-money-bills:before { + content: "\a2436"; +} +.sh-thinfa-mask-ventilator:before { + content: "\a2435"; +} +.sh-thinfa-mask-face:before { + content: "\a2434"; +} +.sh-thinfa-mars-and-venus-burst:before { + content: "\a2433"; +} +.sh-thinfa-lungs:before { + content: "\a2432"; +} +.sh-thinfa-location-pin-lock:before { + content: "\a2431"; +} +.sh-thinfa-land-mine-on:before { + content: "\a2430"; +} +.sh-thinfa-jet-fighter-up:before { + content: "\a2429"; +} +.sh-thinfa-helicopter-symbol:before { + content: "\a2428"; +} +.sh-thinfa-helicopter:before { + content: "\a2427"; +} +.sh-thinfa-heart-circle-xmark:before { + content: "\a2426"; +} +.sh-thinfa-heart-circle-plus:before { + content: "\a2425"; +} +.sh-thinfa-heart-circle-minus:before { + content: "\a2424"; +} +.sh-thinfa-heart-circle-exclamation:before { + content: "\a2423"; +} +.sh-thinfa-heart-circle-check:before { + content: "\a2422"; +} +.sh-thinfa-heart-circle-bolt:before { + content: "\a2421"; +} +.sh-thinfa-handcuffs:before { + content: "\a2420"; +} +.sh-thinfa-group-arrows-rotate:before { + content: "\a2419"; +} +.sh-thinfa-flask-vial:before { + content: "\a2418"; +} +.sh-thinfa-ferry:before { + content: "\a2417"; +} +.sh-thinfa-clipboard-user:before { + content: "\a2416"; +} +.sh-thinfa-bridge-water:before { + content: "\a2415"; +} +.sh-thinfa-bridge-lock:before { + content: "\a2414"; +} +.sh-thinfa-bridge-circle-xmark:before { + content: "\a2413"; +} +.sh-thinfa-bridge-circle-exclamation:before { + content: "\a2412"; +} +.sh-thinfa-bridge-circle-check:before { + content: "\a2411"; +} +.sh-thinfa-book-bookmark:before { + content: "\a2410"; +} +.sh-thinfa-bacterium:before { + content: "\a2409"; +} +.sh-thinfa-arrows-down-to-people:before { + content: "\a2408"; +} +.sh-thinfa-anchor-lock:before { + content: "\a2407"; +} +.sh-thinfa-anchor-circle-xmark:before { + content: "\a2406"; +} +.sh-thinfa-anchor-circle-exclamation:before { + content: "\a2405"; +} +.sh-thinfa-anchor-circle-check:before { + content: "\a2404"; +} +.sh-thinfa-window-frame-open:before { + content: "\a2403"; +} +.sh-thinfa-window-frame:before { + content: "\a2402"; +} +.sh-thinfa-washing-machine:before { + content: "\a2401"; +} +.sh-thinfa-vacuum-robot:before { + content: "\a2400"; +} +.sh-thinfa-vacuum:before { + content: "\a2399"; +} +.sh-thinfa-utensils-slash:before { + content: "\a2398"; +} +.sh-thinfa-utensils:before { + content: "\a2397"; +} +.sh-thinfa-toilet-paper-xmark:before { + content: "\a2396"; +} +.sh-thinfa-toilet-paper-under-slash:before { + content: "\a2395"; +} +.sh-thinfa-toilet-paper-under:before { + content: "\a2394"; +} +.sh-thinfa-toilet-paper-slash:before { + content: "\a2393"; +} +.sh-thinfa-toilet-paper-blank-under:before { + content: "\a2392"; +} +.sh-thinfa-toilet:before { + content: "\a2391"; +} +.sh-thinfa-stairs:before { + content: "\a2390"; +} +.sh-thinfa-square-ring:before { + content: "\a2389"; +} +.sh-thinfa-sprinkler-ceiling:before { + content: "\a2388"; +} +.sh-thinfa-sprinkler:before { + content: "\a2387"; +} +.sh-thinfa-soap:before { + content: "\a2386"; +} +.sh-thinfa-sink:before { + content: "\a2385"; +} +.sh-thinfa-shutters:before { + content: "\a2384"; +} +.sh-thinfa-shower-down:before { + content: "\a2383"; +} +.sh-thinfa-rug:before { + content: "\a2382"; +} +.sh-thinfa-refrigerator:before { + content: "\a2381"; +} +.sh-thinfa-pump-soap:before { + content: "\a2380"; +} +.sh-thinfa-plate-utensils:before { + content: "\a2379"; +} +.sh-thinfa-person-to-door:before { + content: "\a2378"; +} +.sh-thinfa-oven:before { + content: "\a2377"; +} +.sh-thinfa-microwave:before { + content: "\a2376"; +} +.sh-thinfa-loveseat:before { + content: "\a2375"; +} +.sh-thinfa-light-switch-on:before { + content: "\a2374"; +} +.sh-thinfa-light-switch-off:before { + content: "\a2373"; +} +.sh-thinfa-light-switch:before { + content: "\a2372"; +} +.sh-thinfa-light-ceiling:before { + content: "\a2371"; +} +.sh-thinfa-lightbulb-cfl-on:before { + content: "\a2370"; +} +.sh-thinfa-lamp-floor:before { + content: "\a2369"; +} +.sh-thinfa-lamp:before { + content: "\a2368"; +} +.sh-thinfa-knife:before { + content: "\a2367"; +} +.sh-thinfa-kitchen-set:before { + content: "\a2366"; +} +.sh-thinfa-jug-detergent:before { + content: "\a2365"; +} +.sh-thinfa-house-user:before { + content: "\a2364"; +} +.sh-thinfa-house-person-return:before { + content: "\a2363"; +} +.sh-thinfa-house-person-leave:before { + content: "\a2362"; +} +.sh-thinfa-house-chimney-user:before { + content: "\a2361"; +} +.sh-thinfa-fork-knife:before { + content: "\a2360"; +} +.sh-thinfa-fork:before { + content: "\a2359"; +} +.sh-thinfa-fire-hydrant:before { + content: "\a2358"; +} +.sh-thinfa-fan-table:before { + content: "\a2357"; +} +.sh-thinfa-dryer-heat:before { + content: "\a2356"; +} +.sh-thinfa-dryer:before { + content: "\a2355"; +} +.sh-thinfa-door-open:before { + content: "\a2354"; +} +.sh-thinfa-door-closed:before { + content: "\a2353"; +} +.sh-thinfa-couch:before { + content: "\a2352"; +} +.sh-thinfa-clothes-hanger:before { + content: "\a2351"; +} +.sh-thinfa-clock-desk:before { + content: "\a2350"; +} +.sh-thinfa-circle-sort-up:before { + content: "\a2349"; +} +.sh-thinfa-circle-sort-down:before { + content: "\a2348"; +} +.sh-thinfa-circle-sort:before { + content: "\a2347"; +} +.sh-thinfa-chair-office:before { + content: "\a2346"; +} +.sh-thinfa-chair:before { + content: "\a2345"; +} +.sh-thinfa-camera-security:before { + content: "\a2344"; +} +.sh-thinfa-box-tissue:before { + content: "\a2343"; +} +.sh-thinfa-blinds-raised:before { + content: "\a2342"; +} +.sh-thinfa-blinds-open:before { + content: "\a2341"; +} +.sh-thinfa-blinds:before { + content: "\a2340"; +} +.sh-thinfa-blanket-fire:before { + content: "\a2339"; +} +.sh-thinfa-blanket:before { + content: "\a2338"; +} +.sh-thinfa-bin-recycle:before { + content: "\a2337"; +} +.sh-thinfa-bin-bottles-recycle:before { + content: "\a2336"; +} +.sh-thinfa-bin-bottles:before { + content: "\a2335"; +} +.sh-thinfa-bed-front:before { + content: "\a2334"; +} +.sh-thinfa-bed-empty:before { + content: "\a2333"; +} +.sh-thinfa-bed-bunk:before { + content: "\a2332"; +} +.sh-thinfa-bag-seedling:before { + content: "\a2331"; +} +.sh-thinfa-arrow-up-from-water-pump:before { + content: "\a2330"; +} +.sh-thinfa-air-conditioner:before { + content: "\a2329"; +} +.sh-thinfa-wreath:before { + content: "\a2328"; +} +.sh-thinfa-tree-decorated:before { + content: "\a2327"; +} +.sh-thinfa-tree-christmas:before { + content: "\a2326"; +} +.sh-thinfa-star-christmas:before { + content: "\a2325"; +} +.sh-thinfa-sleigh:before { + content: "\a2324"; +} +.sh-thinfa-rings-wedding:before { + content: "\a2323"; +} +.sh-thinfa-ring-diamond:before { + content: "\a2322"; +} +.sh-thinfa-ornament:before { + content: "\a2321"; +} +.sh-thinfa-mistletoe:before { + content: "\a2320"; +} +.sh-thinfa-menorah:before { + content: "\a2319"; +} +.sh-thinfa-lights-holiday:before { + content: "\a2318"; +} +.sh-thinfa-holly-berry:before { + content: "\a2317"; +} +.sh-thinfa-gifts:before { + content: "\a2316"; +} +.sh-thinfa-fireplace:before { + content: "\a2315"; +} +.sh-thinfa-calendar-heart:before { + content: "\a2314"; +} +.sh-thinfa-angel:before { + content: "\a2313"; +} +.sh-thinfa-youtube:before { + content: "\a2312"; +} +.sh-thinfa-whatsapp:before { + content: "\a2311"; +} +.sh-thinfa-wechat:before { + content: "\a2310"; +} +.sh-thinfa-viber:before { + content: "\a2309"; +} +.sh-thinfa-twitter:before { + content: "\a2308"; +} +.sh-thinfa-tumblr:before { + content: "\a2307"; +} +.sh-thinfa-tiktok:before { + content: "\a2306"; +} +.sh-thinfa-telegram:before { + content: "\a2305"; +} +.sh-thinfa-snapfish:before { + content: "\a2304"; +} +.sh-thinfa-snapchat:before { + content: "\a2303"; +} +.sh-thinfa-skype:before { + content: "\a2302"; +} +.sh-thinfa-reddit:before { + content: "\a2301"; +} +.sh-thinfa-quora:before { + content: "\a2300"; +} +.sh-thinfa-pinterest:before { + content: "\a2299"; +} +.sh-thinfa-myspace:before { + content: "\a2298"; +} +.sh-thinfa-microsoft-teams:before { + content: "\a2297"; +} +.sh-thinfa-linkedin:before { + content: "\a2296"; +} +.sh-thinfa-instagram:before { + content: "\a2295"; +} +.sh-thinfa-hike:before { + content: "\a2294"; +} +.sh-thinfa-hangouts:before { + content: "\a2293"; +} +.sh-thinfa-flixster:before { + content: "\a2292"; +} +.sh-thinfa-facebook:before { + content: "\a2291"; +} +.sh-thinfa-dribbble:before { + content: "\a2290"; +} +.sh-thinfa-clutch:before { + content: "\a2289"; +} +.sh-thinfa-classmates:before { + content: "\a2288"; +} +.sh-thinfa-hand-wave:before { + content: "\a2287"; +} +.sh-thinfa-hands-praying:before { + content: "\a2286"; +} +.sh-thinfa-hand-sparkles:before { + content: "\a2285"; +} +.sh-thinfa-hands-holding-diamond:before { + content: "\a2284"; +} +.sh-thinfa-hands-holding:before { + content: "\a2283"; +} +.sh-thinfa-handshake-slash:before { + content: "\a2282"; +} +.sh-thinfa-hands-clapping:before { + content: "\a2281"; +} +.sh-thinfa-hands-bubbles:before { + content: "\a2280"; +} +.sh-thinfa-hands-bound:before { + content: "\a2279"; +} +.sh-thinfa-hand-point-up:before { + content: "\a2278"; +} +.sh-thinfa-hand-point-right:before { + content: "\a2277"; +} +.sh-thinfa-hand-point-ribbon:before { + content: "\a2276"; +} +.sh-thinfa-hand-point-left:before { + content: "\a2275"; +} +.sh-thinfa-hand-point-down:before { + content: "\a2274"; +} +.sh-thinfa-hand-middle-finger:before { + content: "\a2273"; +} +.sh-thinfa-hand-love:before { + content: "\a2272"; +} +.sh-thinfa-hand-horns:before { + content: "\a2271"; +} +.sh-thinfa-hand-holding-skull:before { + content: "\a2270"; +} +.sh-thinfa-hand-holding-medical:before { + content: "\a2269"; +} +.sh-thinfa-hand-holding-box:before { + content: "\a2268"; +} +.sh-thinfa-hand-holding:before { + content: "\a2267"; +} +.sh-thinfa-hand-fist:before { + content: "\a2266"; +} +.sh-thinfa-hand-fingers-crossed:before { + content: "\a2265"; +} +.sh-thinfa-hand-dots:before { + content: "\a2264"; +} +.sh-thinfa-hand-back-point-up:before { + content: "\a2263"; +} +.sh-thinfa-hand-back-point-right:before { + content: "\a2262"; +} +.sh-thinfa-hand-back-point-ribbon:before { + content: "\a2261"; +} +.sh-thinfa-hand-back-point-left:before { + content: "\a2260"; +} +.sh-thinfa-hand-back-point-down:before { + content: "\a2259"; +} +.sh-thinfa-tombstone-blank:before { + content: "\a2258"; +} +.sh-thinfa-tombstone:before { + content: "\a2257"; +} +.sh-thinfa-spider-web:before { + content: "\a2256"; +} +.sh-thinfa-skull:before { + content: "\a2255"; +} +.sh-thinfa-scarecrow:before { + content: "\a2254"; +} +.sh-thinfa-mask:before { + content: "\a2253"; +} +.sh-thinfa-knife-kitchen:before { + content: "\a2252"; +} +.sh-thinfa-jack-o-lantern:before { + content: "\a2251"; +} +.sh-thinfa-hockey-mask:before { + content: "\a2250"; +} +.sh-thinfa-coffin-cross:before { + content: "\a2249"; +} +.sh-thinfa-coffin:before { + content: "\a2248"; +} +.sh-thinfa-cloud-moon:before { + content: "\a2247"; +} +.sh-thinfa-claw-marks:before { + content: "\a2246"; +} +.sh-thinfa-candle-holder:before { + content: "\a2245"; +} +.sh-thinfa-broom:before { + content: "\a2244"; +} +.sh-thinfa-wreath-laurel:before { + content: "\a2243"; +} +.sh-thinfa-wand-sparkles:before { + content: "\a2242"; +} +.sh-thinfa-wand:before { + content: "\a2241"; +} +.sh-thinfa-vr-cardboard:before { + content: "\a2240"; +} +.sh-thinfa-treasure-chest:before { + content: "\a2239"; +} +.sh-thinfa-swords:before { + content: "\a2238"; +} +.sh-thinfa-sword:before { + content: "\a2237"; +} +.sh-thinfa-staff:before { + content: "\a2236"; +} +.sh-thinfa-square-full:before { + content: "\a2235"; +} +.sh-thinfa-sparkles:before { + content: "\a2234"; +} +.sh-thinfa-spade:before { + content: "\a2233"; +} +.sh-thinfa-sickle:before { + content: "\a2232"; +} +.sh-thinfa-shield-quartered:before { + content: "\a2231"; +} +.sh-thinfa-shield-halved:before { + content: "\a2230"; +} +.sh-thinfa-shield-cross:before { + content: "\a2229"; +} +.sh-thinfa-scythe:before { + content: "\a2228"; +} +.sh-thinfa-scroll-old:before { + content: "\a2227"; +} +.sh-thinfa-scroll:before { + content: "\a2226"; +} +.sh-thinfa-ring:before { + content: "\a2225"; +} +.sh-thinfa-puzzle-piece-simple:before { + content: "\a2224"; +} +.sh-thinfa-puzzle:before { + content: "\a2223"; +} +.sh-thinfa-pinball:before { + content: "\a2222"; +} +.sh-thinfa-person-pinball:before { + content: "\a2221"; +} +.sh-thinfa-nesting-dolls:before { + content: "\a2220"; +} +.sh-thinfa-mandolin:before { + content: "\a2219"; +} +.sh-thinfa-mace:before { + content: "\a2218"; +} +.sh-thinfa-joystick:before { + content: "\a2217"; +} +.sh-thinfa-helmet-battle:before { + content: "\a2216"; +} +.sh-thinfa-hand-holding-magic:before { + content: "\a2215"; +} +.sh-thinfa-hammer-war:before { + content: "\a2214"; +} +.sh-thinfa-ghost:before { + content: "\a2213"; +} +.sh-thinfa-gamepad-modern:before { + content: "\a2212"; +} +.sh-thinfa-game-board-simple:before { + content: "\a2211"; +} +.sh-thinfa-game-board:before { + content: "\a2210"; +} +.sh-thinfa-fire-flame:before { + content: "\a2209"; +} +.sh-thinfa-eye-evil:before { + content: "\a2208"; +} +.sh-thinfa-dreidel:before { + content: "\a2207"; +} +.sh-thinfa-dice-two:before { + content: "\a2206"; +} +.sh-thinfa-dice-three:before { + content: "\a2205"; +} +.sh-thinfa-dice-six:before { + content: "\a2204"; +} +.sh-thinfa-dice-one:before { + content: "\a2203"; +} +.sh-thinfa-dice-four:before { + content: "\a2202"; +} +.sh-thinfa-dice-five:before { + content: "\a2201"; +} +.sh-thinfa-dice-d20:before { + content: "\a2200"; +} +.sh-thinfa-dice-d12:before { + content: "\a2199"; +} +.sh-thinfa-dice-d10:before { + content: "\a2198"; +} +.sh-thinfa-dice-d8:before { + content: "\a2197"; +} +.sh-thinfa-dice-d6:before { + content: "\a2196"; +} +.sh-thinfa-dice-d4:before { + content: "\a2195"; +} +.sh-thinfa-dice:before { + content: "\a2194"; +} +.sh-thinfa-diamond1:before { + content: "\a2193"; +} +.sh-thinfa-dagger:before { + content: "\a2192"; +} +.sh-thinfa-club:before { + content: "\a2191"; +} +.sh-thinfa-chess-rook-piece:before { + content: "\a2190"; +} +.sh-thinfa-chess-rook:before { + content: "\a2189"; +} +.sh-thinfa-chess-queen-piece:before { + content: "\a2188"; +} +.sh-thinfa-chess-queen:before { + content: "\a2187"; +} +.sh-thinfa-chess-pawn-piece:before { + content: "\a2186"; +} +.sh-thinfa-chess-pawn:before { + content: "\a2185"; +} +.sh-thinfa-chess-knight-piece:before { + content: "\a2184"; +} +.sh-thinfa-chess-knight:before { + content: "\a2183"; +} +.sh-thinfa-chess-king-piece:before { + content: "\a2182"; +} +.sh-thinfa-chess-king:before { + content: "\a2181"; +} +.sh-thinfa-chess-clock-flip:before { + content: "\a2180"; +} +.sh-thinfa-chess-clock:before { + content: "\a2179"; +} +.sh-thinfa-chess-board:before { + content: "\a2178"; +} +.sh-thinfa-chess-bishop-piece:before { + content: "\a2177"; +} +.sh-thinfa-chess-bishop:before { + content: "\a2176"; +} +.sh-thinfa-chess:before { + content: "\a2175"; +} +.sh-thinfa-card-spade:before { + content: "\a2174"; +} +.sh-thinfa-cards-blank:before { + content: "\a2173"; +} +.sh-thinfa-cards:before { + content: "\a2172"; +} +.sh-thinfa-card-heart:before { + content: "\a2171"; +} +.sh-thinfa-card-diamond:before { + content: "\a2170"; +} +.sh-thinfa-card-club:before { + content: "\a2169"; +} +.sh-thinfa-bow-arrow:before { + content: "\a2168"; +} +.sh-thinfa-book-sparkles:before { + content: "\a2167"; +} +.sh-thinfa-book-skull:before { + content: "\a2166"; +} +.sh-thinfa-axe-battle:before { + content: "\a2165"; +} +.sh-thinfa-alien-8bit:before { + content: "\a2164"; +} +.sh-thinfa-watermelon-slice:before { + content: "\a2163"; +} +.sh-thinfa-tomato:before { + content: "\a2162"; +} +.sh-thinfa-strawberry:before { + content: "\a2161"; +} +.sh-thinfa-potato:before { + content: "\a2160"; +} +.sh-thinfa-pineapple:before { + content: "\a2159"; +} +.sh-thinfa-pepper:before { + content: "\a2158"; +} +.sh-thinfa-pear:before { + content: "\a2157"; +} +.sh-thinfa-peapod:before { + content: "\a2156"; +} +.sh-thinfa-peanuts:before { + content: "\a2155"; +} +.sh-thinfa-peanut:before { + content: "\a2154"; +} +.sh-thinfa-peach:before { + content: "\a2153"; +} +.sh-thinfa-onion:before { + content: "\a2152"; +} +.sh-thinfa-olive-branch:before { + content: "\a2151"; +} +.sh-thinfa-olive:before { + content: "\a2150"; +} +.sh-thinfa-mushroom:before { + content: "\a2149"; +} +.sh-thinfa-melon-slice:before { + content: "\a2148"; +} +.sh-thinfa-melon:before { + content: "\a2147"; +} +.sh-thinfa-mango:before { + content: "\a2146"; +} +.sh-thinfa-leafy-green:before { + content: "\a2145"; +} +.sh-thinfa-kiwi-fruit:before { + content: "\a2144"; +} +.sh-thinfa-grapes:before { + content: "\a2143"; +} +.sh-thinfa-garlic:before { + content: "\a2142"; +} +.sh-thinfa-eggplant:before { + content: "\a2141"; +} +.sh-thinfa-cucumber:before { + content: "\a2140"; +} +.sh-thinfa-crate-empty:before { + content: "\a2139"; +} +.sh-thinfa-coconut:before { + content: "\a2138"; +} +.sh-thinfa-citrus-slice:before { + content: "\a2137"; +} +.sh-thinfa-citrus:before { + content: "\a2136"; +} +.sh-thinfa-chestnut:before { + content: "\a2135"; +} +.sh-thinfa-cherries:before { + content: "\a2134"; +} +.sh-thinfa-broccoli:before { + content: "\a2133"; +} +.sh-thinfa-blueberries:before { + content: "\a2132"; +} +.sh-thinfa-banana:before { + content: "\a2131"; +} +.sh-thinfa-avocado:before { + content: "\a2130"; +} +.sh-thinfa-apple-core:before { + content: "\a2129"; +} +.sh-thinfa-wine-glass-empty:before { + content: "\a2128"; +} +.sh-thinfa-wine-glass:before { + content: "\a2127"; +} +.sh-thinfa-wine-bottle:before { + content: "\a2126"; +} +.sh-thinfa-whiskey-glass-ice:before { + content: "\a2125"; +} +.sh-thinfa-whiskey-glass:before { + content: "\a2124"; +} +.sh-thinfa-wheat-slash:before { + content: "\a2123"; +} +.sh-thinfa-wheat-awn-slash:before { + content: "\a2122"; +} +.sh-thinfa-wheat-awn:before { + content: "\a2121"; +} +.sh-thinfa-wheat:before { + content: "\a2120"; +} +.sh-thinfa-waffle:before { + content: "\a2119"; +} +.sh-thinfa-user-chef:before { + content: "\a2118"; +} +.sh-thinfa-turkey:before { + content: "\a2117"; +} +.sh-thinfa-tamale:before { + content: "\a2116"; +} +.sh-thinfa-taco:before { + content: "\a2115"; +} +.sh-thinfa-sushi-roll:before { + content: "\a2114"; +} +.sh-thinfa-sushi:before { + content: "\a2113"; +} +.sh-thinfa-stroopwafel:before { + content: "\a2112"; +} +.sh-thinfa-steak:before { + content: "\a2111"; +} +.sh-thinfa-sausage:before { + content: "\a2110"; +} +.sh-thinfa-sandwich:before { + content: "\a2109"; +} +.sh-thinfa-salt-shaker:before { + content: "\a2108"; +} +.sh-thinfa-salad:before { + content: "\a2107"; +} +.sh-thinfa-pumpkin:before { + content: "\a2106"; +} +.sh-thinfa-pot-food:before { + content: "\a2105"; +} +.sh-thinfa-popcorn:before { + content: "\a2104"; +} +.sh-thinfa-plate-wheat:before { + content: "\a2103"; +} +.sh-thinfa-pizza-slice:before { + content: "\a2102"; +} +.sh-thinfa-pizza:before { + content: "\a2101"; +} +.sh-thinfa-pie:before { + content: "\a2100"; +} +.sh-thinfa-pepper-hot:before { + content: "\a2099"; +} +.sh-thinfa-pan-frying:before { + content: "\a2098"; +} +.sh-thinfa-pan-food:before { + content: "\a2097"; +} +.sh-thinfa-pancakes:before { + content: "\a2096"; +} +.sh-thinfa-mug-tea:before { + content: "\a2095"; +} +.sh-thinfa-mug-saucer:before { + content: "\a2094"; +} +.sh-thinfa-mug-marshmallows:before { + content: "\a2093"; +} +.sh-thinfa-mug-hot:before { + content: "\a2092"; +} +.sh-thinfa-mug:before { + content: "\a2091"; +} +.sh-thinfa-meat:before { + content: "\a2090"; +} +.sh-thinfa-martini-glass-citrus:before { + content: "\a2089"; +} +.sh-thinfa-martini-glass:before { + content: "\a2088"; +} +.sh-thinfa-jug-bottle:before { + content: "\a2087"; +} +.sh-thinfa-jug:before { + content: "\a2086"; +} +.sh-thinfa-jar-wheat:before { + content: "\a2085"; +} +.sh-thinfa-jar:before { + content: "\a2084"; +} +.sh-thinfa-hotdog:before { + content: "\a2083"; +} +.sh-thinfa-honey-pot:before { + content: "\a2082"; +} +.sh-thinfa-hat-chef:before { + content: "\a2081"; +} +.sh-thinfa-glass-water-droplet:before { + content: "\a2080"; +} +.sh-thinfa-glass-water:before { + content: "\a2079"; +} +.sh-thinfa-glass-half:before { + content: "\a2078"; +} +.sh-thinfa-glass-empty:before { + content: "\a2077"; +} +.sh-thinfa-glass-citrus:before { + content: "\a2076"; +} +.sh-thinfa-glass1:before { + content: "\a2075"; +} +.sh-thinfa-gingerbread-man:before { + content: "\a2074"; +} +.sh-thinfa-french-fries:before { + content: "\a2073"; +} +.sh-thinfa-fondue-pot:before { + content: "\a2072"; +} +.sh-thinfa-flatbread-stuffed:before { + content: "\a2071"; +} +.sh-thinfa-flatbread:before { + content: "\a2070"; +} +.sh-thinfa-flask-round-potion:before { + content: "\a2069"; +} +.sh-thinfa-flask-round-poison:before { + content: "\a2068"; +} +.sh-thinfa-falafel:before { + content: "\a2067"; +} +.sh-thinfa-egg-fried:before { + content: "\a2066"; +} +.sh-thinfa-egg:before { + content: "\a2065"; +} +.sh-thinfa-drumstick-bite:before { + content: "\a2064"; +} +.sh-thinfa-drumstick:before { + content: "\a2063"; +} +.sh-thinfa-donut:before { + content: "\a2062"; +} +.sh-thinfa-custard:before { + content: "\a2061"; +} +.sh-thinfa-cup-togo:before { + content: "\a2060"; +} +.sh-thinfa-cup-straw-swoosh:before { + content: "\a2059"; +} +.sh-thinfa-cup-straw:before { + content: "\a2058"; +} +.sh-thinfa-croissant:before { + content: "\a2057"; +} +.sh-thinfa-crate-apple:before { + content: "\a2056"; +} +.sh-thinfa-corn:before { + content: "\a2055"; +} +.sh-thinfa-cookie:before { + content: "\a2054"; +} +.sh-thinfa-coffee-beans:before { + content: "\a2053"; +} +.sh-thinfa-coffee-bean:before { + content: "\a2052"; +} +.sh-thinfa-cloud-meatball:before { + content: "\a2051"; +} +.sh-thinfa-chopsticks:before { + content: "\a2050"; +} +.sh-thinfa-cheese-swiss:before { + content: "\a2049"; +} +.sh-thinfa-cheese:before { + content: "\a2048"; +} +.sh-thinfa-champagne-glasses:before { + content: "\a2047"; +} +.sh-thinfa-champagne-glass:before { + content: "\a2046"; +} +.sh-thinfa-carrot:before { + content: "\a2045"; +} +.sh-thinfa-can-food:before { + content: "\a2044"; +} +.sh-thinfa-candy-corn:before { + content: "\a2043"; +} +.sh-thinfa-candy-cane:before { + content: "\a2042"; +} +.sh-thinfa-butter:before { + content: "\a2041"; +} +.sh-thinfa-burger-soda:before { + content: "\a2040"; +} +.sh-thinfa-burger-lettuce:before { + content: "\a2039"; +} +.sh-thinfa-burger-glass:before { + content: "\a2038"; +} +.sh-thinfa-burger-fries:before { + content: "\a2037"; +} +.sh-thinfa-burger-cheese:before { + content: "\a2036"; +} +.sh-thinfa-burger:before { + content: "\a2035"; +} +.sh-thinfa-bread-slice-butter:before { + content: "\a2034"; +} +.sh-thinfa-bread-slice:before { + content: "\a2033"; +} +.sh-thinfa-bread-loaf:before { + content: "\a2032"; +} +.sh-thinfa-bowl-spoon:before { + content: "\a2031"; +} +.sh-thinfa-bowl-scoops:before { + content: "\a2030"; +} +.sh-thinfa-bowl-scoop:before { + content: "\a2029"; +} +.sh-thinfa-bowl-rice:before { + content: "\a2028"; +} +.sh-thinfa-bowl-hot:before { + content: "\a2027"; +} +.sh-thinfa-bowl-food:before { + content: "\a2026"; +} +.sh-thinfa-bowl-chopsticks-noodles:before { + content: "\a2025"; +} +.sh-thinfa-bowl-chopsticks:before { + content: "\a2024"; +} +.sh-thinfa-bottle-droplet:before { + content: "\a2023"; +} +.sh-thinfa-bone:before { + content: "\a2022"; +} +.sh-thinfa-blender:before { + content: "\a2021"; +} +.sh-thinfa-beer-mug-empty:before { + content: "\a2020"; +} +.sh-thinfa-baguette:before { + content: "\a2019"; +} +.sh-thinfa-bagel:before { + content: "\a2018"; +} +.sh-thinfa-bacon:before { + content: "\a2017"; +} +.sh-thinfa-waveform-lines:before { + content: "\a2016"; +} +.sh-thinfa-waveform:before { + content: "\a2015"; +} +.sh-thinfa-video-arrow-up-right:before { + content: "\a2014"; +} +.sh-thinfa-video-arrow-down-left:before { + content: "\a2013"; +} +.sh-thinfa-ticket1:before { + content: "\a2012"; +} +.sh-thinfa-standard-definition:before { + content: "\a2011"; +} +.sh-thinfa-screencast:before { + content: "\a2010"; +} +.sh-thinfa-photo-film-music:before { + content: "\a2009"; +} +.sh-thinfa-microphone-stand:before { + content: "\a2008"; +} +.sh-thinfa-head-side-headphones:before { + content: "\a2007"; +} +.sh-thinfa-gif:before { + content: "\a2006"; +} +.sh-thinfa-film-slash:before { + content: "\a2005"; +} +.sh-thinfa-film-simple:before { + content: "\a2004"; +} +.sh-thinfa-film-canister:before { + content: "\a2003"; +} +.sh-thinfa-face-viewfinder:before { + content: "\a2002"; +} +.sh-thinfa-drone-front:before { + content: "\a2001"; +} +.sh-thinfa-drone:before { + content: "\a2000"; +} +.sh-thinfa-cloud-music:before { + content: "\a1999"; +} +.sh-thinfa-clapperboard-play:before { + content: "\a1998"; +} +.sh-thinfa-clapperboard:before { + content: "\a1997"; +} +.sh-thinfa-circle-waveform-lines:before { + content: "\a1996"; +} +.sh-thinfa-circle-video:before { + content: "\a1995"; +} +.sh-thinfa-circle-microphone-lines:before { + content: "\a1994"; +} +.sh-thinfa-circle-microphone:before { + content: "\a1993"; +} +.sh-thinfa-cassette-vhs:before { + content: "\a1992"; +} +.sh-thinfa-cassette-betamax:before { + content: "\a1991"; +} +.sh-thinfa-camera-movie:before { + content: "\a1990"; +} +.sh-thinfa-camera-cctv:before { + content: "\a1989"; +} +.sh-thinfa-camcorder:before { + content: "\a1988"; +} +.sh-thinfa-amp-guitar:before { + content: "\a1987"; +} +.sh-thinfa-album-collection:before { + content: "\a1986"; +} +.sh-thinfa-airplay:before { + content: "\a1985"; +} +.sh-thinfa-360-degrees:before { + content: "\a1984"; +} +.sh-thinfa-photo-film:before { + content: "\a1983"; +} +.sh-thinfa-page-caret-up:before { + content: "\a1982"; +} +.sh-thinfa-page-caret-down:before { + content: "\a1981"; +} +.sh-thinfa-page:before { + content: "\a1980"; +} +.sh-thinfa-note-sticky:before { + content: "\a1979"; +} +.sh-thinfa-memo-pad:before { + content: "\a1978"; +} +.sh-thinfa-memo-circle-info:before { + content: "\a1977"; +} +.sh-thinfa-memo-circle-check:before { + content: "\a1976"; +} +.sh-thinfa-memo:before { + content: "\a1975"; +} +.sh-thinfa-folder-user:before { + content: "\a1974"; +} +.sh-thinfa-folder-music:before { + content: "\a1973"; +} +.sh-thinfa-folder-medical:before { + content: "\a1972"; +} +.sh-thinfa-folder-magnifying-glass:before { + content: "\a1971"; +} +.sh-thinfa-folder-image:before { + content: "\a1970"; +} +.sh-thinfa-folder-heart:before { + content: "\a1969"; +} +.sh-thinfa-folder-grid:before { + content: "\a1968"; +} +.sh-thinfa-folder-gear:before { + content: "\a1967"; +} +.sh-thinfa-folder-closed:before { + content: "\a1966"; +} +.sh-thinfa-folder-bookmark:before { + content: "\a1965"; +} +.sh-thinfa-file-zip:before { + content: "\a1964"; +} +.sh-thinfa-file-xmark:before { + content: "\a1963"; +} +.sh-thinfa-file-slash:before { + content: "\a1962"; +} +.sh-thinfa-file-shield:before { + content: "\a1961"; +} +.sh-thinfa-files:before { + content: "\a1960"; +} +.sh-thinfa-file-plus-minus:before { + content: "\a1959"; +} +.sh-thinfa-file-plus:before { + content: "\a1958"; +} +.sh-thinfa-file-pen:before { + content: "\a1957"; +} +.sh-thinfa-file-pdf:before { + content: "\a1956"; +} +.sh-thinfa-file-music:before { + content: "\a1955"; +} +.sh-thinfa-file-minus:before { + content: "\a1954"; +} +.sh-thinfa-file-magnifying-glass:before { + content: "\a1953"; +} +.sh-thinfa-file-lock:before { + content: "\a1952"; +} +.sh-thinfa-file-import:before { + content: "\a1951"; +} +.sh-thinfa-file-heart:before { + content: "\a1950"; +} +.sh-thinfa-file-export:before { + content: "\a1949"; +} +.sh-thinfa-file-doc:before { + content: "\a1948"; +} +.sh-thinfa-file-csv:before { + content: "\a1947"; +} +.sh-thinfa-file-circle-xmark:before { + content: "\a1946"; +} +.sh-thinfa-file-circle-question:before { + content: "\a1945"; +} +.sh-thinfa-file-circle-minus:before { + content: "\a1944"; +} +.sh-thinfa-file-circle-exclamation:before { + content: "\a1943"; +} +.sh-thinfa-file-circle-check:before { + content: "\a1942"; +} +.sh-thinfa-file-check:before { + content: "\a1941"; +} +.sh-thinfa-file-binary:before { + content: "\a1940"; +} +.sh-thinfa-file-arrow-up:before { + content: "\a1939"; +} +.sh-thinfa-file-arrow-down:before { + content: "\a1938"; +} +.sh-thinfa-wind-turbine:before { + content: "\a1937"; +} +.sh-thinfa-water:before { + content: "\a1936"; +} +.sh-thinfa-vent-damper:before { + content: "\a1935"; +} +.sh-thinfa-utility-pole-double:before { + content: "\a1934"; +} +.sh-thinfa-utility-pole:before { + content: "\a1933"; +} +.sh-thinfa-transformer-bolt:before { + content: "\a1932"; +} +.sh-thinfa-solar-panel:before { + content: "\a1931"; +} +.sh-thinfa-plug-circle-xmark:before { + content: "\a1930"; +} +.sh-thinfa-plug-circle-plus:before { + content: "\a1929"; +} +.sh-thinfa-plug-circle-minus:before { + content: "\a1928"; +} +.sh-thinfa-plug-circle-exclamation:before { + content: "\a1927"; +} +.sh-thinfa-plug-circle-check:before { + content: "\a1926"; +} +.sh-thinfa-plug-circle-bolt:before { + content: "\a1925"; +} +.sh-thinfa-pipe-valve:before { + content: "\a1924"; +} +.sh-thinfa-pipe-section:before { + content: "\a1923"; +} +.sh-thinfa-pipe-collar:before { + content: "\a1922"; +} +.sh-thinfa-pipe-circle-check:before { + content: "\a1921"; +} +.sh-thinfa-pedestal:before { + content: "\a1920"; +} +.sh-thinfa-outlet:before { + content: "\a1919"; +} +.sh-thinfa-meter-fire:before { + content: "\a1918"; +} +.sh-thinfa-meter-droplet:before { + content: "\a1917"; +} +.sh-thinfa-meter-bolt:before { + content: "\a1916"; +} +.sh-thinfa-manhole:before { + content: "\a1915"; +} +.sh-thinfa-lightbulb-cfl:before { + content: "\a1914"; +} +.sh-thinfa-lamp-street:before { + content: "\a1913"; +} +.sh-thinfa-fire-flame-simple:before { + content: "\a1912"; +} +.sh-thinfa-fan:before { + content: "\a1911"; +} +.sh-thinfa-explosion:before { + content: "\a1910"; +} +.sh-thinfa-burrito:before { + content: "\a1909"; +} +.sh-thinfa-battery-slash:before { + content: "\a1908"; +} +.sh-thinfa-battery-bolt:before { + content: "\a1907"; +} +.sh-thinfa-face-zipper:before { + content: "\a1906"; +} +.sh-thinfa-face-zany:before { + content: "\a1905"; +} +.sh-thinfa-face-worried:before { + content: "\a1904"; +} +.sh-thinfa-face-woozy:before { + content: "\a1903"; +} +.sh-thinfa-face-weary:before { + content: "\a1902"; +} +.sh-thinfa-face-vomit:before { + content: "\a1901"; +} +.sh-thinfa-face-unamused:before { + content: "\a1900"; +} +.sh-thinfa-face-tongue-sweat:before { + content: "\a1899"; +} +.sh-thinfa-face-tongue-money:before { + content: "\a1898"; +} +.sh-thinfa-face-tissue:before { + content: "\a1897"; +} +.sh-thinfa-face-tired:before { + content: "\a1896"; +} +.sh-thinfa-face-thinking:before { + content: "\a1895"; +} +.sh-thinfa-face-thermometer:before { + content: "\a1894"; +} +.sh-thinfa-face-swear:before { + content: "\a1893"; +} +.sh-thinfa-face-surprise:before { + content: "\a1892"; +} +.sh-thinfa-face-sunglasses:before { + content: "\a1891"; +} +.sh-thinfa-face-spiral-eyes:before { + content: "\a1890"; +} +.sh-thinfa-face-smirking:before { + content: "\a1889"; +} +.sh-thinfa-face-smiling-hands:before { + content: "\a1888"; +} +.sh-thinfa-face-smile-wink:before { + content: "\a1887"; +} +.sh-thinfa-face-smile-upside-down:before { + content: "\a1886"; +} +.sh-thinfa-face-smile-tongue:before { + content: "\a1885"; +} +.sh-thinfa-face-smile-tear:before { + content: "\a1884"; +} +.sh-thinfa-face-smile-relaxed:before { + content: "\a1883"; +} +.sh-thinfa-face-smile-horns:before { + content: "\a1882"; +} +.sh-thinfa-face-smile-hearts:before { + content: "\a1881"; +} +.sh-thinfa-face-smile-halo:before { + content: "\a1880"; +} +.sh-thinfa-face-smile-beam:before { + content: "\a1879"; +} +.sh-thinfa-face-sleepy:before { + content: "\a1878"; +} +.sh-thinfa-face-sleeping:before { + content: "\a1877"; +} +.sh-thinfa-face-shush:before { + content: "\a1876"; +} +.sh-thinfa-face-scream:before { + content: "\a1875"; +} +.sh-thinfa-face-saluting:before { + content: "\a1874"; +} +.sh-thinfa-face-sad-tear:before { + content: "\a1873"; +} +.sh-thinfa-face-sad-sweat:before { + content: "\a1872"; +} +.sh-thinfa-face-sad-cry:before { + content: "\a1871"; +} +.sh-thinfa-face-rolling-eyes:before { + content: "\a1870"; +} +.sh-thinfa-face-relieved:before { + content: "\a1869"; +} +.sh-thinfa-face-raised-eyebrow:before { + content: "\a1868"; +} +.sh-thinfa-face-pouting:before { + content: "\a1867"; +} +.sh-thinfa-face-pleading:before { + content: "\a1866"; +} +.sh-thinfa-face-persevering:before { + content: "\a1865"; +} +.sh-thinfa-face-pensive:before { + content: "\a1864"; +} +.sh-thinfa-face-party:before { + content: "\a1863"; +} +.sh-thinfa-face-nose-steam:before { + content: "\a1862"; +} +.sh-thinfa-face-nauseated:before { + content: "\a1861"; +} +.sh-thinfa-face-monocle:before { + content: "\a1860"; +} +.sh-thinfa-face-melting:before { + content: "\a1859"; +} +.sh-thinfa-face-meh-blank:before { + content: "\a1858"; +} +.sh-thinfa-face-mask:before { + content: "\a1857"; +} +.sh-thinfa-face-lying:before { + content: "\a1856"; +} +.sh-thinfa-face-laugh-wink:before { + content: "\a1855"; +} +.sh-thinfa-face-laugh-squint:before { + content: "\a1854"; +} +.sh-thinfa-face-laugh-beam:before { + content: "\a1853"; +} +.sh-thinfa-face-laugh:before { + content: "\a1852"; +} +.sh-thinfa-face-kiss-wink-heart:before { + content: "\a1851"; +} +.sh-thinfa-face-kiss-closed-eyes:before { + content: "\a1850"; +} +.sh-thinfa-face-kiss-beam:before { + content: "\a1849"; +} +.sh-thinfa-face-kiss:before { + content: "\a1848"; +} +.sh-thinfa-face-icicles:before { + content: "\a1847"; +} +.sh-thinfa-face-hushed:before { + content: "\a1846"; +} +.sh-thinfa-face-holding-back-tears:before { + content: "\a1845"; +} +.sh-thinfa-face-head-bandage:before { + content: "\a1844"; +} +.sh-thinfa-face-hand-yawn:before { + content: "\a1843"; +} +.sh-thinfa-face-hand-peeking:before { + content: "\a1842"; +} +.sh-thinfa-face-hand-over-mouth:before { + content: "\a1841"; +} +.sh-thinfa-face-grin-wink:before { + content: "\a1840"; +} +.sh-thinfa-face-grin-wide:before { + content: "\a1839"; +} +.sh-thinfa-face-grin-tongue-wink:before { + content: "\a1838"; +} +.sh-thinfa-face-grin-tongue-squint:before { + content: "\a1837"; +} +.sh-thinfa-face-grin-tongue:before { + content: "\a1836"; +} +.sh-thinfa-face-grin-tears:before { + content: "\a1835"; +} +.sh-thinfa-face-grin-stars:before { + content: "\a1834"; +} +.sh-thinfa-face-grin-squint-tears:before { + content: "\a1833"; +} +.sh-thinfa-face-grin-squint:before { + content: "\a1832"; +} +.sh-thinfa-face-grin-hearts:before { + content: "\a1831"; +} +.sh-thinfa-face-grin-beam-sweat:before { + content: "\a1830"; +} +.sh-thinfa-face-grin-beam:before { + content: "\a1829"; +} +.sh-thinfa-face-grin:before { + content: "\a1828"; +} +.sh-thinfa-face-grimace:before { + content: "\a1827"; +} +.sh-thinfa-face-glasses:before { + content: "\a1826"; +} +.sh-thinfa-face-frown-slight:before { + content: "\a1825"; +} +.sh-thinfa-face-frown-open:before { + content: "\a1824"; +} +.sh-thinfa-face-flushed:before { + content: "\a1823"; +} +.sh-thinfa-face-fearful:before { + content: "\a1822"; +} +.sh-thinfa-face-eyes-xmarks:before { + content: "\a1821"; +} +.sh-thinfa-face-expressionless:before { + content: "\a1820"; +} +.sh-thinfa-face-explode:before { + content: "\a1819"; +} +.sh-thinfa-face-exhaling:before { + content: "\a1818"; +} +.sh-thinfa-face-drooling:before { + content: "\a1817"; +} +.sh-thinfa-face-downcast-sweat:before { + content: "\a1816"; +} +.sh-thinfa-face-dotted:before { + content: "\a1815"; +} +.sh-thinfa-face-dizzy:before { + content: "\a1814"; +} +.sh-thinfa-face-disguise:before { + content: "\a1813"; +} +.sh-thinfa-face-disappointed:before { + content: "\a1812"; +} +.sh-thinfa-face-diagonal-mouth:before { + content: "\a1811"; +} +.sh-thinfa-face-cowboy-hat:before { + content: "\a1810"; +} +.sh-thinfa-face-confused:before { + content: "\a1809"; +} +.sh-thinfa-face-confounded:before { + content: "\a1808"; +} +.sh-thinfa-face-clouds:before { + content: "\a1807"; +} +.sh-thinfa-face-beam-hand-over-mouth:before { + content: "\a1806"; +} +.sh-thinfa-face-astonished:before { + content: "\a1805"; +} +.sh-thinfa-face-anxious-sweat:before { + content: "\a1804"; +} +.sh-thinfa-face-anguished:before { + content: "\a1803"; +} +.sh-thinfa-face-angry-horns:before { + content: "\a1802"; +} +.sh-thinfa-face-angry:before { + content: "\a1801"; +} +.sh-thinfa-user-graduate:before { + content: "\a1800"; +} +.sh-thinfa-screen-users:before { + content: "\a1799"; +} +.sh-thinfa-pen-paintbrush:before { + content: "\a1798"; +} +.sh-thinfa-microscope:before { + content: "\a1797"; +} +.sh-thinfa-masks-theater:before { + content: "\a1796"; +} +.sh-thinfa-file-laptop:before { + content: "\a1795"; +} +.sh-thinfa-globe-stand:before { + content: "\a1794"; +} +.sh-thinfa-glasses-round:before { + content: "\a1793"; +} +.sh-thinfa-file-certificate:before { + content: "\a1792"; +} +.sh-thinfa-diploma:before { + content: "\a1791"; +} +.sh-thinfa-chalkboard-user:before { + content: "\a1790"; +} +.sh-thinfa-chalkboard:before { + content: "\a1789"; +} +.sh-thinfa-bus-school:before { + content: "\a1788"; +} +.sh-thinfa-books:before { + content: "\a1787"; +} +.sh-thinfa-book-open-reader:before { + content: "\a1786"; +} +.sh-thinfa-book-open-cover:before { + content: "\a1785"; +} +.sh-thinfa-book-open:before { + content: "\a1784"; +} +.sh-thinfa-book-copy:before { + content: "\a1783"; +} +.sh-thinfa-book-blank:before { + content: "\a1782"; +} +.sh-thinfa-award:before { + content: "\a1781"; +} +.sh-thinfa-atom-simple:before { + content: "\a1780"; +} +.sh-thinfa-atom:before { + content: "\a1779"; +} +.sh-thinfa-trash-xmark:before { + content: "\a1778"; +} +.sh-thinfa-trash-undo:before { + content: "\a1777"; +} +.sh-thinfa-trash-slash:before { + content: "\a1776"; +} +.sh-thinfa-trash-plus:before { + content: "\a1775"; +} +.sh-thinfa-trash-can-undo:before { + content: "\a1774"; +} +.sh-thinfa-trash-can-slash:before { + content: "\a1773"; +} +.sh-thinfa-trash-can-plus:before { + content: "\a1772"; +} +.sh-thinfa-trash-can-list:before { + content: "\a1771"; +} +.sh-thinfa-trash-can-clock:before { + content: "\a1770"; +} +.sh-thinfa-trash-can-check:before { + content: "\a1769"; +} +.sh-thinfa-trash-can-arrow-up:before { + content: "\a1768"; +} +.sh-thinfa-trash-arrow-up:before { + content: "\a1767"; +} +.sh-thinfa-square-ellipsis-vertical:before { + content: "\a1766"; +} +.sh-thinfa-square-ellipsis:before { + content: "\a1765"; +} +.sh-thinfa-sliders-up:before { + content: "\a1764"; +} +.sh-thinfa-sliders-simple:before { + content: "\a1763"; +} +.sh-thinfa-pen-swirl:before { + content: "\a1762"; +} +.sh-thinfa-pen-slash:before { + content: "\a1761"; +} +.sh-thinfa-pen-line:before { + content: "\a1760"; +} +.sh-thinfa-pen-field:before { + content: "\a1759"; +} +.sh-thinfa-pen-fancy-slash:before { + content: "\a1758"; +} +.sh-thinfa-pen-clip-slash:before { + content: "\a1757"; +} +.sh-thinfa-pencil-slash:before { + content: "\a1756"; +} +.sh-thinfa-octagon-check:before { + content: "\a1755"; +} +.sh-thinfa-hexagon-check:before { + content: "\a1754"; +} +.sh-thinfa-grip-vertical:before { + content: "\a1753"; +} +.sh-thinfa-grip-lines-vertical:before { + content: "\a1752"; +} +.sh-thinfa-grip-lines:before { + content: "\a1751"; +} +.sh-thinfa-grip-dots-vertical:before { + content: "\a1750"; +} +.sh-thinfa-grip-dots:before { + content: "\a1749"; +} +.sh-thinfa-grip:before { + content: "\a1748"; +} +.sh-thinfa-grid-round-5:before { + content: "\a1747"; +} +.sh-thinfa-grid-round-4:before { + content: "\a1746"; +} +.sh-thinfa-grid-round-2:before { + content: "\a1745"; +} +.sh-thinfa-grid-round:before { + content: "\a1744"; +} +.sh-thinfa-ellipsis-stroke-vertical:before { + content: "\a1743"; +} +.sh-thinfa-ellipsis-stroke:before { + content: "\a1742"; +} +.sh-thinfa-dial-off:before { + content: "\a1741"; +} +.sh-thinfa-dial-min:before { + content: "\a1740"; +} +.sh-thinfa-dial-med-low:before { + content: "\a1739"; +} +.sh-thinfa-dial-med:before { + content: "\a1738"; +} +.sh-thinfa-dial-max:before { + content: "\a1737"; +} +.sh-thinfa-dial-low:before { + content: "\a1736"; +} +.sh-thinfa-dial-high:before { + content: "\a1735"; +} +.sh-thinfa-dial:before { + content: "\a1734"; +} +.sh-thinfa-delete-right:before { + content: "\a1733"; +} +.sh-thinfa-delete-left:before { + content: "\a1732"; +} +.sh-thinfa-dash:before { + content: "\a1731"; +} +.sh-thinfa-command:before { + content: "\a1730"; +} +.sh-thinfa-circle-trash:before { + content: "\a1729"; +} +.sh-thinfa-circle-ellipsis-vertical:before { + content: "\a1728"; +} +.sh-thinfa-circle-ellipsis:before { + content: "\a1727"; +} +.sh-thinfa-check-double:before { + content: "\a1726"; +} +.sh-thinfa-bandage:before { + content: "\a1725"; +} +.sh-thinfa-xmarks-lines:before { + content: "\a1724"; +} +.sh-thinfa-wind:before { + content: "\a1723"; +} +.sh-thinfa-wheat-awn-circle-exclamation:before { + content: "\a1722"; +} +.sh-thinfa-volcano:before { + content: "\a1721"; +} +.sh-thinfa-tornado:before { + content: "\a1720"; +} +.sh-thinfa-temperature-arrow-up:before { + content: "\a1719"; +} +.sh-thinfa-temperature-arrow-down:before { + content: "\a1718"; +} +.sh-thinfa-sun-plant-wilt:before { + content: "\a1717"; +} +.sh-thinfa-plant-wilt:before { + content: "\a1716"; +} +.sh-thinfa-person-walking-dashed-line-arrow-right:before { + content: "\a1715"; +} +.sh-thinfa-person-walking-arrow-right:before { + content: "\a1714"; +} +.sh-thinfa-person-walking-arrow-loop-left:before { + content: "\a1713"; +} +.sh-thinfa-person-rifle:before { + content: "\a1712"; +} +.sh-thinfa-person-drowning:before { + content: "\a1711"; +} +.sh-thinfa-hurricane:before { + content: "\a1710"; +} +.sh-thinfa-house-tsunami:before { + content: "\a1709"; +} +.sh-thinfa-house-flood-water-circle-arrow-right:before { + content: "\a1708"; +} +.sh-thinfa-house-flood-water:before { + content: "\a1707"; +} +.sh-thinfa-hill-rockslide:before { + content: "\a1706"; +} +.sh-thinfa-hill-avalanche:before { + content: "\a1705"; +} +.sh-thinfa-helmet-un:before { + content: "\a1704"; +} +.sh-thinfa-heat:before { + content: "\a1703"; +} +.sh-thinfa-cloud-showers-water:before { + content: "\a1702"; +} +.sh-thinfa-cloud-showers-heavy:before { + content: "\a1701"; +} +.sh-thinfa-cloud-bolt:before { + content: "\a1700"; +} +.sh-thinfa-child-combatant:before { + content: "\a1699"; +} +.sh-thinfa-burst:before { + content: "\a1698"; +} +.sh-thinfa-biohazard:before { + content: "\a1697"; +} +.sh-thinfa-watch-calculator:before { + content: "\a1696"; +} +.sh-thinfa-usb-drive:before { + content: "\a1695"; +} +.sh-thinfa-typewriter:before { + content: "\a1694"; +} +.sh-thinfa-tv-retro:before { + content: "\a1693"; +} +.sh-thinfa-tv-music:before { + content: "\a1692"; +} +.sh-thinfa-tachograph-digital:before { + content: "\a1691"; +} +.sh-thinfa-speakers:before { + content: "\a1690"; +} +.sh-thinfa-speaker:before { + content: "\a1689"; +} +.sh-thinfa-sim-cards:before { + content: "\a1688"; +} +.sh-thinfa-sim-card:before { + content: "\a1687"; +} +.sh-thinfa-sd-cards:before { + content: "\a1686"; +} +.sh-thinfa-sd-card:before { + content: "\a1685"; +} +.sh-thinfa-mp3-player:before { + content: "\a1684"; +} +.sh-thinfa-microchip-ai:before { + content: "\a1683"; +} +.sh-thinfa-meter:before { + content: "\a1682"; +} +.sh-thinfa-memory:before { + content: "\a1681"; +} +.sh-thinfa-laptop-slash:before { + content: "\a1680"; +} +.sh-thinfa-laptop-binary:before { + content: "\a1679"; +} +.sh-thinfa-laptop-arrow-down:before { + content: "\a1678"; +} +.sh-thinfa-keyboard-left:before { + content: "\a1677"; +} +.sh-thinfa-keyboard-down:before { + content: "\a1676"; +} +.sh-thinfa-game-console-handheld-crank:before { + content: "\a1675"; +} +.sh-thinfa-floppy-disk-pen:before { + content: "\a1674"; +} +.sh-thinfa-display-slash:before { + content: "\a1673"; +} +.sh-thinfa-display-medical:before { + content: "\a1672"; +} +.sh-thinfa-display-code:before { + content: "\a1671"; +} +.sh-thinfa-display-arrow-down:before { + content: "\a1670"; +} +.sh-thinfa-display:before { + content: "\a1669"; +} +.sh-thinfa-disc-drive:before { + content: "\a1668"; +} +.sh-thinfa-desktop-arrow-down:before { + content: "\a1667"; +} +.sh-thinfa-computer-speaker:before { + content: "\a1666"; +} +.sh-thinfa-computer-mouse-scrollwheel:before { + content: "\a1665"; +} +.sh-thinfa-computer-mouse:before { + content: "\a1664"; +} +.sh-thinfa-computer:before { + content: "\a1663"; +} +.sh-thinfa-compact-disc:before { + content: "\a1662"; +} +.sh-thinfa-camera-web-slash:before { + content: "\a1661"; +} +.sh-thinfa-camera-web:before { + content: "\a1660"; +} +.sh-thinfa-album-circle-user:before { + content: "\a1659"; +} +.sh-thinfa-album-circle-plus:before { + content: "\a1658"; +} +.sh-thinfa-album:before { + content: "\a1657"; +} +.sh-thinfa-vector-square:before { + content: "\a1656"; +} +.sh-thinfa-vector-polygon:before { + content: "\a1655"; +} +.sh-thinfa-vector-circle:before { + content: "\a1654"; +} +.sh-thinfa-swatchbook:before { + content: "\a1653"; +} +.sh-thinfa-stamp:before { + content: "\a1652"; +} +.sh-thinfa-square-dashed-circle-plus:before { + content: "\a1651"; +} +.sh-thinfa-square-dashed:before { + content: "\a1650"; +} +.sh-thinfa-spray-can:before { + content: "\a1649"; +} +.sh-thinfa-splotch:before { + content: "\a1648"; +} +.sh-thinfa-sparkle:before { + content: "\a1647"; +} +.sh-thinfa-send-backward:before { + content: "\a1646"; +} +.sh-thinfa-send-back:before { + content: "\a1645"; +} +.sh-thinfa-scribble:before { + content: "\a1644"; +} +.sh-thinfa-rectangles-mixed:before { + content: "\a1643"; +} +.sh-thinfa-pen-circle:before { + content: "\a1642"; +} +.sh-thinfa-pencil-mechanical:before { + content: "\a1641"; +} +.sh-thinfa-palette:before { + content: "\a1640"; +} +.sh-thinfa-paintbrush-pencil:before { + content: "\a1639"; +} +.sh-thinfa-paintbrush-fine:before { + content: "\a1638"; +} +.sh-thinfa-object-union:before { + content: "\a1637"; +} +.sh-thinfa-object-subtract:before { + content: "\a1636"; +} +.sh-thinfa-objects-column:before { + content: "\a1635"; +} +.sh-thinfa-objects-align-top:before { + content: "\a1634"; +} +.sh-thinfa-objects-align-right:before { + content: "\a1633"; +} +.sh-thinfa-objects-align-left:before { + content: "\a1632"; +} +.sh-thinfa-objects-align-center-vertical:before { + content: "\a1631"; +} +.sh-thinfa-objects-align-center-horizontal:before { + content: "\a1630"; +} +.sh-thinfa-objects-align-bottom:before { + content: "\a1629"; +} +.sh-thinfa-object-intersect:before { + content: "\a1628"; +} +.sh-thinfa-object-exclude:before { + content: "\a1627"; +} +.sh-thinfa-lines-leaning:before { + content: "\a1626"; +} +.sh-thinfa-layer-plus:before { + content: "\a1625"; +} +.sh-thinfa-layer-minus:before { + content: "\a1624"; +} +.sh-thinfa-layer-group:before { + content: "\a1623"; +} +.sh-thinfa-lasso-sparkles:before { + content: "\a1622"; +} +.sh-thinfa-lasso:before { + content: "\a1621"; +} +.sh-thinfa-image-polaroid:before { + content: "\a1620"; +} +.sh-thinfa-highlighter-line:before { + content: "\a1619"; +} +.sh-thinfa-grid-dividers:before { + content: "\a1618"; +} +.sh-thinfa-grid-5:before { + content: "\a1617"; +} +.sh-thinfa-grid-4:before { + content: "\a1616"; +} +.sh-thinfa-grid-2-plus:before { + content: "\a1615"; +} +.sh-thinfa-grid:before { + content: "\a1614"; +} +.sh-thinfa-gallery-thumbnails:before { + content: "\a1613"; +} +.sh-thinfa-fill-drip:before { + content: "\a1612"; +} +.sh-thinfa-fill:before { + content: "\a1611"; +} +.sh-thinfa-eye-dropper-half:before { + content: "\a1610"; +} +.sh-thinfa-eye-dropper-full:before { + content: "\a1609"; +} +.sh-thinfa-droplet-slash:before { + content: "\a1608"; +} +.sh-thinfa-droplet:before { + content: "\a1607"; +} +.sh-thinfa-draw-square:before { + content: "\a1606"; +} +.sh-thinfa-draw-polygon:before { + content: "\a1605"; +} +.sh-thinfa-draw-circle:before { + content: "\a1604"; +} +.sh-thinfa-distribute-spacing-vertical:before { + content: "\a1603"; +} +.sh-thinfa-distribute-spacing-horizontal:before { + content: "\a1602"; +} +.sh-thinfa-crosshairs-simple:before { + content: "\a1601"; +} +.sh-thinfa-crop-simple:before { + content: "\a1600"; +} +.sh-thinfa-columns-3:before { + content: "\a1599"; +} +.sh-thinfa-circle-dashed:before { + content: "\a1598"; +} +.sh-thinfa-camera-polaroid:before { + content: "\a1597"; +} +.sh-thinfa-broom-wide:before { + content: "\a1596"; +} +.sh-thinfa-bring-front:before { + content: "\a1595"; +} +.sh-thinfa-bring-forward:before { + content: "\a1594"; +} +.sh-thinfa-book-font:before { + content: "\a1593"; +} +.sh-thinfa-bezier-curve:before { + content: "\a1592"; +} +.sh-thinfa-user-helmet-safety:before { + content: "\a1591"; +} +.sh-thinfa-truck-container:before { + content: "\a1590"; +} +.sh-thinfa-trowel-bricks:before { + content: "\a1589"; +} +.sh-thinfa-trowel:before { + content: "\a1588"; +} +.sh-thinfa-triangle-person-digging:before { + content: "\a1587"; +} +.sh-thinfa-traffic-cone:before { + content: "\a1586"; +} +.sh-thinfa-toolbox:before { + content: "\a1585"; +} +.sh-thinfa-shovel-snow:before { + content: "\a1584"; +} +.sh-thinfa-sheet-plastic:before { + content: "\a1583"; +} +.sh-thinfa-screwdriver-wrench:before { + content: "\a1582"; +} +.sh-thinfa-screwdriver:before { + content: "\a1581"; +} +.sh-thinfa-ruler-vertical:before { + content: "\a1580"; +} +.sh-thinfa-ruler-triangle:before { + content: "\a1579"; +} +.sh-thinfa-ruler-horizontal:before { + content: "\a1578"; +} +.sh-thinfa-ruler-combined:before { + content: "\a1577"; +} +.sh-thinfa-ruler:before { + content: "\a1576"; +} +.sh-thinfa-person-digging:before { + content: "\a1575"; +} +.sh-thinfa-pen-ruler:before { + content: "\a1574"; +} +.sh-thinfa-paint-roller:before { + content: "\a1573"; +} +.sh-thinfa-mound:before { + content: "\a1572"; +} +.sh-thinfa-hose-reel:before { + content: "\a1571"; +} +.sh-thinfa-hose:before { + content: "\a1570"; +} +.sh-thinfa-helmet-safety:before { + content: "\a1569"; +} +.sh-thinfa-hammer-crash:before { + content: "\a1568"; +} +.sh-thinfa-hammer:before { + content: "\a1567"; +} +.sh-thinfa-grate-droplet:before { + content: "\a1566"; +} +.sh-thinfa-grate:before { + content: "\a1565"; +} +.sh-thinfa-frame:before { + content: "\a1564"; +} +.sh-thinfa-forklift:before { + content: "\a1563"; +} +.sh-thinfa-dumpster-fire:before { + content: "\a1562"; +} +.sh-thinfa-dumpster:before { + content: "\a1561"; +} +.sh-thinfa-compass-drafting:before { + content: "\a1560"; +} +.sh-thinfa-brush:before { + content: "\a1559"; +} +.sh-thinfa-bore-hole:before { + content: "\a1558"; +} +.sh-thinfa-block-brick:before { + content: "\a1557"; +} +.sh-thinfa-arrow-up-from-ground-water:before { + content: "\a1556"; +} +.sh-thinfa-angle-90:before { + content: "\a1555"; +} +.sh-thinfa-angle:before { + content: "\a1554"; +} +.sh-thinfa-wifi-weak:before { + content: "\a1553"; +} +.sh-thinfa-wifi-fair:before { + content: "\a1552"; +} +.sh-thinfa-tower-broadcast:before { + content: "\a1551"; +} +.sh-thinfa-signal-weak:before { + content: "\a1550"; +} +.sh-thinfa-signal-strong:before { + content: "\a1549"; +} +.sh-thinfa-signal-stream-slash:before { + content: "\a1548"; +} +.sh-thinfa-signal-stream:before { + content: "\a1547"; +} +.sh-thinfa-signal-good:before { + content: "\a1546"; +} +.sh-thinfa-signal-fair:before { + content: "\a1545"; +} +.sh-thinfa-signal-bars-weak:before { + content: "\a1544"; +} +.sh-thinfa-signal-bars-slash:before { + content: "\a1543"; +} +.sh-thinfa-signal-bars-good:before { + content: "\a1542"; +} +.sh-thinfa-signal-bars-fair:before { + content: "\a1541"; +} +.sh-thinfa-nfc-signal:before { + content: "\a1540"; +} +.sh-thinfa-mobile-signal-out:before { + content: "\a1539"; +} +.sh-thinfa-mobile-signal:before { + content: "\a1538"; +} +.sh-thinfa-link-horizontal-slash:before { + content: "\a1537"; +} +.sh-thinfa-link-horizontal:before { + content: "\a1536"; +} +.sh-thinfa-house-signal:before { + content: "\a1535"; +} +.sh-thinfa-ethernet:before { + content: "\a1534"; +} +.sh-thinfa-cloud-xmark:before { + content: "\a1533"; +} +.sh-thinfa-cloud-slash:before { + content: "\a1532"; +} +.sh-thinfa-cloud-plus:before { + content: "\a1531"; +} +.sh-thinfa-cloud-minus:before { + content: "\a1530"; +} +.sh-thinfa-cloud-check:before { + content: "\a1529"; +} +.sh-thinfa-walkie-talkie:before { + content: "\a1528"; +} +.sh-thinfa-voicemail:before { + content: "\a1527"; +} +.sh-thinfa-video-plus:before { + content: "\a1526"; +} +.sh-thinfa-tower-cell:before { + content: "\a1525"; +} +.sh-thinfa-symbols:before { + content: "\a1524"; +} +.sh-thinfa-square-quote:before { + content: "\a1523"; +} +.sh-thinfa-square-phone-hangup:before { + content: "\a1522"; +} +.sh-thinfa-poo:before { + content: "\a1521"; +} +.sh-thinfa-phone-xmark:before { + content: "\a1520"; +} +.sh-thinfa-phone-plus:before { + content: "\a1519"; +} +.sh-thinfa-phone-missed:before { + content: "\a1518"; +} +.sh-thinfa-phone-hangup:before { + content: "\a1517"; +} +.sh-thinfa-phone-arrow-up-right:before { + content: "\a1516"; +} +.sh-thinfa-phone-arrow-right:before { + content: "\a1515"; +} +.sh-thinfa-phone-arrow-down-left:before { + content: "\a1514"; +} +.sh-thinfa-paper-plane-top:before { + content: "\a1513"; +} +.sh-thinfa-mobile-screen-button:before { + content: "\a1512"; +} +.sh-thinfa-mobile-screen:before { + content: "\a1511"; +} +.sh-thinfa-mobile-retro:before { + content: "\a1510"; +} +.sh-thinfa-mobile-notch:before { + content: "\a1509"; +} +.sh-thinfa-mobile-button:before { + content: "\a1508"; +} +.sh-thinfa-message-xmark:before { + content: "\a1507"; +} +.sh-thinfa-message-text:before { + content: "\a1506"; +} +.sh-thinfa-messages-question:before { + content: "\a1505"; +} +.sh-thinfa-message-sms:before { + content: "\a1504"; +} +.sh-thinfa-message-smile:before { + content: "\a1503"; +} +.sh-thinfa-message-slash:before { + content: "\a1502"; +} +.sh-thinfa-messages:before { + content: "\a1501"; +} +.sh-thinfa-message-quote:before { + content: "\a1500"; +} +.sh-thinfa-message-question:before { + content: "\a1499"; +} +.sh-thinfa-message-plus:before { + content: "\a1498"; +} +.sh-thinfa-message-pen:before { + content: "\a1497"; +} +.sh-thinfa-message-minus:before { + content: "\a1496"; +} +.sh-thinfa-message-middle-top:before { + content: "\a1495"; +} +.sh-thinfa-message-middle:before { + content: "\a1494"; +} +.sh-thinfa-message-medical:before { + content: "\a1493"; +} +.sh-thinfa-message-lines:before { + content: "\a1492"; +} +.sh-thinfa-message-image:before { + content: "\a1491"; +} +.sh-thinfa-message-heart:before { + content: "\a1490"; +} +.sh-thinfa-message-dots:before { + content: "\a1489"; +} +.sh-thinfa-message-code:before { + content: "\a1488"; +} +.sh-thinfa-message-check:before { + content: "\a1487"; +} +.sh-thinfa-message-bot:before { + content: "\a1486"; +} +.sh-thinfa-message-arrow-up-right:before { + content: "\a1485"; +} +.sh-thinfa-message-arrow-up:before { + content: "\a1484"; +} +.sh-thinfa-message-arrow-down:before { + content: "\a1483"; +} +.sh-thinfa-message:before { + content: "\a1482"; +} +.sh-thinfa-mailbox-flag-up:before { + content: "\a1481"; +} +.sh-thinfa-mailbox:before { + content: "\a1480"; +} +.sh-thinfa-icons:before { + content: "\a1479"; +} +.sh-thinfa-hundred-points:before { + content: "\a1478"; +} +.sh-thinfa-face-smile-plus:before { + content: "\a1477"; +} +.sh-thinfa-face-awesome:before { + content: "\a1476"; +} +.sh-thinfa-crystal-ball:before { + content: "\a1475"; +} +.sh-thinfa-comment-xmark:before { + content: "\a1474"; +} +.sh-thinfa-comment-text:before { + content: "\a1473"; +} +.sh-thinfa-comments-question-check:before { + content: "\a1472"; +} +.sh-thinfa-comments-question:before { + content: "\a1471"; +} +.sh-thinfa-comment-sms:before { + content: "\a1470"; +} +.sh-thinfa-comment-smile:before { + content: "\a1469"; +} +.sh-thinfa-comment-slash:before { + content: "\a1468"; +} +.sh-thinfa-comment-quote:before { + content: "\a1467"; +} +.sh-thinfa-comment-question:before { + content: "\a1466"; +} +.sh-thinfa-comment-plus:before { + content: "\a1465"; +} +.sh-thinfa-comment-pen:before { + content: "\a1464"; +} +.sh-thinfa-comment-music:before { + content: "\a1463"; +} +.sh-thinfa-comment-minus:before { + content: "\a1462"; +} +.sh-thinfa-comment-middle-top:before { + content: "\a1461"; +} +.sh-thinfa-comment-middle:before { + content: "\a1460"; +} +.sh-thinfa-comment-medical:before { + content: "\a1459"; +} +.sh-thinfa-comment-lines:before { + content: "\a1458"; +} +.sh-thinfa-comment-image:before { + content: "\a1457"; +} +.sh-thinfa-comment-heart:before { + content: "\a1456"; +} +.sh-thinfa-comment-code:before { + content: "\a1455"; +} +.sh-thinfa-comment-check:before { + content: "\a1454"; +} +.sh-thinfa-comment-arrow-up-right:before { + content: "\a1453"; +} +.sh-thinfa-comment-arrow-up:before { + content: "\a1452"; +} +.sh-thinfa-comment-arrow-down:before { + content: "\a1451"; +} +.sh-thinfa-circle-phone-hangup:before { + content: "\a1450"; +} +.sh-thinfa-circle-phone-flip:before { + content: "\a1449"; +} +.sh-thinfa-circle-phone:before { + content: "\a1448"; +} +.sh-thinfa-circle-envelope:before { + content: "\a1447"; +} +.sh-thinfa-blender-phone:before { + content: "\a1446"; +} +.sh-thinfa-wrench-simple:before { + content: "\a1445"; +} +.sh-thinfa-window-flip:before { + content: "\a1444"; +} +.sh-thinfa-window:before { + content: "\a1443"; +} +.sh-thinfa-webhook:before { + content: "\a1442"; +} +.sh-thinfa-sidebar-flip:before { + content: "\a1441"; +} +.sh-thinfa-sidebar:before { + content: "\a1440"; +} +.sh-thinfa-rectangle-xmark:before { + content: "\a1439"; +} +.sh-thinfa-notdef:before { + content: "\a1438"; +} +.sh-thinfa-laptop-mobile:before { + content: "\a1437"; +} +.sh-thinfa-laptop-code:before { + content: "\a1436"; +} +.sh-thinfa-key-skeleton-left-right:before { + content: "\a1435"; +} +.sh-thinfa-code-pull-request-draft:before { + content: "\a1434"; +} +.sh-thinfa-code-pull-request-closed:before { + content: "\a1433"; +} +.sh-thinfa-code-pull-request:before { + content: "\a1432"; +} +.sh-thinfa-code-merge:before { + content: "\a1431"; +} +.sh-thinfa-code-compare:before { + content: "\a1430"; +} +.sh-thinfa-code-commit:before { + content: "\a1429"; +} +.sh-thinfa-circle-nodes:before { + content: "\a1428"; +} +.sh-thinfa-bug-slash:before { + content: "\a1427"; +} +.sh-thinfa-browsers:before { + content: "\a1426"; +} +.sh-thinfa-browser:before { + content: "\a1425"; +} +.sh-thinfa-brain-circuit:before { + content: "\a1424"; +} +.sh-thinfa-brackets-square:before { + content: "\a1423"; +} +.sh-thinfa-brackets-round:before { + content: "\a1422"; +} +.sh-thinfa-bracket-square-right:before { + content: "\a1421"; +} +.sh-thinfa-bracket-square:before { + content: "\a1420"; +} +.sh-thinfa-brackets-curly:before { + content: "\a1419"; +} +.sh-thinfa-bracket-round-right:before { + content: "\a1418"; +} +.sh-thinfa-bracket-round:before { + content: "\a1417"; +} +.sh-thinfa-bracket-curly-right:before { + content: "\a1416"; +} +.sh-thinfa-bracket-curly:before { + content: "\a1415"; +} +.sh-thinfa-binary-slash:before { + content: "\a1414"; +} +.sh-thinfa-binary-lock:before { + content: "\a1413"; +} +.sh-thinfa-binary-circle-check:before { + content: "\a1412"; +} +.sh-thinfa-binary:before { + content: "\a1411"; +} +.sh-thinfa-bars-sort:before { + content: "\a1410"; +} +.sh-thinfa-bars-filter:before { + content: "\a1409"; +} +.sh-thinfa-ban-bug:before { + content: "\a1408"; +} +.sh-thinfa-vest-patches:before { + content: "\a1407"; +} +.sh-thinfa-vest:before { + content: "\a1406"; +} +.sh-thinfa-user-tie:before { + content: "\a1405"; +} +.sh-thinfa-uniform-martial-arts:before { + content: "\a1404"; +} +.sh-thinfa-sunglasses:before { + content: "\a1403"; +} +.sh-thinfa-stocking:before { + content: "\a1402"; +} +.sh-thinfa-ski-boot:before { + content: "\a1401"; +} +.sh-thinfa-shoe-prints:before { + content: "\a1400"; +} +.sh-thinfa-shirt-tank-top:before { + content: "\a1399"; +} +.sh-thinfa-shirt-running:before { + content: "\a1398"; +} +.sh-thinfa-shirt-long-sleeve:before { + content: "\a1397"; +} +.sh-thinfa-shirt:before { + content: "\a1396"; +} +.sh-thinfa-scarf:before { + content: "\a1395"; +} +.sh-thinfa-reel:before { + content: "\a1394"; +} +.sh-thinfa-pipe-smoking:before { + content: "\a1393"; +} +.sh-thinfa-mustache:before { + content: "\a1392"; +} +.sh-thinfa-ice-skate:before { + content: "\a1391"; +} +.sh-thinfa-hood-cloak:before { + content: "\a1390"; +} +.sh-thinfa-hat-wizard:before { + content: "\a1389"; +} +.sh-thinfa-hat-witch:before { + content: "\a1388"; +} +.sh-thinfa-hat-winter:before { + content: "\a1387"; +} +.sh-thinfa-hat-santa:before { + content: "\a1386"; +} +.sh-thinfa-hat-cowboy-side:before { + content: "\a1385"; +} +.sh-thinfa-hat-cowboy:before { + content: "\a1384"; +} +.sh-thinfa-ear-muffs:before { + content: "\a1383"; +} +.sh-thinfa-boot-heeled:before { + content: "\a1382"; +} +.sh-thinfa-tricycle:before { + content: "\a1381"; +} +.sh-thinfa-thought-bubble:before { + content: "\a1380"; +} +.sh-thinfa-soft-serve:before { + content: "\a1379"; +} +.sh-thinfa-snowman-head:before { + content: "\a1378"; +} +.sh-thinfa-snowman:before { + content: "\a1377"; +} +.sh-thinfa-shapes:before { + content: "\a1376"; +} +.sh-thinfa-robot:before { + content: "\a1375"; +} +.sh-thinfa-pretzel:before { + content: "\a1374"; +} +.sh-thinfa-popsicle:before { + content: "\a1373"; +} +.sh-thinfa-pool-8-ball:before { + content: "\a1372"; +} +.sh-thinfa-pinata:before { + content: "\a1371"; +} +.sh-thinfa-person-sledding:before { + content: "\a1370"; +} +.sh-thinfa-person-breastfeeding:before { + content: "\a1369"; +} +.sh-thinfa-person-biking:before { + content: "\a1368"; +} +.sh-thinfa-mitten:before { + content: "\a1367"; +} +.sh-thinfa-lollipop:before { + content: "\a1366"; +} +.sh-thinfa-ice-cream:before { + content: "\a1365"; +} +.sh-thinfa-gun-squirt:before { + content: "\a1364"; +} +.sh-thinfa-globe-snow:before { + content: "\a1363"; +} +.sh-thinfa-game-console-handheld:before { + content: "\a1362"; +} +.sh-thinfa-family-pants:before { + content: "\a1361"; +} +.sh-thinfa-family-dress:before { + content: "\a1360"; +} +.sh-thinfa-family:before { + content: "\a1359"; +} +.sh-thinfa-cupcake:before { + content: "\a1358"; +} +.sh-thinfa-cubes-stacked:before { + content: "\a1357"; +} +.sh-thinfa-cookie-bite:before { + content: "\a1356"; +} +.sh-thinfa-children:before { + content: "\a1355"; +} +.sh-thinfa-child-reaching:before { + content: "\a1354"; +} +.sh-thinfa-candy-bar:before { + content: "\a1353"; +} +.sh-thinfa-candy:before { + content: "\a1352"; +} +.sh-thinfa-cake-slice:before { + content: "\a1351"; +} +.sh-thinfa-bowl-soft-serve:before { + content: "\a1350"; +} +.sh-thinfa-block-question:before { + content: "\a1349"; +} +.sh-thinfa-block:before { + content: "\a1348"; +} +.sh-thinfa-basketball-hoop:before { + content: "\a1347"; +} +.sh-thinfa-baseball-bat-ball:before { + content: "\a1346"; +} +.sh-thinfa-ball-pile:before { + content: "\a1345"; +} +.sh-thinfa-balloons:before { + content: "\a1344"; +} +.sh-thinfa-balloon:before { + content: "\a1343"; +} +.sh-thinfa-baby-carriage:before { + content: "\a1342"; +} +.sh-thinfa-baby:before { + content: "\a1341"; +} +.sh-thinfa-apple-whole:before { + content: "\a1340"; +} +.sh-thinfa-diagram-successor:before { + content: "\a1339"; +} +.sh-thinfa-diagram-subtask:before { + content: "\a1338"; +} +.sh-thinfa-diagram-sankey:before { + content: "\a1337"; +} +.sh-thinfa-diagram-project:before { + content: "\a1336"; +} +.sh-thinfa-diagram-previous:before { + content: "\a1335"; +} +.sh-thinfa-diagram-predecessor:before { + content: "\a1334"; +} +.sh-thinfa-diagram-next:before { + content: "\a1333"; +} +.sh-thinfa-diagram-nested:before { + content: "\a1332"; +} +.sh-thinfa-diagram-lean-canvas:before { + content: "\a1331"; +} +.sh-thinfa-diagram-cells:before { + content: "\a1330"; +} +.sh-thinfa-circle-three-quarters-stroke:before { + content: "\a1329"; +} +.sh-thinfa-circle-quarter-stroke:before { + content: "\a1328"; +} +.sh-thinfa-circle-half-stroke:before { + content: "\a1327"; +} +.sh-thinfa-chart-waterfall:before { + content: "\a1326"; +} +.sh-thinfa-chart-scatter-bubble:before { + content: "\a1325"; +} +.sh-thinfa-chart-scatter-3d:before { + content: "\a1324"; +} +.sh-thinfa-chart-scatter:before { + content: "\a1323"; +} +.sh-thinfa-chart-radar:before { + content: "\a1322"; +} +.sh-thinfa-chart-network:before { + content: "\a1321"; +} +.sh-thinfa-chart-mixed:before { + content: "\a1320"; +} +.sh-thinfa-chart-gantt:before { + content: "\a1319"; +} +.sh-thinfa-chart-candlestick:before { + content: "\a1318"; +} +.sh-thinfa-chart-bullet:before { + content: "\a1317"; +} +.sh-thinfa-chart-bar:before { + content: "\a1316"; +} +.sh-thinfa-square-heart:before { + content: "\a1315"; +} +.sh-thinfa-square-dollar:before { + content: "\a1314"; +} +.sh-thinfa-seedling:before { + content: "\a1313"; +} +.sh-thinfa-ribbon:before { + content: "\a1312"; +} +.sh-thinfa-piggy-bank:before { + content: "\a1311"; +} +.sh-thinfa-parachute-box:before { + content: "\a1310"; +} +.sh-thinfa-leaf-heart:before { + content: "\a1309"; +} +.sh-thinfa-house-heart:before { + content: "\a1308"; +} +.sh-thinfa-house-chimney-heart:before { + content: "\a1307"; +} +.sh-thinfa-hands-holding-heart:before { + content: "\a1306"; +} +.sh-thinfa-hands-holding-dollar:before { + content: "\a1305"; +} +.sh-thinfa-hands-holding-circle:before { + content: "\a1304"; +} +.sh-thinfa-hands-holding-child:before { + content: "\a1303"; +} +.sh-thinfa-hand-holding-heart:before { + content: "\a1302"; +} +.sh-thinfa-hand-holding-hand:before { + content: "\a1301"; +} +.sh-thinfa-hand-holding-droplet:before { + content: "\a1300"; +} +.sh-thinfa-hand-holding-dollar:before { + content: "\a1299"; +} +.sh-thinfa-hand-heart:before { + content: "\a1298"; +} +.sh-thinfa-circle-heart:before { + content: "\a1297"; +} +.sh-thinfa-circle-dollar-to-slot:before { + content: "\a1296"; +} +.sh-thinfa-circle-dollar:before { + content: "\a1295"; +} +.sh-thinfa-box-heart:before { + content: "\a1294"; +} +.sh-thinfa-box-dollar:before { + content: "\a1293"; +} +.sh-thinfa-book-heart:before { + content: "\a1292"; +} +.sh-thina-hand-holding-seedling:before { + content: "\a1291"; +} +.sh-thinfa-trees:before { + content: "\a1290"; +} +.sh-thinfa-tree-large:before { + content: "\a1289"; +} +.sh-thinfa-tree-deciduous:before { + content: "\a1288"; +} +.sh-thinfa-toilet-paper-blank:before { + content: "\a1287"; +} +.sh-thinfa-toilet-paper:before { + content: "\a1286"; +} +.sh-thinfa-tarp-droplet:before { + content: "\a1285"; +} +.sh-thinfa-tarp:before { + content: "\a1284"; +} +.sh-thinfa-table-picnic:before { + content: "\a1283"; +} +.sh-thinfa-sunset:before { + content: "\a1282"; +} +.sh-thinfa-sunrise:before { + content: "\a1281"; +} +.sh-thinfa-shovel:before { + content: "\a1280"; +} +.sh-thinfa-shish-kebab:before { + content: "\a1279"; +} +.sh-thinfa-route:before { + content: "\a1278"; +} +.sh-thinfa-pickaxe:before { + content: "\a1277"; +} +.sh-thinfa-person-shelter:before { + content: "\a1276"; +} +.sh-thinfa-person-hiking:before { + content: "\a1275"; +} +.sh-thinfa-person-biking-mountain:before { + content: "\a1274"; +} +.sh-thinfa-people-roof:before { + content: "\a1273"; +} +.sh-thinfa-mountain-sun:before { + content: "\a1272"; +} +.sh-thinfa-mountains:before { + content: "\a1271"; +} +.sh-thinfa-mountain:before { + content: "\a1270"; +} +.sh-thinfa-mosquito-net:before { + content: "\a1269"; +} +.sh-thinfa-mattress-pillow:before { + content: "\a1268"; +} +.sh-thinfa-map-location-dot:before { + content: "\a1267"; +} +.sh-thinfa-map-location:before { + content: "\a1266"; +} +.sh-thinfa-grill-hot:before { + content: "\a1265"; +} +.sh-thinfa-grill-fire:before { + content: "\a1264"; +} +.sh-thinfa-grill:before { + content: "\a1263"; +} +.sh-thinfa-fishing-rod:before { + content: "\a1262"; +} +.sh-thinfa-fire-smoke:before { + content: "\a1261"; +} +.sh-thinfa-fire-flame-curved:before { + content: "\a1260"; +} +.sh-thinfa-fire-burner:before { + content: "\a1259"; +} +.sh-thinfa-faucet-drip:before { + content: "\a1258"; +} +.sh-thinfa-faucet:before { + content: "\a1257"; +} +.sh-thinfa-cauldron:before { + content: "\a1256"; +} +.sh-thinfa-campfire:before { + content: "\a1255"; +} +.sh-thinfa-bucket:before { + content: "\a1254"; +} +.sh-thinfa-bottle-water:before { + content: "\a1253"; +} +.sh-thinfa-boot:before { + content: "\a1252"; +} +.sh-thinfa-bench-tree:before { + content: "\a1251"; +} +.sh-thinfa-backpack:before { + content: "\a1250"; +} +.sh-thinfa-axe:before { + content: "\a1249"; +} +.sh-thinfa-acorn:before { + content: "\a1248"; +} +.sh-thinfa-wallet:before { + content: "\a1247"; +} +.sh-thinfa-vault:before { + content: "\a1246"; +} +.sh-thinfa-user-tie-hair-long:before { + content: "\a1245"; +} +.sh-thinfa-user-tie-hair:before { + content: "\a1244"; +} +.sh-thinfa-user-hair-mullet:before { + content: "\a1243"; +} +.sh-thinfa-timeline-arrow:before { + content: "\a1242"; +} +.sh-thinfa-timeline:before { + content: "\a1241"; +} +.sh-thinfa-table-tree:before { + content: "\a1240"; +} +.sh-thinfa-table-rows:before { + content: "\a1239"; +} +.sh-thinfa-table-pivot:before { + content: "\a1238"; +} +.sh-thinfa-table-layout:before { + content: "\a1237"; +} +.sh-thinfa-stapler:before { + content: "\a1236"; +} +.sh-thinfa-square-poll-vertical:before { + content: "\a1235"; +} +.sh-thinfa-square-poll-horizontal:before { + content: "\a1234"; +} +.sh-thinfa-square-phone-flip:before { + content: "\a1233"; +} +.sh-thinfa-square-pen:before { + content: "\a1232"; +} +.sh-thinfa-square-kanban:before { + content: "\a1231"; +} +.sh-thinfa-socks:before { + content: "\a1230"; +} +.sh-thinfa-slot-machine:before { + content: "\a1229"; +} +.sh-thinfa-signature-slash:before { + content: "\a1228"; +} +.sh-thinfa-signature-lock:before { + content: "\a1227"; +} +.sh-thinfa-signature:before { + content: "\a1226"; +} +.sh-thinfa-shredder:before { + content: "\a1225"; +} +.sh-thinfa-scanner-image:before { + content: "\a1224"; +} +.sh-thinfa-scale-unbalanced-flip:before { + content: "\a1223"; +} +.sh-thinfa-scale-unbalanced:before { + content: "\a1222"; +} +.sh-thinfa-router:before { + content: "\a1221"; +} +.sh-thinfa-rectangle-pro:before { + content: "\a1220"; +} +.sh-thinfa-projector:before { + content: "\a1219"; +} +.sh-thinfa-print-slash:before { + content: "\a1218"; +} +.sh-thinfa-print-magnifying-glass:before { + content: "\a1217"; +} +.sh-thinfa-presentation-screen:before { + content: "\a1216"; +} +.sh-thinfa-podium:before { + content: "\a1215"; +} +.sh-thinfa-phone-slash:before { + content: "\a1214"; +} +.sh-thinfa-phone-office:before { + content: "\a1213"; +} +.sh-thinfa-phone-intercom:before { + content: "\a1212"; +} +.sh-thinfa-person-chalkboard:before { + content: "\a1211"; +} +.sh-thinfa-pen-nib-slash:before { + content: "\a1210"; +} +.sh-thinfa-pen-nib:before { + content: "\a1209"; +} +.sh-thinfa-pen-fancy:before { + content: "\a1208"; +} +.sh-thinfa-pen-clip:before { + content: "\a1207"; +} +.sh-thinfa-pen:before { + content: "\a1206"; +} +.sh-thinfa-paperclip-vertical:before { + content: "\a1205"; +} +.sh-thinfa-notebook:before { + content: "\a1204"; +} +.sh-thinfa-network-wired:before { + content: "\a1203"; +} +.sh-thinfa-money-check-pen:before { + content: "\a1202"; +} +.sh-thinfa-money-check-dollar-pen:before { + content: "\a1201"; +} +.sh-thinfa-marker:before { + content: "\a1200"; +} +.sh-thinfa-magnifying-glass-chart:before { + content: "\a1199"; +} +.sh-thinfa-magnifying-glass-arrow-right:before { + content: "\a1198"; +} +.sh-thinfa-list-tree:before { + content: "\a1197"; +} +.sh-thinfa-list-timeline:before { + content: "\a1196"; +} +.sh-thinfa-list-radio:before { + content: "\a1195"; +} +.sh-thinfa-list-dropdown:before { + content: "\a1194"; +} +.sh-thinfa-list-check:before { + content: "\a1193"; +} +.sh-thinfa-laptop-file:before { + content: "\a1192"; +} +.sh-thinfa-lamp-desk:before { + content: "\a1191"; +} +.sh-thinfa-keynote:before { + content: "\a1190"; +} +.sh-thinfa-inbox-full:before { + content: "\a1189"; +} +.sh-thinfa-inboxes:before { + content: "\a1188"; +} +.sh-thinfa-house-laptop:before { + content: "\a1187"; +} +.sh-thinfa-highlighter:before { + content: "\a1186"; +} +.sh-thinfa-globe-alt:before { + content: "\a1185"; +} +.sh-thinfa-glasses:before { + content: "\a1184"; +} +.sh-thinfa-folder-xmark:before { + content: "\a1183"; +} +.sh-thinfa-folder-tree:before { + content: "\a1182"; +} +.sh-thinfa-folder-plus:before { + content: "\a1181"; +} +.sh-thinfa-folder-minus:before { + content: "\a1180"; +} +.sh-thinfa-folder-arrow-up:before { + content: "\a1179"; +} +.sh-thinfa-folder-arrow-down:before { + content: "\a1178"; +} +.sh-thinfa-floppy-disk-circle-xmark:before { + content: "\a1177"; +} +.sh-thinfa-floppy-disk-circle-arrow-right:before { + content: "\a1176"; +} +.sh-thinfa-file-user:before { + content: "\a1175"; +} +.sh-thinfa-file-spreadsheet:before { + content: "\a1174"; +} +.sh-thinfa-file-circle-plus:before { + content: "\a1173"; +} +.sh-thinfa-file-circle-info:before { + content: "\a1172"; +} +.sh-thinfa-file-chart-pie:before { + content: "\a1171"; +} +.sh-thinfa-file-chart-column:before { + content: "\a1170"; +} +.sh-thinfa-envelopes:before { + content: "\a1169"; +} +.sh-thinfa-envelope-dot:before { + content: "\a1168"; +} +.sh-thinfa-envelope-circle-check:before { + content: "\a1167"; +} +.sh-thinfa-diagram-venn:before { + content: "\a1166"; +} +.sh-thinfa-computer-classic:before { + content: "\a1165"; +} +.sh-thinfa-coffee-pot:before { + content: "\a1164"; +} +.sh-thinfa-cloud-word:before { + content: "\a1163"; +} +.sh-thinfa-clipboard-question:before { + content: "\a1162"; +} +.sh-thinfa-chart-user:before { + content: "\a1161"; +} +.sh-thinfa-chart-tree-map:before { + content: "\a1160"; +} +.sh-thinfa-chart-simple-horizontal:before { + content: "\a1159"; +} +.sh-thinfa-chart-simple:before { + content: "\a1158"; +} +.sh-thinfa-chart-pyramid:before { + content: "\a1157"; +} +.sh-thinfa-chart-pie-simple:before { + content: "\a1156"; +} +.sh-thinfa-chart-line-up:before { + content: "\a1155"; +} +.sh-thinfa-chart-line-down:before { + content: "\a1154"; +} +.sh-thinfa-cabinet-filing:before { + content: "\a1153"; +} +.sh-thinfa-business-time:before { + content: "\a1152"; +} +.sh-thinfa-briefcase-blank:before { + content: "\a1151"; +} +.sh-thinfa-briefcase-arrow-right:before { + content: "\a1150"; +} +.sh-thinfa-brain-arrow-curved-right:before { + content: "\a1149"; +} +.sh-thinfa-boxes-packing:before { + content: "\a1148"; +} +.sh-thinfa-book-section:before { + content: "\a1147"; +} +.sh-thinfa-bars-staggered:before { + content: "\a1146"; +} +.sh-thinfa-bars-progress:before { + content: "\a1145"; +} +.sh-thinfa-badge-percent:before { + content: "\a1144"; +} +.sh-thinfa-badge-dollar:before { + content: "\a1143"; +} +.sh-thinfa-badge-check:before { + content: "\a1142"; +} +.sh-thinfa-badge:before { + content: "\a1141"; +} +.sh-thinfa-warehouse-full:before { + content: "\a1140"; +} +.sh-thinfa-warehouse:before { + content: "\a1139"; +} +.sh-thinfa-vihara:before { + content: "\a1138"; +} +.sh-thinfa-tree-city:before { + content: "\a1137"; +} +.sh-thinfa-tower-observation:before { + content: "\a1136"; +} +.sh-thinfa-torii-gate:before { + content: "\a1135"; +} +.sh-thinfa-toilets-portable:before { + content: "\a1134"; +} +.sh-thinfa-toilet-portable:before { + content: "\a1133"; +} +.sh-thinfa-tents:before { + content: "\a1132"; +} +.sh-thinfa-tent-arrow-turn-left:before { + content: "\a1131"; +} +.sh-thinfa-tent-arrows-down:before { + content: "\a1130"; +} +.sh-thinfa-tent-arrow-left-right:before { + content: "\a1129"; +} +.sh-thinfa-tent-arrow-down-to-line:before { + content: "\a1128"; +} +.sh-thinfa-tent:before { + content: "\a1127"; +} +.sh-thinfa-synagogue:before { + content: "\a1126"; +} +.sh-thinfa-store-lock:before { + content: "\a1125"; +} +.sh-thinfa-store:before { + content: "\a1124"; +} +.sh-thinfa-shop-lock:before { + content: "\a1123"; +} +.sh-thinfa-shop:before { + content: "\a1122"; +} +.sh-thinfa-school-lock:before { + content: "\a1121"; +} +.sh-thinfa-school-flag:before { + content: "\a1120"; +} +.sh-thinfa-school-circle-xmark:before { + content: "\a1119"; +} +.sh-thinfa-school-circle-exclamation:before { + content: "\a1118"; +} +.sh-thinfa-school-circle-check:before { + content: "\a1117"; +} +.sh-thinfa-school:before { + content: "\a1116"; +} +.sh-thinfa-roller-coaster:before { + content: "\a1115"; +} +.sh-thinfa-place-of-worship:before { + content: "\a1114"; +} +.sh-thinfa-oil-well:before { + content: "\a1113"; +} +.sh-thinfa-mountain-city:before { + content: "\a1112"; +} +.sh-thinfa-mosque:before { + content: "\a1111"; +} +.sh-thinfa-monument:before { + content: "\a1110"; +} +.sh-thinfa-landmark-flag:before { + content: "\a1109"; +} +.sh-thinfa-landmark-dome:before { + content: "\a1108"; +} +.sh-thinfa-landmark:before { + content: "\a1107"; +} +.sh-thinfa-kaaba:before { + content: "\a1106"; +} +.sh-thinfa-igloo:before { + content: "\a1105"; +} +.sh-thinfa-house-window:before { + content: "\a1104"; +} +.sh-thinfa-house-water:before { + content: "\a1103"; +} +.sh-thinfa-house-turret:before { + content: "\a1102"; +} +.sh-thinfa-house-tree:before { + content: "\a1101"; +} +.sh-thinfa-house-night:before { + content: "\a1100"; +} +.sh-thinfa-house-medical-flag:before { + content: "\a1099"; +} +.sh-thinfa-house-medical-circle-xmark:before { + content: "\a1098"; +} +.sh-thinfa-house-medical-circle-exclamation:before { + content: "\a1097"; +} +.sh-thinfa-house-medical-circle-check:before { + content: "\a1096"; +} +.sh-thinfa-house-medical:before { + content: "\a1095"; +} +.sh-thinfa-house-lock:before { + content: "\a1094"; +} +.sh-thinfa-house-flag:before { + content: "\a1093"; +} +.sh-thinfa-house-fire:before { + content: "\a1092"; +} +.sh-thinfa-house-day:before { + content: "\a1091"; +} +.sh-thinfa-house-crack:before { + content: "\a1090"; +} +.sh-thinfa-house-circle-xmark:before { + content: "\a1089"; +} +.sh-thinfa-house-circle-exclamation:before { + content: "\a1088"; +} +.sh-thinfa-house-circle-check:before { + content: "\a1087"; +} +.sh-thinfa-house-chimney-window:before { + content: "\a1086"; +} +.sh-thinfa-house-chimney-medical:before { + content: "\a1085"; +} +.sh-thinfa-house-chimney-crack:before { + content: "\a1084"; +} +.sh-thinfa-house-chimney-blank:before { + content: "\a1083"; +} +.sh-thinfa-house-chimney:before { + content: "\a1082"; +} +.sh-thinfa-house-building:before { + content: "\a1081"; +} +.sh-thinfa-house-blank:before { + content: "\a1080"; +} +.sh-thinfa-hotel1:before { + content: "\a1079"; +} +.sh-thinfa-hospital-user:before { + content: "\a1078"; +} +.sh-thinfa-hospitals:before { + content: "\a1077"; +} +.sh-thinfa-gopuram:before { + content: "\a1076"; +} +.sh-thinfa-fort:before { + content: "\a1075"; +} +.sh-thinfa-ferris-wheel:before { + content: "\a1074"; +} +.sh-thinfa-fence:before { + content: "\a1073"; +} +.sh-thinfa-farm:before { + content: "\a1072"; +} +.sh-thinfa-dungeon:before { + content: "\a1071"; +} +.sh-thinfa-container-storage:before { + content: "\a1070"; +} +.sh-thinfa-city:before { + content: "\a1069"; +} +.sh-thinfa-church:before { + content: "\a1068"; +} +.sh-thinfa-chimney:before { + content: "\a1067"; +} +.sh-thinfa-castle:before { + content: "\a1066"; +} +.sh-thinfa-campground:before { + content: "\a1065"; +} +.sh-thinfa-cabin:before { + content: "\a1064"; +} +.sh-thinfa-building-wheat:before { + content: "\a1063"; +} +.sh-thinfa-building-user:before { + content: "\a1062"; +} +.sh-thinfa-building-un:before { + content: "\a1061"; +} +.sh-thinfa-building-shield:before { + content: "\a1060"; +} +.sh-thinfa-buildings:before { + content: "\a1059"; +} +.sh-thinfa-building-ngo:before { + content: "\a1058"; +} +.sh-thinfa-building-lock:before { + content: "\a1057"; +} +.sh-thinfa-building-flag:before { + content: "\a1056"; +} +.sh-thinfa-building-circle-xmark:before { + content: "\a1055"; +} +.sh-thinfa-building-circle-exclamation:before { + content: "\a1054"; +} +.sh-thinfa-building-circle-check:before { + content: "\a1053"; +} +.sh-thinfa-building-circle-arrow-right:before { + content: "\a1052"; +} +.sh-thinfa-bridge-suspension:before { + content: "\a1051"; +} +.sh-thinfa-arrow-right-to-city:before { + content: "\a1050"; +} +.sh-thinfa-archway:before { + content: "\a1049"; +} +.sh-thinfa-apartment:before { + content: "\a1048"; +} +.sh-thinfa-stars:before { + content: "\a1047"; +} +.sh-thinfa-telescope:before { + content: "\a1046"; +} +.sh-thinfa-user-astronaut:before { + content: "\a1045"; +} +.sh-thinfa-user-alien:before { + content: "\a1044"; +} +.sh-thinfa-ufo-beam:before { + content: "\a1043"; +} +.sh-thinfa-ufo:before { + content: "\a1042"; +} +.sh-thinfa-star-shooting:before { + content: "\a1041"; +} +.sh-thinfa-solar-system:before { + content: "\a1040"; +} +.sh-thinfa-satellite-dish:before { + content: "\a1039"; +} +.sh-thinfa-satellite:before { + content: "\a1038"; +} +.sh-thinfa-radar:before { + content: "\a1037"; +} +.sh-thinfa-planet-ringed:before { + content: "\a1036"; +} +.sh-thinfa-planet-moon:before { + content: "\a1035"; +} +.sh-thinfa-moon-stars:before { + content: "\a1034"; +} +.sh-thinfa-moon-over-sun:before { + content: "\a1033"; +} +.sh-thinfa-meteor:before { + content: "\a1032"; +} +.sh-thinfa-galaxy:before { + content: "\a1031"; +} +.sh-thinfa-eclipse:before { + content: "\a1030"; +} +.sh-thinfa-comet:before { + content: "\a1029"; +} +.sh-thinfa-alien:before { + content: "\a1028"; +} +.sh-thinfa-up-to-line:before { + content: "\a1027"; +} +.sh-thinfa-up-to-dotted-line:before { + content: "\a1026"; +} +.sh-thinfa-up-right-and-down-left-from-center:before { + content: "\a1025"; +} +.sh-thinfa-up-right:before { + content: "\a1024"; +} +.sh-thinfa-up-long:before { + content: "\a1023"; +} +.sh-thinfa-up-left:before { + content: "\a1022"; +} +.sh-thinfa-up-from-dotted-line:before { + content: "\a1021"; +} +.sh-thinfa-up-from-bracket:before { + content: "\a1020"; +} +.sh-thinfa-up:before { + content: "\a1019"; +} +.sh-thinfa-turn-down-right:before { + content: "\a1018"; +} +.sh-thinfa-turn-down-left:before { + content: "\a1017"; +} +.sh-thinfa-square-up-right:before { + content: "\a1016"; +} +.sh-thinfa-square-up-left:before { + content: "\a1015"; +} +.sh-thinfa-square-up:before { + content: "\a1014"; +} +.sh-thinfa-square-right:before { + content: "\a1013"; +} +.sh-thinfa-square-left:before { + content: "\a1012"; +} +.sh-thinfa-square-down-right:before { + content: "\a1011"; +} +.sh-thinfa-square-down-left:before { + content: "\a1010"; +} +.sh-thinfa-square-down:before { + content: "\a1009"; +} +.sh-thinfa-square-chevron-up:before { + content: "\a1008"; +} +.sh-thinfa-square-chevron-right:before { + content: "\a1007"; +} +.sh-thinfa-square-chevron-left:before { + content: "\a1006"; +} +.sh-thinfa-square-chevron-down:before { + content: "\a1005"; +} +.sh-thinfa-square-arrow-up-left:before { + content: "\a1004"; +} +.sh-thinfa-square-arrow-up:before { + content: "\a1003"; +} +.sh-thinfa-square-arrow-right:before { + content: "\a1002"; +} +.sh-thinfa-square-arrow-left:before { + content: "\a1001"; +} +.sh-thinfa-square-arrow-down-right:before { + content: "\a1000"; +} +.sh-thinfa-square-arrow-down-left:before { + content: "\a0999"; +} +.sh-thinfa-square-arrow-down:before { + content: "\a0998"; +} +.sh-thinfa-split:before { + content: "\a0997"; +} +.sh-thinfa-share-all:before { + content: "\a0996"; +} +.sh-thinfa-rotate-right-arrow:before { + content: "\a0995"; +} +.sh-thinfa-rotate-left-arrow:before { + content: "\a0994"; +} +.sh-thinfa-right-to-line:before { + content: "\a0993"; +} +.sh-thinfa-right-long-to-line:before { + content: "\a0992"; +} +.sh-thinfa-right-long:before { + content: "\a0991"; +} +.sh-thinfa-right-left:before { + content: "\a0990"; +} +.sh-thinfa-right-from-line:before { + content: "\a0989"; +} +.sh-thinfa-right:before { + content: "\a0988"; +} +.sh-thinfa-repeat-1:before { + content: "\a0987"; +} +.sh-thinfa-merge:before { + content: "\a0986"; +} +.sh-thinfa-left-to-line:before { + content: "\a0985"; +} +.sh-thinfa-left-right:before { + content: "\a0984"; +} +.sh-thinfa-left-long-to-line:before { + content: "\a0983"; +} +.sh-thinfa-left-long:before { + content: "\a0982"; +} +.sh-thinfa-left-from-line:before { + content: "\a0981"; +} +.sh-thinfa-left:before { + content: "\a0980"; +} +.sh-thinfa-inbox-out:before { + content: "\a0979"; +} +.sh-thinfa-inbox-in:before { + content: "\a0978"; +} +.sh-thinfa-down-to-line:before { + content: "\a0977"; +} +.sh-thinfa-down-to-dotted-line:before { + content: "\a0976"; +} +.sh-thinfa-down-to-bracket:before { + content: "\a0975"; +} +.sh-thinfa-down-right:before { + content: "\a0974"; +} +.sh-thinfa-down-long:before { + content: "\a0973"; +} +.sh-thinfa-down-left-and-up-right-to-center:before { + content: "\a0972"; +} +.sh-thinfa-down-left:before { + content: "\a0971"; +} +.sh-thinfa-down-from-line:before { + content: "\a0970"; +} +.sh-thinfa-down-from-dotted-line:before { + content: "\a0969"; +} +.sh-thinfa-down:before { + content: "\a0968"; +} +.sh-thinfa-circle-up-right:before { + content: "\a0967"; +} +.sh-thinfa-circle-up-left:before { + content: "\a0966"; +} +.sh-thinfa-circle-up:before { + content: "\a0965"; +} +.sh-thinfa-circle-right:before { + content: "\a0964"; +} +.sh-thinfa-circle-left:before { + content: "\a0963"; +} +.sh-thinfa-circle-down-right:before { + content: "\a0962"; +} +.sh-thinfa-circle-down-left:before { + content: "\a0961"; +} +.sh-thinfa-circle-down:before { + content: "\a0960"; +} +.sh-thinfa-circle-chevron-up:before { + content: "\a0959"; +} +.sh-thinfa-circle-chevron-right:before { + content: "\a0958"; +} +.sh-thinfa-circle-chevron-left:before { + content: "\a0957"; +} +.sh-thinfa-circle-chevron-down:before { + content: "\a0956"; +} +.sh-thinfa-circle-caret-up:before { + content: "\a0955"; +} +.sh-thinfa-circle-caret-right:before { + content: "\a0954"; +} +.sh-thinfa-circle-caret-left:before { + content: "\a0953"; +} +.sh-thinfa-circle-caret-down:before { + content: "\a0952"; +} +.sh-thinfa-circle-arrow-up-right:before { + content: "\a0951"; +} +.sh-thinfa-circle-arrow-up-left:before { + content: "\a0950"; +} +.sh-thinfa-circle-arrow-down-right:before { + content: "\a0949"; +} +.sh-thinfa-circle-arrow-down-left:before { + content: "\a0948"; +} +.sh-thinfa-arrow-up-z-a:before { + content: "\a0947"; +} +.sh-thinfa-arrow-up-wide-short:before { + content: "\a0946"; +} +.sh-thinfa-arrow-up-triangle-square:before { + content: "\a0945"; +} +.sh-thinfa-arrow-up-to-line:before { + content: "\a0944"; +} +.sh-thinfa-arrow-up-to-dotted-line:before { + content: "\a0943"; +} +.sh-thinfa-arrow-up-square-triangle:before { + content: "\a0942"; +} +.sh-thinfa-arrow-up-small-big:before { + content: "\a0941"; +} +.sh-thinfa-arrow-up-short-wide:before { + content: "\a0940"; +} +.sh-thinfa-arrow-up-right-dots:before { + content: "\a0939"; +} +.sh-thinfa-arrow-up-right:before { + content: "\a0938"; +} +.sh-thinfa-arrow-up-left-from-circle:before { + content: "\a0937"; +} +.sh-thinfa-arrow-up-left:before { + content: "\a0936"; +} +.sh-thinfa-arrow-up-from-square:before { + content: "\a0935"; +} +.sh-thinfa-arrow-up-from-line:before { + content: "\a0934"; +} +.sh-thinfa-arrow-up-from-dotted-line:before { + content: "\a0933"; +} +.sh-thinfa-arrow-up-from-bracket:before { + content: "\a0932"; +} +.sh-thinfa-arrow-up-from-arc:before { + content: "\a0931"; +} +.sh-thinfa-arrow-up-down-left-right:before { + content: "\a0930"; +} +.sh-thinfa-arrow-up-down:before { + content: "\a0929"; +} +.sh-thinfa-arrow-up-big-small:before { + content: "\a0928"; +} +.sh-thinfa-arrow-up-a-z:before { + content: "\a0927"; +} +.sh-thinfa-arrow-up-arrow-down:before { + content: "\a0926"; +} +.sh-thinfa-arrow-up-9-1:before { + content: "\a0925"; +} +.sh-thinfa-arrow-up-1-9:before { + content: "\a0924"; +} +.sh-thinfa-arrow-turn-up:before { + content: "\a0923"; +} +.sh-thinfa-arrow-turn-down-right:before { + content: "\a0922"; +} +.sh-thinfa-arrow-turn-down-left:before { + content: "\a0921"; +} +.sh-thinfa-arrow-turn-down:before { + content: "\a0920"; +} +.sh-thinfa-arrow-trend-up:before { + content: "\a0919"; +} +.sh-thinfa-arrow-trend-down:before { + content: "\a0918"; +} +.sh-thinfa-arrows-up-to-line:before { + content: "\a0917"; +} +.sh-thinfa-arrows-turn-to-dots:before { + content: "\a0916"; +} +.sh-thinfa-arrows-turn-right:before { + content: "\a0915"; +} +.sh-thinfa-arrows-to-line:before { + content: "\a0914"; +} +.sh-thinfa-arrows-to-eye:before { + content: "\a0913"; +} +.sh-thinfa-arrows-to-dotted-line:before { + content: "\a0912"; +} +.sh-thinfa-arrows-to-dot:before { + content: "\a0911"; +} +.sh-thinfa-arrows-to-circle:before { + content: "\a0910"; +} +.sh-thinfa-arrows-split-up-and-left:before { + content: "\a0909"; +} +.sh-thinfa-arrows-spin:before { + content: "\a0908"; +} +.sh-thinfa-arrows-retweet:before { + content: "\a0907"; +} +.sh-thinfa-arrows-repeat:before { + content: "\a0906"; +} +.sh-thinfa-arrows-left-right-to-line:before { + content: "\a0905"; +} +.sh-thinfa-arrows-from-line:before { + content: "\a0904"; +} +.sh-thinfa-arrows-from-dotted-line:before { + content: "\a0903"; +} +.sh-thinfa-arrows-down-to-line:before { + content: "\a0902"; +} +.sh-thinfa-arrows-cross:before { + content: "\a0901"; +} +.sh-thinfa-arrow-rotate:before { + content: "\a0900"; +} +.sh-thinfa-arrow-right-to-line:before { + content: "\a0899"; +} +.sh-thinfa-arrow-right-to-arc:before { + content: "\a0898"; +} +.sh-thinfa-arrow-right-long-to-line:before { + content: "\a0897"; +} +.sh-thinfa-arrow-right-from-line:before { + content: "\a0896"; +} +.sh-thinfa-arrow-right-from-arc:before { + content: "\a0895"; +} +.sh-thinfa-arrow-repeat-1:before { + content: "\a0894"; +} +.sh-thinfa-arrow-maximize:before { + content: "\a0893"; +} +.sh-thinfa-arrow-left-to-line:before { + content: "\a0892"; +} +.sh-thinfa-arrow-left-right:before { + content: "\a0891"; +} +.sh-thinfa-arrow-left-long-to-line:before { + content: "\a0890"; +} +.sh-thinfa-arrow-left-from-line:before { + content: "\a0889"; +} +.sh-thinfa-arrow-down-up-lock:before { + content: "\a0888"; +} +.sh-thinfa-arrow-down-up-across-line:before { + content: "\a0887"; +} +.sh-thinfa-arrow-down-triangle-square:before { + content: "\a0886"; +} +.sh-thinfa-arrow-down-to-square:before { + content: "\a0885"; +} +.sh-thinfa-arrow-down-to-line:before { + content: "\a0884"; +} +.sh-thinfa-arrow-down-to-dotted-line:before { + content: "\a0883"; +} +.sh-thinfa-arrow-down-to-bracket:before { + content: "\a0882"; +} +.sh-thinfa-arrow-down-to-arc:before { + content: "\a0881"; +} +.sh-thinfa-arrow-down-square-triangle:before { + content: "\a0880"; +} +.sh-thinfa-arrow-down-small-big:before { + content: "\a0879"; +} +.sh-thinfa-arrow-down-right:before { + content: "\a0878"; +} +.sh-thinfa-arrow-down-left:before { + content: "\a0877"; +} +.sh-thinfa-arrow-down-from-line:before { + content: "\a0876"; +} +.sh-thinfa-arrow-down-from-dotted-line:before { + content: "\a0875"; +} +.sh-thinfa-arrow-down-big-small:before { + content: "\a0874"; +} +.sh-thinfa-arrow-down-arrow-up:before { + content: "\a0873"; +} +.sh-thinfa-worm:before { + content: "\a0872"; +} +.sh-thinfa-whale:before { + content: "\a0871"; +} +.sh-thinfa-unicorn:before { + content: "\a0870"; +} +.sh-thinfa-turtle:before { + content: "\a0869"; +} +.sh-thinfa-teddy-bear:before { + content: "\a0868"; +} +.sh-thinfa-squirrel:before { + content: "\a0867"; +} +.sh-thinfa-squid:before { + content: "\a0866"; +} +.sh-thinfa-spider-black-widow:before { + content: "\a0865"; +} +.sh-thinfa-spider:before { + content: "\a0864"; +} +.sh-thinfa-snake:before { + content: "\a0863"; +} +.sh-thinfa-skull-cow:before { + content: "\a0862"; +} +.sh-thinfa-shrimp:before { + content: "\a0861"; +} +.sh-thinfa-shield-dog:before { + content: "\a0860"; +} +.sh-thinfa-shield-cat:before { + content: "\a0859"; +} +.sh-thinfa-sheep:before { + content: "\a0858"; +} +.sh-thinfa-ram:before { + content: "\a0857"; +} +.sh-thinfa-rabbit-running:before { + content: "\a0856"; +} +.sh-thinfa-rabbit:before { + content: "\a0855"; +} +.sh-thinfa-pig:before { + content: "\a0854"; +} +.sh-thinfa-pegasus:before { + content: "\a0853"; +} +.sh-thinfa-paw-simple:before { + content: "\a0852"; +} +.sh-thinfa-paw-claws:before { + content: "\a0851"; +} +.sh-thinfa-otter:before { + content: "\a0850"; +} +.sh-thinfa-narwhal:before { + content: "\a0849"; +} +.sh-thinfa-mouse-field:before { + content: "\a0848"; +} +.sh-thinfa-mosquito:before { + content: "\a0847"; +} +.sh-thinfa-monkey:before { + content: "\a0846"; +} +.sh-thinfa-locust:before { + content: "\a0845"; +} +.sh-thinfa-lobster:before { + content: "\a0844"; +} +.sh-thinfa-kiwi-bird:before { + content: "\a0843"; +} +.sh-thinfa-horse-saddle:before { + content: "\a0842"; +} +.sh-thinfa-horse-head:before { + content: "\a0841"; +} +.sh-thinfa-horse:before { + content: "\a0840"; +} +.sh-thinfa-hippo:before { + content: "\a0839"; +} +.sh-thinfa-frog:before { + content: "\a0838"; +} +.sh-thinfa-fish-fins:before { + content: "\a0837"; +} +.sh-thinfa-fish-bones:before { + content: "\a0836"; +} +.sh-thinfa-fish:before { + content: "\a0835"; +} +.sh-thinfa-feather-pointed:before { + content: "\a0834"; +} +.sh-thinfa-feather:before { + content: "\a0833"; +} +.sh-thinfa-elephant:before { + content: "\a0832"; +} +.sh-thinfa-duck:before { + content: "\a0831"; +} +.sh-thinfa-dragon:before { + content: "\a0830"; +} +.sh-thinfa-dove:before { + content: "\a0829"; +} +.sh-thinfa-dolphin:before { + content: "\a0828"; +} +.sh-thinfa-dog:before { + content: "\a0827"; +} +.sh-thinfa-deer-rudolph:before { + content: "\a0826"; +} +.sh-thinfa-deer:before { + content: "\a0825"; +} +.sh-thinfa-crow:before { + content: "\a0824"; +} +.sh-thinfa-crab:before { + content: "\a0823"; +} +.sh-thinfa-cow:before { + content: "\a0822"; +} +.sh-thinfa-cat-space:before { + content: "\a0821"; +} +.sh-thinfa-cat:before { + content: "\a0820"; +} +.sh-thinfa-bugs:before { + content: "\a0819"; +} +.sh-thinfa-bird:before { + content: "\a0818"; +} +.sh-thinfa-bee:before { + content: "\a0817"; +} +.sh-thinfa-bat:before { + content: "\a0816"; +} +.sh-thinfa-badger-honey:before { + content: "\a0815"; +} +.sh-thinfa-alicorn:before { + content: "\a0814"; +} +.sh-thinfa-square-z:before { + content: "\a0813"; +} +.sh-thinfa-square-y:before { + content: "\a0812"; +} +.sh-thinfa-square-x:before { + content: "\a0811"; +} +.sh-thinfa-square-w:before { + content: "\a0810"; +} +.sh-thinfa-square-v:before { + content: "\a0809"; +} +.sh-thinfa-square-u:before { + content: "\a0808"; +} +.sh-thinfa-square-t:before { + content: "\a0807"; +} +.sh-thinfa-square-s:before { + content: "\a0806"; +} +.sh-thinfa-square-r:before { + content: "\a0805"; +} +.sh-thinfa-square-q:before { + content: "\a0804"; +} +.sh-thinfa-square-p:before { + content: "\a0803"; +} +.sh-thinfa-square-o1:before { + content: "\a0802"; +} +.sh-thinfa-square-n:before { + content: "\a0801"; +} +.sh-thinfa-square-m:before { + content: "\a0800"; +} +.sh-thinfa-square-l:before { + content: "\a0799"; +} +.sh-thinfa-square-k:before { + content: "\a0798"; +} +.sh-thinfa-square-j:before { + content: "\a0797"; +} +.sh-thinfa-square-i:before { + content: "\a0796"; +} +.sh-thinfa-square-h:before { + content: "\a0795"; +} +.sh-thinfa-square-g:before { + content: "\a0794"; +} +.sh-thinfa-square-f:before { + content: "\a0793"; +} +.sh-thinfa-square-e:before { + content: "\a0792"; +} +.sh-thinfa-square-d:before { + content: "\a0791"; +} +.sh-thinfa-square-c:before { + content: "\a0790"; +} +.sh-thinfa-square-b:before { + content: "\a0789"; +} +.sh-thinfa-square-a:before { + content: "\a0788"; +} +.sh-thinfa-circle-z:before { + content: "\a0787"; +} +.sh-thinfa-circle-y:before { + content: "\a0786"; +} +.sh-thinfa-circle-x:before { + content: "\a0785"; +} +.sh-thinfa-circle-w:before { + content: "\a0784"; +} +.sh-thinfa-circle-v:before { + content: "\a0783"; +} +.sh-thinfa-circle-u:before { + content: "\a0782"; +} +.sh-thinfa-circle-t:before { + content: "\a0781"; +} +.sh-thinfa-circle-s:before { + content: "\a0780"; +} +.sh-thinfa-circle-r:before { + content: "\a0779"; +} +.sh-thinfa-circle-q:before { + content: "\a0778"; +} +.sh-thinfa-circle-p:before { + content: "\a0777"; +} +.sh-thinfa-circle-o1:before { + content: "\a0776"; +} +.sh-thinfa-circle-n:before { + content: "\a0775"; +} +.sh-thinfa-circle-m:before { + content: "\a0774"; +} +.sh-thinfa-circle-l:before { + content: "\a0773"; +} +.sh-thinfa-circle-k:before { + content: "\a0772"; +} +.sh-thinfa-circle-j:before { + content: "\a0771"; +} +.sh-thinfa-circle-i:before { + content: "\a0770"; +} +.sh-thinfa-circle-h:before { + content: "\a0769"; +} +.sh-thinfa-circle-g:before { + content: "\a0768"; +} +.sh-thinfa-circle-f:before { + content: "\a0767"; +} +.sh-thinfa-circle-e:before { + content: "\a0766"; +} +.sh-thinfa-circle-d:before { + content: "\a0765"; +} +.sh-thinfa-circle-c:before { + content: "\a0764"; +} +.sh-thinfa-circle-b:before { + content: "\a0763"; +} +.sh-thinfa-circle-a:before { + content: "\a0762"; +} +.sh-thinfa-z:before { + content: "\a0761"; +} +.sh-thinfa-y:before { + content: "\a0760"; +} +.sh-thinfa-x:before { + content: "\a0759"; +} +.sh-thinfa-w:before { + content: "\a0758"; +} +.sh-thinfa-v:before { + content: "\a0757"; +} +.sh-thinfa-u:before { + content: "\a0756"; +} +.sh-thinfa-t:before { + content: "\a0755"; +} +.sh-thinfa-s:before { + content: "\a0754"; +} +.sh-thinfa-r:before { + content: "\a0753"; +} +.sh-thinfa-q:before { + content: "\a0752"; +} +.sh-thinfa-p:before { + content: "\a0751"; +} +.sh-thinfa-o:before { + content: "\a0750"; +} +.sh-thinfa-n:before { + content: "\a0749"; +} +.sh-thinfa-m:before { + content: "\a0748"; +} +.sh-thinfa-l:before { + content: "\a0747"; +} +.sh-thinfa-k:before { + content: "\a0746"; +} +.sh-thinfa-j:before { + content: "\a0745"; +} +.sh-thinfa-i:before { + content: "\a0744"; +} +.sh-thinfa-h:before { + content: "\a0743"; +} +.sh-thinfa-g:before { + content: "\a0742"; +} +.sh-thinfa-f:before { + content: "\a0741"; +} +.sh-thinfa-e:before { + content: "\a0740"; +} +.sh-thinfa-d:before { + content: "\a0739"; +} +.sh-thinfa-c:before { + content: "\a0738"; +} +.sh-thinfa-b:before { + content: "\a0737"; +} +.sh-thinfa-a:before { + content: "\a0736"; +} +.sh-thinfa-wagon-covered:before { + content: "\a0735"; +} +.sh-thinfa-van-shuttle:before { + content: "\a0734"; +} +.sh-thinfa-truck-pickup:before { + content: "\a0733"; +} +.sh-thinfa-truck-monster:before { + content: "\a0732"; +} +.sh-thinfa-truck-field-un:before { + content: "\a0731"; +} +.sh-thinfa-truck-field:before { + content: "\a0730"; +} +.sh-thinfa-truck-bolt:before { + content: "\a0729"; +} +.sh-thinfa-trailer:before { + content: "\a0728"; +} +.sh-thinfa-tire-rugged:before { + content: "\a0727"; +} +.sh-thinfa-tire-pressure-warning:before { + content: "\a0726"; +} +.sh-thinfa-tire-flat:before { + content: "\a0725"; +} +.sh-thinfa-tire:before { + content: "\a0724"; +} +.sh-thinfa-tank-water:before { + content: "\a0723"; +} +.sh-thinfa-steering-wheel:before { + content: "\a0722"; + color: #183153; +} +.sh-thinfa-spray-can-sparkles:before { + content: "\a0721"; +} +.sh-thinfa-rv:before { + content: "\a0720"; +} +.sh-thinfa-pump:before { + content: "\a0719"; +} +.sh-thinfa-oil-temperature:before { + content: "\a0718"; +} +.sh-thinfa-oil-can-drip:before { + content: "\a0717"; +} +.sh-thinfa-oil-can:before { + content: "\a0716"; +} +.sh-thinfa-moped:before { + content: "\a0715"; +} +.sh-thinfa-gauge-simple-min:before { + content: "\a0714"; +} +.sh-thinfa-gauge-simple-max:before { + content: "\a0713"; +} +.sh-thinfa-gauge-simple-low:before { + content: "\a0712"; +} +.sh-thinfa-gauge-simple-high:before { + content: "\a0711"; +} +.sh-thinfa-gauge-simple:before { + content: "\a0710"; +} +.sh-thinfa-gauge-min:before { + content: "\a0709"; +} +.sh-thinfa-gauge-max:before { + content: "\a0708"; +} +.sh-thinfa-gauge-low:before { + content: "\a0707"; +} +.sh-thinfa-gauge-high:before { + content: "\a0706"; +} +.sh-thinfa-gauge-circle-plus:before { + content: "\a0705"; +} +.sh-thinfa-gauge-circle-minus:before { + content: "\a0704"; +} +.sh-thinfa-gauge-circle-bolt:before { + content: "\a0703"; +} +.sh-thinfa-gauge:before { + content: "\a0702"; +} +.sh-thinfa-gas-pump-slash:before { + content: "\a0701"; +} +.sh-thinfa-gas-pump:before { + content: "\a0700"; +} +.sh-thinfa-garage-open:before { + content: "\a0699"; +} +.sh-thinfa-garage-car:before { + content: "\a0698"; +} +.sh-thinfa-garage:before { + content: "\a0697"; +} +.sh-thinfa-flux-capacitor:before { + content: "\a0696"; +} +.sh-thinfa-engine:before { + content: "\a0695"; +} +.sh-thinfa-charging-station:before { + content: "\a0694"; +} +.sh-thinfa-car-wrench:before { + content: "\a0693"; +} +.sh-thinfa-car-wash:before { + content: "\a0692"; +} +.sh-thinfa-car-tunnel:before { + content: "\a0691"; +} +.sh-thinfa-car-tilt:before { + content: "\a0690"; +} +.sh-thinfa-car-side-bolt:before { + content: "\a0689"; +} +.sh-thinfa-car-side:before { + content: "\a0688"; +} +.sh-thinfa-cars:before { + content: "\a0687"; +} +.sh-thinfa-car-rear:before { + content: "\a0686"; +} +.sh-thinfa-car-on:before { + content: "\a0685"; +} +.sh-thinfa-car-mirrors:before { + content: "\a0684"; +} +.sh-thinfa-car-garage:before { + content: "\a0683"; +} +.sh-thinfa-car-circle-bolt:before { + content: "\a0682"; +} +.sh-thinfa-car-bus:before { + content: "\a0681"; +} +.sh-thinfa-car-burst:before { + content: "\a0680"; +} +.sh-thinfa-car-bump:before { + content: "\a0679"; +} +.sh-thinfa-car-building:before { + content: "\a0678"; +} +.sh-thinfa-car-bolt:before { + content: "\a0677"; +} +.sh-thinfa-car-battery:before { + content: "\a0676"; +} +.sh-thinfa-caravan-simple:before { + content: "\a0675"; +} +.sh-thinfa-caravan:before { + content: "\a0674"; +} +.sh-thinfa-bus-simple:before { + content: "\a0673"; +} +.sh-thinfa-brake-warning:before { + content: "\a0672"; +} +.sh-thinfa-wind-warning:before { + content: "\a0671"; +} +.sh-thinfa-wifi-exclamation:before { + content: "\a0670"; +} +.sh-thinfa-star-exclamation:before { + content: "\a0669"; +} +.sh-thinfa-square-exclamation:before { + content: "\a0668"; +} +.sh-thinfa-skull-crossbones:before { + content: "\a0667"; +} +.sh-thinfa-shield-exclamation:before { + content: "\a0666"; +} +.sh-thinfa-sensor-triangle-exclamation:before { + content: "\a0665"; +} +.sh-thinfa-sensor-on:before { + content: "\a0664"; +} +.sh-thinfa-sensor-fire:before { + content: "\a0663"; +} +.sh-thinfa-sensor-cloud:before { + content: "\a0662"; +} +.sh-thinfa-sensor:before { + content: "\a0661"; +} +.sh-thinfa-seal-question:before { + content: "\a0660"; +} +.sh-thinfa-seal-exclamation:before { + content: "\a0659"; +} +.sh-thinfa-rotate-exclamation:before { + content: "\a0658"; +} +.sh-thinfa-radiation:before { + content: "\a0657"; +} +.sh-thinfa-party-horn:before { + content: "\a0656"; +} +.sh-thinfa-party-bell:before { + content: "\a0655"; +} +.sh-thinfa-octagon-exclamation:before { + content: "\a0654"; +} +.sh-thinfa-message-exclamation:before { + content: "\a0653"; +} +.sh-thinfa-location-exclamation:before { + content: "\a0652"; +} +.sh-thinfa-light-emergency-on:before { + content: "\a0651"; +} +.sh-thinfa-light-emergency:before { + content: "\a0650"; +} +.sh-thinfa-lightbulb-exclamation-on:before { + content: "\a0649"; +} +.sh-thinfa-lightbulb-exclamation:before { + content: "\a0648"; +} +.sh-thinfa-hexagon-exclamation:before { + content: "\a0647"; +} +.sh-thinfa-file-exclamation:before { + content: "\a0646"; +} +.sh-thinfa-engine-warning:before { + content: "\a0645"; +} +.sh-thinfa-diamond-exclamation:before { + content: "\a0644"; +} +.sh-thinfa-comment-exclamation:before { + content: "\a0643"; +} +.sh-thinfa-cloud-question:before { + content: "\a0642"; +} +.sh-thinfa-cloud-exclamation:before { + content: "\a0641"; +} +.sh-thinfa-circle-radiation:before { + content: "\a0640"; +} +.sh-thinfa-circle-quarters:before { + content: "\a0639"; +} +.sh-thinfa-circle-exclamation-check:before { + content: "\a0638"; +} +.sh-thinfa-calendar-exclamation:before { + content: "\a0637"; +} +.sh-thinfa-bell-school-slash:before { + content: "\a0636"; +} +.sh-thinfa-bells:before { + content: "\a0635"; +} +.sh-thinfa-bell-on:before { + content: "\a0634"; +} +.sh-thinfa-bell-exclamation:before { + content: "\a0633"; +} +.sh-thinfa-battery-exclamation:before { + content: "\a0632"; +} +.sh-thinfa-alarm-exclamation:before { + content: "\a0631"; +} +.sh-thinfa-alarm-clock:before { + content: "\a0630"; +} +.sh-thinfa-phone-volume:before { + content: "\a0629"; +} +.sh-thinfa-tty-answer:before { + content: "\a0628"; +} +.sh-thinfa-square-question:before { + content: "\a0627"; +} +.sh-thinfa-square-info:before { + content: "\a0626"; +} +.sh-thinfa-person-cane:before { + content: "\a0625"; +} +.sh-thinfa-message-captions:before { + content: "\a0624"; +} +.sh-thinfa-keyboard-brightness-low:before { + content: "\a0623"; +} +.sh-thinfa-keyboard-brightness:before { + content: "\a0622"; +} +.sh-thinfa-head-side-heart:before { + content: "\a0621"; +} +.sh-thinfa-handshake-angle:before { + content: "\a0620"; +} +.sh-thinfa-fingerprint:before { + content: "\a0619"; +} +.sh-thinfa-ear:before { + content: "\a0618"; +} +.sh-thinfa-dog-leashed:before { + content: "\a0617"; +} +.sh-thinfa-comment-captions:before { + content: "\a0616"; +} +.sh-thinfa-closed-captioning-slash:before { + content: "\a0615"; +} +.sh-thinfa-brightness-low:before { + content: "\a0614"; +} +.sh-thinfa-brightness:before { + content: "\a0613"; +} +.sh-thinfa-audio-description-slash:before { + content: "\a0612"; +} +.sh-thinfa-user-md:before { + content: "\a0611"; +} +.sh-thinfa-stethoscope:before { + content: "\a0610"; +} +.sh-thinfa-medkit:before { + content: "\a0609"; +} +.sh-thinfa-hospital-o:before { + content: "\a0608"; +} +.sh-thinfa-h-square:before { + content: "\a0607"; +} +.sh-thinfa-stop-circle-o:before { + content: "\a0606"; +} +.sh-thinfa-stop-circle:before { + content: "\a0605"; +} +.sh-thinfa-stop:before { + content: "\a0604"; +} +.sh-thinfa-step-forward:before { + content: "\a0603"; +} +.sh-thinfa-step-backward:before { + content: "\a0602"; +} +.sh-thinfa-play-circle-o:before { + content: "\a0601"; +} +.sh-thinfa-play-circle:before { + content: "\a0600"; +} +.sh-thinfa-play:before { + content: "\a0599"; +} +.sh-thinfa-pause-circle-o:before { + content: "\a0598"; +} +.sh-thinfa-pause-circle:before { + content: "\a0597"; +} +.sh-thinfa-pause:before { + content: "\a0596"; +} +.sh-thinfa-forward:before { + content: "\a0595"; +} +.sh-thinfa-fast-forward:before { + content: "\a0594"; +} +.sh-thinfa-fast-backward:before { + content: "\a0593"; +} +.sh-thinfa-eject:before { + content: "\a0592"; +} +.sh-thinfa-backward:before { + content: "\a0591"; +} +.sh-thinfa-long-arrow-up:before { + content: "\a0590"; +} +.sh-thinfa-long-arrow-left:before { + content: "\a0589"; +} +.sh-thinfa-long-arrow-down:before { + content: "\a0588"; +} +.sh-thinfa-chevron-up:before { + content: "\a0587"; +} +.sh-thinfa-chevron-circle-up:before { + content: "\a0586"; +} +.sh-thinfa-chevron-circle-right:before { + content: "\a0585"; +} +.sh-thinfa-chevron-circle-left:before { + content: "\a0584"; +} +.sh-thinfa-chevron-circle-down:before { + content: "\a0583"; +} +.sh-thinfa-caret-up:before { + content: "\a0582"; +} +.sh-thinfa-caret-left:before { + content: "\a0581"; +} +.sh-thinfa-arrow-down:before { + content: "\a0580"; +} +.sh-thinfa-arrow-circle-up:before { + content: "\a0579"; +} +.sh-thinfa-arrow-circle-right:before { + content: "\a0578"; +} +.sh-thinfa-arrow-circle-o-up:before { + content: "\a0577"; +} +.sh-thinfa-arrow-circle-o-right:before { + content: "\a0576"; +} +.sh-thinfa-arrow-circle-o-left:before { + content: "\a0575"; +} +.sh-thinfa-arrow-circle-o-down:before { + content: "\a0574"; +} +.sh-thinfa-arrow-circle-left:before { + content: "\a0573"; +} +.sh-thinfa-arrow-circle-down:before { + content: "\a0572"; +} +.sh-thinfa-angle-right:before { + content: "\a0571"; +} +.sh-thinfa-angle-left:before { + content: "\a0570"; +} +.sh-thinfa-angle-down:before { + content: "\a0569"; +} +.sh-thinfa-angle-double-up:before { + content: "\a0568"; +} +.sh-thinfa-angle-double-left:before { + content: "\a0567"; +} +.sh-thinfa-angle-double-down:before { + content: "\a0566"; +} +.sh-thinfa-text-width:before { + content: "\a0565"; +} +.sh-thinfa-text-height:before { + content: "\a0564"; +} +.sh-thinfa-superscript:before { + content: "\a0563"; +} +.sh-thinfa-subscript:before { + content: "\a0562"; +} +.sh-thinfa-scissors:before { + content: "\a0561"; +} +.sh-thinfa-rotate-right:before { + content: "\a0560"; +} +.sh-thinfa-rotate-left:before { + content: "\a0559"; +} +.sh-thinfa-paste:before { + content: "\a0558"; +} +.sh-thinfa-paragraph:before { + content: "\a0557"; +} +.sh-thinfa-outdent:before { + content: "\a0556"; +} +.sh-thinfa-indent:before { + content: "\a0555"; +} +.sh-thinfa-header:before { + content: "\a0554"; +} +.sh-thinfa-floppy-o:before { + content: "\a0553"; +} +.sh-thinfa-dedent:before { + content: "\a0552"; +} +.sh-thinfa-cut:before { + content: "\a0551"; +} +.sh-thinfa-copy:before { + content: "\a0550"; +} +.sh-thinfa-columns:before { + content: "\a0549"; +} +.sh-thinfa-clipboard:before { + content: "\a0548"; +} +.sh-thinfa-chain-broken:before { + content: "\a0547"; +} +.sh-thinfa-align-right:before { + content: "\a0546"; +} +.sh-thinfa-align-left:before { + content: "\a0545"; +} +.sh-thinfa-align-justify:before { + content: "\a0544"; +} +.sh-thinfa-align-center:before { + content: "\a0543"; +} +.sh-thinfa-yen:before { + content: "\a0542"; +} +.sh-thinfa-won:before { + content: "\a0541"; +} +.sh-thinfa-viacoin:before { + content: "\a0540"; +} +.sh-thinfa-turkish-lira:before { + content: "\a0539"; +} +.sh-thinfa-try:before { + content: "\a0538"; +} +.sh-thinfa-sheqel:before { + content: "\a0537"; +} +.sh-thinfa-shekel:before { + content: "\a0536"; +} +.sh-thinfa-rupee:before { + content: "\a0535"; +} +.sh-thinfa-ruble:before { + content: "\a0534"; +} +.sh-thinfa-rub:before { + content: "\a0533"; +} +.sh-thinfa-rouble:before { + content: "\a0532"; +} +.sh-thinfa-rmb:before { + content: "\a0531"; +} +.sh-thinfa-krw:before { + content: "\a0530"; +} +.sh-thinfa-jpy:before { + content: "\a0529"; +} +.sh-thinfa-inr:before { + content: "\a0528"; +} +.sh-thinfa-ils:before { + content: "\a0527"; +} +.sh-thinfa-gg-circle:before { + content: "\a0526"; +} +.sh-thinfa-gg:before { + content: "\a0525"; +} +.sh-thinfa-gbp:before { + content: "\a0524"; +} +.sh-thinfa-euro:before { + content: "\a0523"; +} +.sh-thinfa-eur:before { + content: "\a0522"; +} +.sh-thinfa-dollar:before { + content: "\a0521"; +} +.sh-thinfa-cny:before { + content: "\a0520"; +} +.sh-thinfa-btc:before { + content: "\a0519"; +} +.sh-thinfa-bitcoin:before { + content: "\a0518"; +} +.sh-thinfa-file-text:before { + content: "\a0517"; +} +.sh-thinfa-file-o:before { + content: "\a0516"; +} +.sh-thinfa-file-excel-o:before { + content: "\a0515"; +} +.sh-thinfa-file:before { + content: "\a0514"; +} +.sh-thinfa-venus-mars:before { + content: "\a0513"; +} +.sh-thinfa-venus-double:before { + content: "\a0512"; +} +.sh-thinfa-venus:before { + content: "\a0511"; +} +.sh-thinfa-transgender-alt:before { + content: "\a0510"; +} +.sh-thinfa-transgender:before { + content: "\a0509"; +} +.sh-thinfa-neuter:before { + content: "\a0508"; +} +.sh-thinfa-mercury:before { + content: "\a0507"; +} +.sh-thinfa-mars-stroke-v:before { + content: "\a0506"; +} +.sh-thinfa-mars-stroke-h:before { + content: "\a0505"; +} +.sh-thinfa-mars-stroke:before { + content: "\a0504"; +} +.sh-thinfa-mars-double:before { + content: "\a0503"; +} +.sh-thinfa-mars:before { + content: "\a0502"; +} +.sh-thinfa-intersex:before { + content: "\a0501"; +} +.sh-thinfa-genderless:before { + content: "\a0500"; +} +.sh-thinfa-train:before { + content: "\a0499"; +} +.sh-thinfa-subway:before { + content: "\a0498"; +} +.sh-thinfa-ambulance:before { + content: "\a0497"; +} +.sh-thinfa-hand-o-up:before { + content: "\a0496"; +} +.sh-thinfa-hand-o-right:before { + content: "\a0495"; +} +.sh-thinfa-hand-o-left:before { + content: "\a0494"; +} +.sh-thinfa-hand-o-down:before { + content: "\a0493"; +} +.sh-thinfa-window-restore:before { + content: "\a0492"; +} +.sh-thinfa-window-minimize:before { + content: "\a0491"; +} +.sh-thinfa-window-maximize:before { + content: "\a0490"; +} +.sh-thinfa-window-close-o:before { + content: "\a0489"; +} +.sh-thinfa-window-close:before { + content: "\a0488"; +} +.sh-thinfa-wifi:before { + content: "\a0487"; +} +.sh-thinfa-wheelchair-alt:before { + content: "\a0486"; +} +.sh-thinfa-wheelchair:before { + content: "\a0485"; +} +.sh-thinfa-warning:before { + content: "\a0484"; +} +.sh-thinfa-volume-control-phone:before { + content: "\a0483"; +} +.sh-thinfa-vcard-o:before { + content: "\a0482"; +} +.sh-thinfa-vcard:before { + content: "\a0481"; +} +.sh-thinfa-user-times:before { + content: "\a0480"; +} +.sh-thinfa-user-secret:before { + content: "\a0479"; +} +.sh-thinfa-user-o:before { + content: "\a0478"; +} +.sh-thinfa-user-circle-o:before { + content: "\a0477"; +} +.sh-thinfa-user-circle:before { + content: "\a0476"; +} +.sh-thinfa-unsorted:before { + content: "\a0475"; +} +.sh-thinfa-unlock-alt:before { + content: "\a0474"; +} +.sh-thinfa-unlock:before { + content: "\a0473"; +} +.sh-thinfa-universal-access:before { + content: "\a0472"; +} +.sh-thinfa-umbrella:before { + content: "\a0471"; +} +.sh-thinfa-tv:before { + content: "\a0470"; +} +.sh-thinfa-tty:before { + content: "\a0469"; +} +.sh-thinfa-tree:before { + content: "\a0468"; +} +.sh-thinfa-trademark:before { + content: "\a0467"; +} +.sh-thinfa-toggle-up:before { + content: "\a0466"; +} +.sh-thinfa-toggle-right:before { + content: "\a0465"; +} +.sh-thinfa-toggle-left:before { + content: "\a0464"; +} +.sh-thinfa-toggle-down:before { + content: "\a0463"; +} +.sh-thinfa-tint:before { + content: "\a0462"; +} +.sh-thinfa-times-rectangle-o:before { + content: "\a0461"; +} +.sh-thinfa-times-rectangle:before { + content: "\a0460"; +} +.sh-thinfa-thumb-tack:before { + content: "\a0459"; +} +.sh-thinfa-thumbs-o-up:before { + content: "\a0458"; +} +.sh-thinfa-thumbs-o-down:before { + content: "\a0457"; +} +.sh-thinfa-thumbs-down:before { + content: "\a0456"; +} +.sh-thinfa-thermometer-three-quarters:before { + content: "\a0455"; +} +.sh-thinfa-thermometer-quarter:before { + content: "\a0454"; +} +.sh-thinfa-thermometer-half:before { + content: "\a0453"; +} +.sh-thinfa-thermometer-full:before { + content: "\a0452"; +} +.sh-thinfa-thermometer-empty:before { + content: "\a0451"; +} +.sh-thinfa-thermometer-4:before { + content: "\a0450"; +} +.sh-thinfa-thermometer-3:before { + content: "\a0449"; +} +.sh-thinfa-thermometer-2:before { + content: "\a0448"; +} +.sh-thinfa-thermometer-1:before { + content: "\a0447"; +} +.sh-thinfa-thermometer-0:before { + content: "\a0446"; +} +.sh-thinfa-thermometer:before { + content: "\a0445"; +} +.sh-thinfa-terminal:before { + content: "\a0444"; +} +.sh-thinfa-television:before { + content: "\a0443"; +} +.sh-thinfa-taxi:before { + content: "\a0442"; +} +.sh-thinfa-tags:before { + content: "\a0441"; +} +.sh-thinfa-tag:before { + content: "\a0440"; +} +.sh-thinfa-tablet:before { + content: "\a0439"; +} +.sh-thinfa-support:before { + content: "\a0438"; +} +.sh-thinfa-suitcase:before { + content: "\a0437"; +} +.sh-thinfa-street-view:before { + content: "\a0436"; +} +.sh-thinfa-sticky-note-o:before { + content: "\a0435"; +} +.sh-thinfa-sticky-note:before { + content: "\a0434"; +} +.sh-thinfa-star-half-o:before { + content: "\a0433"; +} +.sh-thinfa-star-half-full:before { + content: "\a0432"; +} +.sh-thinfa-star-half-empty:before { + content: "\a0431"; +} +.sh-thinfa-star-half:before { + content: "\a0430"; +} +.sh-thinfa-square:before { + content: "\a0429"; +} +.sh-thinfa-spoon:before { + content: "\a0428"; +} +.sh-thinfa-spinner:before { + content: "\a0427"; +} +.sh-thinfa-space-shuttle:before { + content: "\a0426"; +} +.sh-thinfa-sort-numeric-desc:before { + content: "\a0425"; +} +.sh-thinfa-sort-numeric-asc:before { + content: "\a0424"; +} +.sh-thinfa-sort-up:before { + content: "\a0423"; +} +.sh-thinfa-sort-down:before { + content: "\a0422"; +} +.sh-thinfa-sort-desc:before { + content: "\a0421"; +} +.sh-thinfa-sort-asc:before { + content: "\a0420"; +} +.sh-thinfa-sort-alpha-desc:before { + content: "\a0419"; +} +.sh-thinfa-sort-alpha-asc:before { + content: "\a0418"; +} +.sh-thinfa-soccer-ball-o:before { + content: "\a0417"; +} +.sh-thinfa-snowflake-o:before { + content: "\a0416"; +} +.sh-thinfa-sliders:before { + content: "\a0415"; +} +.sh-thinfa-sign-language:before { + content: "\a0414"; +} +.sh-thinfa-signing:before { + content: "\a0413"; +} +.sh-thinfa-shower:before { + content: "\a0412"; +} +.sh-thinfa-shopping-cart:before { + content: "\a0411"; +} +.sh-thinfa-shopping-bag:before { + content: "\a0410"; +} +.sh-thinfa-ship:before { + content: "\a0409"; +} +.sh-thinfa-shield:before { + content: "\a0408"; +} +.sh-thinfa-share-square-o:before { + content: "\a0407"; +} +.sh-thinfa-share-square:before { + content: "\a0406"; +} +.sh-thinfa-share-alt-square:before { + content: "\a0405"; +} +.sh-thinfa-share-alt:before { + content: "\a0404"; +} +.sh-thinfa-share:before { + content: "\a0403"; +} +.sh-thinfa-server:before { + content: "\a0402"; +} +.sh-thinfa-send-o:before { + content: "\a0401"; +} +.sh-thinfa-send:before { + content: "\a0400"; +} +.sh-thinfa-search-minus:before { + content: "\a0399"; +} +.sh-thinfa-s15:before { + content: "\a0398"; +} +.sh-thinfa-rss-square:before { + content: "\a0397"; +} +.sh-thinfa-rss:before { + content: "\a0396"; +} +.sh-thinfa-rocket:before { + content: "\a0395"; +} +.sh-thinfa-road:before { + content: "\a0394"; +} +.sh-thinfa-retweet:before { + content: "\a0393"; +} +.sh-thinfa-reply-all:before { + content: "\a0392"; +} +.sh-thinfa-reorder:before { + content: "\a0391"; +} +.sh-thinfa-remove:before { + content: "\a0390"; +} +.sh-thinfa-registered:before { + content: "\a0389"; +} +.sh-thinfa-recycle:before { + content: "\a0388"; +} +.sh-thinfa-quote-right:before { + content: "\a0387"; +} +.sh-thinfa-quote-left:before { + content: "\a0386"; +} +.sh-thinfa-question-circle-o:before { + content: "\a0385"; +} +.sh-thinfa-question-circle:before { + content: "\a0384"; +} +.sh-thinfa-question:before { + content: "\a0383"; +} +.sh-thinfa-qrcode:before { + content: "\a0382"; +} +.sh-thinfa-power-off:before { + content: "\a0381"; +} +.sh-thinfa-podcast:before { + content: "\a0380"; +} +.sh-thinfa-plus-square-o:before { + content: "\a0379"; +} +.sh-thinfa-plug:before { + content: "\a0378"; +} +.sh-thinfa-picture-o:before { + content: "\a0377"; +} +.sh-thinfa-photo:before { + content: "\a0376"; +} +.sh-thinfa-phone-square:before { + content: "\a0375"; +} +.sh-thinfa-percent:before { + content: "\a0374"; +} +.sh-thinfa-pencil-square:before { + content: "\a0373"; +} +.sh-thinfa-paw:before { + content: "\a0372"; +} +.sh-thinfa-object-ungroup:before { + content: "\a0371"; +} +.sh-thinfa-object-group:before { + content: "\a0370"; +} +.sh-thinfa-newspaper-o:before { + content: "\a0369"; +} +.sh-thinfa-navicon:before { + content: "\a0368"; +} +.sh-thinfa-music:before { + content: "\a0367"; +} +.sh-thinfa-motorcycle:before { + content: "\a0366"; +} +.sh-thinfa-mortar-board:before { + content: "\a0365"; +} +.sh-thinfa-moon-o:before { + content: "\a0364"; +} +.sh-thinfa-mobile-phone:before { + content: "\a0363"; +} +.sh-thinfa-minus-square-o:before { + content: "\a0362"; +} +.sh-thinfa-microchip:before { + content: "\a0361"; +} +.sh-thinfa-meh-o:before { + content: "\a0360"; +} +.sh-thinfa-map-signs:before { + content: "\a0359"; +} +.sh-thinfa-map-pin:before { + content: "\a0358"; +} +.sh-thinfa-map-o:before { + content: "\a0357"; +} +.sh-thinfa-map:before { + content: "\a0356"; +} +.sh-thinfa-male:before { + content: "\a0355"; +} +.sh-thinfa-mail-reply-all:before { + content: "\a0354"; +} +.sh-thinfa-mail-reply:before { + content: "\a0353"; +} +.sh-thinfa-mail-forward:before { + content: "\a0352"; +} +.sh-thinfa-magnet:before { + content: "\a0351"; +} +.sh-thinfa-magic:before { + content: "\a0350"; +} +.sh-thinfa-low-vision:before { + content: "\a0349"; +} +.sh-thinfa-lock:before { + content: "\a0348"; +} +.sh-thinfa-location-arrow:before { + content: "\a0347"; +} +.sh-thinfa-lightbulb-o:before { + content: "\a0346"; +} +.sh-thinfa-life-saver:before { + content: "\a0345"; +} +.sh-thinfa-life-ring:before { + content: "\a0344"; +} +.sh-thinfa-life-buoy:before { + content: "\a0343"; +} +.sh-thinfa-life-bouy:before { + content: "\a0342"; +} +.sh-thinfa-level-down:before { + content: "\a0341"; +} +.sh-thinfa-lemon-o:before { + content: "\a0340"; +} +.sh-thinfa-legal:before { + content: "\a0339"; +} +.sh-thinfa-leaf:before { + content: "\a0338"; +} +.sh-thinfa-laptop:before { + content: "\a0337"; +} +.sh-thinfa-language:before { + content: "\a0336"; +} +.sh-thinfa-keyboard-o:before { + content: "\a0335"; +} +.sh-thinfa-key:before { + content: "\a0334"; +} +.sh-thinfa-institution:before { + content: "\a0333"; +} +.sh-thinfa-info:before { + content: "\a0332"; +} +.sh-thinfa-industry:before { + content: "\a0331"; +} +.sh-thinfa-image:before { + content: "\a0330"; +} +.sh-thinfa-id-card:before { + content: "\a0329"; +} +.sh-thinfa-id-badge:before { + content: "\a0328"; +} +.sh-thinfa-i-cursor:before { + content: "\a0327"; +} +.sh-thinfa-hourglass-start:before { + content: "\a0326"; +} +.sh-thinfa-hourglass-o:before { + content: "\a0325"; +} +.sh-thinfa-hourglass-end:before { + content: "\a0324"; +} +.sh-thinfa-hourglass-3:before { + content: "\a0323"; +} +.sh-thinfa-hourglass-2:before { + content: "\a0322"; +} +.sh-thinfa-hourglass-1:before { + content: "\a0321"; +} +.sh-thinfa-hourglass:before { + content: "\a0320"; +} +.sh-thinfa-hotel:before { + content: "\a0319"; +} +.sh-thinfa-home:before { + content: "\a0318"; +} +.sh-thinfa-heart-o:before { + content: "\a0317"; +} +.sh-thinfa-heartbeat:before { + content: "\a0316"; +} +.sh-thinfa-hdd-o:before { + content: "\a0315"; +} +.sh-thinfa-hard-of-hearing:before { + content: "\a0314"; +} +.sh-thinfa-hand-stop-o:before { + content: "\a0313"; +} +.sh-thinfa-hand-spock-o:before { + content: "\a0312"; +} +.sh-thinfa-handshake-o:before { + content: "\a0311"; +} +.sh-thinfa-hand-scissors-o:before { + content: "\a0310"; +} +.sh-thinfa-hand-rock-o:before { + content: "\a0309"; +} +.sh-thinfa-hand-pointer-o:before { + content: "\a0308"; +} +.sh-thinfa-hand-peace-o:before { + content: "\a0307"; +} +.sh-thinfa-hand-paper-o:before { + content: "\a0306"; +} +.sh-thinfa-hand-lizard-o:before { + content: "\a0305"; +} +.sh-thinfa-hand-grab-o:before { + content: "\a0304"; +} +.sh-thinfa-group:before { + content: "\a0303"; +} +.sh-thinfa-graduation-cap:before { + content: "\a0302"; +} +.sh-thinfa-glass:before { + content: "\a0301"; +} +.sh-thinfa-gears:before { + content: "\a0300"; +} +.sh-thinfa-gear:before { + content: "\a0299"; +} +.sh-thinfa-gavel:before { + content: "\a0298"; +} +.sh-thinfa-gamepad:before { + content: "\a0297"; +} +.sh-thinfa-futbol-o:before { + content: "\a0296"; +} +.sh-thinfa-frown-o:before { + content: "\a0295"; +} +.sh-thinfa-folder-open-o:before { + content: "\a0294"; +} +.sh-thinfa-folder-open:before { + content: "\a0293"; +} +.sh-thinfa-folder-o:before { + content: "\a0292"; +} +.sh-thinfa-flash:before { + content: "\a0291"; +} +.sh-thinfa-flag-o:before { + content: "\a0290"; +} +.sh-thinfa-flag-checkered:before { + content: "\a0289"; +} +.sh-thinfa-flag:before { + content: "\a0288"; +} +.sh-thinfa-fire-extinguisher:before { + content: "\a0287"; +} +.sh-thinfa-fire:before { + content: "\a0286"; +} +.sh-thinfa-film:before { + content: "\a0285"; +} +.sh-thinfa-file-zip-o:before { + content: "\a0284"; +} +.sh-thinfa-file-word-o:before { + content: "\a0283"; +} +.sh-thinfa-file-video-o:before { + content: "\a0282"; +} +.sh-thinfa-file-sound-o:before { + content: "\a0281"; +} +.sh-thinfa-file-powerpoint-o:before { + content: "\a0280"; +} +.sh-thinfa-file-picture-o:before { + content: "\a0279"; +} +.sh-thinfa-file-photo-o:before { + content: "\a0278"; +} +.sh-thinfa-file-pdf-o:before { + content: "\a0277"; +} +.sh-thinfa-file-movie-o:before { + content: "\a0276"; +} +.sh-thinfa-file-image-o:before { + content: "\a0275"; +} +.sh-thinfa-file-code-o:before { + content: "\a0274"; +} +.sh-thinfa-file-audio-o:before { + content: "\a0273"; +} +.sh-thinfa-file-archive-o:before { + content: "\a0272"; +} +.sh-thinfa-fighter-jet:before { + content: "\a0271"; +} +.sh-thinfa-female:before { + content: "\a0270"; +} +.sh-thinfa-feed:before { + content: "\a0269"; +} +.sh-thinfa-fax:before { + content: "\a0268"; +} +.sh-thinfa-eye-slash:before { + content: "\a0267"; +} +.sh-thinfa-eyedropper:before { + content: "\a0266"; +} +.sh-thinfa-external-link-square:before { + content: "\a0265"; +} +.sh-thinfa-exclamation-circle:before { + content: "\a0264"; +} +.sh-thinfa-exclamation:before { + content: "\a0263"; +} +.sh-thinfa-envelope-square:before { + content: "\a0262"; +} +.sh-thinfa-envelope-open-o:before { + content: "\a0261"; +} +.sh-thinfa-envelope-open:before { + content: "\a0260"; +} +.sh-thinfa-envelope-o:before { + content: "\a0259"; +} +.sh-thinfa-drivers-license-o:before { + content: "\a0258"; +} +.sh-thinfa-drivers-license:before { + content: "\a0257"; +} +.sh-thinfa-dot-circle-o:before { + content: "\a0256"; +} +.sh-thinfa-diamond:before { + content: "\a0255"; +} +.sh-thinfa-deafness:before { + content: "\a0254"; +} +.sh-thinfa-deaf:before { + content: "\a0253"; +} +.sh-thinfa-dashboard:before { + content: "\a0252"; +} +.sh-thinfa-cube:before { + content: "\a0251"; +} +.sh-thinfa-crosshairs:before { + content: "\a0250"; +} +.sh-thinfa-crop:before { + content: "\a0249"; +} +.sh-thinfa-credit-card-alt:before { + content: "\a0248"; +} +.sh-thinfa-copyright:before { + content: "\a0247"; +} +.sh-thinfa-compass:before { + content: "\a0246"; +} +.sh-thinfa-comments-o:before { + content: "\a0245"; +} +.sh-thinfa-comment-o:before { + content: "\a0244"; +} +.sh-thinfa-commenting-o:before { + content: "\a0243"; +} +.sh-thinfa-commenting:before { + content: "\a0242"; +} +.sh-thinfa-comment:before { + content: "\a0241"; +} +.sh-thinfa-coffee:before { + content: "\a0240"; +} +.sh-thinfa-code-fork:before { + content: "\a0239"; +} +.sh-thinfa-cloud-upload:before { + content: "\a0238"; +} +.sh-thinfa-cloud-download:before { + content: "\a0237"; +} +.sh-thinfa-cloud:before { + content: "\a0236"; +} +.sh-thinfa-close:before { + content: "\a0235"; +} +.sh-thinfa-clone:before { + content: "\a0234"; +} +.sh-thinfa-circle-thin:before { + content: "\a0233"; +} +.sh-thinfa-circle-o-notch:before { + content: "\a0232"; +} +.sh-thinfa-child:before { + content: "\a0231"; +} +.sh-thinfa-check-square-o:before { + content: "\a0230"; +} +.sh-thinfa-check-circle-o:before { + content: "\a0229"; +} +.sh-thinfa-certificate:before { + content: "\a0228"; +} +.sh-thinfa-cc:before { + content: "\a0227"; +} +.sh-thinfa-cart-plus:before { + content: "\a0226"; +} +.sh-thinfa-cart-arrow-down:before { + content: "\a0225"; +} +.sh-thinfa-caret-square-o-up:before { + content: "\a0224"; +} +.sh-thinfa-caret-square-o-right:before { + content: "\a0223"; +} +.sh-thinfa-caret-square-o-left:before { + content: "\a0222"; +} +.sh-thinfa-caret-square-o-down:before { + content: "\a0221"; +} +.sh-thinfa-camera-retro:before { + content: "\a0220"; +} +.sh-thinfa-camera:before { + content: "\a0219"; +} +.sh-thinfa-calendar-times-o:before { + content: "\a0218"; +} +.sh-thinfa-calendar-minus-o:before { + content: "\a0217"; +} +.sh-thinfa-calculator:before { + content: "\a0216"; +} +.sh-thinfa-cab:before { + content: "\a0215"; +} +.sh-thinfa-bus:before { + content: "\a0214"; +} +.sh-thinfa-bullhorn:before { + content: "\a0213"; +} +.sh-thinfa-briefcase:before { + content: "\a0212"; +} +.sh-thinfa-braille:before { + content: "\a0211"; +} +.sh-thinfa-bomb:before { + content: "\a0210"; +} +.sh-thinfa-bolt:before { + content: "\a0209"; +} +.sh-thinfa-bluetooth-b:before { + content: "\a0208"; +} +.sh-thinfa-bluetooth:before { + content: "\a0207"; +} +.sh-thinfa-blind:before { + content: "\a0206"; +} +.sh-thinfa-birthday-cake:before { + content: "\a0205"; +} +.sh-thinfa-binoculars:before { + content: "\a0204"; +} +.sh-thinfa-bicycle:before { + content: "\a0203"; +} +.sh-thinfa-bell-slash-o:before { + content: "\a0202"; +} +.sh-thinfa-bell-o:before { + content: "\a0201"; +} +.sh-thinfa-bell:before { + content: "\a0200"; +} +.sh-thinfa-beer:before { + content: "\a0199"; +} +.sh-thinfa-bed:before { + content: "\a0198"; +} +.sh-thinfa-battery-three-quarters:before { + content: "\a0197"; +} +.sh-thinfa-battery-quarter:before { + content: "\a0196"; +} +.sh-thinfa-battery-half:before { + content: "\a0195"; +} +.sh-thinfa-battery-full:before { + content: "\a0194"; +} +.sh-thinfa-battery-empty:before { + content: "\a0193"; +} +.sh-thinfa-battery-4:before { + content: "\a0192"; +} +.sh-thinfa-battery-3:before { + content: "\a0191"; +} +.sh-thinfa-battery-2:before { + content: "\a0190"; +} +.sh-thinfa-battery-1:before { + content: "\a0189"; +} +.sh-thinfa-battery-0:before { + content: "\a0188"; +} +.sh-thinfa-battery:before { + content: "\a0187"; +} +.sh-thinfa-bathtub:before { + content: "\a0186"; +} +.sh-thinfa-bath:before { + content: "\a0185"; +} +.sh-thinfa-barcode:before { + content: "\a0184"; +} +.sh-thinfa-bar-chart-o:before { + content: "\a0183"; +} +.sh-thinfa-bank:before { + content: "\a0182"; +} +.sh-thinfa-ban:before { + content: "\a0181"; +} +.sh-thinfa-balance-scale:before { + content: "\a0180"; +} +.sh-thinfa-automobile:before { + content: "\a0179"; +} +.sh-thinfa-audio-description:before { + content: "\a0178"; +} +.sh-thinfa-at:before { + content: "\a0177"; +} +.sh-thinfa-asterisk:before { + content: "\a0176"; +} +.sh-thinfa-assistive-listening-systems:before { + content: "\a0175"; +} +.sh-thinfa-asl-interpreting:before { + content: "\a0174"; +} +.sh-thinfa-arrows-h:before { + content: "\a0173"; +} +.sh-thinfa-archive:before { + content: "\a0172"; +} +.sh-thinfa-anchor:before { + content: "\a0171"; +} +.sh-thinfa-american-sign-language-interpreting:before { + content: "\a0170"; +} +.sh-thinfa-address-card-o:before { + content: "\a0169"; +} +.sh-thinfa-address-card:before { + content: "\a0168"; +} +.sh-thinfa-address-book-o:before { + content: "\a0167"; +} +.sh-thinfa-address-book:before { + content: "\a0166"; +} +.sh-thinfa-compress:before { + content: "\a0165"; +} +.sh-thinfa-eye:before { + content: "\a0164"; +} +.sh-thinfa-angle-double-right:before { + content: "\a0163"; +} +.sh-thinfa-caret-right:before { + content: "\a0162"; +} +.sh-thinfa-angle-up:before { + content: "\a0161"; +} +.sh-thinfa-minus:before { + content: "\a0160"; +} +.sh-thinfa-eraser:before { + content: "\a0159"; +} +.sh-thinfa-unlink:before { + content: "\a0158"; +} +.sh-thinfa-chain:before { + content: "\a0157"; +} +.sh-thinfa-link:before { + content: "\a0156"; +} +.sh-thinfa-list-ol:before { + content: "\a0155"; +} +.sh-thinfa-paint-brush:before { + content: "\a0154"; +} +.sh-thinfa-font:before { + content: "\a0153"; +} +.sh-thinfa-strikethrough:before { + content: "\a0152"; +} +.sh-thinfa-underline:before { + content: "\a0151"; +} +.sh-thinfa-italic:before { + content: "\a0150"; +} +.sh-thinfa-bold:before { + content: "\a0149"; +} +.sh-thinfa-heart:before { + content: "\a0148"; +} +.sh-thinfa-times-circle-o:before { + content: "\a0147"; +} +.sh-thinfa-square-o:before { + content: "\a0146"; +} +.sh-thinfa-check-square:before { + content: "\a0145"; +} +.sh-thinfa-volume-down:before { + content: "\a0144"; +} +.sh-thinfa-volume-up:before { + content: "\a0143"; +} +.sh-thinfa-volume-off:before { + content: "\a0142"; +} +.sh-thinfa-microphone:before { + content: "\a0141"; +} +.sh-thinfa-arrows-alt:before { + content: "\a0140"; +} +.sh-thinfa-desktop:before { + content: "\a0139"; +} +.sh-thinfa-headphones:before { + content: "\a0138"; +} +.sh-thinfa-microphone-slash:before { + content: "\a0137"; +} +.sh-thinsh-icon-tasks1:before { + content: "\a0136"; +} +.sh-thinsh-icon-sun:before { + content: "\a0135"; +} +.sh-thinsh-icon-moon:before { + content: "\a0134"; +} +.sh-thinsh-icon-language-selector:before { + content: "\a0133"; +} +.sh-thinsh-icon-expand1:before { + content: "\a0132"; +} +.sh-thinsh-icon-compress1:before { + content: "\a0131"; +} +.sh-thinsh-icon-calculator1:before { + content: "\a0130"; +} +.sh-thinfa-bookmark-o:before { + content: "\a0129"; +} +.sh-thinfa-bookmark:before { + content: "\a0128"; +} +.sh-thinfa-wrench:before { + content: "\a0127"; +} +.sh-thinfa-video-camera:before { + content: "\a0126"; +} +.sh-thinfa-users:before { + content: "\a0125"; +} +.sh-thinfa-user-plus:before { + content: "\a0124"; +} +.sh-thinfa-user:before { + content: "\a0123"; +} +.sh-thinfa-usd:before { + content: "\a0122"; +} +.sh-thinfa-upload:before { + content: "\a0121"; +} +.sh-thinfa-university:before { + content: "\a0120"; +} +.sh-thinfa-undo:before { + content: "\a0119"; +} +.sh-thinfa-truck:before { + content: "\a0118"; +} +.sh-thinfa-trophy:before { + content: "\a0117"; +} +.sh-thinfa-trash-o:before { + content: "\a0116"; +} +.sh-thinfa-trash:before { + content: "\a0115"; +} +.sh-thinfa-toggle-on:before { + content: "\a0114"; +} +.sh-thinfa-toggle-off:before { + content: "\a0113"; +} +.sh-thinfa-times-circle:before { + content: "\a0112"; +} +.sh-thinfa-times:before { + content: "\a0111"; +} +.sh-thinfa-ticket:before { + content: "\a0110"; +} +.sh-thinfa-thumbs-up:before { + content: "\a0109"; +} +.sh-thinfa-th-list:before { + content: "\a0108"; +} +.sh-thinfa-th-large:before { + content: "\a0107"; +} +.sh-thinfa-th:before { + content: "\a0106"; +} +.sh-thinfa-tasks:before { + content: "\a0105"; +} +.sh-thinfa-tachometer:before { + content: "\a0104"; +} +.sh-thinfa-table:before { + content: "\a0103"; +} +.sh-thinfa-sun-o:before { + content: "\a0102"; +} +.sh-thinfa-star:before { + content: "\a0101"; +} +.sh-thinfa-star-o:before { + content: "\a0100"; +} +.sh-thinfa-sort-amount-desc:before { + content: "\a0099"; +} +.sh-thinfa-sort-amount-asc:before { + content: "\a0098"; +} +.sh-thinfa-sort:before { + content: "\a0097"; +} +.sh-thinfa-smile-o:before { + content: "\a0096"; +} +.sh-thinfa-sitemap:before { + content: "\a0095"; +} +.sh-thinfa-sign-out:before { + content: "\a0094"; +} +.sh-thinfa-sign-in:before { + content: "\a0093"; +} +.sh-thinfa-signal:before { + content: "\a0092"; +} +.sh-thinfa-shopping-basket:before { + content: "\a0091"; +} +.sh-thinfa-search-plus:before { + content: "\a0090"; +} +.sh-thinfa-search:before { + content: "\a0089"; +} +.sh-thinfa-save:before { + content: "\a0088"; +} +.sh-thinfa-reply:before { + content: "\a0087"; +} +.sh-thinfa-repeat:before { + content: "\a0086"; +} +.sh-thinfa-refresh:before { + content: "\a0085"; +} +.sh-thinfa-random:before { + content: "\a0084"; +} +.sh-thinfa-puzzle-piece:before { + content: "\a0083"; +} +.sh-thinfa-print:before { + content: "\a0082"; +} +.sh-thinfa-plus-square:before { + content: "\a0081"; +} +.sh-thinfa-plus-circle:before { + content: "\a0080"; +} +.sh-thinfa-plus:before { + content: "\a0079"; +} +.sh-thinfa-plane:before { + content: "\a0078"; +} +.sh-thinfa-pie-chart:before { + content: "\a0077"; +} +.sh-thinfa-phone:before { + content: "\a0076"; +} +.sh-thinfa-pencil-square-o:before { + content: "\a0075"; +} +.sh-thinfa-pencil:before { + content: "\a0074"; +} +.sh-thinfa-paper-plane-o:before { + content: "\a0073"; +} +.sh-thinfa-paper-plane:before { + content: "\a0072"; +} +.sh-thinfa-paperclip:before { + content: "\a0071"; +} +.sh-thinfa-mouse-pointer:before { + content: "\a0070"; +} +.sh-thinfa-money:before { + content: "\a0069"; +} +.sh-thinfa-mobile:before { + content: "\a0068"; +} +.sh-thinfa-minus-square:before { + content: "\a0067"; +} +.sh-thinfa-minus-circle:before { + content: "\a0066"; +} +.sh-thinfa-map-marker:before { + content: "\a0065"; +} +.sh-thinfa-long-arrow-right:before { + content: "\a0064"; +} +.sh-thinfa-list-ul:before { + content: "\a0063"; +} +.sh-thinfa-list-alt:before { + content: "\a0062"; +} +.sh-thinfa-list:before { + content: "\a0061"; +} +.sh-thinfa-line-chart:before { + content: "\a0060"; +} +.sh-thinfa-level-up:before { + content: "\a0059"; +} +.sh-thinfa-info-circle:before { + content: "\a0058"; +} +.sh-thinfa-inbox:before { + content: "\a0057"; +} +.sh-thinfa-id-card-o:before { + content: "\a0056"; +} +.sh-thinfa-hourglass-half:before { + content: "\a0055"; +} +.sh-thinfa-history:before { + content: "\a0054"; +} +.sh-thinfa-hashtag:before { + content: "\a0053"; +} +.sh-thinfa-globe:before { + content: "\a0052"; +} +.sh-thinfa-gift:before { + content: "\a0051"; +} +.sh-thinfa-folder:before { + content: "\a0050"; +} +.sh-thinfa-flask:before { + content: "\a0049"; +} +.sh-thinfa-filter:before { + content: "\a0048"; +} +.sh-thinfa-file-text-o:before { + content: "\a0047"; +} +.sh-thinfa-files-o:before { + content: "\a0046"; +} +.sh-thinfa-external-link:before { + content: "\a0045"; +} +.sh-thinfa-expand:before { + content: "\a0044"; +} +.sh-thinfa-exclamation-triangle:before { + content: "\a0043"; +} +.sh-thinfa-exchange:before { + content: "\a0042"; +} +.sh-thinfa-envelope:before { + content: "\a0041"; +} +.sh-thinfa-ellipsis-v:before { + content: "\a0040"; +} +.sh-thinfa-ellipsis-h:before { + content: "\a0039"; +} +.sh-thinfa-edit:before { + content: "\a0038"; +} +.sh-thinfa-download:before { + content: "\a0037"; +} +.sh-thinfa-database:before { + content: "\a0036"; +} +.sh-thinfa-cutlery:before { + content: "\a0035"; +} +.sh-thinfa-cubes:before { + content: "\a0034"; +} +.sh-thinfa-credit-card:before { + content: "\a0033"; +} +.sh-thinfa-comments:before { + content: "\a0032"; +} +.sh-thinfa-cogs:before { + content: "\a0031"; +} +.sh-thinfa-cog:before { + content: "\a0030"; +} +.sh-thinfa-code:before { + content: "\a0029"; +} +.sh-thinfa-clock-o:before { + content: "\a0028"; +} +.sh-thinfa-circle-o:before { + content: "\a0027"; +} +.sh-thinfa-circle:before { + content: "\a0026"; +} +.sh-thinfa-chevron-left:before { + content: "\a0025"; +} +.sh-thinfa-chevron-right:before { + content: "\a0024"; +} +.sh-thinfa-chevron-down:before { + content: "\a0023"; +} +.sh-thinfa-check-circle:before { + content: "\a0022"; +} +.sh-thinfa-check:before { + content: "\a0021"; +} +.sh-thinfa-caret-down:before { + content: "\a0020"; +} +.sh-thinfa-car:before { + content: "\a0019"; +} +.sh-thinfa-calendar-plus-o:before { + content: "\a0018"; +} +.sh-thinfa-calendar-o:before { + content: "\a0017"; +} +.sh-thinfa-calendar-check-o:before { + content: "\a0016"; +} +.sh-thinfa-calendar:before { + content: "\a0015"; +} +.sh-thinfa-bullseye:before { + content: "\a0014"; +} +.sh-thinfa-building-o:before { + content: "\a0013"; +} +.sh-thinfa-building:before { + content: "\a0012"; +} +.sh-thinfa-bug:before { + content: "\a0011"; +} +.sh-thinfa-book:before { + content: "\a0010"; +} +.sh-thinfa-bell-slash:before { + content: "\a0009"; +} +.sh-thinfa-bars:before { + content: "\a0008"; +} +.sh-thinfa-bar-chart:before { + content: "\a0007"; +} +.sh-thinfa-arrow-up:before { + content: "\a0006"; +} +.sh-thinfa-arrows-v:before { + content: "\a0005"; +} +.sh-thinfa-arrows:before { + content: "\a0004"; +} +.sh-thinfa-arrow-left:before { + content: "\a0003"; +} +.sh-thinfa-arrow-right:before { + content: "\a0002"; +} +.sh-thinfa-area-chart:before { + content: "\a0001"; +} +.sh-thinfa-adjust:before { + content: "\a0000"; +} diff --git a/custom_addons/backend_base/static/src/xml/notification_menu.xml b/custom_addons/backend_base/static/src/xml/notification_menu.xml new file mode 100644 index 000000000..3811ccb26 --- /dev/null +++ b/custom_addons/backend_base/static/src/xml/notification_menu.xml @@ -0,0 +1,51 @@ + + + +
+ + +
+
+
diff --git a/custom_addons/backend_base/views/res_config_setting.xml b/custom_addons/backend_base/views/res_config_setting.xml new file mode 100644 index 000000000..0bea4b08f --- /dev/null +++ b/custom_addons/backend_base/views/res_config_setting.xml @@ -0,0 +1,54 @@ + + + + sh.push.noti.config.form + res.config.settings + + + +
+

Notifications

+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/custom_addons/backend_base/views/sh_user_push_notification_views.xml b/custom_addons/backend_base/views/sh_user_push_notification_views.xml new file mode 100644 index 000000000..4d86b944a --- /dev/null +++ b/custom_addons/backend_base/views/sh_user_push_notification_views.xml @@ -0,0 +1,23 @@ + + + + sh.user.push.notification.tree + sh.user.push.notification + + + + + + + + + + + + + +
+ +
+
+
+ +

+ Samashti Stock Dashboard +

+ +

+ to +

+
+ +
+ + +
+ + +
+ + +
+ + +
+ +
+
+
+
+
+ + +
+
+
+

+ Samashti Sale Margin Dashboard +

+ +

+ to +

+
+ +
+ + +
+ + +
+ + +
+ + +
+ +
+
+
+
+
+
+ + + + + +
+
+
+ Stock Data Grid + +
+
+
+
+
+
+
+ + + +
+
+
+ Sale Margin Data Grid + +
+
+
+
+
+
+
+ + + + \ No newline at end of file diff --git a/custom_addons/dashboard/views/pqgrid_dashboard.xml b/custom_addons/dashboard/views/pqgrid_dashboard.xml new file mode 100644 index 000000000..94d3c5bba --- /dev/null +++ b/custom_addons/dashboard/views/pqgrid_dashboard.xml @@ -0,0 +1,14 @@ + + + + + Dashboard + SamashtiDashboard + {'user_id':uid} + + + + \ No newline at end of file diff --git a/custom_addons/grn/__init__.py b/custom_addons/grn/__init__.py new file mode 100644 index 000000000..5305644df --- /dev/null +++ b/custom_addons/grn/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import models \ No newline at end of file diff --git a/custom_addons/grn/__manifest__.py b/custom_addons/grn/__manifest__.py new file mode 100644 index 000000000..d9554cb92 --- /dev/null +++ b/custom_addons/grn/__manifest__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +{ + 'name': 'GRN', + 'version': '1.0', + 'summary': 'Goods Recepts Note', + 'description': ''' + Stock Goods Recepts Note Stock Update + ''', + 'category': 'Inventory', + 'author': 'Raman Marikanti', + 'depends': ['base', 'mail','stock_account','product'], + 'data': [ + 'data/ir_sequence.xml', + 'security/ir.model.access.csv', + 'views/grn_views.xml', + 'report/grn_report_action.xml', + 'report/report_grn_template.xml' + ], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} \ No newline at end of file diff --git a/custom_addons/grn/data/ir_sequence.xml b/custom_addons/grn/data/ir_sequence.xml new file mode 100644 index 000000000..c57be63d4 --- /dev/null +++ b/custom_addons/grn/data/ir_sequence.xml @@ -0,0 +1,12 @@ + + + + + GRN + grn + GRN/%(year)s/ + 5 + + + + \ No newline at end of file diff --git a/custom_addons/grn/models/__init__.py b/custom_addons/grn/models/__init__.py new file mode 100644 index 000000000..c88e11378 --- /dev/null +++ b/custom_addons/grn/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import grn diff --git a/custom_addons/grn/models/grn.py b/custom_addons/grn/models/grn.py new file mode 100644 index 000000000..e4cf4b886 --- /dev/null +++ b/custom_addons/grn/models/grn.py @@ -0,0 +1,219 @@ +# -*- coding: utf-8 -*- +from email.policy import default + +from odoo import _, api, fields, models +from odoo.exceptions import ValidationError, UserError + +class Grn(models.Model): + _name = 'grn' + _description = 'Goods Receipt Note' + _inherit = ['mail.thread', 'mail.activity.mixin', 'product.catalog.mixin'] + + name = fields.Char( + string='Name', + copy=False, + readonly=True, + default=lambda self: _('New') + ) + vendor_id = fields.Many2one('res.partner', string='Vendor', readonly=True, ) + note = fields.Text(string='Source Document / Note') + date = fields.Date(string='Date', default=fields.Date.context_today, copy=False) + picking_id = fields.Many2one("stock.picking", string="Stock Transfer", copy=False) + state = fields.Selection( + [('draft', 'Draft'), ('confirmed', 'Confirmed'), ('done', 'Done'), ('cancel', 'Cancelled')], + string='State', + default='draft', + tracking=True + ) + grn_line_ids = fields.One2many('grn.lines', 'grn_id', string="GRN Lines") + received_by = fields.Many2one('res.users', string='Received By') + location_id = fields.Many2one( + 'stock.location', + string='To', + domain="[('usage', '=', 'internal')]", + required=True + ) + total_amount = fields.Float(string='Amount', compute='_compute_total_amount') + company_id = fields.Many2one( + 'res.company', + string='Company', + required=True, + readonly=True, + default=lambda self: self.env.company, + ) + + def _get_product_catalog_order_data(self, products, **kwargs): + res = super()._get_product_catalog_order_data(products, **kwargs) + return res + + @api.depends('grn_line_ids') + def _compute_total_amount(self): + """Compute the value of the field computed_field.""" + for record in self: + amount = 0 + for line in record.grn_line_ids: + amount += (line.quantity * line.price) + record.total_amount = amount + + + + + def button_action_confirm(self): + """Confirm the GRN and assign sequence and received user""" + if not self.grn_line_ids: + raise UserError(_( + "Cannot confirm the GRN '%s' because no products have been added in the lines. " + "Please add at least one product before confirming." + ) % self.name) + + if not self.name or self.name == _('New'): + self.name = self.env['ir.sequence'].next_by_code('grn') or _('New') + self.state = 'confirmed' + self.received_by = self.env.user + for line in self.grn_line_ids: + if line.price: + continue + else: + line.price = line.product_id.standard_price + + def button_action_done(self): + """Set GRN state to done if picking is completed""" + if not self.picking_id or self.picking_id.state != 'done': + raise ValidationError(_( + "Cannot mark the GRN '%s' as done because the associated stock transfer is not yet completed. " + "Please complete the transfer before proceeding." + ) % (self.name,)) + if self.state == 'confirmed': + self.state = 'done' + + def button_action_cancel(self): + """Cancel GRN if stock transfer is not done""" + if self.picking_id and self.picking_id.state == 'done': + raise ValidationError(_( + "Cannot cancel the GRN '%s' because the stock transfer '%s' has already been completed. " + ) % (self.name, self.picking_id.name)) + if self.picking_id: + self.picking_id.action_cancel() + self.picking_id.unlink() + self.state = 'cancel' + + def button_action_reset_to_draft(self): + self.state = 'draft' + + def button_create_transfer(self): + """Create stock picking for confirmed GRN""" + if self.picking_id: + return + if self.state != 'confirmed': + raise UserError(_( + "The GRN '%s' cannot be transferred because it is not confirmed yet. " + "Please confirm the GRN first." + ) % self.name) + + picking_type = self.env['stock.picking.type'].search([('code', '=', 'incoming')], limit=1) + if not picking_type: + raise UserError(_( + "No Incoming Picking Type is configured in the system. " + "Please create an Incoming Picking Type before transferring GRN '%s'." + ) % self.name) + + picking = self.env['stock.picking'].create({ + 'origin': self.name, + 'location_dest_id': self.location_id.id, + 'location_id': picking_type.default_location_src_id.id, + 'picking_type_id': picking_type.id, + 'partner_id':self.vendor_id.id + }) + + moves = [] + for line in self.grn_line_ids: + moves.append((0, 0, { + 'name': line.product_id.name, + 'product_id': line.product_id.id, + 'product_uom': line.product_uom_id.id, + 'product_uom_qty': line.quantity, + 'location_id': picking_type.default_location_src_id.id, + 'location_dest_id': self.location_id.id, + 'price_unit': line.price if line.price > 1 else line.product_id.standard_price, + })) + picking.write({'move_ids_without_package': moves}) + picking.action_confirm() + for move in picking: + move.location_dest_id = self.location_id + picking.location_dest_id = self.location_id + self.picking_id = picking + + def action_view_transfer(self): + """Return action to view related stock picking""" + self.ensure_one() + return { + 'type': 'ir.actions.act_window', + 'name': _('Receipts'), + 'res_model': 'stock.picking', + 'view_mode': 'form', + 'target': 'current', + 'res_id': self.picking_id.id, + } + + + @api.model_create_multi + def create(self, vals_list): + return super().create(vals_list) + + def write(self, vals): + return super().write(vals) + + def unlink(self): + if any(rec.state not in ['cancel', 'draft'] for rec in self): + raise UserError(_( + "Unable to delete the GRN '%s' because it has already been confirmed or processed. " + ) % self.name) + return super().unlink() + + def action_add_from_catalog(self): + res = super().action_add_from_catalog() + return res + + +class GrnLines(models.Model): + _name = 'grn.lines' + _description = 'GRN Lines' + + grn_id = fields.Many2one('grn', string="GRN", required=True, ondelete='cascade') + product_id = fields.Many2one( + 'product.product', + string='Product', + ondelete="cascade", + domain=[('type', '!=', 'service'),('purchase_ok','=',True)], + index=True + ) + product_uom_id = fields.Many2one(related='product_id.uom_id', string='Unit of Measure') + quantity = fields.Float('Quantity', digits='Product Unit of Measure') + price = fields.Float("Unit Price") + total_price = fields.Float("Total Price", compute='_compute_product_total_price', store=True) + + @api.depends('quantity', 'price') + def _compute_product_total_price(self): + for rec in self: + rec.total_price = rec.quantity * rec.price if rec.quantity and rec.price else 0 + + @api.constrains('product_id') + def _check_unique_product_grn(self): + for rec in self: + duplicate_lines = rec.grn_id.grn_line_ids.filtered(lambda l: l.product_id == rec.product_id) + if len(duplicate_lines) > 1: + raise UserError(_('The product %s already exists in the GRN.') % rec.product_id.display_name) + + + def action_add_from_catalog(self): + order = self.env['grn'].browse(self.env.context.get('order_id')) + return order.with_context(child_field='grn_line_ids').action_add_from_catalog() + + + + def unlink(self): + if any(rec.grn_id.state not in ['cancel', 'draft'] for rec in self): + raise UserError(_( + "Unable to delete the GRN '%s' because it has already been confirmed or processed. " + ) % self.name) + return super().unlink() diff --git a/custom_addons/grn/report/grn_report_action.xml b/custom_addons/grn/report/grn_report_action.xml new file mode 100644 index 000000000..4d101704e --- /dev/null +++ b/custom_addons/grn/report/grn_report_action.xml @@ -0,0 +1,11 @@ + + + + Goods Receipt Note + grn + qweb-pdf + grn.report_grn_document_template + grn.report_grn_document_template + 'GRN - %s' % (object.name.replace("/","")) + + diff --git a/custom_addons/grn/report/report_grn_template.xml b/custom_addons/grn/report/report_grn_template.xml new file mode 100644 index 000000000..423ce44ec --- /dev/null +++ b/custom_addons/grn/report/report_grn_template.xml @@ -0,0 +1,112 @@ + + + + diff --git a/custom_addons/grn/security/ir.model.access.csv b/custom_addons/grn/security/ir.model.access.csv new file mode 100644 index 000000000..c21c64e6b --- /dev/null +++ b/custom_addons/grn/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_grn_user,access.grn.user,model_grn,base.group_user,1,1,1,1 +access_grn_lines_user,access.grn.lines.user,model_grn_lines,base.group_user,1,1,1,1 \ No newline at end of file diff --git a/custom_addons/grn/static/description/icon.png b/custom_addons/grn/static/description/icon.png new file mode 100644 index 000000000..eebc70965 Binary files /dev/null and b/custom_addons/grn/static/description/icon.png differ diff --git a/custom_addons/grn/views/grn_views.xml b/custom_addons/grn/views/grn_views.xml new file mode 100644 index 000000000..82f8e74ce --- /dev/null +++ b/custom_addons/grn/views/grn_views.xml @@ -0,0 +1,179 @@ + + + + + grn.view.form + grn + +
+
+
+ +
+ +
+
+
+ + + + + + + + + + + + + + + + + +