From 97a93e0d581bfb955ec1ea76a456dccbeb441fed Mon Sep 17 00:00:00 2001 From: ashubawork Date: Wed, 3 Apr 2024 14:38:27 +0300 Subject: [PATCH 01/50] - fix include modal templates --- includes/core/class-modal.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/includes/core/class-modal.php b/includes/core/class-modal.php index 19c76e33..7b3554e2 100644 --- a/includes/core/class-modal.php +++ b/includes/core/class-modal.php @@ -1,9 +1,10 @@ get_priority() ); } @@ -28,7 +29,7 @@ if ( ! class_exists( 'um\core\Modal' ) ) { /** * @return int */ - function get_priority() { + public function get_priority() { return apply_filters( 'um_core_includes_modals_priority', 9 ); } @@ -36,18 +37,16 @@ if ( ! class_exists( 'um\core\Modal' ) ) { /** * Load modal content */ - function load_modal_content() { - + public function load_modal_content() { if ( ! is_admin() ) { $modal_templates = glob( UM_PATH . 'templates/modal/*.php' ); - + $modal_templates = array_map( 'basename', $modal_templates ); if ( ! empty( $modal_templates ) ) { foreach ( $modal_templates as $modal_content ) { - include_once $modal_content; + UM()->get_template( 'modal/' . $modal_content, '', array(), true ); } } } - } } From 9229aadce31fcfa787e143c5b35ef2d6ed925d1f Mon Sep 17 00:00:00 2001 From: ashubawork Date: Sat, 6 Apr 2024 10:13:41 +0300 Subject: [PATCH 02/50] - assign default forms after deleting old forms --- includes/admin/core/class-admin-settings.php | 50 ++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/includes/admin/core/class-admin-settings.php b/includes/admin/core/class-admin-settings.php index 74af0edc..31e8141a 100644 --- a/includes/admin/core/class-admin-settings.php +++ b/includes/admin/core/class-admin-settings.php @@ -70,6 +70,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) { add_filter( 'um_change_settings_before_save', array( $this, 'set_default_if_empty' ), 9, 1 ); add_filter( 'um_change_settings_before_save', array( $this, 'remove_empty_values' ), 10, 1 ); + add_action( 'wp_trash_post', array( $this, 'change_default_form' ) ); } @@ -3515,5 +3516,54 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) { return $settings; } + + + public function change_default_form( $form_id ) { + if ( 'um_form' === get_post_type( $form_id ) ) { + $core_forms = get_option( 'um_core_forms', array() ); + $mode = get_post_meta( $form_id, '_um_mode', true ); + if ( isset( $mode ) && absint( $form_id ) === absint( $core_forms[ $mode ] ) ) { + $args = array( + 'post_type' => 'um_form', + 'meta_key' => '_um_mode', + 'meta_value' => $mode, + 'posts_per_page' => 1, + 'orderby' => 'date', + 'post_status' => 'publish', + 'order' => 'DESC', + 'fields' => 'ids', + 'post__not_in' => array( $form_id ), + ); + + $forms = get_posts( $args ); + if ( ! empty( $forms ) ) { + $new_form_id = $forms[0]; + $core_forms[ $mode ] = $new_form_id; + + /** + * Filters Ultimate Member default forms ids. + * + * @param {array} $core_forms Default forms ids. + * @param {int} $form_id Deleted form ID. + * + * @return {array} Default forms ids. + * + * @since 2.8.x + * @hook um_default_forms_ids + * + * @example Set default profile form ID as 1. + * function my_um_default_forms_ids( $core_forms, $form_id ) { + * // your code here + * $core_forms['profile'] = 1; + * return $core_forms; + * } + * add_filter( 'um_default_forms_ids', 'my_um_default_forms_ids', 10, 2 ); + */ + $core_forms = apply_filters( 'um_default_forms_ids', $core_forms, $form_id ); + update_option( 'um_core_forms', $core_forms ); + } + } + } + } } } From bdba6dcbec6e32a6c069fbd34cc1540af362701d Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Tue, 9 Apr 2024 23:28:52 +0300 Subject: [PATCH 03/50] - updated readme.txt; --- readme.txt | 6 ++++++ ultimate-member.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index f628c62e..92a701d6 100644 --- a/readme.txt +++ b/readme.txt @@ -166,6 +166,12 @@ No specific extensions are needed. But we highly recommended keep active these P IMPORTANT: PLEASE UPDATE THE PLUGIN TO AT LEAST VERSION 2.6.7 IMMEDIATELY. VERSION 2.6.7 PATCHES SECURITY PRIVILEGE ESCALATION VULNERABILITY. PLEASE SEE [THIS ARTICLE](https://docs.ultimatemember.com/article/1866-security-incident-update-and-recommended-actions) FOR MORE INFORMATION += 2.8.6 2024-04-xx = + +**Enhancements** + +**Bugfixes** + = 2.8.5 2024-04-09 = **Enhancements** diff --git a/ultimate-member.php b/ultimate-member.php index d7e522b3..e3538615 100644 --- a/ultimate-member.php +++ b/ultimate-member.php @@ -3,7 +3,7 @@ * Plugin Name: Ultimate Member * Plugin URI: http://ultimatemember.com/ * Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress - * Version: 2.8.5 + * Version: 2.8.6-alpha * Author: Ultimate Member * Author URI: http://ultimatemember.com/ * Text Domain: ultimate-member From b9203e12c30ecf1822b7dcad0e7b48e72bd1394a Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 10 Apr 2024 12:08:04 +0300 Subject: [PATCH 04/50] - added blueprint.json for wp.org plugin preview; --- blueprint.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 blueprint.json diff --git a/blueprint.json b/blueprint.json new file mode 100644 index 00000000..ef1c589b --- /dev/null +++ b/blueprint.json @@ -0,0 +1,30 @@ +{ + "landingPage": "\/wp-admin\/plugins.php", + "preferredVersions": { + "php": "8.0", + "wp": "latest" + }, + "phpExtensionBundles": [ + "kitchen-sink" + ], + "features": { + "networking": true + }, + "steps": [ + { + "step": "installPlugin", + "pluginZipFile": { + "resource": "url", + "url": "https:\/\/downloads.wordpress.org\/plugin\/ultimate-member.2.8.6.zip" + }, + "options": { + "activate": true + } + }, + { + "step": "login", + "username": "admin", + "password": "password" + } + ] +} From cdd888a4d334e59c829636d7f8e886df5a83b1a0 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 10 Apr 2024 15:40:43 +0300 Subject: [PATCH 05/50] - fixed social URLs where user can put his social username (e.g. Instagram, Facebook); - WPCS for the built-in fields; - added blueprint.json; --- .../blueprints/blueprint.json | 0 includes/core/class-builtin.php | 617 +++++++++--------- includes/core/class-form.php | 4 +- 3 files changed, 314 insertions(+), 307 deletions(-) rename blueprint.json => .wordpress-org/blueprints/blueprint.json (100%) diff --git a/blueprint.json b/.wordpress-org/blueprints/blueprint.json similarity index 100% rename from blueprint.json rename to .wordpress-org/blueprints/blueprint.json diff --git a/includes/core/class-builtin.php b/includes/core/class-builtin.php index cf3b7958..a3dd150e 100644 --- a/includes/core/class-builtin.php +++ b/includes/core/class-builtin.php @@ -768,98 +768,98 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { $this->predefined_fields = array( - 'user_login' => array( - 'title' => __('Username','ultimate-member'), - 'metakey' => 'user_login', - 'type' => 'text', - 'label' => __('Username','ultimate-member'), - 'required' => 1, - 'public' => 1, - 'editable' => false, - 'validate' => 'unique_username', + 'user_login' => array( + 'title' => __( 'Username', 'ultimate-member' ), + 'metakey' => 'user_login', + 'type' => 'text', + 'label' => __( 'Username', 'ultimate-member' ), + 'required' => 1, + 'public' => 1, + 'editable' => false, + 'validate' => 'unique_username', 'min_chars' => 3, - 'max_chars' => 24 + 'max_chars' => 24, ), - 'username' => array( - 'title' => __('Username or Email','ultimate-member'), - 'metakey' => 'username', - 'type' => 'text', - 'label' => __('Username or Email','ultimate-member'), + 'username' => array( + 'title' => __( 'Username or Email', 'ultimate-member' ), + 'metakey' => 'username', + 'type' => 'text', + 'label' => __( 'Username or Email', 'ultimate-member' ), 'required' => 1, - 'public' => 1, + 'public' => 1, 'editable' => false, 'validate' => 'unique_username_or_email', ), - 'user_password' => array( - 'title' => __('Password','ultimate-member'), - 'metakey' => 'user_password', - 'type' => 'password', - 'label' => __('Password','ultimate-member'), - 'required' => 1, - 'public' => 1, - 'editable' => true, - 'min_chars' => 8, - 'max_chars' => 30, - 'force_good_pass' => 1, + 'user_password' => array( + 'title' => __( 'Password', 'ultimate-member' ), + 'metakey' => 'user_password', + 'type' => 'password', + 'label' => __( 'Password', 'ultimate-member' ), + 'required' => 1, + 'public' => 1, + 'editable' => true, + 'min_chars' => 8, + 'max_chars' => 30, + 'force_good_pass' => 1, 'force_confirm_pass' => 1, - 'label_confirm_pass' => __('Confirm Password','ultimate-member') + 'label_confirm_pass' => __( 'Confirm Password', 'ultimate-member' ), ), - 'first_name' => array( - 'title' => __('First Name','ultimate-member'), - 'metakey' => 'first_name', - 'type' => 'text', - 'label' => __('First Name','ultimate-member'), + 'first_name' => array( + 'title' => __( 'First Name', 'ultimate-member' ), + 'metakey' => 'first_name', + 'type' => 'text', + 'label' => __( 'First Name', 'ultimate-member' ), 'required' => 0, - 'public' => 1, + 'public' => 1, 'editable' => true, ), - 'last_name' => array( - 'title' => __('Last Name','ultimate-member'), - 'metakey' => 'last_name', - 'type' => 'text', - 'label' => __('Last Name','ultimate-member'), + 'last_name' => array( + 'title' => __( 'Last Name', 'ultimate-member' ), + 'metakey' => 'last_name', + 'type' => 'text', + 'label' => __( 'Last Name', 'ultimate-member' ), 'required' => 0, - 'public' => 1, + 'public' => 1, 'editable' => true, ), - 'nickname' => array( - 'title' => __('Nickname','ultimate-member'), - 'metakey' => 'nickname', - 'type' => 'text', - 'label' => __('Nickname','ultimate-member'), + 'nickname' => array( + 'title' => __( 'Nickname', 'ultimate-member' ), + 'metakey' => 'nickname', + 'type' => 'text', + 'label' => __( 'Nickname', 'ultimate-member' ), 'required' => 0, - 'public' => 1, + 'public' => 1, 'editable' => true, ), - 'user_url' => array( - 'title' => __('Website URL','ultimate-member'), - 'metakey' => 'user_url', - 'type' => 'url', - 'label' => __('Website URL','ultimate-member'), + 'user_url' => array( + 'title' => __( 'Website URL', 'ultimate-member' ), + 'metakey' => 'user_url', + 'type' => 'url', + 'label' => __( 'Website URL', 'ultimate-member' ), 'required' => 1, - 'public' => 1, + 'public' => 1, 'editable' => true, - 'validate' => 'url' + 'validate' => 'url', ), - 'user_registered' => array( - 'title' => __('Registration Date','ultimate-member'), - 'metakey' => 'user_registered', - 'type' => 'text', - 'label' => __('Registration Date','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'user_registered' => array( + 'title' => __( 'Registration Date', 'ultimate-member' ), + 'metakey' => 'user_registered', + 'type' => 'text', + 'label' => __( 'Registration Date', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'edit_forbidden' => 1, ), - '_um_last_login' => array( + '_um_last_login' => array( 'title' => __( 'Last Login', 'ultimate-member' ), 'metakey' => '_um_last_login', 'type' => 'text', @@ -870,43 +870,43 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'edit_forbidden' => 1, ), - 'user_email' => array( - 'title' => __('Email Address','ultimate-member'), - 'metakey' => 'user_email', - 'type' => 'text', - 'label' => __('Email Address','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'validate' => 'unique_email', - 'autocomplete' => 'off' + 'user_email' => array( + 'title' => __( 'Email Address', 'ultimate-member' ), + 'metakey' => 'user_email', + 'type' => 'text', + 'label' => __( 'Email Address', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'validate' => 'unique_email', + 'autocomplete' => 'off', ), 'secondary_user_email' => array( - 'title' => __('Secondary Email Address','ultimate-member'), - 'metakey' => 'secondary_user_email', - 'type' => 'text', - 'label' => __('Secondary Email Address','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, - 'validate' => 'unique_email', - 'autocomplete' => 'off' + 'title' => __( 'Secondary Email Address', 'ultimate-member' ), + 'metakey' => 'secondary_user_email', + 'type' => 'text', + 'label' => __( 'Secondary Email Address', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, + 'validate' => 'unique_email', + 'autocomplete' => 'off', ), - 'description' => array( - 'title' => __('Biography','ultimate-member'), - 'metakey' => 'description', - 'type' => 'textarea', - 'label' => __('Biography','ultimate-member'), - 'html' => 0, - 'required' => 0, - 'public' => 1, - 'editable' => true, - 'max_words' => 40, - 'placeholder' => __('Enter a bit about yourself...','ultimate-member'), + 'description' => array( + 'title' => __( 'Biography', 'ultimate-member' ), + 'metakey' => 'description', + 'type' => 'textarea', + 'label' => __( 'Biography', 'ultimate-member' ), + 'html' => 0, + 'required' => 0, + 'public' => 1, + 'editable' => true, + 'max_words' => 40, + 'placeholder' => __( 'Enter a bit about yourself...', 'ultimate-member' ), ), - 'birth_date' => array( + 'birth_date' => array( 'title' => __( 'Birth Date', 'ultimate-member' ), 'metakey' => 'birth_date', 'type' => 'date', @@ -920,45 +920,48 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'icon' => 'um-faicon-calendar', ), - 'gender' => array( - 'title' => __('Gender','ultimate-member'), - 'metakey' => 'gender', - 'type' => 'radio', - 'label' => __('Gender','ultimate-member'), + 'gender' => array( + 'title' => __( 'Gender', 'ultimate-member' ), + 'metakey' => 'gender', + 'type' => 'radio', + 'label' => __( 'Gender', 'ultimate-member' ), 'required' => 0, - 'public' => 1, + 'public' => 1, 'editable' => true, - 'options' => array( __('Male','ultimate-member'), __('Female','ultimate-member') ) + 'options' => array( + __( 'Male', 'ultimate-member' ), + __( 'Female', 'ultimate-member' ), + ), ), - 'country' => array( - 'title' => __('Country','ultimate-member'), - 'metakey' => 'country', - 'type' => 'select', - 'label' => __('Country','ultimate-member'), - 'placeholder' => __('Choose a Country','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, - 'options' => $this->get('countries') + 'country' => array( + 'title' => __( 'Country', 'ultimate-member' ), + 'metakey' => 'country', + 'type' => 'select', + 'label' => __( 'Country', 'ultimate-member' ), + 'placeholder' => __( 'Choose a Country', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, + 'options' => $this->get( 'countries' ), ), - 'facebook' => array( - 'title' => __('Facebook','ultimate-member'), - 'metakey' => 'facebook', - 'type' => 'url', - 'label' => __('Facebook','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'facebook' => array( + 'title' => __( 'Facebook', 'ultimate-member' ), + 'metakey' => 'facebook', + 'type' => 'url', + 'label' => __( 'Facebook', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'url_target' => '_blank', - 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-facebook', - 'validate' => 'facebook_url', - 'url_text' => 'Facebook', - 'advanced' => 'social', - 'color' => '#3B5999', - 'match' => 'https://facebook.com/', + 'url_rel' => 'nofollow', + 'icon' => 'um-faicon-facebook', + 'validate' => 'facebook_url', + 'url_text' => 'Facebook', + 'advanced' => 'social', + 'color' => '#3B5999', + 'match' => 'https://facebook.com/', ), 'twitter' => array( @@ -979,119 +982,119 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'match' => 'https://twitter.com/', ), - 'linkedin' => array( - 'title' => __('LinkedIn','ultimate-member'), - 'metakey' => 'linkedin', - 'type' => 'url', - 'label' => __('LinkedIn','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'linkedin' => array( + 'title' => __( 'LinkedIn', 'ultimate-member' ), + 'metakey' => 'linkedin', + 'type' => 'url', + 'label' => __( 'LinkedIn', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'url_target' => '_blank', - 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-linkedin', - 'validate' => 'linkedin_url', - 'url_text' => 'LinkedIn', - 'advanced' => 'social', - 'color' => '#0976b4', - 'match' => 'https://linkedin.com/', + 'url_rel' => 'nofollow', + 'icon' => 'um-faicon-linkedin', + 'validate' => 'linkedin_url', + 'url_text' => 'LinkedIn', + 'advanced' => 'social', + 'color' => '#0976b4', + 'match' => 'https://linkedin.com/', ), - 'instagram' => array( - 'title' => __('Instagram','ultimate-member'), - 'metakey' => 'instagram', - 'type' => 'url', - 'label' => __('Instagram','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'instagram' => array( + 'title' => __( 'Instagram', 'ultimate-member' ), + 'metakey' => 'instagram', + 'type' => 'url', + 'label' => __( 'Instagram', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'url_target' => '_blank', - 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-instagram', - 'validate' => 'instagram_url', - 'url_text' => 'Instagram', - 'advanced' => 'social', - 'color' => 'radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%)', - 'match' => 'https://instagram.com/', + 'url_rel' => 'nofollow', + 'icon' => 'um-faicon-instagram', + 'validate' => 'instagram_url', + 'url_text' => 'Instagram', + 'advanced' => 'social', + 'color' => 'radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%)', + 'match' => 'https://instagram.com/', ), - 'skype' => array( - 'title' => __('Skype ID','ultimate-member'), - 'metakey' => 'skype', - 'type' => 'text', - 'label' => __('Skype ID','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'skype' => array( + 'title' => __( 'Skype ID', 'ultimate-member' ), + 'metakey' => 'skype', + 'type' => 'text', + 'label' => __( 'Skype ID', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'url_target' => '_blank', - 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-skype', - 'validate' => 'skype', - 'url_text' => __( 'Join chat', 'ultimate-member' ), + 'url_rel' => 'nofollow', + 'icon' => 'um-faicon-skype', + 'validate' => 'skype', + 'url_text' => __( 'Join chat', 'ultimate-member' ), ), - 'viber' => array( - 'title' => __('Viber number','ultimate-member'), - 'metakey' => 'viber', - 'type' => 'text', - 'label' => __('Viber number','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'viber' => array( + 'title' => __( 'Viber number', 'ultimate-member' ), + 'metakey' => 'viber', + 'type' => 'text', + 'label' => __( 'Viber number', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'url_target' => '_blank', - 'url_rel' => 'nofollow', - 'icon' => 'um-icon-ios-telephone', - 'validate' => 'phone_number', + 'url_rel' => 'nofollow', + 'icon' => 'um-icon-ios-telephone', + 'validate' => 'phone_number', ), - 'whatsapp' => array( - 'title' => __('WhatsApp number','ultimate-member'), - 'metakey' => 'whatsapp', - 'type' => 'text', - 'label' => __('WhatsApp number','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'whatsapp' => array( + 'title' => __( 'WhatsApp number', 'ultimate-member' ), + 'metakey' => 'whatsapp', + 'type' => 'text', + 'label' => __( 'WhatsApp number', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'url_target' => '_blank', - 'url_rel' => 'nofollow', - 'icon' => 'um-icon-social-whatsapp', - 'validate' => 'phone_number', + 'url_rel' => 'nofollow', + 'icon' => 'um-icon-social-whatsapp', + 'validate' => 'phone_number', ), - 'telegram' => array( - 'title' => __('Telegram','ultimate-member'), - 'metakey' => 'telegram', - 'type' => 'url', - 'label' => __('Telegram','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'telegram' => array( + 'title' => __( 'Telegram', 'ultimate-member' ), + 'metakey' => 'telegram', + 'type' => 'url', + 'label' => __( 'Telegram', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'url_target' => '_blank', - 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-paper-plane', - 'validate' => 'telegram_url', - 'url_text' => 'Telegram', - 'match' => 'https://t.me/', + 'url_rel' => 'nofollow', + 'icon' => 'um-faicon-paper-plane', + 'validate' => 'telegram_url', + 'url_text' => 'Telegram', + 'match' => 'https://t.me/', ), - 'discord' => array( - 'title' => __('Discord','ultimate-member'), - 'metakey' => 'discord', - 'type' => 'text', - 'label' => __('Discord ID','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'discord' => array( + 'title' => __( 'Discord', 'ultimate-member' ), + 'metakey' => 'discord', + 'type' => 'text', + 'label' => __( 'Discord ID', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'url_target' => '_blank', - 'url_rel' => 'nofollow', - 'validate' => 'discord', + 'url_rel' => 'nofollow', + 'validate' => 'discord', ), - 'tiktok' => array( - 'title' => __('TikTok','ultimate-member'), + 'tiktok' => array( + 'title' => __( 'TikTok', 'ultimate-member' ), 'metakey' => 'tiktok', 'type' => 'url', - 'label' => __('TikTok','ultimate-member'), + 'label' => __( 'TikTok', 'ultimate-member' ), 'required' => 0, 'public' => 1, 'editable' => true, @@ -1105,11 +1108,11 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'match' => 'https://tiktok.com/@', ), - 'twitch' => array( - 'title' => __('Twitch','ultimate-member'), + 'twitch' => array( + 'title' => __( 'Twitch', 'ultimate-member' ), 'metakey' => 'twitch', 'type' => 'url', - 'label' => __('Twitch','ultimate-member'), + 'label' => __( 'Twitch', 'ultimate-member' ), 'required' => 0, 'public' => 1, 'editable' => true, @@ -1123,11 +1126,11 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'match' => 'https://twitch.tv/', ), - 'reddit' => array( - 'title' => __('Reddit','ultimate-member'), + 'reddit' => array( + 'title' => __( 'Reddit', 'ultimate-member' ), 'metakey' => 'reddit', 'type' => 'url', - 'label' => __('Reddit','ultimate-member'), + 'label' => __( 'Reddit', 'ultimate-member' ), 'required' => 0, 'public' => 1, 'editable' => true, @@ -1141,7 +1144,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'match' => 'https://www.reddit.com/user/', ), - 'youtube' => array( + 'youtube' => array( 'title' => __( 'YouTube', 'ultimate-member' ), 'metakey' => 'youtube', 'type' => 'url', @@ -1162,81 +1165,81 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { ), ), - 'soundcloud' => array( - 'title' => __( 'SoundCloud', 'ultimate-member' ), - 'metakey' => 'soundcloud', - 'type' => 'url', - 'label' => __( 'SoundCloud', 'ultimate-member' ), - 'required' => 0, - 'public' => 1, - 'editable' => true, + 'soundcloud' => array( + 'title' => __( 'SoundCloud', 'ultimate-member' ), + 'metakey' => 'soundcloud', + 'type' => 'url', + 'label' => __( 'SoundCloud', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, 'url_target' => '_blank', - 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-soundcloud', - 'validate' => 'soundcloud_url', - 'url_text' => 'SoundCloud', - 'advanced' => 'social', - 'color' => '#f50', - 'match' => 'https://soundcloud.com/', + 'url_rel' => 'nofollow', + 'icon' => 'um-faicon-soundcloud', + 'validate' => 'soundcloud_url', + 'url_text' => 'SoundCloud', + 'advanced' => 'social', + 'color' => '#f50', + 'match' => 'https://soundcloud.com/', ), - 'role_select' => array( - 'title' => __('Roles (Dropdown)','ultimate-member'), - 'metakey' => 'role_select', - 'type' => 'select', - 'label' => __('Account Type','ultimate-member'), - 'placeholder' => 'Choose account type', + 'role_select' => array( + 'title' => __( 'Roles (Dropdown)', 'ultimate-member' ), + 'metakey' => 'role_select', + 'type' => 'select', + 'label' => __( 'Account Type', 'ultimate-member' ), + 'placeholder' => __( 'Choose account type', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, + 'options' => $um_roles, + ), + + 'role_radio' => array( + 'title' => __( 'Roles (Radio)', 'ultimate-member' ), + 'metakey' => 'role_radio', + 'type' => 'radio', + 'label' => __( 'Account Type', 'ultimate-member' ), 'required' => 0, - 'public' => 1, + 'public' => 1, 'editable' => true, - 'options' => $um_roles, + 'options' => $um_roles, ), - 'role_radio' => array( - 'title' => __('Roles (Radio)','ultimate-member'), - 'metakey' => 'role_radio', - 'type' => 'radio', - 'label' => __('Account Type','ultimate-member'), - 'required' => 0, - 'public' => 1, - 'editable' => true, - 'options' => $um_roles, + 'languages' => array( + 'title' => __( 'Languages', 'ultimate-member' ), + 'metakey' => 'languages', + 'type' => 'multiselect', + 'label' => __( 'Languages Spoken', 'ultimate-member' ), + 'placeholder' => __( 'Select languages', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, + 'options' => $this->get( 'languages' ), ), - 'languages' => array( - 'title' => __('Languages','ultimate-member'), - 'metakey' => 'languages', - 'type' => 'multiselect', - 'label' => __('Languages Spoken','ultimate-member'), - 'placeholder' => __('Select languages','ultimate-member'), + 'phone_number' => array( + 'title' => __( 'Phone Number', 'ultimate-member' ), + 'metakey' => 'phone_number', + 'type' => 'tel', + 'label' => __( 'Phone Number', 'ultimate-member' ), 'required' => 0, - 'public' => 1, - 'editable' => true, - 'options' => $this->get('languages'), - ), - - 'phone_number' => array( - 'title' => __('Phone Number','ultimate-member'), - 'metakey' => 'phone_number', - 'type' => 'tel', - 'label' => __('Phone Number','ultimate-member'), - 'required' => 0, - 'public' => 1, + 'public' => 1, 'editable' => true, 'validate' => 'phone_number', - 'icon' => 'um-faicon-phone', + 'icon' => 'um-faicon-phone', ), - 'mobile_number' => array( - 'title' => __('Mobile Number','ultimate-member'), - 'metakey' => 'mobile_number', - 'type' => 'tel', - 'label' => __('Mobile Number','ultimate-member'), + 'mobile_number' => array( + 'title' => __( 'Mobile Number', 'ultimate-member' ), + 'metakey' => 'mobile_number', + 'type' => 'tel', + 'label' => __( 'Mobile Number', 'ultimate-member' ), 'required' => 0, - 'public' => 1, + 'public' => 1, 'editable' => true, 'validate' => 'phone_number', - 'icon' => 'um-faicon-mobile', + 'icon' => 'um-faicon-mobile', ), // private use ( not public list ) @@ -1365,43 +1368,47 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'default' => __( 'No', 'ultimate-member' ), 'options' => array( __( 'Yes', 'ultimate-member' ), - __( 'No', 'ultimate-member' ) + __( 'No', 'ultimate-member' ), ), 'account_only' => true, ), 'single_user_password' => array( - 'title' => __( 'Password', 'ultimate-member' ), - 'metakey' => 'single_user_password', - 'type' => 'password', - 'label' => __( 'Password', 'ultimate-member' ), - 'required' => 1, - 'public' => 1, - 'editable' => true, - 'account_only' => true, + 'title' => __( 'Password', 'ultimate-member' ), + 'metakey' => 'single_user_password', + 'type' => 'password', + 'label' => __( 'Password', 'ultimate-member' ), + 'required' => 1, + 'public' => 1, + 'editable' => true, + 'account_only' => true, ), - ); /** - * UM hook + * Filters Ultimate Member predefined fields. * - * @type filter - * @title um_predefined_fields_hook - * @description Extend Predefined Fields - * @input_vars - * [{"var":"$predefined_fields","type":"array","desc":"Predefined Fields"}] - * @change_log - * ["Since: 2.0"] - * @usage add_filter( 'um_predefined_fields_hook', 'function_name', 10, 1 ); - * @example - * Add predefined field. + * function my_predefined_fields( $fields ) { + * $fields['um_custom'] = array( + * 'title' => __( 'Custom text field', 'ultimate-member' ), + * 'metakey' => 'um_custom', + * 'type' => 'text', + * 'label' => __( 'Custom text field', 'ultimate-member' ), + * 'required' => 1, + * 'public' => 1, + * 'editable' => true, + * ); + * return $fields; * } - * ?> + * add_filter( 'um_predefined_fields_hook', 'my_predefined_fields' ); */ $this->predefined_fields = apply_filters( 'um_predefined_fields_hook', $this->predefined_fields ); } diff --git a/includes/core/class-form.php b/includes/core/class-form.php index 4a186ef1..0593c112 100644 --- a/includes/core/class-form.php +++ b/includes/core/class-form.php @@ -786,7 +786,7 @@ if ( ! class_exists( 'um\core\Form' ) ) { $f = UM()->builtin()->get_a_field( $k ); if ( is_array( $f ) && array_key_exists( 'match', $f ) && array_key_exists( 'advanced', $f ) && 'social' === $f['advanced'] ) { - $v = esc_url_raw( $form[ $k ] ); + $v = $form[ $k ]; // Make a proper social link if ( ! empty( $v ) ) { @@ -833,7 +833,7 @@ if ( ! class_exists( 'um\core\Form' ) ) { } } - $form[ $k ] = $v; + $form[ $k ] = esc_url_raw( $v ); } else { $form[ $k ] = esc_url_raw( $form[ $k ] ); } From 646db4ce48d14f7d4a6d6f879c7d161ad0c40154 Mon Sep 17 00:00:00 2001 From: ashubawork Date: Thu, 11 Apr 2024 11:41:45 +0300 Subject: [PATCH 06/50] - fix youtube validation --- includes/um-short-functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/um-short-functions.php b/includes/um-short-functions.php index a26f0d5a..14f87d26 100644 --- a/includes/um-short-functions.php +++ b/includes/um-short-functions.php @@ -1912,6 +1912,9 @@ function um_profile( $key ) { * @return bool|string */ function um_youtube_id_from_url( $url ) { + if ( ! $url ) { + return true; + } $url = preg_replace( '/&ab_channel=.*/', '', $url ); // ADBlock argument. $url = preg_replace( '/\?si=.*/', '', $url ); // referral attribute. From 512787b8365c19f264dcc5f21c80248b63382b68 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 11 Apr 2024 14:48:37 +0300 Subject: [PATCH 07/50] - reviewed #1496; --- includes/class-init.php | 27 ++++------ includes/core/class-modal.php | 53 ------------------- includes/frontend/class-init.php | 14 +++++ includes/frontend/class-modal.php | 41 ++++++++++++++ ...um_upload_single.php => upload-single.php} | 9 ++-- .../{um_view_photo.php => view-photo.php} | 14 +++-- 6 files changed, 77 insertions(+), 81 deletions(-) delete mode 100644 includes/core/class-modal.php create mode 100644 includes/frontend/class-modal.php rename templates/modal/{um_upload_single.php => upload-single.php} (56%) rename templates/modal/{um_view_photo.php => view-photo.php} (61%) diff --git a/includes/class-init.php b/includes/class-init.php index a8005d2a..efa6cf07 100644 --- a/includes/class-init.php +++ b/includes/class-init.php @@ -553,7 +553,6 @@ if ( ! class_exists( 'UM' ) ) { $this->builtin(); $this->form()->hooks(); $this->permalinks(); - $this->modal(); $this->cron(); $this->mobile(); $this->external_integrations(); @@ -879,6 +878,17 @@ if ( ! class_exists( 'UM' ) ) { return $this->admin()->enqueue(); } + /** + * @since 2.0 + * @deprecated 2.8.6 + * + * @return um\frontend\Modal + */ + function modal() { + _deprecated_function( __METHOD__, '2.8.6', 'UM()->frontend()->modal()' ); + return $this->frontend()->modal(); + } + /** * @since 2.0 @@ -1387,21 +1397,6 @@ if ( ! class_exists( 'UM' ) ) { return $this->classes['logout']; } - - /** - * @since 2.0 - * - * @return um\core\Modal - */ - function modal() { - if ( empty( $this->classes['modal'] ) ) { - $this->classes['modal'] = new um\core\Modal(); - } - - return $this->classes['modal']; - } - - /** * @since 2.0 * diff --git a/includes/core/class-modal.php b/includes/core/class-modal.php deleted file mode 100644 index 7b3554e2..00000000 --- a/includes/core/class-modal.php +++ /dev/null @@ -1,53 +0,0 @@ -get_priority() ); - } - - - /** - * @return int - */ - public function get_priority() { - return apply_filters( 'um_core_includes_modals_priority', 9 ); - } - - - /** - * Load modal content - */ - public function load_modal_content() { - if ( ! is_admin() ) { - $modal_templates = glob( UM_PATH . 'templates/modal/*.php' ); - $modal_templates = array_map( 'basename', $modal_templates ); - if ( ! empty( $modal_templates ) ) { - foreach ( $modal_templates as $modal_content ) { - UM()->get_template( 'modal/' . $modal_content, '', array(), true ); - } - } - } - } - - } -} diff --git a/includes/frontend/class-init.php b/includes/frontend/class-init.php index cc5fb68a..b34cd983 100644 --- a/includes/frontend/class-init.php +++ b/includes/frontend/class-init.php @@ -21,6 +21,7 @@ if ( ! class_exists( 'um\frontend\Init' ) ) { */ public function includes() { $this->enqueue(); + $this->modal(); $this->secure(); } @@ -37,6 +38,19 @@ if ( ! class_exists( 'um\frontend\Init' ) ) { return UM()->classes['um\frontend\enqueue']; } + /** + * @since 2.8.6 + * + * @return Modal + */ + public function modal() { + if ( empty( UM()->classes['um\frontend\modal'] ) ) { + UM()->classes['um\frontend\modal'] = new Modal(); + } + + return UM()->classes['um\frontend\modal']; + } + /** * @since 2.6.8 * diff --git a/includes/frontend/class-modal.php b/includes/frontend/class-modal.php new file mode 100644 index 00000000..5076ec67 --- /dev/null +++ b/includes/frontend/class-modal.php @@ -0,0 +1,41 @@ +get_priority() ); + } + + /** + * @return int + */ + private function get_priority() { + return apply_filters( 'um_core_includes_modals_priority', 9 ); + } + + /** + * Load modal content. + */ + public function load_modal_content() { + $modal_templates = glob( UM_PATH . 'templates/modal/*.php' ); + $modal_templates = array_map( 'basename', $modal_templates ); + if ( ! empty( $modal_templates ) ) { + foreach ( $modal_templates as $modal_content ) { + UM()->get_template( 'modal/' . $modal_content, '', array(), true ); + } + } + } +} diff --git a/templates/modal/um_upload_single.php b/templates/modal/upload-single.php similarity index 56% rename from templates/modal/um_upload_single.php rename to templates/modal/upload-single.php index 00257bec..d6c6b701 100644 --- a/templates/modal/um_upload_single.php +++ b/templates/modal/upload-single.php @@ -2,12 +2,13 @@ /** * Template for the modal form * - * This template can be overridden by copying it to yourtheme/ultimate-member/modal/um_upload_single.php + * This template can be overridden by copying it to yourtheme/ultimate-member/modal/upload-single.php * - * @version 2.6.1 + * @version 2.8.6 */ if ( ! defined( 'ABSPATH' ) ) { exit; -} ?> +} +?> - + diff --git a/templates/modal/um_view_photo.php b/templates/modal/view-photo.php similarity index 61% rename from templates/modal/um_view_photo.php rename to templates/modal/view-photo.php index d926409f..0ec49f81 100644 --- a/templates/modal/um_view_photo.php +++ b/templates/modal/view-photo.php @@ -2,23 +2,21 @@ /** * Template for the modal photo * - * This template can be overridden by copying it to yourtheme/ultimate-member/modal/um_view_photo.php + * This template can be overridden by copying it to yourtheme/ultimate-member/modal/view-photo.php * - * @version 2.6.1 + * @version 2.8.6 */ if ( ! defined( 'ABSPATH' ) ) { exit; -} ?> +} +?> -
'),jQuery("#"+a).prependTo(".um-admin-modal"),jQuery("#"+a).show(),jQuery(".um-admin-modal").show(),jQuery(".um-admin-modal-head").append(''),1==i&&(UM.admin.modal.setSize(n),UM.admin.modal.preload()),UM.admin.modal.resize()},contentRequest:function(n,a,i,d){let o="",e="",m="",t="";var u=jQuery(".um-col-demon-settings"),u=(u.data("in_column")&&(o=u.data("in_row"),e=u.data("in_sub_row"),m=u.data("in_column"),t=u.data("in_group")),jQuery('input[type="hidden"][id="form__um_mode"]').val());jQuery.ajax({url:wp.ajax.settings.url,type:"POST",data:{action:"um_dynamic_modal_content",act_id:n,arg1:a,arg2:i,arg3:d,in_row:o,in_sub_row:e,in_column:m,in_group:t,nonce:um_admin_scripts.nonce,form_mode:u},complete:function(){UM.admin.modal.loaded(),UM.admin.modal.resize()},success:function(a){var i=jQuery(".um-admin-modal");i.find(".um-admin-modal-body").html(a),wp.hooks.doAction("um_admin_modal_success_result",i,n),UM.admin.tooltip.init()},error:function(a){}})}},jQuery(document).ready(function(){jQuery(document.body).on("click",'.um-admin-overlay, a[data-action="UM_remove_modal"]',function(){UM.common.tipsy.hide(),UM.admin.modal.remove()}),jQuery(document.body).on("click",'a[data-modal^="UM_"], span[data-modal^="UM_"]',function(a){a.preventDefault();var i,a=jQuery(this).attr("data-modal");"UM_fonticons"===a&&""!==(i=jQuery(this).data("icon_field"))&&jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-icon_field",i),jQuery(this).attr("data-back")&&(jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-modal",jQuery(this).attr("data-back")),""===jQuery("#"+jQuery(this).attr("data-back")).find("input#_icon").val())&&jQuery("#UM_fonticons").find(".um-admin-icons span").removeClass("highlighted"),jQuery(this).data("dynamic-content")?(UM.admin.modal.show(a,!0,jQuery(this).data("modal-size")),UM.admin.modal.contentRequest(jQuery(this).data("dynamic-content"),jQuery(this).data("arg1"),jQuery(this).data("arg2"),jQuery(this).data("arg3"))):UM.admin.modal.show(a)}),jQuery(document.body).on("click","#UM_fonticons a.um-admin-modal-back:not(.um-admin-modal-cancel)",function(){let a="";var i=jQuery(this).attr("data-code");let n=!1;""!==i&&(jQuery(this).attr("data-modal")?(n=!0,a="#"+jQuery(this).attr("data-modal"),jQuery(a).find("input#_icon,input#_um_icon,input#notice__um_icon,input#um_profile_tab__icon").val(i),jQuery(a).find("span.um-admin-icon-value").html(''),jQuery(a)):(a="#"+jQuery(this).data("icon_field"),jQuery(a).val(i).parent().find("span.um-admin-icon-value").html(''),jQuery(a).parent())).find(".um-admin-icon-clear").addClass("show"),jQuery(this).attr("data-code",""),n||(UM.common.tipsy.hide(),UM.admin.modal.remove())}),jQuery(document.body).on("click","span.um-admin-icon-clear",function(){var a=jQuery(this).parents("p");jQuery("#UM_fonticons a.um-admin-modal-back").attr("data-code",""),a.find('input[type="hidden"]').val(""),a.find(".um-admin-icon-value").html(wp.i18n.__("No Icon","ultimate-member")),(a=jQuery(this).parents("td")).find('input[type="hidden"]').val(""),a.find(".um-admin-icon-value").html(wp.i18n.__("No Icon","ultimate-member")),jQuery(this).removeClass("show")}),jQuery(document.body).on("keyup blur","#_icon_search",function(){(""!==jQuery(this).val().toLowerCase()?(jQuery(".um-admin-icons span").hide(),jQuery('.um-admin-icons span[data-code*="'+jQuery(this).val().toLowerCase()+'"]')):jQuery(".um-admin-icons span:hidden")).show(),UM.admin.modal.resize()}),jQuery(document.body).on("click",".um-admin-icons span",function(){var a=jQuery(this).attr("data-code");jQuery(this).parent().find("span").removeClass("highlighted"),jQuery(this).addClass("highlighted"),jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-code",a)})}); \ No newline at end of file +"object"!=typeof window.UM&&(window.UM={}),"object"!=typeof window.UM.admin&&(window.UM.admin={}),UM.admin.modal={getVisible:function(){return jQuery(".um-admin-modal:visible")},preload:function(){jQuery(".um-admin-modal:visible").addClass("loading"),jQuery(".um-admin-modal-body:visible").empty()},loaded:function(){jQuery(".um-admin-modal:visible").removeClass("loading")},setSize:function(a){jQuery(".um-admin-modal:visible").addClass(a)},setAttr:function(a,i){jQuery(".um-admin-modal:visible").data(a,i)},remove:function(){wp.hooks.doAction("um_admin_modal_remove"),UM.admin.tooltip.close(),UM.common.tipsy.hide(),jQuery("body").removeClass("um-admin-modal-open");var a=jQuery('.um-admin-modal div[id^="UM_"]');a.find(".um-admin-modal-body.um-admin-metabox").html("").attr("data-select2-id",null),a.hide().appendTo("body"),jQuery(".um-admin-modal,.um-admin-overlay").remove()},resize:function(){var a=jQuery(".um-admin-modal:visible").innerHeight()/2+"px";jQuery(".um-admin-modal:visible").css({"margin-top":"-"+a}),wp.hooks.doAction("um_admin_modal_resize")},show:function(a,i,n){UM.common.tipsy.hide(),UM.admin.modal.remove(),jQuery("body").addClass("um-admin-modal-open").append('
'),jQuery("#"+a).prependTo(".um-admin-modal"),jQuery("#"+a).show(),jQuery(".um-admin-modal").show(),jQuery(".um-admin-modal-head").append(''),1==i&&(UM.admin.modal.setSize(n),UM.admin.modal.preload()),UM.admin.modal.resize()},contentRequest:function(n,a,i,d){let o="",e="",m="",t="";var u=jQuery(".um-col-demon-settings"),u=(u.data("in_column")&&(o=u.data("in_row"),e=u.data("in_sub_row"),m=u.data("in_column"),t=u.data("in_group")),jQuery('input[type="hidden"][id="form__um_mode"]').val());jQuery.ajax({url:wp.ajax.settings.url,type:"POST",data:{action:"um_dynamic_modal_content",act_id:n,arg1:a,arg2:i,arg3:d,in_row:o,in_sub_row:e,in_column:m,in_group:t,nonce:um_admin_scripts.nonce,form_mode:u},complete:function(){UM.admin.modal.loaded(),UM.admin.modal.resize()},success:function(a){var i=jQuery(".um-admin-modal");i.find(".um-admin-modal-body").html(a),wp.hooks.doAction("um_admin_modal_success_result",i,n),UM.admin.tooltip.init()},error:function(a){}})}},jQuery(document).ready(function(){jQuery(document.body).on("click",'.um-admin-overlay, a[data-action="UM_remove_modal"]',function(){UM.common.tipsy.hide(),UM.admin.modal.remove()}),jQuery(document.body).on("click",'a[data-modal^="UM_"], span[data-modal^="UM_"]',function(a){a.preventDefault();var i,a=jQuery(this).attr("data-modal");"UM_fonticons"===a&&""!==(i=jQuery(this).data("icon_field"))&&jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-icon_field",i),jQuery(this).attr("data-back")&&(jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-modal",jQuery(this).attr("data-back")),""===jQuery("#"+jQuery(this).attr("data-back")).find("input#_icon").val())&&jQuery("#UM_fonticons").find(".um-admin-icons span").removeClass("highlighted"),jQuery(this).data("dynamic-content")?(UM.admin.modal.show(a,!0,jQuery(this).data("modal-size")),UM.admin.modal.contentRequest(jQuery(this).data("dynamic-content"),jQuery(this).data("arg1"),jQuery(this).data("arg2"),jQuery(this).data("arg3"))):UM.admin.modal.show(a)}),jQuery(document.body).on("click","#UM_fonticons a.um-admin-modal-back:not(.um-admin-modal-cancel)",function(){let a="";var i=jQuery(this).attr("data-code");let n=!1;""!==i&&(jQuery(this).attr("data-modal")?(n=!0,a="#"+jQuery(this).attr("data-modal"),jQuery(a).find("input#_icon,input#_um_icon,input#notice__um_icon,input#um_profile_tab__icon").val(i),jQuery(a).find("span.um-admin-icon-value").html(''),jQuery(a)):(a="#"+jQuery(this).data("icon_field"),jQuery(a).val(i).parent().find("span.um-admin-icon-value").html(''),jQuery(a).parent())).find(".um-admin-icon-clear").addClass("show"),jQuery(this).attr("data-code",""),n||(UM.common.tipsy.hide(),UM.admin.modal.remove())}),jQuery(document.body).on("click","span.um-admin-icon-clear",function(){var a=jQuery(this).parents("p");jQuery("#UM_fonticons a.um-admin-modal-back").attr("data-code",""),a.find('input[type="hidden"]').val(""),a.find(".um-admin-icon-value").html(wp.i18n.__("No Icon","ultimate-member")),(a=jQuery(this).parents("td")).find('input[type="hidden"]').val(""),a.find(".um-admin-icon-value").html(wp.i18n.__("No Icon","ultimate-member")),jQuery(this).removeClass("show")}),jQuery(document.body).on("keyup blur","#_icon_search",function(){(""!==jQuery(this).val().toLowerCase()?(jQuery(".um-admin-icons span").hide(),jQuery('.um-admin-icons span[data-code*="'+jQuery(this).val().toLowerCase()+'"]')):jQuery(".um-admin-icons span:hidden")).show(),UM.admin.modal.resize()}),jQuery(document.body).on("click",".um-admin-icons span",function(){var a=jQuery(this).attr("data-code");jQuery(this).parent().find("span").removeClass("highlighted"),jQuery(this).addClass("highlighted"),jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-code",a)})}); \ No newline at end of file diff --git a/includes/admin/class-admin.php b/includes/admin/class-admin.php index 88ebb2a1..c4cdf0e3 100644 --- a/includes/admin/class-admin.php +++ b/includes/admin/class-admin.php @@ -624,7 +624,7 @@ if ( ! class_exists( 'um\admin\Admin' ) ) { 'sanitize' => 'text', ), '_icon' => array( - 'sanitize' => 'key', + 'sanitize' => 'text', ), '_css_class' => array( 'sanitize' => 'text', diff --git a/includes/admin/class-enqueue.php b/includes/admin/class-enqueue.php index c33d4c73..05c43246 100644 --- a/includes/admin/class-enqueue.php +++ b/includes/admin/class-enqueue.php @@ -392,7 +392,8 @@ final class Enqueue extends \um\common\Enqueue { wp_localize_script( 'um_admin_forms', 'um_forms_data', $forms_data ); wp_enqueue_script( 'um_admin_forms' ); - wp_register_style( 'um_admin_forms', $css_url . 'admin/forms' . $suffix . '.css', array( 'wp-color-picker', 'um_ui', 'select2' ), UM_VERSION ); + $deps = array_merge( array( 'wp-color-picker', 'um_ui', 'select2' ), self::$fonticons_handlers ); + wp_register_style( 'um_admin_forms', $css_url . 'admin/forms' . $suffix . '.css', $deps, UM_VERSION ); // RTL styles. if ( is_rtl() ) { wp_style_add_data( 'um_admin_forms', 'rtl', true ); diff --git a/includes/admin/core/class-admin-forms.php b/includes/admin/core/class-admin-forms.php index 69a579d1..846741a8 100644 --- a/includes/admin/core/class-admin-forms.php +++ b/includes/admin/core/class-admin-forms.php @@ -541,42 +541,82 @@ if ( ! class_exists( 'um\admin\core\Admin_Forms' ) ) { if ( empty( $field_data['id'] ) ) { return false; } + $html = ''; - // Required modal scripts for proper functioning - UM()->admin()->enqueue()->load_modal(); + $first_activation_date = get_option( 'um_first_activation_date', false ); + // @todo new version + if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 || UM()->options()->get( 'enable_new_fonticons' ) ) { + UM()->setup()->set_icons_options(); - $id = ( ! empty( $this->form_data['prefix_id'] ) ? $this->form_data['prefix_id'] : '' ) . '_' . $field_data['id']; - $id_attr = ' id="' . esc_attr( $id ) . '" '; + $um_icons_list = get_option( 'um_icons_list' ); - $name = $field_data['id']; - $name = ! empty( $this->form_data['prefix_id'] ) ? $this->form_data['prefix_id'] . '[' . $name . ']' : $name; - $name_attr = ' name="' . esc_attr( $name ) . '" '; + if ( 'row' === $this->set_field_type ) { + ?> - $value = $this->get_field_value( $field_data ); - $value_attr = ' value="' . esc_attr( $value ) . '" '; +

+ + +

- $html = '' . esc_html__( 'Choose Icon', 'ultimate-member' ) . ' - '; + - if ( ! empty( $value ) ) { - $html .= ''; +
+

+ + +

+
+ + admin()->enqueue()->load_modal(); + + $id = ( ! empty( $this->form_data['prefix_id'] ) ? $this->form_data['prefix_id'] : '' ) . '_' . $field_data['id']; + $id_attr = ' id="' . esc_attr( $id ) . '" '; + + $name = $field_data['id']; + $name = ! empty( $this->form_data['prefix_id'] ) ? $this->form_data['prefix_id'] . '[' . $name . ']' : $name; + $name_attr = ' name="' . esc_attr( $name ) . '" '; + + $value = $this->get_field_value( $field_data ); + $value_attr = ' value="' . esc_attr( $value ) . '" '; + + $html = '' . esc_html__( 'Choose Icon', 'ultimate-member' ) . ' + '; + + if ( ! empty( $value ) ) { + $html .= ''; + } else { + $html .= esc_html__( 'No Icon', 'ultimate-member' ); + } + + $html .= ''; + + if ( ! empty( $value ) ) { + $html .= ''; + } else { + $html .= ''; + } + + $html .= '
'; + + // Required include the fonticons modal *.php file. + UM()->metabox()->init_icon = true; } - $html .= '
'; - - if ( ! empty( $value ) ) { - $html .= ''; - } else { - $html .= ''; - } - - $html .= ''; - - // Required include the fonticons modal *.php file. - UM()->metabox()->init_icon = true; - return $html; } diff --git a/includes/admin/core/class-admin-metabox.php b/includes/admin/core/class-admin-metabox.php index c96c3719..b9789fe1 100644 --- a/includes/admin/core/class-admin-metabox.php +++ b/includes/admin/core/class-admin-metabox.php @@ -1320,6 +1320,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Metabox' ) ) { } } + // Old interface for icon selector in UM admin forms field-type 'icon'. if ( $this->init_icon ) { include_once UM_PATH . 'includes/admin/templates/modal/forms/fonticons.php'; } @@ -1554,12 +1555,50 @@ if ( ! class_exists( 'um\admin\core\Admin_Metabox' ) ) { break; case '_icon': - if ( 'row' === $this->set_field_type ) { - $back = 'UM_edit_row'; - ?> -

- - + $first_activation_date = get_option( 'um_first_activation_date', false ); + // @todo new version + if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 || UM()->options()->get( 'enable_new_fonticons' ) ) { + UM()->setup()->set_icons_options(); + + $um_icons_list = get_option( 'um_icons_list' ); + + if ( 'row' === $this->set_field_type ) { + ?> + +

+ + +

+ + + +
+

+ + +

+
+ + set_field_type ) { + $back = 'UM_edit_row'; + ?> +

+ + edit_mode_value ) ) { ?> @@ -1572,19 +1611,19 @@ if ( ! class_exists( 'um\admin\core\Admin_Metabox' ) ) { -

- in_edit ) { - $back = 'UM_edit_field'; +

+ -
-

- - + if ( $this->in_edit ) { + $back = 'UM_edit_field'; + } else { + $back = 'UM_add_field'; + } + ?> +

+

+ + edit_mode_value ) ) { ?> @@ -1597,9 +1636,10 @@ if ( ! class_exists( 'um\admin\core\Admin_Metabox' ) ) { -

-
- +
+ +} -
'),jQuery("#"+a).prependTo(".um-admin-modal"),jQuery("#"+a).show(),jQuery(".um-admin-modal").show(),jQuery(".um-admin-modal-head").append(''),1==i&&(UM.admin.modal.setSize(n),UM.admin.modal.preload()),UM.admin.modal.resize()},contentRequest:function(n,a,i,d){let o="",e="",m="",t="";var u=jQuery(".um-col-demon-settings"),u=(u.data("in_column")&&(o=u.data("in_row"),e=u.data("in_sub_row"),m=u.data("in_column"),t=u.data("in_group")),jQuery('input[type="hidden"][id="form__um_mode"]').val());jQuery.ajax({url:wp.ajax.settings.url,type:"POST",data:{action:"um_dynamic_modal_content",act_id:n,arg1:a,arg2:i,arg3:d,in_row:o,in_sub_row:e,in_column:m,in_group:t,nonce:um_admin_scripts.nonce,form_mode:u},complete:function(){UM.admin.modal.loaded(),UM.admin.modal.resize()},success:function(a){var i=jQuery(".um-admin-modal");i.find(".um-admin-modal-body").html(a),wp.hooks.doAction("um_admin_modal_success_result",i,n),UM.admin.tooltip.init()},error:function(a){}})}},jQuery(document).ready(function(){jQuery(document.body).on("click",'.um-admin-overlay, a[data-action="UM_remove_modal"]',function(){UM.common.tipsy.hide(),UM.admin.modal.remove()}),jQuery(document.body).on("click",'a[data-modal^="UM_"], span[data-modal^="UM_"]',function(a){a.preventDefault();var i,a=jQuery(this).attr("data-modal");"UM_fonticons"===a&&""!==(i=jQuery(this).data("icon_field"))&&jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-icon_field",i),jQuery(this).attr("data-back")&&(jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-modal",jQuery(this).attr("data-back")),""===jQuery("#"+jQuery(this).attr("data-back")).find("input#_icon").val())&&jQuery("#UM_fonticons").find(".um-admin-icons span").removeClass("highlighted"),jQuery(this).data("dynamic-content")?(UM.admin.modal.show(a,!0,jQuery(this).data("modal-size")),UM.admin.modal.contentRequest(jQuery(this).data("dynamic-content"),jQuery(this).data("arg1"),jQuery(this).data("arg2"),jQuery(this).data("arg3"))):UM.admin.modal.show(a)}),jQuery(document.body).on("click","#UM_fonticons a.um-admin-modal-back:not(.um-admin-modal-cancel)",function(){let a="";var i=jQuery(this).attr("data-code");let n=!1;""!==i&&(jQuery(this).attr("data-modal")?(n=!0,a="#"+jQuery(this).attr("data-modal"),jQuery(a).find("input#_icon,input#_um_icon,input#notice__um_icon,input#um_profile_tab__icon").val(i),jQuery(a).find("span.um-admin-icon-value").html(''),jQuery(a)):(a="#"+jQuery(this).data("icon_field"),jQuery(a).val(i).parent().find("span.um-admin-icon-value").html(''),jQuery(a).parent())).find(".um-admin-icon-clear").addClass("show"),jQuery(this).attr("data-code",""),n||(UM.common.tipsy.hide(),UM.admin.modal.remove())}),jQuery(document.body).on("click","span.um-admin-icon-clear",function(){var a=jQuery(this).parents("p");jQuery("#UM_fonticons a.um-admin-modal-back").attr("data-code",""),a.find('input[type="hidden"]').val(""),a.find(".um-admin-icon-value").html(wp.i18n.__("No Icon","ultimate-member")),(a=jQuery(this).parents("td")).find('input[type="hidden"]').val(""),a.find(".um-admin-icon-value").html(wp.i18n.__("No Icon","ultimate-member")),jQuery(this).removeClass("show")}),jQuery(document.body).on("keyup blur","#_icon_search",function(){(""!==jQuery(this).val().toLowerCase()?(jQuery(".um-admin-icons span").hide(),jQuery('.um-admin-icons span[data-code*="'+jQuery(this).val().toLowerCase()+'"]')):jQuery(".um-admin-icons span:hidden")).show(),UM.admin.modal.resize()}),jQuery(document.body).on("click",".um-admin-icons span",function(){var a=jQuery(this).attr("data-code");jQuery(this).parent().find("span").removeClass("highlighted"),jQuery(this).addClass("highlighted"),jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-code",a)})}); \ No newline at end of file +"object"!=typeof window.UM&&(window.UM={}),"object"!=typeof window.UM.admin&&(window.UM.admin={}),UM.admin.modal={getVisible:function(){return jQuery(".um-admin-modal:visible")},preload:function(){jQuery(".um-admin-modal:visible").addClass("loading"),jQuery(".um-admin-modal-body:visible").empty()},loaded:function(){jQuery(".um-admin-modal:visible").removeClass("loading")},setSize:function(a){jQuery(".um-admin-modal:visible").addClass(a)},setAttr:function(a,i){jQuery(".um-admin-modal:visible").data(a,i)},remove:function(){wp.hooks.doAction("um_admin_modal_remove"),UM.admin.tooltip.close(),UM.common.tipsy.hide(),jQuery("body").removeClass("um-admin-modal-open");var a=jQuery('.um-admin-modal div[id^="UM_"]');a.find(".um-admin-modal-body.um-admin-metabox").html("").attr("data-select2-id",null),a.hide().appendTo("body"),jQuery(".um-admin-modal,.um-admin-overlay").remove()},resize:function(){var a=jQuery(".um-admin-modal:visible").innerHeight()/2+"px";jQuery(".um-admin-modal:visible").css({"margin-top":"-"+a}),wp.hooks.doAction("um_admin_modal_resize")},show:function(a,i,d){UM.common.tipsy.hide(),UM.admin.modal.remove(),jQuery("body").addClass("um-admin-modal-open").append('
'),jQuery("#"+a).prependTo(".um-admin-modal"),jQuery("#"+a).show(),jQuery(".um-admin-modal").show(),jQuery(".um-admin-modal-head").append(''),1==i&&(UM.admin.modal.setSize(d),UM.admin.modal.preload()),UM.admin.modal.resize()},contentRequest:function(d,a,i,n){let o="",e="",m="",t="";var u=jQuery(".um-col-demon-settings"),u=(u.data("in_column")&&(o=u.data("in_row"),e=u.data("in_sub_row"),m=u.data("in_column"),t=u.data("in_group")),jQuery('input[type="hidden"][id="form__um_mode"]').val());jQuery.ajax({url:wp.ajax.settings.url,type:"POST",data:{action:"um_dynamic_modal_content",act_id:d,arg1:a,arg2:i,arg3:n,in_row:o,in_sub_row:e,in_column:m,in_group:t,nonce:um_admin_scripts.nonce,form_mode:u},complete:function(){UM.admin.modal.loaded(),UM.admin.modal.resize()},success:function(a){var i=jQuery(".um-admin-modal");i.find(".um-admin-modal-body").html(a),wp.hooks.doAction("um_admin_modal_success_result",i,d),UM.admin.tooltip.init()},error:function(a){}})}},jQuery(document).ready(function(){jQuery(document.body).on("click",'.um-admin-overlay, a[data-action="UM_remove_modal"]',function(){UM.common.tipsy.hide(),UM.admin.modal.remove()}),jQuery(document.body).on("click",'a[data-modal^="UM_"], span[data-modal^="UM_"]',function(a){a.preventDefault();var i,a=jQuery(this).attr("data-modal");"UM_fonticons"===a&&""!==(i=jQuery(this).data("icon_field"))&&jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-icon_field",i),jQuery(this).attr("data-back")&&(jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-modal",jQuery(this).attr("data-back")),""===jQuery("#"+jQuery(this).attr("data-back")).find("input#_icon").val())&&jQuery("#UM_fonticons").find(".um-admin-icons span").removeClass("highlighted"),jQuery(this).data("dynamic-content")?(UM.admin.modal.show(a,!0,jQuery(this).data("modal-size")),UM.admin.modal.contentRequest(jQuery(this).data("dynamic-content"),jQuery(this).data("arg1"),jQuery(this).data("arg2"),jQuery(this).data("arg3"))):UM.admin.modal.show(a)}),jQuery(document.body).on("click","#UM_fonticons a.um-admin-modal-back:not(.um-admin-modal-cancel)",function(){let a="";var i=jQuery(this).attr("data-code");let d=!1;""!==i&&(jQuery(this).attr("data-modal")?(d=!0,a="#"+jQuery(this).attr("data-modal"),jQuery(a).find("input#_icon,input#_um_icon,input#notice__um_icon,input#um_profile_tab__icon").val(i),jQuery(a).find("span.um-admin-icon-value").html(''),jQuery(a)):(a="#"+jQuery(this).data("icon_field"),jQuery(a).val(i).parent().find("span.um-admin-icon-value").html(''),jQuery(a).parent())).find(".um-admin-icon-clear").addClass("show"),jQuery(this).attr("data-code",""),d||(UM.common.tipsy.hide(),UM.admin.modal.remove())}),jQuery(document.body).on("click","span.um-admin-icon-clear",function(){var a=jQuery(this).parents("p");jQuery("#UM_fonticons a.um-admin-modal-back").attr("data-code",""),a.find('input[type="hidden"]').val(""),a.find(".um_admin_fonticon_wrapper").hide(),(a=jQuery(this).parents("td")).find('input[type="hidden"]').val(""),a.find(".um_admin_fonticon_wrapper").hide()}),jQuery(document.body).on("keyup blur","#_icon_search",function(){(""!==jQuery(this).val().toLowerCase()?(jQuery(".um-admin-icons span").hide(),jQuery('.um-admin-icons span[data-code*="'+jQuery(this).val().toLowerCase()+'"]')):jQuery(".um-admin-icons span:hidden")).show(),UM.admin.modal.resize()}),jQuery(document.body).on("click",".um-admin-icons span",function(){var a=jQuery(this).attr("data-code");jQuery(this).parent().find("span").removeClass("highlighted"),jQuery(this).addClass("highlighted"),jQuery("#UM_fonticons").find("a.um-admin-modal-back").attr("data-code",a)})}); \ No newline at end of file diff --git a/includes/admin/class-site-health.php b/includes/admin/class-site-health.php index 30406f7c..b2c67b1a 100644 --- a/includes/admin/class-site-health.php +++ b/includes/admin/class-site-health.php @@ -40,6 +40,14 @@ class Site_Health { ); } + $first_activation_date = get_option( 'um_first_activation_date', false ); + if ( ! empty( $first_activation_date ) && $first_activation_date < 1713342395 ) { + $tests['direct']['um_outdated_icons'] = array( + 'label' => esc_html__( 'Are the icons in Ultimate Member Forms and Settings out of date?', 'ultimate-member' ), + 'test' => array( $this, 'outdated_icons_test' ), + ); + } + return $tests; } @@ -77,6 +85,131 @@ class Site_Health { return $result; } + /** + * @return bool|array + */ + private function get_outdated_icons() { + $result = array( + 'description' => '', + 'actions' => '', + ); + + $old_icons = UM()->fonticons()->all; + + $forms = get_posts( + array( + 'post_type' => 'um_form', + 'posts_per_page' => -1, + 'fields' => 'ids', + ) + ); + + $forms_count = 0; + $break_forms = array(); + if ( ! empty( $forms ) ) { + foreach ( $forms as $form_id ) { + $fields = UM()->query()->get_attr( 'custom_fields', $form_id ); + if ( empty( $fields ) ) { + continue; + } + foreach ( $fields as $field ) { + if ( empty( $field['icon'] ) ) { + continue; + } + + if ( in_array( $field['icon'], $old_icons, true ) ) { + $break_forms[] = array( + 'id' => $form_id, + 'title' => get_the_title( $form_id ), + 'link' => get_edit_post_link( $form_id ), + ); + $forms_count++; + continue 2; + } + } + } + } + + if ( 0 < $forms_count ) { + $result['description'] .= sprintf( + '

%s

', + __( 'Your fields\' icons in the Ultimate Member Forms are out of date.', 'ultimate-member' ) + ); + + if ( ! empty( $break_forms ) ) { + $result['description'] .= sprintf( + '

%s', + __( 'Related to Ultimate Member Forms: ', 'ultimate-member' ) + ); + + $form_links = array(); + foreach ( $break_forms as $break_form ) { + $form_links[] = sprintf( + '%s (#ID: %s)', + esc_url( $break_form['link'] ), + esc_html( $break_form['title'] ), + esc_html( $break_form['id'] ) + ); + } + + $result['description'] .= sprintf( + '%s


', + implode( ', ', $form_links ) + ); + } + + $result['actions'] .= sprintf( + '

%s

', + admin_url( 'edit.php?post_type=um_form' ), + esc_html__( 'Edit form fields and update', 'ultimate-member' ) + ); + } + + $result = apply_filters( 'um_get_outdated_icons_result', $result, $old_icons ); + + if ( ! empty( $result['description'] ) ) { + $result['description'] .= sprintf( + '

%s

', + __( 'As soon as legacy icons will be removed old icons may break the website\'s functionality.', 'ultimate-member' ) + ); + } + + if ( ! empty( $result['description'] ) && ! empty( $result['actions'] ) ) { + return $result; + } + + return false; + } + + public function outdated_icons_test() { + $result = array( + 'label' => __( 'You have the most recent version of icons in Ultimate Member forms and settings', 'ultimate-member' ), + 'status' => 'good', + 'badge' => array( + 'label' => UM_PLUGIN_NAME, + 'color' => self::BADGE_COLOR, + ), + 'description' => sprintf( + '

%s

', + __( 'Your fields in the Ultimate Member Forms and settings have the most recent version and are ready to use.', 'ultimate-member' ) + ), + 'actions' => '', + 'test' => 'um_outdated_icons', + ); + + $outdated_icons = $this->get_outdated_icons(); + + if ( false !== $outdated_icons ) { + $result['label'] = __( 'Some field icons and (or) Ultimate Member settings icons are out of date', 'ultimate-member' ); + $result['status'] = 'recommended'; + $result['badge']['color'] = 'orange'; + $result['description'] = $outdated_icons['description']; + $result['actions'] = $outdated_icons['actions']; + } + + return $result; + } + private function get_roles() { return UM()->roles()->get_roles(); } diff --git a/includes/admin/core/class-admin-forms.php b/includes/admin/core/class-admin-forms.php index 846741a8..31287848 100644 --- a/includes/admin/core/class-admin-forms.php +++ b/includes/admin/core/class-admin-forms.php @@ -545,7 +545,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Forms' ) ) { $first_activation_date = get_option( 'um_first_activation_date', false ); // @todo new version - if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 || UM()->options()->get( 'enable_new_fonticons' ) ) { + if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 ) { UM()->setup()->set_icons_options(); $um_icons_list = get_option( 'um_icons_list' ); diff --git a/includes/admin/core/class-admin-metabox.php b/includes/admin/core/class-admin-metabox.php index b9789fe1..c3ac0d39 100644 --- a/includes/admin/core/class-admin-metabox.php +++ b/includes/admin/core/class-admin-metabox.php @@ -1557,7 +1557,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Metabox' ) ) { case '_icon': $first_activation_date = get_option( 'um_first_activation_date', false ); // @todo new version - if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 || UM()->options()->get( 'enable_new_fonticons' ) ) { + if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 ) { UM()->setup()->set_icons_options(); $um_icons_list = get_option( 'um_icons_list' ); @@ -1593,52 +1593,85 @@ if ( ! class_exists( 'um\admin\core\Admin_Metabox' ) ) { } } else { - if ( 'row' === $this->set_field_type ) { - $back = 'UM_edit_row'; - ?> -

- - - - edit_mode_value ) ) { ?> + UM()->setup()->set_icons_options(); - + $um_icons_list = get_option( 'um_icons_list' ); - edit_mode_value ) ) { ?> - - - - - -

- in_edit ) { - $back = 'UM_edit_field'; - } else { - $back = 'UM_add_field'; - } - ?> -
-

+ if ( empty( $this->edit_mode_value ) || array_key_exists( $this->edit_mode_value, $um_icons_list ) ) { + if ( 'row' === $this->set_field_type ) { + ?> + +

- - - - edit_mode_value ) ) { ?> - - - - edit_mode_value ) ) { ?> - - - - - +

-
- + +
+

+ + +

+
+ + set_field_type ) { + ?> + +

+ + + + + + + + +

+ + + +
+

+ + + + + + + + +

+
+ + __( 'Enable Gutenberg Blocks', 'ultimate-member' ), 'description' => __( 'Check this box if you would like to use Ultimate Member blocks in Gutenberg editor. Important some themes have the conflicts with Gutenberg editor.', 'ultimate-member' ), ), - array( - 'id' => 'enable_new_fonticons', - 'type' => 'checkbox', - 'label' => __( 'New fonticons', 'ultimate-member' ), - 'checkbox_label' => __( 'Enable new fonticons', 'ultimate-member' ), - 'description' => __( 'Check this box if you would like to enable new Ultimate Member fonticons used latest version of FontAwesome library.', 'ultimate-member' ), - ), $same_page_update, ), ), @@ -2229,12 +2222,6 @@ if ( ! class_exists( 'um\admin\core\Admin_Settings' ) ) { } else { unset( $this->settings_structure['advanced']['sections']['features']['form_sections']['beta_features'] ); - - $first_activation_date = get_option( 'um_first_activation_date', false ); - // @todo new version - if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 ) { - unset( $this->settings_structure['advanced']['sections']['features']['form_sections']['features']['fields'][1] ); - } } } diff --git a/includes/admin/templates/modal/forms/fonticons.php b/includes/admin/templates/modal/forms/fonticons.php index 79a23918..efece25b 100644 --- a/includes/admin/templates/modal/forms/fonticons.php +++ b/includes/admin/templates/modal/forms/fonticons.php @@ -6,9 +6,7 @@ if ( ! defined( 'ABSPATH' ) ) { $first_activation_date = get_option( 'um_first_activation_date', false ); // @todo new version -if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 || UM()->options()->get( 'enable_new_fonticons' ) ) { - -} else { +if ( ! empty( $first_activation_date ) && $first_activation_date < 1713342395 ) { ?> set_field_type ) { + ?> - UM()->setup()->set_icons_options(); +

+ + + + + + + + +

- $um_icons_list = get_option( 'um_icons_list' ); + - if ( empty( $this->edit_mode_value ) || array_key_exists( $this->edit_mode_value, $um_icons_list ) ) { - if ( 'row' === $this->set_field_type ) { - ?> - -

- - -

- - - -
-

- - -

-
- - set_field_type ) { - ?> - -

+

+

- - edit_mode_value ) && array_key_exists( $this->edit_mode_value, $um_icons_list ) ) { ?> - - - +

+
- - -
-

- - - - - - - - -

-
- - Date: Tue, 23 Apr 2024 15:47:08 +0300 Subject: [PATCH 27/50] - additional parent class for applying fontawesome icons inside the wrapper; --- assets/css/um-fontawesome.css | 9509 +++++++++++++++++++---------- assets/css/um-fontawesome.min.css | 4 +- assets/css/um-fontawesome.sass | 3 +- assets/css/um-members-rtl.min.css | 1 - assets/css/um-members.min.css | 1 + 5 files changed, 6355 insertions(+), 3163 deletions(-) diff --git a/assets/css/um-fontawesome.css b/assets/css/um-fontawesome.css index a2d10b98..7e8b9a47 100644 --- a/assets/css/um-fontawesome.css +++ b/assets/css/um-fontawesome.css @@ -1,4 +1,5 @@ -.um { +.um, +.um-icon-within { /*! * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) @@ -27,7 +28,8 @@ * Copyright 2024 Fonticons, Inc. */ } -.um .fa { +.um .fa, +.um-icon-within .fa { font-family: var(--fa-style-family, "Font Awesome 6 Free"); font-weight: var(--fa-style, 900); } @@ -39,7 +41,16 @@ .um .far, .um .fa-regular, .um .fab, -.um .fa-brands { +.um .fa-brands, +.um-icon-within .fa, +.um-icon-within .fa-classic, +.um-icon-within .fa-sharp, +.um-icon-within .fas, +.um-icon-within .fa-solid, +.um-icon-within .far, +.um-icon-within .fa-regular, +.um-icon-within .fab, +.um-icon-within .fa-brands { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: var(--fa-display, inline-block); @@ -52,108 +63,139 @@ .um .fa-classic, .um .fa-solid, .um .far, -.um .fa-regular { +.um .fa-regular, +.um-icon-within .fas, +.um-icon-within .fa-classic, +.um-icon-within .fa-solid, +.um-icon-within .far, +.um-icon-within .fa-regular { font-family: "Font Awesome 6 Free"; } .um .fab, -.um .fa-brands { +.um .fa-brands, +.um-icon-within .fab, +.um-icon-within .fa-brands { font-family: "Font Awesome 6 Brands"; } -.um .fa-1x { +.um .fa-1x, +.um-icon-within .fa-1x { font-size: 1em; } -.um .fa-2x { +.um .fa-2x, +.um-icon-within .fa-2x { font-size: 2em; } -.um .fa-3x { +.um .fa-3x, +.um-icon-within .fa-3x { font-size: 3em; } -.um .fa-4x { +.um .fa-4x, +.um-icon-within .fa-4x { font-size: 4em; } -.um .fa-5x { +.um .fa-5x, +.um-icon-within .fa-5x { font-size: 5em; } -.um .fa-6x { +.um .fa-6x, +.um-icon-within .fa-6x { font-size: 6em; } -.um .fa-7x { +.um .fa-7x, +.um-icon-within .fa-7x { font-size: 7em; } -.um .fa-8x { +.um .fa-8x, +.um-icon-within .fa-8x { font-size: 8em; } -.um .fa-9x { +.um .fa-9x, +.um-icon-within .fa-9x { font-size: 9em; } -.um .fa-10x { +.um .fa-10x, +.um-icon-within .fa-10x { font-size: 10em; } -.um .fa-2xs { +.um .fa-2xs, +.um-icon-within .fa-2xs { font-size: 0.625em; line-height: 0.1em; vertical-align: 0.225em; } -.um .fa-xs { +.um .fa-xs, +.um-icon-within .fa-xs { font-size: 0.75em; line-height: 0.0833333337em; vertical-align: 0.125em; } -.um .fa-sm { +.um .fa-sm, +.um-icon-within .fa-sm { font-size: 0.875em; line-height: 0.0714285718em; vertical-align: 0.0535714295em; } -.um .fa-lg { +.um .fa-lg, +.um-icon-within .fa-lg { font-size: 1.25em; line-height: 0.05em; vertical-align: -0.075em; } -.um .fa-xl { +.um .fa-xl, +.um-icon-within .fa-xl { font-size: 1.5em; line-height: 0.0416666682em; vertical-align: -0.125em; } -.um .fa-2xl { +.um .fa-2xl, +.um-icon-within .fa-2xl { font-size: 2em; line-height: 0.03125em; vertical-align: -0.1875em; } -.um .fa-fw { +.um .fa-fw, +.um-icon-within .fa-fw { text-align: center; width: 1.25em; } -.um .fa-ul { +.um .fa-ul, +.um-icon-within .fa-ul { list-style-type: none; margin-left: var(--fa-li-margin, 2.5em); padding-left: 0; } -.um .fa-ul > li { +.um .fa-ul > li, +.um-icon-within .fa-ul > li { position: relative; } -.um .fa-li { +.um .fa-li, +.um-icon-within .fa-li { left: calc(var(--fa-li-width, 2em) * -1); position: absolute; text-align: center; width: var(--fa-li-width, 2em); line-height: inherit; } -.um .fa-border { +.um .fa-border, +.um-icon-within .fa-border { border-color: var(--fa-border-color, #eee); border-radius: var(--fa-border-radius, 0.1em); border-style: var(--fa-border-style, solid); border-width: var(--fa-border-width, 0.08em); padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } -.um .fa-pull-left { +.um .fa-pull-left, +.um-icon-within .fa-pull-left { float: left; margin-right: var(--fa-pull-margin, 0.3em); } -.um .fa-pull-right { +.um .fa-pull-right, +.um-icon-within .fa-pull-right { float: right; margin-left: var(--fa-pull-margin, 0.3em); } -.um .fa-beat { +.um .fa-beat, +.um-icon-within .fa-beat { animation-name: fa-beat; animation-delay: var(--fa-animation-delay, 0s); animation-direction: var(--fa-animation-direction, normal); @@ -161,7 +203,8 @@ animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-timing-function: var(--fa-animation-timing, ease-in-out); } -.um .fa-bounce { +.um .fa-bounce, +.um-icon-within .fa-bounce { animation-name: fa-bounce; animation-delay: var(--fa-animation-delay, 0s); animation-direction: var(--fa-animation-direction, normal); @@ -169,7 +212,8 @@ animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } -.um .fa-fade { +.um .fa-fade, +.um-icon-within .fa-fade { animation-name: fa-fade; animation-delay: var(--fa-animation-delay, 0s); animation-direction: var(--fa-animation-direction, normal); @@ -177,7 +221,8 @@ animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } -.um .fa-beat-fade { +.um .fa-beat-fade, +.um-icon-within .fa-beat-fade { animation-name: fa-beat-fade; animation-delay: var(--fa-animation-delay, 0s); animation-direction: var(--fa-animation-direction, normal); @@ -185,7 +230,8 @@ animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } -.um .fa-flip { +.um .fa-flip, +.um-icon-within .fa-flip { animation-name: fa-flip; animation-delay: var(--fa-animation-delay, 0s); animation-direction: var(--fa-animation-direction, normal); @@ -193,7 +239,8 @@ animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-timing-function: var(--fa-animation-timing, ease-in-out); } -.um .fa-shake { +.um .fa-shake, +.um-icon-within .fa-shake { animation-name: fa-shake; animation-delay: var(--fa-animation-delay, 0s); animation-direction: var(--fa-animation-direction, normal); @@ -201,7 +248,8 @@ animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-timing-function: var(--fa-animation-timing, linear); } -.um .fa-spin { +.um .fa-spin, +.um-icon-within .fa-spin { animation-name: fa-spin; animation-delay: var(--fa-animation-delay, 0s); animation-direction: var(--fa-animation-direction, normal); @@ -209,11 +257,14 @@ animation-iteration-count: var(--fa-animation-iteration-count, infinite); animation-timing-function: var(--fa-animation-timing, linear); } -.um .fa-spin-reverse { +.um .fa-spin-reverse, +.um-icon-within .fa-spin-reverse { --fa-animation-direction: reverse; } .um .fa-pulse, -.um .fa-spin-pulse { +.um .fa-spin-pulse, +.um-icon-within .fa-pulse, +.um-icon-within .fa-spin-pulse { animation-name: fa-spin; animation-direction: var(--fa-animation-direction, normal); animation-duration: var(--fa-animation-duration, 1s); @@ -229,7 +280,16 @@ .um .fa-pulse, .um .fa-shake, .um .fa-spin, - .um .fa-spin-pulse { + .um .fa-spin-pulse, + .um-icon-within .fa-beat, + .um-icon-within .fa-bounce, + .um-icon-within .fa-fade, + .um-icon-within .fa-beat-fade, + .um-icon-within .fa-flip, + .um-icon-within .fa-pulse, + .um-icon-within .fa-shake, + .um-icon-within .fa-spin, + .um-icon-within .fa-spin-pulse { animation-delay: -1ms; animation-duration: 1ms; animation-iteration-count: 1; @@ -325,29 +385,38 @@ transform: rotate(360deg); } } -.um .fa-rotate-90 { +.um .fa-rotate-90, +.um-icon-within .fa-rotate-90 { transform: rotate(90deg); } -.um .fa-rotate-180 { +.um .fa-rotate-180, +.um-icon-within .fa-rotate-180 { transform: rotate(180deg); } -.um .fa-rotate-270 { +.um .fa-rotate-270, +.um-icon-within .fa-rotate-270 { transform: rotate(270deg); } -.um .fa-flip-horizontal { +.um .fa-flip-horizontal, +.um-icon-within .fa-flip-horizontal { transform: scale(-1, 1); } -.um .fa-flip-vertical { +.um .fa-flip-vertical, +.um-icon-within .fa-flip-vertical { transform: scale(1, -1); } .um .fa-flip-both, -.um .fa-flip-horizontal.fa-flip-vertical { +.um .fa-flip-horizontal.fa-flip-vertical, +.um-icon-within .fa-flip-both, +.um-icon-within .fa-flip-horizontal.fa-flip-vertical { transform: scale(-1, -1); } -.um .fa-rotate-by { +.um .fa-rotate-by, +.um-icon-within .fa-rotate-by { transform: rotate(var(--fa-rotate-angle, 0)); } -.um .fa-stack { +.um .fa-stack, +.um-icon-within .fa-stack { display: inline-block; height: 2em; line-height: 2em; @@ -356,5880 +425,7839 @@ width: 2.5em; } .um .fa-stack-1x, -.um .fa-stack-2x { +.um .fa-stack-2x, +.um-icon-within .fa-stack-1x, +.um-icon-within .fa-stack-2x { left: 0; position: absolute; text-align: center; width: 100%; z-index: var(--fa-stack-z-index, auto); } -.um .fa-stack-1x { +.um .fa-stack-1x, +.um-icon-within .fa-stack-1x { line-height: inherit; } -.um .fa-stack-2x { +.um .fa-stack-2x, +.um-icon-within .fa-stack-2x { font-size: 2em; } -.um .fa-inverse { +.um .fa-inverse, +.um-icon-within .fa-inverse { color: var(--fa-inverse, #fff); } -.um .fa-0::before { +.um .fa-0::before, +.um-icon-within .fa-0::before { content: "\30 "; } -.um .fa-1::before { +.um .fa-1::before, +.um-icon-within .fa-1::before { content: "\31 "; } -.um .fa-2::before { +.um .fa-2::before, +.um-icon-within .fa-2::before { content: "\32 "; } -.um .fa-3::before { +.um .fa-3::before, +.um-icon-within .fa-3::before { content: "\33 "; } -.um .fa-4::before { +.um .fa-4::before, +.um-icon-within .fa-4::before { content: "\34 "; } -.um .fa-5::before { +.um .fa-5::before, +.um-icon-within .fa-5::before { content: "\35 "; } -.um .fa-6::before { +.um .fa-6::before, +.um-icon-within .fa-6::before { content: "\36 "; } -.um .fa-7::before { +.um .fa-7::before, +.um-icon-within .fa-7::before { content: "\37 "; } -.um .fa-8::before { +.um .fa-8::before, +.um-icon-within .fa-8::before { content: "\38 "; } -.um .fa-9::before { +.um .fa-9::before, +.um-icon-within .fa-9::before { content: "\39 "; } -.um .fa-fill-drip::before { +.um .fa-fill-drip::before, +.um-icon-within .fa-fill-drip::before { content: "\f576"; } -.um .fa-arrows-to-circle::before { +.um .fa-arrows-to-circle::before, +.um-icon-within .fa-arrows-to-circle::before { content: "\e4bd"; } -.um .fa-circle-chevron-right::before { +.um .fa-circle-chevron-right::before, +.um-icon-within .fa-circle-chevron-right::before { content: "\f138"; } -.um .fa-chevron-circle-right::before { +.um .fa-chevron-circle-right::before, +.um-icon-within .fa-chevron-circle-right::before { content: "\f138"; } -.um .fa-at::before { +.um .fa-at::before, +.um-icon-within .fa-at::before { content: "\@"; } -.um .fa-trash-can::before { +.um .fa-trash-can::before, +.um-icon-within .fa-trash-can::before { content: "\f2ed"; } -.um .fa-trash-alt::before { +.um .fa-trash-alt::before, +.um-icon-within .fa-trash-alt::before { content: "\f2ed"; } -.um .fa-text-height::before { +.um .fa-text-height::before, +.um-icon-within .fa-text-height::before { content: "\f034"; } -.um .fa-user-xmark::before { +.um .fa-user-xmark::before, +.um-icon-within .fa-user-xmark::before { content: "\f235"; } -.um .fa-user-times::before { +.um .fa-user-times::before, +.um-icon-within .fa-user-times::before { content: "\f235"; } -.um .fa-stethoscope::before { +.um .fa-stethoscope::before, +.um-icon-within .fa-stethoscope::before { content: "\f0f1"; } -.um .fa-message::before { +.um .fa-message::before, +.um-icon-within .fa-message::before { content: "\f27a"; } -.um .fa-comment-alt::before { +.um .fa-comment-alt::before, +.um-icon-within .fa-comment-alt::before { content: "\f27a"; } -.um .fa-info::before { +.um .fa-info::before, +.um-icon-within .fa-info::before { content: "\f129"; } -.um .fa-down-left-and-up-right-to-center::before { +.um .fa-down-left-and-up-right-to-center::before, +.um-icon-within .fa-down-left-and-up-right-to-center::before { content: "\f422"; } -.um .fa-compress-alt::before { +.um .fa-compress-alt::before, +.um-icon-within .fa-compress-alt::before { content: "\f422"; } -.um .fa-explosion::before { +.um .fa-explosion::before, +.um-icon-within .fa-explosion::before { content: "\e4e9"; } -.um .fa-file-lines::before { +.um .fa-file-lines::before, +.um-icon-within .fa-file-lines::before { content: "\f15c"; } -.um .fa-file-alt::before { +.um .fa-file-alt::before, +.um-icon-within .fa-file-alt::before { content: "\f15c"; } -.um .fa-file-text::before { +.um .fa-file-text::before, +.um-icon-within .fa-file-text::before { content: "\f15c"; } -.um .fa-wave-square::before { +.um .fa-wave-square::before, +.um-icon-within .fa-wave-square::before { content: "\f83e"; } -.um .fa-ring::before { +.um .fa-ring::before, +.um-icon-within .fa-ring::before { content: "\f70b"; } -.um .fa-building-un::before { +.um .fa-building-un::before, +.um-icon-within .fa-building-un::before { content: "\e4d9"; } -.um .fa-dice-three::before { +.um .fa-dice-three::before, +.um-icon-within .fa-dice-three::before { content: "\f527"; } -.um .fa-calendar-days::before { +.um .fa-calendar-days::before, +.um-icon-within .fa-calendar-days::before { content: "\f073"; } -.um .fa-calendar-alt::before { +.um .fa-calendar-alt::before, +.um-icon-within .fa-calendar-alt::before { content: "\f073"; } -.um .fa-anchor-circle-check::before { +.um .fa-anchor-circle-check::before, +.um-icon-within .fa-anchor-circle-check::before { content: "\e4aa"; } -.um .fa-building-circle-arrow-right::before { +.um .fa-building-circle-arrow-right::before, +.um-icon-within .fa-building-circle-arrow-right::before { content: "\e4d1"; } -.um .fa-volleyball::before { +.um .fa-volleyball::before, +.um-icon-within .fa-volleyball::before { content: "\f45f"; } -.um .fa-volleyball-ball::before { +.um .fa-volleyball-ball::before, +.um-icon-within .fa-volleyball-ball::before { content: "\f45f"; } -.um .fa-arrows-up-to-line::before { +.um .fa-arrows-up-to-line::before, +.um-icon-within .fa-arrows-up-to-line::before { content: "\e4c2"; } -.um .fa-sort-down::before { +.um .fa-sort-down::before, +.um-icon-within .fa-sort-down::before { content: "\f0dd"; } -.um .fa-sort-desc::before { +.um .fa-sort-desc::before, +.um-icon-within .fa-sort-desc::before { content: "\f0dd"; } -.um .fa-circle-minus::before { +.um .fa-circle-minus::before, +.um-icon-within .fa-circle-minus::before { content: "\f056"; } -.um .fa-minus-circle::before { +.um .fa-minus-circle::before, +.um-icon-within .fa-minus-circle::before { content: "\f056"; } -.um .fa-door-open::before { +.um .fa-door-open::before, +.um-icon-within .fa-door-open::before { content: "\f52b"; } -.um .fa-right-from-bracket::before { +.um .fa-right-from-bracket::before, +.um-icon-within .fa-right-from-bracket::before { content: "\f2f5"; } -.um .fa-sign-out-alt::before { +.um .fa-sign-out-alt::before, +.um-icon-within .fa-sign-out-alt::before { content: "\f2f5"; } -.um .fa-atom::before { +.um .fa-atom::before, +.um-icon-within .fa-atom::before { content: "\f5d2"; } -.um .fa-soap::before { +.um .fa-soap::before, +.um-icon-within .fa-soap::before { content: "\e06e"; } -.um .fa-icons::before { +.um .fa-icons::before, +.um-icon-within .fa-icons::before { content: "\f86d"; } -.um .fa-heart-music-camera-bolt::before { +.um .fa-heart-music-camera-bolt::before, +.um-icon-within .fa-heart-music-camera-bolt::before { content: "\f86d"; } -.um .fa-microphone-lines-slash::before { +.um .fa-microphone-lines-slash::before, +.um-icon-within .fa-microphone-lines-slash::before { content: "\f539"; } -.um .fa-microphone-alt-slash::before { +.um .fa-microphone-alt-slash::before, +.um-icon-within .fa-microphone-alt-slash::before { content: "\f539"; } -.um .fa-bridge-circle-check::before { +.um .fa-bridge-circle-check::before, +.um-icon-within .fa-bridge-circle-check::before { content: "\e4c9"; } -.um .fa-pump-medical::before { +.um .fa-pump-medical::before, +.um-icon-within .fa-pump-medical::before { content: "\e06a"; } -.um .fa-fingerprint::before { +.um .fa-fingerprint::before, +.um-icon-within .fa-fingerprint::before { content: "\f577"; } -.um .fa-hand-point-right::before { +.um .fa-hand-point-right::before, +.um-icon-within .fa-hand-point-right::before { content: "\f0a4"; } -.um .fa-magnifying-glass-location::before { +.um .fa-magnifying-glass-location::before, +.um-icon-within .fa-magnifying-glass-location::before { content: "\f689"; } -.um .fa-search-location::before { +.um .fa-search-location::before, +.um-icon-within .fa-search-location::before { content: "\f689"; } -.um .fa-forward-step::before { +.um .fa-forward-step::before, +.um-icon-within .fa-forward-step::before { content: "\f051"; } -.um .fa-step-forward::before { +.um .fa-step-forward::before, +.um-icon-within .fa-step-forward::before { content: "\f051"; } -.um .fa-face-smile-beam::before { +.um .fa-face-smile-beam::before, +.um-icon-within .fa-face-smile-beam::before { content: "\f5b8"; } -.um .fa-smile-beam::before { +.um .fa-smile-beam::before, +.um-icon-within .fa-smile-beam::before { content: "\f5b8"; } -.um .fa-flag-checkered::before { +.um .fa-flag-checkered::before, +.um-icon-within .fa-flag-checkered::before { content: "\f11e"; } -.um .fa-football::before { +.um .fa-football::before, +.um-icon-within .fa-football::before { content: "\f44e"; } -.um .fa-football-ball::before { +.um .fa-football-ball::before, +.um-icon-within .fa-football-ball::before { content: "\f44e"; } -.um .fa-school-circle-exclamation::before { +.um .fa-school-circle-exclamation::before, +.um-icon-within .fa-school-circle-exclamation::before { content: "\e56c"; } -.um .fa-crop::before { +.um .fa-crop::before, +.um-icon-within .fa-crop::before { content: "\f125"; } -.um .fa-angles-down::before { +.um .fa-angles-down::before, +.um-icon-within .fa-angles-down::before { content: "\f103"; } -.um .fa-angle-double-down::before { +.um .fa-angle-double-down::before, +.um-icon-within .fa-angle-double-down::before { content: "\f103"; } -.um .fa-users-rectangle::before { +.um .fa-users-rectangle::before, +.um-icon-within .fa-users-rectangle::before { content: "\e594"; } -.um .fa-people-roof::before { +.um .fa-people-roof::before, +.um-icon-within .fa-people-roof::before { content: "\e537"; } -.um .fa-people-line::before { +.um .fa-people-line::before, +.um-icon-within .fa-people-line::before { content: "\e534"; } -.um .fa-beer-mug-empty::before { +.um .fa-beer-mug-empty::before, +.um-icon-within .fa-beer-mug-empty::before { content: "\f0fc"; } -.um .fa-beer::before { +.um .fa-beer::before, +.um-icon-within .fa-beer::before { content: "\f0fc"; } -.um .fa-diagram-predecessor::before { +.um .fa-diagram-predecessor::before, +.um-icon-within .fa-diagram-predecessor::before { content: "\e477"; } -.um .fa-arrow-up-long::before { +.um .fa-arrow-up-long::before, +.um-icon-within .fa-arrow-up-long::before { content: "\f176"; } -.um .fa-long-arrow-up::before { +.um .fa-long-arrow-up::before, +.um-icon-within .fa-long-arrow-up::before { content: "\f176"; } -.um .fa-fire-flame-simple::before { +.um .fa-fire-flame-simple::before, +.um-icon-within .fa-fire-flame-simple::before { content: "\f46a"; } -.um .fa-burn::before { +.um .fa-burn::before, +.um-icon-within .fa-burn::before { content: "\f46a"; } -.um .fa-person::before { +.um .fa-person::before, +.um-icon-within .fa-person::before { content: "\f183"; } -.um .fa-male::before { +.um .fa-male::before, +.um-icon-within .fa-male::before { content: "\f183"; } -.um .fa-laptop::before { +.um .fa-laptop::before, +.um-icon-within .fa-laptop::before { content: "\f109"; } -.um .fa-file-csv::before { +.um .fa-file-csv::before, +.um-icon-within .fa-file-csv::before { content: "\f6dd"; } -.um .fa-menorah::before { +.um .fa-menorah::before, +.um-icon-within .fa-menorah::before { content: "\f676"; } -.um .fa-truck-plane::before { +.um .fa-truck-plane::before, +.um-icon-within .fa-truck-plane::before { content: "\e58f"; } -.um .fa-record-vinyl::before { +.um .fa-record-vinyl::before, +.um-icon-within .fa-record-vinyl::before { content: "\f8d9"; } -.um .fa-face-grin-stars::before { +.um .fa-face-grin-stars::before, +.um-icon-within .fa-face-grin-stars::before { content: "\f587"; } -.um .fa-grin-stars::before { +.um .fa-grin-stars::before, +.um-icon-within .fa-grin-stars::before { content: "\f587"; } -.um .fa-bong::before { +.um .fa-bong::before, +.um-icon-within .fa-bong::before { content: "\f55c"; } -.um .fa-spaghetti-monster-flying::before { +.um .fa-spaghetti-monster-flying::before, +.um-icon-within .fa-spaghetti-monster-flying::before { content: "\f67b"; } -.um .fa-pastafarianism::before { +.um .fa-pastafarianism::before, +.um-icon-within .fa-pastafarianism::before { content: "\f67b"; } -.um .fa-arrow-down-up-across-line::before { +.um .fa-arrow-down-up-across-line::before, +.um-icon-within .fa-arrow-down-up-across-line::before { content: "\e4af"; } -.um .fa-spoon::before { +.um .fa-spoon::before, +.um-icon-within .fa-spoon::before { content: "\f2e5"; } -.um .fa-utensil-spoon::before { +.um .fa-utensil-spoon::before, +.um-icon-within .fa-utensil-spoon::before { content: "\f2e5"; } -.um .fa-jar-wheat::before { +.um .fa-jar-wheat::before, +.um-icon-within .fa-jar-wheat::before { content: "\e517"; } -.um .fa-envelopes-bulk::before { +.um .fa-envelopes-bulk::before, +.um-icon-within .fa-envelopes-bulk::before { content: "\f674"; } -.um .fa-mail-bulk::before { +.um .fa-mail-bulk::before, +.um-icon-within .fa-mail-bulk::before { content: "\f674"; } -.um .fa-file-circle-exclamation::before { +.um .fa-file-circle-exclamation::before, +.um-icon-within .fa-file-circle-exclamation::before { content: "\e4eb"; } -.um .fa-circle-h::before { +.um .fa-circle-h::before, +.um-icon-within .fa-circle-h::before { content: "\f47e"; } -.um .fa-hospital-symbol::before { +.um .fa-hospital-symbol::before, +.um-icon-within .fa-hospital-symbol::before { content: "\f47e"; } -.um .fa-pager::before { +.um .fa-pager::before, +.um-icon-within .fa-pager::before { content: "\f815"; } -.um .fa-address-book::before { +.um .fa-address-book::before, +.um-icon-within .fa-address-book::before { content: "\f2b9"; } -.um .fa-contact-book::before { +.um .fa-contact-book::before, +.um-icon-within .fa-contact-book::before { content: "\f2b9"; } -.um .fa-strikethrough::before { +.um .fa-strikethrough::before, +.um-icon-within .fa-strikethrough::before { content: "\f0cc"; } -.um .fa-k::before { +.um .fa-k::before, +.um-icon-within .fa-k::before { content: "K"; } -.um .fa-landmark-flag::before { +.um .fa-landmark-flag::before, +.um-icon-within .fa-landmark-flag::before { content: "\e51c"; } -.um .fa-pencil::before { +.um .fa-pencil::before, +.um-icon-within .fa-pencil::before { content: "\f303"; } -.um .fa-pencil-alt::before { +.um .fa-pencil-alt::before, +.um-icon-within .fa-pencil-alt::before { content: "\f303"; } -.um .fa-backward::before { +.um .fa-backward::before, +.um-icon-within .fa-backward::before { content: "\f04a"; } -.um .fa-caret-right::before { +.um .fa-caret-right::before, +.um-icon-within .fa-caret-right::before { content: "\f0da"; } -.um .fa-comments::before { +.um .fa-comments::before, +.um-icon-within .fa-comments::before { content: "\f086"; } -.um .fa-paste::before { +.um .fa-paste::before, +.um-icon-within .fa-paste::before { content: "\f0ea"; } -.um .fa-file-clipboard::before { +.um .fa-file-clipboard::before, +.um-icon-within .fa-file-clipboard::before { content: "\f0ea"; } -.um .fa-code-pull-request::before { +.um .fa-code-pull-request::before, +.um-icon-within .fa-code-pull-request::before { content: "\e13c"; } -.um .fa-clipboard-list::before { +.um .fa-clipboard-list::before, +.um-icon-within .fa-clipboard-list::before { content: "\f46d"; } -.um .fa-truck-ramp-box::before { +.um .fa-truck-ramp-box::before, +.um-icon-within .fa-truck-ramp-box::before { content: "\f4de"; } -.um .fa-truck-loading::before { +.um .fa-truck-loading::before, +.um-icon-within .fa-truck-loading::before { content: "\f4de"; } -.um .fa-user-check::before { +.um .fa-user-check::before, +.um-icon-within .fa-user-check::before { content: "\f4fc"; } -.um .fa-vial-virus::before { +.um .fa-vial-virus::before, +.um-icon-within .fa-vial-virus::before { content: "\e597"; } -.um .fa-sheet-plastic::before { +.um .fa-sheet-plastic::before, +.um-icon-within .fa-sheet-plastic::before { content: "\e571"; } -.um .fa-blog::before { +.um .fa-blog::before, +.um-icon-within .fa-blog::before { content: "\f781"; } -.um .fa-user-ninja::before { +.um .fa-user-ninja::before, +.um-icon-within .fa-user-ninja::before { content: "\f504"; } -.um .fa-person-arrow-up-from-line::before { +.um .fa-person-arrow-up-from-line::before, +.um-icon-within .fa-person-arrow-up-from-line::before { content: "\e539"; } -.um .fa-scroll-torah::before { +.um .fa-scroll-torah::before, +.um-icon-within .fa-scroll-torah::before { content: "\f6a0"; } -.um .fa-torah::before { +.um .fa-torah::before, +.um-icon-within .fa-torah::before { content: "\f6a0"; } -.um .fa-broom-ball::before { +.um .fa-broom-ball::before, +.um-icon-within .fa-broom-ball::before { content: "\f458"; } -.um .fa-quidditch::before { +.um .fa-quidditch::before, +.um-icon-within .fa-quidditch::before { content: "\f458"; } -.um .fa-quidditch-broom-ball::before { +.um .fa-quidditch-broom-ball::before, +.um-icon-within .fa-quidditch-broom-ball::before { content: "\f458"; } -.um .fa-toggle-off::before { +.um .fa-toggle-off::before, +.um-icon-within .fa-toggle-off::before { content: "\f204"; } -.um .fa-box-archive::before { +.um .fa-box-archive::before, +.um-icon-within .fa-box-archive::before { content: "\f187"; } -.um .fa-archive::before { +.um .fa-archive::before, +.um-icon-within .fa-archive::before { content: "\f187"; } -.um .fa-person-drowning::before { +.um .fa-person-drowning::before, +.um-icon-within .fa-person-drowning::before { content: "\e545"; } -.um .fa-arrow-down-9-1::before { +.um .fa-arrow-down-9-1::before, +.um-icon-within .fa-arrow-down-9-1::before { content: "\f886"; } -.um .fa-sort-numeric-desc::before { +.um .fa-sort-numeric-desc::before, +.um-icon-within .fa-sort-numeric-desc::before { content: "\f886"; } -.um .fa-sort-numeric-down-alt::before { +.um .fa-sort-numeric-down-alt::before, +.um-icon-within .fa-sort-numeric-down-alt::before { content: "\f886"; } -.um .fa-face-grin-tongue-squint::before { +.um .fa-face-grin-tongue-squint::before, +.um-icon-within .fa-face-grin-tongue-squint::before { content: "\f58a"; } -.um .fa-grin-tongue-squint::before { +.um .fa-grin-tongue-squint::before, +.um-icon-within .fa-grin-tongue-squint::before { content: "\f58a"; } -.um .fa-spray-can::before { +.um .fa-spray-can::before, +.um-icon-within .fa-spray-can::before { content: "\f5bd"; } -.um .fa-truck-monster::before { +.um .fa-truck-monster::before, +.um-icon-within .fa-truck-monster::before { content: "\f63b"; } -.um .fa-w::before { +.um .fa-w::before, +.um-icon-within .fa-w::before { content: "W"; } -.um .fa-earth-africa::before { +.um .fa-earth-africa::before, +.um-icon-within .fa-earth-africa::before { content: "\f57c"; } -.um .fa-globe-africa::before { +.um .fa-globe-africa::before, +.um-icon-within .fa-globe-africa::before { content: "\f57c"; } -.um .fa-rainbow::before { +.um .fa-rainbow::before, +.um-icon-within .fa-rainbow::before { content: "\f75b"; } -.um .fa-circle-notch::before { +.um .fa-circle-notch::before, +.um-icon-within .fa-circle-notch::before { content: "\f1ce"; } -.um .fa-tablet-screen-button::before { +.um .fa-tablet-screen-button::before, +.um-icon-within .fa-tablet-screen-button::before { content: "\f3fa"; } -.um .fa-tablet-alt::before { +.um .fa-tablet-alt::before, +.um-icon-within .fa-tablet-alt::before { content: "\f3fa"; } -.um .fa-paw::before { +.um .fa-paw::before, +.um-icon-within .fa-paw::before { content: "\f1b0"; } -.um .fa-cloud::before { +.um .fa-cloud::before, +.um-icon-within .fa-cloud::before { content: "\f0c2"; } -.um .fa-trowel-bricks::before { +.um .fa-trowel-bricks::before, +.um-icon-within .fa-trowel-bricks::before { content: "\e58a"; } -.um .fa-face-flushed::before { +.um .fa-face-flushed::before, +.um-icon-within .fa-face-flushed::before { content: "\f579"; } -.um .fa-flushed::before { +.um .fa-flushed::before, +.um-icon-within .fa-flushed::before { content: "\f579"; } -.um .fa-hospital-user::before { +.um .fa-hospital-user::before, +.um-icon-within .fa-hospital-user::before { content: "\f80d"; } -.um .fa-tent-arrow-left-right::before { +.um .fa-tent-arrow-left-right::before, +.um-icon-within .fa-tent-arrow-left-right::before { content: "\e57f"; } -.um .fa-gavel::before { +.um .fa-gavel::before, +.um-icon-within .fa-gavel::before { content: "\f0e3"; } -.um .fa-legal::before { +.um .fa-legal::before, +.um-icon-within .fa-legal::before { content: "\f0e3"; } -.um .fa-binoculars::before { +.um .fa-binoculars::before, +.um-icon-within .fa-binoculars::before { content: "\f1e5"; } -.um .fa-microphone-slash::before { +.um .fa-microphone-slash::before, +.um-icon-within .fa-microphone-slash::before { content: "\f131"; } -.um .fa-box-tissue::before { +.um .fa-box-tissue::before, +.um-icon-within .fa-box-tissue::before { content: "\e05b"; } -.um .fa-motorcycle::before { +.um .fa-motorcycle::before, +.um-icon-within .fa-motorcycle::before { content: "\f21c"; } -.um .fa-bell-concierge::before { +.um .fa-bell-concierge::before, +.um-icon-within .fa-bell-concierge::before { content: "\f562"; } -.um .fa-concierge-bell::before { +.um .fa-concierge-bell::before, +.um-icon-within .fa-concierge-bell::before { content: "\f562"; } -.um .fa-pen-ruler::before { +.um .fa-pen-ruler::before, +.um-icon-within .fa-pen-ruler::before { content: "\f5ae"; } -.um .fa-pencil-ruler::before { +.um .fa-pencil-ruler::before, +.um-icon-within .fa-pencil-ruler::before { content: "\f5ae"; } -.um .fa-people-arrows::before { +.um .fa-people-arrows::before, +.um-icon-within .fa-people-arrows::before { content: "\e068"; } -.um .fa-people-arrows-left-right::before { +.um .fa-people-arrows-left-right::before, +.um-icon-within .fa-people-arrows-left-right::before { content: "\e068"; } -.um .fa-mars-and-venus-burst::before { +.um .fa-mars-and-venus-burst::before, +.um-icon-within .fa-mars-and-venus-burst::before { content: "\e523"; } -.um .fa-square-caret-right::before { +.um .fa-square-caret-right::before, +.um-icon-within .fa-square-caret-right::before { content: "\f152"; } -.um .fa-caret-square-right::before { +.um .fa-caret-square-right::before, +.um-icon-within .fa-caret-square-right::before { content: "\f152"; } -.um .fa-scissors::before { +.um .fa-scissors::before, +.um-icon-within .fa-scissors::before { content: "\f0c4"; } -.um .fa-cut::before { +.um .fa-cut::before, +.um-icon-within .fa-cut::before { content: "\f0c4"; } -.um .fa-sun-plant-wilt::before { +.um .fa-sun-plant-wilt::before, +.um-icon-within .fa-sun-plant-wilt::before { content: "\e57a"; } -.um .fa-toilets-portable::before { +.um .fa-toilets-portable::before, +.um-icon-within .fa-toilets-portable::before { content: "\e584"; } -.um .fa-hockey-puck::before { +.um .fa-hockey-puck::before, +.um-icon-within .fa-hockey-puck::before { content: "\f453"; } -.um .fa-table::before { +.um .fa-table::before, +.um-icon-within .fa-table::before { content: "\f0ce"; } -.um .fa-magnifying-glass-arrow-right::before { +.um .fa-magnifying-glass-arrow-right::before, +.um-icon-within .fa-magnifying-glass-arrow-right::before { content: "\e521"; } -.um .fa-tachograph-digital::before { +.um .fa-tachograph-digital::before, +.um-icon-within .fa-tachograph-digital::before { content: "\f566"; } -.um .fa-digital-tachograph::before { +.um .fa-digital-tachograph::before, +.um-icon-within .fa-digital-tachograph::before { content: "\f566"; } -.um .fa-users-slash::before { +.um .fa-users-slash::before, +.um-icon-within .fa-users-slash::before { content: "\e073"; } -.um .fa-clover::before { +.um .fa-clover::before, +.um-icon-within .fa-clover::before { content: "\e139"; } -.um .fa-reply::before { +.um .fa-reply::before, +.um-icon-within .fa-reply::before { content: "\f3e5"; } -.um .fa-mail-reply::before { +.um .fa-mail-reply::before, +.um-icon-within .fa-mail-reply::before { content: "\f3e5"; } -.um .fa-star-and-crescent::before { +.um .fa-star-and-crescent::before, +.um-icon-within .fa-star-and-crescent::before { content: "\f699"; } -.um .fa-house-fire::before { +.um .fa-house-fire::before, +.um-icon-within .fa-house-fire::before { content: "\e50c"; } -.um .fa-square-minus::before { +.um .fa-square-minus::before, +.um-icon-within .fa-square-minus::before { content: "\f146"; } -.um .fa-minus-square::before { +.um .fa-minus-square::before, +.um-icon-within .fa-minus-square::before { content: "\f146"; } -.um .fa-helicopter::before { +.um .fa-helicopter::before, +.um-icon-within .fa-helicopter::before { content: "\f533"; } -.um .fa-compass::before { +.um .fa-compass::before, +.um-icon-within .fa-compass::before { content: "\f14e"; } -.um .fa-square-caret-down::before { +.um .fa-square-caret-down::before, +.um-icon-within .fa-square-caret-down::before { content: "\f150"; } -.um .fa-caret-square-down::before { +.um .fa-caret-square-down::before, +.um-icon-within .fa-caret-square-down::before { content: "\f150"; } -.um .fa-file-circle-question::before { +.um .fa-file-circle-question::before, +.um-icon-within .fa-file-circle-question::before { content: "\e4ef"; } -.um .fa-laptop-code::before { +.um .fa-laptop-code::before, +.um-icon-within .fa-laptop-code::before { content: "\f5fc"; } -.um .fa-swatchbook::before { +.um .fa-swatchbook::before, +.um-icon-within .fa-swatchbook::before { content: "\f5c3"; } -.um .fa-prescription-bottle::before { +.um .fa-prescription-bottle::before, +.um-icon-within .fa-prescription-bottle::before { content: "\f485"; } -.um .fa-bars::before { +.um .fa-bars::before, +.um-icon-within .fa-bars::before { content: "\f0c9"; } -.um .fa-navicon::before { +.um .fa-navicon::before, +.um-icon-within .fa-navicon::before { content: "\f0c9"; } -.um .fa-people-group::before { +.um .fa-people-group::before, +.um-icon-within .fa-people-group::before { content: "\e533"; } -.um .fa-hourglass-end::before { +.um .fa-hourglass-end::before, +.um-icon-within .fa-hourglass-end::before { content: "\f253"; } -.um .fa-hourglass-3::before { +.um .fa-hourglass-3::before, +.um-icon-within .fa-hourglass-3::before { content: "\f253"; } -.um .fa-heart-crack::before { +.um .fa-heart-crack::before, +.um-icon-within .fa-heart-crack::before { content: "\f7a9"; } -.um .fa-heart-broken::before { +.um .fa-heart-broken::before, +.um-icon-within .fa-heart-broken::before { content: "\f7a9"; } -.um .fa-square-up-right::before { +.um .fa-square-up-right::before, +.um-icon-within .fa-square-up-right::before { content: "\f360"; } -.um .fa-external-link-square-alt::before { +.um .fa-external-link-square-alt::before, +.um-icon-within .fa-external-link-square-alt::before { content: "\f360"; } -.um .fa-face-kiss-beam::before { +.um .fa-face-kiss-beam::before, +.um-icon-within .fa-face-kiss-beam::before { content: "\f597"; } -.um .fa-kiss-beam::before { +.um .fa-kiss-beam::before, +.um-icon-within .fa-kiss-beam::before { content: "\f597"; } -.um .fa-film::before { +.um .fa-film::before, +.um-icon-within .fa-film::before { content: "\f008"; } -.um .fa-ruler-horizontal::before { +.um .fa-ruler-horizontal::before, +.um-icon-within .fa-ruler-horizontal::before { content: "\f547"; } -.um .fa-people-robbery::before { +.um .fa-people-robbery::before, +.um-icon-within .fa-people-robbery::before { content: "\e536"; } -.um .fa-lightbulb::before { +.um .fa-lightbulb::before, +.um-icon-within .fa-lightbulb::before { content: "\f0eb"; } -.um .fa-caret-left::before { +.um .fa-caret-left::before, +.um-icon-within .fa-caret-left::before { content: "\f0d9"; } -.um .fa-circle-exclamation::before { +.um .fa-circle-exclamation::before, +.um-icon-within .fa-circle-exclamation::before { content: "\f06a"; } -.um .fa-exclamation-circle::before { +.um .fa-exclamation-circle::before, +.um-icon-within .fa-exclamation-circle::before { content: "\f06a"; } -.um .fa-school-circle-xmark::before { +.um .fa-school-circle-xmark::before, +.um-icon-within .fa-school-circle-xmark::before { content: "\e56d"; } -.um .fa-arrow-right-from-bracket::before { +.um .fa-arrow-right-from-bracket::before, +.um-icon-within .fa-arrow-right-from-bracket::before { content: "\f08b"; } -.um .fa-sign-out::before { +.um .fa-sign-out::before, +.um-icon-within .fa-sign-out::before { content: "\f08b"; } -.um .fa-circle-chevron-down::before { +.um .fa-circle-chevron-down::before, +.um-icon-within .fa-circle-chevron-down::before { content: "\f13a"; } -.um .fa-chevron-circle-down::before { +.um .fa-chevron-circle-down::before, +.um-icon-within .fa-chevron-circle-down::before { content: "\f13a"; } -.um .fa-unlock-keyhole::before { +.um .fa-unlock-keyhole::before, +.um-icon-within .fa-unlock-keyhole::before { content: "\f13e"; } -.um .fa-unlock-alt::before { +.um .fa-unlock-alt::before, +.um-icon-within .fa-unlock-alt::before { content: "\f13e"; } -.um .fa-cloud-showers-heavy::before { +.um .fa-cloud-showers-heavy::before, +.um-icon-within .fa-cloud-showers-heavy::before { content: "\f740"; } -.um .fa-headphones-simple::before { +.um .fa-headphones-simple::before, +.um-icon-within .fa-headphones-simple::before { content: "\f58f"; } -.um .fa-headphones-alt::before { +.um .fa-headphones-alt::before, +.um-icon-within .fa-headphones-alt::before { content: "\f58f"; } -.um .fa-sitemap::before { +.um .fa-sitemap::before, +.um-icon-within .fa-sitemap::before { content: "\f0e8"; } -.um .fa-circle-dollar-to-slot::before { +.um .fa-circle-dollar-to-slot::before, +.um-icon-within .fa-circle-dollar-to-slot::before { content: "\f4b9"; } -.um .fa-donate::before { +.um .fa-donate::before, +.um-icon-within .fa-donate::before { content: "\f4b9"; } -.um .fa-memory::before { +.um .fa-memory::before, +.um-icon-within .fa-memory::before { content: "\f538"; } -.um .fa-road-spikes::before { +.um .fa-road-spikes::before, +.um-icon-within .fa-road-spikes::before { content: "\e568"; } -.um .fa-fire-burner::before { +.um .fa-fire-burner::before, +.um-icon-within .fa-fire-burner::before { content: "\e4f1"; } -.um .fa-flag::before { +.um .fa-flag::before, +.um-icon-within .fa-flag::before { content: "\f024"; } -.um .fa-hanukiah::before { +.um .fa-hanukiah::before, +.um-icon-within .fa-hanukiah::before { content: "\f6e6"; } -.um .fa-feather::before { +.um .fa-feather::before, +.um-icon-within .fa-feather::before { content: "\f52d"; } -.um .fa-volume-low::before { +.um .fa-volume-low::before, +.um-icon-within .fa-volume-low::before { content: "\f027"; } -.um .fa-volume-down::before { +.um .fa-volume-down::before, +.um-icon-within .fa-volume-down::before { content: "\f027"; } -.um .fa-comment-slash::before { +.um .fa-comment-slash::before, +.um-icon-within .fa-comment-slash::before { content: "\f4b3"; } -.um .fa-cloud-sun-rain::before { +.um .fa-cloud-sun-rain::before, +.um-icon-within .fa-cloud-sun-rain::before { content: "\f743"; } -.um .fa-compress::before { +.um .fa-compress::before, +.um-icon-within .fa-compress::before { content: "\f066"; } -.um .fa-wheat-awn::before { +.um .fa-wheat-awn::before, +.um-icon-within .fa-wheat-awn::before { content: "\e2cd"; } -.um .fa-wheat-alt::before { +.um .fa-wheat-alt::before, +.um-icon-within .fa-wheat-alt::before { content: "\e2cd"; } -.um .fa-ankh::before { +.um .fa-ankh::before, +.um-icon-within .fa-ankh::before { content: "\f644"; } -.um .fa-hands-holding-child::before { +.um .fa-hands-holding-child::before, +.um-icon-within .fa-hands-holding-child::before { content: "\e4fa"; } -.um .fa-asterisk::before { +.um .fa-asterisk::before, +.um-icon-within .fa-asterisk::before { content: "\*"; } -.um .fa-square-check::before { +.um .fa-square-check::before, +.um-icon-within .fa-square-check::before { content: "\f14a"; } -.um .fa-check-square::before { +.um .fa-check-square::before, +.um-icon-within .fa-check-square::before { content: "\f14a"; } -.um .fa-peseta-sign::before { +.um .fa-peseta-sign::before, +.um-icon-within .fa-peseta-sign::before { content: "\e221"; } -.um .fa-heading::before { +.um .fa-heading::before, +.um-icon-within .fa-heading::before { content: "\f1dc"; } -.um .fa-header::before { +.um .fa-header::before, +.um-icon-within .fa-header::before { content: "\f1dc"; } -.um .fa-ghost::before { +.um .fa-ghost::before, +.um-icon-within .fa-ghost::before { content: "\f6e2"; } -.um .fa-list::before { +.um .fa-list::before, +.um-icon-within .fa-list::before { content: "\f03a"; } -.um .fa-list-squares::before { +.um .fa-list-squares::before, +.um-icon-within .fa-list-squares::before { content: "\f03a"; } -.um .fa-square-phone-flip::before { +.um .fa-square-phone-flip::before, +.um-icon-within .fa-square-phone-flip::before { content: "\f87b"; } -.um .fa-phone-square-alt::before { +.um .fa-phone-square-alt::before, +.um-icon-within .fa-phone-square-alt::before { content: "\f87b"; } -.um .fa-cart-plus::before { +.um .fa-cart-plus::before, +.um-icon-within .fa-cart-plus::before { content: "\f217"; } -.um .fa-gamepad::before { +.um .fa-gamepad::before, +.um-icon-within .fa-gamepad::before { content: "\f11b"; } -.um .fa-circle-dot::before { +.um .fa-circle-dot::before, +.um-icon-within .fa-circle-dot::before { content: "\f192"; } -.um .fa-dot-circle::before { +.um .fa-dot-circle::before, +.um-icon-within .fa-dot-circle::before { content: "\f192"; } -.um .fa-face-dizzy::before { +.um .fa-face-dizzy::before, +.um-icon-within .fa-face-dizzy::before { content: "\f567"; } -.um .fa-dizzy::before { +.um .fa-dizzy::before, +.um-icon-within .fa-dizzy::before { content: "\f567"; } -.um .fa-egg::before { +.um .fa-egg::before, +.um-icon-within .fa-egg::before { content: "\f7fb"; } -.um .fa-house-medical-circle-xmark::before { +.um .fa-house-medical-circle-xmark::before, +.um-icon-within .fa-house-medical-circle-xmark::before { content: "\e513"; } -.um .fa-campground::before { +.um .fa-campground::before, +.um-icon-within .fa-campground::before { content: "\f6bb"; } -.um .fa-folder-plus::before { +.um .fa-folder-plus::before, +.um-icon-within .fa-folder-plus::before { content: "\f65e"; } -.um .fa-futbol::before { +.um .fa-futbol::before, +.um-icon-within .fa-futbol::before { content: "\f1e3"; } -.um .fa-futbol-ball::before { +.um .fa-futbol-ball::before, +.um-icon-within .fa-futbol-ball::before { content: "\f1e3"; } -.um .fa-soccer-ball::before { +.um .fa-soccer-ball::before, +.um-icon-within .fa-soccer-ball::before { content: "\f1e3"; } -.um .fa-paintbrush::before { +.um .fa-paintbrush::before, +.um-icon-within .fa-paintbrush::before { content: "\f1fc"; } -.um .fa-paint-brush::before { +.um .fa-paint-brush::before, +.um-icon-within .fa-paint-brush::before { content: "\f1fc"; } -.um .fa-lock::before { +.um .fa-lock::before, +.um-icon-within .fa-lock::before { content: "\f023"; } -.um .fa-gas-pump::before { +.um .fa-gas-pump::before, +.um-icon-within .fa-gas-pump::before { content: "\f52f"; } -.um .fa-hot-tub-person::before { +.um .fa-hot-tub-person::before, +.um-icon-within .fa-hot-tub-person::before { content: "\f593"; } -.um .fa-hot-tub::before { +.um .fa-hot-tub::before, +.um-icon-within .fa-hot-tub::before { content: "\f593"; } -.um .fa-map-location::before { +.um .fa-map-location::before, +.um-icon-within .fa-map-location::before { content: "\f59f"; } -.um .fa-map-marked::before { +.um .fa-map-marked::before, +.um-icon-within .fa-map-marked::before { content: "\f59f"; } -.um .fa-house-flood-water::before { +.um .fa-house-flood-water::before, +.um-icon-within .fa-house-flood-water::before { content: "\e50e"; } -.um .fa-tree::before { +.um .fa-tree::before, +.um-icon-within .fa-tree::before { content: "\f1bb"; } -.um .fa-bridge-lock::before { +.um .fa-bridge-lock::before, +.um-icon-within .fa-bridge-lock::before { content: "\e4cc"; } -.um .fa-sack-dollar::before { +.um .fa-sack-dollar::before, +.um-icon-within .fa-sack-dollar::before { content: "\f81d"; } -.um .fa-pen-to-square::before { +.um .fa-pen-to-square::before, +.um-icon-within .fa-pen-to-square::before { content: "\f044"; } -.um .fa-edit::before { +.um .fa-edit::before, +.um-icon-within .fa-edit::before { content: "\f044"; } -.um .fa-car-side::before { +.um .fa-car-side::before, +.um-icon-within .fa-car-side::before { content: "\f5e4"; } -.um .fa-share-nodes::before { +.um .fa-share-nodes::before, +.um-icon-within .fa-share-nodes::before { content: "\f1e0"; } -.um .fa-share-alt::before { +.um .fa-share-alt::before, +.um-icon-within .fa-share-alt::before { content: "\f1e0"; } -.um .fa-heart-circle-minus::before { +.um .fa-heart-circle-minus::before, +.um-icon-within .fa-heart-circle-minus::before { content: "\e4ff"; } -.um .fa-hourglass-half::before { +.um .fa-hourglass-half::before, +.um-icon-within .fa-hourglass-half::before { content: "\f252"; } -.um .fa-hourglass-2::before { +.um .fa-hourglass-2::before, +.um-icon-within .fa-hourglass-2::before { content: "\f252"; } -.um .fa-microscope::before { +.um .fa-microscope::before, +.um-icon-within .fa-microscope::before { content: "\f610"; } -.um .fa-sink::before { +.um .fa-sink::before, +.um-icon-within .fa-sink::before { content: "\e06d"; } -.um .fa-bag-shopping::before { +.um .fa-bag-shopping::before, +.um-icon-within .fa-bag-shopping::before { content: "\f290"; } -.um .fa-shopping-bag::before { +.um .fa-shopping-bag::before, +.um-icon-within .fa-shopping-bag::before { content: "\f290"; } -.um .fa-arrow-down-z-a::before { +.um .fa-arrow-down-z-a::before, +.um-icon-within .fa-arrow-down-z-a::before { content: "\f881"; } -.um .fa-sort-alpha-desc::before { +.um .fa-sort-alpha-desc::before, +.um-icon-within .fa-sort-alpha-desc::before { content: "\f881"; } -.um .fa-sort-alpha-down-alt::before { +.um .fa-sort-alpha-down-alt::before, +.um-icon-within .fa-sort-alpha-down-alt::before { content: "\f881"; } -.um .fa-mitten::before { +.um .fa-mitten::before, +.um-icon-within .fa-mitten::before { content: "\f7b5"; } -.um .fa-person-rays::before { +.um .fa-person-rays::before, +.um-icon-within .fa-person-rays::before { content: "\e54d"; } -.um .fa-users::before { +.um .fa-users::before, +.um-icon-within .fa-users::before { content: "\f0c0"; } -.um .fa-eye-slash::before { +.um .fa-eye-slash::before, +.um-icon-within .fa-eye-slash::before { content: "\f070"; } -.um .fa-flask-vial::before { +.um .fa-flask-vial::before, +.um-icon-within .fa-flask-vial::before { content: "\e4f3"; } -.um .fa-hand::before { +.um .fa-hand::before, +.um-icon-within .fa-hand::before { content: "\f256"; } -.um .fa-hand-paper::before { +.um .fa-hand-paper::before, +.um-icon-within .fa-hand-paper::before { content: "\f256"; } -.um .fa-om::before { +.um .fa-om::before, +.um-icon-within .fa-om::before { content: "\f679"; } -.um .fa-worm::before { +.um .fa-worm::before, +.um-icon-within .fa-worm::before { content: "\e599"; } -.um .fa-house-circle-xmark::before { +.um .fa-house-circle-xmark::before, +.um-icon-within .fa-house-circle-xmark::before { content: "\e50b"; } -.um .fa-plug::before { +.um .fa-plug::before, +.um-icon-within .fa-plug::before { content: "\f1e6"; } -.um .fa-chevron-up::before { +.um .fa-chevron-up::before, +.um-icon-within .fa-chevron-up::before { content: "\f077"; } -.um .fa-hand-spock::before { +.um .fa-hand-spock::before, +.um-icon-within .fa-hand-spock::before { content: "\f259"; } -.um .fa-stopwatch::before { +.um .fa-stopwatch::before, +.um-icon-within .fa-stopwatch::before { content: "\f2f2"; } -.um .fa-face-kiss::before { +.um .fa-face-kiss::before, +.um-icon-within .fa-face-kiss::before { content: "\f596"; } -.um .fa-kiss::before { +.um .fa-kiss::before, +.um-icon-within .fa-kiss::before { content: "\f596"; } -.um .fa-bridge-circle-xmark::before { +.um .fa-bridge-circle-xmark::before, +.um-icon-within .fa-bridge-circle-xmark::before { content: "\e4cb"; } -.um .fa-face-grin-tongue::before { +.um .fa-face-grin-tongue::before, +.um-icon-within .fa-face-grin-tongue::before { content: "\f589"; } -.um .fa-grin-tongue::before { +.um .fa-grin-tongue::before, +.um-icon-within .fa-grin-tongue::before { content: "\f589"; } -.um .fa-chess-bishop::before { +.um .fa-chess-bishop::before, +.um-icon-within .fa-chess-bishop::before { content: "\f43a"; } -.um .fa-face-grin-wink::before { +.um .fa-face-grin-wink::before, +.um-icon-within .fa-face-grin-wink::before { content: "\f58c"; } -.um .fa-grin-wink::before { +.um .fa-grin-wink::before, +.um-icon-within .fa-grin-wink::before { content: "\f58c"; } -.um .fa-ear-deaf::before { +.um .fa-ear-deaf::before, +.um-icon-within .fa-ear-deaf::before { content: "\f2a4"; } -.um .fa-deaf::before { +.um .fa-deaf::before, +.um-icon-within .fa-deaf::before { content: "\f2a4"; } -.um .fa-deafness::before { +.um .fa-deafness::before, +.um-icon-within .fa-deafness::before { content: "\f2a4"; } -.um .fa-hard-of-hearing::before { +.um .fa-hard-of-hearing::before, +.um-icon-within .fa-hard-of-hearing::before { content: "\f2a4"; } -.um .fa-road-circle-check::before { +.um .fa-road-circle-check::before, +.um-icon-within .fa-road-circle-check::before { content: "\e564"; } -.um .fa-dice-five::before { +.um .fa-dice-five::before, +.um-icon-within .fa-dice-five::before { content: "\f523"; } -.um .fa-square-rss::before { +.um .fa-square-rss::before, +.um-icon-within .fa-square-rss::before { content: "\f143"; } -.um .fa-rss-square::before { +.um .fa-rss-square::before, +.um-icon-within .fa-rss-square::before { content: "\f143"; } -.um .fa-land-mine-on::before { +.um .fa-land-mine-on::before, +.um-icon-within .fa-land-mine-on::before { content: "\e51b"; } -.um .fa-i-cursor::before { +.um .fa-i-cursor::before, +.um-icon-within .fa-i-cursor::before { content: "\f246"; } -.um .fa-stamp::before { +.um .fa-stamp::before, +.um-icon-within .fa-stamp::before { content: "\f5bf"; } -.um .fa-stairs::before { +.um .fa-stairs::before, +.um-icon-within .fa-stairs::before { content: "\e289"; } -.um .fa-i::before { +.um .fa-i::before, +.um-icon-within .fa-i::before { content: "I"; } -.um .fa-hryvnia-sign::before { +.um .fa-hryvnia-sign::before, +.um-icon-within .fa-hryvnia-sign::before { content: "\f6f2"; } -.um .fa-hryvnia::before { +.um .fa-hryvnia::before, +.um-icon-within .fa-hryvnia::before { content: "\f6f2"; } -.um .fa-pills::before { +.um .fa-pills::before, +.um-icon-within .fa-pills::before { content: "\f484"; } -.um .fa-face-grin-wide::before { +.um .fa-face-grin-wide::before, +.um-icon-within .fa-face-grin-wide::before { content: "\f581"; } -.um .fa-grin-alt::before { +.um .fa-grin-alt::before, +.um-icon-within .fa-grin-alt::before { content: "\f581"; } -.um .fa-tooth::before { +.um .fa-tooth::before, +.um-icon-within .fa-tooth::before { content: "\f5c9"; } -.um .fa-v::before { +.um .fa-v::before, +.um-icon-within .fa-v::before { content: "V"; } -.um .fa-bangladeshi-taka-sign::before { +.um .fa-bangladeshi-taka-sign::before, +.um-icon-within .fa-bangladeshi-taka-sign::before { content: "\e2e6"; } -.um .fa-bicycle::before { +.um .fa-bicycle::before, +.um-icon-within .fa-bicycle::before { content: "\f206"; } -.um .fa-staff-snake::before { +.um .fa-staff-snake::before, +.um-icon-within .fa-staff-snake::before { content: "\e579"; } -.um .fa-rod-asclepius::before { +.um .fa-rod-asclepius::before, +.um-icon-within .fa-rod-asclepius::before { content: "\e579"; } -.um .fa-rod-snake::before { +.um .fa-rod-snake::before, +.um-icon-within .fa-rod-snake::before { content: "\e579"; } -.um .fa-staff-aesculapius::before { +.um .fa-staff-aesculapius::before, +.um-icon-within .fa-staff-aesculapius::before { content: "\e579"; } -.um .fa-head-side-cough-slash::before { +.um .fa-head-side-cough-slash::before, +.um-icon-within .fa-head-side-cough-slash::before { content: "\e062"; } -.um .fa-truck-medical::before { +.um .fa-truck-medical::before, +.um-icon-within .fa-truck-medical::before { content: "\f0f9"; } -.um .fa-ambulance::before { +.um .fa-ambulance::before, +.um-icon-within .fa-ambulance::before { content: "\f0f9"; } -.um .fa-wheat-awn-circle-exclamation::before { +.um .fa-wheat-awn-circle-exclamation::before, +.um-icon-within .fa-wheat-awn-circle-exclamation::before { content: "\e598"; } -.um .fa-snowman::before { +.um .fa-snowman::before, +.um-icon-within .fa-snowman::before { content: "\f7d0"; } -.um .fa-mortar-pestle::before { +.um .fa-mortar-pestle::before, +.um-icon-within .fa-mortar-pestle::before { content: "\f5a7"; } -.um .fa-road-barrier::before { +.um .fa-road-barrier::before, +.um-icon-within .fa-road-barrier::before { content: "\e562"; } -.um .fa-school::before { +.um .fa-school::before, +.um-icon-within .fa-school::before { content: "\f549"; } -.um .fa-igloo::before { +.um .fa-igloo::before, +.um-icon-within .fa-igloo::before { content: "\f7ae"; } -.um .fa-joint::before { +.um .fa-joint::before, +.um-icon-within .fa-joint::before { content: "\f595"; } -.um .fa-angle-right::before { +.um .fa-angle-right::before, +.um-icon-within .fa-angle-right::before { content: "\f105"; } -.um .fa-horse::before { +.um .fa-horse::before, +.um-icon-within .fa-horse::before { content: "\f6f0"; } -.um .fa-q::before { +.um .fa-q::before, +.um-icon-within .fa-q::before { content: "Q"; } -.um .fa-g::before { +.um .fa-g::before, +.um-icon-within .fa-g::before { content: "G"; } -.um .fa-notes-medical::before { +.um .fa-notes-medical::before, +.um-icon-within .fa-notes-medical::before { content: "\f481"; } -.um .fa-temperature-half::before { +.um .fa-temperature-half::before, +.um-icon-within .fa-temperature-half::before { content: "\f2c9"; } -.um .fa-temperature-2::before { +.um .fa-temperature-2::before, +.um-icon-within .fa-temperature-2::before { content: "\f2c9"; } -.um .fa-thermometer-2::before { +.um .fa-thermometer-2::before, +.um-icon-within .fa-thermometer-2::before { content: "\f2c9"; } -.um .fa-thermometer-half::before { +.um .fa-thermometer-half::before, +.um-icon-within .fa-thermometer-half::before { content: "\f2c9"; } -.um .fa-dong-sign::before { +.um .fa-dong-sign::before, +.um-icon-within .fa-dong-sign::before { content: "\e169"; } -.um .fa-capsules::before { +.um .fa-capsules::before, +.um-icon-within .fa-capsules::before { content: "\f46b"; } -.um .fa-poo-storm::before { +.um .fa-poo-storm::before, +.um-icon-within .fa-poo-storm::before { content: "\f75a"; } -.um .fa-poo-bolt::before { +.um .fa-poo-bolt::before, +.um-icon-within .fa-poo-bolt::before { content: "\f75a"; } -.um .fa-face-frown-open::before { +.um .fa-face-frown-open::before, +.um-icon-within .fa-face-frown-open::before { content: "\f57a"; } -.um .fa-frown-open::before { +.um .fa-frown-open::before, +.um-icon-within .fa-frown-open::before { content: "\f57a"; } -.um .fa-hand-point-up::before { +.um .fa-hand-point-up::before, +.um-icon-within .fa-hand-point-up::before { content: "\f0a6"; } -.um .fa-money-bill::before { +.um .fa-money-bill::before, +.um-icon-within .fa-money-bill::before { content: "\f0d6"; } -.um .fa-bookmark::before { +.um .fa-bookmark::before, +.um-icon-within .fa-bookmark::before { content: "\f02e"; } -.um .fa-align-justify::before { +.um .fa-align-justify::before, +.um-icon-within .fa-align-justify::before { content: "\f039"; } -.um .fa-umbrella-beach::before { +.um .fa-umbrella-beach::before, +.um-icon-within .fa-umbrella-beach::before { content: "\f5ca"; } -.um .fa-helmet-un::before { +.um .fa-helmet-un::before, +.um-icon-within .fa-helmet-un::before { content: "\e503"; } -.um .fa-bullseye::before { +.um .fa-bullseye::before, +.um-icon-within .fa-bullseye::before { content: "\f140"; } -.um .fa-bacon::before { +.um .fa-bacon::before, +.um-icon-within .fa-bacon::before { content: "\f7e5"; } -.um .fa-hand-point-down::before { +.um .fa-hand-point-down::before, +.um-icon-within .fa-hand-point-down::before { content: "\f0a7"; } -.um .fa-arrow-up-from-bracket::before { +.um .fa-arrow-up-from-bracket::before, +.um-icon-within .fa-arrow-up-from-bracket::before { content: "\e09a"; } -.um .fa-folder::before { +.um .fa-folder::before, +.um-icon-within .fa-folder::before { content: "\f07b"; } -.um .fa-folder-blank::before { +.um .fa-folder-blank::before, +.um-icon-within .fa-folder-blank::before { content: "\f07b"; } -.um .fa-file-waveform::before { +.um .fa-file-waveform::before, +.um-icon-within .fa-file-waveform::before { content: "\f478"; } -.um .fa-file-medical-alt::before { +.um .fa-file-medical-alt::before, +.um-icon-within .fa-file-medical-alt::before { content: "\f478"; } -.um .fa-radiation::before { +.um .fa-radiation::before, +.um-icon-within .fa-radiation::before { content: "\f7b9"; } -.um .fa-chart-simple::before { +.um .fa-chart-simple::before, +.um-icon-within .fa-chart-simple::before { content: "\e473"; } -.um .fa-mars-stroke::before { +.um .fa-mars-stroke::before, +.um-icon-within .fa-mars-stroke::before { content: "\f229"; } -.um .fa-vial::before { +.um .fa-vial::before, +.um-icon-within .fa-vial::before { content: "\f492"; } -.um .fa-gauge::before { +.um .fa-gauge::before, +.um-icon-within .fa-gauge::before { content: "\f624"; } -.um .fa-dashboard::before { +.um .fa-dashboard::before, +.um-icon-within .fa-dashboard::before { content: "\f624"; } -.um .fa-gauge-med::before { +.um .fa-gauge-med::before, +.um-icon-within .fa-gauge-med::before { content: "\f624"; } -.um .fa-tachometer-alt-average::before { +.um .fa-tachometer-alt-average::before, +.um-icon-within .fa-tachometer-alt-average::before { content: "\f624"; } -.um .fa-wand-magic-sparkles::before { +.um .fa-wand-magic-sparkles::before, +.um-icon-within .fa-wand-magic-sparkles::before { content: "\e2ca"; } -.um .fa-magic-wand-sparkles::before { +.um .fa-magic-wand-sparkles::before, +.um-icon-within .fa-magic-wand-sparkles::before { content: "\e2ca"; } -.um .fa-e::before { +.um .fa-e::before, +.um-icon-within .fa-e::before { content: "E"; } -.um .fa-pen-clip::before { +.um .fa-pen-clip::before, +.um-icon-within .fa-pen-clip::before { content: "\f305"; } -.um .fa-pen-alt::before { +.um .fa-pen-alt::before, +.um-icon-within .fa-pen-alt::before { content: "\f305"; } -.um .fa-bridge-circle-exclamation::before { +.um .fa-bridge-circle-exclamation::before, +.um-icon-within .fa-bridge-circle-exclamation::before { content: "\e4ca"; } -.um .fa-user::before { +.um .fa-user::before, +.um-icon-within .fa-user::before { content: "\f007"; } -.um .fa-school-circle-check::before { +.um .fa-school-circle-check::before, +.um-icon-within .fa-school-circle-check::before { content: "\e56b"; } -.um .fa-dumpster::before { +.um .fa-dumpster::before, +.um-icon-within .fa-dumpster::before { content: "\f793"; } -.um .fa-van-shuttle::before { +.um .fa-van-shuttle::before, +.um-icon-within .fa-van-shuttle::before { content: "\f5b6"; } -.um .fa-shuttle-van::before { +.um .fa-shuttle-van::before, +.um-icon-within .fa-shuttle-van::before { content: "\f5b6"; } -.um .fa-building-user::before { +.um .fa-building-user::before, +.um-icon-within .fa-building-user::before { content: "\e4da"; } -.um .fa-square-caret-left::before { +.um .fa-square-caret-left::before, +.um-icon-within .fa-square-caret-left::before { content: "\f191"; } -.um .fa-caret-square-left::before { +.um .fa-caret-square-left::before, +.um-icon-within .fa-caret-square-left::before { content: "\f191"; } -.um .fa-highlighter::before { +.um .fa-highlighter::before, +.um-icon-within .fa-highlighter::before { content: "\f591"; } -.um .fa-key::before { +.um .fa-key::before, +.um-icon-within .fa-key::before { content: "\f084"; } -.um .fa-bullhorn::before { +.um .fa-bullhorn::before, +.um-icon-within .fa-bullhorn::before { content: "\f0a1"; } -.um .fa-globe::before { +.um .fa-globe::before, +.um-icon-within .fa-globe::before { content: "\f0ac"; } -.um .fa-synagogue::before { +.um .fa-synagogue::before, +.um-icon-within .fa-synagogue::before { content: "\f69b"; } -.um .fa-person-half-dress::before { +.um .fa-person-half-dress::before, +.um-icon-within .fa-person-half-dress::before { content: "\e548"; } -.um .fa-road-bridge::before { +.um .fa-road-bridge::before, +.um-icon-within .fa-road-bridge::before { content: "\e563"; } -.um .fa-location-arrow::before { +.um .fa-location-arrow::before, +.um-icon-within .fa-location-arrow::before { content: "\f124"; } -.um .fa-c::before { +.um .fa-c::before, +.um-icon-within .fa-c::before { content: "C"; } -.um .fa-tablet-button::before { +.um .fa-tablet-button::before, +.um-icon-within .fa-tablet-button::before { content: "\f10a"; } -.um .fa-building-lock::before { +.um .fa-building-lock::before, +.um-icon-within .fa-building-lock::before { content: "\e4d6"; } -.um .fa-pizza-slice::before { +.um .fa-pizza-slice::before, +.um-icon-within .fa-pizza-slice::before { content: "\f818"; } -.um .fa-money-bill-wave::before { +.um .fa-money-bill-wave::before, +.um-icon-within .fa-money-bill-wave::before { content: "\f53a"; } -.um .fa-chart-area::before { +.um .fa-chart-area::before, +.um-icon-within .fa-chart-area::before { content: "\f1fe"; } -.um .fa-area-chart::before { +.um .fa-area-chart::before, +.um-icon-within .fa-area-chart::before { content: "\f1fe"; } -.um .fa-house-flag::before { +.um .fa-house-flag::before, +.um-icon-within .fa-house-flag::before { content: "\e50d"; } -.um .fa-person-circle-minus::before { +.um .fa-person-circle-minus::before, +.um-icon-within .fa-person-circle-minus::before { content: "\e540"; } -.um .fa-ban::before { +.um .fa-ban::before, +.um-icon-within .fa-ban::before { content: "\f05e"; } -.um .fa-cancel::before { +.um .fa-cancel::before, +.um-icon-within .fa-cancel::before { content: "\f05e"; } -.um .fa-camera-rotate::before { +.um .fa-camera-rotate::before, +.um-icon-within .fa-camera-rotate::before { content: "\e0d8"; } -.um .fa-spray-can-sparkles::before { +.um .fa-spray-can-sparkles::before, +.um-icon-within .fa-spray-can-sparkles::before { content: "\f5d0"; } -.um .fa-air-freshener::before { +.um .fa-air-freshener::before, +.um-icon-within .fa-air-freshener::before { content: "\f5d0"; } -.um .fa-star::before { +.um .fa-star::before, +.um-icon-within .fa-star::before { content: "\f005"; } -.um .fa-repeat::before { +.um .fa-repeat::before, +.um-icon-within .fa-repeat::before { content: "\f363"; } -.um .fa-cross::before { +.um .fa-cross::before, +.um-icon-within .fa-cross::before { content: "\f654"; } -.um .fa-box::before { +.um .fa-box::before, +.um-icon-within .fa-box::before { content: "\f466"; } -.um .fa-venus-mars::before { +.um .fa-venus-mars::before, +.um-icon-within .fa-venus-mars::before { content: "\f228"; } -.um .fa-arrow-pointer::before { +.um .fa-arrow-pointer::before, +.um-icon-within .fa-arrow-pointer::before { content: "\f245"; } -.um .fa-mouse-pointer::before { +.um .fa-mouse-pointer::before, +.um-icon-within .fa-mouse-pointer::before { content: "\f245"; } -.um .fa-maximize::before { +.um .fa-maximize::before, +.um-icon-within .fa-maximize::before { content: "\f31e"; } -.um .fa-expand-arrows-alt::before { +.um .fa-expand-arrows-alt::before, +.um-icon-within .fa-expand-arrows-alt::before { content: "\f31e"; } -.um .fa-charging-station::before { +.um .fa-charging-station::before, +.um-icon-within .fa-charging-station::before { content: "\f5e7"; } -.um .fa-shapes::before { +.um .fa-shapes::before, +.um-icon-within .fa-shapes::before { content: "\f61f"; } -.um .fa-triangle-circle-square::before { +.um .fa-triangle-circle-square::before, +.um-icon-within .fa-triangle-circle-square::before { content: "\f61f"; } -.um .fa-shuffle::before { +.um .fa-shuffle::before, +.um-icon-within .fa-shuffle::before { content: "\f074"; } -.um .fa-random::before { +.um .fa-random::before, +.um-icon-within .fa-random::before { content: "\f074"; } -.um .fa-person-running::before { +.um .fa-person-running::before, +.um-icon-within .fa-person-running::before { content: "\f70c"; } -.um .fa-running::before { +.um .fa-running::before, +.um-icon-within .fa-running::before { content: "\f70c"; } -.um .fa-mobile-retro::before { +.um .fa-mobile-retro::before, +.um-icon-within .fa-mobile-retro::before { content: "\e527"; } -.um .fa-grip-lines-vertical::before { +.um .fa-grip-lines-vertical::before, +.um-icon-within .fa-grip-lines-vertical::before { content: "\f7a5"; } -.um .fa-spider::before { +.um .fa-spider::before, +.um-icon-within .fa-spider::before { content: "\f717"; } -.um .fa-hands-bound::before { +.um .fa-hands-bound::before, +.um-icon-within .fa-hands-bound::before { content: "\e4f9"; } -.um .fa-file-invoice-dollar::before { +.um .fa-file-invoice-dollar::before, +.um-icon-within .fa-file-invoice-dollar::before { content: "\f571"; } -.um .fa-plane-circle-exclamation::before { +.um .fa-plane-circle-exclamation::before, +.um-icon-within .fa-plane-circle-exclamation::before { content: "\e556"; } -.um .fa-x-ray::before { +.um .fa-x-ray::before, +.um-icon-within .fa-x-ray::before { content: "\f497"; } -.um .fa-spell-check::before { +.um .fa-spell-check::before, +.um-icon-within .fa-spell-check::before { content: "\f891"; } -.um .fa-slash::before { +.um .fa-slash::before, +.um-icon-within .fa-slash::before { content: "\f715"; } -.um .fa-computer-mouse::before { +.um .fa-computer-mouse::before, +.um-icon-within .fa-computer-mouse::before { content: "\f8cc"; } -.um .fa-mouse::before { +.um .fa-mouse::before, +.um-icon-within .fa-mouse::before { content: "\f8cc"; } -.um .fa-arrow-right-to-bracket::before { +.um .fa-arrow-right-to-bracket::before, +.um-icon-within .fa-arrow-right-to-bracket::before { content: "\f090"; } -.um .fa-sign-in::before { +.um .fa-sign-in::before, +.um-icon-within .fa-sign-in::before { content: "\f090"; } -.um .fa-shop-slash::before { +.um .fa-shop-slash::before, +.um-icon-within .fa-shop-slash::before { content: "\e070"; } -.um .fa-store-alt-slash::before { +.um .fa-store-alt-slash::before, +.um-icon-within .fa-store-alt-slash::before { content: "\e070"; } -.um .fa-server::before { +.um .fa-server::before, +.um-icon-within .fa-server::before { content: "\f233"; } -.um .fa-virus-covid-slash::before { +.um .fa-virus-covid-slash::before, +.um-icon-within .fa-virus-covid-slash::before { content: "\e4a9"; } -.um .fa-shop-lock::before { +.um .fa-shop-lock::before, +.um-icon-within .fa-shop-lock::before { content: "\e4a5"; } -.um .fa-hourglass-start::before { +.um .fa-hourglass-start::before, +.um-icon-within .fa-hourglass-start::before { content: "\f251"; } -.um .fa-hourglass-1::before { +.um .fa-hourglass-1::before, +.um-icon-within .fa-hourglass-1::before { content: "\f251"; } -.um .fa-blender-phone::before { +.um .fa-blender-phone::before, +.um-icon-within .fa-blender-phone::before { content: "\f6b6"; } -.um .fa-building-wheat::before { +.um .fa-building-wheat::before, +.um-icon-within .fa-building-wheat::before { content: "\e4db"; } -.um .fa-person-breastfeeding::before { +.um .fa-person-breastfeeding::before, +.um-icon-within .fa-person-breastfeeding::before { content: "\e53a"; } -.um .fa-right-to-bracket::before { +.um .fa-right-to-bracket::before, +.um-icon-within .fa-right-to-bracket::before { content: "\f2f6"; } -.um .fa-sign-in-alt::before { +.um .fa-sign-in-alt::before, +.um-icon-within .fa-sign-in-alt::before { content: "\f2f6"; } -.um .fa-venus::before { +.um .fa-venus::before, +.um-icon-within .fa-venus::before { content: "\f221"; } -.um .fa-passport::before { +.um .fa-passport::before, +.um-icon-within .fa-passport::before { content: "\f5ab"; } -.um .fa-heart-pulse::before { +.um .fa-heart-pulse::before, +.um-icon-within .fa-heart-pulse::before { content: "\f21e"; } -.um .fa-heartbeat::before { +.um .fa-heartbeat::before, +.um-icon-within .fa-heartbeat::before { content: "\f21e"; } -.um .fa-people-carry-box::before { +.um .fa-people-carry-box::before, +.um-icon-within .fa-people-carry-box::before { content: "\f4ce"; } -.um .fa-people-carry::before { +.um .fa-people-carry::before, +.um-icon-within .fa-people-carry::before { content: "\f4ce"; } -.um .fa-temperature-high::before { +.um .fa-temperature-high::before, +.um-icon-within .fa-temperature-high::before { content: "\f769"; } -.um .fa-microchip::before { +.um .fa-microchip::before, +.um-icon-within .fa-microchip::before { content: "\f2db"; } -.um .fa-crown::before { +.um .fa-crown::before, +.um-icon-within .fa-crown::before { content: "\f521"; } -.um .fa-weight-hanging::before { +.um .fa-weight-hanging::before, +.um-icon-within .fa-weight-hanging::before { content: "\f5cd"; } -.um .fa-xmarks-lines::before { +.um .fa-xmarks-lines::before, +.um-icon-within .fa-xmarks-lines::before { content: "\e59a"; } -.um .fa-file-prescription::before { +.um .fa-file-prescription::before, +.um-icon-within .fa-file-prescription::before { content: "\f572"; } -.um .fa-weight-scale::before { +.um .fa-weight-scale::before, +.um-icon-within .fa-weight-scale::before { content: "\f496"; } -.um .fa-weight::before { +.um .fa-weight::before, +.um-icon-within .fa-weight::before { content: "\f496"; } -.um .fa-user-group::before { +.um .fa-user-group::before, +.um-icon-within .fa-user-group::before { content: "\f500"; } -.um .fa-user-friends::before { +.um .fa-user-friends::before, +.um-icon-within .fa-user-friends::before { content: "\f500"; } -.um .fa-arrow-up-a-z::before { +.um .fa-arrow-up-a-z::before, +.um-icon-within .fa-arrow-up-a-z::before { content: "\f15e"; } -.um .fa-sort-alpha-up::before { +.um .fa-sort-alpha-up::before, +.um-icon-within .fa-sort-alpha-up::before { content: "\f15e"; } -.um .fa-chess-knight::before { +.um .fa-chess-knight::before, +.um-icon-within .fa-chess-knight::before { content: "\f441"; } -.um .fa-face-laugh-squint::before { +.um .fa-face-laugh-squint::before, +.um-icon-within .fa-face-laugh-squint::before { content: "\f59b"; } -.um .fa-laugh-squint::before { +.um .fa-laugh-squint::before, +.um-icon-within .fa-laugh-squint::before { content: "\f59b"; } -.um .fa-wheelchair::before { +.um .fa-wheelchair::before, +.um-icon-within .fa-wheelchair::before { content: "\f193"; } -.um .fa-circle-arrow-up::before { +.um .fa-circle-arrow-up::before, +.um-icon-within .fa-circle-arrow-up::before { content: "\f0aa"; } -.um .fa-arrow-circle-up::before { +.um .fa-arrow-circle-up::before, +.um-icon-within .fa-arrow-circle-up::before { content: "\f0aa"; } -.um .fa-toggle-on::before { +.um .fa-toggle-on::before, +.um-icon-within .fa-toggle-on::before { content: "\f205"; } -.um .fa-person-walking::before { +.um .fa-person-walking::before, +.um-icon-within .fa-person-walking::before { content: "\f554"; } -.um .fa-walking::before { +.um .fa-walking::before, +.um-icon-within .fa-walking::before { content: "\f554"; } -.um .fa-l::before { +.um .fa-l::before, +.um-icon-within .fa-l::before { content: "L"; } -.um .fa-fire::before { +.um .fa-fire::before, +.um-icon-within .fa-fire::before { content: "\f06d"; } -.um .fa-bed-pulse::before { +.um .fa-bed-pulse::before, +.um-icon-within .fa-bed-pulse::before { content: "\f487"; } -.um .fa-procedures::before { +.um .fa-procedures::before, +.um-icon-within .fa-procedures::before { content: "\f487"; } -.um .fa-shuttle-space::before { +.um .fa-shuttle-space::before, +.um-icon-within .fa-shuttle-space::before { content: "\f197"; } -.um .fa-space-shuttle::before { +.um .fa-space-shuttle::before, +.um-icon-within .fa-space-shuttle::before { content: "\f197"; } -.um .fa-face-laugh::before { +.um .fa-face-laugh::before, +.um-icon-within .fa-face-laugh::before { content: "\f599"; } -.um .fa-laugh::before { +.um .fa-laugh::before, +.um-icon-within .fa-laugh::before { content: "\f599"; } -.um .fa-folder-open::before { +.um .fa-folder-open::before, +.um-icon-within .fa-folder-open::before { content: "\f07c"; } -.um .fa-heart-circle-plus::before { +.um .fa-heart-circle-plus::before, +.um-icon-within .fa-heart-circle-plus::before { content: "\e500"; } -.um .fa-code-fork::before { +.um .fa-code-fork::before, +.um-icon-within .fa-code-fork::before { content: "\e13b"; } -.um .fa-city::before { +.um .fa-city::before, +.um-icon-within .fa-city::before { content: "\f64f"; } -.um .fa-microphone-lines::before { +.um .fa-microphone-lines::before, +.um-icon-within .fa-microphone-lines::before { content: "\f3c9"; } -.um .fa-microphone-alt::before { +.um .fa-microphone-alt::before, +.um-icon-within .fa-microphone-alt::before { content: "\f3c9"; } -.um .fa-pepper-hot::before { +.um .fa-pepper-hot::before, +.um-icon-within .fa-pepper-hot::before { content: "\f816"; } -.um .fa-unlock::before { +.um .fa-unlock::before, +.um-icon-within .fa-unlock::before { content: "\f09c"; } -.um .fa-colon-sign::before { +.um .fa-colon-sign::before, +.um-icon-within .fa-colon-sign::before { content: "\e140"; } -.um .fa-headset::before { +.um .fa-headset::before, +.um-icon-within .fa-headset::before { content: "\f590"; } -.um .fa-store-slash::before { +.um .fa-store-slash::before, +.um-icon-within .fa-store-slash::before { content: "\e071"; } -.um .fa-road-circle-xmark::before { +.um .fa-road-circle-xmark::before, +.um-icon-within .fa-road-circle-xmark::before { content: "\e566"; } -.um .fa-user-minus::before { +.um .fa-user-minus::before, +.um-icon-within .fa-user-minus::before { content: "\f503"; } -.um .fa-mars-stroke-up::before { +.um .fa-mars-stroke-up::before, +.um-icon-within .fa-mars-stroke-up::before { content: "\f22a"; } -.um .fa-mars-stroke-v::before { +.um .fa-mars-stroke-v::before, +.um-icon-within .fa-mars-stroke-v::before { content: "\f22a"; } -.um .fa-champagne-glasses::before { +.um .fa-champagne-glasses::before, +.um-icon-within .fa-champagne-glasses::before { content: "\f79f"; } -.um .fa-glass-cheers::before { +.um .fa-glass-cheers::before, +.um-icon-within .fa-glass-cheers::before { content: "\f79f"; } -.um .fa-clipboard::before { +.um .fa-clipboard::before, +.um-icon-within .fa-clipboard::before { content: "\f328"; } -.um .fa-house-circle-exclamation::before { +.um .fa-house-circle-exclamation::before, +.um-icon-within .fa-house-circle-exclamation::before { content: "\e50a"; } -.um .fa-file-arrow-up::before { +.um .fa-file-arrow-up::before, +.um-icon-within .fa-file-arrow-up::before { content: "\f574"; } -.um .fa-file-upload::before { +.um .fa-file-upload::before, +.um-icon-within .fa-file-upload::before { content: "\f574"; } -.um .fa-wifi::before { +.um .fa-wifi::before, +.um-icon-within .fa-wifi::before { content: "\f1eb"; } -.um .fa-wifi-3::before { +.um .fa-wifi-3::before, +.um-icon-within .fa-wifi-3::before { content: "\f1eb"; } -.um .fa-wifi-strong::before { +.um .fa-wifi-strong::before, +.um-icon-within .fa-wifi-strong::before { content: "\f1eb"; } -.um .fa-bath::before { +.um .fa-bath::before, +.um-icon-within .fa-bath::before { content: "\f2cd"; } -.um .fa-bathtub::before { +.um .fa-bathtub::before, +.um-icon-within .fa-bathtub::before { content: "\f2cd"; } -.um .fa-underline::before { +.um .fa-underline::before, +.um-icon-within .fa-underline::before { content: "\f0cd"; } -.um .fa-user-pen::before { +.um .fa-user-pen::before, +.um-icon-within .fa-user-pen::before { content: "\f4ff"; } -.um .fa-user-edit::before { +.um .fa-user-edit::before, +.um-icon-within .fa-user-edit::before { content: "\f4ff"; } -.um .fa-signature::before { +.um .fa-signature::before, +.um-icon-within .fa-signature::before { content: "\f5b7"; } -.um .fa-stroopwafel::before { +.um .fa-stroopwafel::before, +.um-icon-within .fa-stroopwafel::before { content: "\f551"; } -.um .fa-bold::before { +.um .fa-bold::before, +.um-icon-within .fa-bold::before { content: "\f032"; } -.um .fa-anchor-lock::before { +.um .fa-anchor-lock::before, +.um-icon-within .fa-anchor-lock::before { content: "\e4ad"; } -.um .fa-building-ngo::before { +.um .fa-building-ngo::before, +.um-icon-within .fa-building-ngo::before { content: "\e4d7"; } -.um .fa-manat-sign::before { +.um .fa-manat-sign::before, +.um-icon-within .fa-manat-sign::before { content: "\e1d5"; } -.um .fa-not-equal::before { +.um .fa-not-equal::before, +.um-icon-within .fa-not-equal::before { content: "\f53e"; } -.um .fa-border-top-left::before { +.um .fa-border-top-left::before, +.um-icon-within .fa-border-top-left::before { content: "\f853"; } -.um .fa-border-style::before { +.um .fa-border-style::before, +.um-icon-within .fa-border-style::before { content: "\f853"; } -.um .fa-map-location-dot::before { +.um .fa-map-location-dot::before, +.um-icon-within .fa-map-location-dot::before { content: "\f5a0"; } -.um .fa-map-marked-alt::before { +.um .fa-map-marked-alt::before, +.um-icon-within .fa-map-marked-alt::before { content: "\f5a0"; } -.um .fa-jedi::before { +.um .fa-jedi::before, +.um-icon-within .fa-jedi::before { content: "\f669"; } -.um .fa-square-poll-vertical::before { +.um .fa-square-poll-vertical::before, +.um-icon-within .fa-square-poll-vertical::before { content: "\f681"; } -.um .fa-poll::before { +.um .fa-poll::before, +.um-icon-within .fa-poll::before { content: "\f681"; } -.um .fa-mug-hot::before { +.um .fa-mug-hot::before, +.um-icon-within .fa-mug-hot::before { content: "\f7b6"; } -.um .fa-car-battery::before { +.um .fa-car-battery::before, +.um-icon-within .fa-car-battery::before { content: "\f5df"; } -.um .fa-battery-car::before { +.um .fa-battery-car::before, +.um-icon-within .fa-battery-car::before { content: "\f5df"; } -.um .fa-gift::before { +.um .fa-gift::before, +.um-icon-within .fa-gift::before { content: "\f06b"; } -.um .fa-dice-two::before { +.um .fa-dice-two::before, +.um-icon-within .fa-dice-two::before { content: "\f528"; } -.um .fa-chess-queen::before { +.um .fa-chess-queen::before, +.um-icon-within .fa-chess-queen::before { content: "\f445"; } -.um .fa-glasses::before { +.um .fa-glasses::before, +.um-icon-within .fa-glasses::before { content: "\f530"; } -.um .fa-chess-board::before { +.um .fa-chess-board::before, +.um-icon-within .fa-chess-board::before { content: "\f43c"; } -.um .fa-building-circle-check::before { +.um .fa-building-circle-check::before, +.um-icon-within .fa-building-circle-check::before { content: "\e4d2"; } -.um .fa-person-chalkboard::before { +.um .fa-person-chalkboard::before, +.um-icon-within .fa-person-chalkboard::before { content: "\e53d"; } -.um .fa-mars-stroke-right::before { +.um .fa-mars-stroke-right::before, +.um-icon-within .fa-mars-stroke-right::before { content: "\f22b"; } -.um .fa-mars-stroke-h::before { +.um .fa-mars-stroke-h::before, +.um-icon-within .fa-mars-stroke-h::before { content: "\f22b"; } -.um .fa-hand-back-fist::before { +.um .fa-hand-back-fist::before, +.um-icon-within .fa-hand-back-fist::before { content: "\f255"; } -.um .fa-hand-rock::before { +.um .fa-hand-rock::before, +.um-icon-within .fa-hand-rock::before { content: "\f255"; } -.um .fa-square-caret-up::before { +.um .fa-square-caret-up::before, +.um-icon-within .fa-square-caret-up::before { content: "\f151"; } -.um .fa-caret-square-up::before { +.um .fa-caret-square-up::before, +.um-icon-within .fa-caret-square-up::before { content: "\f151"; } -.um .fa-cloud-showers-water::before { +.um .fa-cloud-showers-water::before, +.um-icon-within .fa-cloud-showers-water::before { content: "\e4e4"; } -.um .fa-chart-bar::before { +.um .fa-chart-bar::before, +.um-icon-within .fa-chart-bar::before { content: "\f080"; } -.um .fa-bar-chart::before { +.um .fa-bar-chart::before, +.um-icon-within .fa-bar-chart::before { content: "\f080"; } -.um .fa-hands-bubbles::before { +.um .fa-hands-bubbles::before, +.um-icon-within .fa-hands-bubbles::before { content: "\e05e"; } -.um .fa-hands-wash::before { +.um .fa-hands-wash::before, +.um-icon-within .fa-hands-wash::before { content: "\e05e"; } -.um .fa-less-than-equal::before { +.um .fa-less-than-equal::before, +.um-icon-within .fa-less-than-equal::before { content: "\f537"; } -.um .fa-train::before { +.um .fa-train::before, +.um-icon-within .fa-train::before { content: "\f238"; } -.um .fa-eye-low-vision::before { +.um .fa-eye-low-vision::before, +.um-icon-within .fa-eye-low-vision::before { content: "\f2a8"; } -.um .fa-low-vision::before { +.um .fa-low-vision::before, +.um-icon-within .fa-low-vision::before { content: "\f2a8"; } -.um .fa-crow::before { +.um .fa-crow::before, +.um-icon-within .fa-crow::before { content: "\f520"; } -.um .fa-sailboat::before { +.um .fa-sailboat::before, +.um-icon-within .fa-sailboat::before { content: "\e445"; } -.um .fa-window-restore::before { +.um .fa-window-restore::before, +.um-icon-within .fa-window-restore::before { content: "\f2d2"; } -.um .fa-square-plus::before { +.um .fa-square-plus::before, +.um-icon-within .fa-square-plus::before { content: "\f0fe"; } -.um .fa-plus-square::before { +.um .fa-plus-square::before, +.um-icon-within .fa-plus-square::before { content: "\f0fe"; } -.um .fa-torii-gate::before { +.um .fa-torii-gate::before, +.um-icon-within .fa-torii-gate::before { content: "\f6a1"; } -.um .fa-frog::before { +.um .fa-frog::before, +.um-icon-within .fa-frog::before { content: "\f52e"; } -.um .fa-bucket::before { +.um .fa-bucket::before, +.um-icon-within .fa-bucket::before { content: "\e4cf"; } -.um .fa-image::before { +.um .fa-image::before, +.um-icon-within .fa-image::before { content: "\f03e"; } -.um .fa-microphone::before { +.um .fa-microphone::before, +.um-icon-within .fa-microphone::before { content: "\f130"; } -.um .fa-cow::before { +.um .fa-cow::before, +.um-icon-within .fa-cow::before { content: "\f6c8"; } -.um .fa-caret-up::before { +.um .fa-caret-up::before, +.um-icon-within .fa-caret-up::before { content: "\f0d8"; } -.um .fa-screwdriver::before { +.um .fa-screwdriver::before, +.um-icon-within .fa-screwdriver::before { content: "\f54a"; } -.um .fa-folder-closed::before { +.um .fa-folder-closed::before, +.um-icon-within .fa-folder-closed::before { content: "\e185"; } -.um .fa-house-tsunami::before { +.um .fa-house-tsunami::before, +.um-icon-within .fa-house-tsunami::before { content: "\e515"; } -.um .fa-square-nfi::before { +.um .fa-square-nfi::before, +.um-icon-within .fa-square-nfi::before { content: "\e576"; } -.um .fa-arrow-up-from-ground-water::before { +.um .fa-arrow-up-from-ground-water::before, +.um-icon-within .fa-arrow-up-from-ground-water::before { content: "\e4b5"; } -.um .fa-martini-glass::before { +.um .fa-martini-glass::before, +.um-icon-within .fa-martini-glass::before { content: "\f57b"; } -.um .fa-glass-martini-alt::before { +.um .fa-glass-martini-alt::before, +.um-icon-within .fa-glass-martini-alt::before { content: "\f57b"; } -.um .fa-rotate-left::before { +.um .fa-rotate-left::before, +.um-icon-within .fa-rotate-left::before { content: "\f2ea"; } -.um .fa-rotate-back::before { +.um .fa-rotate-back::before, +.um-icon-within .fa-rotate-back::before { content: "\f2ea"; } -.um .fa-rotate-backward::before { +.um .fa-rotate-backward::before, +.um-icon-within .fa-rotate-backward::before { content: "\f2ea"; } -.um .fa-undo-alt::before { +.um .fa-undo-alt::before, +.um-icon-within .fa-undo-alt::before { content: "\f2ea"; } -.um .fa-table-columns::before { +.um .fa-table-columns::before, +.um-icon-within .fa-table-columns::before { content: "\f0db"; } -.um .fa-columns::before { +.um .fa-columns::before, +.um-icon-within .fa-columns::before { content: "\f0db"; } -.um .fa-lemon::before { +.um .fa-lemon::before, +.um-icon-within .fa-lemon::before { content: "\f094"; } -.um .fa-head-side-mask::before { +.um .fa-head-side-mask::before, +.um-icon-within .fa-head-side-mask::before { content: "\e063"; } -.um .fa-handshake::before { +.um .fa-handshake::before, +.um-icon-within .fa-handshake::before { content: "\f2b5"; } -.um .fa-gem::before { +.um .fa-gem::before, +.um-icon-within .fa-gem::before { content: "\f3a5"; } -.um .fa-dolly::before { +.um .fa-dolly::before, +.um-icon-within .fa-dolly::before { content: "\f472"; } -.um .fa-dolly-box::before { +.um .fa-dolly-box::before, +.um-icon-within .fa-dolly-box::before { content: "\f472"; } -.um .fa-smoking::before { +.um .fa-smoking::before, +.um-icon-within .fa-smoking::before { content: "\f48d"; } -.um .fa-minimize::before { +.um .fa-minimize::before, +.um-icon-within .fa-minimize::before { content: "\f78c"; } -.um .fa-compress-arrows-alt::before { +.um .fa-compress-arrows-alt::before, +.um-icon-within .fa-compress-arrows-alt::before { content: "\f78c"; } -.um .fa-monument::before { +.um .fa-monument::before, +.um-icon-within .fa-monument::before { content: "\f5a6"; } -.um .fa-snowplow::before { +.um .fa-snowplow::before, +.um-icon-within .fa-snowplow::before { content: "\f7d2"; } -.um .fa-angles-right::before { +.um .fa-angles-right::before, +.um-icon-within .fa-angles-right::before { content: "\f101"; } -.um .fa-angle-double-right::before { +.um .fa-angle-double-right::before, +.um-icon-within .fa-angle-double-right::before { content: "\f101"; } -.um .fa-cannabis::before { +.um .fa-cannabis::before, +.um-icon-within .fa-cannabis::before { content: "\f55f"; } -.um .fa-circle-play::before { +.um .fa-circle-play::before, +.um-icon-within .fa-circle-play::before { content: "\f144"; } -.um .fa-play-circle::before { +.um .fa-play-circle::before, +.um-icon-within .fa-play-circle::before { content: "\f144"; } -.um .fa-tablets::before { +.um .fa-tablets::before, +.um-icon-within .fa-tablets::before { content: "\f490"; } -.um .fa-ethernet::before { +.um .fa-ethernet::before, +.um-icon-within .fa-ethernet::before { content: "\f796"; } -.um .fa-euro-sign::before { +.um .fa-euro-sign::before, +.um-icon-within .fa-euro-sign::before { content: "\f153"; } -.um .fa-eur::before { +.um .fa-eur::before, +.um-icon-within .fa-eur::before { content: "\f153"; } -.um .fa-euro::before { +.um .fa-euro::before, +.um-icon-within .fa-euro::before { content: "\f153"; } -.um .fa-chair::before { +.um .fa-chair::before, +.um-icon-within .fa-chair::before { content: "\f6c0"; } -.um .fa-circle-check::before { +.um .fa-circle-check::before, +.um-icon-within .fa-circle-check::before { content: "\f058"; } -.um .fa-check-circle::before { +.um .fa-check-circle::before, +.um-icon-within .fa-check-circle::before { content: "\f058"; } -.um .fa-circle-stop::before { +.um .fa-circle-stop::before, +.um-icon-within .fa-circle-stop::before { content: "\f28d"; } -.um .fa-stop-circle::before { +.um .fa-stop-circle::before, +.um-icon-within .fa-stop-circle::before { content: "\f28d"; } -.um .fa-compass-drafting::before { +.um .fa-compass-drafting::before, +.um-icon-within .fa-compass-drafting::before { content: "\f568"; } -.um .fa-drafting-compass::before { +.um .fa-drafting-compass::before, +.um-icon-within .fa-drafting-compass::before { content: "\f568"; } -.um .fa-plate-wheat::before { +.um .fa-plate-wheat::before, +.um-icon-within .fa-plate-wheat::before { content: "\e55a"; } -.um .fa-icicles::before { +.um .fa-icicles::before, +.um-icon-within .fa-icicles::before { content: "\f7ad"; } -.um .fa-person-shelter::before { +.um .fa-person-shelter::before, +.um-icon-within .fa-person-shelter::before { content: "\e54f"; } -.um .fa-neuter::before { +.um .fa-neuter::before, +.um-icon-within .fa-neuter::before { content: "\f22c"; } -.um .fa-id-badge::before { +.um .fa-id-badge::before, +.um-icon-within .fa-id-badge::before { content: "\f2c1"; } -.um .fa-marker::before { +.um .fa-marker::before, +.um-icon-within .fa-marker::before { content: "\f5a1"; } -.um .fa-face-laugh-beam::before { +.um .fa-face-laugh-beam::before, +.um-icon-within .fa-face-laugh-beam::before { content: "\f59a"; } -.um .fa-laugh-beam::before { +.um .fa-laugh-beam::before, +.um-icon-within .fa-laugh-beam::before { content: "\f59a"; } -.um .fa-helicopter-symbol::before { +.um .fa-helicopter-symbol::before, +.um-icon-within .fa-helicopter-symbol::before { content: "\e502"; } -.um .fa-universal-access::before { +.um .fa-universal-access::before, +.um-icon-within .fa-universal-access::before { content: "\f29a"; } -.um .fa-circle-chevron-up::before { +.um .fa-circle-chevron-up::before, +.um-icon-within .fa-circle-chevron-up::before { content: "\f139"; } -.um .fa-chevron-circle-up::before { +.um .fa-chevron-circle-up::before, +.um-icon-within .fa-chevron-circle-up::before { content: "\f139"; } -.um .fa-lari-sign::before { +.um .fa-lari-sign::before, +.um-icon-within .fa-lari-sign::before { content: "\e1c8"; } -.um .fa-volcano::before { +.um .fa-volcano::before, +.um-icon-within .fa-volcano::before { content: "\f770"; } -.um .fa-person-walking-dashed-line-arrow-right::before { +.um .fa-person-walking-dashed-line-arrow-right::before, +.um-icon-within .fa-person-walking-dashed-line-arrow-right::before { content: "\e553"; } -.um .fa-sterling-sign::before { +.um .fa-sterling-sign::before, +.um-icon-within .fa-sterling-sign::before { content: "\f154"; } -.um .fa-gbp::before { +.um .fa-gbp::before, +.um-icon-within .fa-gbp::before { content: "\f154"; } -.um .fa-pound-sign::before { +.um .fa-pound-sign::before, +.um-icon-within .fa-pound-sign::before { content: "\f154"; } -.um .fa-viruses::before { +.um .fa-viruses::before, +.um-icon-within .fa-viruses::before { content: "\e076"; } -.um .fa-square-person-confined::before { +.um .fa-square-person-confined::before, +.um-icon-within .fa-square-person-confined::before { content: "\e577"; } -.um .fa-user-tie::before { +.um .fa-user-tie::before, +.um-icon-within .fa-user-tie::before { content: "\f508"; } -.um .fa-arrow-down-long::before { +.um .fa-arrow-down-long::before, +.um-icon-within .fa-arrow-down-long::before { content: "\f175"; } -.um .fa-long-arrow-down::before { +.um .fa-long-arrow-down::before, +.um-icon-within .fa-long-arrow-down::before { content: "\f175"; } -.um .fa-tent-arrow-down-to-line::before { +.um .fa-tent-arrow-down-to-line::before, +.um-icon-within .fa-tent-arrow-down-to-line::before { content: "\e57e"; } -.um .fa-certificate::before { +.um .fa-certificate::before, +.um-icon-within .fa-certificate::before { content: "\f0a3"; } -.um .fa-reply-all::before { +.um .fa-reply-all::before, +.um-icon-within .fa-reply-all::before { content: "\f122"; } -.um .fa-mail-reply-all::before { +.um .fa-mail-reply-all::before, +.um-icon-within .fa-mail-reply-all::before { content: "\f122"; } -.um .fa-suitcase::before { +.um .fa-suitcase::before, +.um-icon-within .fa-suitcase::before { content: "\f0f2"; } -.um .fa-person-skating::before { +.um .fa-person-skating::before, +.um-icon-within .fa-person-skating::before { content: "\f7c5"; } -.um .fa-skating::before { +.um .fa-skating::before, +.um-icon-within .fa-skating::before { content: "\f7c5"; } -.um .fa-filter-circle-dollar::before { +.um .fa-filter-circle-dollar::before, +.um-icon-within .fa-filter-circle-dollar::before { content: "\f662"; } -.um .fa-funnel-dollar::before { +.um .fa-funnel-dollar::before, +.um-icon-within .fa-funnel-dollar::before { content: "\f662"; } -.um .fa-camera-retro::before { +.um .fa-camera-retro::before, +.um-icon-within .fa-camera-retro::before { content: "\f083"; } -.um .fa-circle-arrow-down::before { +.um .fa-circle-arrow-down::before, +.um-icon-within .fa-circle-arrow-down::before { content: "\f0ab"; } -.um .fa-arrow-circle-down::before { +.um .fa-arrow-circle-down::before, +.um-icon-within .fa-arrow-circle-down::before { content: "\f0ab"; } -.um .fa-file-import::before { +.um .fa-file-import::before, +.um-icon-within .fa-file-import::before { content: "\f56f"; } -.um .fa-arrow-right-to-file::before { +.um .fa-arrow-right-to-file::before, +.um-icon-within .fa-arrow-right-to-file::before { content: "\f56f"; } -.um .fa-square-arrow-up-right::before { +.um .fa-square-arrow-up-right::before, +.um-icon-within .fa-square-arrow-up-right::before { content: "\f14c"; } -.um .fa-external-link-square::before { +.um .fa-external-link-square::before, +.um-icon-within .fa-external-link-square::before { content: "\f14c"; } -.um .fa-box-open::before { +.um .fa-box-open::before, +.um-icon-within .fa-box-open::before { content: "\f49e"; } -.um .fa-scroll::before { +.um .fa-scroll::before, +.um-icon-within .fa-scroll::before { content: "\f70e"; } -.um .fa-spa::before { +.um .fa-spa::before, +.um-icon-within .fa-spa::before { content: "\f5bb"; } -.um .fa-location-pin-lock::before { +.um .fa-location-pin-lock::before, +.um-icon-within .fa-location-pin-lock::before { content: "\e51f"; } -.um .fa-pause::before { +.um .fa-pause::before, +.um-icon-within .fa-pause::before { content: "\f04c"; } -.um .fa-hill-avalanche::before { +.um .fa-hill-avalanche::before, +.um-icon-within .fa-hill-avalanche::before { content: "\e507"; } -.um .fa-temperature-empty::before { +.um .fa-temperature-empty::before, +.um-icon-within .fa-temperature-empty::before { content: "\f2cb"; } -.um .fa-temperature-0::before { +.um .fa-temperature-0::before, +.um-icon-within .fa-temperature-0::before { content: "\f2cb"; } -.um .fa-thermometer-0::before { +.um .fa-thermometer-0::before, +.um-icon-within .fa-thermometer-0::before { content: "\f2cb"; } -.um .fa-thermometer-empty::before { +.um .fa-thermometer-empty::before, +.um-icon-within .fa-thermometer-empty::before { content: "\f2cb"; } -.um .fa-bomb::before { +.um .fa-bomb::before, +.um-icon-within .fa-bomb::before { content: "\f1e2"; } -.um .fa-registered::before { +.um .fa-registered::before, +.um-icon-within .fa-registered::before { content: "\f25d"; } -.um .fa-address-card::before { +.um .fa-address-card::before, +.um-icon-within .fa-address-card::before { content: "\f2bb"; } -.um .fa-contact-card::before { +.um .fa-contact-card::before, +.um-icon-within .fa-contact-card::before { content: "\f2bb"; } -.um .fa-vcard::before { +.um .fa-vcard::before, +.um-icon-within .fa-vcard::before { content: "\f2bb"; } -.um .fa-scale-unbalanced-flip::before { +.um .fa-scale-unbalanced-flip::before, +.um-icon-within .fa-scale-unbalanced-flip::before { content: "\f516"; } -.um .fa-balance-scale-right::before { +.um .fa-balance-scale-right::before, +.um-icon-within .fa-balance-scale-right::before { content: "\f516"; } -.um .fa-subscript::before { +.um .fa-subscript::before, +.um-icon-within .fa-subscript::before { content: "\f12c"; } -.um .fa-diamond-turn-right::before { +.um .fa-diamond-turn-right::before, +.um-icon-within .fa-diamond-turn-right::before { content: "\f5eb"; } -.um .fa-directions::before { +.um .fa-directions::before, +.um-icon-within .fa-directions::before { content: "\f5eb"; } -.um .fa-burst::before { +.um .fa-burst::before, +.um-icon-within .fa-burst::before { content: "\e4dc"; } -.um .fa-house-laptop::before { +.um .fa-house-laptop::before, +.um-icon-within .fa-house-laptop::before { content: "\e066"; } -.um .fa-laptop-house::before { +.um .fa-laptop-house::before, +.um-icon-within .fa-laptop-house::before { content: "\e066"; } -.um .fa-face-tired::before { +.um .fa-face-tired::before, +.um-icon-within .fa-face-tired::before { content: "\f5c8"; } -.um .fa-tired::before { +.um .fa-tired::before, +.um-icon-within .fa-tired::before { content: "\f5c8"; } -.um .fa-money-bills::before { +.um .fa-money-bills::before, +.um-icon-within .fa-money-bills::before { content: "\e1f3"; } -.um .fa-smog::before { +.um .fa-smog::before, +.um-icon-within .fa-smog::before { content: "\f75f"; } -.um .fa-crutch::before { +.um .fa-crutch::before, +.um-icon-within .fa-crutch::before { content: "\f7f7"; } -.um .fa-cloud-arrow-up::before { +.um .fa-cloud-arrow-up::before, +.um-icon-within .fa-cloud-arrow-up::before { content: "\f0ee"; } -.um .fa-cloud-upload::before { +.um .fa-cloud-upload::before, +.um-icon-within .fa-cloud-upload::before { content: "\f0ee"; } -.um .fa-cloud-upload-alt::before { +.um .fa-cloud-upload-alt::before, +.um-icon-within .fa-cloud-upload-alt::before { content: "\f0ee"; } -.um .fa-palette::before { +.um .fa-palette::before, +.um-icon-within .fa-palette::before { content: "\f53f"; } -.um .fa-arrows-turn-right::before { +.um .fa-arrows-turn-right::before, +.um-icon-within .fa-arrows-turn-right::before { content: "\e4c0"; } -.um .fa-vest::before { +.um .fa-vest::before, +.um-icon-within .fa-vest::before { content: "\e085"; } -.um .fa-ferry::before { +.um .fa-ferry::before, +.um-icon-within .fa-ferry::before { content: "\e4ea"; } -.um .fa-arrows-down-to-people::before { +.um .fa-arrows-down-to-people::before, +.um-icon-within .fa-arrows-down-to-people::before { content: "\e4b9"; } -.um .fa-seedling::before { +.um .fa-seedling::before, +.um-icon-within .fa-seedling::before { content: "\f4d8"; } -.um .fa-sprout::before { +.um .fa-sprout::before, +.um-icon-within .fa-sprout::before { content: "\f4d8"; } -.um .fa-left-right::before { +.um .fa-left-right::before, +.um-icon-within .fa-left-right::before { content: "\f337"; } -.um .fa-arrows-alt-h::before { +.um .fa-arrows-alt-h::before, +.um-icon-within .fa-arrows-alt-h::before { content: "\f337"; } -.um .fa-boxes-packing::before { +.um .fa-boxes-packing::before, +.um-icon-within .fa-boxes-packing::before { content: "\e4c7"; } -.um .fa-circle-arrow-left::before { +.um .fa-circle-arrow-left::before, +.um-icon-within .fa-circle-arrow-left::before { content: "\f0a8"; } -.um .fa-arrow-circle-left::before { +.um .fa-arrow-circle-left::before, +.um-icon-within .fa-arrow-circle-left::before { content: "\f0a8"; } -.um .fa-group-arrows-rotate::before { +.um .fa-group-arrows-rotate::before, +.um-icon-within .fa-group-arrows-rotate::before { content: "\e4f6"; } -.um .fa-bowl-food::before { +.um .fa-bowl-food::before, +.um-icon-within .fa-bowl-food::before { content: "\e4c6"; } -.um .fa-candy-cane::before { +.um .fa-candy-cane::before, +.um-icon-within .fa-candy-cane::before { content: "\f786"; } -.um .fa-arrow-down-wide-short::before { +.um .fa-arrow-down-wide-short::before, +.um-icon-within .fa-arrow-down-wide-short::before { content: "\f160"; } -.um .fa-sort-amount-asc::before { +.um .fa-sort-amount-asc::before, +.um-icon-within .fa-sort-amount-asc::before { content: "\f160"; } -.um .fa-sort-amount-down::before { +.um .fa-sort-amount-down::before, +.um-icon-within .fa-sort-amount-down::before { content: "\f160"; } -.um .fa-cloud-bolt::before { +.um .fa-cloud-bolt::before, +.um-icon-within .fa-cloud-bolt::before { content: "\f76c"; } -.um .fa-thunderstorm::before { +.um .fa-thunderstorm::before, +.um-icon-within .fa-thunderstorm::before { content: "\f76c"; } -.um .fa-text-slash::before { +.um .fa-text-slash::before, +.um-icon-within .fa-text-slash::before { content: "\f87d"; } -.um .fa-remove-format::before { +.um .fa-remove-format::before, +.um-icon-within .fa-remove-format::before { content: "\f87d"; } -.um .fa-face-smile-wink::before { +.um .fa-face-smile-wink::before, +.um-icon-within .fa-face-smile-wink::before { content: "\f4da"; } -.um .fa-smile-wink::before { +.um .fa-smile-wink::before, +.um-icon-within .fa-smile-wink::before { content: "\f4da"; } -.um .fa-file-word::before { +.um .fa-file-word::before, +.um-icon-within .fa-file-word::before { content: "\f1c2"; } -.um .fa-file-powerpoint::before { +.um .fa-file-powerpoint::before, +.um-icon-within .fa-file-powerpoint::before { content: "\f1c4"; } -.um .fa-arrows-left-right::before { +.um .fa-arrows-left-right::before, +.um-icon-within .fa-arrows-left-right::before { content: "\f07e"; } -.um .fa-arrows-h::before { +.um .fa-arrows-h::before, +.um-icon-within .fa-arrows-h::before { content: "\f07e"; } -.um .fa-house-lock::before { +.um .fa-house-lock::before, +.um-icon-within .fa-house-lock::before { content: "\e510"; } -.um .fa-cloud-arrow-down::before { +.um .fa-cloud-arrow-down::before, +.um-icon-within .fa-cloud-arrow-down::before { content: "\f0ed"; } -.um .fa-cloud-download::before { +.um .fa-cloud-download::before, +.um-icon-within .fa-cloud-download::before { content: "\f0ed"; } -.um .fa-cloud-download-alt::before { +.um .fa-cloud-download-alt::before, +.um-icon-within .fa-cloud-download-alt::before { content: "\f0ed"; } -.um .fa-children::before { +.um .fa-children::before, +.um-icon-within .fa-children::before { content: "\e4e1"; } -.um .fa-chalkboard::before { +.um .fa-chalkboard::before, +.um-icon-within .fa-chalkboard::before { content: "\f51b"; } -.um .fa-blackboard::before { +.um .fa-blackboard::before, +.um-icon-within .fa-blackboard::before { content: "\f51b"; } -.um .fa-user-large-slash::before { +.um .fa-user-large-slash::before, +.um-icon-within .fa-user-large-slash::before { content: "\f4fa"; } -.um .fa-user-alt-slash::before { +.um .fa-user-alt-slash::before, +.um-icon-within .fa-user-alt-slash::before { content: "\f4fa"; } -.um .fa-envelope-open::before { +.um .fa-envelope-open::before, +.um-icon-within .fa-envelope-open::before { content: "\f2b6"; } -.um .fa-handshake-simple-slash::before { +.um .fa-handshake-simple-slash::before, +.um-icon-within .fa-handshake-simple-slash::before { content: "\e05f"; } -.um .fa-handshake-alt-slash::before { +.um .fa-handshake-alt-slash::before, +.um-icon-within .fa-handshake-alt-slash::before { content: "\e05f"; } -.um .fa-mattress-pillow::before { +.um .fa-mattress-pillow::before, +.um-icon-within .fa-mattress-pillow::before { content: "\e525"; } -.um .fa-guarani-sign::before { +.um .fa-guarani-sign::before, +.um-icon-within .fa-guarani-sign::before { content: "\e19a"; } -.um .fa-arrows-rotate::before { +.um .fa-arrows-rotate::before, +.um-icon-within .fa-arrows-rotate::before { content: "\f021"; } -.um .fa-refresh::before { +.um .fa-refresh::before, +.um-icon-within .fa-refresh::before { content: "\f021"; } -.um .fa-sync::before { +.um .fa-sync::before, +.um-icon-within .fa-sync::before { content: "\f021"; } -.um .fa-fire-extinguisher::before { +.um .fa-fire-extinguisher::before, +.um-icon-within .fa-fire-extinguisher::before { content: "\f134"; } -.um .fa-cruzeiro-sign::before { +.um .fa-cruzeiro-sign::before, +.um-icon-within .fa-cruzeiro-sign::before { content: "\e152"; } -.um .fa-greater-than-equal::before { +.um .fa-greater-than-equal::before, +.um-icon-within .fa-greater-than-equal::before { content: "\f532"; } -.um .fa-shield-halved::before { +.um .fa-shield-halved::before, +.um-icon-within .fa-shield-halved::before { content: "\f3ed"; } -.um .fa-shield-alt::before { +.um .fa-shield-alt::before, +.um-icon-within .fa-shield-alt::before { content: "\f3ed"; } -.um .fa-book-atlas::before { +.um .fa-book-atlas::before, +.um-icon-within .fa-book-atlas::before { content: "\f558"; } -.um .fa-atlas::before { +.um .fa-atlas::before, +.um-icon-within .fa-atlas::before { content: "\f558"; } -.um .fa-virus::before { +.um .fa-virus::before, +.um-icon-within .fa-virus::before { content: "\e074"; } -.um .fa-envelope-circle-check::before { +.um .fa-envelope-circle-check::before, +.um-icon-within .fa-envelope-circle-check::before { content: "\e4e8"; } -.um .fa-layer-group::before { +.um .fa-layer-group::before, +.um-icon-within .fa-layer-group::before { content: "\f5fd"; } -.um .fa-arrows-to-dot::before { +.um .fa-arrows-to-dot::before, +.um-icon-within .fa-arrows-to-dot::before { content: "\e4be"; } -.um .fa-archway::before { +.um .fa-archway::before, +.um-icon-within .fa-archway::before { content: "\f557"; } -.um .fa-heart-circle-check::before { +.um .fa-heart-circle-check::before, +.um-icon-within .fa-heart-circle-check::before { content: "\e4fd"; } -.um .fa-house-chimney-crack::before { +.um .fa-house-chimney-crack::before, +.um-icon-within .fa-house-chimney-crack::before { content: "\f6f1"; } -.um .fa-house-damage::before { +.um .fa-house-damage::before, +.um-icon-within .fa-house-damage::before { content: "\f6f1"; } -.um .fa-file-zipper::before { +.um .fa-file-zipper::before, +.um-icon-within .fa-file-zipper::before { content: "\f1c6"; } -.um .fa-file-archive::before { +.um .fa-file-archive::before, +.um-icon-within .fa-file-archive::before { content: "\f1c6"; } -.um .fa-square::before { +.um .fa-square::before, +.um-icon-within .fa-square::before { content: "\f0c8"; } -.um .fa-martini-glass-empty::before { +.um .fa-martini-glass-empty::before, +.um-icon-within .fa-martini-glass-empty::before { content: "\f000"; } -.um .fa-glass-martini::before { +.um .fa-glass-martini::before, +.um-icon-within .fa-glass-martini::before { content: "\f000"; } -.um .fa-couch::before { +.um .fa-couch::before, +.um-icon-within .fa-couch::before { content: "\f4b8"; } -.um .fa-cedi-sign::before { +.um .fa-cedi-sign::before, +.um-icon-within .fa-cedi-sign::before { content: "\e0df"; } -.um .fa-italic::before { +.um .fa-italic::before, +.um-icon-within .fa-italic::before { content: "\f033"; } -.um .fa-table-cells-column-lock::before { +.um .fa-table-cells-column-lock::before, +.um-icon-within .fa-table-cells-column-lock::before { content: "\e678"; } -.um .fa-church::before { +.um .fa-church::before, +.um-icon-within .fa-church::before { content: "\f51d"; } -.um .fa-comments-dollar::before { +.um .fa-comments-dollar::before, +.um-icon-within .fa-comments-dollar::before { content: "\f653"; } -.um .fa-democrat::before { +.um .fa-democrat::before, +.um-icon-within .fa-democrat::before { content: "\f747"; } -.um .fa-z::before { +.um .fa-z::before, +.um-icon-within .fa-z::before { content: "Z"; } -.um .fa-person-skiing::before { +.um .fa-person-skiing::before, +.um-icon-within .fa-person-skiing::before { content: "\f7c9"; } -.um .fa-skiing::before { +.um .fa-skiing::before, +.um-icon-within .fa-skiing::before { content: "\f7c9"; } -.um .fa-road-lock::before { +.um .fa-road-lock::before, +.um-icon-within .fa-road-lock::before { content: "\e567"; } -.um .fa-a::before { +.um .fa-a::before, +.um-icon-within .fa-a::before { content: "A"; } -.um .fa-temperature-arrow-down::before { +.um .fa-temperature-arrow-down::before, +.um-icon-within .fa-temperature-arrow-down::before { content: "\e03f"; } -.um .fa-temperature-down::before { +.um .fa-temperature-down::before, +.um-icon-within .fa-temperature-down::before { content: "\e03f"; } -.um .fa-feather-pointed::before { +.um .fa-feather-pointed::before, +.um-icon-within .fa-feather-pointed::before { content: "\f56b"; } -.um .fa-feather-alt::before { +.um .fa-feather-alt::before, +.um-icon-within .fa-feather-alt::before { content: "\f56b"; } -.um .fa-p::before { +.um .fa-p::before, +.um-icon-within .fa-p::before { content: "P"; } -.um .fa-snowflake::before { +.um .fa-snowflake::before, +.um-icon-within .fa-snowflake::before { content: "\f2dc"; } -.um .fa-newspaper::before { +.um .fa-newspaper::before, +.um-icon-within .fa-newspaper::before { content: "\f1ea"; } -.um .fa-rectangle-ad::before { +.um .fa-rectangle-ad::before, +.um-icon-within .fa-rectangle-ad::before { content: "\f641"; } -.um .fa-ad::before { +.um .fa-ad::before, +.um-icon-within .fa-ad::before { content: "\f641"; } -.um .fa-circle-arrow-right::before { +.um .fa-circle-arrow-right::before, +.um-icon-within .fa-circle-arrow-right::before { content: "\f0a9"; } -.um .fa-arrow-circle-right::before { +.um .fa-arrow-circle-right::before, +.um-icon-within .fa-arrow-circle-right::before { content: "\f0a9"; } -.um .fa-filter-circle-xmark::before { +.um .fa-filter-circle-xmark::before, +.um-icon-within .fa-filter-circle-xmark::before { content: "\e17b"; } -.um .fa-locust::before { +.um .fa-locust::before, +.um-icon-within .fa-locust::before { content: "\e520"; } -.um .fa-sort::before { +.um .fa-sort::before, +.um-icon-within .fa-sort::before { content: "\f0dc"; } -.um .fa-unsorted::before { +.um .fa-unsorted::before, +.um-icon-within .fa-unsorted::before { content: "\f0dc"; } -.um .fa-list-ol::before { +.um .fa-list-ol::before, +.um-icon-within .fa-list-ol::before { content: "\f0cb"; } -.um .fa-list-1-2::before { +.um .fa-list-1-2::before, +.um-icon-within .fa-list-1-2::before { content: "\f0cb"; } -.um .fa-list-numeric::before { +.um .fa-list-numeric::before, +.um-icon-within .fa-list-numeric::before { content: "\f0cb"; } -.um .fa-person-dress-burst::before { +.um .fa-person-dress-burst::before, +.um-icon-within .fa-person-dress-burst::before { content: "\e544"; } -.um .fa-money-check-dollar::before { +.um .fa-money-check-dollar::before, +.um-icon-within .fa-money-check-dollar::before { content: "\f53d"; } -.um .fa-money-check-alt::before { +.um .fa-money-check-alt::before, +.um-icon-within .fa-money-check-alt::before { content: "\f53d"; } -.um .fa-vector-square::before { +.um .fa-vector-square::before, +.um-icon-within .fa-vector-square::before { content: "\f5cb"; } -.um .fa-bread-slice::before { +.um .fa-bread-slice::before, +.um-icon-within .fa-bread-slice::before { content: "\f7ec"; } -.um .fa-language::before { +.um .fa-language::before, +.um-icon-within .fa-language::before { content: "\f1ab"; } -.um .fa-face-kiss-wink-heart::before { +.um .fa-face-kiss-wink-heart::before, +.um-icon-within .fa-face-kiss-wink-heart::before { content: "\f598"; } -.um .fa-kiss-wink-heart::before { +.um .fa-kiss-wink-heart::before, +.um-icon-within .fa-kiss-wink-heart::before { content: "\f598"; } -.um .fa-filter::before { +.um .fa-filter::before, +.um-icon-within .fa-filter::before { content: "\f0b0"; } -.um .fa-question::before { +.um .fa-question::before, +.um-icon-within .fa-question::before { content: "\?"; } -.um .fa-file-signature::before { +.um .fa-file-signature::before, +.um-icon-within .fa-file-signature::before { content: "\f573"; } -.um .fa-up-down-left-right::before { +.um .fa-up-down-left-right::before, +.um-icon-within .fa-up-down-left-right::before { content: "\f0b2"; } -.um .fa-arrows-alt::before { +.um .fa-arrows-alt::before, +.um-icon-within .fa-arrows-alt::before { content: "\f0b2"; } -.um .fa-house-chimney-user::before { +.um .fa-house-chimney-user::before, +.um-icon-within .fa-house-chimney-user::before { content: "\e065"; } -.um .fa-hand-holding-heart::before { +.um .fa-hand-holding-heart::before, +.um-icon-within .fa-hand-holding-heart::before { content: "\f4be"; } -.um .fa-puzzle-piece::before { +.um .fa-puzzle-piece::before, +.um-icon-within .fa-puzzle-piece::before { content: "\f12e"; } -.um .fa-money-check::before { +.um .fa-money-check::before, +.um-icon-within .fa-money-check::before { content: "\f53c"; } -.um .fa-star-half-stroke::before { +.um .fa-star-half-stroke::before, +.um-icon-within .fa-star-half-stroke::before { content: "\f5c0"; } -.um .fa-star-half-alt::before { +.um .fa-star-half-alt::before, +.um-icon-within .fa-star-half-alt::before { content: "\f5c0"; } -.um .fa-code::before { +.um .fa-code::before, +.um-icon-within .fa-code::before { content: "\f121"; } -.um .fa-whiskey-glass::before { +.um .fa-whiskey-glass::before, +.um-icon-within .fa-whiskey-glass::before { content: "\f7a0"; } -.um .fa-glass-whiskey::before { +.um .fa-glass-whiskey::before, +.um-icon-within .fa-glass-whiskey::before { content: "\f7a0"; } -.um .fa-building-circle-exclamation::before { +.um .fa-building-circle-exclamation::before, +.um-icon-within .fa-building-circle-exclamation::before { content: "\e4d3"; } -.um .fa-magnifying-glass-chart::before { +.um .fa-magnifying-glass-chart::before, +.um-icon-within .fa-magnifying-glass-chart::before { content: "\e522"; } -.um .fa-arrow-up-right-from-square::before { +.um .fa-arrow-up-right-from-square::before, +.um-icon-within .fa-arrow-up-right-from-square::before { content: "\f08e"; } -.um .fa-external-link::before { +.um .fa-external-link::before, +.um-icon-within .fa-external-link::before { content: "\f08e"; } -.um .fa-cubes-stacked::before { +.um .fa-cubes-stacked::before, +.um-icon-within .fa-cubes-stacked::before { content: "\e4e6"; } -.um .fa-won-sign::before { +.um .fa-won-sign::before, +.um-icon-within .fa-won-sign::before { content: "\f159"; } -.um .fa-krw::before { +.um .fa-krw::before, +.um-icon-within .fa-krw::before { content: "\f159"; } -.um .fa-won::before { +.um .fa-won::before, +.um-icon-within .fa-won::before { content: "\f159"; } -.um .fa-virus-covid::before { +.um .fa-virus-covid::before, +.um-icon-within .fa-virus-covid::before { content: "\e4a8"; } -.um .fa-austral-sign::before { +.um .fa-austral-sign::before, +.um-icon-within .fa-austral-sign::before { content: "\e0a9"; } -.um .fa-f::before { +.um .fa-f::before, +.um-icon-within .fa-f::before { content: "F"; } -.um .fa-leaf::before { +.um .fa-leaf::before, +.um-icon-within .fa-leaf::before { content: "\f06c"; } -.um .fa-road::before { +.um .fa-road::before, +.um-icon-within .fa-road::before { content: "\f018"; } -.um .fa-taxi::before { +.um .fa-taxi::before, +.um-icon-within .fa-taxi::before { content: "\f1ba"; } -.um .fa-cab::before { +.um .fa-cab::before, +.um-icon-within .fa-cab::before { content: "\f1ba"; } -.um .fa-person-circle-plus::before { +.um .fa-person-circle-plus::before, +.um-icon-within .fa-person-circle-plus::before { content: "\e541"; } -.um .fa-chart-pie::before { +.um .fa-chart-pie::before, +.um-icon-within .fa-chart-pie::before { content: "\f200"; } -.um .fa-pie-chart::before { +.um .fa-pie-chart::before, +.um-icon-within .fa-pie-chart::before { content: "\f200"; } -.um .fa-bolt-lightning::before { +.um .fa-bolt-lightning::before, +.um-icon-within .fa-bolt-lightning::before { content: "\e0b7"; } -.um .fa-sack-xmark::before { +.um .fa-sack-xmark::before, +.um-icon-within .fa-sack-xmark::before { content: "\e56a"; } -.um .fa-file-excel::before { +.um .fa-file-excel::before, +.um-icon-within .fa-file-excel::before { content: "\f1c3"; } -.um .fa-file-contract::before { +.um .fa-file-contract::before, +.um-icon-within .fa-file-contract::before { content: "\f56c"; } -.um .fa-fish-fins::before { +.um .fa-fish-fins::before, +.um-icon-within .fa-fish-fins::before { content: "\e4f2"; } -.um .fa-building-flag::before { +.um .fa-building-flag::before, +.um-icon-within .fa-building-flag::before { content: "\e4d5"; } -.um .fa-face-grin-beam::before { +.um .fa-face-grin-beam::before, +.um-icon-within .fa-face-grin-beam::before { content: "\f582"; } -.um .fa-grin-beam::before { +.um .fa-grin-beam::before, +.um-icon-within .fa-grin-beam::before { content: "\f582"; } -.um .fa-object-ungroup::before { +.um .fa-object-ungroup::before, +.um-icon-within .fa-object-ungroup::before { content: "\f248"; } -.um .fa-poop::before { +.um .fa-poop::before, +.um-icon-within .fa-poop::before { content: "\f619"; } -.um .fa-location-pin::before { +.um .fa-location-pin::before, +.um-icon-within .fa-location-pin::before { content: "\f041"; } -.um .fa-map-marker::before { +.um .fa-map-marker::before, +.um-icon-within .fa-map-marker::before { content: "\f041"; } -.um .fa-kaaba::before { +.um .fa-kaaba::before, +.um-icon-within .fa-kaaba::before { content: "\f66b"; } -.um .fa-toilet-paper::before { +.um .fa-toilet-paper::before, +.um-icon-within .fa-toilet-paper::before { content: "\f71e"; } -.um .fa-helmet-safety::before { +.um .fa-helmet-safety::before, +.um-icon-within .fa-helmet-safety::before { content: "\f807"; } -.um .fa-hard-hat::before { +.um .fa-hard-hat::before, +.um-icon-within .fa-hard-hat::before { content: "\f807"; } -.um .fa-hat-hard::before { +.um .fa-hat-hard::before, +.um-icon-within .fa-hat-hard::before { content: "\f807"; } -.um .fa-eject::before { +.um .fa-eject::before, +.um-icon-within .fa-eject::before { content: "\f052"; } -.um .fa-circle-right::before { +.um .fa-circle-right::before, +.um-icon-within .fa-circle-right::before { content: "\f35a"; } -.um .fa-arrow-alt-circle-right::before { +.um .fa-arrow-alt-circle-right::before, +.um-icon-within .fa-arrow-alt-circle-right::before { content: "\f35a"; } -.um .fa-plane-circle-check::before { +.um .fa-plane-circle-check::before, +.um-icon-within .fa-plane-circle-check::before { content: "\e555"; } -.um .fa-face-rolling-eyes::before { +.um .fa-face-rolling-eyes::before, +.um-icon-within .fa-face-rolling-eyes::before { content: "\f5a5"; } -.um .fa-meh-rolling-eyes::before { +.um .fa-meh-rolling-eyes::before, +.um-icon-within .fa-meh-rolling-eyes::before { content: "\f5a5"; } -.um .fa-object-group::before { +.um .fa-object-group::before, +.um-icon-within .fa-object-group::before { content: "\f247"; } -.um .fa-chart-line::before { +.um .fa-chart-line::before, +.um-icon-within .fa-chart-line::before { content: "\f201"; } -.um .fa-line-chart::before { +.um .fa-line-chart::before, +.um-icon-within .fa-line-chart::before { content: "\f201"; } -.um .fa-mask-ventilator::before { +.um .fa-mask-ventilator::before, +.um-icon-within .fa-mask-ventilator::before { content: "\e524"; } -.um .fa-arrow-right::before { +.um .fa-arrow-right::before, +.um-icon-within .fa-arrow-right::before { content: "\f061"; } -.um .fa-signs-post::before { +.um .fa-signs-post::before, +.um-icon-within .fa-signs-post::before { content: "\f277"; } -.um .fa-map-signs::before { +.um .fa-map-signs::before, +.um-icon-within .fa-map-signs::before { content: "\f277"; } -.um .fa-cash-register::before { +.um .fa-cash-register::before, +.um-icon-within .fa-cash-register::before { content: "\f788"; } -.um .fa-person-circle-question::before { +.um .fa-person-circle-question::before, +.um-icon-within .fa-person-circle-question::before { content: "\e542"; } -.um .fa-h::before { +.um .fa-h::before, +.um-icon-within .fa-h::before { content: "H"; } -.um .fa-tarp::before { +.um .fa-tarp::before, +.um-icon-within .fa-tarp::before { content: "\e57b"; } -.um .fa-screwdriver-wrench::before { +.um .fa-screwdriver-wrench::before, +.um-icon-within .fa-screwdriver-wrench::before { content: "\f7d9"; } -.um .fa-tools::before { +.um .fa-tools::before, +.um-icon-within .fa-tools::before { content: "\f7d9"; } -.um .fa-arrows-to-eye::before { +.um .fa-arrows-to-eye::before, +.um-icon-within .fa-arrows-to-eye::before { content: "\e4bf"; } -.um .fa-plug-circle-bolt::before { +.um .fa-plug-circle-bolt::before, +.um-icon-within .fa-plug-circle-bolt::before { content: "\e55b"; } -.um .fa-heart::before { +.um .fa-heart::before, +.um-icon-within .fa-heart::before { content: "\f004"; } -.um .fa-mars-and-venus::before { +.um .fa-mars-and-venus::before, +.um-icon-within .fa-mars-and-venus::before { content: "\f224"; } -.um .fa-house-user::before { +.um .fa-house-user::before, +.um-icon-within .fa-house-user::before { content: "\e1b0"; } -.um .fa-home-user::before { +.um .fa-home-user::before, +.um-icon-within .fa-home-user::before { content: "\e1b0"; } -.um .fa-dumpster-fire::before { +.um .fa-dumpster-fire::before, +.um-icon-within .fa-dumpster-fire::before { content: "\f794"; } -.um .fa-house-crack::before { +.um .fa-house-crack::before, +.um-icon-within .fa-house-crack::before { content: "\e3b1"; } -.um .fa-martini-glass-citrus::before { +.um .fa-martini-glass-citrus::before, +.um-icon-within .fa-martini-glass-citrus::before { content: "\f561"; } -.um .fa-cocktail::before { +.um .fa-cocktail::before, +.um-icon-within .fa-cocktail::before { content: "\f561"; } -.um .fa-face-surprise::before { +.um .fa-face-surprise::before, +.um-icon-within .fa-face-surprise::before { content: "\f5c2"; } -.um .fa-surprise::before { +.um .fa-surprise::before, +.um-icon-within .fa-surprise::before { content: "\f5c2"; } -.um .fa-bottle-water::before { +.um .fa-bottle-water::before, +.um-icon-within .fa-bottle-water::before { content: "\e4c5"; } -.um .fa-circle-pause::before { +.um .fa-circle-pause::before, +.um-icon-within .fa-circle-pause::before { content: "\f28b"; } -.um .fa-pause-circle::before { +.um .fa-pause-circle::before, +.um-icon-within .fa-pause-circle::before { content: "\f28b"; } -.um .fa-toilet-paper-slash::before { +.um .fa-toilet-paper-slash::before, +.um-icon-within .fa-toilet-paper-slash::before { content: "\e072"; } -.um .fa-apple-whole::before { +.um .fa-apple-whole::before, +.um-icon-within .fa-apple-whole::before { content: "\f5d1"; } -.um .fa-apple-alt::before { +.um .fa-apple-alt::before, +.um-icon-within .fa-apple-alt::before { content: "\f5d1"; } -.um .fa-kitchen-set::before { +.um .fa-kitchen-set::before, +.um-icon-within .fa-kitchen-set::before { content: "\e51a"; } -.um .fa-r::before { +.um .fa-r::before, +.um-icon-within .fa-r::before { content: "R"; } -.um .fa-temperature-quarter::before { +.um .fa-temperature-quarter::before, +.um-icon-within .fa-temperature-quarter::before { content: "\f2ca"; } -.um .fa-temperature-1::before { +.um .fa-temperature-1::before, +.um-icon-within .fa-temperature-1::before { content: "\f2ca"; } -.um .fa-thermometer-1::before { +.um .fa-thermometer-1::before, +.um-icon-within .fa-thermometer-1::before { content: "\f2ca"; } -.um .fa-thermometer-quarter::before { +.um .fa-thermometer-quarter::before, +.um-icon-within .fa-thermometer-quarter::before { content: "\f2ca"; } -.um .fa-cube::before { +.um .fa-cube::before, +.um-icon-within .fa-cube::before { content: "\f1b2"; } -.um .fa-bitcoin-sign::before { +.um .fa-bitcoin-sign::before, +.um-icon-within .fa-bitcoin-sign::before { content: "\e0b4"; } -.um .fa-shield-dog::before { +.um .fa-shield-dog::before, +.um-icon-within .fa-shield-dog::before { content: "\e573"; } -.um .fa-solar-panel::before { +.um .fa-solar-panel::before, +.um-icon-within .fa-solar-panel::before { content: "\f5ba"; } -.um .fa-lock-open::before { +.um .fa-lock-open::before, +.um-icon-within .fa-lock-open::before { content: "\f3c1"; } -.um .fa-elevator::before { +.um .fa-elevator::before, +.um-icon-within .fa-elevator::before { content: "\e16d"; } -.um .fa-money-bill-transfer::before { +.um .fa-money-bill-transfer::before, +.um-icon-within .fa-money-bill-transfer::before { content: "\e528"; } -.um .fa-money-bill-trend-up::before { +.um .fa-money-bill-trend-up::before, +.um-icon-within .fa-money-bill-trend-up::before { content: "\e529"; } -.um .fa-house-flood-water-circle-arrow-right::before { +.um .fa-house-flood-water-circle-arrow-right::before, +.um-icon-within .fa-house-flood-water-circle-arrow-right::before { content: "\e50f"; } -.um .fa-square-poll-horizontal::before { +.um .fa-square-poll-horizontal::before, +.um-icon-within .fa-square-poll-horizontal::before { content: "\f682"; } -.um .fa-poll-h::before { +.um .fa-poll-h::before, +.um-icon-within .fa-poll-h::before { content: "\f682"; } -.um .fa-circle::before { +.um .fa-circle::before, +.um-icon-within .fa-circle::before { content: "\f111"; } -.um .fa-backward-fast::before { +.um .fa-backward-fast::before, +.um-icon-within .fa-backward-fast::before { content: "\f049"; } -.um .fa-fast-backward::before { +.um .fa-fast-backward::before, +.um-icon-within .fa-fast-backward::before { content: "\f049"; } -.um .fa-recycle::before { +.um .fa-recycle::before, +.um-icon-within .fa-recycle::before { content: "\f1b8"; } -.um .fa-user-astronaut::before { +.um .fa-user-astronaut::before, +.um-icon-within .fa-user-astronaut::before { content: "\f4fb"; } -.um .fa-plane-slash::before { +.um .fa-plane-slash::before, +.um-icon-within .fa-plane-slash::before { content: "\e069"; } -.um .fa-trademark::before { +.um .fa-trademark::before, +.um-icon-within .fa-trademark::before { content: "\f25c"; } -.um .fa-basketball::before { +.um .fa-basketball::before, +.um-icon-within .fa-basketball::before { content: "\f434"; } -.um .fa-basketball-ball::before { +.um .fa-basketball-ball::before, +.um-icon-within .fa-basketball-ball::before { content: "\f434"; } -.um .fa-satellite-dish::before { +.um .fa-satellite-dish::before, +.um-icon-within .fa-satellite-dish::before { content: "\f7c0"; } -.um .fa-circle-up::before { +.um .fa-circle-up::before, +.um-icon-within .fa-circle-up::before { content: "\f35b"; } -.um .fa-arrow-alt-circle-up::before { +.um .fa-arrow-alt-circle-up::before, +.um-icon-within .fa-arrow-alt-circle-up::before { content: "\f35b"; } -.um .fa-mobile-screen-button::before { +.um .fa-mobile-screen-button::before, +.um-icon-within .fa-mobile-screen-button::before { content: "\f3cd"; } -.um .fa-mobile-alt::before { +.um .fa-mobile-alt::before, +.um-icon-within .fa-mobile-alt::before { content: "\f3cd"; } -.um .fa-volume-high::before { +.um .fa-volume-high::before, +.um-icon-within .fa-volume-high::before { content: "\f028"; } -.um .fa-volume-up::before { +.um .fa-volume-up::before, +.um-icon-within .fa-volume-up::before { content: "\f028"; } -.um .fa-users-rays::before { +.um .fa-users-rays::before, +.um-icon-within .fa-users-rays::before { content: "\e593"; } -.um .fa-wallet::before { +.um .fa-wallet::before, +.um-icon-within .fa-wallet::before { content: "\f555"; } -.um .fa-clipboard-check::before { +.um .fa-clipboard-check::before, +.um-icon-within .fa-clipboard-check::before { content: "\f46c"; } -.um .fa-file-audio::before { +.um .fa-file-audio::before, +.um-icon-within .fa-file-audio::before { content: "\f1c7"; } -.um .fa-burger::before { +.um .fa-burger::before, +.um-icon-within .fa-burger::before { content: "\f805"; } -.um .fa-hamburger::before { +.um .fa-hamburger::before, +.um-icon-within .fa-hamburger::before { content: "\f805"; } -.um .fa-wrench::before { +.um .fa-wrench::before, +.um-icon-within .fa-wrench::before { content: "\f0ad"; } -.um .fa-bugs::before { +.um .fa-bugs::before, +.um-icon-within .fa-bugs::before { content: "\e4d0"; } -.um .fa-rupee-sign::before { +.um .fa-rupee-sign::before, +.um-icon-within .fa-rupee-sign::before { content: "\f156"; } -.um .fa-rupee::before { +.um .fa-rupee::before, +.um-icon-within .fa-rupee::before { content: "\f156"; } -.um .fa-file-image::before { +.um .fa-file-image::before, +.um-icon-within .fa-file-image::before { content: "\f1c5"; } -.um .fa-circle-question::before { +.um .fa-circle-question::before, +.um-icon-within .fa-circle-question::before { content: "\f059"; } -.um .fa-question-circle::before { +.um .fa-question-circle::before, +.um-icon-within .fa-question-circle::before { content: "\f059"; } -.um .fa-plane-departure::before { +.um .fa-plane-departure::before, +.um-icon-within .fa-plane-departure::before { content: "\f5b0"; } -.um .fa-handshake-slash::before { +.um .fa-handshake-slash::before, +.um-icon-within .fa-handshake-slash::before { content: "\e060"; } -.um .fa-book-bookmark::before { +.um .fa-book-bookmark::before, +.um-icon-within .fa-book-bookmark::before { content: "\e0bb"; } -.um .fa-code-branch::before { +.um .fa-code-branch::before, +.um-icon-within .fa-code-branch::before { content: "\f126"; } -.um .fa-hat-cowboy::before { +.um .fa-hat-cowboy::before, +.um-icon-within .fa-hat-cowboy::before { content: "\f8c0"; } -.um .fa-bridge::before { +.um .fa-bridge::before, +.um-icon-within .fa-bridge::before { content: "\e4c8"; } -.um .fa-phone-flip::before { +.um .fa-phone-flip::before, +.um-icon-within .fa-phone-flip::before { content: "\f879"; } -.um .fa-phone-alt::before { +.um .fa-phone-alt::before, +.um-icon-within .fa-phone-alt::before { content: "\f879"; } -.um .fa-truck-front::before { +.um .fa-truck-front::before, +.um-icon-within .fa-truck-front::before { content: "\e2b7"; } -.um .fa-cat::before { +.um .fa-cat::before, +.um-icon-within .fa-cat::before { content: "\f6be"; } -.um .fa-anchor-circle-exclamation::before { +.um .fa-anchor-circle-exclamation::before, +.um-icon-within .fa-anchor-circle-exclamation::before { content: "\e4ab"; } -.um .fa-truck-field::before { +.um .fa-truck-field::before, +.um-icon-within .fa-truck-field::before { content: "\e58d"; } -.um .fa-route::before { +.um .fa-route::before, +.um-icon-within .fa-route::before { content: "\f4d7"; } -.um .fa-clipboard-question::before { +.um .fa-clipboard-question::before, +.um-icon-within .fa-clipboard-question::before { content: "\e4e3"; } -.um .fa-panorama::before { +.um .fa-panorama::before, +.um-icon-within .fa-panorama::before { content: "\e209"; } -.um .fa-comment-medical::before { +.um .fa-comment-medical::before, +.um-icon-within .fa-comment-medical::before { content: "\f7f5"; } -.um .fa-teeth-open::before { +.um .fa-teeth-open::before, +.um-icon-within .fa-teeth-open::before { content: "\f62f"; } -.um .fa-file-circle-minus::before { +.um .fa-file-circle-minus::before, +.um-icon-within .fa-file-circle-minus::before { content: "\e4ed"; } -.um .fa-tags::before { +.um .fa-tags::before, +.um-icon-within .fa-tags::before { content: "\f02c"; } -.um .fa-wine-glass::before { +.um .fa-wine-glass::before, +.um-icon-within .fa-wine-glass::before { content: "\f4e3"; } -.um .fa-forward-fast::before { +.um .fa-forward-fast::before, +.um-icon-within .fa-forward-fast::before { content: "\f050"; } -.um .fa-fast-forward::before { +.um .fa-fast-forward::before, +.um-icon-within .fa-fast-forward::before { content: "\f050"; } -.um .fa-face-meh-blank::before { +.um .fa-face-meh-blank::before, +.um-icon-within .fa-face-meh-blank::before { content: "\f5a4"; } -.um .fa-meh-blank::before { +.um .fa-meh-blank::before, +.um-icon-within .fa-meh-blank::before { content: "\f5a4"; } -.um .fa-square-parking::before { +.um .fa-square-parking::before, +.um-icon-within .fa-square-parking::before { content: "\f540"; } -.um .fa-parking::before { +.um .fa-parking::before, +.um-icon-within .fa-parking::before { content: "\f540"; } -.um .fa-house-signal::before { +.um .fa-house-signal::before, +.um-icon-within .fa-house-signal::before { content: "\e012"; } -.um .fa-bars-progress::before { +.um .fa-bars-progress::before, +.um-icon-within .fa-bars-progress::before { content: "\f828"; } -.um .fa-tasks-alt::before { +.um .fa-tasks-alt::before, +.um-icon-within .fa-tasks-alt::before { content: "\f828"; } -.um .fa-faucet-drip::before { +.um .fa-faucet-drip::before, +.um-icon-within .fa-faucet-drip::before { content: "\e006"; } -.um .fa-cart-flatbed::before { +.um .fa-cart-flatbed::before, +.um-icon-within .fa-cart-flatbed::before { content: "\f474"; } -.um .fa-dolly-flatbed::before { +.um .fa-dolly-flatbed::before, +.um-icon-within .fa-dolly-flatbed::before { content: "\f474"; } -.um .fa-ban-smoking::before { +.um .fa-ban-smoking::before, +.um-icon-within .fa-ban-smoking::before { content: "\f54d"; } -.um .fa-smoking-ban::before { +.um .fa-smoking-ban::before, +.um-icon-within .fa-smoking-ban::before { content: "\f54d"; } -.um .fa-terminal::before { +.um .fa-terminal::before, +.um-icon-within .fa-terminal::before { content: "\f120"; } -.um .fa-mobile-button::before { +.um .fa-mobile-button::before, +.um-icon-within .fa-mobile-button::before { content: "\f10b"; } -.um .fa-house-medical-flag::before { +.um .fa-house-medical-flag::before, +.um-icon-within .fa-house-medical-flag::before { content: "\e514"; } -.um .fa-basket-shopping::before { +.um .fa-basket-shopping::before, +.um-icon-within .fa-basket-shopping::before { content: "\f291"; } -.um .fa-shopping-basket::before { +.um .fa-shopping-basket::before, +.um-icon-within .fa-shopping-basket::before { content: "\f291"; } -.um .fa-tape::before { +.um .fa-tape::before, +.um-icon-within .fa-tape::before { content: "\f4db"; } -.um .fa-bus-simple::before { +.um .fa-bus-simple::before, +.um-icon-within .fa-bus-simple::before { content: "\f55e"; } -.um .fa-bus-alt::before { +.um .fa-bus-alt::before, +.um-icon-within .fa-bus-alt::before { content: "\f55e"; } -.um .fa-eye::before { +.um .fa-eye::before, +.um-icon-within .fa-eye::before { content: "\f06e"; } -.um .fa-face-sad-cry::before { +.um .fa-face-sad-cry::before, +.um-icon-within .fa-face-sad-cry::before { content: "\f5b3"; } -.um .fa-sad-cry::before { +.um .fa-sad-cry::before, +.um-icon-within .fa-sad-cry::before { content: "\f5b3"; } -.um .fa-audio-description::before { +.um .fa-audio-description::before, +.um-icon-within .fa-audio-description::before { content: "\f29e"; } -.um .fa-person-military-to-person::before { +.um .fa-person-military-to-person::before, +.um-icon-within .fa-person-military-to-person::before { content: "\e54c"; } -.um .fa-file-shield::before { +.um .fa-file-shield::before, +.um-icon-within .fa-file-shield::before { content: "\e4f0"; } -.um .fa-user-slash::before { +.um .fa-user-slash::before, +.um-icon-within .fa-user-slash::before { content: "\f506"; } -.um .fa-pen::before { +.um .fa-pen::before, +.um-icon-within .fa-pen::before { content: "\f304"; } -.um .fa-tower-observation::before { +.um .fa-tower-observation::before, +.um-icon-within .fa-tower-observation::before { content: "\e586"; } -.um .fa-file-code::before { +.um .fa-file-code::before, +.um-icon-within .fa-file-code::before { content: "\f1c9"; } -.um .fa-signal::before { +.um .fa-signal::before, +.um-icon-within .fa-signal::before { content: "\f012"; } -.um .fa-signal-5::before { +.um .fa-signal-5::before, +.um-icon-within .fa-signal-5::before { content: "\f012"; } -.um .fa-signal-perfect::before { +.um .fa-signal-perfect::before, +.um-icon-within .fa-signal-perfect::before { content: "\f012"; } -.um .fa-bus::before { +.um .fa-bus::before, +.um-icon-within .fa-bus::before { content: "\f207"; } -.um .fa-heart-circle-xmark::before { +.um .fa-heart-circle-xmark::before, +.um-icon-within .fa-heart-circle-xmark::before { content: "\e501"; } -.um .fa-house-chimney::before { +.um .fa-house-chimney::before, +.um-icon-within .fa-house-chimney::before { content: "\e3af"; } -.um .fa-home-lg::before { +.um .fa-home-lg::before, +.um-icon-within .fa-home-lg::before { content: "\e3af"; } -.um .fa-window-maximize::before { +.um .fa-window-maximize::before, +.um-icon-within .fa-window-maximize::before { content: "\f2d0"; } -.um .fa-face-frown::before { +.um .fa-face-frown::before, +.um-icon-within .fa-face-frown::before { content: "\f119"; } -.um .fa-frown::before { +.um .fa-frown::before, +.um-icon-within .fa-frown::before { content: "\f119"; } -.um .fa-prescription::before { +.um .fa-prescription::before, +.um-icon-within .fa-prescription::before { content: "\f5b1"; } -.um .fa-shop::before { +.um .fa-shop::before, +.um-icon-within .fa-shop::before { content: "\f54f"; } -.um .fa-store-alt::before { +.um .fa-store-alt::before, +.um-icon-within .fa-store-alt::before { content: "\f54f"; } -.um .fa-floppy-disk::before { +.um .fa-floppy-disk::before, +.um-icon-within .fa-floppy-disk::before { content: "\f0c7"; } -.um .fa-save::before { +.um .fa-save::before, +.um-icon-within .fa-save::before { content: "\f0c7"; } -.um .fa-vihara::before { +.um .fa-vihara::before, +.um-icon-within .fa-vihara::before { content: "\f6a7"; } -.um .fa-scale-unbalanced::before { +.um .fa-scale-unbalanced::before, +.um-icon-within .fa-scale-unbalanced::before { content: "\f515"; } -.um .fa-balance-scale-left::before { +.um .fa-balance-scale-left::before, +.um-icon-within .fa-balance-scale-left::before { content: "\f515"; } -.um .fa-sort-up::before { +.um .fa-sort-up::before, +.um-icon-within .fa-sort-up::before { content: "\f0de"; } -.um .fa-sort-asc::before { +.um .fa-sort-asc::before, +.um-icon-within .fa-sort-asc::before { content: "\f0de"; } -.um .fa-comment-dots::before { +.um .fa-comment-dots::before, +.um-icon-within .fa-comment-dots::before { content: "\f4ad"; } -.um .fa-commenting::before { +.um .fa-commenting::before, +.um-icon-within .fa-commenting::before { content: "\f4ad"; } -.um .fa-plant-wilt::before { +.um .fa-plant-wilt::before, +.um-icon-within .fa-plant-wilt::before { content: "\e5aa"; } -.um .fa-diamond::before { +.um .fa-diamond::before, +.um-icon-within .fa-diamond::before { content: "\f219"; } -.um .fa-face-grin-squint::before { +.um .fa-face-grin-squint::before, +.um-icon-within .fa-face-grin-squint::before { content: "\f585"; } -.um .fa-grin-squint::before { +.um .fa-grin-squint::before, +.um-icon-within .fa-grin-squint::before { content: "\f585"; } -.um .fa-hand-holding-dollar::before { +.um .fa-hand-holding-dollar::before, +.um-icon-within .fa-hand-holding-dollar::before { content: "\f4c0"; } -.um .fa-hand-holding-usd::before { +.um .fa-hand-holding-usd::before, +.um-icon-within .fa-hand-holding-usd::before { content: "\f4c0"; } -.um .fa-bacterium::before { +.um .fa-bacterium::before, +.um-icon-within .fa-bacterium::before { content: "\e05a"; } -.um .fa-hand-pointer::before { +.um .fa-hand-pointer::before, +.um-icon-within .fa-hand-pointer::before { content: "\f25a"; } -.um .fa-drum-steelpan::before { +.um .fa-drum-steelpan::before, +.um-icon-within .fa-drum-steelpan::before { content: "\f56a"; } -.um .fa-hand-scissors::before { +.um .fa-hand-scissors::before, +.um-icon-within .fa-hand-scissors::before { content: "\f257"; } -.um .fa-hands-praying::before { +.um .fa-hands-praying::before, +.um-icon-within .fa-hands-praying::before { content: "\f684"; } -.um .fa-praying-hands::before { +.um .fa-praying-hands::before, +.um-icon-within .fa-praying-hands::before { content: "\f684"; } -.um .fa-arrow-rotate-right::before { +.um .fa-arrow-rotate-right::before, +.um-icon-within .fa-arrow-rotate-right::before { content: "\f01e"; } -.um .fa-arrow-right-rotate::before { +.um .fa-arrow-right-rotate::before, +.um-icon-within .fa-arrow-right-rotate::before { content: "\f01e"; } -.um .fa-arrow-rotate-forward::before { +.um .fa-arrow-rotate-forward::before, +.um-icon-within .fa-arrow-rotate-forward::before { content: "\f01e"; } -.um .fa-redo::before { +.um .fa-redo::before, +.um-icon-within .fa-redo::before { content: "\f01e"; } -.um .fa-biohazard::before { +.um .fa-biohazard::before, +.um-icon-within .fa-biohazard::before { content: "\f780"; } -.um .fa-location-crosshairs::before { +.um .fa-location-crosshairs::before, +.um-icon-within .fa-location-crosshairs::before { content: "\f601"; } -.um .fa-location::before { +.um .fa-location::before, +.um-icon-within .fa-location::before { content: "\f601"; } -.um .fa-mars-double::before { +.um .fa-mars-double::before, +.um-icon-within .fa-mars-double::before { content: "\f227"; } -.um .fa-child-dress::before { +.um .fa-child-dress::before, +.um-icon-within .fa-child-dress::before { content: "\e59c"; } -.um .fa-users-between-lines::before { +.um .fa-users-between-lines::before, +.um-icon-within .fa-users-between-lines::before { content: "\e591"; } -.um .fa-lungs-virus::before { +.um .fa-lungs-virus::before, +.um-icon-within .fa-lungs-virus::before { content: "\e067"; } -.um .fa-face-grin-tears::before { +.um .fa-face-grin-tears::before, +.um-icon-within .fa-face-grin-tears::before { content: "\f588"; } -.um .fa-grin-tears::before { +.um .fa-grin-tears::before, +.um-icon-within .fa-grin-tears::before { content: "\f588"; } -.um .fa-phone::before { +.um .fa-phone::before, +.um-icon-within .fa-phone::before { content: "\f095"; } -.um .fa-calendar-xmark::before { +.um .fa-calendar-xmark::before, +.um-icon-within .fa-calendar-xmark::before { content: "\f273"; } -.um .fa-calendar-times::before { +.um .fa-calendar-times::before, +.um-icon-within .fa-calendar-times::before { content: "\f273"; } -.um .fa-child-reaching::before { +.um .fa-child-reaching::before, +.um-icon-within .fa-child-reaching::before { content: "\e59d"; } -.um .fa-head-side-virus::before { +.um .fa-head-side-virus::before, +.um-icon-within .fa-head-side-virus::before { content: "\e064"; } -.um .fa-user-gear::before { +.um .fa-user-gear::before, +.um-icon-within .fa-user-gear::before { content: "\f4fe"; } -.um .fa-user-cog::before { +.um .fa-user-cog::before, +.um-icon-within .fa-user-cog::before { content: "\f4fe"; } -.um .fa-arrow-up-1-9::before { +.um .fa-arrow-up-1-9::before, +.um-icon-within .fa-arrow-up-1-9::before { content: "\f163"; } -.um .fa-sort-numeric-up::before { +.um .fa-sort-numeric-up::before, +.um-icon-within .fa-sort-numeric-up::before { content: "\f163"; } -.um .fa-door-closed::before { +.um .fa-door-closed::before, +.um-icon-within .fa-door-closed::before { content: "\f52a"; } -.um .fa-shield-virus::before { +.um .fa-shield-virus::before, +.um-icon-within .fa-shield-virus::before { content: "\e06c"; } -.um .fa-dice-six::before { +.um .fa-dice-six::before, +.um-icon-within .fa-dice-six::before { content: "\f526"; } -.um .fa-mosquito-net::before { +.um .fa-mosquito-net::before, +.um-icon-within .fa-mosquito-net::before { content: "\e52c"; } -.um .fa-bridge-water::before { +.um .fa-bridge-water::before, +.um-icon-within .fa-bridge-water::before { content: "\e4ce"; } -.um .fa-person-booth::before { +.um .fa-person-booth::before, +.um-icon-within .fa-person-booth::before { content: "\f756"; } -.um .fa-text-width::before { +.um .fa-text-width::before, +.um-icon-within .fa-text-width::before { content: "\f035"; } -.um .fa-hat-wizard::before { +.um .fa-hat-wizard::before, +.um-icon-within .fa-hat-wizard::before { content: "\f6e8"; } -.um .fa-pen-fancy::before { +.um .fa-pen-fancy::before, +.um-icon-within .fa-pen-fancy::before { content: "\f5ac"; } -.um .fa-person-digging::before { +.um .fa-person-digging::before, +.um-icon-within .fa-person-digging::before { content: "\f85e"; } -.um .fa-digging::before { +.um .fa-digging::before, +.um-icon-within .fa-digging::before { content: "\f85e"; } -.um .fa-trash::before { +.um .fa-trash::before, +.um-icon-within .fa-trash::before { content: "\f1f8"; } -.um .fa-gauge-simple::before { +.um .fa-gauge-simple::before, +.um-icon-within .fa-gauge-simple::before { content: "\f629"; } -.um .fa-gauge-simple-med::before { +.um .fa-gauge-simple-med::before, +.um-icon-within .fa-gauge-simple-med::before { content: "\f629"; } -.um .fa-tachometer-average::before { +.um .fa-tachometer-average::before, +.um-icon-within .fa-tachometer-average::before { content: "\f629"; } -.um .fa-book-medical::before { +.um .fa-book-medical::before, +.um-icon-within .fa-book-medical::before { content: "\f7e6"; } -.um .fa-poo::before { +.um .fa-poo::before, +.um-icon-within .fa-poo::before { content: "\f2fe"; } -.um .fa-quote-right::before { +.um .fa-quote-right::before, +.um-icon-within .fa-quote-right::before { content: "\f10e"; } -.um .fa-quote-right-alt::before { +.um .fa-quote-right-alt::before, +.um-icon-within .fa-quote-right-alt::before { content: "\f10e"; } -.um .fa-shirt::before { +.um .fa-shirt::before, +.um-icon-within .fa-shirt::before { content: "\f553"; } -.um .fa-t-shirt::before { +.um .fa-t-shirt::before, +.um-icon-within .fa-t-shirt::before { content: "\f553"; } -.um .fa-tshirt::before { +.um .fa-tshirt::before, +.um-icon-within .fa-tshirt::before { content: "\f553"; } -.um .fa-cubes::before { +.um .fa-cubes::before, +.um-icon-within .fa-cubes::before { content: "\f1b3"; } -.um .fa-divide::before { +.um .fa-divide::before, +.um-icon-within .fa-divide::before { content: "\f529"; } -.um .fa-tenge-sign::before { +.um .fa-tenge-sign::before, +.um-icon-within .fa-tenge-sign::before { content: "\f7d7"; } -.um .fa-tenge::before { +.um .fa-tenge::before, +.um-icon-within .fa-tenge::before { content: "\f7d7"; } -.um .fa-headphones::before { +.um .fa-headphones::before, +.um-icon-within .fa-headphones::before { content: "\f025"; } -.um .fa-hands-holding::before { +.um .fa-hands-holding::before, +.um-icon-within .fa-hands-holding::before { content: "\f4c2"; } -.um .fa-hands-clapping::before { +.um .fa-hands-clapping::before, +.um-icon-within .fa-hands-clapping::before { content: "\e1a8"; } -.um .fa-republican::before { +.um .fa-republican::before, +.um-icon-within .fa-republican::before { content: "\f75e"; } -.um .fa-arrow-left::before { +.um .fa-arrow-left::before, +.um-icon-within .fa-arrow-left::before { content: "\f060"; } -.um .fa-person-circle-xmark::before { +.um .fa-person-circle-xmark::before, +.um-icon-within .fa-person-circle-xmark::before { content: "\e543"; } -.um .fa-ruler::before { +.um .fa-ruler::before, +.um-icon-within .fa-ruler::before { content: "\f545"; } -.um .fa-align-left::before { +.um .fa-align-left::before, +.um-icon-within .fa-align-left::before { content: "\f036"; } -.um .fa-dice-d6::before { +.um .fa-dice-d6::before, +.um-icon-within .fa-dice-d6::before { content: "\f6d1"; } -.um .fa-restroom::before { +.um .fa-restroom::before, +.um-icon-within .fa-restroom::before { content: "\f7bd"; } -.um .fa-j::before { +.um .fa-j::before, +.um-icon-within .fa-j::before { content: "J"; } -.um .fa-users-viewfinder::before { +.um .fa-users-viewfinder::before, +.um-icon-within .fa-users-viewfinder::before { content: "\e595"; } -.um .fa-file-video::before { +.um .fa-file-video::before, +.um-icon-within .fa-file-video::before { content: "\f1c8"; } -.um .fa-up-right-from-square::before { +.um .fa-up-right-from-square::before, +.um-icon-within .fa-up-right-from-square::before { content: "\f35d"; } -.um .fa-external-link-alt::before { +.um .fa-external-link-alt::before, +.um-icon-within .fa-external-link-alt::before { content: "\f35d"; } -.um .fa-table-cells::before { +.um .fa-table-cells::before, +.um-icon-within .fa-table-cells::before { content: "\f00a"; } -.um .fa-th::before { +.um .fa-th::before, +.um-icon-within .fa-th::before { content: "\f00a"; } -.um .fa-file-pdf::before { +.um .fa-file-pdf::before, +.um-icon-within .fa-file-pdf::before { content: "\f1c1"; } -.um .fa-book-bible::before { +.um .fa-book-bible::before, +.um-icon-within .fa-book-bible::before { content: "\f647"; } -.um .fa-bible::before { +.um .fa-bible::before, +.um-icon-within .fa-bible::before { content: "\f647"; } -.um .fa-o::before { +.um .fa-o::before, +.um-icon-within .fa-o::before { content: "O"; } -.um .fa-suitcase-medical::before { +.um .fa-suitcase-medical::before, +.um-icon-within .fa-suitcase-medical::before { content: "\f0fa"; } -.um .fa-medkit::before { +.um .fa-medkit::before, +.um-icon-within .fa-medkit::before { content: "\f0fa"; } -.um .fa-user-secret::before { +.um .fa-user-secret::before, +.um-icon-within .fa-user-secret::before { content: "\f21b"; } -.um .fa-otter::before { +.um .fa-otter::before, +.um-icon-within .fa-otter::before { content: "\f700"; } -.um .fa-person-dress::before { +.um .fa-person-dress::before, +.um-icon-within .fa-person-dress::before { content: "\f182"; } -.um .fa-female::before { +.um .fa-female::before, +.um-icon-within .fa-female::before { content: "\f182"; } -.um .fa-comment-dollar::before { +.um .fa-comment-dollar::before, +.um-icon-within .fa-comment-dollar::before { content: "\f651"; } -.um .fa-business-time::before { +.um .fa-business-time::before, +.um-icon-within .fa-business-time::before { content: "\f64a"; } -.um .fa-briefcase-clock::before { +.um .fa-briefcase-clock::before, +.um-icon-within .fa-briefcase-clock::before { content: "\f64a"; } -.um .fa-table-cells-large::before { +.um .fa-table-cells-large::before, +.um-icon-within .fa-table-cells-large::before { content: "\f009"; } -.um .fa-th-large::before { +.um .fa-th-large::before, +.um-icon-within .fa-th-large::before { content: "\f009"; } -.um .fa-book-tanakh::before { +.um .fa-book-tanakh::before, +.um-icon-within .fa-book-tanakh::before { content: "\f827"; } -.um .fa-tanakh::before { +.um .fa-tanakh::before, +.um-icon-within .fa-tanakh::before { content: "\f827"; } -.um .fa-phone-volume::before { +.um .fa-phone-volume::before, +.um-icon-within .fa-phone-volume::before { content: "\f2a0"; } -.um .fa-volume-control-phone::before { +.um .fa-volume-control-phone::before, +.um-icon-within .fa-volume-control-phone::before { content: "\f2a0"; } -.um .fa-hat-cowboy-side::before { +.um .fa-hat-cowboy-side::before, +.um-icon-within .fa-hat-cowboy-side::before { content: "\f8c1"; } -.um .fa-clipboard-user::before { +.um .fa-clipboard-user::before, +.um-icon-within .fa-clipboard-user::before { content: "\f7f3"; } -.um .fa-child::before { +.um .fa-child::before, +.um-icon-within .fa-child::before { content: "\f1ae"; } -.um .fa-lira-sign::before { +.um .fa-lira-sign::before, +.um-icon-within .fa-lira-sign::before { content: "\f195"; } -.um .fa-satellite::before { +.um .fa-satellite::before, +.um-icon-within .fa-satellite::before { content: "\f7bf"; } -.um .fa-plane-lock::before { +.um .fa-plane-lock::before, +.um-icon-within .fa-plane-lock::before { content: "\e558"; } -.um .fa-tag::before { +.um .fa-tag::before, +.um-icon-within .fa-tag::before { content: "\f02b"; } -.um .fa-comment::before { +.um .fa-comment::before, +.um-icon-within .fa-comment::before { content: "\f075"; } -.um .fa-cake-candles::before { +.um .fa-cake-candles::before, +.um-icon-within .fa-cake-candles::before { content: "\f1fd"; } -.um .fa-birthday-cake::before { +.um .fa-birthday-cake::before, +.um-icon-within .fa-birthday-cake::before { content: "\f1fd"; } -.um .fa-cake::before { +.um .fa-cake::before, +.um-icon-within .fa-cake::before { content: "\f1fd"; } -.um .fa-envelope::before { +.um .fa-envelope::before, +.um-icon-within .fa-envelope::before { content: "\f0e0"; } -.um .fa-angles-up::before { +.um .fa-angles-up::before, +.um-icon-within .fa-angles-up::before { content: "\f102"; } -.um .fa-angle-double-up::before { +.um .fa-angle-double-up::before, +.um-icon-within .fa-angle-double-up::before { content: "\f102"; } -.um .fa-paperclip::before { +.um .fa-paperclip::before, +.um-icon-within .fa-paperclip::before { content: "\f0c6"; } -.um .fa-arrow-right-to-city::before { +.um .fa-arrow-right-to-city::before, +.um-icon-within .fa-arrow-right-to-city::before { content: "\e4b3"; } -.um .fa-ribbon::before { +.um .fa-ribbon::before, +.um-icon-within .fa-ribbon::before { content: "\f4d6"; } -.um .fa-lungs::before { +.um .fa-lungs::before, +.um-icon-within .fa-lungs::before { content: "\f604"; } -.um .fa-arrow-up-9-1::before { +.um .fa-arrow-up-9-1::before, +.um-icon-within .fa-arrow-up-9-1::before { content: "\f887"; } -.um .fa-sort-numeric-up-alt::before { +.um .fa-sort-numeric-up-alt::before, +.um-icon-within .fa-sort-numeric-up-alt::before { content: "\f887"; } -.um .fa-litecoin-sign::before { +.um .fa-litecoin-sign::before, +.um-icon-within .fa-litecoin-sign::before { content: "\e1d3"; } -.um .fa-border-none::before { +.um .fa-border-none::before, +.um-icon-within .fa-border-none::before { content: "\f850"; } -.um .fa-circle-nodes::before { +.um .fa-circle-nodes::before, +.um-icon-within .fa-circle-nodes::before { content: "\e4e2"; } -.um .fa-parachute-box::before { +.um .fa-parachute-box::before, +.um-icon-within .fa-parachute-box::before { content: "\f4cd"; } -.um .fa-indent::before { +.um .fa-indent::before, +.um-icon-within .fa-indent::before { content: "\f03c"; } -.um .fa-truck-field-un::before { +.um .fa-truck-field-un::before, +.um-icon-within .fa-truck-field-un::before { content: "\e58e"; } -.um .fa-hourglass::before { +.um .fa-hourglass::before, +.um-icon-within .fa-hourglass::before { content: "\f254"; } -.um .fa-hourglass-empty::before { +.um .fa-hourglass-empty::before, +.um-icon-within .fa-hourglass-empty::before { content: "\f254"; } -.um .fa-mountain::before { +.um .fa-mountain::before, +.um-icon-within .fa-mountain::before { content: "\f6fc"; } -.um .fa-user-doctor::before { +.um .fa-user-doctor::before, +.um-icon-within .fa-user-doctor::before { content: "\f0f0"; } -.um .fa-user-md::before { +.um .fa-user-md::before, +.um-icon-within .fa-user-md::before { content: "\f0f0"; } -.um .fa-circle-info::before { +.um .fa-circle-info::before, +.um-icon-within .fa-circle-info::before { content: "\f05a"; } -.um .fa-info-circle::before { +.um .fa-info-circle::before, +.um-icon-within .fa-info-circle::before { content: "\f05a"; } -.um .fa-cloud-meatball::before { +.um .fa-cloud-meatball::before, +.um-icon-within .fa-cloud-meatball::before { content: "\f73b"; } -.um .fa-camera::before { +.um .fa-camera::before, +.um-icon-within .fa-camera::before { content: "\f030"; } -.um .fa-camera-alt::before { +.um .fa-camera-alt::before, +.um-icon-within .fa-camera-alt::before { content: "\f030"; } -.um .fa-square-virus::before { +.um .fa-square-virus::before, +.um-icon-within .fa-square-virus::before { content: "\e578"; } -.um .fa-meteor::before { +.um .fa-meteor::before, +.um-icon-within .fa-meteor::before { content: "\f753"; } -.um .fa-car-on::before { +.um .fa-car-on::before, +.um-icon-within .fa-car-on::before { content: "\e4dd"; } -.um .fa-sleigh::before { +.um .fa-sleigh::before, +.um-icon-within .fa-sleigh::before { content: "\f7cc"; } -.um .fa-arrow-down-1-9::before { +.um .fa-arrow-down-1-9::before, +.um-icon-within .fa-arrow-down-1-9::before { content: "\f162"; } -.um .fa-sort-numeric-asc::before { +.um .fa-sort-numeric-asc::before, +.um-icon-within .fa-sort-numeric-asc::before { content: "\f162"; } -.um .fa-sort-numeric-down::before { +.um .fa-sort-numeric-down::before, +.um-icon-within .fa-sort-numeric-down::before { content: "\f162"; } -.um .fa-hand-holding-droplet::before { +.um .fa-hand-holding-droplet::before, +.um-icon-within .fa-hand-holding-droplet::before { content: "\f4c1"; } -.um .fa-hand-holding-water::before { +.um .fa-hand-holding-water::before, +.um-icon-within .fa-hand-holding-water::before { content: "\f4c1"; } -.um .fa-water::before { +.um .fa-water::before, +.um-icon-within .fa-water::before { content: "\f773"; } -.um .fa-calendar-check::before { +.um .fa-calendar-check::before, +.um-icon-within .fa-calendar-check::before { content: "\f274"; } -.um .fa-braille::before { +.um .fa-braille::before, +.um-icon-within .fa-braille::before { content: "\f2a1"; } -.um .fa-prescription-bottle-medical::before { +.um .fa-prescription-bottle-medical::before, +.um-icon-within .fa-prescription-bottle-medical::before { content: "\f486"; } -.um .fa-prescription-bottle-alt::before { +.um .fa-prescription-bottle-alt::before, +.um-icon-within .fa-prescription-bottle-alt::before { content: "\f486"; } -.um .fa-landmark::before { +.um .fa-landmark::before, +.um-icon-within .fa-landmark::before { content: "\f66f"; } -.um .fa-truck::before { +.um .fa-truck::before, +.um-icon-within .fa-truck::before { content: "\f0d1"; } -.um .fa-crosshairs::before { +.um .fa-crosshairs::before, +.um-icon-within .fa-crosshairs::before { content: "\f05b"; } -.um .fa-person-cane::before { +.um .fa-person-cane::before, +.um-icon-within .fa-person-cane::before { content: "\e53c"; } -.um .fa-tent::before { +.um .fa-tent::before, +.um-icon-within .fa-tent::before { content: "\e57d"; } -.um .fa-vest-patches::before { +.um .fa-vest-patches::before, +.um-icon-within .fa-vest-patches::before { content: "\e086"; } -.um .fa-check-double::before { +.um .fa-check-double::before, +.um-icon-within .fa-check-double::before { content: "\f560"; } -.um .fa-arrow-down-a-z::before { +.um .fa-arrow-down-a-z::before, +.um-icon-within .fa-arrow-down-a-z::before { content: "\f15d"; } -.um .fa-sort-alpha-asc::before { +.um .fa-sort-alpha-asc::before, +.um-icon-within .fa-sort-alpha-asc::before { content: "\f15d"; } -.um .fa-sort-alpha-down::before { +.um .fa-sort-alpha-down::before, +.um-icon-within .fa-sort-alpha-down::before { content: "\f15d"; } -.um .fa-money-bill-wheat::before { +.um .fa-money-bill-wheat::before, +.um-icon-within .fa-money-bill-wheat::before { content: "\e52a"; } -.um .fa-cookie::before { +.um .fa-cookie::before, +.um-icon-within .fa-cookie::before { content: "\f563"; } -.um .fa-arrow-rotate-left::before { +.um .fa-arrow-rotate-left::before, +.um-icon-within .fa-arrow-rotate-left::before { content: "\f0e2"; } -.um .fa-arrow-left-rotate::before { +.um .fa-arrow-left-rotate::before, +.um-icon-within .fa-arrow-left-rotate::before { content: "\f0e2"; } -.um .fa-arrow-rotate-back::before { +.um .fa-arrow-rotate-back::before, +.um-icon-within .fa-arrow-rotate-back::before { content: "\f0e2"; } -.um .fa-arrow-rotate-backward::before { +.um .fa-arrow-rotate-backward::before, +.um-icon-within .fa-arrow-rotate-backward::before { content: "\f0e2"; } -.um .fa-undo::before { +.um .fa-undo::before, +.um-icon-within .fa-undo::before { content: "\f0e2"; } -.um .fa-hard-drive::before { +.um .fa-hard-drive::before, +.um-icon-within .fa-hard-drive::before { content: "\f0a0"; } -.um .fa-hdd::before { +.um .fa-hdd::before, +.um-icon-within .fa-hdd::before { content: "\f0a0"; } -.um .fa-face-grin-squint-tears::before { +.um .fa-face-grin-squint-tears::before, +.um-icon-within .fa-face-grin-squint-tears::before { content: "\f586"; } -.um .fa-grin-squint-tears::before { +.um .fa-grin-squint-tears::before, +.um-icon-within .fa-grin-squint-tears::before { content: "\f586"; } -.um .fa-dumbbell::before { +.um .fa-dumbbell::before, +.um-icon-within .fa-dumbbell::before { content: "\f44b"; } -.um .fa-rectangle-list::before { +.um .fa-rectangle-list::before, +.um-icon-within .fa-rectangle-list::before { content: "\f022"; } -.um .fa-list-alt::before { +.um .fa-list-alt::before, +.um-icon-within .fa-list-alt::before { content: "\f022"; } -.um .fa-tarp-droplet::before { +.um .fa-tarp-droplet::before, +.um-icon-within .fa-tarp-droplet::before { content: "\e57c"; } -.um .fa-house-medical-circle-check::before { +.um .fa-house-medical-circle-check::before, +.um-icon-within .fa-house-medical-circle-check::before { content: "\e511"; } -.um .fa-person-skiing-nordic::before { +.um .fa-person-skiing-nordic::before, +.um-icon-within .fa-person-skiing-nordic::before { content: "\f7ca"; } -.um .fa-skiing-nordic::before { +.um .fa-skiing-nordic::before, +.um-icon-within .fa-skiing-nordic::before { content: "\f7ca"; } -.um .fa-calendar-plus::before { +.um .fa-calendar-plus::before, +.um-icon-within .fa-calendar-plus::before { content: "\f271"; } -.um .fa-plane-arrival::before { +.um .fa-plane-arrival::before, +.um-icon-within .fa-plane-arrival::before { content: "\f5af"; } -.um .fa-circle-left::before { +.um .fa-circle-left::before, +.um-icon-within .fa-circle-left::before { content: "\f359"; } -.um .fa-arrow-alt-circle-left::before { +.um .fa-arrow-alt-circle-left::before, +.um-icon-within .fa-arrow-alt-circle-left::before { content: "\f359"; } -.um .fa-train-subway::before { +.um .fa-train-subway::before, +.um-icon-within .fa-train-subway::before { content: "\f239"; } -.um .fa-subway::before { +.um .fa-subway::before, +.um-icon-within .fa-subway::before { content: "\f239"; } -.um .fa-chart-gantt::before { +.um .fa-chart-gantt::before, +.um-icon-within .fa-chart-gantt::before { content: "\e0e4"; } -.um .fa-indian-rupee-sign::before { +.um .fa-indian-rupee-sign::before, +.um-icon-within .fa-indian-rupee-sign::before { content: "\e1bc"; } -.um .fa-indian-rupee::before { +.um .fa-indian-rupee::before, +.um-icon-within .fa-indian-rupee::before { content: "\e1bc"; } -.um .fa-inr::before { +.um .fa-inr::before, +.um-icon-within .fa-inr::before { content: "\e1bc"; } -.um .fa-crop-simple::before { +.um .fa-crop-simple::before, +.um-icon-within .fa-crop-simple::before { content: "\f565"; } -.um .fa-crop-alt::before { +.um .fa-crop-alt::before, +.um-icon-within .fa-crop-alt::before { content: "\f565"; } -.um .fa-money-bill-1::before { +.um .fa-money-bill-1::before, +.um-icon-within .fa-money-bill-1::before { content: "\f3d1"; } -.um .fa-money-bill-alt::before { +.um .fa-money-bill-alt::before, +.um-icon-within .fa-money-bill-alt::before { content: "\f3d1"; } -.um .fa-left-long::before { +.um .fa-left-long::before, +.um-icon-within .fa-left-long::before { content: "\f30a"; } -.um .fa-long-arrow-alt-left::before { +.um .fa-long-arrow-alt-left::before, +.um-icon-within .fa-long-arrow-alt-left::before { content: "\f30a"; } -.um .fa-dna::before { +.um .fa-dna::before, +.um-icon-within .fa-dna::before { content: "\f471"; } -.um .fa-virus-slash::before { +.um .fa-virus-slash::before, +.um-icon-within .fa-virus-slash::before { content: "\e075"; } -.um .fa-minus::before { +.um .fa-minus::before, +.um-icon-within .fa-minus::before { content: "\f068"; } -.um .fa-subtract::before { +.um .fa-subtract::before, +.um-icon-within .fa-subtract::before { content: "\f068"; } -.um .fa-chess::before { +.um .fa-chess::before, +.um-icon-within .fa-chess::before { content: "\f439"; } -.um .fa-arrow-left-long::before { +.um .fa-arrow-left-long::before, +.um-icon-within .fa-arrow-left-long::before { content: "\f177"; } -.um .fa-long-arrow-left::before { +.um .fa-long-arrow-left::before, +.um-icon-within .fa-long-arrow-left::before { content: "\f177"; } -.um .fa-plug-circle-check::before { +.um .fa-plug-circle-check::before, +.um-icon-within .fa-plug-circle-check::before { content: "\e55c"; } -.um .fa-street-view::before { +.um .fa-street-view::before, +.um-icon-within .fa-street-view::before { content: "\f21d"; } -.um .fa-franc-sign::before { +.um .fa-franc-sign::before, +.um-icon-within .fa-franc-sign::before { content: "\e18f"; } -.um .fa-volume-off::before { +.um .fa-volume-off::before, +.um-icon-within .fa-volume-off::before { content: "\f026"; } -.um .fa-hands-asl-interpreting::before { +.um .fa-hands-asl-interpreting::before, +.um-icon-within .fa-hands-asl-interpreting::before { content: "\f2a3"; } -.um .fa-american-sign-language-interpreting::before { +.um .fa-american-sign-language-interpreting::before, +.um-icon-within .fa-american-sign-language-interpreting::before { content: "\f2a3"; } -.um .fa-asl-interpreting::before { +.um .fa-asl-interpreting::before, +.um-icon-within .fa-asl-interpreting::before { content: "\f2a3"; } -.um .fa-hands-american-sign-language-interpreting::before { +.um .fa-hands-american-sign-language-interpreting::before, +.um-icon-within .fa-hands-american-sign-language-interpreting::before { content: "\f2a3"; } -.um .fa-gear::before { +.um .fa-gear::before, +.um-icon-within .fa-gear::before { content: "\f013"; } -.um .fa-cog::before { +.um .fa-cog::before, +.um-icon-within .fa-cog::before { content: "\f013"; } -.um .fa-droplet-slash::before { +.um .fa-droplet-slash::before, +.um-icon-within .fa-droplet-slash::before { content: "\f5c7"; } -.um .fa-tint-slash::before { +.um .fa-tint-slash::before, +.um-icon-within .fa-tint-slash::before { content: "\f5c7"; } -.um .fa-mosque::before { +.um .fa-mosque::before, +.um-icon-within .fa-mosque::before { content: "\f678"; } -.um .fa-mosquito::before { +.um .fa-mosquito::before, +.um-icon-within .fa-mosquito::before { content: "\e52b"; } -.um .fa-star-of-david::before { +.um .fa-star-of-david::before, +.um-icon-within .fa-star-of-david::before { content: "\f69a"; } -.um .fa-person-military-rifle::before { +.um .fa-person-military-rifle::before, +.um-icon-within .fa-person-military-rifle::before { content: "\e54b"; } -.um .fa-cart-shopping::before { +.um .fa-cart-shopping::before, +.um-icon-within .fa-cart-shopping::before { content: "\f07a"; } -.um .fa-shopping-cart::before { +.um .fa-shopping-cart::before, +.um-icon-within .fa-shopping-cart::before { content: "\f07a"; } -.um .fa-vials::before { +.um .fa-vials::before, +.um-icon-within .fa-vials::before { content: "\f493"; } -.um .fa-plug-circle-plus::before { +.um .fa-plug-circle-plus::before, +.um-icon-within .fa-plug-circle-plus::before { content: "\e55f"; } -.um .fa-place-of-worship::before { +.um .fa-place-of-worship::before, +.um-icon-within .fa-place-of-worship::before { content: "\f67f"; } -.um .fa-grip-vertical::before { +.um .fa-grip-vertical::before, +.um-icon-within .fa-grip-vertical::before { content: "\f58e"; } -.um .fa-arrow-turn-up::before { +.um .fa-arrow-turn-up::before, +.um-icon-within .fa-arrow-turn-up::before { content: "\f148"; } -.um .fa-level-up::before { +.um .fa-level-up::before, +.um-icon-within .fa-level-up::before { content: "\f148"; } -.um .fa-u::before { +.um .fa-u::before, +.um-icon-within .fa-u::before { content: "U"; } -.um .fa-square-root-variable::before { +.um .fa-square-root-variable::before, +.um-icon-within .fa-square-root-variable::before { content: "\f698"; } -.um .fa-square-root-alt::before { +.um .fa-square-root-alt::before, +.um-icon-within .fa-square-root-alt::before { content: "\f698"; } -.um .fa-clock::before { +.um .fa-clock::before, +.um-icon-within .fa-clock::before { content: "\f017"; } -.um .fa-clock-four::before { +.um .fa-clock-four::before, +.um-icon-within .fa-clock-four::before { content: "\f017"; } -.um .fa-backward-step::before { +.um .fa-backward-step::before, +.um-icon-within .fa-backward-step::before { content: "\f048"; } -.um .fa-step-backward::before { +.um .fa-step-backward::before, +.um-icon-within .fa-step-backward::before { content: "\f048"; } -.um .fa-pallet::before { +.um .fa-pallet::before, +.um-icon-within .fa-pallet::before { content: "\f482"; } -.um .fa-faucet::before { +.um .fa-faucet::before, +.um-icon-within .fa-faucet::before { content: "\e005"; } -.um .fa-baseball-bat-ball::before { +.um .fa-baseball-bat-ball::before, +.um-icon-within .fa-baseball-bat-ball::before { content: "\f432"; } -.um .fa-s::before { +.um .fa-s::before, +.um-icon-within .fa-s::before { content: "S"; } -.um .fa-timeline::before { +.um .fa-timeline::before, +.um-icon-within .fa-timeline::before { content: "\e29c"; } -.um .fa-keyboard::before { +.um .fa-keyboard::before, +.um-icon-within .fa-keyboard::before { content: "\f11c"; } -.um .fa-caret-down::before { +.um .fa-caret-down::before, +.um-icon-within .fa-caret-down::before { content: "\f0d7"; } -.um .fa-house-chimney-medical::before { +.um .fa-house-chimney-medical::before, +.um-icon-within .fa-house-chimney-medical::before { content: "\f7f2"; } -.um .fa-clinic-medical::before { +.um .fa-clinic-medical::before, +.um-icon-within .fa-clinic-medical::before { content: "\f7f2"; } -.um .fa-temperature-three-quarters::before { +.um .fa-temperature-three-quarters::before, +.um-icon-within .fa-temperature-three-quarters::before { content: "\f2c8"; } -.um .fa-temperature-3::before { +.um .fa-temperature-3::before, +.um-icon-within .fa-temperature-3::before { content: "\f2c8"; } -.um .fa-thermometer-3::before { +.um .fa-thermometer-3::before, +.um-icon-within .fa-thermometer-3::before { content: "\f2c8"; } -.um .fa-thermometer-three-quarters::before { +.um .fa-thermometer-three-quarters::before, +.um-icon-within .fa-thermometer-three-quarters::before { content: "\f2c8"; } -.um .fa-mobile-screen::before { +.um .fa-mobile-screen::before, +.um-icon-within .fa-mobile-screen::before { content: "\f3cf"; } -.um .fa-mobile-android-alt::before { +.um .fa-mobile-android-alt::before, +.um-icon-within .fa-mobile-android-alt::before { content: "\f3cf"; } -.um .fa-plane-up::before { +.um .fa-plane-up::before, +.um-icon-within .fa-plane-up::before { content: "\e22d"; } -.um .fa-piggy-bank::before { +.um .fa-piggy-bank::before, +.um-icon-within .fa-piggy-bank::before { content: "\f4d3"; } -.um .fa-battery-half::before { +.um .fa-battery-half::before, +.um-icon-within .fa-battery-half::before { content: "\f242"; } -.um .fa-battery-3::before { +.um .fa-battery-3::before, +.um-icon-within .fa-battery-3::before { content: "\f242"; } -.um .fa-mountain-city::before { +.um .fa-mountain-city::before, +.um-icon-within .fa-mountain-city::before { content: "\e52e"; } -.um .fa-coins::before { +.um .fa-coins::before, +.um-icon-within .fa-coins::before { content: "\f51e"; } -.um .fa-khanda::before { +.um .fa-khanda::before, +.um-icon-within .fa-khanda::before { content: "\f66d"; } -.um .fa-sliders::before { +.um .fa-sliders::before, +.um-icon-within .fa-sliders::before { content: "\f1de"; } -.um .fa-sliders-h::before { +.um .fa-sliders-h::before, +.um-icon-within .fa-sliders-h::before { content: "\f1de"; } -.um .fa-folder-tree::before { +.um .fa-folder-tree::before, +.um-icon-within .fa-folder-tree::before { content: "\f802"; } -.um .fa-network-wired::before { +.um .fa-network-wired::before, +.um-icon-within .fa-network-wired::before { content: "\f6ff"; } -.um .fa-map-pin::before { +.um .fa-map-pin::before, +.um-icon-within .fa-map-pin::before { content: "\f276"; } -.um .fa-hamsa::before { +.um .fa-hamsa::before, +.um-icon-within .fa-hamsa::before { content: "\f665"; } -.um .fa-cent-sign::before { +.um .fa-cent-sign::before, +.um-icon-within .fa-cent-sign::before { content: "\e3f5"; } -.um .fa-flask::before { +.um .fa-flask::before, +.um-icon-within .fa-flask::before { content: "\f0c3"; } -.um .fa-person-pregnant::before { +.um .fa-person-pregnant::before, +.um-icon-within .fa-person-pregnant::before { content: "\e31e"; } -.um .fa-wand-sparkles::before { +.um .fa-wand-sparkles::before, +.um-icon-within .fa-wand-sparkles::before { content: "\f72b"; } -.um .fa-ellipsis-vertical::before { +.um .fa-ellipsis-vertical::before, +.um-icon-within .fa-ellipsis-vertical::before { content: "\f142"; } -.um .fa-ellipsis-v::before { +.um .fa-ellipsis-v::before, +.um-icon-within .fa-ellipsis-v::before { content: "\f142"; } -.um .fa-ticket::before { +.um .fa-ticket::before, +.um-icon-within .fa-ticket::before { content: "\f145"; } -.um .fa-power-off::before { +.um .fa-power-off::before, +.um-icon-within .fa-power-off::before { content: "\f011"; } -.um .fa-right-long::before { +.um .fa-right-long::before, +.um-icon-within .fa-right-long::before { content: "\f30b"; } -.um .fa-long-arrow-alt-right::before { +.um .fa-long-arrow-alt-right::before, +.um-icon-within .fa-long-arrow-alt-right::before { content: "\f30b"; } -.um .fa-flag-usa::before { +.um .fa-flag-usa::before, +.um-icon-within .fa-flag-usa::before { content: "\f74d"; } -.um .fa-laptop-file::before { +.um .fa-laptop-file::before, +.um-icon-within .fa-laptop-file::before { content: "\e51d"; } -.um .fa-tty::before { +.um .fa-tty::before, +.um-icon-within .fa-tty::before { content: "\f1e4"; } -.um .fa-teletype::before { +.um .fa-teletype::before, +.um-icon-within .fa-teletype::before { content: "\f1e4"; } -.um .fa-diagram-next::before { +.um .fa-diagram-next::before, +.um-icon-within .fa-diagram-next::before { content: "\e476"; } -.um .fa-person-rifle::before { +.um .fa-person-rifle::before, +.um-icon-within .fa-person-rifle::before { content: "\e54e"; } -.um .fa-house-medical-circle-exclamation::before { +.um .fa-house-medical-circle-exclamation::before, +.um-icon-within .fa-house-medical-circle-exclamation::before { content: "\e512"; } -.um .fa-closed-captioning::before { +.um .fa-closed-captioning::before, +.um-icon-within .fa-closed-captioning::before { content: "\f20a"; } -.um .fa-person-hiking::before { +.um .fa-person-hiking::before, +.um-icon-within .fa-person-hiking::before { content: "\f6ec"; } -.um .fa-hiking::before { +.um .fa-hiking::before, +.um-icon-within .fa-hiking::before { content: "\f6ec"; } -.um .fa-venus-double::before { +.um .fa-venus-double::before, +.um-icon-within .fa-venus-double::before { content: "\f226"; } -.um .fa-images::before { +.um .fa-images::before, +.um-icon-within .fa-images::before { content: "\f302"; } -.um .fa-calculator::before { +.um .fa-calculator::before, +.um-icon-within .fa-calculator::before { content: "\f1ec"; } -.um .fa-people-pulling::before { +.um .fa-people-pulling::before, +.um-icon-within .fa-people-pulling::before { content: "\e535"; } -.um .fa-n::before { +.um .fa-n::before, +.um-icon-within .fa-n::before { content: "N"; } -.um .fa-cable-car::before { +.um .fa-cable-car::before, +.um-icon-within .fa-cable-car::before { content: "\f7da"; } -.um .fa-tram::before { +.um .fa-tram::before, +.um-icon-within .fa-tram::before { content: "\f7da"; } -.um .fa-cloud-rain::before { +.um .fa-cloud-rain::before, +.um-icon-within .fa-cloud-rain::before { content: "\f73d"; } -.um .fa-building-circle-xmark::before { +.um .fa-building-circle-xmark::before, +.um-icon-within .fa-building-circle-xmark::before { content: "\e4d4"; } -.um .fa-ship::before { +.um .fa-ship::before, +.um-icon-within .fa-ship::before { content: "\f21a"; } -.um .fa-arrows-down-to-line::before { +.um .fa-arrows-down-to-line::before, +.um-icon-within .fa-arrows-down-to-line::before { content: "\e4b8"; } -.um .fa-download::before { +.um .fa-download::before, +.um-icon-within .fa-download::before { content: "\f019"; } -.um .fa-face-grin::before { +.um .fa-face-grin::before, +.um-icon-within .fa-face-grin::before { content: "\f580"; } -.um .fa-grin::before { +.um .fa-grin::before, +.um-icon-within .fa-grin::before { content: "\f580"; } -.um .fa-delete-left::before { +.um .fa-delete-left::before, +.um-icon-within .fa-delete-left::before { content: "\f55a"; } -.um .fa-backspace::before { +.um .fa-backspace::before, +.um-icon-within .fa-backspace::before { content: "\f55a"; } -.um .fa-eye-dropper::before { +.um .fa-eye-dropper::before, +.um-icon-within .fa-eye-dropper::before { content: "\f1fb"; } -.um .fa-eye-dropper-empty::before { +.um .fa-eye-dropper-empty::before, +.um-icon-within .fa-eye-dropper-empty::before { content: "\f1fb"; } -.um .fa-eyedropper::before { +.um .fa-eyedropper::before, +.um-icon-within .fa-eyedropper::before { content: "\f1fb"; } -.um .fa-file-circle-check::before { +.um .fa-file-circle-check::before, +.um-icon-within .fa-file-circle-check::before { content: "\e5a0"; } -.um .fa-forward::before { +.um .fa-forward::before, +.um-icon-within .fa-forward::before { content: "\f04e"; } -.um .fa-mobile::before { +.um .fa-mobile::before, +.um-icon-within .fa-mobile::before { content: "\f3ce"; } -.um .fa-mobile-android::before { +.um .fa-mobile-android::before, +.um-icon-within .fa-mobile-android::before { content: "\f3ce"; } -.um .fa-mobile-phone::before { +.um .fa-mobile-phone::before, +.um-icon-within .fa-mobile-phone::before { content: "\f3ce"; } -.um .fa-face-meh::before { +.um .fa-face-meh::before, +.um-icon-within .fa-face-meh::before { content: "\f11a"; } -.um .fa-meh::before { +.um .fa-meh::before, +.um-icon-within .fa-meh::before { content: "\f11a"; } -.um .fa-align-center::before { +.um .fa-align-center::before, +.um-icon-within .fa-align-center::before { content: "\f037"; } -.um .fa-book-skull::before { +.um .fa-book-skull::before, +.um-icon-within .fa-book-skull::before { content: "\f6b7"; } -.um .fa-book-dead::before { +.um .fa-book-dead::before, +.um-icon-within .fa-book-dead::before { content: "\f6b7"; } -.um .fa-id-card::before { +.um .fa-id-card::before, +.um-icon-within .fa-id-card::before { content: "\f2c2"; } -.um .fa-drivers-license::before { +.um .fa-drivers-license::before, +.um-icon-within .fa-drivers-license::before { content: "\f2c2"; } -.um .fa-outdent::before { +.um .fa-outdent::before, +.um-icon-within .fa-outdent::before { content: "\f03b"; } -.um .fa-dedent::before { +.um .fa-dedent::before, +.um-icon-within .fa-dedent::before { content: "\f03b"; } -.um .fa-heart-circle-exclamation::before { +.um .fa-heart-circle-exclamation::before, +.um-icon-within .fa-heart-circle-exclamation::before { content: "\e4fe"; } -.um .fa-house::before { +.um .fa-house::before, +.um-icon-within .fa-house::before { content: "\f015"; } -.um .fa-home::before { +.um .fa-home::before, +.um-icon-within .fa-home::before { content: "\f015"; } -.um .fa-home-alt::before { +.um .fa-home-alt::before, +.um-icon-within .fa-home-alt::before { content: "\f015"; } -.um .fa-home-lg-alt::before { +.um .fa-home-lg-alt::before, +.um-icon-within .fa-home-lg-alt::before { content: "\f015"; } -.um .fa-calendar-week::before { +.um .fa-calendar-week::before, +.um-icon-within .fa-calendar-week::before { content: "\f784"; } -.um .fa-laptop-medical::before { +.um .fa-laptop-medical::before, +.um-icon-within .fa-laptop-medical::before { content: "\f812"; } -.um .fa-b::before { +.um .fa-b::before, +.um-icon-within .fa-b::before { content: "B"; } -.um .fa-file-medical::before { +.um .fa-file-medical::before, +.um-icon-within .fa-file-medical::before { content: "\f477"; } -.um .fa-dice-one::before { +.um .fa-dice-one::before, +.um-icon-within .fa-dice-one::before { content: "\f525"; } -.um .fa-kiwi-bird::before { +.um .fa-kiwi-bird::before, +.um-icon-within .fa-kiwi-bird::before { content: "\f535"; } -.um .fa-arrow-right-arrow-left::before { +.um .fa-arrow-right-arrow-left::before, +.um-icon-within .fa-arrow-right-arrow-left::before { content: "\f0ec"; } -.um .fa-exchange::before { +.um .fa-exchange::before, +.um-icon-within .fa-exchange::before { content: "\f0ec"; } -.um .fa-rotate-right::before { +.um .fa-rotate-right::before, +.um-icon-within .fa-rotate-right::before { content: "\f2f9"; } -.um .fa-redo-alt::before { +.um .fa-redo-alt::before, +.um-icon-within .fa-redo-alt::before { content: "\f2f9"; } -.um .fa-rotate-forward::before { +.um .fa-rotate-forward::before, +.um-icon-within .fa-rotate-forward::before { content: "\f2f9"; } -.um .fa-utensils::before { +.um .fa-utensils::before, +.um-icon-within .fa-utensils::before { content: "\f2e7"; } -.um .fa-cutlery::before { +.um .fa-cutlery::before, +.um-icon-within .fa-cutlery::before { content: "\f2e7"; } -.um .fa-arrow-up-wide-short::before { +.um .fa-arrow-up-wide-short::before, +.um-icon-within .fa-arrow-up-wide-short::before { content: "\f161"; } -.um .fa-sort-amount-up::before { +.um .fa-sort-amount-up::before, +.um-icon-within .fa-sort-amount-up::before { content: "\f161"; } -.um .fa-mill-sign::before { +.um .fa-mill-sign::before, +.um-icon-within .fa-mill-sign::before { content: "\e1ed"; } -.um .fa-bowl-rice::before { +.um .fa-bowl-rice::before, +.um-icon-within .fa-bowl-rice::before { content: "\e2eb"; } -.um .fa-skull::before { +.um .fa-skull::before, +.um-icon-within .fa-skull::before { content: "\f54c"; } -.um .fa-tower-broadcast::before { +.um .fa-tower-broadcast::before, +.um-icon-within .fa-tower-broadcast::before { content: "\f519"; } -.um .fa-broadcast-tower::before { +.um .fa-broadcast-tower::before, +.um-icon-within .fa-broadcast-tower::before { content: "\f519"; } -.um .fa-truck-pickup::before { +.um .fa-truck-pickup::before, +.um-icon-within .fa-truck-pickup::before { content: "\f63c"; } -.um .fa-up-long::before { +.um .fa-up-long::before, +.um-icon-within .fa-up-long::before { content: "\f30c"; } -.um .fa-long-arrow-alt-up::before { +.um .fa-long-arrow-alt-up::before, +.um-icon-within .fa-long-arrow-alt-up::before { content: "\f30c"; } -.um .fa-stop::before { +.um .fa-stop::before, +.um-icon-within .fa-stop::before { content: "\f04d"; } -.um .fa-code-merge::before { +.um .fa-code-merge::before, +.um-icon-within .fa-code-merge::before { content: "\f387"; } -.um .fa-upload::before { +.um .fa-upload::before, +.um-icon-within .fa-upload::before { content: "\f093"; } -.um .fa-hurricane::before { +.um .fa-hurricane::before, +.um-icon-within .fa-hurricane::before { content: "\f751"; } -.um .fa-mound::before { +.um .fa-mound::before, +.um-icon-within .fa-mound::before { content: "\e52d"; } -.um .fa-toilet-portable::before { +.um .fa-toilet-portable::before, +.um-icon-within .fa-toilet-portable::before { content: "\e583"; } -.um .fa-compact-disc::before { +.um .fa-compact-disc::before, +.um-icon-within .fa-compact-disc::before { content: "\f51f"; } -.um .fa-file-arrow-down::before { +.um .fa-file-arrow-down::before, +.um-icon-within .fa-file-arrow-down::before { content: "\f56d"; } -.um .fa-file-download::before { +.um .fa-file-download::before, +.um-icon-within .fa-file-download::before { content: "\f56d"; } -.um .fa-caravan::before { +.um .fa-caravan::before, +.um-icon-within .fa-caravan::before { content: "\f8ff"; } -.um .fa-shield-cat::before { +.um .fa-shield-cat::before, +.um-icon-within .fa-shield-cat::before { content: "\e572"; } -.um .fa-bolt::before { +.um .fa-bolt::before, +.um-icon-within .fa-bolt::before { content: "\f0e7"; } -.um .fa-zap::before { +.um .fa-zap::before, +.um-icon-within .fa-zap::before { content: "\f0e7"; } -.um .fa-glass-water::before { +.um .fa-glass-water::before, +.um-icon-within .fa-glass-water::before { content: "\e4f4"; } -.um .fa-oil-well::before { +.um .fa-oil-well::before, +.um-icon-within .fa-oil-well::before { content: "\e532"; } -.um .fa-vault::before { +.um .fa-vault::before, +.um-icon-within .fa-vault::before { content: "\e2c5"; } -.um .fa-mars::before { +.um .fa-mars::before, +.um-icon-within .fa-mars::before { content: "\f222"; } -.um .fa-toilet::before { +.um .fa-toilet::before, +.um-icon-within .fa-toilet::before { content: "\f7d8"; } -.um .fa-plane-circle-xmark::before { +.um .fa-plane-circle-xmark::before, +.um-icon-within .fa-plane-circle-xmark::before { content: "\e557"; } -.um .fa-yen-sign::before { +.um .fa-yen-sign::before, +.um-icon-within .fa-yen-sign::before { content: "\f157"; } -.um .fa-cny::before { +.um .fa-cny::before, +.um-icon-within .fa-cny::before { content: "\f157"; } -.um .fa-jpy::before { +.um .fa-jpy::before, +.um-icon-within .fa-jpy::before { content: "\f157"; } -.um .fa-rmb::before { +.um .fa-rmb::before, +.um-icon-within .fa-rmb::before { content: "\f157"; } -.um .fa-yen::before { +.um .fa-yen::before, +.um-icon-within .fa-yen::before { content: "\f157"; } -.um .fa-ruble-sign::before { +.um .fa-ruble-sign::before, +.um-icon-within .fa-ruble-sign::before { content: "\f158"; } -.um .fa-rouble::before { +.um .fa-rouble::before, +.um-icon-within .fa-rouble::before { content: "\f158"; } -.um .fa-rub::before { +.um .fa-rub::before, +.um-icon-within .fa-rub::before { content: "\f158"; } -.um .fa-ruble::before { +.um .fa-ruble::before, +.um-icon-within .fa-ruble::before { content: "\f158"; } -.um .fa-sun::before { +.um .fa-sun::before, +.um-icon-within .fa-sun::before { content: "\f185"; } -.um .fa-guitar::before { +.um .fa-guitar::before, +.um-icon-within .fa-guitar::before { content: "\f7a6"; } -.um .fa-face-laugh-wink::before { +.um .fa-face-laugh-wink::before, +.um-icon-within .fa-face-laugh-wink::before { content: "\f59c"; } -.um .fa-laugh-wink::before { +.um .fa-laugh-wink::before, +.um-icon-within .fa-laugh-wink::before { content: "\f59c"; } -.um .fa-horse-head::before { +.um .fa-horse-head::before, +.um-icon-within .fa-horse-head::before { content: "\f7ab"; } -.um .fa-bore-hole::before { +.um .fa-bore-hole::before, +.um-icon-within .fa-bore-hole::before { content: "\e4c3"; } -.um .fa-industry::before { +.um .fa-industry::before, +.um-icon-within .fa-industry::before { content: "\f275"; } -.um .fa-circle-down::before { +.um .fa-circle-down::before, +.um-icon-within .fa-circle-down::before { content: "\f358"; } -.um .fa-arrow-alt-circle-down::before { +.um .fa-arrow-alt-circle-down::before, +.um-icon-within .fa-arrow-alt-circle-down::before { content: "\f358"; } -.um .fa-arrows-turn-to-dots::before { +.um .fa-arrows-turn-to-dots::before, +.um-icon-within .fa-arrows-turn-to-dots::before { content: "\e4c1"; } -.um .fa-florin-sign::before { +.um .fa-florin-sign::before, +.um-icon-within .fa-florin-sign::before { content: "\e184"; } -.um .fa-arrow-down-short-wide::before { +.um .fa-arrow-down-short-wide::before, +.um-icon-within .fa-arrow-down-short-wide::before { content: "\f884"; } -.um .fa-sort-amount-desc::before { +.um .fa-sort-amount-desc::before, +.um-icon-within .fa-sort-amount-desc::before { content: "\f884"; } -.um .fa-sort-amount-down-alt::before { +.um .fa-sort-amount-down-alt::before, +.um-icon-within .fa-sort-amount-down-alt::before { content: "\f884"; } -.um .fa-less-than::before { +.um .fa-less-than::before, +.um-icon-within .fa-less-than::before { content: "\<"; } -.um .fa-angle-down::before { +.um .fa-angle-down::before, +.um-icon-within .fa-angle-down::before { content: "\f107"; } -.um .fa-car-tunnel::before { +.um .fa-car-tunnel::before, +.um-icon-within .fa-car-tunnel::before { content: "\e4de"; } -.um .fa-head-side-cough::before { +.um .fa-head-side-cough::before, +.um-icon-within .fa-head-side-cough::before { content: "\e061"; } -.um .fa-grip-lines::before { +.um .fa-grip-lines::before, +.um-icon-within .fa-grip-lines::before { content: "\f7a4"; } -.um .fa-thumbs-down::before { +.um .fa-thumbs-down::before, +.um-icon-within .fa-thumbs-down::before { content: "\f165"; } -.um .fa-user-lock::before { +.um .fa-user-lock::before, +.um-icon-within .fa-user-lock::before { content: "\f502"; } -.um .fa-arrow-right-long::before { +.um .fa-arrow-right-long::before, +.um-icon-within .fa-arrow-right-long::before { content: "\f178"; } -.um .fa-long-arrow-right::before { +.um .fa-long-arrow-right::before, +.um-icon-within .fa-long-arrow-right::before { content: "\f178"; } -.um .fa-anchor-circle-xmark::before { +.um .fa-anchor-circle-xmark::before, +.um-icon-within .fa-anchor-circle-xmark::before { content: "\e4ac"; } -.um .fa-ellipsis::before { +.um .fa-ellipsis::before, +.um-icon-within .fa-ellipsis::before { content: "\f141"; } -.um .fa-ellipsis-h::before { +.um .fa-ellipsis-h::before, +.um-icon-within .fa-ellipsis-h::before { content: "\f141"; } -.um .fa-chess-pawn::before { +.um .fa-chess-pawn::before, +.um-icon-within .fa-chess-pawn::before { content: "\f443"; } -.um .fa-kit-medical::before { +.um .fa-kit-medical::before, +.um-icon-within .fa-kit-medical::before { content: "\f479"; } -.um .fa-first-aid::before { +.um .fa-first-aid::before, +.um-icon-within .fa-first-aid::before { content: "\f479"; } -.um .fa-person-through-window::before { +.um .fa-person-through-window::before, +.um-icon-within .fa-person-through-window::before { content: "\e5a9"; } -.um .fa-toolbox::before { +.um .fa-toolbox::before, +.um-icon-within .fa-toolbox::before { content: "\f552"; } -.um .fa-hands-holding-circle::before { +.um .fa-hands-holding-circle::before, +.um-icon-within .fa-hands-holding-circle::before { content: "\e4fb"; } -.um .fa-bug::before { +.um .fa-bug::before, +.um-icon-within .fa-bug::before { content: "\f188"; } -.um .fa-credit-card::before { +.um .fa-credit-card::before, +.um-icon-within .fa-credit-card::before { content: "\f09d"; } -.um .fa-credit-card-alt::before { +.um .fa-credit-card-alt::before, +.um-icon-within .fa-credit-card-alt::before { content: "\f09d"; } -.um .fa-car::before { +.um .fa-car::before, +.um-icon-within .fa-car::before { content: "\f1b9"; } -.um .fa-automobile::before { +.um .fa-automobile::before, +.um-icon-within .fa-automobile::before { content: "\f1b9"; } -.um .fa-hand-holding-hand::before { +.um .fa-hand-holding-hand::before, +.um-icon-within .fa-hand-holding-hand::before { content: "\e4f7"; } -.um .fa-book-open-reader::before { +.um .fa-book-open-reader::before, +.um-icon-within .fa-book-open-reader::before { content: "\f5da"; } -.um .fa-book-reader::before { +.um .fa-book-reader::before, +.um-icon-within .fa-book-reader::before { content: "\f5da"; } -.um .fa-mountain-sun::before { +.um .fa-mountain-sun::before, +.um-icon-within .fa-mountain-sun::before { content: "\e52f"; } -.um .fa-arrows-left-right-to-line::before { +.um .fa-arrows-left-right-to-line::before, +.um-icon-within .fa-arrows-left-right-to-line::before { content: "\e4ba"; } -.um .fa-dice-d20::before { +.um .fa-dice-d20::before, +.um-icon-within .fa-dice-d20::before { content: "\f6cf"; } -.um .fa-truck-droplet::before { +.um .fa-truck-droplet::before, +.um-icon-within .fa-truck-droplet::before { content: "\e58c"; } -.um .fa-file-circle-xmark::before { +.um .fa-file-circle-xmark::before, +.um-icon-within .fa-file-circle-xmark::before { content: "\e5a1"; } -.um .fa-temperature-arrow-up::before { +.um .fa-temperature-arrow-up::before, +.um-icon-within .fa-temperature-arrow-up::before { content: "\e040"; } -.um .fa-temperature-up::before { +.um .fa-temperature-up::before, +.um-icon-within .fa-temperature-up::before { content: "\e040"; } -.um .fa-medal::before { +.um .fa-medal::before, +.um-icon-within .fa-medal::before { content: "\f5a2"; } -.um .fa-bed::before { +.um .fa-bed::before, +.um-icon-within .fa-bed::before { content: "\f236"; } -.um .fa-square-h::before { +.um .fa-square-h::before, +.um-icon-within .fa-square-h::before { content: "\f0fd"; } -.um .fa-h-square::before { +.um .fa-h-square::before, +.um-icon-within .fa-h-square::before { content: "\f0fd"; } -.um .fa-podcast::before { +.um .fa-podcast::before, +.um-icon-within .fa-podcast::before { content: "\f2ce"; } -.um .fa-temperature-full::before { +.um .fa-temperature-full::before, +.um-icon-within .fa-temperature-full::before { content: "\f2c7"; } -.um .fa-temperature-4::before { +.um .fa-temperature-4::before, +.um-icon-within .fa-temperature-4::before { content: "\f2c7"; } -.um .fa-thermometer-4::before { +.um .fa-thermometer-4::before, +.um-icon-within .fa-thermometer-4::before { content: "\f2c7"; } -.um .fa-thermometer-full::before { +.um .fa-thermometer-full::before, +.um-icon-within .fa-thermometer-full::before { content: "\f2c7"; } -.um .fa-bell::before { +.um .fa-bell::before, +.um-icon-within .fa-bell::before { content: "\f0f3"; } -.um .fa-superscript::before { +.um .fa-superscript::before, +.um-icon-within .fa-superscript::before { content: "\f12b"; } -.um .fa-plug-circle-xmark::before { +.um .fa-plug-circle-xmark::before, +.um-icon-within .fa-plug-circle-xmark::before { content: "\e560"; } -.um .fa-star-of-life::before { +.um .fa-star-of-life::before, +.um-icon-within .fa-star-of-life::before { content: "\f621"; } -.um .fa-phone-slash::before { +.um .fa-phone-slash::before, +.um-icon-within .fa-phone-slash::before { content: "\f3dd"; } -.um .fa-paint-roller::before { +.um .fa-paint-roller::before, +.um-icon-within .fa-paint-roller::before { content: "\f5aa"; } -.um .fa-handshake-angle::before { +.um .fa-handshake-angle::before, +.um-icon-within .fa-handshake-angle::before { content: "\f4c4"; } -.um .fa-hands-helping::before { +.um .fa-hands-helping::before, +.um-icon-within .fa-hands-helping::before { content: "\f4c4"; } -.um .fa-location-dot::before { +.um .fa-location-dot::before, +.um-icon-within .fa-location-dot::before { content: "\f3c5"; } -.um .fa-map-marker-alt::before { +.um .fa-map-marker-alt::before, +.um-icon-within .fa-map-marker-alt::before { content: "\f3c5"; } -.um .fa-file::before { +.um .fa-file::before, +.um-icon-within .fa-file::before { content: "\f15b"; } -.um .fa-greater-than::before { +.um .fa-greater-than::before, +.um-icon-within .fa-greater-than::before { content: "\>"; } -.um .fa-person-swimming::before { +.um .fa-person-swimming::before, +.um-icon-within .fa-person-swimming::before { content: "\f5c4"; } -.um .fa-swimmer::before { +.um .fa-swimmer::before, +.um-icon-within .fa-swimmer::before { content: "\f5c4"; } -.um .fa-arrow-down::before { +.um .fa-arrow-down::before, +.um-icon-within .fa-arrow-down::before { content: "\f063"; } -.um .fa-droplet::before { +.um .fa-droplet::before, +.um-icon-within .fa-droplet::before { content: "\f043"; } -.um .fa-tint::before { +.um .fa-tint::before, +.um-icon-within .fa-tint::before { content: "\f043"; } -.um .fa-eraser::before { +.um .fa-eraser::before, +.um-icon-within .fa-eraser::before { content: "\f12d"; } -.um .fa-earth-americas::before { +.um .fa-earth-americas::before, +.um-icon-within .fa-earth-americas::before { content: "\f57d"; } -.um .fa-earth::before { +.um .fa-earth::before, +.um-icon-within .fa-earth::before { content: "\f57d"; } -.um .fa-earth-america::before { +.um .fa-earth-america::before, +.um-icon-within .fa-earth-america::before { content: "\f57d"; } -.um .fa-globe-americas::before { +.um .fa-globe-americas::before, +.um-icon-within .fa-globe-americas::before { content: "\f57d"; } -.um .fa-person-burst::before { +.um .fa-person-burst::before, +.um-icon-within .fa-person-burst::before { content: "\e53b"; } -.um .fa-dove::before { +.um .fa-dove::before, +.um-icon-within .fa-dove::before { content: "\f4ba"; } -.um .fa-battery-empty::before { +.um .fa-battery-empty::before, +.um-icon-within .fa-battery-empty::before { content: "\f244"; } -.um .fa-battery-0::before { +.um .fa-battery-0::before, +.um-icon-within .fa-battery-0::before { content: "\f244"; } -.um .fa-socks::before { +.um .fa-socks::before, +.um-icon-within .fa-socks::before { content: "\f696"; } -.um .fa-inbox::before { +.um .fa-inbox::before, +.um-icon-within .fa-inbox::before { content: "\f01c"; } -.um .fa-section::before { +.um .fa-section::before, +.um-icon-within .fa-section::before { content: "\e447"; } -.um .fa-gauge-high::before { +.um .fa-gauge-high::before, +.um-icon-within .fa-gauge-high::before { content: "\f625"; } -.um .fa-tachometer-alt::before { +.um .fa-tachometer-alt::before, +.um-icon-within .fa-tachometer-alt::before { content: "\f625"; } -.um .fa-tachometer-alt-fast::before { +.um .fa-tachometer-alt-fast::before, +.um-icon-within .fa-tachometer-alt-fast::before { content: "\f625"; } -.um .fa-envelope-open-text::before { +.um .fa-envelope-open-text::before, +.um-icon-within .fa-envelope-open-text::before { content: "\f658"; } -.um .fa-hospital::before { +.um .fa-hospital::before, +.um-icon-within .fa-hospital::before { content: "\f0f8"; } -.um .fa-hospital-alt::before { +.um .fa-hospital-alt::before, +.um-icon-within .fa-hospital-alt::before { content: "\f0f8"; } -.um .fa-hospital-wide::before { +.um .fa-hospital-wide::before, +.um-icon-within .fa-hospital-wide::before { content: "\f0f8"; } -.um .fa-wine-bottle::before { +.um .fa-wine-bottle::before, +.um-icon-within .fa-wine-bottle::before { content: "\f72f"; } -.um .fa-chess-rook::before { +.um .fa-chess-rook::before, +.um-icon-within .fa-chess-rook::before { content: "\f447"; } -.um .fa-bars-staggered::before { +.um .fa-bars-staggered::before, +.um-icon-within .fa-bars-staggered::before { content: "\f550"; } -.um .fa-reorder::before { +.um .fa-reorder::before, +.um-icon-within .fa-reorder::before { content: "\f550"; } -.um .fa-stream::before { +.um .fa-stream::before, +.um-icon-within .fa-stream::before { content: "\f550"; } -.um .fa-dharmachakra::before { +.um .fa-dharmachakra::before, +.um-icon-within .fa-dharmachakra::before { content: "\f655"; } -.um .fa-hotdog::before { +.um .fa-hotdog::before, +.um-icon-within .fa-hotdog::before { content: "\f80f"; } -.um .fa-person-walking-with-cane::before { +.um .fa-person-walking-with-cane::before, +.um-icon-within .fa-person-walking-with-cane::before { content: "\f29d"; } -.um .fa-blind::before { +.um .fa-blind::before, +.um-icon-within .fa-blind::before { content: "\f29d"; } -.um .fa-drum::before { +.um .fa-drum::before, +.um-icon-within .fa-drum::before { content: "\f569"; } -.um .fa-ice-cream::before { +.um .fa-ice-cream::before, +.um-icon-within .fa-ice-cream::before { content: "\f810"; } -.um .fa-heart-circle-bolt::before { +.um .fa-heart-circle-bolt::before, +.um-icon-within .fa-heart-circle-bolt::before { content: "\e4fc"; } -.um .fa-fax::before { +.um .fa-fax::before, +.um-icon-within .fa-fax::before { content: "\f1ac"; } -.um .fa-paragraph::before { +.um .fa-paragraph::before, +.um-icon-within .fa-paragraph::before { content: "\f1dd"; } -.um .fa-check-to-slot::before { +.um .fa-check-to-slot::before, +.um-icon-within .fa-check-to-slot::before { content: "\f772"; } -.um .fa-vote-yea::before { +.um .fa-vote-yea::before, +.um-icon-within .fa-vote-yea::before { content: "\f772"; } -.um .fa-star-half::before { +.um .fa-star-half::before, +.um-icon-within .fa-star-half::before { content: "\f089"; } -.um .fa-boxes-stacked::before { +.um .fa-boxes-stacked::before, +.um-icon-within .fa-boxes-stacked::before { content: "\f468"; } -.um .fa-boxes::before { +.um .fa-boxes::before, +.um-icon-within .fa-boxes::before { content: "\f468"; } -.um .fa-boxes-alt::before { +.um .fa-boxes-alt::before, +.um-icon-within .fa-boxes-alt::before { content: "\f468"; } -.um .fa-link::before { +.um .fa-link::before, +.um-icon-within .fa-link::before { content: "\f0c1"; } -.um .fa-chain::before { +.um .fa-chain::before, +.um-icon-within .fa-chain::before { content: "\f0c1"; } -.um .fa-ear-listen::before { +.um .fa-ear-listen::before, +.um-icon-within .fa-ear-listen::before { content: "\f2a2"; } -.um .fa-assistive-listening-systems::before { +.um .fa-assistive-listening-systems::before, +.um-icon-within .fa-assistive-listening-systems::before { content: "\f2a2"; } -.um .fa-tree-city::before { +.um .fa-tree-city::before, +.um-icon-within .fa-tree-city::before { content: "\e587"; } -.um .fa-play::before { +.um .fa-play::before, +.um-icon-within .fa-play::before { content: "\f04b"; } -.um .fa-font::before { +.um .fa-font::before, +.um-icon-within .fa-font::before { content: "\f031"; } -.um .fa-table-cells-row-lock::before { +.um .fa-table-cells-row-lock::before, +.um-icon-within .fa-table-cells-row-lock::before { content: "\e67a"; } -.um .fa-rupiah-sign::before { +.um .fa-rupiah-sign::before, +.um-icon-within .fa-rupiah-sign::before { content: "\e23d"; } -.um .fa-magnifying-glass::before { +.um .fa-magnifying-glass::before, +.um-icon-within .fa-magnifying-glass::before { content: "\f002"; } -.um .fa-search::before { +.um .fa-search::before, +.um-icon-within .fa-search::before { content: "\f002"; } -.um .fa-table-tennis-paddle-ball::before { +.um .fa-table-tennis-paddle-ball::before, +.um-icon-within .fa-table-tennis-paddle-ball::before { content: "\f45d"; } -.um .fa-ping-pong-paddle-ball::before { +.um .fa-ping-pong-paddle-ball::before, +.um-icon-within .fa-ping-pong-paddle-ball::before { content: "\f45d"; } -.um .fa-table-tennis::before { +.um .fa-table-tennis::before, +.um-icon-within .fa-table-tennis::before { content: "\f45d"; } -.um .fa-person-dots-from-line::before { +.um .fa-person-dots-from-line::before, +.um-icon-within .fa-person-dots-from-line::before { content: "\f470"; } -.um .fa-diagnoses::before { +.um .fa-diagnoses::before, +.um-icon-within .fa-diagnoses::before { content: "\f470"; } -.um .fa-trash-can-arrow-up::before { +.um .fa-trash-can-arrow-up::before, +.um-icon-within .fa-trash-can-arrow-up::before { content: "\f82a"; } -.um .fa-trash-restore-alt::before { +.um .fa-trash-restore-alt::before, +.um-icon-within .fa-trash-restore-alt::before { content: "\f82a"; } -.um .fa-naira-sign::before { +.um .fa-naira-sign::before, +.um-icon-within .fa-naira-sign::before { content: "\e1f6"; } -.um .fa-cart-arrow-down::before { +.um .fa-cart-arrow-down::before, +.um-icon-within .fa-cart-arrow-down::before { content: "\f218"; } -.um .fa-walkie-talkie::before { +.um .fa-walkie-talkie::before, +.um-icon-within .fa-walkie-talkie::before { content: "\f8ef"; } -.um .fa-file-pen::before { +.um .fa-file-pen::before, +.um-icon-within .fa-file-pen::before { content: "\f31c"; } -.um .fa-file-edit::before { +.um .fa-file-edit::before, +.um-icon-within .fa-file-edit::before { content: "\f31c"; } -.um .fa-receipt::before { +.um .fa-receipt::before, +.um-icon-within .fa-receipt::before { content: "\f543"; } -.um .fa-square-pen::before { +.um .fa-square-pen::before, +.um-icon-within .fa-square-pen::before { content: "\f14b"; } -.um .fa-pen-square::before { +.um .fa-pen-square::before, +.um-icon-within .fa-pen-square::before { content: "\f14b"; } -.um .fa-pencil-square::before { +.um .fa-pencil-square::before, +.um-icon-within .fa-pencil-square::before { content: "\f14b"; } -.um .fa-suitcase-rolling::before { +.um .fa-suitcase-rolling::before, +.um-icon-within .fa-suitcase-rolling::before { content: "\f5c1"; } -.um .fa-person-circle-exclamation::before { +.um .fa-person-circle-exclamation::before, +.um-icon-within .fa-person-circle-exclamation::before { content: "\e53f"; } -.um .fa-chevron-down::before { +.um .fa-chevron-down::before, +.um-icon-within .fa-chevron-down::before { content: "\f078"; } -.um .fa-battery-full::before { +.um .fa-battery-full::before, +.um-icon-within .fa-battery-full::before { content: "\f240"; } -.um .fa-battery::before { +.um .fa-battery::before, +.um-icon-within .fa-battery::before { content: "\f240"; } -.um .fa-battery-5::before { +.um .fa-battery-5::before, +.um-icon-within .fa-battery-5::before { content: "\f240"; } -.um .fa-skull-crossbones::before { +.um .fa-skull-crossbones::before, +.um-icon-within .fa-skull-crossbones::before { content: "\f714"; } -.um .fa-code-compare::before { +.um .fa-code-compare::before, +.um-icon-within .fa-code-compare::before { content: "\e13a"; } -.um .fa-list-ul::before { +.um .fa-list-ul::before, +.um-icon-within .fa-list-ul::before { content: "\f0ca"; } -.um .fa-list-dots::before { +.um .fa-list-dots::before, +.um-icon-within .fa-list-dots::before { content: "\f0ca"; } -.um .fa-school-lock::before { +.um .fa-school-lock::before, +.um-icon-within .fa-school-lock::before { content: "\e56f"; } -.um .fa-tower-cell::before { +.um .fa-tower-cell::before, +.um-icon-within .fa-tower-cell::before { content: "\e585"; } -.um .fa-down-long::before { +.um .fa-down-long::before, +.um-icon-within .fa-down-long::before { content: "\f309"; } -.um .fa-long-arrow-alt-down::before { +.um .fa-long-arrow-alt-down::before, +.um-icon-within .fa-long-arrow-alt-down::before { content: "\f309"; } -.um .fa-ranking-star::before { +.um .fa-ranking-star::before, +.um-icon-within .fa-ranking-star::before { content: "\e561"; } -.um .fa-chess-king::before { +.um .fa-chess-king::before, +.um-icon-within .fa-chess-king::before { content: "\f43f"; } -.um .fa-person-harassing::before { +.um .fa-person-harassing::before, +.um-icon-within .fa-person-harassing::before { content: "\e549"; } -.um .fa-brazilian-real-sign::before { +.um .fa-brazilian-real-sign::before, +.um-icon-within .fa-brazilian-real-sign::before { content: "\e46c"; } -.um .fa-landmark-dome::before { +.um .fa-landmark-dome::before, +.um-icon-within .fa-landmark-dome::before { content: "\f752"; } -.um .fa-landmark-alt::before { +.um .fa-landmark-alt::before, +.um-icon-within .fa-landmark-alt::before { content: "\f752"; } -.um .fa-arrow-up::before { +.um .fa-arrow-up::before, +.um-icon-within .fa-arrow-up::before { content: "\f062"; } -.um .fa-tv::before { +.um .fa-tv::before, +.um-icon-within .fa-tv::before { content: "\f26c"; } -.um .fa-television::before { +.um .fa-television::before, +.um-icon-within .fa-television::before { content: "\f26c"; } -.um .fa-tv-alt::before { +.um .fa-tv-alt::before, +.um-icon-within .fa-tv-alt::before { content: "\f26c"; } -.um .fa-shrimp::before { +.um .fa-shrimp::before, +.um-icon-within .fa-shrimp::before { content: "\e448"; } -.um .fa-list-check::before { +.um .fa-list-check::before, +.um-icon-within .fa-list-check::before { content: "\f0ae"; } -.um .fa-tasks::before { +.um .fa-tasks::before, +.um-icon-within .fa-tasks::before { content: "\f0ae"; } -.um .fa-jug-detergent::before { +.um .fa-jug-detergent::before, +.um-icon-within .fa-jug-detergent::before { content: "\e519"; } -.um .fa-circle-user::before { +.um .fa-circle-user::before, +.um-icon-within .fa-circle-user::before { content: "\f2bd"; } -.um .fa-user-circle::before { +.um .fa-user-circle::before, +.um-icon-within .fa-user-circle::before { content: "\f2bd"; } -.um .fa-user-shield::before { +.um .fa-user-shield::before, +.um-icon-within .fa-user-shield::before { content: "\f505"; } -.um .fa-wind::before { +.um .fa-wind::before, +.um-icon-within .fa-wind::before { content: "\f72e"; } -.um .fa-car-burst::before { +.um .fa-car-burst::before, +.um-icon-within .fa-car-burst::before { content: "\f5e1"; } -.um .fa-car-crash::before { +.um .fa-car-crash::before, +.um-icon-within .fa-car-crash::before { content: "\f5e1"; } -.um .fa-y::before { +.um .fa-y::before, +.um-icon-within .fa-y::before { content: "Y"; } -.um .fa-person-snowboarding::before { +.um .fa-person-snowboarding::before, +.um-icon-within .fa-person-snowboarding::before { content: "\f7ce"; } -.um .fa-snowboarding::before { +.um .fa-snowboarding::before, +.um-icon-within .fa-snowboarding::before { content: "\f7ce"; } -.um .fa-truck-fast::before { +.um .fa-truck-fast::before, +.um-icon-within .fa-truck-fast::before { content: "\f48b"; } -.um .fa-shipping-fast::before { +.um .fa-shipping-fast::before, +.um-icon-within .fa-shipping-fast::before { content: "\f48b"; } -.um .fa-fish::before { +.um .fa-fish::before, +.um-icon-within .fa-fish::before { content: "\f578"; } -.um .fa-user-graduate::before { +.um .fa-user-graduate::before, +.um-icon-within .fa-user-graduate::before { content: "\f501"; } -.um .fa-circle-half-stroke::before { +.um .fa-circle-half-stroke::before, +.um-icon-within .fa-circle-half-stroke::before { content: "\f042"; } -.um .fa-adjust::before { +.um .fa-adjust::before, +.um-icon-within .fa-adjust::before { content: "\f042"; } -.um .fa-clapperboard::before { +.um .fa-clapperboard::before, +.um-icon-within .fa-clapperboard::before { content: "\e131"; } -.um .fa-circle-radiation::before { +.um .fa-circle-radiation::before, +.um-icon-within .fa-circle-radiation::before { content: "\f7ba"; } -.um .fa-radiation-alt::before { +.um .fa-radiation-alt::before, +.um-icon-within .fa-radiation-alt::before { content: "\f7ba"; } -.um .fa-baseball::before { +.um .fa-baseball::before, +.um-icon-within .fa-baseball::before { content: "\f433"; } -.um .fa-baseball-ball::before { +.um .fa-baseball-ball::before, +.um-icon-within .fa-baseball-ball::before { content: "\f433"; } -.um .fa-jet-fighter-up::before { +.um .fa-jet-fighter-up::before, +.um-icon-within .fa-jet-fighter-up::before { content: "\e518"; } -.um .fa-diagram-project::before { +.um .fa-diagram-project::before, +.um-icon-within .fa-diagram-project::before { content: "\f542"; } -.um .fa-project-diagram::before { +.um .fa-project-diagram::before, +.um-icon-within .fa-project-diagram::before { content: "\f542"; } -.um .fa-copy::before { +.um .fa-copy::before, +.um-icon-within .fa-copy::before { content: "\f0c5"; } -.um .fa-volume-xmark::before { +.um .fa-volume-xmark::before, +.um-icon-within .fa-volume-xmark::before { content: "\f6a9"; } -.um .fa-volume-mute::before { +.um .fa-volume-mute::before, +.um-icon-within .fa-volume-mute::before { content: "\f6a9"; } -.um .fa-volume-times::before { +.um .fa-volume-times::before, +.um-icon-within .fa-volume-times::before { content: "\f6a9"; } -.um .fa-hand-sparkles::before { +.um .fa-hand-sparkles::before, +.um-icon-within .fa-hand-sparkles::before { content: "\e05d"; } -.um .fa-grip::before { +.um .fa-grip::before, +.um-icon-within .fa-grip::before { content: "\f58d"; } -.um .fa-grip-horizontal::before { +.um .fa-grip-horizontal::before, +.um-icon-within .fa-grip-horizontal::before { content: "\f58d"; } -.um .fa-share-from-square::before { +.um .fa-share-from-square::before, +.um-icon-within .fa-share-from-square::before { content: "\f14d"; } -.um .fa-share-square::before { +.um .fa-share-square::before, +.um-icon-within .fa-share-square::before { content: "\f14d"; } -.um .fa-child-combatant::before { +.um .fa-child-combatant::before, +.um-icon-within .fa-child-combatant::before { content: "\e4e0"; } -.um .fa-child-rifle::before { +.um .fa-child-rifle::before, +.um-icon-within .fa-child-rifle::before { content: "\e4e0"; } -.um .fa-gun::before { +.um .fa-gun::before, +.um-icon-within .fa-gun::before { content: "\e19b"; } -.um .fa-square-phone::before { +.um .fa-square-phone::before, +.um-icon-within .fa-square-phone::before { content: "\f098"; } -.um .fa-phone-square::before { +.um .fa-phone-square::before, +.um-icon-within .fa-phone-square::before { content: "\f098"; } -.um .fa-plus::before { +.um .fa-plus::before, +.um-icon-within .fa-plus::before { content: "\+"; } -.um .fa-add::before { +.um .fa-add::before, +.um-icon-within .fa-add::before { content: "\+"; } -.um .fa-expand::before { +.um .fa-expand::before, +.um-icon-within .fa-expand::before { content: "\f065"; } -.um .fa-computer::before { +.um .fa-computer::before, +.um-icon-within .fa-computer::before { content: "\e4e5"; } -.um .fa-xmark::before { +.um .fa-xmark::before, +.um-icon-within .fa-xmark::before { content: "\f00d"; } -.um .fa-close::before { +.um .fa-close::before, +.um-icon-within .fa-close::before { content: "\f00d"; } -.um .fa-multiply::before { +.um .fa-multiply::before, +.um-icon-within .fa-multiply::before { content: "\f00d"; } -.um .fa-remove::before { +.um .fa-remove::before, +.um-icon-within .fa-remove::before { content: "\f00d"; } -.um .fa-times::before { +.um .fa-times::before, +.um-icon-within .fa-times::before { content: "\f00d"; } -.um .fa-arrows-up-down-left-right::before { +.um .fa-arrows-up-down-left-right::before, +.um-icon-within .fa-arrows-up-down-left-right::before { content: "\f047"; } -.um .fa-arrows::before { +.um .fa-arrows::before, +.um-icon-within .fa-arrows::before { content: "\f047"; } -.um .fa-chalkboard-user::before { +.um .fa-chalkboard-user::before, +.um-icon-within .fa-chalkboard-user::before { content: "\f51c"; } -.um .fa-chalkboard-teacher::before { +.um .fa-chalkboard-teacher::before, +.um-icon-within .fa-chalkboard-teacher::before { content: "\f51c"; } -.um .fa-peso-sign::before { +.um .fa-peso-sign::before, +.um-icon-within .fa-peso-sign::before { content: "\e222"; } -.um .fa-building-shield::before { +.um .fa-building-shield::before, +.um-icon-within .fa-building-shield::before { content: "\e4d8"; } -.um .fa-baby::before { +.um .fa-baby::before, +.um-icon-within .fa-baby::before { content: "\f77c"; } -.um .fa-users-line::before { +.um .fa-users-line::before, +.um-icon-within .fa-users-line::before { content: "\e592"; } -.um .fa-quote-left::before { +.um .fa-quote-left::before, +.um-icon-within .fa-quote-left::before { content: "\f10d"; } -.um .fa-quote-left-alt::before { +.um .fa-quote-left-alt::before, +.um-icon-within .fa-quote-left-alt::before { content: "\f10d"; } -.um .fa-tractor::before { +.um .fa-tractor::before, +.um-icon-within .fa-tractor::before { content: "\f722"; } -.um .fa-trash-arrow-up::before { +.um .fa-trash-arrow-up::before, +.um-icon-within .fa-trash-arrow-up::before { content: "\f829"; } -.um .fa-trash-restore::before { +.um .fa-trash-restore::before, +.um-icon-within .fa-trash-restore::before { content: "\f829"; } -.um .fa-arrow-down-up-lock::before { +.um .fa-arrow-down-up-lock::before, +.um-icon-within .fa-arrow-down-up-lock::before { content: "\e4b0"; } -.um .fa-lines-leaning::before { +.um .fa-lines-leaning::before, +.um-icon-within .fa-lines-leaning::before { content: "\e51e"; } -.um .fa-ruler-combined::before { +.um .fa-ruler-combined::before, +.um-icon-within .fa-ruler-combined::before { content: "\f546"; } -.um .fa-copyright::before { +.um .fa-copyright::before, +.um-icon-within .fa-copyright::before { content: "\f1f9"; } -.um .fa-equals::before { +.um .fa-equals::before, +.um-icon-within .fa-equals::before { content: "\="; } -.um .fa-blender::before { +.um .fa-blender::before, +.um-icon-within .fa-blender::before { content: "\f517"; } -.um .fa-teeth::before { +.um .fa-teeth::before, +.um-icon-within .fa-teeth::before { content: "\f62e"; } -.um .fa-shekel-sign::before { +.um .fa-shekel-sign::before, +.um-icon-within .fa-shekel-sign::before { content: "\f20b"; } -.um .fa-ils::before { +.um .fa-ils::before, +.um-icon-within .fa-ils::before { content: "\f20b"; } -.um .fa-shekel::before { +.um .fa-shekel::before, +.um-icon-within .fa-shekel::before { content: "\f20b"; } -.um .fa-sheqel::before { +.um .fa-sheqel::before, +.um-icon-within .fa-sheqel::before { content: "\f20b"; } -.um .fa-sheqel-sign::before { +.um .fa-sheqel-sign::before, +.um-icon-within .fa-sheqel-sign::before { content: "\f20b"; } -.um .fa-map::before { +.um .fa-map::before, +.um-icon-within .fa-map::before { content: "\f279"; } -.um .fa-rocket::before { +.um .fa-rocket::before, +.um-icon-within .fa-rocket::before { content: "\f135"; } -.um .fa-photo-film::before { +.um .fa-photo-film::before, +.um-icon-within .fa-photo-film::before { content: "\f87c"; } -.um .fa-photo-video::before { +.um .fa-photo-video::before, +.um-icon-within .fa-photo-video::before { content: "\f87c"; } -.um .fa-folder-minus::before { +.um .fa-folder-minus::before, +.um-icon-within .fa-folder-minus::before { content: "\f65d"; } -.um .fa-store::before { +.um .fa-store::before, +.um-icon-within .fa-store::before { content: "\f54e"; } -.um .fa-arrow-trend-up::before { +.um .fa-arrow-trend-up::before, +.um-icon-within .fa-arrow-trend-up::before { content: "\e098"; } -.um .fa-plug-circle-minus::before { +.um .fa-plug-circle-minus::before, +.um-icon-within .fa-plug-circle-minus::before { content: "\e55e"; } -.um .fa-sign-hanging::before { +.um .fa-sign-hanging::before, +.um-icon-within .fa-sign-hanging::before { content: "\f4d9"; } -.um .fa-sign::before { +.um .fa-sign::before, +.um-icon-within .fa-sign::before { content: "\f4d9"; } -.um .fa-bezier-curve::before { +.um .fa-bezier-curve::before, +.um-icon-within .fa-bezier-curve::before { content: "\f55b"; } -.um .fa-bell-slash::before { +.um .fa-bell-slash::before, +.um-icon-within .fa-bell-slash::before { content: "\f1f6"; } -.um .fa-tablet::before { +.um .fa-tablet::before, +.um-icon-within .fa-tablet::before { content: "\f3fb"; } -.um .fa-tablet-android::before { +.um .fa-tablet-android::before, +.um-icon-within .fa-tablet-android::before { content: "\f3fb"; } -.um .fa-school-flag::before { +.um .fa-school-flag::before, +.um-icon-within .fa-school-flag::before { content: "\e56e"; } -.um .fa-fill::before { +.um .fa-fill::before, +.um-icon-within .fa-fill::before { content: "\f575"; } -.um .fa-angle-up::before { +.um .fa-angle-up::before, +.um-icon-within .fa-angle-up::before { content: "\f106"; } -.um .fa-drumstick-bite::before { +.um .fa-drumstick-bite::before, +.um-icon-within .fa-drumstick-bite::before { content: "\f6d7"; } -.um .fa-holly-berry::before { +.um .fa-holly-berry::before, +.um-icon-within .fa-holly-berry::before { content: "\f7aa"; } -.um .fa-chevron-left::before { +.um .fa-chevron-left::before, +.um-icon-within .fa-chevron-left::before { content: "\f053"; } -.um .fa-bacteria::before { +.um .fa-bacteria::before, +.um-icon-within .fa-bacteria::before { content: "\e059"; } -.um .fa-hand-lizard::before { +.um .fa-hand-lizard::before, +.um-icon-within .fa-hand-lizard::before { content: "\f258"; } -.um .fa-notdef::before { +.um .fa-notdef::before, +.um-icon-within .fa-notdef::before { content: "\e1fe"; } -.um .fa-disease::before { +.um .fa-disease::before, +.um-icon-within .fa-disease::before { content: "\f7fa"; } -.um .fa-briefcase-medical::before { +.um .fa-briefcase-medical::before, +.um-icon-within .fa-briefcase-medical::before { content: "\f469"; } -.um .fa-genderless::before { +.um .fa-genderless::before, +.um-icon-within .fa-genderless::before { content: "\f22d"; } -.um .fa-chevron-right::before { +.um .fa-chevron-right::before, +.um-icon-within .fa-chevron-right::before { content: "\f054"; } -.um .fa-retweet::before { +.um .fa-retweet::before, +.um-icon-within .fa-retweet::before { content: "\f079"; } -.um .fa-car-rear::before { +.um .fa-car-rear::before, +.um-icon-within .fa-car-rear::before { content: "\f5de"; } -.um .fa-car-alt::before { +.um .fa-car-alt::before, +.um-icon-within .fa-car-alt::before { content: "\f5de"; } -.um .fa-pump-soap::before { +.um .fa-pump-soap::before, +.um-icon-within .fa-pump-soap::before { content: "\e06b"; } -.um .fa-video-slash::before { +.um .fa-video-slash::before, +.um-icon-within .fa-video-slash::before { content: "\f4e2"; } -.um .fa-battery-quarter::before { +.um .fa-battery-quarter::before, +.um-icon-within .fa-battery-quarter::before { content: "\f243"; } -.um .fa-battery-2::before { +.um .fa-battery-2::before, +.um-icon-within .fa-battery-2::before { content: "\f243"; } -.um .fa-radio::before { +.um .fa-radio::before, +.um-icon-within .fa-radio::before { content: "\f8d7"; } -.um .fa-baby-carriage::before { +.um .fa-baby-carriage::before, +.um-icon-within .fa-baby-carriage::before { content: "\f77d"; } -.um .fa-carriage-baby::before { +.um .fa-carriage-baby::before, +.um-icon-within .fa-carriage-baby::before { content: "\f77d"; } -.um .fa-traffic-light::before { +.um .fa-traffic-light::before, +.um-icon-within .fa-traffic-light::before { content: "\f637"; } -.um .fa-thermometer::before { +.um .fa-thermometer::before, +.um-icon-within .fa-thermometer::before { content: "\f491"; } -.um .fa-vr-cardboard::before { +.um .fa-vr-cardboard::before, +.um-icon-within .fa-vr-cardboard::before { content: "\f729"; } -.um .fa-hand-middle-finger::before { +.um .fa-hand-middle-finger::before, +.um-icon-within .fa-hand-middle-finger::before { content: "\f806"; } -.um .fa-percent::before { +.um .fa-percent::before, +.um-icon-within .fa-percent::before { content: "\%"; } -.um .fa-percentage::before { +.um .fa-percentage::before, +.um-icon-within .fa-percentage::before { content: "\%"; } -.um .fa-truck-moving::before { +.um .fa-truck-moving::before, +.um-icon-within .fa-truck-moving::before { content: "\f4df"; } -.um .fa-glass-water-droplet::before { +.um .fa-glass-water-droplet::before, +.um-icon-within .fa-glass-water-droplet::before { content: "\e4f5"; } -.um .fa-display::before { +.um .fa-display::before, +.um-icon-within .fa-display::before { content: "\e163"; } -.um .fa-face-smile::before { +.um .fa-face-smile::before, +.um-icon-within .fa-face-smile::before { content: "\f118"; } -.um .fa-smile::before { +.um .fa-smile::before, +.um-icon-within .fa-smile::before { content: "\f118"; } -.um .fa-thumbtack::before { +.um .fa-thumbtack::before, +.um-icon-within .fa-thumbtack::before { content: "\f08d"; } -.um .fa-thumb-tack::before { +.um .fa-thumb-tack::before, +.um-icon-within .fa-thumb-tack::before { content: "\f08d"; } -.um .fa-trophy::before { +.um .fa-trophy::before, +.um-icon-within .fa-trophy::before { content: "\f091"; } -.um .fa-person-praying::before { +.um .fa-person-praying::before, +.um-icon-within .fa-person-praying::before { content: "\f683"; } -.um .fa-pray::before { +.um .fa-pray::before, +.um-icon-within .fa-pray::before { content: "\f683"; } -.um .fa-hammer::before { +.um .fa-hammer::before, +.um-icon-within .fa-hammer::before { content: "\f6e3"; } -.um .fa-hand-peace::before { +.um .fa-hand-peace::before, +.um-icon-within .fa-hand-peace::before { content: "\f25b"; } -.um .fa-rotate::before { +.um .fa-rotate::before, +.um-icon-within .fa-rotate::before { content: "\f2f1"; } -.um .fa-sync-alt::before { +.um .fa-sync-alt::before, +.um-icon-within .fa-sync-alt::before { content: "\f2f1"; } -.um .fa-spinner::before { +.um .fa-spinner::before, +.um-icon-within .fa-spinner::before { content: "\f110"; } -.um .fa-robot::before { +.um .fa-robot::before, +.um-icon-within .fa-robot::before { content: "\f544"; } -.um .fa-peace::before { +.um .fa-peace::before, +.um-icon-within .fa-peace::before { content: "\f67c"; } -.um .fa-gears::before { +.um .fa-gears::before, +.um-icon-within .fa-gears::before { content: "\f085"; } -.um .fa-cogs::before { +.um .fa-cogs::before, +.um-icon-within .fa-cogs::before { content: "\f085"; } -.um .fa-warehouse::before { +.um .fa-warehouse::before, +.um-icon-within .fa-warehouse::before { content: "\f494"; } -.um .fa-arrow-up-right-dots::before { +.um .fa-arrow-up-right-dots::before, +.um-icon-within .fa-arrow-up-right-dots::before { content: "\e4b7"; } -.um .fa-splotch::before { +.um .fa-splotch::before, +.um-icon-within .fa-splotch::before { content: "\f5bc"; } -.um .fa-face-grin-hearts::before { +.um .fa-face-grin-hearts::before, +.um-icon-within .fa-face-grin-hearts::before { content: "\f584"; } -.um .fa-grin-hearts::before { +.um .fa-grin-hearts::before, +.um-icon-within .fa-grin-hearts::before { content: "\f584"; } -.um .fa-dice-four::before { +.um .fa-dice-four::before, +.um-icon-within .fa-dice-four::before { content: "\f524"; } -.um .fa-sim-card::before { +.um .fa-sim-card::before, +.um-icon-within .fa-sim-card::before { content: "\f7c4"; } -.um .fa-transgender::before { +.um .fa-transgender::before, +.um-icon-within .fa-transgender::before { content: "\f225"; } -.um .fa-transgender-alt::before { +.um .fa-transgender-alt::before, +.um-icon-within .fa-transgender-alt::before { content: "\f225"; } -.um .fa-mercury::before { +.um .fa-mercury::before, +.um-icon-within .fa-mercury::before { content: "\f223"; } -.um .fa-arrow-turn-down::before { +.um .fa-arrow-turn-down::before, +.um-icon-within .fa-arrow-turn-down::before { content: "\f149"; } -.um .fa-level-down::before { +.um .fa-level-down::before, +.um-icon-within .fa-level-down::before { content: "\f149"; } -.um .fa-person-falling-burst::before { +.um .fa-person-falling-burst::before, +.um-icon-within .fa-person-falling-burst::before { content: "\e547"; } -.um .fa-award::before { +.um .fa-award::before, +.um-icon-within .fa-award::before { content: "\f559"; } -.um .fa-ticket-simple::before { +.um .fa-ticket-simple::before, +.um-icon-within .fa-ticket-simple::before { content: "\f3ff"; } -.um .fa-ticket-alt::before { +.um .fa-ticket-alt::before, +.um-icon-within .fa-ticket-alt::before { content: "\f3ff"; } -.um .fa-building::before { +.um .fa-building::before, +.um-icon-within .fa-building::before { content: "\f1ad"; } -.um .fa-angles-left::before { +.um .fa-angles-left::before, +.um-icon-within .fa-angles-left::before { content: "\f100"; } -.um .fa-angle-double-left::before { +.um .fa-angle-double-left::before, +.um-icon-within .fa-angle-double-left::before { content: "\f100"; } -.um .fa-qrcode::before { +.um .fa-qrcode::before, +.um-icon-within .fa-qrcode::before { content: "\f029"; } -.um .fa-clock-rotate-left::before { +.um .fa-clock-rotate-left::before, +.um-icon-within .fa-clock-rotate-left::before { content: "\f1da"; } -.um .fa-history::before { +.um .fa-history::before, +.um-icon-within .fa-history::before { content: "\f1da"; } -.um .fa-face-grin-beam-sweat::before { +.um .fa-face-grin-beam-sweat::before, +.um-icon-within .fa-face-grin-beam-sweat::before { content: "\f583"; } -.um .fa-grin-beam-sweat::before { +.um .fa-grin-beam-sweat::before, +.um-icon-within .fa-grin-beam-sweat::before { content: "\f583"; } -.um .fa-file-export::before { +.um .fa-file-export::before, +.um-icon-within .fa-file-export::before { content: "\f56e"; } -.um .fa-arrow-right-from-file::before { +.um .fa-arrow-right-from-file::before, +.um-icon-within .fa-arrow-right-from-file::before { content: "\f56e"; } -.um .fa-shield::before { +.um .fa-shield::before, +.um-icon-within .fa-shield::before { content: "\f132"; } -.um .fa-shield-blank::before { +.um .fa-shield-blank::before, +.um-icon-within .fa-shield-blank::before { content: "\f132"; } -.um .fa-arrow-up-short-wide::before { +.um .fa-arrow-up-short-wide::before, +.um-icon-within .fa-arrow-up-short-wide::before { content: "\f885"; } -.um .fa-sort-amount-up-alt::before { +.um .fa-sort-amount-up-alt::before, +.um-icon-within .fa-sort-amount-up-alt::before { content: "\f885"; } -.um .fa-house-medical::before { +.um .fa-house-medical::before, +.um-icon-within .fa-house-medical::before { content: "\e3b2"; } -.um .fa-golf-ball-tee::before { +.um .fa-golf-ball-tee::before, +.um-icon-within .fa-golf-ball-tee::before { content: "\f450"; } -.um .fa-golf-ball::before { +.um .fa-golf-ball::before, +.um-icon-within .fa-golf-ball::before { content: "\f450"; } -.um .fa-circle-chevron-left::before { +.um .fa-circle-chevron-left::before, +.um-icon-within .fa-circle-chevron-left::before { content: "\f137"; } -.um .fa-chevron-circle-left::before { +.um .fa-chevron-circle-left::before, +.um-icon-within .fa-chevron-circle-left::before { content: "\f137"; } -.um .fa-house-chimney-window::before { +.um .fa-house-chimney-window::before, +.um-icon-within .fa-house-chimney-window::before { content: "\e00d"; } -.um .fa-pen-nib::before { +.um .fa-pen-nib::before, +.um-icon-within .fa-pen-nib::before { content: "\f5ad"; } -.um .fa-tent-arrow-turn-left::before { +.um .fa-tent-arrow-turn-left::before, +.um-icon-within .fa-tent-arrow-turn-left::before { content: "\e580"; } -.um .fa-tents::before { +.um .fa-tents::before, +.um-icon-within .fa-tents::before { content: "\e582"; } -.um .fa-wand-magic::before { +.um .fa-wand-magic::before, +.um-icon-within .fa-wand-magic::before { content: "\f0d0"; } -.um .fa-magic::before { +.um .fa-magic::before, +.um-icon-within .fa-magic::before { content: "\f0d0"; } -.um .fa-dog::before { +.um .fa-dog::before, +.um-icon-within .fa-dog::before { content: "\f6d3"; } -.um .fa-carrot::before { +.um .fa-carrot::before, +.um-icon-within .fa-carrot::before { content: "\f787"; } -.um .fa-moon::before { +.um .fa-moon::before, +.um-icon-within .fa-moon::before { content: "\f186"; } -.um .fa-wine-glass-empty::before { +.um .fa-wine-glass-empty::before, +.um-icon-within .fa-wine-glass-empty::before { content: "\f5ce"; } -.um .fa-wine-glass-alt::before { +.um .fa-wine-glass-alt::before, +.um-icon-within .fa-wine-glass-alt::before { content: "\f5ce"; } -.um .fa-cheese::before { +.um .fa-cheese::before, +.um-icon-within .fa-cheese::before { content: "\f7ef"; } -.um .fa-yin-yang::before { +.um .fa-yin-yang::before, +.um-icon-within .fa-yin-yang::before { content: "\f6ad"; } -.um .fa-music::before { +.um .fa-music::before, +.um-icon-within .fa-music::before { content: "\f001"; } -.um .fa-code-commit::before { +.um .fa-code-commit::before, +.um-icon-within .fa-code-commit::before { content: "\f386"; } -.um .fa-temperature-low::before { +.um .fa-temperature-low::before, +.um-icon-within .fa-temperature-low::before { content: "\f76b"; } -.um .fa-person-biking::before { +.um .fa-person-biking::before, +.um-icon-within .fa-person-biking::before { content: "\f84a"; } -.um .fa-biking::before { +.um .fa-biking::before, +.um-icon-within .fa-biking::before { content: "\f84a"; } -.um .fa-broom::before { +.um .fa-broom::before, +.um-icon-within .fa-broom::before { content: "\f51a"; } -.um .fa-shield-heart::before { +.um .fa-shield-heart::before, +.um-icon-within .fa-shield-heart::before { content: "\e574"; } -.um .fa-gopuram::before { +.um .fa-gopuram::before, +.um-icon-within .fa-gopuram::before { content: "\f664"; } -.um .fa-earth-oceania::before { +.um .fa-earth-oceania::before, +.um-icon-within .fa-earth-oceania::before { content: "\e47b"; } -.um .fa-globe-oceania::before { +.um .fa-globe-oceania::before, +.um-icon-within .fa-globe-oceania::before { content: "\e47b"; } -.um .fa-square-xmark::before { +.um .fa-square-xmark::before, +.um-icon-within .fa-square-xmark::before { content: "\f2d3"; } -.um .fa-times-square::before { +.um .fa-times-square::before, +.um-icon-within .fa-times-square::before { content: "\f2d3"; } -.um .fa-xmark-square::before { +.um .fa-xmark-square::before, +.um-icon-within .fa-xmark-square::before { content: "\f2d3"; } -.um .fa-hashtag::before { +.um .fa-hashtag::before, +.um-icon-within .fa-hashtag::before { content: "\#"; } -.um .fa-up-right-and-down-left-from-center::before { +.um .fa-up-right-and-down-left-from-center::before, +.um-icon-within .fa-up-right-and-down-left-from-center::before { content: "\f424"; } -.um .fa-expand-alt::before { +.um .fa-expand-alt::before, +.um-icon-within .fa-expand-alt::before { content: "\f424"; } -.um .fa-oil-can::before { +.um .fa-oil-can::before, +.um-icon-within .fa-oil-can::before { content: "\f613"; } -.um .fa-t::before { +.um .fa-t::before, +.um-icon-within .fa-t::before { content: "T"; } -.um .fa-hippo::before { +.um .fa-hippo::before, +.um-icon-within .fa-hippo::before { content: "\f6ed"; } -.um .fa-chart-column::before { +.um .fa-chart-column::before, +.um-icon-within .fa-chart-column::before { content: "\e0e3"; } -.um .fa-infinity::before { +.um .fa-infinity::before, +.um-icon-within .fa-infinity::before { content: "\f534"; } -.um .fa-vial-circle-check::before { +.um .fa-vial-circle-check::before, +.um-icon-within .fa-vial-circle-check::before { content: "\e596"; } -.um .fa-person-arrow-down-to-line::before { +.um .fa-person-arrow-down-to-line::before, +.um-icon-within .fa-person-arrow-down-to-line::before { content: "\e538"; } -.um .fa-voicemail::before { +.um .fa-voicemail::before, +.um-icon-within .fa-voicemail::before { content: "\f897"; } -.um .fa-fan::before { +.um .fa-fan::before, +.um-icon-within .fa-fan::before { content: "\f863"; } -.um .fa-person-walking-luggage::before { +.um .fa-person-walking-luggage::before, +.um-icon-within .fa-person-walking-luggage::before { content: "\e554"; } -.um .fa-up-down::before { +.um .fa-up-down::before, +.um-icon-within .fa-up-down::before { content: "\f338"; } -.um .fa-arrows-alt-v::before { +.um .fa-arrows-alt-v::before, +.um-icon-within .fa-arrows-alt-v::before { content: "\f338"; } -.um .fa-cloud-moon-rain::before { +.um .fa-cloud-moon-rain::before, +.um-icon-within .fa-cloud-moon-rain::before { content: "\f73c"; } -.um .fa-calendar::before { +.um .fa-calendar::before, +.um-icon-within .fa-calendar::before { content: "\f133"; } -.um .fa-trailer::before { +.um .fa-trailer::before, +.um-icon-within .fa-trailer::before { content: "\e041"; } -.um .fa-bahai::before { +.um .fa-bahai::before, +.um-icon-within .fa-bahai::before { content: "\f666"; } -.um .fa-haykal::before { +.um .fa-haykal::before, +.um-icon-within .fa-haykal::before { content: "\f666"; } -.um .fa-sd-card::before { +.um .fa-sd-card::before, +.um-icon-within .fa-sd-card::before { content: "\f7c2"; } -.um .fa-dragon::before { +.um .fa-dragon::before, +.um-icon-within .fa-dragon::before { content: "\f6d5"; } -.um .fa-shoe-prints::before { +.um .fa-shoe-prints::before, +.um-icon-within .fa-shoe-prints::before { content: "\f54b"; } -.um .fa-circle-plus::before { +.um .fa-circle-plus::before, +.um-icon-within .fa-circle-plus::before { content: "\f055"; } -.um .fa-plus-circle::before { +.um .fa-plus-circle::before, +.um-icon-within .fa-plus-circle::before { content: "\f055"; } -.um .fa-face-grin-tongue-wink::before { +.um .fa-face-grin-tongue-wink::before, +.um-icon-within .fa-face-grin-tongue-wink::before { content: "\f58b"; } -.um .fa-grin-tongue-wink::before { +.um .fa-grin-tongue-wink::before, +.um-icon-within .fa-grin-tongue-wink::before { content: "\f58b"; } -.um .fa-hand-holding::before { +.um .fa-hand-holding::before, +.um-icon-within .fa-hand-holding::before { content: "\f4bd"; } -.um .fa-plug-circle-exclamation::before { +.um .fa-plug-circle-exclamation::before, +.um-icon-within .fa-plug-circle-exclamation::before { content: "\e55d"; } -.um .fa-link-slash::before { +.um .fa-link-slash::before, +.um-icon-within .fa-link-slash::before { content: "\f127"; } -.um .fa-chain-broken::before { +.um .fa-chain-broken::before, +.um-icon-within .fa-chain-broken::before { content: "\f127"; } -.um .fa-chain-slash::before { +.um .fa-chain-slash::before, +.um-icon-within .fa-chain-slash::before { content: "\f127"; } -.um .fa-unlink::before { +.um .fa-unlink::before, +.um-icon-within .fa-unlink::before { content: "\f127"; } -.um .fa-clone::before { +.um .fa-clone::before, +.um-icon-within .fa-clone::before { content: "\f24d"; } -.um .fa-person-walking-arrow-loop-left::before { +.um .fa-person-walking-arrow-loop-left::before, +.um-icon-within .fa-person-walking-arrow-loop-left::before { content: "\e551"; } -.um .fa-arrow-up-z-a::before { +.um .fa-arrow-up-z-a::before, +.um-icon-within .fa-arrow-up-z-a::before { content: "\f882"; } -.um .fa-sort-alpha-up-alt::before { +.um .fa-sort-alpha-up-alt::before, +.um-icon-within .fa-sort-alpha-up-alt::before { content: "\f882"; } -.um .fa-fire-flame-curved::before { +.um .fa-fire-flame-curved::before, +.um-icon-within .fa-fire-flame-curved::before { content: "\f7e4"; } -.um .fa-fire-alt::before { +.um .fa-fire-alt::before, +.um-icon-within .fa-fire-alt::before { content: "\f7e4"; } -.um .fa-tornado::before { +.um .fa-tornado::before, +.um-icon-within .fa-tornado::before { content: "\f76f"; } -.um .fa-file-circle-plus::before { +.um .fa-file-circle-plus::before, +.um-icon-within .fa-file-circle-plus::before { content: "\e494"; } -.um .fa-book-quran::before { +.um .fa-book-quran::before, +.um-icon-within .fa-book-quran::before { content: "\f687"; } -.um .fa-quran::before { +.um .fa-quran::before, +.um-icon-within .fa-quran::before { content: "\f687"; } -.um .fa-anchor::before { +.um .fa-anchor::before, +.um-icon-within .fa-anchor::before { content: "\f13d"; } -.um .fa-border-all::before { +.um .fa-border-all::before, +.um-icon-within .fa-border-all::before { content: "\f84c"; } -.um .fa-face-angry::before { +.um .fa-face-angry::before, +.um-icon-within .fa-face-angry::before { content: "\f556"; } -.um .fa-angry::before { +.um .fa-angry::before, +.um-icon-within .fa-angry::before { content: "\f556"; } -.um .fa-cookie-bite::before { +.um .fa-cookie-bite::before, +.um-icon-within .fa-cookie-bite::before { content: "\f564"; } -.um .fa-arrow-trend-down::before { +.um .fa-arrow-trend-down::before, +.um-icon-within .fa-arrow-trend-down::before { content: "\e097"; } -.um .fa-rss::before { +.um .fa-rss::before, +.um-icon-within .fa-rss::before { content: "\f09e"; } -.um .fa-feed::before { +.um .fa-feed::before, +.um-icon-within .fa-feed::before { content: "\f09e"; } -.um .fa-draw-polygon::before { +.um .fa-draw-polygon::before, +.um-icon-within .fa-draw-polygon::before { content: "\f5ee"; } -.um .fa-scale-balanced::before { +.um .fa-scale-balanced::before, +.um-icon-within .fa-scale-balanced::before { content: "\f24e"; } -.um .fa-balance-scale::before { +.um .fa-balance-scale::before, +.um-icon-within .fa-balance-scale::before { content: "\f24e"; } -.um .fa-gauge-simple-high::before { +.um .fa-gauge-simple-high::before, +.um-icon-within .fa-gauge-simple-high::before { content: "\f62a"; } -.um .fa-tachometer::before { +.um .fa-tachometer::before, +.um-icon-within .fa-tachometer::before { content: "\f62a"; } -.um .fa-tachometer-fast::before { +.um .fa-tachometer-fast::before, +.um-icon-within .fa-tachometer-fast::before { content: "\f62a"; } -.um .fa-shower::before { +.um .fa-shower::before, +.um-icon-within .fa-shower::before { content: "\f2cc"; } -.um .fa-desktop::before { +.um .fa-desktop::before, +.um-icon-within .fa-desktop::before { content: "\f390"; } -.um .fa-desktop-alt::before { +.um .fa-desktop-alt::before, +.um-icon-within .fa-desktop-alt::before { content: "\f390"; } -.um .fa-m::before { +.um .fa-m::before, +.um-icon-within .fa-m::before { content: "M"; } -.um .fa-table-list::before { +.um .fa-table-list::before, +.um-icon-within .fa-table-list::before { content: "\f00b"; } -.um .fa-th-list::before { +.um .fa-th-list::before, +.um-icon-within .fa-th-list::before { content: "\f00b"; } -.um .fa-comment-sms::before { +.um .fa-comment-sms::before, +.um-icon-within .fa-comment-sms::before { content: "\f7cd"; } -.um .fa-sms::before { +.um .fa-sms::before, +.um-icon-within .fa-sms::before { content: "\f7cd"; } -.um .fa-book::before { +.um .fa-book::before, +.um-icon-within .fa-book::before { content: "\f02d"; } -.um .fa-user-plus::before { +.um .fa-user-plus::before, +.um-icon-within .fa-user-plus::before { content: "\f234"; } -.um .fa-check::before { +.um .fa-check::before, +.um-icon-within .fa-check::before { content: "\f00c"; } -.um .fa-battery-three-quarters::before { +.um .fa-battery-three-quarters::before, +.um-icon-within .fa-battery-three-quarters::before { content: "\f241"; } -.um .fa-battery-4::before { +.um .fa-battery-4::before, +.um-icon-within .fa-battery-4::before { content: "\f241"; } -.um .fa-house-circle-check::before { +.um .fa-house-circle-check::before, +.um-icon-within .fa-house-circle-check::before { content: "\e509"; } -.um .fa-angle-left::before { +.um .fa-angle-left::before, +.um-icon-within .fa-angle-left::before { content: "\f104"; } -.um .fa-diagram-successor::before { +.um .fa-diagram-successor::before, +.um-icon-within .fa-diagram-successor::before { content: "\e47a"; } -.um .fa-truck-arrow-right::before { +.um .fa-truck-arrow-right::before, +.um-icon-within .fa-truck-arrow-right::before { content: "\e58b"; } -.um .fa-arrows-split-up-and-left::before { +.um .fa-arrows-split-up-and-left::before, +.um-icon-within .fa-arrows-split-up-and-left::before { content: "\e4bc"; } -.um .fa-hand-fist::before { +.um .fa-hand-fist::before, +.um-icon-within .fa-hand-fist::before { content: "\f6de"; } -.um .fa-fist-raised::before { +.um .fa-fist-raised::before, +.um-icon-within .fa-fist-raised::before { content: "\f6de"; } -.um .fa-cloud-moon::before { +.um .fa-cloud-moon::before, +.um-icon-within .fa-cloud-moon::before { content: "\f6c3"; } -.um .fa-briefcase::before { +.um .fa-briefcase::before, +.um-icon-within .fa-briefcase::before { content: "\f0b1"; } -.um .fa-person-falling::before { +.um .fa-person-falling::before, +.um-icon-within .fa-person-falling::before { content: "\e546"; } -.um .fa-image-portrait::before { +.um .fa-image-portrait::before, +.um-icon-within .fa-image-portrait::before { content: "\f3e0"; } -.um .fa-portrait::before { +.um .fa-portrait::before, +.um-icon-within .fa-portrait::before { content: "\f3e0"; } -.um .fa-user-tag::before { +.um .fa-user-tag::before, +.um-icon-within .fa-user-tag::before { content: "\f507"; } -.um .fa-rug::before { +.um .fa-rug::before, +.um-icon-within .fa-rug::before { content: "\e569"; } -.um .fa-earth-europe::before { +.um .fa-earth-europe::before, +.um-icon-within .fa-earth-europe::before { content: "\f7a2"; } -.um .fa-globe-europe::before { +.um .fa-globe-europe::before, +.um-icon-within .fa-globe-europe::before { content: "\f7a2"; } -.um .fa-cart-flatbed-suitcase::before { +.um .fa-cart-flatbed-suitcase::before, +.um-icon-within .fa-cart-flatbed-suitcase::before { content: "\f59d"; } -.um .fa-luggage-cart::before { +.um .fa-luggage-cart::before, +.um-icon-within .fa-luggage-cart::before { content: "\f59d"; } -.um .fa-rectangle-xmark::before { +.um .fa-rectangle-xmark::before, +.um-icon-within .fa-rectangle-xmark::before { content: "\f410"; } -.um .fa-rectangle-times::before { +.um .fa-rectangle-times::before, +.um-icon-within .fa-rectangle-times::before { content: "\f410"; } -.um .fa-times-rectangle::before { +.um .fa-times-rectangle::before, +.um-icon-within .fa-times-rectangle::before { content: "\f410"; } -.um .fa-window-close::before { +.um .fa-window-close::before, +.um-icon-within .fa-window-close::before { content: "\f410"; } -.um .fa-baht-sign::before { +.um .fa-baht-sign::before, +.um-icon-within .fa-baht-sign::before { content: "\e0ac"; } -.um .fa-book-open::before { +.um .fa-book-open::before, +.um-icon-within .fa-book-open::before { content: "\f518"; } -.um .fa-book-journal-whills::before { +.um .fa-book-journal-whills::before, +.um-icon-within .fa-book-journal-whills::before { content: "\f66a"; } -.um .fa-journal-whills::before { +.um .fa-journal-whills::before, +.um-icon-within .fa-journal-whills::before { content: "\f66a"; } -.um .fa-handcuffs::before { +.um .fa-handcuffs::before, +.um-icon-within .fa-handcuffs::before { content: "\e4f8"; } -.um .fa-triangle-exclamation::before { +.um .fa-triangle-exclamation::before, +.um-icon-within .fa-triangle-exclamation::before { content: "\f071"; } -.um .fa-exclamation-triangle::before { +.um .fa-exclamation-triangle::before, +.um-icon-within .fa-exclamation-triangle::before { content: "\f071"; } -.um .fa-warning::before { +.um .fa-warning::before, +.um-icon-within .fa-warning::before { content: "\f071"; } -.um .fa-database::before { +.um .fa-database::before, +.um-icon-within .fa-database::before { content: "\f1c0"; } -.um .fa-share::before { +.um .fa-share::before, +.um-icon-within .fa-share::before { content: "\f064"; } -.um .fa-mail-forward::before { +.um .fa-mail-forward::before, +.um-icon-within .fa-mail-forward::before { content: "\f064"; } -.um .fa-bottle-droplet::before { +.um .fa-bottle-droplet::before, +.um-icon-within .fa-bottle-droplet::before { content: "\e4c4"; } -.um .fa-mask-face::before { +.um .fa-mask-face::before, +.um-icon-within .fa-mask-face::before { content: "\e1d7"; } -.um .fa-hill-rockslide::before { +.um .fa-hill-rockslide::before, +.um-icon-within .fa-hill-rockslide::before { content: "\e508"; } -.um .fa-right-left::before { +.um .fa-right-left::before, +.um-icon-within .fa-right-left::before { content: "\f362"; } -.um .fa-exchange-alt::before { +.um .fa-exchange-alt::before, +.um-icon-within .fa-exchange-alt::before { content: "\f362"; } -.um .fa-paper-plane::before { +.um .fa-paper-plane::before, +.um-icon-within .fa-paper-plane::before { content: "\f1d8"; } -.um .fa-road-circle-exclamation::before { +.um .fa-road-circle-exclamation::before, +.um-icon-within .fa-road-circle-exclamation::before { content: "\e565"; } -.um .fa-dungeon::before { +.um .fa-dungeon::before, +.um-icon-within .fa-dungeon::before { content: "\f6d9"; } -.um .fa-align-right::before { +.um .fa-align-right::before, +.um-icon-within .fa-align-right::before { content: "\f038"; } -.um .fa-money-bill-1-wave::before { +.um .fa-money-bill-1-wave::before, +.um-icon-within .fa-money-bill-1-wave::before { content: "\f53b"; } -.um .fa-money-bill-wave-alt::before { +.um .fa-money-bill-wave-alt::before, +.um-icon-within .fa-money-bill-wave-alt::before { content: "\f53b"; } -.um .fa-life-ring::before { +.um .fa-life-ring::before, +.um-icon-within .fa-life-ring::before { content: "\f1cd"; } -.um .fa-hands::before { +.um .fa-hands::before, +.um-icon-within .fa-hands::before { content: "\f2a7"; } -.um .fa-sign-language::before { +.um .fa-sign-language::before, +.um-icon-within .fa-sign-language::before { content: "\f2a7"; } -.um .fa-signing::before { +.um .fa-signing::before, +.um-icon-within .fa-signing::before { content: "\f2a7"; } -.um .fa-calendar-day::before { +.um .fa-calendar-day::before, +.um-icon-within .fa-calendar-day::before { content: "\f783"; } -.um .fa-water-ladder::before { +.um .fa-water-ladder::before, +.um-icon-within .fa-water-ladder::before { content: "\f5c5"; } -.um .fa-ladder-water::before { +.um .fa-ladder-water::before, +.um-icon-within .fa-ladder-water::before { content: "\f5c5"; } -.um .fa-swimming-pool::before { +.um .fa-swimming-pool::before, +.um-icon-within .fa-swimming-pool::before { content: "\f5c5"; } -.um .fa-arrows-up-down::before { +.um .fa-arrows-up-down::before, +.um-icon-within .fa-arrows-up-down::before { content: "\f07d"; } -.um .fa-arrows-v::before { +.um .fa-arrows-v::before, +.um-icon-within .fa-arrows-v::before { content: "\f07d"; } -.um .fa-face-grimace::before { +.um .fa-face-grimace::before, +.um-icon-within .fa-face-grimace::before { content: "\f57f"; } -.um .fa-grimace::before { +.um .fa-grimace::before, +.um-icon-within .fa-grimace::before { content: "\f57f"; } -.um .fa-wheelchair-move::before { +.um .fa-wheelchair-move::before, +.um-icon-within .fa-wheelchair-move::before { content: "\e2ce"; } -.um .fa-wheelchair-alt::before { +.um .fa-wheelchair-alt::before, +.um-icon-within .fa-wheelchair-alt::before { content: "\e2ce"; } -.um .fa-turn-down::before { +.um .fa-turn-down::before, +.um-icon-within .fa-turn-down::before { content: "\f3be"; } -.um .fa-level-down-alt::before { +.um .fa-level-down-alt::before, +.um-icon-within .fa-level-down-alt::before { content: "\f3be"; } -.um .fa-person-walking-arrow-right::before { +.um .fa-person-walking-arrow-right::before, +.um-icon-within .fa-person-walking-arrow-right::before { content: "\e552"; } -.um .fa-square-envelope::before { +.um .fa-square-envelope::before, +.um-icon-within .fa-square-envelope::before { content: "\f199"; } -.um .fa-envelope-square::before { +.um .fa-envelope-square::before, +.um-icon-within .fa-envelope-square::before { content: "\f199"; } -.um .fa-dice::before { +.um .fa-dice::before, +.um-icon-within .fa-dice::before { content: "\f522"; } -.um .fa-bowling-ball::before { +.um .fa-bowling-ball::before, +.um-icon-within .fa-bowling-ball::before { content: "\f436"; } -.um .fa-brain::before { +.um .fa-brain::before, +.um-icon-within .fa-brain::before { content: "\f5dc"; } -.um .fa-bandage::before { +.um .fa-bandage::before, +.um-icon-within .fa-bandage::before { content: "\f462"; } -.um .fa-band-aid::before { +.um .fa-band-aid::before, +.um-icon-within .fa-band-aid::before { content: "\f462"; } -.um .fa-calendar-minus::before { +.um .fa-calendar-minus::before, +.um-icon-within .fa-calendar-minus::before { content: "\f272"; } -.um .fa-circle-xmark::before { +.um .fa-circle-xmark::before, +.um-icon-within .fa-circle-xmark::before { content: "\f057"; } -.um .fa-times-circle::before { +.um .fa-times-circle::before, +.um-icon-within .fa-times-circle::before { content: "\f057"; } -.um .fa-xmark-circle::before { +.um .fa-xmark-circle::before, +.um-icon-within .fa-xmark-circle::before { content: "\f057"; } -.um .fa-gifts::before { +.um .fa-gifts::before, +.um-icon-within .fa-gifts::before { content: "\f79c"; } -.um .fa-hotel::before { +.um .fa-hotel::before, +.um-icon-within .fa-hotel::before { content: "\f594"; } -.um .fa-earth-asia::before { +.um .fa-earth-asia::before, +.um-icon-within .fa-earth-asia::before { content: "\f57e"; } -.um .fa-globe-asia::before { +.um .fa-globe-asia::before, +.um-icon-within .fa-globe-asia::before { content: "\f57e"; } -.um .fa-id-card-clip::before { +.um .fa-id-card-clip::before, +.um-icon-within .fa-id-card-clip::before { content: "\f47f"; } -.um .fa-id-card-alt::before { +.um .fa-id-card-alt::before, +.um-icon-within .fa-id-card-alt::before { content: "\f47f"; } -.um .fa-magnifying-glass-plus::before { +.um .fa-magnifying-glass-plus::before, +.um-icon-within .fa-magnifying-glass-plus::before { content: "\f00e"; } -.um .fa-search-plus::before { +.um .fa-search-plus::before, +.um-icon-within .fa-search-plus::before { content: "\f00e"; } -.um .fa-thumbs-up::before { +.um .fa-thumbs-up::before, +.um-icon-within .fa-thumbs-up::before { content: "\f164"; } -.um .fa-user-clock::before { +.um .fa-user-clock::before, +.um-icon-within .fa-user-clock::before { content: "\f4fd"; } -.um .fa-hand-dots::before { +.um .fa-hand-dots::before, +.um-icon-within .fa-hand-dots::before { content: "\f461"; } -.um .fa-allergies::before { +.um .fa-allergies::before, +.um-icon-within .fa-allergies::before { content: "\f461"; } -.um .fa-file-invoice::before { +.um .fa-file-invoice::before, +.um-icon-within .fa-file-invoice::before { content: "\f570"; } -.um .fa-window-minimize::before { +.um .fa-window-minimize::before, +.um-icon-within .fa-window-minimize::before { content: "\f2d1"; } -.um .fa-mug-saucer::before { +.um .fa-mug-saucer::before, +.um-icon-within .fa-mug-saucer::before { content: "\f0f4"; } -.um .fa-coffee::before { +.um .fa-coffee::before, +.um-icon-within .fa-coffee::before { content: "\f0f4"; } -.um .fa-brush::before { +.um .fa-brush::before, +.um-icon-within .fa-brush::before { content: "\f55d"; } -.um .fa-mask::before { +.um .fa-mask::before, +.um-icon-within .fa-mask::before { content: "\f6fa"; } -.um .fa-magnifying-glass-minus::before { +.um .fa-magnifying-glass-minus::before, +.um-icon-within .fa-magnifying-glass-minus::before { content: "\f010"; } -.um .fa-search-minus::before { +.um .fa-search-minus::before, +.um-icon-within .fa-search-minus::before { content: "\f010"; } -.um .fa-ruler-vertical::before { +.um .fa-ruler-vertical::before, +.um-icon-within .fa-ruler-vertical::before { content: "\f548"; } -.um .fa-user-large::before { +.um .fa-user-large::before, +.um-icon-within .fa-user-large::before { content: "\f406"; } -.um .fa-user-alt::before { +.um .fa-user-alt::before, +.um-icon-within .fa-user-alt::before { content: "\f406"; } -.um .fa-train-tram::before { +.um .fa-train-tram::before, +.um-icon-within .fa-train-tram::before { content: "\e5b4"; } -.um .fa-user-nurse::before { +.um .fa-user-nurse::before, +.um-icon-within .fa-user-nurse::before { content: "\f82f"; } -.um .fa-syringe::before { +.um .fa-syringe::before, +.um-icon-within .fa-syringe::before { content: "\f48e"; } -.um .fa-cloud-sun::before { +.um .fa-cloud-sun::before, +.um-icon-within .fa-cloud-sun::before { content: "\f6c4"; } -.um .fa-stopwatch-20::before { +.um .fa-stopwatch-20::before, +.um-icon-within .fa-stopwatch-20::before { content: "\e06f"; } -.um .fa-square-full::before { +.um .fa-square-full::before, +.um-icon-within .fa-square-full::before { content: "\f45c"; } -.um .fa-magnet::before { +.um .fa-magnet::before, +.um-icon-within .fa-magnet::before { content: "\f076"; } -.um .fa-jar::before { +.um .fa-jar::before, +.um-icon-within .fa-jar::before { content: "\e516"; } -.um .fa-note-sticky::before { +.um .fa-note-sticky::before, +.um-icon-within .fa-note-sticky::before { content: "\f249"; } -.um .fa-sticky-note::before { +.um .fa-sticky-note::before, +.um-icon-within .fa-sticky-note::before { content: "\f249"; } -.um .fa-bug-slash::before { +.um .fa-bug-slash::before, +.um-icon-within .fa-bug-slash::before { content: "\e490"; } -.um .fa-arrow-up-from-water-pump::before { +.um .fa-arrow-up-from-water-pump::before, +.um-icon-within .fa-arrow-up-from-water-pump::before { content: "\e4b6"; } -.um .fa-bone::before { +.um .fa-bone::before, +.um-icon-within .fa-bone::before { content: "\f5d7"; } -.um .fa-user-injured::before { +.um .fa-user-injured::before, +.um-icon-within .fa-user-injured::before { content: "\f728"; } -.um .fa-face-sad-tear::before { +.um .fa-face-sad-tear::before, +.um-icon-within .fa-face-sad-tear::before { content: "\f5b4"; } -.um .fa-sad-tear::before { +.um .fa-sad-tear::before, +.um-icon-within .fa-sad-tear::before { content: "\f5b4"; } -.um .fa-plane::before { +.um .fa-plane::before, +.um-icon-within .fa-plane::before { content: "\f072"; } -.um .fa-tent-arrows-down::before { +.um .fa-tent-arrows-down::before, +.um-icon-within .fa-tent-arrows-down::before { content: "\e581"; } -.um .fa-exclamation::before { +.um .fa-exclamation::before, +.um-icon-within .fa-exclamation::before { content: "\!"; } -.um .fa-arrows-spin::before { +.um .fa-arrows-spin::before, +.um-icon-within .fa-arrows-spin::before { content: "\e4bb"; } -.um .fa-print::before { +.um .fa-print::before, +.um-icon-within .fa-print::before { content: "\f02f"; } -.um .fa-turkish-lira-sign::before { +.um .fa-turkish-lira-sign::before, +.um-icon-within .fa-turkish-lira-sign::before { content: "\e2bb"; } -.um .fa-try::before { +.um .fa-try::before, +.um-icon-within .fa-try::before { content: "\e2bb"; } -.um .fa-turkish-lira::before { +.um .fa-turkish-lira::before, +.um-icon-within .fa-turkish-lira::before { content: "\e2bb"; } -.um .fa-dollar-sign::before { +.um .fa-dollar-sign::before, +.um-icon-within .fa-dollar-sign::before { content: "\$"; } -.um .fa-dollar::before { +.um .fa-dollar::before, +.um-icon-within .fa-dollar::before { content: "\$"; } -.um .fa-usd::before { +.um .fa-usd::before, +.um-icon-within .fa-usd::before { content: "\$"; } -.um .fa-x::before { +.um .fa-x::before, +.um-icon-within .fa-x::before { content: "X"; } -.um .fa-magnifying-glass-dollar::before { +.um .fa-magnifying-glass-dollar::before, +.um-icon-within .fa-magnifying-glass-dollar::before { content: "\f688"; } -.um .fa-search-dollar::before { +.um .fa-search-dollar::before, +.um-icon-within .fa-search-dollar::before { content: "\f688"; } -.um .fa-users-gear::before { +.um .fa-users-gear::before, +.um-icon-within .fa-users-gear::before { content: "\f509"; } -.um .fa-users-cog::before { +.um .fa-users-cog::before, +.um-icon-within .fa-users-cog::before { content: "\f509"; } -.um .fa-person-military-pointing::before { +.um .fa-person-military-pointing::before, +.um-icon-within .fa-person-military-pointing::before { content: "\e54a"; } -.um .fa-building-columns::before { +.um .fa-building-columns::before, +.um-icon-within .fa-building-columns::before { content: "\f19c"; } -.um .fa-bank::before { +.um .fa-bank::before, +.um-icon-within .fa-bank::before { content: "\f19c"; } -.um .fa-institution::before { +.um .fa-institution::before, +.um-icon-within .fa-institution::before { content: "\f19c"; } -.um .fa-museum::before { +.um .fa-museum::before, +.um-icon-within .fa-museum::before { content: "\f19c"; } -.um .fa-university::before { +.um .fa-university::before, +.um-icon-within .fa-university::before { content: "\f19c"; } -.um .fa-umbrella::before { +.um .fa-umbrella::before, +.um-icon-within .fa-umbrella::before { content: "\f0e9"; } -.um .fa-trowel::before { +.um .fa-trowel::before, +.um-icon-within .fa-trowel::before { content: "\e589"; } -.um .fa-d::before { +.um .fa-d::before, +.um-icon-within .fa-d::before { content: "D"; } -.um .fa-stapler::before { +.um .fa-stapler::before, +.um-icon-within .fa-stapler::before { content: "\e5af"; } -.um .fa-masks-theater::before { +.um .fa-masks-theater::before, +.um-icon-within .fa-masks-theater::before { content: "\f630"; } -.um .fa-theater-masks::before { +.um .fa-theater-masks::before, +.um-icon-within .fa-theater-masks::before { content: "\f630"; } -.um .fa-kip-sign::before { +.um .fa-kip-sign::before, +.um-icon-within .fa-kip-sign::before { content: "\e1c4"; } -.um .fa-hand-point-left::before { +.um .fa-hand-point-left::before, +.um-icon-within .fa-hand-point-left::before { content: "\f0a5"; } -.um .fa-handshake-simple::before { +.um .fa-handshake-simple::before, +.um-icon-within .fa-handshake-simple::before { content: "\f4c6"; } -.um .fa-handshake-alt::before { +.um .fa-handshake-alt::before, +.um-icon-within .fa-handshake-alt::before { content: "\f4c6"; } -.um .fa-jet-fighter::before { +.um .fa-jet-fighter::before, +.um-icon-within .fa-jet-fighter::before { content: "\f0fb"; } -.um .fa-fighter-jet::before { +.um .fa-fighter-jet::before, +.um-icon-within .fa-fighter-jet::before { content: "\f0fb"; } -.um .fa-square-share-nodes::before { +.um .fa-square-share-nodes::before, +.um-icon-within .fa-square-share-nodes::before { content: "\f1e1"; } -.um .fa-share-alt-square::before { +.um .fa-share-alt-square::before, +.um-icon-within .fa-share-alt-square::before { content: "\f1e1"; } -.um .fa-barcode::before { +.um .fa-barcode::before, +.um-icon-within .fa-barcode::before { content: "\f02a"; } -.um .fa-plus-minus::before { +.um .fa-plus-minus::before, +.um-icon-within .fa-plus-minus::before { content: "\e43c"; } -.um .fa-video::before { +.um .fa-video::before, +.um-icon-within .fa-video::before { content: "\f03d"; } -.um .fa-video-camera::before { +.um .fa-video-camera::before, +.um-icon-within .fa-video-camera::before { content: "\f03d"; } -.um .fa-graduation-cap::before { +.um .fa-graduation-cap::before, +.um-icon-within .fa-graduation-cap::before { content: "\f19d"; } -.um .fa-mortar-board::before { +.um .fa-mortar-board::before, +.um-icon-within .fa-mortar-board::before { content: "\f19d"; } -.um .fa-hand-holding-medical::before { +.um .fa-hand-holding-medical::before, +.um-icon-within .fa-hand-holding-medical::before { content: "\e05c"; } -.um .fa-person-circle-check::before { +.um .fa-person-circle-check::before, +.um-icon-within .fa-person-circle-check::before { content: "\e53e"; } -.um .fa-turn-up::before { +.um .fa-turn-up::before, +.um-icon-within .fa-turn-up::before { content: "\f3bf"; } -.um .fa-level-up-alt::before { +.um .fa-level-up-alt::before, +.um-icon-within .fa-level-up-alt::before { content: "\f3bf"; } .um .sr-only, -.um .fa-sr-only { +.um .fa-sr-only, +.um-icon-within .sr-only, +.um-icon-within .fa-sr-only { position: absolute; width: 1px; height: 1px; @@ -6241,7 +8269,9 @@ border-width: 0; } .um .sr-only-focusable:not(:focus), -.um .fa-sr-only-focusable:not(:focus) { +.um .fa-sr-only-focusable:not(:focus), +.um-icon-within .sr-only-focusable:not(:focus), +.um-icon-within .fa-sr-only-focusable:not(:focus) { position: absolute; width: 1px; height: 1px; @@ -6252,7 +8282,9 @@ white-space: nowrap; border-width: 0; } -.um :root, .um :host { +.um :root, .um :host, +.um-icon-within :root, +.um-icon-within :host { --fa-style-family-brands: "Font Awesome 6 Brands"; --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"; } @@ -6264,1585 +8296,2114 @@ src: url("../libs/fontawesome/webfonts/fa-brands-400.woff2") format("woff2"), url("../libs/fontawesome/webfonts/fa-brands-400.ttf") format("truetype"); } .um .fab, -.um .fa-brands { +.um .fa-brands, +.um-icon-within .fab, +.um-icon-within .fa-brands { font-weight: 400; } -.um .fa-monero:before { +.um .fa-monero:before, +.um-icon-within .fa-monero:before { content: "\f3d0"; } -.um .fa-hooli:before { +.um .fa-hooli:before, +.um-icon-within .fa-hooli:before { content: "\f427"; } -.um .fa-yelp:before { +.um .fa-yelp:before, +.um-icon-within .fa-yelp:before { content: "\f1e9"; } -.um .fa-cc-visa:before { +.um .fa-cc-visa:before, +.um-icon-within .fa-cc-visa:before { content: "\f1f0"; } -.um .fa-lastfm:before { +.um .fa-lastfm:before, +.um-icon-within .fa-lastfm:before { content: "\f202"; } -.um .fa-shopware:before { +.um .fa-shopware:before, +.um-icon-within .fa-shopware:before { content: "\f5b5"; } -.um .fa-creative-commons-nc:before { +.um .fa-creative-commons-nc:before, +.um-icon-within .fa-creative-commons-nc:before { content: "\f4e8"; } -.um .fa-aws:before { +.um .fa-aws:before, +.um-icon-within .fa-aws:before { content: "\f375"; } -.um .fa-redhat:before { +.um .fa-redhat:before, +.um-icon-within .fa-redhat:before { content: "\f7bc"; } -.um .fa-yoast:before { +.um .fa-yoast:before, +.um-icon-within .fa-yoast:before { content: "\f2b1"; } -.um .fa-cloudflare:before { +.um .fa-cloudflare:before, +.um-icon-within .fa-cloudflare:before { content: "\e07d"; } -.um .fa-ups:before { +.um .fa-ups:before, +.um-icon-within .fa-ups:before { content: "\f7e0"; } -.um .fa-pixiv:before { +.um .fa-pixiv:before, +.um-icon-within .fa-pixiv:before { content: "\e640"; } -.um .fa-wpexplorer:before { +.um .fa-wpexplorer:before, +.um-icon-within .fa-wpexplorer:before { content: "\f2de"; } -.um .fa-dyalog:before { +.um .fa-dyalog:before, +.um-icon-within .fa-dyalog:before { content: "\f399"; } -.um .fa-bity:before { +.um .fa-bity:before, +.um-icon-within .fa-bity:before { content: "\f37a"; } -.um .fa-stackpath:before { +.um .fa-stackpath:before, +.um-icon-within .fa-stackpath:before { content: "\f842"; } -.um .fa-buysellads:before { +.um .fa-buysellads:before, +.um-icon-within .fa-buysellads:before { content: "\f20d"; } -.um .fa-first-order:before { +.um .fa-first-order:before, +.um-icon-within .fa-first-order:before { content: "\f2b0"; } -.um .fa-modx:before { +.um .fa-modx:before, +.um-icon-within .fa-modx:before { content: "\f285"; } -.um .fa-guilded:before { +.um .fa-guilded:before, +.um-icon-within .fa-guilded:before { content: "\e07e"; } -.um .fa-vnv:before { +.um .fa-vnv:before, +.um-icon-within .fa-vnv:before { content: "\f40b"; } -.um .fa-square-js:before { +.um .fa-square-js:before, +.um-icon-within .fa-square-js:before { content: "\f3b9"; } -.um .fa-js-square:before { +.um .fa-js-square:before, +.um-icon-within .fa-js-square:before { content: "\f3b9"; } -.um .fa-microsoft:before { +.um .fa-microsoft:before, +.um-icon-within .fa-microsoft:before { content: "\f3ca"; } -.um .fa-qq:before { +.um .fa-qq:before, +.um-icon-within .fa-qq:before { content: "\f1d6"; } -.um .fa-orcid:before { +.um .fa-orcid:before, +.um-icon-within .fa-orcid:before { content: "\f8d2"; } -.um .fa-java:before { +.um .fa-java:before, +.um-icon-within .fa-java:before { content: "\f4e4"; } -.um .fa-invision:before { +.um .fa-invision:before, +.um-icon-within .fa-invision:before { content: "\f7b0"; } -.um .fa-creative-commons-pd-alt:before { +.um .fa-creative-commons-pd-alt:before, +.um-icon-within .fa-creative-commons-pd-alt:before { content: "\f4ed"; } -.um .fa-centercode:before { +.um .fa-centercode:before, +.um-icon-within .fa-centercode:before { content: "\f380"; } -.um .fa-glide-g:before { +.um .fa-glide-g:before, +.um-icon-within .fa-glide-g:before { content: "\f2a6"; } -.um .fa-drupal:before { +.um .fa-drupal:before, +.um-icon-within .fa-drupal:before { content: "\f1a9"; } -.um .fa-jxl:before { +.um .fa-jxl:before, +.um-icon-within .fa-jxl:before { content: "\e67b"; } -.um .fa-hire-a-helper:before { +.um .fa-hire-a-helper:before, +.um-icon-within .fa-hire-a-helper:before { content: "\f3b0"; } -.um .fa-creative-commons-by:before { +.um .fa-creative-commons-by:before, +.um-icon-within .fa-creative-commons-by:before { content: "\f4e7"; } -.um .fa-unity:before { +.um .fa-unity:before, +.um-icon-within .fa-unity:before { content: "\e049"; } -.um .fa-whmcs:before { +.um .fa-whmcs:before, +.um-icon-within .fa-whmcs:before { content: "\f40d"; } -.um .fa-rocketchat:before { +.um .fa-rocketchat:before, +.um-icon-within .fa-rocketchat:before { content: "\f3e8"; } -.um .fa-vk:before { +.um .fa-vk:before, +.um-icon-within .fa-vk:before { content: "\f189"; } -.um .fa-untappd:before { +.um .fa-untappd:before, +.um-icon-within .fa-untappd:before { content: "\f405"; } -.um .fa-mailchimp:before { +.um .fa-mailchimp:before, +.um-icon-within .fa-mailchimp:before { content: "\f59e"; } -.um .fa-css3-alt:before { +.um .fa-css3-alt:before, +.um-icon-within .fa-css3-alt:before { content: "\f38b"; } -.um .fa-square-reddit:before { +.um .fa-square-reddit:before, +.um-icon-within .fa-square-reddit:before { content: "\f1a2"; } -.um .fa-reddit-square:before { +.um .fa-reddit-square:before, +.um-icon-within .fa-reddit-square:before { content: "\f1a2"; } -.um .fa-vimeo-v:before { +.um .fa-vimeo-v:before, +.um-icon-within .fa-vimeo-v:before { content: "\f27d"; } -.um .fa-contao:before { +.um .fa-contao:before, +.um-icon-within .fa-contao:before { content: "\f26d"; } -.um .fa-square-font-awesome:before { +.um .fa-square-font-awesome:before, +.um-icon-within .fa-square-font-awesome:before { content: "\e5ad"; } -.um .fa-deskpro:before { +.um .fa-deskpro:before, +.um-icon-within .fa-deskpro:before { content: "\f38f"; } -.um .fa-brave:before { +.um .fa-brave:before, +.um-icon-within .fa-brave:before { content: "\e63c"; } -.um .fa-sistrix:before { +.um .fa-sistrix:before, +.um-icon-within .fa-sistrix:before { content: "\f3ee"; } -.um .fa-square-instagram:before { +.um .fa-square-instagram:before, +.um-icon-within .fa-square-instagram:before { content: "\e055"; } -.um .fa-instagram-square:before { +.um .fa-instagram-square:before, +.um-icon-within .fa-instagram-square:before { content: "\e055"; } -.um .fa-battle-net:before { +.um .fa-battle-net:before, +.um-icon-within .fa-battle-net:before { content: "\f835"; } -.um .fa-the-red-yeti:before { +.um .fa-the-red-yeti:before, +.um-icon-within .fa-the-red-yeti:before { content: "\f69d"; } -.um .fa-square-hacker-news:before { +.um .fa-square-hacker-news:before, +.um-icon-within .fa-square-hacker-news:before { content: "\f3af"; } -.um .fa-hacker-news-square:before { +.um .fa-hacker-news-square:before, +.um-icon-within .fa-hacker-news-square:before { content: "\f3af"; } -.um .fa-edge:before { +.um .fa-edge:before, +.um-icon-within .fa-edge:before { content: "\f282"; } -.um .fa-threads:before { +.um .fa-threads:before, +.um-icon-within .fa-threads:before { content: "\e618"; } -.um .fa-napster:before { +.um .fa-napster:before, +.um-icon-within .fa-napster:before { content: "\f3d2"; } -.um .fa-square-snapchat:before { +.um .fa-square-snapchat:before, +.um-icon-within .fa-square-snapchat:before { content: "\f2ad"; } -.um .fa-snapchat-square:before { +.um .fa-snapchat-square:before, +.um-icon-within .fa-snapchat-square:before { content: "\f2ad"; } -.um .fa-google-plus-g:before { +.um .fa-google-plus-g:before, +.um-icon-within .fa-google-plus-g:before { content: "\f0d5"; } -.um .fa-artstation:before { +.um .fa-artstation:before, +.um-icon-within .fa-artstation:before { content: "\f77a"; } -.um .fa-markdown:before { +.um .fa-markdown:before, +.um-icon-within .fa-markdown:before { content: "\f60f"; } -.um .fa-sourcetree:before { +.um .fa-sourcetree:before, +.um-icon-within .fa-sourcetree:before { content: "\f7d3"; } -.um .fa-google-plus:before { +.um .fa-google-plus:before, +.um-icon-within .fa-google-plus:before { content: "\f2b3"; } -.um .fa-diaspora:before { +.um .fa-diaspora:before, +.um-icon-within .fa-diaspora:before { content: "\f791"; } -.um .fa-foursquare:before { +.um .fa-foursquare:before, +.um-icon-within .fa-foursquare:before { content: "\f180"; } -.um .fa-stack-overflow:before { +.um .fa-stack-overflow:before, +.um-icon-within .fa-stack-overflow:before { content: "\f16c"; } -.um .fa-github-alt:before { +.um .fa-github-alt:before, +.um-icon-within .fa-github-alt:before { content: "\f113"; } -.um .fa-phoenix-squadron:before { +.um .fa-phoenix-squadron:before, +.um-icon-within .fa-phoenix-squadron:before { content: "\f511"; } -.um .fa-pagelines:before { +.um .fa-pagelines:before, +.um-icon-within .fa-pagelines:before { content: "\f18c"; } -.um .fa-algolia:before { +.um .fa-algolia:before, +.um-icon-within .fa-algolia:before { content: "\f36c"; } -.um .fa-red-river:before { +.um .fa-red-river:before, +.um-icon-within .fa-red-river:before { content: "\f3e3"; } -.um .fa-creative-commons-sa:before { +.um .fa-creative-commons-sa:before, +.um-icon-within .fa-creative-commons-sa:before { content: "\f4ef"; } -.um .fa-safari:before { +.um .fa-safari:before, +.um-icon-within .fa-safari:before { content: "\f267"; } -.um .fa-google:before { +.um .fa-google:before, +.um-icon-within .fa-google:before { content: "\f1a0"; } -.um .fa-square-font-awesome-stroke:before { +.um .fa-square-font-awesome-stroke:before, +.um-icon-within .fa-square-font-awesome-stroke:before { content: "\f35c"; } -.um .fa-font-awesome-alt:before { +.um .fa-font-awesome-alt:before, +.um-icon-within .fa-font-awesome-alt:before { content: "\f35c"; } -.um .fa-atlassian:before { +.um .fa-atlassian:before, +.um-icon-within .fa-atlassian:before { content: "\f77b"; } -.um .fa-linkedin-in:before { +.um .fa-linkedin-in:before, +.um-icon-within .fa-linkedin-in:before { content: "\f0e1"; } -.um .fa-digital-ocean:before { +.um .fa-digital-ocean:before, +.um-icon-within .fa-digital-ocean:before { content: "\f391"; } -.um .fa-nimblr:before { +.um .fa-nimblr:before, +.um-icon-within .fa-nimblr:before { content: "\f5a8"; } -.um .fa-chromecast:before { +.um .fa-chromecast:before, +.um-icon-within .fa-chromecast:before { content: "\f838"; } -.um .fa-evernote:before { +.um .fa-evernote:before, +.um-icon-within .fa-evernote:before { content: "\f839"; } -.um .fa-hacker-news:before { +.um .fa-hacker-news:before, +.um-icon-within .fa-hacker-news:before { content: "\f1d4"; } -.um .fa-creative-commons-sampling:before { +.um .fa-creative-commons-sampling:before, +.um-icon-within .fa-creative-commons-sampling:before { content: "\f4f0"; } -.um .fa-adversal:before { +.um .fa-adversal:before, +.um-icon-within .fa-adversal:before { content: "\f36a"; } -.um .fa-creative-commons:before { +.um .fa-creative-commons:before, +.um-icon-within .fa-creative-commons:before { content: "\f25e"; } -.um .fa-watchman-monitoring:before { +.um .fa-watchman-monitoring:before, +.um-icon-within .fa-watchman-monitoring:before { content: "\e087"; } -.um .fa-fonticons:before { +.um .fa-fonticons:before, +.um-icon-within .fa-fonticons:before { content: "\f280"; } -.um .fa-weixin:before { +.um .fa-weixin:before, +.um-icon-within .fa-weixin:before { content: "\f1d7"; } -.um .fa-shirtsinbulk:before { +.um .fa-shirtsinbulk:before, +.um-icon-within .fa-shirtsinbulk:before { content: "\f214"; } -.um .fa-codepen:before { +.um .fa-codepen:before, +.um-icon-within .fa-codepen:before { content: "\f1cb"; } -.um .fa-git-alt:before { +.um .fa-git-alt:before, +.um-icon-within .fa-git-alt:before { content: "\f841"; } -.um .fa-lyft:before { +.um .fa-lyft:before, +.um-icon-within .fa-lyft:before { content: "\f3c3"; } -.um .fa-rev:before { +.um .fa-rev:before, +.um-icon-within .fa-rev:before { content: "\f5b2"; } -.um .fa-windows:before { +.um .fa-windows:before, +.um-icon-within .fa-windows:before { content: "\f17a"; } -.um .fa-wizards-of-the-coast:before { +.um .fa-wizards-of-the-coast:before, +.um-icon-within .fa-wizards-of-the-coast:before { content: "\f730"; } -.um .fa-square-viadeo:before { +.um .fa-square-viadeo:before, +.um-icon-within .fa-square-viadeo:before { content: "\f2aa"; } -.um .fa-viadeo-square:before { +.um .fa-viadeo-square:before, +.um-icon-within .fa-viadeo-square:before { content: "\f2aa"; } -.um .fa-meetup:before { +.um .fa-meetup:before, +.um-icon-within .fa-meetup:before { content: "\f2e0"; } -.um .fa-centos:before { +.um .fa-centos:before, +.um-icon-within .fa-centos:before { content: "\f789"; } -.um .fa-adn:before { +.um .fa-adn:before, +.um-icon-within .fa-adn:before { content: "\f170"; } -.um .fa-cloudsmith:before { +.um .fa-cloudsmith:before, +.um-icon-within .fa-cloudsmith:before { content: "\f384"; } -.um .fa-opensuse:before { +.um .fa-opensuse:before, +.um-icon-within .fa-opensuse:before { content: "\e62b"; } -.um .fa-pied-piper-alt:before { +.um .fa-pied-piper-alt:before, +.um-icon-within .fa-pied-piper-alt:before { content: "\f1a8"; } -.um .fa-square-dribbble:before { +.um .fa-square-dribbble:before, +.um-icon-within .fa-square-dribbble:before { content: "\f397"; } -.um .fa-dribbble-square:before { +.um .fa-dribbble-square:before, +.um-icon-within .fa-dribbble-square:before { content: "\f397"; } -.um .fa-codiepie:before { +.um .fa-codiepie:before, +.um-icon-within .fa-codiepie:before { content: "\f284"; } -.um .fa-node:before { +.um .fa-node:before, +.um-icon-within .fa-node:before { content: "\f419"; } -.um .fa-mix:before { +.um .fa-mix:before, +.um-icon-within .fa-mix:before { content: "\f3cb"; } -.um .fa-steam:before { +.um .fa-steam:before, +.um-icon-within .fa-steam:before { content: "\f1b6"; } -.um .fa-cc-apple-pay:before { +.um .fa-cc-apple-pay:before, +.um-icon-within .fa-cc-apple-pay:before { content: "\f416"; } -.um .fa-scribd:before { +.um .fa-scribd:before, +.um-icon-within .fa-scribd:before { content: "\f28a"; } -.um .fa-debian:before { +.um .fa-debian:before, +.um-icon-within .fa-debian:before { content: "\e60b"; } -.um .fa-openid:before { +.um .fa-openid:before, +.um-icon-within .fa-openid:before { content: "\f19b"; } -.um .fa-instalod:before { +.um .fa-instalod:before, +.um-icon-within .fa-instalod:before { content: "\e081"; } -.um .fa-expeditedssl:before { +.um .fa-expeditedssl:before, +.um-icon-within .fa-expeditedssl:before { content: "\f23e"; } -.um .fa-sellcast:before { +.um .fa-sellcast:before, +.um-icon-within .fa-sellcast:before { content: "\f2da"; } -.um .fa-square-twitter:before { +.um .fa-square-twitter:before, +.um-icon-within .fa-square-twitter:before { content: "\f081"; } -.um .fa-twitter-square:before { +.um .fa-twitter-square:before, +.um-icon-within .fa-twitter-square:before { content: "\f081"; } -.um .fa-r-project:before { +.um .fa-r-project:before, +.um-icon-within .fa-r-project:before { content: "\f4f7"; } -.um .fa-delicious:before { +.um .fa-delicious:before, +.um-icon-within .fa-delicious:before { content: "\f1a5"; } -.um .fa-freebsd:before { +.um .fa-freebsd:before, +.um-icon-within .fa-freebsd:before { content: "\f3a4"; } -.um .fa-vuejs:before { +.um .fa-vuejs:before, +.um-icon-within .fa-vuejs:before { content: "\f41f"; } -.um .fa-accusoft:before { +.um .fa-accusoft:before, +.um-icon-within .fa-accusoft:before { content: "\f369"; } -.um .fa-ioxhost:before { +.um .fa-ioxhost:before, +.um-icon-within .fa-ioxhost:before { content: "\f208"; } -.um .fa-fonticons-fi:before { +.um .fa-fonticons-fi:before, +.um-icon-within .fa-fonticons-fi:before { content: "\f3a2"; } -.um .fa-app-store:before { +.um .fa-app-store:before, +.um-icon-within .fa-app-store:before { content: "\f36f"; } -.um .fa-cc-mastercard:before { +.um .fa-cc-mastercard:before, +.um-icon-within .fa-cc-mastercard:before { content: "\f1f1"; } -.um .fa-itunes-note:before { +.um .fa-itunes-note:before, +.um-icon-within .fa-itunes-note:before { content: "\f3b5"; } -.um .fa-golang:before { +.um .fa-golang:before, +.um-icon-within .fa-golang:before { content: "\e40f"; } -.um .fa-kickstarter:before { +.um .fa-kickstarter:before, +.um-icon-within .fa-kickstarter:before { content: "\f3bb"; } -.um .fa-square-kickstarter:before { +.um .fa-square-kickstarter:before, +.um-icon-within .fa-square-kickstarter:before { content: "\f3bb"; } -.um .fa-grav:before { +.um .fa-grav:before, +.um-icon-within .fa-grav:before { content: "\f2d6"; } -.um .fa-weibo:before { +.um .fa-weibo:before, +.um-icon-within .fa-weibo:before { content: "\f18a"; } -.um .fa-uncharted:before { +.um .fa-uncharted:before, +.um-icon-within .fa-uncharted:before { content: "\e084"; } -.um .fa-firstdraft:before { +.um .fa-firstdraft:before, +.um-icon-within .fa-firstdraft:before { content: "\f3a1"; } -.um .fa-square-youtube:before { +.um .fa-square-youtube:before, +.um-icon-within .fa-square-youtube:before { content: "\f431"; } -.um .fa-youtube-square:before { +.um .fa-youtube-square:before, +.um-icon-within .fa-youtube-square:before { content: "\f431"; } -.um .fa-wikipedia-w:before { +.um .fa-wikipedia-w:before, +.um-icon-within .fa-wikipedia-w:before { content: "\f266"; } -.um .fa-wpressr:before { +.um .fa-wpressr:before, +.um-icon-within .fa-wpressr:before { content: "\f3e4"; } -.um .fa-rendact:before { +.um .fa-rendact:before, +.um-icon-within .fa-rendact:before { content: "\f3e4"; } -.um .fa-angellist:before { +.um .fa-angellist:before, +.um-icon-within .fa-angellist:before { content: "\f209"; } -.um .fa-galactic-republic:before { +.um .fa-galactic-republic:before, +.um-icon-within .fa-galactic-republic:before { content: "\f50c"; } -.um .fa-nfc-directional:before { +.um .fa-nfc-directional:before, +.um-icon-within .fa-nfc-directional:before { content: "\e530"; } -.um .fa-skype:before { +.um .fa-skype:before, +.um-icon-within .fa-skype:before { content: "\f17e"; } -.um .fa-joget:before { +.um .fa-joget:before, +.um-icon-within .fa-joget:before { content: "\f3b7"; } -.um .fa-fedora:before { +.um .fa-fedora:before, +.um-icon-within .fa-fedora:before { content: "\f798"; } -.um .fa-stripe-s:before { +.um .fa-stripe-s:before, +.um-icon-within .fa-stripe-s:before { content: "\f42a"; } -.um .fa-meta:before { +.um .fa-meta:before, +.um-icon-within .fa-meta:before { content: "\e49b"; } -.um .fa-laravel:before { +.um .fa-laravel:before, +.um-icon-within .fa-laravel:before { content: "\f3bd"; } -.um .fa-hotjar:before { +.um .fa-hotjar:before, +.um-icon-within .fa-hotjar:before { content: "\f3b1"; } -.um .fa-bluetooth-b:before { +.um .fa-bluetooth-b:before, +.um-icon-within .fa-bluetooth-b:before { content: "\f294"; } -.um .fa-square-letterboxd:before { +.um .fa-square-letterboxd:before, +.um-icon-within .fa-square-letterboxd:before { content: "\e62e"; } -.um .fa-sticker-mule:before { +.um .fa-sticker-mule:before, +.um-icon-within .fa-sticker-mule:before { content: "\f3f7"; } -.um .fa-creative-commons-zero:before { +.um .fa-creative-commons-zero:before, +.um-icon-within .fa-creative-commons-zero:before { content: "\f4f3"; } -.um .fa-hips:before { +.um .fa-hips:before, +.um-icon-within .fa-hips:before { content: "\f452"; } -.um .fa-behance:before { +.um .fa-behance:before, +.um-icon-within .fa-behance:before { content: "\f1b4"; } -.um .fa-reddit:before { +.um .fa-reddit:before, +.um-icon-within .fa-reddit:before { content: "\f1a1"; } -.um .fa-discord:before { +.um .fa-discord:before, +.um-icon-within .fa-discord:before { content: "\f392"; } -.um .fa-chrome:before { +.um .fa-chrome:before, +.um-icon-within .fa-chrome:before { content: "\f268"; } -.um .fa-app-store-ios:before { +.um .fa-app-store-ios:before, +.um-icon-within .fa-app-store-ios:before { content: "\f370"; } -.um .fa-cc-discover:before { +.um .fa-cc-discover:before, +.um-icon-within .fa-cc-discover:before { content: "\f1f2"; } -.um .fa-wpbeginner:before { +.um .fa-wpbeginner:before, +.um-icon-within .fa-wpbeginner:before { content: "\f297"; } -.um .fa-confluence:before { +.um .fa-confluence:before, +.um-icon-within .fa-confluence:before { content: "\f78d"; } -.um .fa-shoelace:before { +.um .fa-shoelace:before, +.um-icon-within .fa-shoelace:before { content: "\e60c"; } -.um .fa-mdb:before { +.um .fa-mdb:before, +.um-icon-within .fa-mdb:before { content: "\f8ca"; } -.um .fa-dochub:before { +.um .fa-dochub:before, +.um-icon-within .fa-dochub:before { content: "\f394"; } -.um .fa-accessible-icon:before { +.um .fa-accessible-icon:before, +.um-icon-within .fa-accessible-icon:before { content: "\f368"; } -.um .fa-ebay:before { +.um .fa-ebay:before, +.um-icon-within .fa-ebay:before { content: "\f4f4"; } -.um .fa-amazon:before { +.um .fa-amazon:before, +.um-icon-within .fa-amazon:before { content: "\f270"; } -.um .fa-unsplash:before { +.um .fa-unsplash:before, +.um-icon-within .fa-unsplash:before { content: "\e07c"; } -.um .fa-yarn:before { +.um .fa-yarn:before, +.um-icon-within .fa-yarn:before { content: "\f7e3"; } -.um .fa-square-steam:before { +.um .fa-square-steam:before, +.um-icon-within .fa-square-steam:before { content: "\f1b7"; } -.um .fa-steam-square:before { +.um .fa-steam-square:before, +.um-icon-within .fa-steam-square:before { content: "\f1b7"; } -.um .fa-500px:before { +.um .fa-500px:before, +.um-icon-within .fa-500px:before { content: "\f26e"; } -.um .fa-square-vimeo:before { +.um .fa-square-vimeo:before, +.um-icon-within .fa-square-vimeo:before { content: "\f194"; } -.um .fa-vimeo-square:before { +.um .fa-vimeo-square:before, +.um-icon-within .fa-vimeo-square:before { content: "\f194"; } -.um .fa-asymmetrik:before { +.um .fa-asymmetrik:before, +.um-icon-within .fa-asymmetrik:before { content: "\f372"; } -.um .fa-font-awesome:before { +.um .fa-font-awesome:before, +.um-icon-within .fa-font-awesome:before { content: "\f2b4"; } -.um .fa-font-awesome-flag:before { +.um .fa-font-awesome-flag:before, +.um-icon-within .fa-font-awesome-flag:before { content: "\f2b4"; } -.um .fa-font-awesome-logo-full:before { +.um .fa-font-awesome-logo-full:before, +.um-icon-within .fa-font-awesome-logo-full:before { content: "\f2b4"; } -.um .fa-gratipay:before { +.um .fa-gratipay:before, +.um-icon-within .fa-gratipay:before { content: "\f184"; } -.um .fa-apple:before { +.um .fa-apple:before, +.um-icon-within .fa-apple:before { content: "\f179"; } -.um .fa-hive:before { +.um .fa-hive:before, +.um-icon-within .fa-hive:before { content: "\e07f"; } -.um .fa-gitkraken:before { +.um .fa-gitkraken:before, +.um-icon-within .fa-gitkraken:before { content: "\f3a6"; } -.um .fa-keybase:before { +.um .fa-keybase:before, +.um-icon-within .fa-keybase:before { content: "\f4f5"; } -.um .fa-apple-pay:before { +.um .fa-apple-pay:before, +.um-icon-within .fa-apple-pay:before { content: "\f415"; } -.um .fa-padlet:before { +.um .fa-padlet:before, +.um-icon-within .fa-padlet:before { content: "\e4a0"; } -.um .fa-amazon-pay:before { +.um .fa-amazon-pay:before, +.um-icon-within .fa-amazon-pay:before { content: "\f42c"; } -.um .fa-square-github:before { +.um .fa-square-github:before, +.um-icon-within .fa-square-github:before { content: "\f092"; } -.um .fa-github-square:before { +.um .fa-github-square:before, +.um-icon-within .fa-github-square:before { content: "\f092"; } -.um .fa-stumbleupon:before { +.um .fa-stumbleupon:before, +.um-icon-within .fa-stumbleupon:before { content: "\f1a4"; } -.um .fa-fedex:before { +.um .fa-fedex:before, +.um-icon-within .fa-fedex:before { content: "\f797"; } -.um .fa-phoenix-framework:before { +.um .fa-phoenix-framework:before, +.um-icon-within .fa-phoenix-framework:before { content: "\f3dc"; } -.um .fa-shopify:before { +.um .fa-shopify:before, +.um-icon-within .fa-shopify:before { content: "\e057"; } -.um .fa-neos:before { +.um .fa-neos:before, +.um-icon-within .fa-neos:before { content: "\f612"; } -.um .fa-square-threads:before { +.um .fa-square-threads:before, +.um-icon-within .fa-square-threads:before { content: "\e619"; } -.um .fa-hackerrank:before { +.um .fa-hackerrank:before, +.um-icon-within .fa-hackerrank:before { content: "\f5f7"; } -.um .fa-researchgate:before { +.um .fa-researchgate:before, +.um-icon-within .fa-researchgate:before { content: "\f4f8"; } -.um .fa-swift:before { +.um .fa-swift:before, +.um-icon-within .fa-swift:before { content: "\f8e1"; } -.um .fa-angular:before { +.um .fa-angular:before, +.um-icon-within .fa-angular:before { content: "\f420"; } -.um .fa-speakap:before { +.um .fa-speakap:before, +.um-icon-within .fa-speakap:before { content: "\f3f3"; } -.um .fa-angrycreative:before { +.um .fa-angrycreative:before, +.um-icon-within .fa-angrycreative:before { content: "\f36e"; } -.um .fa-y-combinator:before { +.um .fa-y-combinator:before, +.um-icon-within .fa-y-combinator:before { content: "\f23b"; } -.um .fa-empire:before { +.um .fa-empire:before, +.um-icon-within .fa-empire:before { content: "\f1d1"; } -.um .fa-envira:before { +.um .fa-envira:before, +.um-icon-within .fa-envira:before { content: "\f299"; } -.um .fa-google-scholar:before { +.um .fa-google-scholar:before, +.um-icon-within .fa-google-scholar:before { content: "\e63b"; } -.um .fa-square-gitlab:before { +.um .fa-square-gitlab:before, +.um-icon-within .fa-square-gitlab:before { content: "\e5ae"; } -.um .fa-gitlab-square:before { +.um .fa-gitlab-square:before, +.um-icon-within .fa-gitlab-square:before { content: "\e5ae"; } -.um .fa-studiovinari:before { +.um .fa-studiovinari:before, +.um-icon-within .fa-studiovinari:before { content: "\f3f8"; } -.um .fa-pied-piper:before { +.um .fa-pied-piper:before, +.um-icon-within .fa-pied-piper:before { content: "\f2ae"; } -.um .fa-wordpress:before { +.um .fa-wordpress:before, +.um-icon-within .fa-wordpress:before { content: "\f19a"; } -.um .fa-product-hunt:before { +.um .fa-product-hunt:before, +.um-icon-within .fa-product-hunt:before { content: "\f288"; } -.um .fa-firefox:before { +.um .fa-firefox:before, +.um-icon-within .fa-firefox:before { content: "\f269"; } -.um .fa-linode:before { +.um .fa-linode:before, +.um-icon-within .fa-linode:before { content: "\f2b8"; } -.um .fa-goodreads:before { +.um .fa-goodreads:before, +.um-icon-within .fa-goodreads:before { content: "\f3a8"; } -.um .fa-square-odnoklassniki:before { +.um .fa-square-odnoklassniki:before, +.um-icon-within .fa-square-odnoklassniki:before { content: "\f264"; } -.um .fa-odnoklassniki-square:before { +.um .fa-odnoklassniki-square:before, +.um-icon-within .fa-odnoklassniki-square:before { content: "\f264"; } -.um .fa-jsfiddle:before { +.um .fa-jsfiddle:before, +.um-icon-within .fa-jsfiddle:before { content: "\f1cc"; } -.um .fa-sith:before { +.um .fa-sith:before, +.um-icon-within .fa-sith:before { content: "\f512"; } -.um .fa-themeisle:before { +.um .fa-themeisle:before, +.um-icon-within .fa-themeisle:before { content: "\f2b2"; } -.um .fa-page4:before { +.um .fa-page4:before, +.um-icon-within .fa-page4:before { content: "\f3d7"; } -.um .fa-hashnode:before { +.um .fa-hashnode:before, +.um-icon-within .fa-hashnode:before { content: "\e499"; } -.um .fa-react:before { +.um .fa-react:before, +.um-icon-within .fa-react:before { content: "\f41b"; } -.um .fa-cc-paypal:before { +.um .fa-cc-paypal:before, +.um-icon-within .fa-cc-paypal:before { content: "\f1f4"; } -.um .fa-squarespace:before { +.um .fa-squarespace:before, +.um-icon-within .fa-squarespace:before { content: "\f5be"; } -.um .fa-cc-stripe:before { +.um .fa-cc-stripe:before, +.um-icon-within .fa-cc-stripe:before { content: "\f1f5"; } -.um .fa-creative-commons-share:before { +.um .fa-creative-commons-share:before, +.um-icon-within .fa-creative-commons-share:before { content: "\f4f2"; } -.um .fa-bitcoin:before { +.um .fa-bitcoin:before, +.um-icon-within .fa-bitcoin:before { content: "\f379"; } -.um .fa-keycdn:before { +.um .fa-keycdn:before, +.um-icon-within .fa-keycdn:before { content: "\f3ba"; } -.um .fa-opera:before { +.um .fa-opera:before, +.um-icon-within .fa-opera:before { content: "\f26a"; } -.um .fa-itch-io:before { +.um .fa-itch-io:before, +.um-icon-within .fa-itch-io:before { content: "\f83a"; } -.um .fa-umbraco:before { +.um .fa-umbraco:before, +.um-icon-within .fa-umbraco:before { content: "\f8e8"; } -.um .fa-galactic-senate:before { +.um .fa-galactic-senate:before, +.um-icon-within .fa-galactic-senate:before { content: "\f50d"; } -.um .fa-ubuntu:before { +.um .fa-ubuntu:before, +.um-icon-within .fa-ubuntu:before { content: "\f7df"; } -.um .fa-draft2digital:before { +.um .fa-draft2digital:before, +.um-icon-within .fa-draft2digital:before { content: "\f396"; } -.um .fa-stripe:before { +.um .fa-stripe:before, +.um-icon-within .fa-stripe:before { content: "\f429"; } -.um .fa-houzz:before { +.um .fa-houzz:before, +.um-icon-within .fa-houzz:before { content: "\f27c"; } -.um .fa-gg:before { +.um .fa-gg:before, +.um-icon-within .fa-gg:before { content: "\f260"; } -.um .fa-dhl:before { +.um .fa-dhl:before, +.um-icon-within .fa-dhl:before { content: "\f790"; } -.um .fa-square-pinterest:before { +.um .fa-square-pinterest:before, +.um-icon-within .fa-square-pinterest:before { content: "\f0d3"; } -.um .fa-pinterest-square:before { +.um .fa-pinterest-square:before, +.um-icon-within .fa-pinterest-square:before { content: "\f0d3"; } -.um .fa-xing:before { +.um .fa-xing:before, +.um-icon-within .fa-xing:before { content: "\f168"; } -.um .fa-blackberry:before { +.um .fa-blackberry:before, +.um-icon-within .fa-blackberry:before { content: "\f37b"; } -.um .fa-creative-commons-pd:before { +.um .fa-creative-commons-pd:before, +.um-icon-within .fa-creative-commons-pd:before { content: "\f4ec"; } -.um .fa-playstation:before { +.um .fa-playstation:before, +.um-icon-within .fa-playstation:before { content: "\f3df"; } -.um .fa-quinscape:before { +.um .fa-quinscape:before, +.um-icon-within .fa-quinscape:before { content: "\f459"; } -.um .fa-less:before { +.um .fa-less:before, +.um-icon-within .fa-less:before { content: "\f41d"; } -.um .fa-blogger-b:before { +.um .fa-blogger-b:before, +.um-icon-within .fa-blogger-b:before { content: "\f37d"; } -.um .fa-opencart:before { +.um .fa-opencart:before, +.um-icon-within .fa-opencart:before { content: "\f23d"; } -.um .fa-vine:before { +.um .fa-vine:before, +.um-icon-within .fa-vine:before { content: "\f1ca"; } -.um .fa-signal-messenger:before { +.um .fa-signal-messenger:before, +.um-icon-within .fa-signal-messenger:before { content: "\e663"; } -.um .fa-paypal:before { +.um .fa-paypal:before, +.um-icon-within .fa-paypal:before { content: "\f1ed"; } -.um .fa-gitlab:before { +.um .fa-gitlab:before, +.um-icon-within .fa-gitlab:before { content: "\f296"; } -.um .fa-typo3:before { +.um .fa-typo3:before, +.um-icon-within .fa-typo3:before { content: "\f42b"; } -.um .fa-reddit-alien:before { +.um .fa-reddit-alien:before, +.um-icon-within .fa-reddit-alien:before { content: "\f281"; } -.um .fa-yahoo:before { +.um .fa-yahoo:before, +.um-icon-within .fa-yahoo:before { content: "\f19e"; } -.um .fa-dailymotion:before { +.um .fa-dailymotion:before, +.um-icon-within .fa-dailymotion:before { content: "\e052"; } -.um .fa-affiliatetheme:before { +.um .fa-affiliatetheme:before, +.um-icon-within .fa-affiliatetheme:before { content: "\f36b"; } -.um .fa-pied-piper-pp:before { +.um .fa-pied-piper-pp:before, +.um-icon-within .fa-pied-piper-pp:before { content: "\f1a7"; } -.um .fa-bootstrap:before { +.um .fa-bootstrap:before, +.um-icon-within .fa-bootstrap:before { content: "\f836"; } -.um .fa-odnoklassniki:before { +.um .fa-odnoklassniki:before, +.um-icon-within .fa-odnoklassniki:before { content: "\f263"; } -.um .fa-nfc-symbol:before { +.um .fa-nfc-symbol:before, +.um-icon-within .fa-nfc-symbol:before { content: "\e531"; } -.um .fa-mintbit:before { +.um .fa-mintbit:before, +.um-icon-within .fa-mintbit:before { content: "\e62f"; } -.um .fa-ethereum:before { +.um .fa-ethereum:before, +.um-icon-within .fa-ethereum:before { content: "\f42e"; } -.um .fa-speaker-deck:before { +.um .fa-speaker-deck:before, +.um-icon-within .fa-speaker-deck:before { content: "\f83c"; } -.um .fa-creative-commons-nc-eu:before { +.um .fa-creative-commons-nc-eu:before, +.um-icon-within .fa-creative-commons-nc-eu:before { content: "\f4e9"; } -.um .fa-patreon:before { +.um .fa-patreon:before, +.um-icon-within .fa-patreon:before { content: "\f3d9"; } -.um .fa-avianex:before { +.um .fa-avianex:before, +.um-icon-within .fa-avianex:before { content: "\f374"; } -.um .fa-ello:before { +.um .fa-ello:before, +.um-icon-within .fa-ello:before { content: "\f5f1"; } -.um .fa-gofore:before { +.um .fa-gofore:before, +.um-icon-within .fa-gofore:before { content: "\f3a7"; } -.um .fa-bimobject:before { +.um .fa-bimobject:before, +.um-icon-within .fa-bimobject:before { content: "\f378"; } -.um .fa-brave-reverse:before { +.um .fa-brave-reverse:before, +.um-icon-within .fa-brave-reverse:before { content: "\e63d"; } -.um .fa-facebook-f:before { +.um .fa-facebook-f:before, +.um-icon-within .fa-facebook-f:before { content: "\f39e"; } -.um .fa-square-google-plus:before { +.um .fa-square-google-plus:before, +.um-icon-within .fa-square-google-plus:before { content: "\f0d4"; } -.um .fa-google-plus-square:before { +.um .fa-google-plus-square:before, +.um-icon-within .fa-google-plus-square:before { content: "\f0d4"; } -.um .fa-web-awesome:before { +.um .fa-web-awesome:before, +.um-icon-within .fa-web-awesome:before { content: "\e682"; } -.um .fa-mandalorian:before { +.um .fa-mandalorian:before, +.um-icon-within .fa-mandalorian:before { content: "\f50f"; } -.um .fa-first-order-alt:before { +.um .fa-first-order-alt:before, +.um-icon-within .fa-first-order-alt:before { content: "\f50a"; } -.um .fa-osi:before { +.um .fa-osi:before, +.um-icon-within .fa-osi:before { content: "\f41a"; } -.um .fa-google-wallet:before { +.um .fa-google-wallet:before, +.um-icon-within .fa-google-wallet:before { content: "\f1ee"; } -.um .fa-d-and-d-beyond:before { +.um .fa-d-and-d-beyond:before, +.um-icon-within .fa-d-and-d-beyond:before { content: "\f6ca"; } -.um .fa-periscope:before { +.um .fa-periscope:before, +.um-icon-within .fa-periscope:before { content: "\f3da"; } -.um .fa-fulcrum:before { +.um .fa-fulcrum:before, +.um-icon-within .fa-fulcrum:before { content: "\f50b"; } -.um .fa-cloudscale:before { +.um .fa-cloudscale:before, +.um-icon-within .fa-cloudscale:before { content: "\f383"; } -.um .fa-forumbee:before { +.um .fa-forumbee:before, +.um-icon-within .fa-forumbee:before { content: "\f211"; } -.um .fa-mizuni:before { +.um .fa-mizuni:before, +.um-icon-within .fa-mizuni:before { content: "\f3cc"; } -.um .fa-schlix:before { +.um .fa-schlix:before, +.um-icon-within .fa-schlix:before { content: "\f3ea"; } -.um .fa-square-xing:before { +.um .fa-square-xing:before, +.um-icon-within .fa-square-xing:before { content: "\f169"; } -.um .fa-xing-square:before { +.um .fa-xing-square:before, +.um-icon-within .fa-xing-square:before { content: "\f169"; } -.um .fa-bandcamp:before { +.um .fa-bandcamp:before, +.um-icon-within .fa-bandcamp:before { content: "\f2d5"; } -.um .fa-wpforms:before { +.um .fa-wpforms:before, +.um-icon-within .fa-wpforms:before { content: "\f298"; } -.um .fa-cloudversify:before { +.um .fa-cloudversify:before, +.um-icon-within .fa-cloudversify:before { content: "\f385"; } -.um .fa-usps:before { +.um .fa-usps:before, +.um-icon-within .fa-usps:before { content: "\f7e1"; } -.um .fa-megaport:before { +.um .fa-megaport:before, +.um-icon-within .fa-megaport:before { content: "\f5a3"; } -.um .fa-magento:before { +.um .fa-magento:before, +.um-icon-within .fa-magento:before { content: "\f3c4"; } -.um .fa-spotify:before { +.um .fa-spotify:before, +.um-icon-within .fa-spotify:before { content: "\f1bc"; } -.um .fa-optin-monster:before { +.um .fa-optin-monster:before, +.um-icon-within .fa-optin-monster:before { content: "\f23c"; } -.um .fa-fly:before { +.um .fa-fly:before, +.um-icon-within .fa-fly:before { content: "\f417"; } -.um .fa-aviato:before { +.um .fa-aviato:before, +.um-icon-within .fa-aviato:before { content: "\f421"; } -.um .fa-itunes:before { +.um .fa-itunes:before, +.um-icon-within .fa-itunes:before { content: "\f3b4"; } -.um .fa-cuttlefish:before { +.um .fa-cuttlefish:before, +.um-icon-within .fa-cuttlefish:before { content: "\f38c"; } -.um .fa-blogger:before { +.um .fa-blogger:before, +.um-icon-within .fa-blogger:before { content: "\f37c"; } -.um .fa-flickr:before { +.um .fa-flickr:before, +.um-icon-within .fa-flickr:before { content: "\f16e"; } -.um .fa-viber:before { +.um .fa-viber:before, +.um-icon-within .fa-viber:before { content: "\f409"; } -.um .fa-soundcloud:before { +.um .fa-soundcloud:before, +.um-icon-within .fa-soundcloud:before { content: "\f1be"; } -.um .fa-digg:before { +.um .fa-digg:before, +.um-icon-within .fa-digg:before { content: "\f1a6"; } -.um .fa-tencent-weibo:before { +.um .fa-tencent-weibo:before, +.um-icon-within .fa-tencent-weibo:before { content: "\f1d5"; } -.um .fa-letterboxd:before { +.um .fa-letterboxd:before, +.um-icon-within .fa-letterboxd:before { content: "\e62d"; } -.um .fa-symfony:before { +.um .fa-symfony:before, +.um-icon-within .fa-symfony:before { content: "\f83d"; } -.um .fa-maxcdn:before { +.um .fa-maxcdn:before, +.um-icon-within .fa-maxcdn:before { content: "\f136"; } -.um .fa-etsy:before { +.um .fa-etsy:before, +.um-icon-within .fa-etsy:before { content: "\f2d7"; } -.um .fa-facebook-messenger:before { +.um .fa-facebook-messenger:before, +.um-icon-within .fa-facebook-messenger:before { content: "\f39f"; } -.um .fa-audible:before { +.um .fa-audible:before, +.um-icon-within .fa-audible:before { content: "\f373"; } -.um .fa-think-peaks:before { +.um .fa-think-peaks:before, +.um-icon-within .fa-think-peaks:before { content: "\f731"; } -.um .fa-bilibili:before { +.um .fa-bilibili:before, +.um-icon-within .fa-bilibili:before { content: "\e3d9"; } -.um .fa-erlang:before { +.um .fa-erlang:before, +.um-icon-within .fa-erlang:before { content: "\f39d"; } -.um .fa-x-twitter:before { +.um .fa-x-twitter:before, +.um-icon-within .fa-x-twitter:before { content: "\e61b"; } -.um .fa-cotton-bureau:before { +.um .fa-cotton-bureau:before, +.um-icon-within .fa-cotton-bureau:before { content: "\f89e"; } -.um .fa-dashcube:before { +.um .fa-dashcube:before, +.um-icon-within .fa-dashcube:before { content: "\f210"; } -.um .fa-42-group:before { +.um .fa-42-group:before, +.um-icon-within .fa-42-group:before { content: "\e080"; } -.um .fa-innosoft:before { +.um .fa-innosoft:before, +.um-icon-within .fa-innosoft:before { content: "\e080"; } -.um .fa-stack-exchange:before { +.um .fa-stack-exchange:before, +.um-icon-within .fa-stack-exchange:before { content: "\f18d"; } -.um .fa-elementor:before { +.um .fa-elementor:before, +.um-icon-within .fa-elementor:before { content: "\f430"; } -.um .fa-square-pied-piper:before { +.um .fa-square-pied-piper:before, +.um-icon-within .fa-square-pied-piper:before { content: "\e01e"; } -.um .fa-pied-piper-square:before { +.um .fa-pied-piper-square:before, +.um-icon-within .fa-pied-piper-square:before { content: "\e01e"; } -.um .fa-creative-commons-nd:before { +.um .fa-creative-commons-nd:before, +.um-icon-within .fa-creative-commons-nd:before { content: "\f4eb"; } -.um .fa-palfed:before { +.um .fa-palfed:before, +.um-icon-within .fa-palfed:before { content: "\f3d8"; } -.um .fa-superpowers:before { +.um .fa-superpowers:before, +.um-icon-within .fa-superpowers:before { content: "\f2dd"; } -.um .fa-resolving:before { +.um .fa-resolving:before, +.um-icon-within .fa-resolving:before { content: "\f3e7"; } -.um .fa-xbox:before { +.um .fa-xbox:before, +.um-icon-within .fa-xbox:before { content: "\f412"; } -.um .fa-square-web-awesome-stroke:before { +.um .fa-square-web-awesome-stroke:before, +.um-icon-within .fa-square-web-awesome-stroke:before { content: "\e684"; } -.um .fa-searchengin:before { +.um .fa-searchengin:before, +.um-icon-within .fa-searchengin:before { content: "\f3eb"; } -.um .fa-tiktok:before { +.um .fa-tiktok:before, +.um-icon-within .fa-tiktok:before { content: "\e07b"; } -.um .fa-square-facebook:before { +.um .fa-square-facebook:before, +.um-icon-within .fa-square-facebook:before { content: "\f082"; } -.um .fa-facebook-square:before { +.um .fa-facebook-square:before, +.um-icon-within .fa-facebook-square:before { content: "\f082"; } -.um .fa-renren:before { +.um .fa-renren:before, +.um-icon-within .fa-renren:before { content: "\f18b"; } -.um .fa-linux:before { +.um .fa-linux:before, +.um-icon-within .fa-linux:before { content: "\f17c"; } -.um .fa-glide:before { +.um .fa-glide:before, +.um-icon-within .fa-glide:before { content: "\f2a5"; } -.um .fa-linkedin:before { +.um .fa-linkedin:before, +.um-icon-within .fa-linkedin:before { content: "\f08c"; } -.um .fa-hubspot:before { +.um .fa-hubspot:before, +.um-icon-within .fa-hubspot:before { content: "\f3b2"; } -.um .fa-deploydog:before { +.um .fa-deploydog:before, +.um-icon-within .fa-deploydog:before { content: "\f38e"; } -.um .fa-twitch:before { +.um .fa-twitch:before, +.um-icon-within .fa-twitch:before { content: "\f1e8"; } -.um .fa-ravelry:before { +.um .fa-ravelry:before, +.um-icon-within .fa-ravelry:before { content: "\f2d9"; } -.um .fa-mixer:before { +.um .fa-mixer:before, +.um-icon-within .fa-mixer:before { content: "\e056"; } -.um .fa-square-lastfm:before { +.um .fa-square-lastfm:before, +.um-icon-within .fa-square-lastfm:before { content: "\f203"; } -.um .fa-lastfm-square:before { +.um .fa-lastfm-square:before, +.um-icon-within .fa-lastfm-square:before { content: "\f203"; } -.um .fa-vimeo:before { +.um .fa-vimeo:before, +.um-icon-within .fa-vimeo:before { content: "\f40a"; } -.um .fa-mendeley:before { +.um .fa-mendeley:before, +.um-icon-within .fa-mendeley:before { content: "\f7b3"; } -.um .fa-uniregistry:before { +.um .fa-uniregistry:before, +.um-icon-within .fa-uniregistry:before { content: "\f404"; } -.um .fa-figma:before { +.um .fa-figma:before, +.um-icon-within .fa-figma:before { content: "\f799"; } -.um .fa-creative-commons-remix:before { +.um .fa-creative-commons-remix:before, +.um-icon-within .fa-creative-commons-remix:before { content: "\f4ee"; } -.um .fa-cc-amazon-pay:before { +.um .fa-cc-amazon-pay:before, +.um-icon-within .fa-cc-amazon-pay:before { content: "\f42d"; } -.um .fa-dropbox:before { +.um .fa-dropbox:before, +.um-icon-within .fa-dropbox:before { content: "\f16b"; } -.um .fa-instagram:before { +.um .fa-instagram:before, +.um-icon-within .fa-instagram:before { content: "\f16d"; } -.um .fa-cmplid:before { +.um .fa-cmplid:before, +.um-icon-within .fa-cmplid:before { content: "\e360"; } -.um .fa-upwork:before { +.um .fa-upwork:before, +.um-icon-within .fa-upwork:before { content: "\e641"; } -.um .fa-facebook:before { +.um .fa-facebook:before, +.um-icon-within .fa-facebook:before { content: "\f09a"; } -.um .fa-gripfire:before { +.um .fa-gripfire:before, +.um-icon-within .fa-gripfire:before { content: "\f3ac"; } -.um .fa-jedi-order:before { +.um .fa-jedi-order:before, +.um-icon-within .fa-jedi-order:before { content: "\f50e"; } -.um .fa-uikit:before { +.um .fa-uikit:before, +.um-icon-within .fa-uikit:before { content: "\f403"; } -.um .fa-fort-awesome-alt:before { +.um .fa-fort-awesome-alt:before, +.um-icon-within .fa-fort-awesome-alt:before { content: "\f3a3"; } -.um .fa-phabricator:before { +.um .fa-phabricator:before, +.um-icon-within .fa-phabricator:before { content: "\f3db"; } -.um .fa-ussunnah:before { +.um .fa-ussunnah:before, +.um-icon-within .fa-ussunnah:before { content: "\f407"; } -.um .fa-earlybirds:before { +.um .fa-earlybirds:before, +.um-icon-within .fa-earlybirds:before { content: "\f39a"; } -.um .fa-trade-federation:before { +.um .fa-trade-federation:before, +.um-icon-within .fa-trade-federation:before { content: "\f513"; } -.um .fa-autoprefixer:before { +.um .fa-autoprefixer:before, +.um-icon-within .fa-autoprefixer:before { content: "\f41c"; } -.um .fa-whatsapp:before { +.um .fa-whatsapp:before, +.um-icon-within .fa-whatsapp:before { content: "\f232"; } -.um .fa-square-upwork:before { +.um .fa-square-upwork:before, +.um-icon-within .fa-square-upwork:before { content: "\e67c"; } -.um .fa-slideshare:before { +.um .fa-slideshare:before, +.um-icon-within .fa-slideshare:before { content: "\f1e7"; } -.um .fa-google-play:before { +.um .fa-google-play:before, +.um-icon-within .fa-google-play:before { content: "\f3ab"; } -.um .fa-viadeo:before { +.um .fa-viadeo:before, +.um-icon-within .fa-viadeo:before { content: "\f2a9"; } -.um .fa-line:before { +.um .fa-line:before, +.um-icon-within .fa-line:before { content: "\f3c0"; } -.um .fa-google-drive:before { +.um .fa-google-drive:before, +.um-icon-within .fa-google-drive:before { content: "\f3aa"; } -.um .fa-servicestack:before { +.um .fa-servicestack:before, +.um-icon-within .fa-servicestack:before { content: "\f3ec"; } -.um .fa-simplybuilt:before { +.um .fa-simplybuilt:before, +.um-icon-within .fa-simplybuilt:before { content: "\f215"; } -.um .fa-bitbucket:before { +.um .fa-bitbucket:before, +.um-icon-within .fa-bitbucket:before { content: "\f171"; } -.um .fa-imdb:before { +.um .fa-imdb:before, +.um-icon-within .fa-imdb:before { content: "\f2d8"; } -.um .fa-deezer:before { +.um .fa-deezer:before, +.um-icon-within .fa-deezer:before { content: "\e077"; } -.um .fa-raspberry-pi:before { +.um .fa-raspberry-pi:before, +.um-icon-within .fa-raspberry-pi:before { content: "\f7bb"; } -.um .fa-jira:before { +.um .fa-jira:before, +.um-icon-within .fa-jira:before { content: "\f7b1"; } -.um .fa-docker:before { +.um .fa-docker:before, +.um-icon-within .fa-docker:before { content: "\f395"; } -.um .fa-screenpal:before { +.um .fa-screenpal:before, +.um-icon-within .fa-screenpal:before { content: "\e570"; } -.um .fa-bluetooth:before { +.um .fa-bluetooth:before, +.um-icon-within .fa-bluetooth:before { content: "\f293"; } -.um .fa-gitter:before { +.um .fa-gitter:before, +.um-icon-within .fa-gitter:before { content: "\f426"; } -.um .fa-d-and-d:before { +.um .fa-d-and-d:before, +.um-icon-within .fa-d-and-d:before { content: "\f38d"; } -.um .fa-microblog:before { +.um .fa-microblog:before, +.um-icon-within .fa-microblog:before { content: "\e01a"; } -.um .fa-cc-diners-club:before { +.um .fa-cc-diners-club:before, +.um-icon-within .fa-cc-diners-club:before { content: "\f24c"; } -.um .fa-gg-circle:before { +.um .fa-gg-circle:before, +.um-icon-within .fa-gg-circle:before { content: "\f261"; } -.um .fa-pied-piper-hat:before { +.um .fa-pied-piper-hat:before, +.um-icon-within .fa-pied-piper-hat:before { content: "\f4e5"; } -.um .fa-kickstarter-k:before { +.um .fa-kickstarter-k:before, +.um-icon-within .fa-kickstarter-k:before { content: "\f3bc"; } -.um .fa-yandex:before { +.um .fa-yandex:before, +.um-icon-within .fa-yandex:before { content: "\f413"; } -.um .fa-readme:before { +.um .fa-readme:before, +.um-icon-within .fa-readme:before { content: "\f4d5"; } -.um .fa-html5:before { +.um .fa-html5:before, +.um-icon-within .fa-html5:before { content: "\f13b"; } -.um .fa-sellsy:before { +.um .fa-sellsy:before, +.um-icon-within .fa-sellsy:before { content: "\f213"; } -.um .fa-square-web-awesome:before { +.um .fa-square-web-awesome:before, +.um-icon-within .fa-square-web-awesome:before { content: "\e683"; } -.um .fa-sass:before { +.um .fa-sass:before, +.um-icon-within .fa-sass:before { content: "\f41e"; } -.um .fa-wirsindhandwerk:before { +.um .fa-wirsindhandwerk:before, +.um-icon-within .fa-wirsindhandwerk:before { content: "\e2d0"; } -.um .fa-wsh:before { +.um .fa-wsh:before, +.um-icon-within .fa-wsh:before { content: "\e2d0"; } -.um .fa-buromobelexperte:before { +.um .fa-buromobelexperte:before, +.um-icon-within .fa-buromobelexperte:before { content: "\f37f"; } -.um .fa-salesforce:before { +.um .fa-salesforce:before, +.um-icon-within .fa-salesforce:before { content: "\f83b"; } -.um .fa-octopus-deploy:before { +.um .fa-octopus-deploy:before, +.um-icon-within .fa-octopus-deploy:before { content: "\e082"; } -.um .fa-medapps:before { +.um .fa-medapps:before, +.um-icon-within .fa-medapps:before { content: "\f3c6"; } -.um .fa-ns8:before { +.um .fa-ns8:before, +.um-icon-within .fa-ns8:before { content: "\f3d5"; } -.um .fa-pinterest-p:before { +.um .fa-pinterest-p:before, +.um-icon-within .fa-pinterest-p:before { content: "\f231"; } -.um .fa-apper:before { +.um .fa-apper:before, +.um-icon-within .fa-apper:before { content: "\f371"; } -.um .fa-fort-awesome:before { +.um .fa-fort-awesome:before, +.um-icon-within .fa-fort-awesome:before { content: "\f286"; } -.um .fa-waze:before { +.um .fa-waze:before, +.um-icon-within .fa-waze:before { content: "\f83f"; } -.um .fa-bluesky:before { +.um .fa-bluesky:before, +.um-icon-within .fa-bluesky:before { content: "\e671"; } -.um .fa-cc-jcb:before { +.um .fa-cc-jcb:before, +.um-icon-within .fa-cc-jcb:before { content: "\f24b"; } -.um .fa-snapchat:before { +.um .fa-snapchat:before, +.um-icon-within .fa-snapchat:before { content: "\f2ab"; } -.um .fa-snapchat-ghost:before { +.um .fa-snapchat-ghost:before, +.um-icon-within .fa-snapchat-ghost:before { content: "\f2ab"; } -.um .fa-fantasy-flight-games:before { +.um .fa-fantasy-flight-games:before, +.um-icon-within .fa-fantasy-flight-games:before { content: "\f6dc"; } -.um .fa-rust:before { +.um .fa-rust:before, +.um-icon-within .fa-rust:before { content: "\e07a"; } -.um .fa-wix:before { +.um .fa-wix:before, +.um-icon-within .fa-wix:before { content: "\f5cf"; } -.um .fa-square-behance:before { +.um .fa-square-behance:before, +.um-icon-within .fa-square-behance:before { content: "\f1b5"; } -.um .fa-behance-square:before { +.um .fa-behance-square:before, +.um-icon-within .fa-behance-square:before { content: "\f1b5"; } -.um .fa-supple:before { +.um .fa-supple:before, +.um-icon-within .fa-supple:before { content: "\f3f9"; } -.um .fa-webflow:before { +.um .fa-webflow:before, +.um-icon-within .fa-webflow:before { content: "\e65c"; } -.um .fa-rebel:before { +.um .fa-rebel:before, +.um-icon-within .fa-rebel:before { content: "\f1d0"; } -.um .fa-css3:before { +.um .fa-css3:before, +.um-icon-within .fa-css3:before { content: "\f13c"; } -.um .fa-staylinked:before { +.um .fa-staylinked:before, +.um-icon-within .fa-staylinked:before { content: "\f3f5"; } -.um .fa-kaggle:before { +.um .fa-kaggle:before, +.um-icon-within .fa-kaggle:before { content: "\f5fa"; } -.um .fa-space-awesome:before { +.um .fa-space-awesome:before, +.um-icon-within .fa-space-awesome:before { content: "\e5ac"; } -.um .fa-deviantart:before { +.um .fa-deviantart:before, +.um-icon-within .fa-deviantart:before { content: "\f1bd"; } -.um .fa-cpanel:before { +.um .fa-cpanel:before, +.um-icon-within .fa-cpanel:before { content: "\f388"; } -.um .fa-goodreads-g:before { +.um .fa-goodreads-g:before, +.um-icon-within .fa-goodreads-g:before { content: "\f3a9"; } -.um .fa-square-git:before { +.um .fa-square-git:before, +.um-icon-within .fa-square-git:before { content: "\f1d2"; } -.um .fa-git-square:before { +.um .fa-git-square:before, +.um-icon-within .fa-git-square:before { content: "\f1d2"; } -.um .fa-square-tumblr:before { +.um .fa-square-tumblr:before, +.um-icon-within .fa-square-tumblr:before { content: "\f174"; } -.um .fa-tumblr-square:before { +.um .fa-tumblr-square:before, +.um-icon-within .fa-tumblr-square:before { content: "\f174"; } -.um .fa-trello:before { +.um .fa-trello:before, +.um-icon-within .fa-trello:before { content: "\f181"; } -.um .fa-creative-commons-nc-jp:before { +.um .fa-creative-commons-nc-jp:before, +.um-icon-within .fa-creative-commons-nc-jp:before { content: "\f4ea"; } -.um .fa-get-pocket:before { +.um .fa-get-pocket:before, +.um-icon-within .fa-get-pocket:before { content: "\f265"; } -.um .fa-perbyte:before { +.um .fa-perbyte:before, +.um-icon-within .fa-perbyte:before { content: "\e083"; } -.um .fa-grunt:before { +.um .fa-grunt:before, +.um-icon-within .fa-grunt:before { content: "\f3ad"; } -.um .fa-weebly:before { +.um .fa-weebly:before, +.um-icon-within .fa-weebly:before { content: "\f5cc"; } -.um .fa-connectdevelop:before { +.um .fa-connectdevelop:before, +.um-icon-within .fa-connectdevelop:before { content: "\f20e"; } -.um .fa-leanpub:before { +.um .fa-leanpub:before, +.um-icon-within .fa-leanpub:before { content: "\f212"; } -.um .fa-black-tie:before { +.um .fa-black-tie:before, +.um-icon-within .fa-black-tie:before { content: "\f27e"; } -.um .fa-themeco:before { +.um .fa-themeco:before, +.um-icon-within .fa-themeco:before { content: "\f5c6"; } -.um .fa-python:before { +.um .fa-python:before, +.um-icon-within .fa-python:before { content: "\f3e2"; } -.um .fa-android:before { +.um .fa-android:before, +.um-icon-within .fa-android:before { content: "\f17b"; } -.um .fa-bots:before { +.um .fa-bots:before, +.um-icon-within .fa-bots:before { content: "\e340"; } -.um .fa-free-code-camp:before { +.um .fa-free-code-camp:before, +.um-icon-within .fa-free-code-camp:before { content: "\f2c5"; } -.um .fa-hornbill:before { +.um .fa-hornbill:before, +.um-icon-within .fa-hornbill:before { content: "\f592"; } -.um .fa-js:before { +.um .fa-js:before, +.um-icon-within .fa-js:before { content: "\f3b8"; } -.um .fa-ideal:before { +.um .fa-ideal:before, +.um-icon-within .fa-ideal:before { content: "\e013"; } -.um .fa-git:before { +.um .fa-git:before, +.um-icon-within .fa-git:before { content: "\f1d3"; } -.um .fa-dev:before { +.um .fa-dev:before, +.um-icon-within .fa-dev:before { content: "\f6cc"; } -.um .fa-sketch:before { +.um .fa-sketch:before, +.um-icon-within .fa-sketch:before { content: "\f7c6"; } -.um .fa-yandex-international:before { +.um .fa-yandex-international:before, +.um-icon-within .fa-yandex-international:before { content: "\f414"; } -.um .fa-cc-amex:before { +.um .fa-cc-amex:before, +.um-icon-within .fa-cc-amex:before { content: "\f1f3"; } -.um .fa-uber:before { +.um .fa-uber:before, +.um-icon-within .fa-uber:before { content: "\f402"; } -.um .fa-github:before { +.um .fa-github:before, +.um-icon-within .fa-github:before { content: "\f09b"; } -.um .fa-php:before { +.um .fa-php:before, +.um-icon-within .fa-php:before { content: "\f457"; } -.um .fa-alipay:before { +.um .fa-alipay:before, +.um-icon-within .fa-alipay:before { content: "\f642"; } -.um .fa-youtube:before { +.um .fa-youtube:before, +.um-icon-within .fa-youtube:before { content: "\f167"; } -.um .fa-skyatlas:before { +.um .fa-skyatlas:before, +.um-icon-within .fa-skyatlas:before { content: "\f216"; } -.um .fa-firefox-browser:before { +.um .fa-firefox-browser:before, +.um-icon-within .fa-firefox-browser:before { content: "\e007"; } -.um .fa-replyd:before { +.um .fa-replyd:before, +.um-icon-within .fa-replyd:before { content: "\f3e6"; } -.um .fa-suse:before { +.um .fa-suse:before, +.um-icon-within .fa-suse:before { content: "\f7d6"; } -.um .fa-jenkins:before { +.um .fa-jenkins:before, +.um-icon-within .fa-jenkins:before { content: "\f3b6"; } -.um .fa-twitter:before { +.um .fa-twitter:before, +.um-icon-within .fa-twitter:before { content: "\f099"; } -.um .fa-rockrms:before { +.um .fa-rockrms:before, +.um-icon-within .fa-rockrms:before { content: "\f3e9"; } -.um .fa-pinterest:before { +.um .fa-pinterest:before, +.um-icon-within .fa-pinterest:before { content: "\f0d2"; } -.um .fa-buffer:before { +.um .fa-buffer:before, +.um-icon-within .fa-buffer:before { content: "\f837"; } -.um .fa-npm:before { +.um .fa-npm:before, +.um-icon-within .fa-npm:before { content: "\f3d4"; } -.um .fa-yammer:before { +.um .fa-yammer:before, +.um-icon-within .fa-yammer:before { content: "\f840"; } -.um .fa-btc:before { +.um .fa-btc:before, +.um-icon-within .fa-btc:before { content: "\f15a"; } -.um .fa-dribbble:before { +.um .fa-dribbble:before, +.um-icon-within .fa-dribbble:before { content: "\f17d"; } -.um .fa-stumbleupon-circle:before { +.um .fa-stumbleupon-circle:before, +.um-icon-within .fa-stumbleupon-circle:before { content: "\f1a3"; } -.um .fa-internet-explorer:before { +.um .fa-internet-explorer:before, +.um-icon-within .fa-internet-explorer:before { content: "\f26b"; } -.um .fa-stubber:before { +.um .fa-stubber:before, +.um-icon-within .fa-stubber:before { content: "\e5c7"; } -.um .fa-telegram:before { +.um .fa-telegram:before, +.um-icon-within .fa-telegram:before { content: "\f2c6"; } -.um .fa-telegram-plane:before { +.um .fa-telegram-plane:before, +.um-icon-within .fa-telegram-plane:before { content: "\f2c6"; } -.um .fa-old-republic:before { +.um .fa-old-republic:before, +.um-icon-within .fa-old-republic:before { content: "\f510"; } -.um .fa-odysee:before { +.um .fa-odysee:before, +.um-icon-within .fa-odysee:before { content: "\e5c6"; } -.um .fa-square-whatsapp:before { +.um .fa-square-whatsapp:before, +.um-icon-within .fa-square-whatsapp:before { content: "\f40c"; } -.um .fa-whatsapp-square:before { +.um .fa-whatsapp-square:before, +.um-icon-within .fa-whatsapp-square:before { content: "\f40c"; } -.um .fa-node-js:before { +.um .fa-node-js:before, +.um-icon-within .fa-node-js:before { content: "\f3d3"; } -.um .fa-edge-legacy:before { +.um .fa-edge-legacy:before, +.um-icon-within .fa-edge-legacy:before { content: "\e078"; } -.um .fa-slack:before { +.um .fa-slack:before, +.um-icon-within .fa-slack:before { content: "\f198"; } -.um .fa-slack-hash:before { +.um .fa-slack-hash:before, +.um-icon-within .fa-slack-hash:before { content: "\f198"; } -.um .fa-medrt:before { +.um .fa-medrt:before, +.um-icon-within .fa-medrt:before { content: "\f3c8"; } -.um .fa-usb:before { +.um .fa-usb:before, +.um-icon-within .fa-usb:before { content: "\f287"; } -.um .fa-tumblr:before { +.um .fa-tumblr:before, +.um-icon-within .fa-tumblr:before { content: "\f173"; } -.um .fa-vaadin:before { +.um .fa-vaadin:before, +.um-icon-within .fa-vaadin:before { content: "\f408"; } -.um .fa-quora:before { +.um .fa-quora:before, +.um-icon-within .fa-quora:before { content: "\f2c4"; } -.um .fa-square-x-twitter:before { +.um .fa-square-x-twitter:before, +.um-icon-within .fa-square-x-twitter:before { content: "\e61a"; } -.um .fa-reacteurope:before { +.um .fa-reacteurope:before, +.um-icon-within .fa-reacteurope:before { content: "\f75d"; } -.um .fa-medium:before { +.um .fa-medium:before, +.um-icon-within .fa-medium:before { content: "\f23a"; } -.um .fa-medium-m:before { +.um .fa-medium-m:before, +.um-icon-within .fa-medium-m:before { content: "\f23a"; } -.um .fa-amilia:before { +.um .fa-amilia:before, +.um-icon-within .fa-amilia:before { content: "\f36d"; } -.um .fa-mixcloud:before { +.um .fa-mixcloud:before, +.um-icon-within .fa-mixcloud:before { content: "\f289"; } -.um .fa-flipboard:before { +.um .fa-flipboard:before, +.um-icon-within .fa-flipboard:before { content: "\f44d"; } -.um .fa-viacoin:before { +.um .fa-viacoin:before, +.um-icon-within .fa-viacoin:before { content: "\f237"; } -.um .fa-critical-role:before { +.um .fa-critical-role:before, +.um-icon-within .fa-critical-role:before { content: "\f6c9"; } -.um .fa-sitrox:before { +.um .fa-sitrox:before, +.um-icon-within .fa-sitrox:before { content: "\e44a"; } -.um .fa-discourse:before { +.um .fa-discourse:before, +.um-icon-within .fa-discourse:before { content: "\f393"; } -.um .fa-joomla:before { +.um .fa-joomla:before, +.um-icon-within .fa-joomla:before { content: "\f1aa"; } -.um .fa-mastodon:before { +.um .fa-mastodon:before, +.um-icon-within .fa-mastodon:before { content: "\f4f6"; } -.um .fa-airbnb:before { +.um .fa-airbnb:before, +.um-icon-within .fa-airbnb:before { content: "\f834"; } -.um .fa-wolf-pack-battalion:before { +.um .fa-wolf-pack-battalion:before, +.um-icon-within .fa-wolf-pack-battalion:before { content: "\f514"; } -.um .fa-buy-n-large:before { +.um .fa-buy-n-large:before, +.um-icon-within .fa-buy-n-large:before { content: "\f8a6"; } -.um .fa-gulp:before { +.um .fa-gulp:before, +.um-icon-within .fa-gulp:before { content: "\f3ae"; } -.um .fa-creative-commons-sampling-plus:before { +.um .fa-creative-commons-sampling-plus:before, +.um-icon-within .fa-creative-commons-sampling-plus:before { content: "\f4f1"; } -.um .fa-strava:before { +.um .fa-strava:before, +.um-icon-within .fa-strava:before { content: "\f428"; } -.um .fa-ember:before { +.um .fa-ember:before, +.um-icon-within .fa-ember:before { content: "\f423"; } -.um .fa-canadian-maple-leaf:before { +.um .fa-canadian-maple-leaf:before, +.um-icon-within .fa-canadian-maple-leaf:before { content: "\f785"; } -.um .fa-teamspeak:before { +.um .fa-teamspeak:before, +.um-icon-within .fa-teamspeak:before { content: "\f4f9"; } -.um .fa-pushed:before { +.um .fa-pushed:before, +.um-icon-within .fa-pushed:before { content: "\f3e1"; } -.um .fa-wordpress-simple:before { +.um .fa-wordpress-simple:before, +.um-icon-within .fa-wordpress-simple:before { content: "\f411"; } -.um .fa-nutritionix:before { +.um .fa-nutritionix:before, +.um-icon-within .fa-nutritionix:before { content: "\f3d6"; } -.um .fa-wodu:before { +.um .fa-wodu:before, +.um-icon-within .fa-wodu:before { content: "\e088"; } -.um .fa-google-pay:before { +.um .fa-google-pay:before, +.um-icon-within .fa-google-pay:before { content: "\e079"; } -.um .fa-intercom:before { +.um .fa-intercom:before, +.um-icon-within .fa-intercom:before { content: "\f7af"; } -.um .fa-zhihu:before { +.um .fa-zhihu:before, +.um-icon-within .fa-zhihu:before { content: "\f63f"; } -.um .fa-korvue:before { +.um .fa-korvue:before, +.um-icon-within .fa-korvue:before { content: "\f42f"; } -.um .fa-pix:before { +.um .fa-pix:before, +.um-icon-within .fa-pix:before { content: "\e43a"; } -.um .fa-steam-symbol:before { +.um .fa-steam-symbol:before, +.um-icon-within .fa-steam-symbol:before { content: "\f3f6"; } -.um :root, .um :host { +.um :root, .um :host, +.um-icon-within :root, +.um-icon-within :host { --fa-style-family-classic: "Font Awesome 6 Free"; --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; } @@ -7854,10 +10415,14 @@ src: url("../libs/fontawesome/webfonts/fa-regular-400.woff2") format("woff2"), url("../libs/fontawesome/webfonts/fa-regular-400.ttf") format("truetype"); } .um .far, -.um .fa-regular { +.um .fa-regular, +.um-icon-within .far, +.um-icon-within .fa-regular { font-weight: 400; } -.um :root, .um :host { +.um :root, .um :host, +.um-icon-within :root, +.um-icon-within :host { --fa-style-family-classic: "Font Awesome 6 Free"; --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; } @@ -7869,2196 +10434,2822 @@ src: url("../libs/fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("../libs/fontawesome/webfonts/fa-solid-900.ttf") format("truetype"); } .um .fas, -.um .fa-solid { +.um .fa-solid, +.um-icon-within .fas, +.um-icon-within .fa-solid { font-weight: 900; } -.um .fa.fa-glass:before { +.um .fa.fa-glass:before, +.um-icon-within .fa.fa-glass:before { content: "\f000"; } -.um .fa.fa-envelope-o { +.um .fa.fa-envelope-o, +.um-icon-within .fa.fa-envelope-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-envelope-o:before { +.um .fa.fa-envelope-o:before, +.um-icon-within .fa.fa-envelope-o:before { content: "\f0e0"; } -.um .fa.fa-star-o { +.um .fa.fa-star-o, +.um-icon-within .fa.fa-star-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-star-o:before { +.um .fa.fa-star-o:before, +.um-icon-within .fa.fa-star-o:before { content: "\f005"; } -.um .fa.fa-remove:before { +.um .fa.fa-remove:before, +.um-icon-within .fa.fa-remove:before { content: "\f00d"; } -.um .fa.fa-close:before { +.um .fa.fa-close:before, +.um-icon-within .fa.fa-close:before { content: "\f00d"; } -.um .fa.fa-gear:before { +.um .fa.fa-gear:before, +.um-icon-within .fa.fa-gear:before { content: "\f013"; } -.um .fa.fa-trash-o { +.um .fa.fa-trash-o, +.um-icon-within .fa.fa-trash-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-trash-o:before { +.um .fa.fa-trash-o:before, +.um-icon-within .fa.fa-trash-o:before { content: "\f2ed"; } -.um .fa.fa-home:before { +.um .fa.fa-home:before, +.um-icon-within .fa.fa-home:before { content: "\f015"; } -.um .fa.fa-file-o { +.um .fa.fa-file-o, +.um-icon-within .fa.fa-file-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-o:before { +.um .fa.fa-file-o:before, +.um-icon-within .fa.fa-file-o:before { content: "\f15b"; } -.um .fa.fa-clock-o { +.um .fa.fa-clock-o, +.um-icon-within .fa.fa-clock-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-clock-o:before { +.um .fa.fa-clock-o:before, +.um-icon-within .fa.fa-clock-o:before { content: "\f017"; } -.um .fa.fa-arrow-circle-o-down { +.um .fa.fa-arrow-circle-o-down, +.um-icon-within .fa.fa-arrow-circle-o-down { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-arrow-circle-o-down:before { +.um .fa.fa-arrow-circle-o-down:before, +.um-icon-within .fa.fa-arrow-circle-o-down:before { content: "\f358"; } -.um .fa.fa-arrow-circle-o-up { +.um .fa.fa-arrow-circle-o-up, +.um-icon-within .fa.fa-arrow-circle-o-up { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-arrow-circle-o-up:before { +.um .fa.fa-arrow-circle-o-up:before, +.um-icon-within .fa.fa-arrow-circle-o-up:before { content: "\f35b"; } -.um .fa.fa-play-circle-o { +.um .fa.fa-play-circle-o, +.um-icon-within .fa.fa-play-circle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-play-circle-o:before { +.um .fa.fa-play-circle-o:before, +.um-icon-within .fa.fa-play-circle-o:before { content: "\f144"; } -.um .fa.fa-repeat:before { +.um .fa.fa-repeat:before, +.um-icon-within .fa.fa-repeat:before { content: "\f01e"; } -.um .fa.fa-rotate-right:before { +.um .fa.fa-rotate-right:before, +.um-icon-within .fa.fa-rotate-right:before { content: "\f01e"; } -.um .fa.fa-refresh:before { +.um .fa.fa-refresh:before, +.um-icon-within .fa.fa-refresh:before { content: "\f021"; } -.um .fa.fa-list-alt { +.um .fa.fa-list-alt, +.um-icon-within .fa.fa-list-alt { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-list-alt:before { +.um .fa.fa-list-alt:before, +.um-icon-within .fa.fa-list-alt:before { content: "\f022"; } -.um .fa.fa-dedent:before { +.um .fa.fa-dedent:before, +.um-icon-within .fa.fa-dedent:before { content: "\f03b"; } -.um .fa.fa-video-camera:before { +.um .fa.fa-video-camera:before, +.um-icon-within .fa.fa-video-camera:before { content: "\f03d"; } -.um .fa.fa-picture-o { +.um .fa.fa-picture-o, +.um-icon-within .fa.fa-picture-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-picture-o:before { +.um .fa.fa-picture-o:before, +.um-icon-within .fa.fa-picture-o:before { content: "\f03e"; } -.um .fa.fa-photo { +.um .fa.fa-photo, +.um-icon-within .fa.fa-photo { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-photo:before { +.um .fa.fa-photo:before, +.um-icon-within .fa.fa-photo:before { content: "\f03e"; } -.um .fa.fa-image { +.um .fa.fa-image, +.um-icon-within .fa.fa-image { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-image:before { +.um .fa.fa-image:before, +.um-icon-within .fa.fa-image:before { content: "\f03e"; } -.um .fa.fa-map-marker:before { +.um .fa.fa-map-marker:before, +.um-icon-within .fa.fa-map-marker:before { content: "\f3c5"; } -.um .fa.fa-pencil-square-o { +.um .fa.fa-pencil-square-o, +.um-icon-within .fa.fa-pencil-square-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-pencil-square-o:before { +.um .fa.fa-pencil-square-o:before, +.um-icon-within .fa.fa-pencil-square-o:before { content: "\f044"; } -.um .fa.fa-edit { +.um .fa.fa-edit, +.um-icon-within .fa.fa-edit { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-edit:before { +.um .fa.fa-edit:before, +.um-icon-within .fa.fa-edit:before { content: "\f044"; } -.um .fa.fa-share-square-o:before { +.um .fa.fa-share-square-o:before, +.um-icon-within .fa.fa-share-square-o:before { content: "\f14d"; } -.um .fa.fa-check-square-o { +.um .fa.fa-check-square-o, +.um-icon-within .fa.fa-check-square-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-check-square-o:before { +.um .fa.fa-check-square-o:before, +.um-icon-within .fa.fa-check-square-o:before { content: "\f14a"; } -.um .fa.fa-arrows:before { +.um .fa.fa-arrows:before, +.um-icon-within .fa.fa-arrows:before { content: "\f0b2"; } -.um .fa.fa-times-circle-o { +.um .fa.fa-times-circle-o, +.um-icon-within .fa.fa-times-circle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-times-circle-o:before { +.um .fa.fa-times-circle-o:before, +.um-icon-within .fa.fa-times-circle-o:before { content: "\f057"; } -.um .fa.fa-check-circle-o { +.um .fa.fa-check-circle-o, +.um-icon-within .fa.fa-check-circle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-check-circle-o:before { +.um .fa.fa-check-circle-o:before, +.um-icon-within .fa.fa-check-circle-o:before { content: "\f058"; } -.um .fa.fa-mail-forward:before { +.um .fa.fa-mail-forward:before, +.um-icon-within .fa.fa-mail-forward:before { content: "\f064"; } -.um .fa.fa-expand:before { +.um .fa.fa-expand:before, +.um-icon-within .fa.fa-expand:before { content: "\f424"; } -.um .fa.fa-compress:before { +.um .fa.fa-compress:before, +.um-icon-within .fa.fa-compress:before { content: "\f422"; } -.um .fa.fa-eye { +.um .fa.fa-eye, +.um-icon-within .fa.fa-eye { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-eye-slash { +.um .fa.fa-eye-slash, +.um-icon-within .fa.fa-eye-slash { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-warning:before { +.um .fa.fa-warning:before, +.um-icon-within .fa.fa-warning:before { content: "\f071"; } -.um .fa.fa-calendar:before { +.um .fa.fa-calendar:before, +.um-icon-within .fa.fa-calendar:before { content: "\f073"; } -.um .fa.fa-arrows-v:before { +.um .fa.fa-arrows-v:before, +.um-icon-within .fa.fa-arrows-v:before { content: "\f338"; } -.um .fa.fa-arrows-h:before { +.um .fa.fa-arrows-h:before, +.um-icon-within .fa.fa-arrows-h:before { content: "\f337"; } -.um .fa.fa-bar-chart:before { +.um .fa.fa-bar-chart:before, +.um-icon-within .fa.fa-bar-chart:before { content: "\e0e3"; } -.um .fa.fa-bar-chart-o:before { +.um .fa.fa-bar-chart-o:before, +.um-icon-within .fa.fa-bar-chart-o:before { content: "\e0e3"; } -.um .fa.fa-twitter-square { +.um .fa.fa-twitter-square, +.um-icon-within .fa.fa-twitter-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-twitter-square:before { +.um .fa.fa-twitter-square:before, +.um-icon-within .fa.fa-twitter-square:before { content: "\f081"; } -.um .fa.fa-facebook-square { +.um .fa.fa-facebook-square, +.um-icon-within .fa.fa-facebook-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-facebook-square:before { +.um .fa.fa-facebook-square:before, +.um-icon-within .fa.fa-facebook-square:before { content: "\f082"; } -.um .fa.fa-gears:before { +.um .fa.fa-gears:before, +.um-icon-within .fa.fa-gears:before { content: "\f085"; } -.um .fa.fa-thumbs-o-up { +.um .fa.fa-thumbs-o-up, +.um-icon-within .fa.fa-thumbs-o-up { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-thumbs-o-up:before { +.um .fa.fa-thumbs-o-up:before, +.um-icon-within .fa.fa-thumbs-o-up:before { content: "\f164"; } -.um .fa.fa-thumbs-o-down { +.um .fa.fa-thumbs-o-down, +.um-icon-within .fa.fa-thumbs-o-down { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-thumbs-o-down:before { +.um .fa.fa-thumbs-o-down:before, +.um-icon-within .fa.fa-thumbs-o-down:before { content: "\f165"; } -.um .fa.fa-heart-o { +.um .fa.fa-heart-o, +.um-icon-within .fa.fa-heart-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-heart-o:before { +.um .fa.fa-heart-o:before, +.um-icon-within .fa.fa-heart-o:before { content: "\f004"; } -.um .fa.fa-sign-out:before { +.um .fa.fa-sign-out:before, +.um-icon-within .fa.fa-sign-out:before { content: "\f2f5"; } -.um .fa.fa-linkedin-square { +.um .fa.fa-linkedin-square, +.um-icon-within .fa.fa-linkedin-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-linkedin-square:before { +.um .fa.fa-linkedin-square:before, +.um-icon-within .fa.fa-linkedin-square:before { content: "\f08c"; } -.um .fa.fa-thumb-tack:before { +.um .fa.fa-thumb-tack:before, +.um-icon-within .fa.fa-thumb-tack:before { content: "\f08d"; } -.um .fa.fa-external-link:before { +.um .fa.fa-external-link:before, +.um-icon-within .fa.fa-external-link:before { content: "\f35d"; } -.um .fa.fa-sign-in:before { +.um .fa.fa-sign-in:before, +.um-icon-within .fa.fa-sign-in:before { content: "\f2f6"; } -.um .fa.fa-github-square { +.um .fa.fa-github-square, +.um-icon-within .fa.fa-github-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-github-square:before { +.um .fa.fa-github-square:before, +.um-icon-within .fa.fa-github-square:before { content: "\f092"; } -.um .fa.fa-lemon-o { +.um .fa.fa-lemon-o, +.um-icon-within .fa.fa-lemon-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-lemon-o:before { +.um .fa.fa-lemon-o:before, +.um-icon-within .fa.fa-lemon-o:before { content: "\f094"; } -.um .fa.fa-square-o { +.um .fa.fa-square-o, +.um-icon-within .fa.fa-square-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-square-o:before { +.um .fa.fa-square-o:before, +.um-icon-within .fa.fa-square-o:before { content: "\f0c8"; } -.um .fa.fa-bookmark-o { +.um .fa.fa-bookmark-o, +.um-icon-within .fa.fa-bookmark-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-bookmark-o:before { +.um .fa.fa-bookmark-o:before, +.um-icon-within .fa.fa-bookmark-o:before { content: "\f02e"; } -.um .fa.fa-twitter { +.um .fa.fa-twitter, +.um-icon-within .fa.fa-twitter { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-facebook { +.um .fa.fa-facebook, +.um-icon-within .fa.fa-facebook { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-facebook:before { +.um .fa.fa-facebook:before, +.um-icon-within .fa.fa-facebook:before { content: "\f39e"; } -.um .fa.fa-facebook-f { +.um .fa.fa-facebook-f, +.um-icon-within .fa.fa-facebook-f { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-facebook-f:before { +.um .fa.fa-facebook-f:before, +.um-icon-within .fa.fa-facebook-f:before { content: "\f39e"; } -.um .fa.fa-github { +.um .fa.fa-github, +.um-icon-within .fa.fa-github { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-credit-card { +.um .fa.fa-credit-card, +.um-icon-within .fa.fa-credit-card { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-feed:before { +.um .fa.fa-feed:before, +.um-icon-within .fa.fa-feed:before { content: "\f09e"; } -.um .fa.fa-hdd-o { +.um .fa.fa-hdd-o, +.um-icon-within .fa.fa-hdd-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hdd-o:before { +.um .fa.fa-hdd-o:before, +.um-icon-within .fa.fa-hdd-o:before { content: "\f0a0"; } -.um .fa.fa-hand-o-right { +.um .fa.fa-hand-o-right, +.um-icon-within .fa.fa-hand-o-right { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-o-right:before { +.um .fa.fa-hand-o-right:before, +.um-icon-within .fa.fa-hand-o-right:before { content: "\f0a4"; } -.um .fa.fa-hand-o-left { +.um .fa.fa-hand-o-left, +.um-icon-within .fa.fa-hand-o-left { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-o-left:before { +.um .fa.fa-hand-o-left:before, +.um-icon-within .fa.fa-hand-o-left:before { content: "\f0a5"; } -.um .fa.fa-hand-o-up { +.um .fa.fa-hand-o-up, +.um-icon-within .fa.fa-hand-o-up { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-o-up:before { +.um .fa.fa-hand-o-up:before, +.um-icon-within .fa.fa-hand-o-up:before { content: "\f0a6"; } -.um .fa.fa-hand-o-down { +.um .fa.fa-hand-o-down, +.um-icon-within .fa.fa-hand-o-down { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-o-down:before { +.um .fa.fa-hand-o-down:before, +.um-icon-within .fa.fa-hand-o-down:before { content: "\f0a7"; } -.um .fa.fa-globe:before { +.um .fa.fa-globe:before, +.um-icon-within .fa.fa-globe:before { content: "\f57d"; } -.um .fa.fa-tasks:before { +.um .fa.fa-tasks:before, +.um-icon-within .fa.fa-tasks:before { content: "\f828"; } -.um .fa.fa-arrows-alt:before { +.um .fa.fa-arrows-alt:before, +.um-icon-within .fa.fa-arrows-alt:before { content: "\f31e"; } -.um .fa.fa-group:before { +.um .fa.fa-group:before, +.um-icon-within .fa.fa-group:before { content: "\f0c0"; } -.um .fa.fa-chain:before { +.um .fa.fa-chain:before, +.um-icon-within .fa.fa-chain:before { content: "\f0c1"; } -.um .fa.fa-cut:before { +.um .fa.fa-cut:before, +.um-icon-within .fa.fa-cut:before { content: "\f0c4"; } -.um .fa.fa-files-o { +.um .fa.fa-files-o, +.um-icon-within .fa.fa-files-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-files-o:before { +.um .fa.fa-files-o:before, +.um-icon-within .fa.fa-files-o:before { content: "\f0c5"; } -.um .fa.fa-floppy-o { +.um .fa.fa-floppy-o, +.um-icon-within .fa.fa-floppy-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-floppy-o:before { +.um .fa.fa-floppy-o:before, +.um-icon-within .fa.fa-floppy-o:before { content: "\f0c7"; } -.um .fa.fa-save { +.um .fa.fa-save, +.um-icon-within .fa.fa-save { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-save:before { +.um .fa.fa-save:before, +.um-icon-within .fa.fa-save:before { content: "\f0c7"; } -.um .fa.fa-navicon:before { +.um .fa.fa-navicon:before, +.um-icon-within .fa.fa-navicon:before { content: "\f0c9"; } -.um .fa.fa-reorder:before { +.um .fa.fa-reorder:before, +.um-icon-within .fa.fa-reorder:before { content: "\f0c9"; } -.um .fa.fa-magic:before { +.um .fa.fa-magic:before, +.um-icon-within .fa.fa-magic:before { content: "\e2ca"; } -.um .fa.fa-pinterest { +.um .fa.fa-pinterest, +.um-icon-within .fa.fa-pinterest { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-pinterest-square { +.um .fa.fa-pinterest-square, +.um-icon-within .fa.fa-pinterest-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-pinterest-square:before { +.um .fa.fa-pinterest-square:before, +.um-icon-within .fa.fa-pinterest-square:before { content: "\f0d3"; } -.um .fa.fa-google-plus-square { +.um .fa.fa-google-plus-square, +.um-icon-within .fa.fa-google-plus-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-google-plus-square:before { +.um .fa.fa-google-plus-square:before, +.um-icon-within .fa.fa-google-plus-square:before { content: "\f0d4"; } -.um .fa.fa-google-plus { +.um .fa.fa-google-plus, +.um-icon-within .fa.fa-google-plus { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-google-plus:before { +.um .fa.fa-google-plus:before, +.um-icon-within .fa.fa-google-plus:before { content: "\f0d5"; } -.um .fa.fa-money:before { +.um .fa.fa-money:before, +.um-icon-within .fa.fa-money:before { content: "\f3d1"; } -.um .fa.fa-unsorted:before { +.um .fa.fa-unsorted:before, +.um-icon-within .fa.fa-unsorted:before { content: "\f0dc"; } -.um .fa.fa-sort-desc:before { +.um .fa.fa-sort-desc:before, +.um-icon-within .fa.fa-sort-desc:before { content: "\f0dd"; } -.um .fa.fa-sort-asc:before { +.um .fa.fa-sort-asc:before, +.um-icon-within .fa.fa-sort-asc:before { content: "\f0de"; } -.um .fa.fa-linkedin { +.um .fa.fa-linkedin, +.um-icon-within .fa.fa-linkedin { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-linkedin:before { +.um .fa.fa-linkedin:before, +.um-icon-within .fa.fa-linkedin:before { content: "\f0e1"; } -.um .fa.fa-rotate-left:before { +.um .fa.fa-rotate-left:before, +.um-icon-within .fa.fa-rotate-left:before { content: "\f0e2"; } -.um .fa.fa-legal:before { +.um .fa.fa-legal:before, +.um-icon-within .fa.fa-legal:before { content: "\f0e3"; } -.um .fa.fa-tachometer:before { +.um .fa.fa-tachometer:before, +.um-icon-within .fa.fa-tachometer:before { content: "\f625"; } -.um .fa.fa-dashboard:before { +.um .fa.fa-dashboard:before, +.um-icon-within .fa.fa-dashboard:before { content: "\f625"; } -.um .fa.fa-comment-o { +.um .fa.fa-comment-o, +.um-icon-within .fa.fa-comment-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-comment-o:before { +.um .fa.fa-comment-o:before, +.um-icon-within .fa.fa-comment-o:before { content: "\f075"; } -.um .fa.fa-comments-o { +.um .fa.fa-comments-o, +.um-icon-within .fa.fa-comments-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-comments-o:before { +.um .fa.fa-comments-o:before, +.um-icon-within .fa.fa-comments-o:before { content: "\f086"; } -.um .fa.fa-flash:before { +.um .fa.fa-flash:before, +.um-icon-within .fa.fa-flash:before { content: "\f0e7"; } -.um .fa.fa-clipboard:before { +.um .fa.fa-clipboard:before, +.um-icon-within .fa.fa-clipboard:before { content: "\f0ea"; } -.um .fa.fa-lightbulb-o { +.um .fa.fa-lightbulb-o, +.um-icon-within .fa.fa-lightbulb-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-lightbulb-o:before { +.um .fa.fa-lightbulb-o:before, +.um-icon-within .fa.fa-lightbulb-o:before { content: "\f0eb"; } -.um .fa.fa-exchange:before { +.um .fa.fa-exchange:before, +.um-icon-within .fa.fa-exchange:before { content: "\f362"; } -.um .fa.fa-cloud-download:before { +.um .fa.fa-cloud-download:before, +.um-icon-within .fa.fa-cloud-download:before { content: "\f0ed"; } -.um .fa.fa-cloud-upload:before { +.um .fa.fa-cloud-upload:before, +.um-icon-within .fa.fa-cloud-upload:before { content: "\f0ee"; } -.um .fa.fa-bell-o { +.um .fa.fa-bell-o, +.um-icon-within .fa.fa-bell-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-bell-o:before { +.um .fa.fa-bell-o:before, +.um-icon-within .fa.fa-bell-o:before { content: "\f0f3"; } -.um .fa.fa-cutlery:before { +.um .fa.fa-cutlery:before, +.um-icon-within .fa.fa-cutlery:before { content: "\f2e7"; } -.um .fa.fa-file-text-o { +.um .fa.fa-file-text-o, +.um-icon-within .fa.fa-file-text-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-text-o:before { +.um .fa.fa-file-text-o:before, +.um-icon-within .fa.fa-file-text-o:before { content: "\f15c"; } -.um .fa.fa-building-o { +.um .fa.fa-building-o, +.um-icon-within .fa.fa-building-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-building-o:before { +.um .fa.fa-building-o:before, +.um-icon-within .fa.fa-building-o:before { content: "\f1ad"; } -.um .fa.fa-hospital-o { +.um .fa.fa-hospital-o, +.um-icon-within .fa.fa-hospital-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hospital-o:before { +.um .fa.fa-hospital-o:before, +.um-icon-within .fa.fa-hospital-o:before { content: "\f0f8"; } -.um .fa.fa-tablet:before { +.um .fa.fa-tablet:before, +.um-icon-within .fa.fa-tablet:before { content: "\f3fa"; } -.um .fa.fa-mobile:before { +.um .fa.fa-mobile:before, +.um-icon-within .fa.fa-mobile:before { content: "\f3cd"; } -.um .fa.fa-mobile-phone:before { +.um .fa.fa-mobile-phone:before, +.um-icon-within .fa.fa-mobile-phone:before { content: "\f3cd"; } -.um .fa.fa-circle-o { +.um .fa.fa-circle-o, +.um-icon-within .fa.fa-circle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-circle-o:before { +.um .fa.fa-circle-o:before, +.um-icon-within .fa.fa-circle-o:before { content: "\f111"; } -.um .fa.fa-mail-reply:before { +.um .fa.fa-mail-reply:before, +.um-icon-within .fa.fa-mail-reply:before { content: "\f3e5"; } -.um .fa.fa-github-alt { +.um .fa.fa-github-alt, +.um-icon-within .fa.fa-github-alt { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-folder-o { +.um .fa.fa-folder-o, +.um-icon-within .fa.fa-folder-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-folder-o:before { +.um .fa.fa-folder-o:before, +.um-icon-within .fa.fa-folder-o:before { content: "\f07b"; } -.um .fa.fa-folder-open-o { +.um .fa.fa-folder-open-o, +.um-icon-within .fa.fa-folder-open-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-folder-open-o:before { +.um .fa.fa-folder-open-o:before, +.um-icon-within .fa.fa-folder-open-o:before { content: "\f07c"; } -.um .fa.fa-smile-o { +.um .fa.fa-smile-o, +.um-icon-within .fa.fa-smile-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-smile-o:before { +.um .fa.fa-smile-o:before, +.um-icon-within .fa.fa-smile-o:before { content: "\f118"; } -.um .fa.fa-frown-o { +.um .fa.fa-frown-o, +.um-icon-within .fa.fa-frown-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-frown-o:before { +.um .fa.fa-frown-o:before, +.um-icon-within .fa.fa-frown-o:before { content: "\f119"; } -.um .fa.fa-meh-o { +.um .fa.fa-meh-o, +.um-icon-within .fa.fa-meh-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-meh-o:before { +.um .fa.fa-meh-o:before, +.um-icon-within .fa.fa-meh-o:before { content: "\f11a"; } -.um .fa.fa-keyboard-o { +.um .fa.fa-keyboard-o, +.um-icon-within .fa.fa-keyboard-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-keyboard-o:before { +.um .fa.fa-keyboard-o:before, +.um-icon-within .fa.fa-keyboard-o:before { content: "\f11c"; } -.um .fa.fa-flag-o { +.um .fa.fa-flag-o, +.um-icon-within .fa.fa-flag-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-flag-o:before { +.um .fa.fa-flag-o:before, +.um-icon-within .fa.fa-flag-o:before { content: "\f024"; } -.um .fa.fa-mail-reply-all:before { +.um .fa.fa-mail-reply-all:before, +.um-icon-within .fa.fa-mail-reply-all:before { content: "\f122"; } -.um .fa.fa-star-half-o { +.um .fa.fa-star-half-o, +.um-icon-within .fa.fa-star-half-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-star-half-o:before { +.um .fa.fa-star-half-o:before, +.um-icon-within .fa.fa-star-half-o:before { content: "\f5c0"; } -.um .fa.fa-star-half-empty { +.um .fa.fa-star-half-empty, +.um-icon-within .fa.fa-star-half-empty { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-star-half-empty:before { +.um .fa.fa-star-half-empty:before, +.um-icon-within .fa.fa-star-half-empty:before { content: "\f5c0"; } -.um .fa.fa-star-half-full { +.um .fa.fa-star-half-full, +.um-icon-within .fa.fa-star-half-full { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-star-half-full:before { +.um .fa.fa-star-half-full:before, +.um-icon-within .fa.fa-star-half-full:before { content: "\f5c0"; } -.um .fa.fa-code-fork:before { +.um .fa.fa-code-fork:before, +.um-icon-within .fa.fa-code-fork:before { content: "\f126"; } -.um .fa.fa-chain-broken:before { +.um .fa.fa-chain-broken:before, +.um-icon-within .fa.fa-chain-broken:before { content: "\f127"; } -.um .fa.fa-unlink:before { +.um .fa.fa-unlink:before, +.um-icon-within .fa.fa-unlink:before { content: "\f127"; } -.um .fa.fa-calendar-o { +.um .fa.fa-calendar-o, +.um-icon-within .fa.fa-calendar-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-calendar-o:before { +.um .fa.fa-calendar-o:before, +.um-icon-within .fa.fa-calendar-o:before { content: "\f133"; } -.um .fa.fa-maxcdn { +.um .fa.fa-maxcdn, +.um-icon-within .fa.fa-maxcdn { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-html5 { +.um .fa.fa-html5, +.um-icon-within .fa.fa-html5 { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-css3 { +.um .fa.fa-css3, +.um-icon-within .fa.fa-css3 { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-unlock-alt:before { +.um .fa.fa-unlock-alt:before, +.um-icon-within .fa.fa-unlock-alt:before { content: "\f09c"; } -.um .fa.fa-minus-square-o { +.um .fa.fa-minus-square-o, +.um-icon-within .fa.fa-minus-square-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-minus-square-o:before { +.um .fa.fa-minus-square-o:before, +.um-icon-within .fa.fa-minus-square-o:before { content: "\f146"; } -.um .fa.fa-level-up:before { +.um .fa.fa-level-up:before, +.um-icon-within .fa.fa-level-up:before { content: "\f3bf"; } -.um .fa.fa-level-down:before { +.um .fa.fa-level-down:before, +.um-icon-within .fa.fa-level-down:before { content: "\f3be"; } -.um .fa.fa-pencil-square:before { +.um .fa.fa-pencil-square:before, +.um-icon-within .fa.fa-pencil-square:before { content: "\f14b"; } -.um .fa.fa-external-link-square:before { +.um .fa.fa-external-link-square:before, +.um-icon-within .fa.fa-external-link-square:before { content: "\f360"; } -.um .fa.fa-compass { +.um .fa.fa-compass, +.um-icon-within .fa.fa-compass { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-caret-square-o-down { +.um .fa.fa-caret-square-o-down, +.um-icon-within .fa.fa-caret-square-o-down { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-caret-square-o-down:before { +.um .fa.fa-caret-square-o-down:before, +.um-icon-within .fa.fa-caret-square-o-down:before { content: "\f150"; } -.um .fa.fa-toggle-down { +.um .fa.fa-toggle-down, +.um-icon-within .fa.fa-toggle-down { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-toggle-down:before { +.um .fa.fa-toggle-down:before, +.um-icon-within .fa.fa-toggle-down:before { content: "\f150"; } -.um .fa.fa-caret-square-o-up { +.um .fa.fa-caret-square-o-up, +.um-icon-within .fa.fa-caret-square-o-up { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-caret-square-o-up:before { +.um .fa.fa-caret-square-o-up:before, +.um-icon-within .fa.fa-caret-square-o-up:before { content: "\f151"; } -.um .fa.fa-toggle-up { +.um .fa.fa-toggle-up, +.um-icon-within .fa.fa-toggle-up { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-toggle-up:before { +.um .fa.fa-toggle-up:before, +.um-icon-within .fa.fa-toggle-up:before { content: "\f151"; } -.um .fa.fa-caret-square-o-right { +.um .fa.fa-caret-square-o-right, +.um-icon-within .fa.fa-caret-square-o-right { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-caret-square-o-right:before { +.um .fa.fa-caret-square-o-right:before, +.um-icon-within .fa.fa-caret-square-o-right:before { content: "\f152"; } -.um .fa.fa-toggle-right { +.um .fa.fa-toggle-right, +.um-icon-within .fa.fa-toggle-right { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-toggle-right:before { +.um .fa.fa-toggle-right:before, +.um-icon-within .fa.fa-toggle-right:before { content: "\f152"; } -.um .fa.fa-eur:before { +.um .fa.fa-eur:before, +.um-icon-within .fa.fa-eur:before { content: "\f153"; } -.um .fa.fa-euro:before { +.um .fa.fa-euro:before, +.um-icon-within .fa.fa-euro:before { content: "\f153"; } -.um .fa.fa-gbp:before { +.um .fa.fa-gbp:before, +.um-icon-within .fa.fa-gbp:before { content: "\f154"; } -.um .fa.fa-usd:before { +.um .fa.fa-usd:before, +.um-icon-within .fa.fa-usd:before { content: "\$"; } -.um .fa.fa-dollar:before { +.um .fa.fa-dollar:before, +.um-icon-within .fa.fa-dollar:before { content: "\$"; } -.um .fa.fa-inr:before { +.um .fa.fa-inr:before, +.um-icon-within .fa.fa-inr:before { content: "\e1bc"; } -.um .fa.fa-rupee:before { +.um .fa.fa-rupee:before, +.um-icon-within .fa.fa-rupee:before { content: "\e1bc"; } -.um .fa.fa-jpy:before { +.um .fa.fa-jpy:before, +.um-icon-within .fa.fa-jpy:before { content: "\f157"; } -.um .fa.fa-cny:before { +.um .fa.fa-cny:before, +.um-icon-within .fa.fa-cny:before { content: "\f157"; } -.um .fa.fa-rmb:before { +.um .fa.fa-rmb:before, +.um-icon-within .fa.fa-rmb:before { content: "\f157"; } -.um .fa.fa-yen:before { +.um .fa.fa-yen:before, +.um-icon-within .fa.fa-yen:before { content: "\f157"; } -.um .fa.fa-rub:before { +.um .fa.fa-rub:before, +.um-icon-within .fa.fa-rub:before { content: "\f158"; } -.um .fa.fa-ruble:before { +.um .fa.fa-ruble:before, +.um-icon-within .fa.fa-ruble:before { content: "\f158"; } -.um .fa.fa-rouble:before { +.um .fa.fa-rouble:before, +.um-icon-within .fa.fa-rouble:before { content: "\f158"; } -.um .fa.fa-krw:before { +.um .fa.fa-krw:before, +.um-icon-within .fa.fa-krw:before { content: "\f159"; } -.um .fa.fa-won:before { +.um .fa.fa-won:before, +.um-icon-within .fa.fa-won:before { content: "\f159"; } -.um .fa.fa-btc { +.um .fa.fa-btc, +.um-icon-within .fa.fa-btc { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-bitcoin { +.um .fa.fa-bitcoin, +.um-icon-within .fa.fa-bitcoin { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-bitcoin:before { +.um .fa.fa-bitcoin:before, +.um-icon-within .fa.fa-bitcoin:before { content: "\f15a"; } -.um .fa.fa-file-text:before { +.um .fa.fa-file-text:before, +.um-icon-within .fa.fa-file-text:before { content: "\f15c"; } -.um .fa.fa-sort-alpha-asc:before { +.um .fa.fa-sort-alpha-asc:before, +.um-icon-within .fa.fa-sort-alpha-asc:before { content: "\f15d"; } -.um .fa.fa-sort-alpha-desc:before { +.um .fa.fa-sort-alpha-desc:before, +.um-icon-within .fa.fa-sort-alpha-desc:before { content: "\f881"; } -.um .fa.fa-sort-amount-asc:before { +.um .fa.fa-sort-amount-asc:before, +.um-icon-within .fa.fa-sort-amount-asc:before { content: "\f884"; } -.um .fa.fa-sort-amount-desc:before { +.um .fa.fa-sort-amount-desc:before, +.um-icon-within .fa.fa-sort-amount-desc:before { content: "\f160"; } -.um .fa.fa-sort-numeric-asc:before { +.um .fa.fa-sort-numeric-asc:before, +.um-icon-within .fa.fa-sort-numeric-asc:before { content: "\f162"; } -.um .fa.fa-sort-numeric-desc:before { +.um .fa.fa-sort-numeric-desc:before, +.um-icon-within .fa.fa-sort-numeric-desc:before { content: "\f886"; } -.um .fa.fa-youtube-square { +.um .fa.fa-youtube-square, +.um-icon-within .fa.fa-youtube-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-youtube-square:before { +.um .fa.fa-youtube-square:before, +.um-icon-within .fa.fa-youtube-square:before { content: "\f431"; } -.um .fa.fa-youtube { +.um .fa.fa-youtube, +.um-icon-within .fa.fa-youtube { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-xing { +.um .fa.fa-xing, +.um-icon-within .fa.fa-xing { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-xing-square { +.um .fa.fa-xing-square, +.um-icon-within .fa.fa-xing-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-xing-square:before { +.um .fa.fa-xing-square:before, +.um-icon-within .fa.fa-xing-square:before { content: "\f169"; } -.um .fa.fa-youtube-play { +.um .fa.fa-youtube-play, +.um-icon-within .fa.fa-youtube-play { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-youtube-play:before { +.um .fa.fa-youtube-play:before, +.um-icon-within .fa.fa-youtube-play:before { content: "\f167"; } -.um .fa.fa-dropbox { +.um .fa.fa-dropbox, +.um-icon-within .fa.fa-dropbox { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-stack-overflow { +.um .fa.fa-stack-overflow, +.um-icon-within .fa.fa-stack-overflow { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-instagram { +.um .fa.fa-instagram, +.um-icon-within .fa.fa-instagram { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-flickr { +.um .fa.fa-flickr, +.um-icon-within .fa.fa-flickr { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-adn { +.um .fa.fa-adn, +.um-icon-within .fa.fa-adn { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-bitbucket { +.um .fa.fa-bitbucket, +.um-icon-within .fa.fa-bitbucket { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-bitbucket-square { +.um .fa.fa-bitbucket-square, +.um-icon-within .fa.fa-bitbucket-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-bitbucket-square:before { +.um .fa.fa-bitbucket-square:before, +.um-icon-within .fa.fa-bitbucket-square:before { content: "\f171"; } -.um .fa.fa-tumblr { +.um .fa.fa-tumblr, +.um-icon-within .fa.fa-tumblr { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-tumblr-square { +.um .fa.fa-tumblr-square, +.um-icon-within .fa.fa-tumblr-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-tumblr-square:before { +.um .fa.fa-tumblr-square:before, +.um-icon-within .fa.fa-tumblr-square:before { content: "\f174"; } -.um .fa.fa-long-arrow-down:before { +.um .fa.fa-long-arrow-down:before, +.um-icon-within .fa.fa-long-arrow-down:before { content: "\f309"; } -.um .fa.fa-long-arrow-up:before { +.um .fa.fa-long-arrow-up:before, +.um-icon-within .fa.fa-long-arrow-up:before { content: "\f30c"; } -.um .fa.fa-long-arrow-left:before { +.um .fa.fa-long-arrow-left:before, +.um-icon-within .fa.fa-long-arrow-left:before { content: "\f30a"; } -.um .fa.fa-long-arrow-right:before { +.um .fa.fa-long-arrow-right:before, +.um-icon-within .fa.fa-long-arrow-right:before { content: "\f30b"; } -.um .fa.fa-apple { +.um .fa.fa-apple, +.um-icon-within .fa.fa-apple { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-windows { +.um .fa.fa-windows, +.um-icon-within .fa.fa-windows { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-android { +.um .fa.fa-android, +.um-icon-within .fa.fa-android { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-linux { +.um .fa.fa-linux, +.um-icon-within .fa.fa-linux { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-dribbble { +.um .fa.fa-dribbble, +.um-icon-within .fa.fa-dribbble { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-skype { +.um .fa.fa-skype, +.um-icon-within .fa.fa-skype { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-foursquare { +.um .fa.fa-foursquare, +.um-icon-within .fa.fa-foursquare { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-trello { +.um .fa.fa-trello, +.um-icon-within .fa.fa-trello { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-gratipay { +.um .fa.fa-gratipay, +.um-icon-within .fa.fa-gratipay { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-gittip { +.um .fa.fa-gittip, +.um-icon-within .fa.fa-gittip { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-gittip:before { +.um .fa.fa-gittip:before, +.um-icon-within .fa.fa-gittip:before { content: "\f184"; } -.um .fa.fa-sun-o { +.um .fa.fa-sun-o, +.um-icon-within .fa.fa-sun-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-sun-o:before { +.um .fa.fa-sun-o:before, +.um-icon-within .fa.fa-sun-o:before { content: "\f185"; } -.um .fa.fa-moon-o { +.um .fa.fa-moon-o, +.um-icon-within .fa.fa-moon-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-moon-o:before { +.um .fa.fa-moon-o:before, +.um-icon-within .fa.fa-moon-o:before { content: "\f186"; } -.um .fa.fa-vk { +.um .fa.fa-vk, +.um-icon-within .fa.fa-vk { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-weibo { +.um .fa.fa-weibo, +.um-icon-within .fa.fa-weibo { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-renren { +.um .fa.fa-renren, +.um-icon-within .fa.fa-renren { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-pagelines { +.um .fa.fa-pagelines, +.um-icon-within .fa.fa-pagelines { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-stack-exchange { +.um .fa.fa-stack-exchange, +.um-icon-within .fa.fa-stack-exchange { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-arrow-circle-o-right { +.um .fa.fa-arrow-circle-o-right, +.um-icon-within .fa.fa-arrow-circle-o-right { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-arrow-circle-o-right:before { +.um .fa.fa-arrow-circle-o-right:before, +.um-icon-within .fa.fa-arrow-circle-o-right:before { content: "\f35a"; } -.um .fa.fa-arrow-circle-o-left { +.um .fa.fa-arrow-circle-o-left, +.um-icon-within .fa.fa-arrow-circle-o-left { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-arrow-circle-o-left:before { +.um .fa.fa-arrow-circle-o-left:before, +.um-icon-within .fa.fa-arrow-circle-o-left:before { content: "\f359"; } -.um .fa.fa-caret-square-o-left { +.um .fa.fa-caret-square-o-left, +.um-icon-within .fa.fa-caret-square-o-left { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-caret-square-o-left:before { +.um .fa.fa-caret-square-o-left:before, +.um-icon-within .fa.fa-caret-square-o-left:before { content: "\f191"; } -.um .fa.fa-toggle-left { +.um .fa.fa-toggle-left, +.um-icon-within .fa.fa-toggle-left { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-toggle-left:before { +.um .fa.fa-toggle-left:before, +.um-icon-within .fa.fa-toggle-left:before { content: "\f191"; } -.um .fa.fa-dot-circle-o { +.um .fa.fa-dot-circle-o, +.um-icon-within .fa.fa-dot-circle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-dot-circle-o:before { +.um .fa.fa-dot-circle-o:before, +.um-icon-within .fa.fa-dot-circle-o:before { content: "\f192"; } -.um .fa.fa-vimeo-square { +.um .fa.fa-vimeo-square, +.um-icon-within .fa.fa-vimeo-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-vimeo-square:before { +.um .fa.fa-vimeo-square:before, +.um-icon-within .fa.fa-vimeo-square:before { content: "\f194"; } -.um .fa.fa-try:before { +.um .fa.fa-try:before, +.um-icon-within .fa.fa-try:before { content: "\e2bb"; } -.um .fa.fa-turkish-lira:before { +.um .fa.fa-turkish-lira:before, +.um-icon-within .fa.fa-turkish-lira:before { content: "\e2bb"; } -.um .fa.fa-plus-square-o { +.um .fa.fa-plus-square-o, +.um-icon-within .fa.fa-plus-square-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-plus-square-o:before { +.um .fa.fa-plus-square-o:before, +.um-icon-within .fa.fa-plus-square-o:before { content: "\f0fe"; } -.um .fa.fa-slack { +.um .fa.fa-slack, +.um-icon-within .fa.fa-slack { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-wordpress { +.um .fa.fa-wordpress, +.um-icon-within .fa.fa-wordpress { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-openid { +.um .fa.fa-openid, +.um-icon-within .fa.fa-openid { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-institution:before { +.um .fa.fa-institution:before, +.um-icon-within .fa.fa-institution:before { content: "\f19c"; } -.um .fa.fa-bank:before { +.um .fa.fa-bank:before, +.um-icon-within .fa.fa-bank:before { content: "\f19c"; } -.um .fa.fa-mortar-board:before { +.um .fa.fa-mortar-board:before, +.um-icon-within .fa.fa-mortar-board:before { content: "\f19d"; } -.um .fa.fa-yahoo { +.um .fa.fa-yahoo, +.um-icon-within .fa.fa-yahoo { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-google { +.um .fa.fa-google, +.um-icon-within .fa.fa-google { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-reddit { +.um .fa.fa-reddit, +.um-icon-within .fa.fa-reddit { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-reddit-square { +.um .fa.fa-reddit-square, +.um-icon-within .fa.fa-reddit-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-reddit-square:before { +.um .fa.fa-reddit-square:before, +.um-icon-within .fa.fa-reddit-square:before { content: "\f1a2"; } -.um .fa.fa-stumbleupon-circle { +.um .fa.fa-stumbleupon-circle, +.um-icon-within .fa.fa-stumbleupon-circle { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-stumbleupon { +.um .fa.fa-stumbleupon, +.um-icon-within .fa.fa-stumbleupon { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-delicious { +.um .fa.fa-delicious, +.um-icon-within .fa.fa-delicious { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-digg { +.um .fa.fa-digg, +.um-icon-within .fa.fa-digg { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-pied-piper-pp { +.um .fa.fa-pied-piper-pp, +.um-icon-within .fa.fa-pied-piper-pp { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-pied-piper-alt { +.um .fa.fa-pied-piper-alt, +.um-icon-within .fa.fa-pied-piper-alt { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-drupal { +.um .fa.fa-drupal, +.um-icon-within .fa.fa-drupal { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-joomla { +.um .fa.fa-joomla, +.um-icon-within .fa.fa-joomla { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-behance { +.um .fa.fa-behance, +.um-icon-within .fa.fa-behance { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-behance-square { +.um .fa.fa-behance-square, +.um-icon-within .fa.fa-behance-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-behance-square:before { +.um .fa.fa-behance-square:before, +.um-icon-within .fa.fa-behance-square:before { content: "\f1b5"; } -.um .fa.fa-steam { +.um .fa.fa-steam, +.um-icon-within .fa.fa-steam { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-steam-square { +.um .fa.fa-steam-square, +.um-icon-within .fa.fa-steam-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-steam-square:before { +.um .fa.fa-steam-square:before, +.um-icon-within .fa.fa-steam-square:before { content: "\f1b7"; } -.um .fa.fa-automobile:before { +.um .fa.fa-automobile:before, +.um-icon-within .fa.fa-automobile:before { content: "\f1b9"; } -.um .fa.fa-cab:before { +.um .fa.fa-cab:before, +.um-icon-within .fa.fa-cab:before { content: "\f1ba"; } -.um .fa.fa-spotify { +.um .fa.fa-spotify, +.um-icon-within .fa.fa-spotify { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-deviantart { +.um .fa.fa-deviantart, +.um-icon-within .fa.fa-deviantart { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-soundcloud { +.um .fa.fa-soundcloud, +.um-icon-within .fa.fa-soundcloud { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-file-pdf-o { +.um .fa.fa-file-pdf-o, +.um-icon-within .fa.fa-file-pdf-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-pdf-o:before { +.um .fa.fa-file-pdf-o:before, +.um-icon-within .fa.fa-file-pdf-o:before { content: "\f1c1"; } -.um .fa.fa-file-word-o { +.um .fa.fa-file-word-o, +.um-icon-within .fa.fa-file-word-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-word-o:before { +.um .fa.fa-file-word-o:before, +.um-icon-within .fa.fa-file-word-o:before { content: "\f1c2"; } -.um .fa.fa-file-excel-o { +.um .fa.fa-file-excel-o, +.um-icon-within .fa.fa-file-excel-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-excel-o:before { +.um .fa.fa-file-excel-o:before, +.um-icon-within .fa.fa-file-excel-o:before { content: "\f1c3"; } -.um .fa.fa-file-powerpoint-o { +.um .fa.fa-file-powerpoint-o, +.um-icon-within .fa.fa-file-powerpoint-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-powerpoint-o:before { +.um .fa.fa-file-powerpoint-o:before, +.um-icon-within .fa.fa-file-powerpoint-o:before { content: "\f1c4"; } -.um .fa.fa-file-image-o { +.um .fa.fa-file-image-o, +.um-icon-within .fa.fa-file-image-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-image-o:before { +.um .fa.fa-file-image-o:before, +.um-icon-within .fa.fa-file-image-o:before { content: "\f1c5"; } -.um .fa.fa-file-photo-o { +.um .fa.fa-file-photo-o, +.um-icon-within .fa.fa-file-photo-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-photo-o:before { +.um .fa.fa-file-photo-o:before, +.um-icon-within .fa.fa-file-photo-o:before { content: "\f1c5"; } -.um .fa.fa-file-picture-o { +.um .fa.fa-file-picture-o, +.um-icon-within .fa.fa-file-picture-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-picture-o:before { +.um .fa.fa-file-picture-o:before, +.um-icon-within .fa.fa-file-picture-o:before { content: "\f1c5"; } -.um .fa.fa-file-archive-o { +.um .fa.fa-file-archive-o, +.um-icon-within .fa.fa-file-archive-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-archive-o:before { +.um .fa.fa-file-archive-o:before, +.um-icon-within .fa.fa-file-archive-o:before { content: "\f1c6"; } -.um .fa.fa-file-zip-o { +.um .fa.fa-file-zip-o, +.um-icon-within .fa.fa-file-zip-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-zip-o:before { +.um .fa.fa-file-zip-o:before, +.um-icon-within .fa.fa-file-zip-o:before { content: "\f1c6"; } -.um .fa.fa-file-audio-o { +.um .fa.fa-file-audio-o, +.um-icon-within .fa.fa-file-audio-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-audio-o:before { +.um .fa.fa-file-audio-o:before, +.um-icon-within .fa.fa-file-audio-o:before { content: "\f1c7"; } -.um .fa.fa-file-sound-o { +.um .fa.fa-file-sound-o, +.um-icon-within .fa.fa-file-sound-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-sound-o:before { +.um .fa.fa-file-sound-o:before, +.um-icon-within .fa.fa-file-sound-o:before { content: "\f1c7"; } -.um .fa.fa-file-video-o { +.um .fa.fa-file-video-o, +.um-icon-within .fa.fa-file-video-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-video-o:before { +.um .fa.fa-file-video-o:before, +.um-icon-within .fa.fa-file-video-o:before { content: "\f1c8"; } -.um .fa.fa-file-movie-o { +.um .fa.fa-file-movie-o, +.um-icon-within .fa.fa-file-movie-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-movie-o:before { +.um .fa.fa-file-movie-o:before, +.um-icon-within .fa.fa-file-movie-o:before { content: "\f1c8"; } -.um .fa.fa-file-code-o { +.um .fa.fa-file-code-o, +.um-icon-within .fa.fa-file-code-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-file-code-o:before { +.um .fa.fa-file-code-o:before, +.um-icon-within .fa.fa-file-code-o:before { content: "\f1c9"; } -.um .fa.fa-vine { +.um .fa.fa-vine, +.um-icon-within .fa.fa-vine { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-codepen { +.um .fa.fa-codepen, +.um-icon-within .fa.fa-codepen { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-jsfiddle { +.um .fa.fa-jsfiddle, +.um-icon-within .fa.fa-jsfiddle { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-life-bouy:before { +.um .fa.fa-life-bouy:before, +.um-icon-within .fa.fa-life-bouy:before { content: "\f1cd"; } -.um .fa.fa-life-buoy:before { +.um .fa.fa-life-buoy:before, +.um-icon-within .fa.fa-life-buoy:before { content: "\f1cd"; } -.um .fa.fa-life-saver:before { +.um .fa.fa-life-saver:before, +.um-icon-within .fa.fa-life-saver:before { content: "\f1cd"; } -.um .fa.fa-support:before { +.um .fa.fa-support:before, +.um-icon-within .fa.fa-support:before { content: "\f1cd"; } -.um .fa.fa-circle-o-notch:before { +.um .fa.fa-circle-o-notch:before, +.um-icon-within .fa.fa-circle-o-notch:before { content: "\f1ce"; } -.um .fa.fa-rebel { +.um .fa.fa-rebel, +.um-icon-within .fa.fa-rebel { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-ra { +.um .fa.fa-ra, +.um-icon-within .fa.fa-ra { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-ra:before { +.um .fa.fa-ra:before, +.um-icon-within .fa.fa-ra:before { content: "\f1d0"; } -.um .fa.fa-resistance { +.um .fa.fa-resistance, +.um-icon-within .fa.fa-resistance { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-resistance:before { +.um .fa.fa-resistance:before, +.um-icon-within .fa.fa-resistance:before { content: "\f1d0"; } -.um .fa.fa-empire { +.um .fa.fa-empire, +.um-icon-within .fa.fa-empire { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-ge { +.um .fa.fa-ge, +.um-icon-within .fa.fa-ge { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-ge:before { +.um .fa.fa-ge:before, +.um-icon-within .fa.fa-ge:before { content: "\f1d1"; } -.um .fa.fa-git-square { +.um .fa.fa-git-square, +.um-icon-within .fa.fa-git-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-git-square:before { +.um .fa.fa-git-square:before, +.um-icon-within .fa.fa-git-square:before { content: "\f1d2"; } -.um .fa.fa-git { +.um .fa.fa-git, +.um-icon-within .fa.fa-git { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-hacker-news { +.um .fa.fa-hacker-news, +.um-icon-within .fa.fa-hacker-news { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-y-combinator-square { +.um .fa.fa-y-combinator-square, +.um-icon-within .fa.fa-y-combinator-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-y-combinator-square:before { +.um .fa.fa-y-combinator-square:before, +.um-icon-within .fa.fa-y-combinator-square:before { content: "\f1d4"; } -.um .fa.fa-yc-square { +.um .fa.fa-yc-square, +.um-icon-within .fa.fa-yc-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-yc-square:before { +.um .fa.fa-yc-square:before, +.um-icon-within .fa.fa-yc-square:before { content: "\f1d4"; } -.um .fa.fa-tencent-weibo { +.um .fa.fa-tencent-weibo, +.um-icon-within .fa.fa-tencent-weibo { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-qq { +.um .fa.fa-qq, +.um-icon-within .fa.fa-qq { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-weixin { +.um .fa.fa-weixin, +.um-icon-within .fa.fa-weixin { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-wechat { +.um .fa.fa-wechat, +.um-icon-within .fa.fa-wechat { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-wechat:before { +.um .fa.fa-wechat:before, +.um-icon-within .fa.fa-wechat:before { content: "\f1d7"; } -.um .fa.fa-send:before { +.um .fa.fa-send:before, +.um-icon-within .fa.fa-send:before { content: "\f1d8"; } -.um .fa.fa-paper-plane-o { +.um .fa.fa-paper-plane-o, +.um-icon-within .fa.fa-paper-plane-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-paper-plane-o:before { +.um .fa.fa-paper-plane-o:before, +.um-icon-within .fa.fa-paper-plane-o:before { content: "\f1d8"; } -.um .fa.fa-send-o { +.um .fa.fa-send-o, +.um-icon-within .fa.fa-send-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-send-o:before { +.um .fa.fa-send-o:before, +.um-icon-within .fa.fa-send-o:before { content: "\f1d8"; } -.um .fa.fa-circle-thin { +.um .fa.fa-circle-thin, +.um-icon-within .fa.fa-circle-thin { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-circle-thin:before { +.um .fa.fa-circle-thin:before, +.um-icon-within .fa.fa-circle-thin:before { content: "\f111"; } -.um .fa.fa-header:before { +.um .fa.fa-header:before, +.um-icon-within .fa.fa-header:before { content: "\f1dc"; } -.um .fa.fa-futbol-o { +.um .fa.fa-futbol-o, +.um-icon-within .fa.fa-futbol-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-futbol-o:before { +.um .fa.fa-futbol-o:before, +.um-icon-within .fa.fa-futbol-o:before { content: "\f1e3"; } -.um .fa.fa-soccer-ball-o { +.um .fa.fa-soccer-ball-o, +.um-icon-within .fa.fa-soccer-ball-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-soccer-ball-o:before { +.um .fa.fa-soccer-ball-o:before, +.um-icon-within .fa.fa-soccer-ball-o:before { content: "\f1e3"; } -.um .fa.fa-slideshare { +.um .fa.fa-slideshare, +.um-icon-within .fa.fa-slideshare { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-twitch { +.um .fa.fa-twitch, +.um-icon-within .fa.fa-twitch { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-yelp { +.um .fa.fa-yelp, +.um-icon-within .fa.fa-yelp { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-newspaper-o { +.um .fa.fa-newspaper-o, +.um-icon-within .fa.fa-newspaper-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-newspaper-o:before { +.um .fa.fa-newspaper-o:before, +.um-icon-within .fa.fa-newspaper-o:before { content: "\f1ea"; } -.um .fa.fa-paypal { +.um .fa.fa-paypal, +.um-icon-within .fa.fa-paypal { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-google-wallet { +.um .fa.fa-google-wallet, +.um-icon-within .fa.fa-google-wallet { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-cc-visa { +.um .fa.fa-cc-visa, +.um-icon-within .fa.fa-cc-visa { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-cc-mastercard { +.um .fa.fa-cc-mastercard, +.um-icon-within .fa.fa-cc-mastercard { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-cc-discover { +.um .fa.fa-cc-discover, +.um-icon-within .fa.fa-cc-discover { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-cc-amex { +.um .fa.fa-cc-amex, +.um-icon-within .fa.fa-cc-amex { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-cc-paypal { +.um .fa.fa-cc-paypal, +.um-icon-within .fa.fa-cc-paypal { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-cc-stripe { +.um .fa.fa-cc-stripe, +.um-icon-within .fa.fa-cc-stripe { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-bell-slash-o { +.um .fa.fa-bell-slash-o, +.um-icon-within .fa.fa-bell-slash-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-bell-slash-o:before { +.um .fa.fa-bell-slash-o:before, +.um-icon-within .fa.fa-bell-slash-o:before { content: "\f1f6"; } -.um .fa.fa-trash:before { +.um .fa.fa-trash:before, +.um-icon-within .fa.fa-trash:before { content: "\f2ed"; } -.um .fa.fa-copyright { +.um .fa.fa-copyright, +.um-icon-within .fa.fa-copyright { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-eyedropper:before { +.um .fa.fa-eyedropper:before, +.um-icon-within .fa.fa-eyedropper:before { content: "\f1fb"; } -.um .fa.fa-area-chart:before { +.um .fa.fa-area-chart:before, +.um-icon-within .fa.fa-area-chart:before { content: "\f1fe"; } -.um .fa.fa-pie-chart:before { +.um .fa.fa-pie-chart:before, +.um-icon-within .fa.fa-pie-chart:before { content: "\f200"; } -.um .fa.fa-line-chart:before { +.um .fa.fa-line-chart:before, +.um-icon-within .fa.fa-line-chart:before { content: "\f201"; } -.um .fa.fa-lastfm { +.um .fa.fa-lastfm, +.um-icon-within .fa.fa-lastfm { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-lastfm-square { +.um .fa.fa-lastfm-square, +.um-icon-within .fa.fa-lastfm-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-lastfm-square:before { +.um .fa.fa-lastfm-square:before, +.um-icon-within .fa.fa-lastfm-square:before { content: "\f203"; } -.um .fa.fa-ioxhost { +.um .fa.fa-ioxhost, +.um-icon-within .fa.fa-ioxhost { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-angellist { +.um .fa.fa-angellist, +.um-icon-within .fa.fa-angellist { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-cc { +.um .fa.fa-cc, +.um-icon-within .fa.fa-cc { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-cc:before { +.um .fa.fa-cc:before, +.um-icon-within .fa.fa-cc:before { content: "\f20a"; } -.um .fa.fa-ils:before { +.um .fa.fa-ils:before, +.um-icon-within .fa.fa-ils:before { content: "\f20b"; } -.um .fa.fa-shekel:before { +.um .fa.fa-shekel:before, +.um-icon-within .fa.fa-shekel:before { content: "\f20b"; } -.um .fa.fa-sheqel:before { +.um .fa.fa-sheqel:before, +.um-icon-within .fa.fa-sheqel:before { content: "\f20b"; } -.um .fa.fa-buysellads { +.um .fa.fa-buysellads, +.um-icon-within .fa.fa-buysellads { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-connectdevelop { +.um .fa.fa-connectdevelop, +.um-icon-within .fa.fa-connectdevelop { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-dashcube { +.um .fa.fa-dashcube, +.um-icon-within .fa.fa-dashcube { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-forumbee { +.um .fa.fa-forumbee, +.um-icon-within .fa.fa-forumbee { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-leanpub { +.um .fa.fa-leanpub, +.um-icon-within .fa.fa-leanpub { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-sellsy { +.um .fa.fa-sellsy, +.um-icon-within .fa.fa-sellsy { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-shirtsinbulk { +.um .fa.fa-shirtsinbulk, +.um-icon-within .fa.fa-shirtsinbulk { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-simplybuilt { +.um .fa.fa-simplybuilt, +.um-icon-within .fa.fa-simplybuilt { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-skyatlas { +.um .fa.fa-skyatlas, +.um-icon-within .fa.fa-skyatlas { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-diamond { +.um .fa.fa-diamond, +.um-icon-within .fa.fa-diamond { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-diamond:before { +.um .fa.fa-diamond:before, +.um-icon-within .fa.fa-diamond:before { content: "\f3a5"; } -.um .fa.fa-transgender:before { +.um .fa.fa-transgender:before, +.um-icon-within .fa.fa-transgender:before { content: "\f224"; } -.um .fa.fa-intersex:before { +.um .fa.fa-intersex:before, +.um-icon-within .fa.fa-intersex:before { content: "\f224"; } -.um .fa.fa-transgender-alt:before { +.um .fa.fa-transgender-alt:before, +.um-icon-within .fa.fa-transgender-alt:before { content: "\f225"; } -.um .fa.fa-facebook-official { +.um .fa.fa-facebook-official, +.um-icon-within .fa.fa-facebook-official { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-facebook-official:before { +.um .fa.fa-facebook-official:before, +.um-icon-within .fa.fa-facebook-official:before { content: "\f09a"; } -.um .fa.fa-pinterest-p { +.um .fa.fa-pinterest-p, +.um-icon-within .fa.fa-pinterest-p { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-whatsapp { +.um .fa.fa-whatsapp, +.um-icon-within .fa.fa-whatsapp { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-hotel:before { +.um .fa.fa-hotel:before, +.um-icon-within .fa.fa-hotel:before { content: "\f236"; } -.um .fa.fa-viacoin { +.um .fa.fa-viacoin, +.um-icon-within .fa.fa-viacoin { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-medium { +.um .fa.fa-medium, +.um-icon-within .fa.fa-medium { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-y-combinator { +.um .fa.fa-y-combinator, +.um-icon-within .fa.fa-y-combinator { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-yc { +.um .fa.fa-yc, +.um-icon-within .fa.fa-yc { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-yc:before { +.um .fa.fa-yc:before, +.um-icon-within .fa.fa-yc:before { content: "\f23b"; } -.um .fa.fa-optin-monster { +.um .fa.fa-optin-monster, +.um-icon-within .fa.fa-optin-monster { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-opencart { +.um .fa.fa-opencart, +.um-icon-within .fa.fa-opencart { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-expeditedssl { +.um .fa.fa-expeditedssl, +.um-icon-within .fa.fa-expeditedssl { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-battery-4:before { +.um .fa.fa-battery-4:before, +.um-icon-within .fa.fa-battery-4:before { content: "\f240"; } -.um .fa.fa-battery:before { +.um .fa.fa-battery:before, +.um-icon-within .fa.fa-battery:before { content: "\f240"; } -.um .fa.fa-battery-3:before { +.um .fa.fa-battery-3:before, +.um-icon-within .fa.fa-battery-3:before { content: "\f241"; } -.um .fa.fa-battery-2:before { +.um .fa.fa-battery-2:before, +.um-icon-within .fa.fa-battery-2:before { content: "\f242"; } -.um .fa.fa-battery-1:before { +.um .fa.fa-battery-1:before, +.um-icon-within .fa.fa-battery-1:before { content: "\f243"; } -.um .fa.fa-battery-0:before { +.um .fa.fa-battery-0:before, +.um-icon-within .fa.fa-battery-0:before { content: "\f244"; } -.um .fa.fa-object-group { +.um .fa.fa-object-group, +.um-icon-within .fa.fa-object-group { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-object-ungroup { +.um .fa.fa-object-ungroup, +.um-icon-within .fa.fa-object-ungroup { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-sticky-note-o { +.um .fa.fa-sticky-note-o, +.um-icon-within .fa.fa-sticky-note-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-sticky-note-o:before { +.um .fa.fa-sticky-note-o:before, +.um-icon-within .fa.fa-sticky-note-o:before { content: "\f249"; } -.um .fa.fa-cc-jcb { +.um .fa.fa-cc-jcb, +.um-icon-within .fa.fa-cc-jcb { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-cc-diners-club { +.um .fa.fa-cc-diners-club, +.um-icon-within .fa.fa-cc-diners-club { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-clone { +.um .fa.fa-clone, +.um-icon-within .fa.fa-clone { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hourglass-o:before { +.um .fa.fa-hourglass-o:before, +.um-icon-within .fa.fa-hourglass-o:before { content: "\f254"; } -.um .fa.fa-hourglass-1:before { +.um .fa.fa-hourglass-1:before, +.um-icon-within .fa.fa-hourglass-1:before { content: "\f251"; } -.um .fa.fa-hourglass-2:before { +.um .fa.fa-hourglass-2:before, +.um-icon-within .fa.fa-hourglass-2:before { content: "\f252"; } -.um .fa.fa-hourglass-3:before { +.um .fa.fa-hourglass-3:before, +.um-icon-within .fa.fa-hourglass-3:before { content: "\f253"; } -.um .fa.fa-hand-rock-o { +.um .fa.fa-hand-rock-o, +.um-icon-within .fa.fa-hand-rock-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-rock-o:before { +.um .fa.fa-hand-rock-o:before, +.um-icon-within .fa.fa-hand-rock-o:before { content: "\f255"; } -.um .fa.fa-hand-grab-o { +.um .fa.fa-hand-grab-o, +.um-icon-within .fa.fa-hand-grab-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-grab-o:before { +.um .fa.fa-hand-grab-o:before, +.um-icon-within .fa.fa-hand-grab-o:before { content: "\f255"; } -.um .fa.fa-hand-paper-o { +.um .fa.fa-hand-paper-o, +.um-icon-within .fa.fa-hand-paper-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-paper-o:before { +.um .fa.fa-hand-paper-o:before, +.um-icon-within .fa.fa-hand-paper-o:before { content: "\f256"; } -.um .fa.fa-hand-stop-o { +.um .fa.fa-hand-stop-o, +.um-icon-within .fa.fa-hand-stop-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-stop-o:before { +.um .fa.fa-hand-stop-o:before, +.um-icon-within .fa.fa-hand-stop-o:before { content: "\f256"; } -.um .fa.fa-hand-scissors-o { +.um .fa.fa-hand-scissors-o, +.um-icon-within .fa.fa-hand-scissors-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-scissors-o:before { +.um .fa.fa-hand-scissors-o:before, +.um-icon-within .fa.fa-hand-scissors-o:before { content: "\f257"; } -.um .fa.fa-hand-lizard-o { +.um .fa.fa-hand-lizard-o, +.um-icon-within .fa.fa-hand-lizard-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-lizard-o:before { +.um .fa.fa-hand-lizard-o:before, +.um-icon-within .fa.fa-hand-lizard-o:before { content: "\f258"; } -.um .fa.fa-hand-spock-o { +.um .fa.fa-hand-spock-o, +.um-icon-within .fa.fa-hand-spock-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-spock-o:before { +.um .fa.fa-hand-spock-o:before, +.um-icon-within .fa.fa-hand-spock-o:before { content: "\f259"; } -.um .fa.fa-hand-pointer-o { +.um .fa.fa-hand-pointer-o, +.um-icon-within .fa.fa-hand-pointer-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-pointer-o:before { +.um .fa.fa-hand-pointer-o:before, +.um-icon-within .fa.fa-hand-pointer-o:before { content: "\f25a"; } -.um .fa.fa-hand-peace-o { +.um .fa.fa-hand-peace-o, +.um-icon-within .fa.fa-hand-peace-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-hand-peace-o:before { +.um .fa.fa-hand-peace-o:before, +.um-icon-within .fa.fa-hand-peace-o:before { content: "\f25b"; } -.um .fa.fa-registered { +.um .fa.fa-registered, +.um-icon-within .fa.fa-registered { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-creative-commons { +.um .fa.fa-creative-commons, +.um-icon-within .fa.fa-creative-commons { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-gg { +.um .fa.fa-gg, +.um-icon-within .fa.fa-gg { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-gg-circle { +.um .fa.fa-gg-circle, +.um-icon-within .fa.fa-gg-circle { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-odnoklassniki { +.um .fa.fa-odnoklassniki, +.um-icon-within .fa.fa-odnoklassniki { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-odnoklassniki-square { +.um .fa.fa-odnoklassniki-square, +.um-icon-within .fa.fa-odnoklassniki-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-odnoklassniki-square:before { +.um .fa.fa-odnoklassniki-square:before, +.um-icon-within .fa.fa-odnoklassniki-square:before { content: "\f264"; } -.um .fa.fa-get-pocket { +.um .fa.fa-get-pocket, +.um-icon-within .fa.fa-get-pocket { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-wikipedia-w { +.um .fa.fa-wikipedia-w, +.um-icon-within .fa.fa-wikipedia-w { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-safari { +.um .fa.fa-safari, +.um-icon-within .fa.fa-safari { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-chrome { +.um .fa.fa-chrome, +.um-icon-within .fa.fa-chrome { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-firefox { +.um .fa.fa-firefox, +.um-icon-within .fa.fa-firefox { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-opera { +.um .fa.fa-opera, +.um-icon-within .fa.fa-opera { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-internet-explorer { +.um .fa.fa-internet-explorer, +.um-icon-within .fa.fa-internet-explorer { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-television:before { +.um .fa.fa-television:before, +.um-icon-within .fa.fa-television:before { content: "\f26c"; } -.um .fa.fa-contao { +.um .fa.fa-contao, +.um-icon-within .fa.fa-contao { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-500px { +.um .fa.fa-500px, +.um-icon-within .fa.fa-500px { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-amazon { +.um .fa.fa-amazon, +.um-icon-within .fa.fa-amazon { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-calendar-plus-o { +.um .fa.fa-calendar-plus-o, +.um-icon-within .fa.fa-calendar-plus-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-calendar-plus-o:before { +.um .fa.fa-calendar-plus-o:before, +.um-icon-within .fa.fa-calendar-plus-o:before { content: "\f271"; } -.um .fa.fa-calendar-minus-o { +.um .fa.fa-calendar-minus-o, +.um-icon-within .fa.fa-calendar-minus-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-calendar-minus-o:before { +.um .fa.fa-calendar-minus-o:before, +.um-icon-within .fa.fa-calendar-minus-o:before { content: "\f272"; } -.um .fa.fa-calendar-times-o { +.um .fa.fa-calendar-times-o, +.um-icon-within .fa.fa-calendar-times-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-calendar-times-o:before { +.um .fa.fa-calendar-times-o:before, +.um-icon-within .fa.fa-calendar-times-o:before { content: "\f273"; } -.um .fa.fa-calendar-check-o { +.um .fa.fa-calendar-check-o, +.um-icon-within .fa.fa-calendar-check-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-calendar-check-o:before { +.um .fa.fa-calendar-check-o:before, +.um-icon-within .fa.fa-calendar-check-o:before { content: "\f274"; } -.um .fa.fa-map-o { +.um .fa.fa-map-o, +.um-icon-within .fa.fa-map-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-map-o:before { +.um .fa.fa-map-o:before, +.um-icon-within .fa.fa-map-o:before { content: "\f279"; } -.um .fa.fa-commenting:before { +.um .fa.fa-commenting:before, +.um-icon-within .fa.fa-commenting:before { content: "\f4ad"; } -.um .fa.fa-commenting-o { +.um .fa.fa-commenting-o, +.um-icon-within .fa.fa-commenting-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-commenting-o:before { +.um .fa.fa-commenting-o:before, +.um-icon-within .fa.fa-commenting-o:before { content: "\f4ad"; } -.um .fa.fa-houzz { +.um .fa.fa-houzz, +.um-icon-within .fa.fa-houzz { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-vimeo { +.um .fa.fa-vimeo, +.um-icon-within .fa.fa-vimeo { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-vimeo:before { +.um .fa.fa-vimeo:before, +.um-icon-within .fa.fa-vimeo:before { content: "\f27d"; } -.um .fa.fa-black-tie { +.um .fa.fa-black-tie, +.um-icon-within .fa.fa-black-tie { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-fonticons { +.um .fa.fa-fonticons, +.um-icon-within .fa.fa-fonticons { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-reddit-alien { +.um .fa.fa-reddit-alien, +.um-icon-within .fa.fa-reddit-alien { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-edge { +.um .fa.fa-edge, +.um-icon-within .fa.fa-edge { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-credit-card-alt:before { +.um .fa.fa-credit-card-alt:before, +.um-icon-within .fa.fa-credit-card-alt:before { content: "\f09d"; } -.um .fa.fa-codiepie { +.um .fa.fa-codiepie, +.um-icon-within .fa.fa-codiepie { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-modx { +.um .fa.fa-modx, +.um-icon-within .fa.fa-modx { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-fort-awesome { +.um .fa.fa-fort-awesome, +.um-icon-within .fa.fa-fort-awesome { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-usb { +.um .fa.fa-usb, +.um-icon-within .fa.fa-usb { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-product-hunt { +.um .fa.fa-product-hunt, +.um-icon-within .fa.fa-product-hunt { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-mixcloud { +.um .fa.fa-mixcloud, +.um-icon-within .fa.fa-mixcloud { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-scribd { +.um .fa.fa-scribd, +.um-icon-within .fa.fa-scribd { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-pause-circle-o { +.um .fa.fa-pause-circle-o, +.um-icon-within .fa.fa-pause-circle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-pause-circle-o:before { +.um .fa.fa-pause-circle-o:before, +.um-icon-within .fa.fa-pause-circle-o:before { content: "\f28b"; } -.um .fa.fa-stop-circle-o { +.um .fa.fa-stop-circle-o, +.um-icon-within .fa.fa-stop-circle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-stop-circle-o:before { +.um .fa.fa-stop-circle-o:before, +.um-icon-within .fa.fa-stop-circle-o:before { content: "\f28d"; } -.um .fa.fa-bluetooth { +.um .fa.fa-bluetooth, +.um-icon-within .fa.fa-bluetooth { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-bluetooth-b { +.um .fa.fa-bluetooth-b, +.um-icon-within .fa.fa-bluetooth-b { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-gitlab { +.um .fa.fa-gitlab, +.um-icon-within .fa.fa-gitlab { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-wpbeginner { +.um .fa.fa-wpbeginner, +.um-icon-within .fa.fa-wpbeginner { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-wpforms { +.um .fa.fa-wpforms, +.um-icon-within .fa.fa-wpforms { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-envira { +.um .fa.fa-envira, +.um-icon-within .fa.fa-envira { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-wheelchair-alt { +.um .fa.fa-wheelchair-alt, +.um-icon-within .fa.fa-wheelchair-alt { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-wheelchair-alt:before { +.um .fa.fa-wheelchair-alt:before, +.um-icon-within .fa.fa-wheelchair-alt:before { content: "\f368"; } -.um .fa.fa-question-circle-o { +.um .fa.fa-question-circle-o, +.um-icon-within .fa.fa-question-circle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-question-circle-o:before { +.um .fa.fa-question-circle-o:before, +.um-icon-within .fa.fa-question-circle-o:before { content: "\f059"; } -.um .fa.fa-volume-control-phone:before { +.um .fa.fa-volume-control-phone:before, +.um-icon-within .fa.fa-volume-control-phone:before { content: "\f2a0"; } -.um .fa.fa-asl-interpreting:before { +.um .fa.fa-asl-interpreting:before, +.um-icon-within .fa.fa-asl-interpreting:before { content: "\f2a3"; } -.um .fa.fa-deafness:before { +.um .fa.fa-deafness:before, +.um-icon-within .fa.fa-deafness:before { content: "\f2a4"; } -.um .fa.fa-hard-of-hearing:before { +.um .fa.fa-hard-of-hearing:before, +.um-icon-within .fa.fa-hard-of-hearing:before { content: "\f2a4"; } -.um .fa.fa-glide { +.um .fa.fa-glide, +.um-icon-within .fa.fa-glide { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-glide-g { +.um .fa.fa-glide-g, +.um-icon-within .fa.fa-glide-g { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-signing:before { +.um .fa.fa-signing:before, +.um-icon-within .fa.fa-signing:before { content: "\f2a7"; } -.um .fa.fa-viadeo { +.um .fa.fa-viadeo, +.um-icon-within .fa.fa-viadeo { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-viadeo-square { +.um .fa.fa-viadeo-square, +.um-icon-within .fa.fa-viadeo-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-viadeo-square:before { +.um .fa.fa-viadeo-square:before, +.um-icon-within .fa.fa-viadeo-square:before { content: "\f2aa"; } -.um .fa.fa-snapchat { +.um .fa.fa-snapchat, +.um-icon-within .fa.fa-snapchat { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-snapchat-ghost { +.um .fa.fa-snapchat-ghost, +.um-icon-within .fa.fa-snapchat-ghost { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-snapchat-ghost:before { +.um .fa.fa-snapchat-ghost:before, +.um-icon-within .fa.fa-snapchat-ghost:before { content: "\f2ab"; } -.um .fa.fa-snapchat-square { +.um .fa.fa-snapchat-square, +.um-icon-within .fa.fa-snapchat-square { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-snapchat-square:before { +.um .fa.fa-snapchat-square:before, +.um-icon-within .fa.fa-snapchat-square:before { content: "\f2ad"; } -.um .fa.fa-pied-piper { +.um .fa.fa-pied-piper, +.um-icon-within .fa.fa-pied-piper { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-first-order { +.um .fa.fa-first-order, +.um-icon-within .fa.fa-first-order { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-yoast { +.um .fa.fa-yoast, +.um-icon-within .fa.fa-yoast { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-themeisle { +.um .fa.fa-themeisle, +.um-icon-within .fa.fa-themeisle { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-google-plus-official { +.um .fa.fa-google-plus-official, +.um-icon-within .fa.fa-google-plus-official { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-google-plus-official:before { +.um .fa.fa-google-plus-official:before, +.um-icon-within .fa.fa-google-plus-official:before { content: "\f2b3"; } -.um .fa.fa-google-plus-circle { +.um .fa.fa-google-plus-circle, +.um-icon-within .fa.fa-google-plus-circle { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-google-plus-circle:before { +.um .fa.fa-google-plus-circle:before, +.um-icon-within .fa.fa-google-plus-circle:before { content: "\f2b3"; } -.um .fa.fa-font-awesome { +.um .fa.fa-font-awesome, +.um-icon-within .fa.fa-font-awesome { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-fa { +.um .fa.fa-fa, +.um-icon-within .fa.fa-fa { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-fa:before { +.um .fa.fa-fa:before, +.um-icon-within .fa.fa-fa:before { content: "\f2b4"; } -.um .fa.fa-handshake-o { +.um .fa.fa-handshake-o, +.um-icon-within .fa.fa-handshake-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-handshake-o:before { +.um .fa.fa-handshake-o:before, +.um-icon-within .fa.fa-handshake-o:before { content: "\f2b5"; } -.um .fa.fa-envelope-open-o { +.um .fa.fa-envelope-open-o, +.um-icon-within .fa.fa-envelope-open-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-envelope-open-o:before { +.um .fa.fa-envelope-open-o:before, +.um-icon-within .fa.fa-envelope-open-o:before { content: "\f2b6"; } -.um .fa.fa-linode { +.um .fa.fa-linode, +.um-icon-within .fa.fa-linode { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-address-book-o { +.um .fa.fa-address-book-o, +.um-icon-within .fa.fa-address-book-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-address-book-o:before { +.um .fa.fa-address-book-o:before, +.um-icon-within .fa.fa-address-book-o:before { content: "\f2b9"; } -.um .fa.fa-vcard:before { +.um .fa.fa-vcard:before, +.um-icon-within .fa.fa-vcard:before { content: "\f2bb"; } -.um .fa.fa-address-card-o { +.um .fa.fa-address-card-o, +.um-icon-within .fa.fa-address-card-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-address-card-o:before { +.um .fa.fa-address-card-o:before, +.um-icon-within .fa.fa-address-card-o:before { content: "\f2bb"; } -.um .fa.fa-vcard-o { +.um .fa.fa-vcard-o, +.um-icon-within .fa.fa-vcard-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-vcard-o:before { +.um .fa.fa-vcard-o:before, +.um-icon-within .fa.fa-vcard-o:before { content: "\f2bb"; } -.um .fa.fa-user-circle-o { +.um .fa.fa-user-circle-o, +.um-icon-within .fa.fa-user-circle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-user-circle-o:before { +.um .fa.fa-user-circle-o:before, +.um-icon-within .fa.fa-user-circle-o:before { content: "\f2bd"; } -.um .fa.fa-user-o { +.um .fa.fa-user-o, +.um-icon-within .fa.fa-user-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-user-o:before { +.um .fa.fa-user-o:before, +.um-icon-within .fa.fa-user-o:before { content: "\f007"; } -.um .fa.fa-id-badge { +.um .fa.fa-id-badge, +.um-icon-within .fa.fa-id-badge { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-drivers-license:before { +.um .fa.fa-drivers-license:before, +.um-icon-within .fa.fa-drivers-license:before { content: "\f2c2"; } -.um .fa.fa-id-card-o { +.um .fa.fa-id-card-o, +.um-icon-within .fa.fa-id-card-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-id-card-o:before { +.um .fa.fa-id-card-o:before, +.um-icon-within .fa.fa-id-card-o:before { content: "\f2c2"; } -.um .fa.fa-drivers-license-o { +.um .fa.fa-drivers-license-o, +.um-icon-within .fa.fa-drivers-license-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-drivers-license-o:before { +.um .fa.fa-drivers-license-o:before, +.um-icon-within .fa.fa-drivers-license-o:before { content: "\f2c2"; } -.um .fa.fa-quora { +.um .fa.fa-quora, +.um-icon-within .fa.fa-quora { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-free-code-camp { +.um .fa.fa-free-code-camp, +.um-icon-within .fa.fa-free-code-camp { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-telegram { +.um .fa.fa-telegram, +.um-icon-within .fa.fa-telegram { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-thermometer-4:before { +.um .fa.fa-thermometer-4:before, +.um-icon-within .fa.fa-thermometer-4:before { content: "\f2c7"; } -.um .fa.fa-thermometer:before { +.um .fa.fa-thermometer:before, +.um-icon-within .fa.fa-thermometer:before { content: "\f2c7"; } -.um .fa.fa-thermometer-3:before { +.um .fa.fa-thermometer-3:before, +.um-icon-within .fa.fa-thermometer-3:before { content: "\f2c8"; } -.um .fa.fa-thermometer-2:before { +.um .fa.fa-thermometer-2:before, +.um-icon-within .fa.fa-thermometer-2:before { content: "\f2c9"; } -.um .fa.fa-thermometer-1:before { +.um .fa.fa-thermometer-1:before, +.um-icon-within .fa.fa-thermometer-1:before { content: "\f2ca"; } -.um .fa.fa-thermometer-0:before { +.um .fa.fa-thermometer-0:before, +.um-icon-within .fa.fa-thermometer-0:before { content: "\f2cb"; } -.um .fa.fa-bathtub:before { +.um .fa.fa-bathtub:before, +.um-icon-within .fa.fa-bathtub:before { content: "\f2cd"; } -.um .fa.fa-s15:before { +.um .fa.fa-s15:before, +.um-icon-within .fa.fa-s15:before { content: "\f2cd"; } -.um .fa.fa-window-maximize { +.um .fa.fa-window-maximize, +.um-icon-within .fa.fa-window-maximize { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-window-restore { +.um .fa.fa-window-restore, +.um-icon-within .fa.fa-window-restore { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-times-rectangle:before { +.um .fa.fa-times-rectangle:before, +.um-icon-within .fa.fa-times-rectangle:before { content: "\f410"; } -.um .fa.fa-window-close-o { +.um .fa.fa-window-close-o, +.um-icon-within .fa.fa-window-close-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-window-close-o:before { +.um .fa.fa-window-close-o:before, +.um-icon-within .fa.fa-window-close-o:before { content: "\f410"; } -.um .fa.fa-times-rectangle-o { +.um .fa.fa-times-rectangle-o, +.um-icon-within .fa.fa-times-rectangle-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-times-rectangle-o:before { +.um .fa.fa-times-rectangle-o:before, +.um-icon-within .fa.fa-times-rectangle-o:before { content: "\f410"; } -.um .fa.fa-bandcamp { +.um .fa.fa-bandcamp, +.um-icon-within .fa.fa-bandcamp { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-grav { +.um .fa.fa-grav, +.um-icon-within .fa.fa-grav { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-etsy { +.um .fa.fa-etsy, +.um-icon-within .fa.fa-etsy { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-imdb { +.um .fa.fa-imdb, +.um-icon-within .fa.fa-imdb { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-ravelry { +.um .fa.fa-ravelry, +.um-icon-within .fa.fa-ravelry { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-eercast { +.um .fa.fa-eercast, +.um-icon-within .fa.fa-eercast { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-eercast:before { +.um .fa.fa-eercast:before, +.um-icon-within .fa.fa-eercast:before { content: "\f2da"; } -.um .fa.fa-snowflake-o { +.um .fa.fa-snowflake-o, +.um-icon-within .fa.fa-snowflake-o { font-family: "Font Awesome 6 Free"; font-weight: 400; } -.um .fa.fa-snowflake-o:before { +.um .fa.fa-snowflake-o:before, +.um-icon-within .fa.fa-snowflake-o:before { content: "\f2dc"; } -.um .fa.fa-superpowers { +.um .fa.fa-superpowers, +.um-icon-within .fa.fa-superpowers { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-wpexplorer { +.um .fa.fa-wpexplorer, +.um-icon-within .fa.fa-wpexplorer { font-family: "Font Awesome 6 Brands"; font-weight: 400; } -.um .fa.fa-meetup { +.um .fa.fa-meetup, +.um-icon-within .fa.fa-meetup { font-family: "Font Awesome 6 Brands"; font-weight: 400; } \ No newline at end of file diff --git a/assets/css/um-fontawesome.min.css b/assets/css/um-fontawesome.min.css index 25843f30..e3086889 100644 --- a/assets/css/um-fontawesome.min.css +++ b/assets/css/um-fontawesome.min.css @@ -1,4 +1,4 @@ -.um{/*! +.um,.um-icon-within{/*! * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2024 Fonticons, Inc. @@ -18,4 +18,4 @@ * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2024 Fonticons, Inc. - */}.um .fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style,900)}.um .fa,.um .fa-brands,.um .fa-classic,.um .fa-regular,.um .fa-sharp,.um .fa-solid,.um .fab,.um .far,.um .fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.um .fa-classic,.um .fa-regular,.um .fa-solid,.um .far,.um .fas{font-family:"Font Awesome 6 Free"}.um .fa-brands,.um .fab{font-family:"Font Awesome 6 Brands"}.um .fa-1x{font-size:1em}.um .fa-2x{font-size:2em}.um .fa-3x{font-size:3em}.um .fa-4x{font-size:4em}.um .fa-5x{font-size:5em}.um .fa-6x{font-size:6em}.um .fa-7x{font-size:7em}.um .fa-8x{font-size:8em}.um .fa-9x{font-size:9em}.um .fa-10x{font-size:10em}.um .fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.um .fa-xs{font-size:.75em;line-height:.0833333337em;vertical-align:.125em}.um .fa-sm{font-size:.875em;line-height:.0714285718em;vertical-align:.0535714295em}.um .fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.um .fa-xl{font-size:1.5em;line-height:.0416666682em;vertical-align:-.125em}.um .fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.um .fa-fw{text-align:center;width:1.25em}.um .fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.um .fa-ul>li{position:relative}.um .fa-li{left:calc(var(--fa-li-width,2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.um .fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.um .fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.um .fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.um .fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.um .fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.um .fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.um .fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.um .fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.um .fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.um .fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.um .fa-spin-reverse{--fa-animation-direction:reverse}.um .fa-pulse,.um .fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.um .fa-beat,.um .fa-beat-fade,.um .fa-bounce,.um .fa-fade,.um .fa-flip,.um .fa-pulse,.um .fa-shake,.um .fa-spin,.um .fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1,1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1,1) translateY(0)}100%{transform:scale(1,1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}24%,8%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}100%,40%{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.um .fa-rotate-90{transform:rotate(90deg)}.um .fa-rotate-180{transform:rotate(180deg)}.um .fa-rotate-270{transform:rotate(270deg)}.um .fa-flip-horizontal{transform:scale(-1,1)}.um .fa-flip-vertical{transform:scale(1,-1)}.um .fa-flip-both,.um .fa-flip-horizontal.fa-flip-vertical{transform:scale(-1,-1)}.um .fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.um .fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.um .fa-stack-1x,.um .fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.um .fa-stack-1x{line-height:inherit}.um .fa-stack-2x{font-size:2em}.um .fa-inverse{color:var(--fa-inverse,#fff)}.um .fa-0::before{content:"\30 "}.um .fa-1::before{content:"\31 "}.um .fa-2::before{content:"\32 "}.um .fa-3::before{content:"\33 "}.um .fa-4::before{content:"\34 "}.um .fa-5::before{content:"\35 "}.um .fa-6::before{content:"\36 "}.um .fa-7::before{content:"\37 "}.um .fa-8::before{content:"\38 "}.um .fa-9::before{content:"\39 "}.um .fa-fill-drip::before{content:"\f576"}.um .fa-arrows-to-circle::before{content:"\e4bd"}.um .fa-circle-chevron-right::before{content:"\f138"}.um .fa-chevron-circle-right::before{content:"\f138"}.um .fa-at::before{content:"\@"}.um .fa-trash-can::before{content:"\f2ed"}.um .fa-trash-alt::before{content:"\f2ed"}.um .fa-text-height::before{content:"\f034"}.um .fa-user-xmark::before{content:"\f235"}.um .fa-user-times::before{content:"\f235"}.um .fa-stethoscope::before{content:"\f0f1"}.um .fa-message::before{content:"\f27a"}.um .fa-comment-alt::before{content:"\f27a"}.um .fa-info::before{content:"\f129"}.um .fa-down-left-and-up-right-to-center::before{content:"\f422"}.um .fa-compress-alt::before{content:"\f422"}.um .fa-explosion::before{content:"\e4e9"}.um .fa-file-lines::before{content:"\f15c"}.um .fa-file-alt::before{content:"\f15c"}.um .fa-file-text::before{content:"\f15c"}.um .fa-wave-square::before{content:"\f83e"}.um .fa-ring::before{content:"\f70b"}.um .fa-building-un::before{content:"\e4d9"}.um .fa-dice-three::before{content:"\f527"}.um .fa-calendar-days::before{content:"\f073"}.um .fa-calendar-alt::before{content:"\f073"}.um .fa-anchor-circle-check::before{content:"\e4aa"}.um .fa-building-circle-arrow-right::before{content:"\e4d1"}.um .fa-volleyball::before{content:"\f45f"}.um .fa-volleyball-ball::before{content:"\f45f"}.um .fa-arrows-up-to-line::before{content:"\e4c2"}.um .fa-sort-down::before{content:"\f0dd"}.um .fa-sort-desc::before{content:"\f0dd"}.um .fa-circle-minus::before{content:"\f056"}.um .fa-minus-circle::before{content:"\f056"}.um .fa-door-open::before{content:"\f52b"}.um .fa-right-from-bracket::before{content:"\f2f5"}.um .fa-sign-out-alt::before{content:"\f2f5"}.um .fa-atom::before{content:"\f5d2"}.um .fa-soap::before{content:"\e06e"}.um .fa-icons::before{content:"\f86d"}.um .fa-heart-music-camera-bolt::before{content:"\f86d"}.um .fa-microphone-lines-slash::before{content:"\f539"}.um .fa-microphone-alt-slash::before{content:"\f539"}.um .fa-bridge-circle-check::before{content:"\e4c9"}.um .fa-pump-medical::before{content:"\e06a"}.um .fa-fingerprint::before{content:"\f577"}.um .fa-hand-point-right::before{content:"\f0a4"}.um .fa-magnifying-glass-location::before{content:"\f689"}.um .fa-search-location::before{content:"\f689"}.um .fa-forward-step::before{content:"\f051"}.um .fa-step-forward::before{content:"\f051"}.um .fa-face-smile-beam::before{content:"\f5b8"}.um .fa-smile-beam::before{content:"\f5b8"}.um .fa-flag-checkered::before{content:"\f11e"}.um .fa-football::before{content:"\f44e"}.um .fa-football-ball::before{content:"\f44e"}.um .fa-school-circle-exclamation::before{content:"\e56c"}.um .fa-crop::before{content:"\f125"}.um .fa-angles-down::before{content:"\f103"}.um .fa-angle-double-down::before{content:"\f103"}.um .fa-users-rectangle::before{content:"\e594"}.um .fa-people-roof::before{content:"\e537"}.um .fa-people-line::before{content:"\e534"}.um .fa-beer-mug-empty::before{content:"\f0fc"}.um .fa-beer::before{content:"\f0fc"}.um .fa-diagram-predecessor::before{content:"\e477"}.um .fa-arrow-up-long::before{content:"\f176"}.um .fa-long-arrow-up::before{content:"\f176"}.um .fa-fire-flame-simple::before{content:"\f46a"}.um .fa-burn::before{content:"\f46a"}.um .fa-person::before{content:"\f183"}.um .fa-male::before{content:"\f183"}.um .fa-laptop::before{content:"\f109"}.um .fa-file-csv::before{content:"\f6dd"}.um .fa-menorah::before{content:"\f676"}.um .fa-truck-plane::before{content:"\e58f"}.um .fa-record-vinyl::before{content:"\f8d9"}.um .fa-face-grin-stars::before{content:"\f587"}.um .fa-grin-stars::before{content:"\f587"}.um .fa-bong::before{content:"\f55c"}.um .fa-spaghetti-monster-flying::before{content:"\f67b"}.um .fa-pastafarianism::before{content:"\f67b"}.um .fa-arrow-down-up-across-line::before{content:"\e4af"}.um .fa-spoon::before{content:"\f2e5"}.um .fa-utensil-spoon::before{content:"\f2e5"}.um .fa-jar-wheat::before{content:"\e517"}.um .fa-envelopes-bulk::before{content:"\f674"}.um .fa-mail-bulk::before{content:"\f674"}.um .fa-file-circle-exclamation::before{content:"\e4eb"}.um .fa-circle-h::before{content:"\f47e"}.um .fa-hospital-symbol::before{content:"\f47e"}.um .fa-pager::before{content:"\f815"}.um .fa-address-book::before{content:"\f2b9"}.um .fa-contact-book::before{content:"\f2b9"}.um .fa-strikethrough::before{content:"\f0cc"}.um .fa-k::before{content:"K"}.um .fa-landmark-flag::before{content:"\e51c"}.um .fa-pencil::before{content:"\f303"}.um .fa-pencil-alt::before{content:"\f303"}.um .fa-backward::before{content:"\f04a"}.um .fa-caret-right::before{content:"\f0da"}.um .fa-comments::before{content:"\f086"}.um .fa-paste::before{content:"\f0ea"}.um .fa-file-clipboard::before{content:"\f0ea"}.um .fa-code-pull-request::before{content:"\e13c"}.um .fa-clipboard-list::before{content:"\f46d"}.um .fa-truck-ramp-box::before{content:"\f4de"}.um .fa-truck-loading::before{content:"\f4de"}.um .fa-user-check::before{content:"\f4fc"}.um .fa-vial-virus::before{content:"\e597"}.um .fa-sheet-plastic::before{content:"\e571"}.um .fa-blog::before{content:"\f781"}.um .fa-user-ninja::before{content:"\f504"}.um .fa-person-arrow-up-from-line::before{content:"\e539"}.um .fa-scroll-torah::before{content:"\f6a0"}.um .fa-torah::before{content:"\f6a0"}.um .fa-broom-ball::before{content:"\f458"}.um .fa-quidditch::before{content:"\f458"}.um .fa-quidditch-broom-ball::before{content:"\f458"}.um .fa-toggle-off::before{content:"\f204"}.um .fa-box-archive::before{content:"\f187"}.um .fa-archive::before{content:"\f187"}.um .fa-person-drowning::before{content:"\e545"}.um .fa-arrow-down-9-1::before{content:"\f886"}.um .fa-sort-numeric-desc::before{content:"\f886"}.um .fa-sort-numeric-down-alt::before{content:"\f886"}.um .fa-face-grin-tongue-squint::before{content:"\f58a"}.um .fa-grin-tongue-squint::before{content:"\f58a"}.um .fa-spray-can::before{content:"\f5bd"}.um .fa-truck-monster::before{content:"\f63b"}.um .fa-w::before{content:"W"}.um .fa-earth-africa::before{content:"\f57c"}.um .fa-globe-africa::before{content:"\f57c"}.um .fa-rainbow::before{content:"\f75b"}.um .fa-circle-notch::before{content:"\f1ce"}.um .fa-tablet-screen-button::before{content:"\f3fa"}.um .fa-tablet-alt::before{content:"\f3fa"}.um .fa-paw::before{content:"\f1b0"}.um .fa-cloud::before{content:"\f0c2"}.um .fa-trowel-bricks::before{content:"\e58a"}.um .fa-face-flushed::before{content:"\f579"}.um .fa-flushed::before{content:"\f579"}.um .fa-hospital-user::before{content:"\f80d"}.um .fa-tent-arrow-left-right::before{content:"\e57f"}.um .fa-gavel::before{content:"\f0e3"}.um .fa-legal::before{content:"\f0e3"}.um .fa-binoculars::before{content:"\f1e5"}.um .fa-microphone-slash::before{content:"\f131"}.um .fa-box-tissue::before{content:"\e05b"}.um .fa-motorcycle::before{content:"\f21c"}.um .fa-bell-concierge::before{content:"\f562"}.um .fa-concierge-bell::before{content:"\f562"}.um .fa-pen-ruler::before{content:"\f5ae"}.um .fa-pencil-ruler::before{content:"\f5ae"}.um .fa-people-arrows::before{content:"\e068"}.um .fa-people-arrows-left-right::before{content:"\e068"}.um .fa-mars-and-venus-burst::before{content:"\e523"}.um .fa-square-caret-right::before{content:"\f152"}.um .fa-caret-square-right::before{content:"\f152"}.um .fa-scissors::before{content:"\f0c4"}.um .fa-cut::before{content:"\f0c4"}.um .fa-sun-plant-wilt::before{content:"\e57a"}.um .fa-toilets-portable::before{content:"\e584"}.um .fa-hockey-puck::before{content:"\f453"}.um .fa-table::before{content:"\f0ce"}.um .fa-magnifying-glass-arrow-right::before{content:"\e521"}.um .fa-tachograph-digital::before{content:"\f566"}.um .fa-digital-tachograph::before{content:"\f566"}.um .fa-users-slash::before{content:"\e073"}.um .fa-clover::before{content:"\e139"}.um .fa-reply::before{content:"\f3e5"}.um .fa-mail-reply::before{content:"\f3e5"}.um .fa-star-and-crescent::before{content:"\f699"}.um .fa-house-fire::before{content:"\e50c"}.um .fa-square-minus::before{content:"\f146"}.um .fa-minus-square::before{content:"\f146"}.um .fa-helicopter::before{content:"\f533"}.um .fa-compass::before{content:"\f14e"}.um .fa-square-caret-down::before{content:"\f150"}.um .fa-caret-square-down::before{content:"\f150"}.um .fa-file-circle-question::before{content:"\e4ef"}.um .fa-laptop-code::before{content:"\f5fc"}.um .fa-swatchbook::before{content:"\f5c3"}.um .fa-prescription-bottle::before{content:"\f485"}.um .fa-bars::before{content:"\f0c9"}.um .fa-navicon::before{content:"\f0c9"}.um .fa-people-group::before{content:"\e533"}.um .fa-hourglass-end::before{content:"\f253"}.um .fa-hourglass-3::before{content:"\f253"}.um .fa-heart-crack::before{content:"\f7a9"}.um .fa-heart-broken::before{content:"\f7a9"}.um .fa-square-up-right::before{content:"\f360"}.um .fa-external-link-square-alt::before{content:"\f360"}.um .fa-face-kiss-beam::before{content:"\f597"}.um .fa-kiss-beam::before{content:"\f597"}.um .fa-film::before{content:"\f008"}.um .fa-ruler-horizontal::before{content:"\f547"}.um .fa-people-robbery::before{content:"\e536"}.um .fa-lightbulb::before{content:"\f0eb"}.um .fa-caret-left::before{content:"\f0d9"}.um .fa-circle-exclamation::before{content:"\f06a"}.um .fa-exclamation-circle::before{content:"\f06a"}.um .fa-school-circle-xmark::before{content:"\e56d"}.um .fa-arrow-right-from-bracket::before{content:"\f08b"}.um .fa-sign-out::before{content:"\f08b"}.um .fa-circle-chevron-down::before{content:"\f13a"}.um .fa-chevron-circle-down::before{content:"\f13a"}.um .fa-unlock-keyhole::before{content:"\f13e"}.um .fa-unlock-alt::before{content:"\f13e"}.um .fa-cloud-showers-heavy::before{content:"\f740"}.um .fa-headphones-simple::before{content:"\f58f"}.um .fa-headphones-alt::before{content:"\f58f"}.um .fa-sitemap::before{content:"\f0e8"}.um .fa-circle-dollar-to-slot::before{content:"\f4b9"}.um .fa-donate::before{content:"\f4b9"}.um .fa-memory::before{content:"\f538"}.um .fa-road-spikes::before{content:"\e568"}.um .fa-fire-burner::before{content:"\e4f1"}.um .fa-flag::before{content:"\f024"}.um .fa-hanukiah::before{content:"\f6e6"}.um .fa-feather::before{content:"\f52d"}.um .fa-volume-low::before{content:"\f027"}.um .fa-volume-down::before{content:"\f027"}.um .fa-comment-slash::before{content:"\f4b3"}.um .fa-cloud-sun-rain::before{content:"\f743"}.um .fa-compress::before{content:"\f066"}.um .fa-wheat-awn::before{content:"\e2cd"}.um .fa-wheat-alt::before{content:"\e2cd"}.um .fa-ankh::before{content:"\f644"}.um .fa-hands-holding-child::before{content:"\e4fa"}.um .fa-asterisk::before{content:"\*"}.um .fa-square-check::before{content:"\f14a"}.um .fa-check-square::before{content:"\f14a"}.um .fa-peseta-sign::before{content:"\e221"}.um .fa-heading::before{content:"\f1dc"}.um .fa-header::before{content:"\f1dc"}.um .fa-ghost::before{content:"\f6e2"}.um .fa-list::before{content:"\f03a"}.um .fa-list-squares::before{content:"\f03a"}.um .fa-square-phone-flip::before{content:"\f87b"}.um .fa-phone-square-alt::before{content:"\f87b"}.um .fa-cart-plus::before{content:"\f217"}.um .fa-gamepad::before{content:"\f11b"}.um .fa-circle-dot::before{content:"\f192"}.um .fa-dot-circle::before{content:"\f192"}.um .fa-face-dizzy::before{content:"\f567"}.um .fa-dizzy::before{content:"\f567"}.um .fa-egg::before{content:"\f7fb"}.um .fa-house-medical-circle-xmark::before{content:"\e513"}.um .fa-campground::before{content:"\f6bb"}.um .fa-folder-plus::before{content:"\f65e"}.um .fa-futbol::before{content:"\f1e3"}.um .fa-futbol-ball::before{content:"\f1e3"}.um .fa-soccer-ball::before{content:"\f1e3"}.um .fa-paintbrush::before{content:"\f1fc"}.um .fa-paint-brush::before{content:"\f1fc"}.um .fa-lock::before{content:"\f023"}.um .fa-gas-pump::before{content:"\f52f"}.um .fa-hot-tub-person::before{content:"\f593"}.um .fa-hot-tub::before{content:"\f593"}.um .fa-map-location::before{content:"\f59f"}.um .fa-map-marked::before{content:"\f59f"}.um .fa-house-flood-water::before{content:"\e50e"}.um .fa-tree::before{content:"\f1bb"}.um .fa-bridge-lock::before{content:"\e4cc"}.um .fa-sack-dollar::before{content:"\f81d"}.um .fa-pen-to-square::before{content:"\f044"}.um .fa-edit::before{content:"\f044"}.um .fa-car-side::before{content:"\f5e4"}.um .fa-share-nodes::before{content:"\f1e0"}.um .fa-share-alt::before{content:"\f1e0"}.um .fa-heart-circle-minus::before{content:"\e4ff"}.um .fa-hourglass-half::before{content:"\f252"}.um .fa-hourglass-2::before{content:"\f252"}.um .fa-microscope::before{content:"\f610"}.um .fa-sink::before{content:"\e06d"}.um .fa-bag-shopping::before{content:"\f290"}.um .fa-shopping-bag::before{content:"\f290"}.um .fa-arrow-down-z-a::before{content:"\f881"}.um .fa-sort-alpha-desc::before{content:"\f881"}.um .fa-sort-alpha-down-alt::before{content:"\f881"}.um .fa-mitten::before{content:"\f7b5"}.um .fa-person-rays::before{content:"\e54d"}.um .fa-users::before{content:"\f0c0"}.um .fa-eye-slash::before{content:"\f070"}.um .fa-flask-vial::before{content:"\e4f3"}.um .fa-hand::before{content:"\f256"}.um .fa-hand-paper::before{content:"\f256"}.um .fa-om::before{content:"\f679"}.um .fa-worm::before{content:"\e599"}.um .fa-house-circle-xmark::before{content:"\e50b"}.um .fa-plug::before{content:"\f1e6"}.um .fa-chevron-up::before{content:"\f077"}.um .fa-hand-spock::before{content:"\f259"}.um .fa-stopwatch::before{content:"\f2f2"}.um .fa-face-kiss::before{content:"\f596"}.um .fa-kiss::before{content:"\f596"}.um .fa-bridge-circle-xmark::before{content:"\e4cb"}.um .fa-face-grin-tongue::before{content:"\f589"}.um .fa-grin-tongue::before{content:"\f589"}.um .fa-chess-bishop::before{content:"\f43a"}.um .fa-face-grin-wink::before{content:"\f58c"}.um .fa-grin-wink::before{content:"\f58c"}.um .fa-ear-deaf::before{content:"\f2a4"}.um .fa-deaf::before{content:"\f2a4"}.um .fa-deafness::before{content:"\f2a4"}.um .fa-hard-of-hearing::before{content:"\f2a4"}.um .fa-road-circle-check::before{content:"\e564"}.um .fa-dice-five::before{content:"\f523"}.um .fa-square-rss::before{content:"\f143"}.um .fa-rss-square::before{content:"\f143"}.um .fa-land-mine-on::before{content:"\e51b"}.um .fa-i-cursor::before{content:"\f246"}.um .fa-stamp::before{content:"\f5bf"}.um .fa-stairs::before{content:"\e289"}.um .fa-i::before{content:"I"}.um .fa-hryvnia-sign::before{content:"\f6f2"}.um .fa-hryvnia::before{content:"\f6f2"}.um .fa-pills::before{content:"\f484"}.um .fa-face-grin-wide::before{content:"\f581"}.um .fa-grin-alt::before{content:"\f581"}.um .fa-tooth::before{content:"\f5c9"}.um .fa-v::before{content:"V"}.um .fa-bangladeshi-taka-sign::before{content:"\e2e6"}.um .fa-bicycle::before{content:"\f206"}.um .fa-staff-snake::before{content:"\e579"}.um .fa-rod-asclepius::before{content:"\e579"}.um .fa-rod-snake::before{content:"\e579"}.um .fa-staff-aesculapius::before{content:"\e579"}.um .fa-head-side-cough-slash::before{content:"\e062"}.um .fa-truck-medical::before{content:"\f0f9"}.um .fa-ambulance::before{content:"\f0f9"}.um .fa-wheat-awn-circle-exclamation::before{content:"\e598"}.um .fa-snowman::before{content:"\f7d0"}.um .fa-mortar-pestle::before{content:"\f5a7"}.um .fa-road-barrier::before{content:"\e562"}.um .fa-school::before{content:"\f549"}.um .fa-igloo::before{content:"\f7ae"}.um .fa-joint::before{content:"\f595"}.um .fa-angle-right::before{content:"\f105"}.um .fa-horse::before{content:"\f6f0"}.um .fa-q::before{content:"Q"}.um .fa-g::before{content:"G"}.um .fa-notes-medical::before{content:"\f481"}.um .fa-temperature-half::before{content:"\f2c9"}.um .fa-temperature-2::before{content:"\f2c9"}.um .fa-thermometer-2::before{content:"\f2c9"}.um .fa-thermometer-half::before{content:"\f2c9"}.um .fa-dong-sign::before{content:"\e169"}.um .fa-capsules::before{content:"\f46b"}.um .fa-poo-storm::before{content:"\f75a"}.um .fa-poo-bolt::before{content:"\f75a"}.um .fa-face-frown-open::before{content:"\f57a"}.um .fa-frown-open::before{content:"\f57a"}.um .fa-hand-point-up::before{content:"\f0a6"}.um .fa-money-bill::before{content:"\f0d6"}.um .fa-bookmark::before{content:"\f02e"}.um .fa-align-justify::before{content:"\f039"}.um .fa-umbrella-beach::before{content:"\f5ca"}.um .fa-helmet-un::before{content:"\e503"}.um .fa-bullseye::before{content:"\f140"}.um .fa-bacon::before{content:"\f7e5"}.um .fa-hand-point-down::before{content:"\f0a7"}.um .fa-arrow-up-from-bracket::before{content:"\e09a"}.um .fa-folder::before{content:"\f07b"}.um .fa-folder-blank::before{content:"\f07b"}.um .fa-file-waveform::before{content:"\f478"}.um .fa-file-medical-alt::before{content:"\f478"}.um .fa-radiation::before{content:"\f7b9"}.um .fa-chart-simple::before{content:"\e473"}.um .fa-mars-stroke::before{content:"\f229"}.um .fa-vial::before{content:"\f492"}.um .fa-gauge::before{content:"\f624"}.um .fa-dashboard::before{content:"\f624"}.um .fa-gauge-med::before{content:"\f624"}.um .fa-tachometer-alt-average::before{content:"\f624"}.um .fa-wand-magic-sparkles::before{content:"\e2ca"}.um .fa-magic-wand-sparkles::before{content:"\e2ca"}.um .fa-e::before{content:"E"}.um .fa-pen-clip::before{content:"\f305"}.um .fa-pen-alt::before{content:"\f305"}.um .fa-bridge-circle-exclamation::before{content:"\e4ca"}.um .fa-user::before{content:"\f007"}.um .fa-school-circle-check::before{content:"\e56b"}.um .fa-dumpster::before{content:"\f793"}.um .fa-van-shuttle::before{content:"\f5b6"}.um .fa-shuttle-van::before{content:"\f5b6"}.um .fa-building-user::before{content:"\e4da"}.um .fa-square-caret-left::before{content:"\f191"}.um .fa-caret-square-left::before{content:"\f191"}.um .fa-highlighter::before{content:"\f591"}.um .fa-key::before{content:"\f084"}.um .fa-bullhorn::before{content:"\f0a1"}.um .fa-globe::before{content:"\f0ac"}.um .fa-synagogue::before{content:"\f69b"}.um .fa-person-half-dress::before{content:"\e548"}.um .fa-road-bridge::before{content:"\e563"}.um .fa-location-arrow::before{content:"\f124"}.um .fa-c::before{content:"C"}.um .fa-tablet-button::before{content:"\f10a"}.um .fa-building-lock::before{content:"\e4d6"}.um .fa-pizza-slice::before{content:"\f818"}.um .fa-money-bill-wave::before{content:"\f53a"}.um .fa-chart-area::before{content:"\f1fe"}.um .fa-area-chart::before{content:"\f1fe"}.um .fa-house-flag::before{content:"\e50d"}.um .fa-person-circle-minus::before{content:"\e540"}.um .fa-ban::before{content:"\f05e"}.um .fa-cancel::before{content:"\f05e"}.um .fa-camera-rotate::before{content:"\e0d8"}.um .fa-spray-can-sparkles::before{content:"\f5d0"}.um .fa-air-freshener::before{content:"\f5d0"}.um .fa-star::before{content:"\f005"}.um .fa-repeat::before{content:"\f363"}.um .fa-cross::before{content:"\f654"}.um .fa-box::before{content:"\f466"}.um .fa-venus-mars::before{content:"\f228"}.um .fa-arrow-pointer::before{content:"\f245"}.um .fa-mouse-pointer::before{content:"\f245"}.um .fa-maximize::before{content:"\f31e"}.um .fa-expand-arrows-alt::before{content:"\f31e"}.um .fa-charging-station::before{content:"\f5e7"}.um .fa-shapes::before{content:"\f61f"}.um .fa-triangle-circle-square::before{content:"\f61f"}.um .fa-shuffle::before{content:"\f074"}.um .fa-random::before{content:"\f074"}.um .fa-person-running::before{content:"\f70c"}.um .fa-running::before{content:"\f70c"}.um .fa-mobile-retro::before{content:"\e527"}.um .fa-grip-lines-vertical::before{content:"\f7a5"}.um .fa-spider::before{content:"\f717"}.um .fa-hands-bound::before{content:"\e4f9"}.um .fa-file-invoice-dollar::before{content:"\f571"}.um .fa-plane-circle-exclamation::before{content:"\e556"}.um .fa-x-ray::before{content:"\f497"}.um .fa-spell-check::before{content:"\f891"}.um .fa-slash::before{content:"\f715"}.um .fa-computer-mouse::before{content:"\f8cc"}.um .fa-mouse::before{content:"\f8cc"}.um .fa-arrow-right-to-bracket::before{content:"\f090"}.um .fa-sign-in::before{content:"\f090"}.um .fa-shop-slash::before{content:"\e070"}.um .fa-store-alt-slash::before{content:"\e070"}.um .fa-server::before{content:"\f233"}.um .fa-virus-covid-slash::before{content:"\e4a9"}.um .fa-shop-lock::before{content:"\e4a5"}.um .fa-hourglass-start::before{content:"\f251"}.um .fa-hourglass-1::before{content:"\f251"}.um .fa-blender-phone::before{content:"\f6b6"}.um .fa-building-wheat::before{content:"\e4db"}.um .fa-person-breastfeeding::before{content:"\e53a"}.um .fa-right-to-bracket::before{content:"\f2f6"}.um .fa-sign-in-alt::before{content:"\f2f6"}.um .fa-venus::before{content:"\f221"}.um .fa-passport::before{content:"\f5ab"}.um .fa-heart-pulse::before{content:"\f21e"}.um .fa-heartbeat::before{content:"\f21e"}.um .fa-people-carry-box::before{content:"\f4ce"}.um .fa-people-carry::before{content:"\f4ce"}.um .fa-temperature-high::before{content:"\f769"}.um .fa-microchip::before{content:"\f2db"}.um .fa-crown::before{content:"\f521"}.um .fa-weight-hanging::before{content:"\f5cd"}.um .fa-xmarks-lines::before{content:"\e59a"}.um .fa-file-prescription::before{content:"\f572"}.um .fa-weight-scale::before{content:"\f496"}.um .fa-weight::before{content:"\f496"}.um .fa-user-group::before{content:"\f500"}.um .fa-user-friends::before{content:"\f500"}.um .fa-arrow-up-a-z::before{content:"\f15e"}.um .fa-sort-alpha-up::before{content:"\f15e"}.um .fa-chess-knight::before{content:"\f441"}.um .fa-face-laugh-squint::before{content:"\f59b"}.um .fa-laugh-squint::before{content:"\f59b"}.um .fa-wheelchair::before{content:"\f193"}.um .fa-circle-arrow-up::before{content:"\f0aa"}.um .fa-arrow-circle-up::before{content:"\f0aa"}.um .fa-toggle-on::before{content:"\f205"}.um .fa-person-walking::before{content:"\f554"}.um .fa-walking::before{content:"\f554"}.um .fa-l::before{content:"L"}.um .fa-fire::before{content:"\f06d"}.um .fa-bed-pulse::before{content:"\f487"}.um .fa-procedures::before{content:"\f487"}.um .fa-shuttle-space::before{content:"\f197"}.um .fa-space-shuttle::before{content:"\f197"}.um .fa-face-laugh::before{content:"\f599"}.um .fa-laugh::before{content:"\f599"}.um .fa-folder-open::before{content:"\f07c"}.um .fa-heart-circle-plus::before{content:"\e500"}.um .fa-code-fork::before{content:"\e13b"}.um .fa-city::before{content:"\f64f"}.um .fa-microphone-lines::before{content:"\f3c9"}.um .fa-microphone-alt::before{content:"\f3c9"}.um .fa-pepper-hot::before{content:"\f816"}.um .fa-unlock::before{content:"\f09c"}.um .fa-colon-sign::before{content:"\e140"}.um .fa-headset::before{content:"\f590"}.um .fa-store-slash::before{content:"\e071"}.um .fa-road-circle-xmark::before{content:"\e566"}.um .fa-user-minus::before{content:"\f503"}.um .fa-mars-stroke-up::before{content:"\f22a"}.um .fa-mars-stroke-v::before{content:"\f22a"}.um .fa-champagne-glasses::before{content:"\f79f"}.um .fa-glass-cheers::before{content:"\f79f"}.um .fa-clipboard::before{content:"\f328"}.um .fa-house-circle-exclamation::before{content:"\e50a"}.um .fa-file-arrow-up::before{content:"\f574"}.um .fa-file-upload::before{content:"\f574"}.um .fa-wifi::before{content:"\f1eb"}.um .fa-wifi-3::before{content:"\f1eb"}.um .fa-wifi-strong::before{content:"\f1eb"}.um .fa-bath::before{content:"\f2cd"}.um .fa-bathtub::before{content:"\f2cd"}.um .fa-underline::before{content:"\f0cd"}.um .fa-user-pen::before{content:"\f4ff"}.um .fa-user-edit::before{content:"\f4ff"}.um .fa-signature::before{content:"\f5b7"}.um .fa-stroopwafel::before{content:"\f551"}.um .fa-bold::before{content:"\f032"}.um .fa-anchor-lock::before{content:"\e4ad"}.um .fa-building-ngo::before{content:"\e4d7"}.um .fa-manat-sign::before{content:"\e1d5"}.um .fa-not-equal::before{content:"\f53e"}.um .fa-border-top-left::before{content:"\f853"}.um .fa-border-style::before{content:"\f853"}.um .fa-map-location-dot::before{content:"\f5a0"}.um .fa-map-marked-alt::before{content:"\f5a0"}.um .fa-jedi::before{content:"\f669"}.um .fa-square-poll-vertical::before{content:"\f681"}.um .fa-poll::before{content:"\f681"}.um .fa-mug-hot::before{content:"\f7b6"}.um .fa-car-battery::before{content:"\f5df"}.um .fa-battery-car::before{content:"\f5df"}.um .fa-gift::before{content:"\f06b"}.um .fa-dice-two::before{content:"\f528"}.um .fa-chess-queen::before{content:"\f445"}.um .fa-glasses::before{content:"\f530"}.um .fa-chess-board::before{content:"\f43c"}.um .fa-building-circle-check::before{content:"\e4d2"}.um .fa-person-chalkboard::before{content:"\e53d"}.um .fa-mars-stroke-right::before{content:"\f22b"}.um .fa-mars-stroke-h::before{content:"\f22b"}.um .fa-hand-back-fist::before{content:"\f255"}.um .fa-hand-rock::before{content:"\f255"}.um .fa-square-caret-up::before{content:"\f151"}.um .fa-caret-square-up::before{content:"\f151"}.um .fa-cloud-showers-water::before{content:"\e4e4"}.um .fa-chart-bar::before{content:"\f080"}.um .fa-bar-chart::before{content:"\f080"}.um .fa-hands-bubbles::before{content:"\e05e"}.um .fa-hands-wash::before{content:"\e05e"}.um .fa-less-than-equal::before{content:"\f537"}.um .fa-train::before{content:"\f238"}.um .fa-eye-low-vision::before{content:"\f2a8"}.um .fa-low-vision::before{content:"\f2a8"}.um .fa-crow::before{content:"\f520"}.um .fa-sailboat::before{content:"\e445"}.um .fa-window-restore::before{content:"\f2d2"}.um .fa-square-plus::before{content:"\f0fe"}.um .fa-plus-square::before{content:"\f0fe"}.um .fa-torii-gate::before{content:"\f6a1"}.um .fa-frog::before{content:"\f52e"}.um .fa-bucket::before{content:"\e4cf"}.um .fa-image::before{content:"\f03e"}.um .fa-microphone::before{content:"\f130"}.um .fa-cow::before{content:"\f6c8"}.um .fa-caret-up::before{content:"\f0d8"}.um .fa-screwdriver::before{content:"\f54a"}.um .fa-folder-closed::before{content:"\e185"}.um .fa-house-tsunami::before{content:"\e515"}.um .fa-square-nfi::before{content:"\e576"}.um .fa-arrow-up-from-ground-water::before{content:"\e4b5"}.um .fa-martini-glass::before{content:"\f57b"}.um .fa-glass-martini-alt::before{content:"\f57b"}.um .fa-rotate-left::before{content:"\f2ea"}.um .fa-rotate-back::before{content:"\f2ea"}.um .fa-rotate-backward::before{content:"\f2ea"}.um .fa-undo-alt::before{content:"\f2ea"}.um .fa-table-columns::before{content:"\f0db"}.um .fa-columns::before{content:"\f0db"}.um .fa-lemon::before{content:"\f094"}.um .fa-head-side-mask::before{content:"\e063"}.um .fa-handshake::before{content:"\f2b5"}.um .fa-gem::before{content:"\f3a5"}.um .fa-dolly::before{content:"\f472"}.um .fa-dolly-box::before{content:"\f472"}.um .fa-smoking::before{content:"\f48d"}.um .fa-minimize::before{content:"\f78c"}.um .fa-compress-arrows-alt::before{content:"\f78c"}.um .fa-monument::before{content:"\f5a6"}.um .fa-snowplow::before{content:"\f7d2"}.um .fa-angles-right::before{content:"\f101"}.um .fa-angle-double-right::before{content:"\f101"}.um .fa-cannabis::before{content:"\f55f"}.um .fa-circle-play::before{content:"\f144"}.um .fa-play-circle::before{content:"\f144"}.um .fa-tablets::before{content:"\f490"}.um .fa-ethernet::before{content:"\f796"}.um .fa-euro-sign::before{content:"\f153"}.um .fa-eur::before{content:"\f153"}.um .fa-euro::before{content:"\f153"}.um .fa-chair::before{content:"\f6c0"}.um .fa-circle-check::before{content:"\f058"}.um .fa-check-circle::before{content:"\f058"}.um .fa-circle-stop::before{content:"\f28d"}.um .fa-stop-circle::before{content:"\f28d"}.um .fa-compass-drafting::before{content:"\f568"}.um .fa-drafting-compass::before{content:"\f568"}.um .fa-plate-wheat::before{content:"\e55a"}.um .fa-icicles::before{content:"\f7ad"}.um .fa-person-shelter::before{content:"\e54f"}.um .fa-neuter::before{content:"\f22c"}.um .fa-id-badge::before{content:"\f2c1"}.um .fa-marker::before{content:"\f5a1"}.um .fa-face-laugh-beam::before{content:"\f59a"}.um .fa-laugh-beam::before{content:"\f59a"}.um .fa-helicopter-symbol::before{content:"\e502"}.um .fa-universal-access::before{content:"\f29a"}.um .fa-circle-chevron-up::before{content:"\f139"}.um .fa-chevron-circle-up::before{content:"\f139"}.um .fa-lari-sign::before{content:"\e1c8"}.um .fa-volcano::before{content:"\f770"}.um .fa-person-walking-dashed-line-arrow-right::before{content:"\e553"}.um .fa-sterling-sign::before{content:"\f154"}.um .fa-gbp::before{content:"\f154"}.um .fa-pound-sign::before{content:"\f154"}.um .fa-viruses::before{content:"\e076"}.um .fa-square-person-confined::before{content:"\e577"}.um .fa-user-tie::before{content:"\f508"}.um .fa-arrow-down-long::before{content:"\f175"}.um .fa-long-arrow-down::before{content:"\f175"}.um .fa-tent-arrow-down-to-line::before{content:"\e57e"}.um .fa-certificate::before{content:"\f0a3"}.um .fa-reply-all::before{content:"\f122"}.um .fa-mail-reply-all::before{content:"\f122"}.um .fa-suitcase::before{content:"\f0f2"}.um .fa-person-skating::before{content:"\f7c5"}.um .fa-skating::before{content:"\f7c5"}.um .fa-filter-circle-dollar::before{content:"\f662"}.um .fa-funnel-dollar::before{content:"\f662"}.um .fa-camera-retro::before{content:"\f083"}.um .fa-circle-arrow-down::before{content:"\f0ab"}.um .fa-arrow-circle-down::before{content:"\f0ab"}.um .fa-file-import::before{content:"\f56f"}.um .fa-arrow-right-to-file::before{content:"\f56f"}.um .fa-square-arrow-up-right::before{content:"\f14c"}.um .fa-external-link-square::before{content:"\f14c"}.um .fa-box-open::before{content:"\f49e"}.um .fa-scroll::before{content:"\f70e"}.um .fa-spa::before{content:"\f5bb"}.um .fa-location-pin-lock::before{content:"\e51f"}.um .fa-pause::before{content:"\f04c"}.um .fa-hill-avalanche::before{content:"\e507"}.um .fa-temperature-empty::before{content:"\f2cb"}.um .fa-temperature-0::before{content:"\f2cb"}.um .fa-thermometer-0::before{content:"\f2cb"}.um .fa-thermometer-empty::before{content:"\f2cb"}.um .fa-bomb::before{content:"\f1e2"}.um .fa-registered::before{content:"\f25d"}.um .fa-address-card::before{content:"\f2bb"}.um .fa-contact-card::before{content:"\f2bb"}.um .fa-vcard::before{content:"\f2bb"}.um .fa-scale-unbalanced-flip::before{content:"\f516"}.um .fa-balance-scale-right::before{content:"\f516"}.um .fa-subscript::before{content:"\f12c"}.um .fa-diamond-turn-right::before{content:"\f5eb"}.um .fa-directions::before{content:"\f5eb"}.um .fa-burst::before{content:"\e4dc"}.um .fa-house-laptop::before{content:"\e066"}.um .fa-laptop-house::before{content:"\e066"}.um .fa-face-tired::before{content:"\f5c8"}.um .fa-tired::before{content:"\f5c8"}.um .fa-money-bills::before{content:"\e1f3"}.um .fa-smog::before{content:"\f75f"}.um .fa-crutch::before{content:"\f7f7"}.um .fa-cloud-arrow-up::before{content:"\f0ee"}.um .fa-cloud-upload::before{content:"\f0ee"}.um .fa-cloud-upload-alt::before{content:"\f0ee"}.um .fa-palette::before{content:"\f53f"}.um .fa-arrows-turn-right::before{content:"\e4c0"}.um .fa-vest::before{content:"\e085"}.um .fa-ferry::before{content:"\e4ea"}.um .fa-arrows-down-to-people::before{content:"\e4b9"}.um .fa-seedling::before{content:"\f4d8"}.um .fa-sprout::before{content:"\f4d8"}.um .fa-left-right::before{content:"\f337"}.um .fa-arrows-alt-h::before{content:"\f337"}.um .fa-boxes-packing::before{content:"\e4c7"}.um .fa-circle-arrow-left::before{content:"\f0a8"}.um .fa-arrow-circle-left::before{content:"\f0a8"}.um .fa-group-arrows-rotate::before{content:"\e4f6"}.um .fa-bowl-food::before{content:"\e4c6"}.um .fa-candy-cane::before{content:"\f786"}.um .fa-arrow-down-wide-short::before{content:"\f160"}.um .fa-sort-amount-asc::before{content:"\f160"}.um .fa-sort-amount-down::before{content:"\f160"}.um .fa-cloud-bolt::before{content:"\f76c"}.um .fa-thunderstorm::before{content:"\f76c"}.um .fa-text-slash::before{content:"\f87d"}.um .fa-remove-format::before{content:"\f87d"}.um .fa-face-smile-wink::before{content:"\f4da"}.um .fa-smile-wink::before{content:"\f4da"}.um .fa-file-word::before{content:"\f1c2"}.um .fa-file-powerpoint::before{content:"\f1c4"}.um .fa-arrows-left-right::before{content:"\f07e"}.um .fa-arrows-h::before{content:"\f07e"}.um .fa-house-lock::before{content:"\e510"}.um .fa-cloud-arrow-down::before{content:"\f0ed"}.um .fa-cloud-download::before{content:"\f0ed"}.um .fa-cloud-download-alt::before{content:"\f0ed"}.um .fa-children::before{content:"\e4e1"}.um .fa-chalkboard::before{content:"\f51b"}.um .fa-blackboard::before{content:"\f51b"}.um .fa-user-large-slash::before{content:"\f4fa"}.um .fa-user-alt-slash::before{content:"\f4fa"}.um .fa-envelope-open::before{content:"\f2b6"}.um .fa-handshake-simple-slash::before{content:"\e05f"}.um .fa-handshake-alt-slash::before{content:"\e05f"}.um .fa-mattress-pillow::before{content:"\e525"}.um .fa-guarani-sign::before{content:"\e19a"}.um .fa-arrows-rotate::before{content:"\f021"}.um .fa-refresh::before{content:"\f021"}.um .fa-sync::before{content:"\f021"}.um .fa-fire-extinguisher::before{content:"\f134"}.um .fa-cruzeiro-sign::before{content:"\e152"}.um .fa-greater-than-equal::before{content:"\f532"}.um .fa-shield-halved::before{content:"\f3ed"}.um .fa-shield-alt::before{content:"\f3ed"}.um .fa-book-atlas::before{content:"\f558"}.um .fa-atlas::before{content:"\f558"}.um .fa-virus::before{content:"\e074"}.um .fa-envelope-circle-check::before{content:"\e4e8"}.um .fa-layer-group::before{content:"\f5fd"}.um .fa-arrows-to-dot::before{content:"\e4be"}.um .fa-archway::before{content:"\f557"}.um .fa-heart-circle-check::before{content:"\e4fd"}.um .fa-house-chimney-crack::before{content:"\f6f1"}.um .fa-house-damage::before{content:"\f6f1"}.um .fa-file-zipper::before{content:"\f1c6"}.um .fa-file-archive::before{content:"\f1c6"}.um .fa-square::before{content:"\f0c8"}.um .fa-martini-glass-empty::before{content:"\f000"}.um .fa-glass-martini::before{content:"\f000"}.um .fa-couch::before{content:"\f4b8"}.um .fa-cedi-sign::before{content:"\e0df"}.um .fa-italic::before{content:"\f033"}.um .fa-table-cells-column-lock::before{content:"\e678"}.um .fa-church::before{content:"\f51d"}.um .fa-comments-dollar::before{content:"\f653"}.um .fa-democrat::before{content:"\f747"}.um .fa-z::before{content:"Z"}.um .fa-person-skiing::before{content:"\f7c9"}.um .fa-skiing::before{content:"\f7c9"}.um .fa-road-lock::before{content:"\e567"}.um .fa-a::before{content:"A"}.um .fa-temperature-arrow-down::before{content:"\e03f"}.um .fa-temperature-down::before{content:"\e03f"}.um .fa-feather-pointed::before{content:"\f56b"}.um .fa-feather-alt::before{content:"\f56b"}.um .fa-p::before{content:"P"}.um .fa-snowflake::before{content:"\f2dc"}.um .fa-newspaper::before{content:"\f1ea"}.um .fa-rectangle-ad::before{content:"\f641"}.um .fa-ad::before{content:"\f641"}.um .fa-circle-arrow-right::before{content:"\f0a9"}.um .fa-arrow-circle-right::before{content:"\f0a9"}.um .fa-filter-circle-xmark::before{content:"\e17b"}.um .fa-locust::before{content:"\e520"}.um .fa-sort::before{content:"\f0dc"}.um .fa-unsorted::before{content:"\f0dc"}.um .fa-list-ol::before{content:"\f0cb"}.um .fa-list-1-2::before{content:"\f0cb"}.um .fa-list-numeric::before{content:"\f0cb"}.um .fa-person-dress-burst::before{content:"\e544"}.um .fa-money-check-dollar::before{content:"\f53d"}.um .fa-money-check-alt::before{content:"\f53d"}.um .fa-vector-square::before{content:"\f5cb"}.um .fa-bread-slice::before{content:"\f7ec"}.um .fa-language::before{content:"\f1ab"}.um .fa-face-kiss-wink-heart::before{content:"\f598"}.um .fa-kiss-wink-heart::before{content:"\f598"}.um .fa-filter::before{content:"\f0b0"}.um .fa-question::before{content:"\?"}.um .fa-file-signature::before{content:"\f573"}.um .fa-up-down-left-right::before{content:"\f0b2"}.um .fa-arrows-alt::before{content:"\f0b2"}.um .fa-house-chimney-user::before{content:"\e065"}.um .fa-hand-holding-heart::before{content:"\f4be"}.um .fa-puzzle-piece::before{content:"\f12e"}.um .fa-money-check::before{content:"\f53c"}.um .fa-star-half-stroke::before{content:"\f5c0"}.um .fa-star-half-alt::before{content:"\f5c0"}.um .fa-code::before{content:"\f121"}.um .fa-whiskey-glass::before{content:"\f7a0"}.um .fa-glass-whiskey::before{content:"\f7a0"}.um .fa-building-circle-exclamation::before{content:"\e4d3"}.um .fa-magnifying-glass-chart::before{content:"\e522"}.um .fa-arrow-up-right-from-square::before{content:"\f08e"}.um .fa-external-link::before{content:"\f08e"}.um .fa-cubes-stacked::before{content:"\e4e6"}.um .fa-won-sign::before{content:"\f159"}.um .fa-krw::before{content:"\f159"}.um .fa-won::before{content:"\f159"}.um .fa-virus-covid::before{content:"\e4a8"}.um .fa-austral-sign::before{content:"\e0a9"}.um .fa-f::before{content:"F"}.um .fa-leaf::before{content:"\f06c"}.um .fa-road::before{content:"\f018"}.um .fa-taxi::before{content:"\f1ba"}.um .fa-cab::before{content:"\f1ba"}.um .fa-person-circle-plus::before{content:"\e541"}.um .fa-chart-pie::before{content:"\f200"}.um .fa-pie-chart::before{content:"\f200"}.um .fa-bolt-lightning::before{content:"\e0b7"}.um .fa-sack-xmark::before{content:"\e56a"}.um .fa-file-excel::before{content:"\f1c3"}.um .fa-file-contract::before{content:"\f56c"}.um .fa-fish-fins::before{content:"\e4f2"}.um .fa-building-flag::before{content:"\e4d5"}.um .fa-face-grin-beam::before{content:"\f582"}.um .fa-grin-beam::before{content:"\f582"}.um .fa-object-ungroup::before{content:"\f248"}.um .fa-poop::before{content:"\f619"}.um .fa-location-pin::before{content:"\f041"}.um .fa-map-marker::before{content:"\f041"}.um .fa-kaaba::before{content:"\f66b"}.um .fa-toilet-paper::before{content:"\f71e"}.um .fa-helmet-safety::before{content:"\f807"}.um .fa-hard-hat::before{content:"\f807"}.um .fa-hat-hard::before{content:"\f807"}.um .fa-eject::before{content:"\f052"}.um .fa-circle-right::before{content:"\f35a"}.um .fa-arrow-alt-circle-right::before{content:"\f35a"}.um .fa-plane-circle-check::before{content:"\e555"}.um .fa-face-rolling-eyes::before{content:"\f5a5"}.um .fa-meh-rolling-eyes::before{content:"\f5a5"}.um .fa-object-group::before{content:"\f247"}.um .fa-chart-line::before{content:"\f201"}.um .fa-line-chart::before{content:"\f201"}.um .fa-mask-ventilator::before{content:"\e524"}.um .fa-arrow-right::before{content:"\f061"}.um .fa-signs-post::before{content:"\f277"}.um .fa-map-signs::before{content:"\f277"}.um .fa-cash-register::before{content:"\f788"}.um .fa-person-circle-question::before{content:"\e542"}.um .fa-h::before{content:"H"}.um .fa-tarp::before{content:"\e57b"}.um .fa-screwdriver-wrench::before{content:"\f7d9"}.um .fa-tools::before{content:"\f7d9"}.um .fa-arrows-to-eye::before{content:"\e4bf"}.um .fa-plug-circle-bolt::before{content:"\e55b"}.um .fa-heart::before{content:"\f004"}.um .fa-mars-and-venus::before{content:"\f224"}.um .fa-house-user::before{content:"\e1b0"}.um .fa-home-user::before{content:"\e1b0"}.um .fa-dumpster-fire::before{content:"\f794"}.um .fa-house-crack::before{content:"\e3b1"}.um .fa-martini-glass-citrus::before{content:"\f561"}.um .fa-cocktail::before{content:"\f561"}.um .fa-face-surprise::before{content:"\f5c2"}.um .fa-surprise::before{content:"\f5c2"}.um .fa-bottle-water::before{content:"\e4c5"}.um .fa-circle-pause::before{content:"\f28b"}.um .fa-pause-circle::before{content:"\f28b"}.um .fa-toilet-paper-slash::before{content:"\e072"}.um .fa-apple-whole::before{content:"\f5d1"}.um .fa-apple-alt::before{content:"\f5d1"}.um .fa-kitchen-set::before{content:"\e51a"}.um .fa-r::before{content:"R"}.um .fa-temperature-quarter::before{content:"\f2ca"}.um .fa-temperature-1::before{content:"\f2ca"}.um .fa-thermometer-1::before{content:"\f2ca"}.um .fa-thermometer-quarter::before{content:"\f2ca"}.um .fa-cube::before{content:"\f1b2"}.um .fa-bitcoin-sign::before{content:"\e0b4"}.um .fa-shield-dog::before{content:"\e573"}.um .fa-solar-panel::before{content:"\f5ba"}.um .fa-lock-open::before{content:"\f3c1"}.um .fa-elevator::before{content:"\e16d"}.um .fa-money-bill-transfer::before{content:"\e528"}.um .fa-money-bill-trend-up::before{content:"\e529"}.um .fa-house-flood-water-circle-arrow-right::before{content:"\e50f"}.um .fa-square-poll-horizontal::before{content:"\f682"}.um .fa-poll-h::before{content:"\f682"}.um .fa-circle::before{content:"\f111"}.um .fa-backward-fast::before{content:"\f049"}.um .fa-fast-backward::before{content:"\f049"}.um .fa-recycle::before{content:"\f1b8"}.um .fa-user-astronaut::before{content:"\f4fb"}.um .fa-plane-slash::before{content:"\e069"}.um .fa-trademark::before{content:"\f25c"}.um .fa-basketball::before{content:"\f434"}.um .fa-basketball-ball::before{content:"\f434"}.um .fa-satellite-dish::before{content:"\f7c0"}.um .fa-circle-up::before{content:"\f35b"}.um .fa-arrow-alt-circle-up::before{content:"\f35b"}.um .fa-mobile-screen-button::before{content:"\f3cd"}.um .fa-mobile-alt::before{content:"\f3cd"}.um .fa-volume-high::before{content:"\f028"}.um .fa-volume-up::before{content:"\f028"}.um .fa-users-rays::before{content:"\e593"}.um .fa-wallet::before{content:"\f555"}.um .fa-clipboard-check::before{content:"\f46c"}.um .fa-file-audio::before{content:"\f1c7"}.um .fa-burger::before{content:"\f805"}.um .fa-hamburger::before{content:"\f805"}.um .fa-wrench::before{content:"\f0ad"}.um .fa-bugs::before{content:"\e4d0"}.um .fa-rupee-sign::before{content:"\f156"}.um .fa-rupee::before{content:"\f156"}.um .fa-file-image::before{content:"\f1c5"}.um .fa-circle-question::before{content:"\f059"}.um .fa-question-circle::before{content:"\f059"}.um .fa-plane-departure::before{content:"\f5b0"}.um .fa-handshake-slash::before{content:"\e060"}.um .fa-book-bookmark::before{content:"\e0bb"}.um .fa-code-branch::before{content:"\f126"}.um .fa-hat-cowboy::before{content:"\f8c0"}.um .fa-bridge::before{content:"\e4c8"}.um .fa-phone-flip::before{content:"\f879"}.um .fa-phone-alt::before{content:"\f879"}.um .fa-truck-front::before{content:"\e2b7"}.um .fa-cat::before{content:"\f6be"}.um .fa-anchor-circle-exclamation::before{content:"\e4ab"}.um .fa-truck-field::before{content:"\e58d"}.um .fa-route::before{content:"\f4d7"}.um .fa-clipboard-question::before{content:"\e4e3"}.um .fa-panorama::before{content:"\e209"}.um .fa-comment-medical::before{content:"\f7f5"}.um .fa-teeth-open::before{content:"\f62f"}.um .fa-file-circle-minus::before{content:"\e4ed"}.um .fa-tags::before{content:"\f02c"}.um .fa-wine-glass::before{content:"\f4e3"}.um .fa-forward-fast::before{content:"\f050"}.um .fa-fast-forward::before{content:"\f050"}.um .fa-face-meh-blank::before{content:"\f5a4"}.um .fa-meh-blank::before{content:"\f5a4"}.um .fa-square-parking::before{content:"\f540"}.um .fa-parking::before{content:"\f540"}.um .fa-house-signal::before{content:"\e012"}.um .fa-bars-progress::before{content:"\f828"}.um .fa-tasks-alt::before{content:"\f828"}.um .fa-faucet-drip::before{content:"\e006"}.um .fa-cart-flatbed::before{content:"\f474"}.um .fa-dolly-flatbed::before{content:"\f474"}.um .fa-ban-smoking::before{content:"\f54d"}.um .fa-smoking-ban::before{content:"\f54d"}.um .fa-terminal::before{content:"\f120"}.um .fa-mobile-button::before{content:"\f10b"}.um .fa-house-medical-flag::before{content:"\e514"}.um .fa-basket-shopping::before{content:"\f291"}.um .fa-shopping-basket::before{content:"\f291"}.um .fa-tape::before{content:"\f4db"}.um .fa-bus-simple::before{content:"\f55e"}.um .fa-bus-alt::before{content:"\f55e"}.um .fa-eye::before{content:"\f06e"}.um .fa-face-sad-cry::before{content:"\f5b3"}.um .fa-sad-cry::before{content:"\f5b3"}.um .fa-audio-description::before{content:"\f29e"}.um .fa-person-military-to-person::before{content:"\e54c"}.um .fa-file-shield::before{content:"\e4f0"}.um .fa-user-slash::before{content:"\f506"}.um .fa-pen::before{content:"\f304"}.um .fa-tower-observation::before{content:"\e586"}.um .fa-file-code::before{content:"\f1c9"}.um .fa-signal::before{content:"\f012"}.um .fa-signal-5::before{content:"\f012"}.um .fa-signal-perfect::before{content:"\f012"}.um .fa-bus::before{content:"\f207"}.um .fa-heart-circle-xmark::before{content:"\e501"}.um .fa-house-chimney::before{content:"\e3af"}.um .fa-home-lg::before{content:"\e3af"}.um .fa-window-maximize::before{content:"\f2d0"}.um .fa-face-frown::before{content:"\f119"}.um .fa-frown::before{content:"\f119"}.um .fa-prescription::before{content:"\f5b1"}.um .fa-shop::before{content:"\f54f"}.um .fa-store-alt::before{content:"\f54f"}.um .fa-floppy-disk::before{content:"\f0c7"}.um .fa-save::before{content:"\f0c7"}.um .fa-vihara::before{content:"\f6a7"}.um .fa-scale-unbalanced::before{content:"\f515"}.um .fa-balance-scale-left::before{content:"\f515"}.um .fa-sort-up::before{content:"\f0de"}.um .fa-sort-asc::before{content:"\f0de"}.um .fa-comment-dots::before{content:"\f4ad"}.um .fa-commenting::before{content:"\f4ad"}.um .fa-plant-wilt::before{content:"\e5aa"}.um .fa-diamond::before{content:"\f219"}.um .fa-face-grin-squint::before{content:"\f585"}.um .fa-grin-squint::before{content:"\f585"}.um .fa-hand-holding-dollar::before{content:"\f4c0"}.um .fa-hand-holding-usd::before{content:"\f4c0"}.um .fa-bacterium::before{content:"\e05a"}.um .fa-hand-pointer::before{content:"\f25a"}.um .fa-drum-steelpan::before{content:"\f56a"}.um .fa-hand-scissors::before{content:"\f257"}.um .fa-hands-praying::before{content:"\f684"}.um .fa-praying-hands::before{content:"\f684"}.um .fa-arrow-rotate-right::before{content:"\f01e"}.um .fa-arrow-right-rotate::before{content:"\f01e"}.um .fa-arrow-rotate-forward::before{content:"\f01e"}.um .fa-redo::before{content:"\f01e"}.um .fa-biohazard::before{content:"\f780"}.um .fa-location-crosshairs::before{content:"\f601"}.um .fa-location::before{content:"\f601"}.um .fa-mars-double::before{content:"\f227"}.um .fa-child-dress::before{content:"\e59c"}.um .fa-users-between-lines::before{content:"\e591"}.um .fa-lungs-virus::before{content:"\e067"}.um .fa-face-grin-tears::before{content:"\f588"}.um .fa-grin-tears::before{content:"\f588"}.um .fa-phone::before{content:"\f095"}.um .fa-calendar-xmark::before{content:"\f273"}.um .fa-calendar-times::before{content:"\f273"}.um .fa-child-reaching::before{content:"\e59d"}.um .fa-head-side-virus::before{content:"\e064"}.um .fa-user-gear::before{content:"\f4fe"}.um .fa-user-cog::before{content:"\f4fe"}.um .fa-arrow-up-1-9::before{content:"\f163"}.um .fa-sort-numeric-up::before{content:"\f163"}.um .fa-door-closed::before{content:"\f52a"}.um .fa-shield-virus::before{content:"\e06c"}.um .fa-dice-six::before{content:"\f526"}.um .fa-mosquito-net::before{content:"\e52c"}.um .fa-bridge-water::before{content:"\e4ce"}.um .fa-person-booth::before{content:"\f756"}.um .fa-text-width::before{content:"\f035"}.um .fa-hat-wizard::before{content:"\f6e8"}.um .fa-pen-fancy::before{content:"\f5ac"}.um .fa-person-digging::before{content:"\f85e"}.um .fa-digging::before{content:"\f85e"}.um .fa-trash::before{content:"\f1f8"}.um .fa-gauge-simple::before{content:"\f629"}.um .fa-gauge-simple-med::before{content:"\f629"}.um .fa-tachometer-average::before{content:"\f629"}.um .fa-book-medical::before{content:"\f7e6"}.um .fa-poo::before{content:"\f2fe"}.um .fa-quote-right::before{content:"\f10e"}.um .fa-quote-right-alt::before{content:"\f10e"}.um .fa-shirt::before{content:"\f553"}.um .fa-t-shirt::before{content:"\f553"}.um .fa-tshirt::before{content:"\f553"}.um .fa-cubes::before{content:"\f1b3"}.um .fa-divide::before{content:"\f529"}.um .fa-tenge-sign::before{content:"\f7d7"}.um .fa-tenge::before{content:"\f7d7"}.um .fa-headphones::before{content:"\f025"}.um .fa-hands-holding::before{content:"\f4c2"}.um .fa-hands-clapping::before{content:"\e1a8"}.um .fa-republican::before{content:"\f75e"}.um .fa-arrow-left::before{content:"\f060"}.um .fa-person-circle-xmark::before{content:"\e543"}.um .fa-ruler::before{content:"\f545"}.um .fa-align-left::before{content:"\f036"}.um .fa-dice-d6::before{content:"\f6d1"}.um .fa-restroom::before{content:"\f7bd"}.um .fa-j::before{content:"J"}.um .fa-users-viewfinder::before{content:"\e595"}.um .fa-file-video::before{content:"\f1c8"}.um .fa-up-right-from-square::before{content:"\f35d"}.um .fa-external-link-alt::before{content:"\f35d"}.um .fa-table-cells::before{content:"\f00a"}.um .fa-th::before{content:"\f00a"}.um .fa-file-pdf::before{content:"\f1c1"}.um .fa-book-bible::before{content:"\f647"}.um .fa-bible::before{content:"\f647"}.um .fa-o::before{content:"O"}.um .fa-suitcase-medical::before{content:"\f0fa"}.um .fa-medkit::before{content:"\f0fa"}.um .fa-user-secret::before{content:"\f21b"}.um .fa-otter::before{content:"\f700"}.um .fa-person-dress::before{content:"\f182"}.um .fa-female::before{content:"\f182"}.um .fa-comment-dollar::before{content:"\f651"}.um .fa-business-time::before{content:"\f64a"}.um .fa-briefcase-clock::before{content:"\f64a"}.um .fa-table-cells-large::before{content:"\f009"}.um .fa-th-large::before{content:"\f009"}.um .fa-book-tanakh::before{content:"\f827"}.um .fa-tanakh::before{content:"\f827"}.um .fa-phone-volume::before{content:"\f2a0"}.um .fa-volume-control-phone::before{content:"\f2a0"}.um .fa-hat-cowboy-side::before{content:"\f8c1"}.um .fa-clipboard-user::before{content:"\f7f3"}.um .fa-child::before{content:"\f1ae"}.um .fa-lira-sign::before{content:"\f195"}.um .fa-satellite::before{content:"\f7bf"}.um .fa-plane-lock::before{content:"\e558"}.um .fa-tag::before{content:"\f02b"}.um .fa-comment::before{content:"\f075"}.um .fa-cake-candles::before{content:"\f1fd"}.um .fa-birthday-cake::before{content:"\f1fd"}.um .fa-cake::before{content:"\f1fd"}.um .fa-envelope::before{content:"\f0e0"}.um .fa-angles-up::before{content:"\f102"}.um .fa-angle-double-up::before{content:"\f102"}.um .fa-paperclip::before{content:"\f0c6"}.um .fa-arrow-right-to-city::before{content:"\e4b3"}.um .fa-ribbon::before{content:"\f4d6"}.um .fa-lungs::before{content:"\f604"}.um .fa-arrow-up-9-1::before{content:"\f887"}.um .fa-sort-numeric-up-alt::before{content:"\f887"}.um .fa-litecoin-sign::before{content:"\e1d3"}.um .fa-border-none::before{content:"\f850"}.um .fa-circle-nodes::before{content:"\e4e2"}.um .fa-parachute-box::before{content:"\f4cd"}.um .fa-indent::before{content:"\f03c"}.um .fa-truck-field-un::before{content:"\e58e"}.um .fa-hourglass::before{content:"\f254"}.um .fa-hourglass-empty::before{content:"\f254"}.um .fa-mountain::before{content:"\f6fc"}.um .fa-user-doctor::before{content:"\f0f0"}.um .fa-user-md::before{content:"\f0f0"}.um .fa-circle-info::before{content:"\f05a"}.um .fa-info-circle::before{content:"\f05a"}.um .fa-cloud-meatball::before{content:"\f73b"}.um .fa-camera::before{content:"\f030"}.um .fa-camera-alt::before{content:"\f030"}.um .fa-square-virus::before{content:"\e578"}.um .fa-meteor::before{content:"\f753"}.um .fa-car-on::before{content:"\e4dd"}.um .fa-sleigh::before{content:"\f7cc"}.um .fa-arrow-down-1-9::before{content:"\f162"}.um .fa-sort-numeric-asc::before{content:"\f162"}.um .fa-sort-numeric-down::before{content:"\f162"}.um .fa-hand-holding-droplet::before{content:"\f4c1"}.um .fa-hand-holding-water::before{content:"\f4c1"}.um .fa-water::before{content:"\f773"}.um .fa-calendar-check::before{content:"\f274"}.um .fa-braille::before{content:"\f2a1"}.um .fa-prescription-bottle-medical::before{content:"\f486"}.um .fa-prescription-bottle-alt::before{content:"\f486"}.um .fa-landmark::before{content:"\f66f"}.um .fa-truck::before{content:"\f0d1"}.um .fa-crosshairs::before{content:"\f05b"}.um .fa-person-cane::before{content:"\e53c"}.um .fa-tent::before{content:"\e57d"}.um .fa-vest-patches::before{content:"\e086"}.um .fa-check-double::before{content:"\f560"}.um .fa-arrow-down-a-z::before{content:"\f15d"}.um .fa-sort-alpha-asc::before{content:"\f15d"}.um .fa-sort-alpha-down::before{content:"\f15d"}.um .fa-money-bill-wheat::before{content:"\e52a"}.um .fa-cookie::before{content:"\f563"}.um .fa-arrow-rotate-left::before{content:"\f0e2"}.um .fa-arrow-left-rotate::before{content:"\f0e2"}.um .fa-arrow-rotate-back::before{content:"\f0e2"}.um .fa-arrow-rotate-backward::before{content:"\f0e2"}.um .fa-undo::before{content:"\f0e2"}.um .fa-hard-drive::before{content:"\f0a0"}.um .fa-hdd::before{content:"\f0a0"}.um .fa-face-grin-squint-tears::before{content:"\f586"}.um .fa-grin-squint-tears::before{content:"\f586"}.um .fa-dumbbell::before{content:"\f44b"}.um .fa-rectangle-list::before{content:"\f022"}.um .fa-list-alt::before{content:"\f022"}.um .fa-tarp-droplet::before{content:"\e57c"}.um .fa-house-medical-circle-check::before{content:"\e511"}.um .fa-person-skiing-nordic::before{content:"\f7ca"}.um .fa-skiing-nordic::before{content:"\f7ca"}.um .fa-calendar-plus::before{content:"\f271"}.um .fa-plane-arrival::before{content:"\f5af"}.um .fa-circle-left::before{content:"\f359"}.um .fa-arrow-alt-circle-left::before{content:"\f359"}.um .fa-train-subway::before{content:"\f239"}.um .fa-subway::before{content:"\f239"}.um .fa-chart-gantt::before{content:"\e0e4"}.um .fa-indian-rupee-sign::before{content:"\e1bc"}.um .fa-indian-rupee::before{content:"\e1bc"}.um .fa-inr::before{content:"\e1bc"}.um .fa-crop-simple::before{content:"\f565"}.um .fa-crop-alt::before{content:"\f565"}.um .fa-money-bill-1::before{content:"\f3d1"}.um .fa-money-bill-alt::before{content:"\f3d1"}.um .fa-left-long::before{content:"\f30a"}.um .fa-long-arrow-alt-left::before{content:"\f30a"}.um .fa-dna::before{content:"\f471"}.um .fa-virus-slash::before{content:"\e075"}.um .fa-minus::before{content:"\f068"}.um .fa-subtract::before{content:"\f068"}.um .fa-chess::before{content:"\f439"}.um .fa-arrow-left-long::before{content:"\f177"}.um .fa-long-arrow-left::before{content:"\f177"}.um .fa-plug-circle-check::before{content:"\e55c"}.um .fa-street-view::before{content:"\f21d"}.um .fa-franc-sign::before{content:"\e18f"}.um .fa-volume-off::before{content:"\f026"}.um .fa-hands-asl-interpreting::before{content:"\f2a3"}.um .fa-american-sign-language-interpreting::before{content:"\f2a3"}.um .fa-asl-interpreting::before{content:"\f2a3"}.um .fa-hands-american-sign-language-interpreting::before{content:"\f2a3"}.um .fa-gear::before{content:"\f013"}.um .fa-cog::before{content:"\f013"}.um .fa-droplet-slash::before{content:"\f5c7"}.um .fa-tint-slash::before{content:"\f5c7"}.um .fa-mosque::before{content:"\f678"}.um .fa-mosquito::before{content:"\e52b"}.um .fa-star-of-david::before{content:"\f69a"}.um .fa-person-military-rifle::before{content:"\e54b"}.um .fa-cart-shopping::before{content:"\f07a"}.um .fa-shopping-cart::before{content:"\f07a"}.um .fa-vials::before{content:"\f493"}.um .fa-plug-circle-plus::before{content:"\e55f"}.um .fa-place-of-worship::before{content:"\f67f"}.um .fa-grip-vertical::before{content:"\f58e"}.um .fa-arrow-turn-up::before{content:"\f148"}.um .fa-level-up::before{content:"\f148"}.um .fa-u::before{content:"U"}.um .fa-square-root-variable::before{content:"\f698"}.um .fa-square-root-alt::before{content:"\f698"}.um .fa-clock::before{content:"\f017"}.um .fa-clock-four::before{content:"\f017"}.um .fa-backward-step::before{content:"\f048"}.um .fa-step-backward::before{content:"\f048"}.um .fa-pallet::before{content:"\f482"}.um .fa-faucet::before{content:"\e005"}.um .fa-baseball-bat-ball::before{content:"\f432"}.um .fa-s::before{content:"S"}.um .fa-timeline::before{content:"\e29c"}.um .fa-keyboard::before{content:"\f11c"}.um .fa-caret-down::before{content:"\f0d7"}.um .fa-house-chimney-medical::before{content:"\f7f2"}.um .fa-clinic-medical::before{content:"\f7f2"}.um .fa-temperature-three-quarters::before{content:"\f2c8"}.um .fa-temperature-3::before{content:"\f2c8"}.um .fa-thermometer-3::before{content:"\f2c8"}.um .fa-thermometer-three-quarters::before{content:"\f2c8"}.um .fa-mobile-screen::before{content:"\f3cf"}.um .fa-mobile-android-alt::before{content:"\f3cf"}.um .fa-plane-up::before{content:"\e22d"}.um .fa-piggy-bank::before{content:"\f4d3"}.um .fa-battery-half::before{content:"\f242"}.um .fa-battery-3::before{content:"\f242"}.um .fa-mountain-city::before{content:"\e52e"}.um .fa-coins::before{content:"\f51e"}.um .fa-khanda::before{content:"\f66d"}.um .fa-sliders::before{content:"\f1de"}.um .fa-sliders-h::before{content:"\f1de"}.um .fa-folder-tree::before{content:"\f802"}.um .fa-network-wired::before{content:"\f6ff"}.um .fa-map-pin::before{content:"\f276"}.um .fa-hamsa::before{content:"\f665"}.um .fa-cent-sign::before{content:"\e3f5"}.um .fa-flask::before{content:"\f0c3"}.um .fa-person-pregnant::before{content:"\e31e"}.um .fa-wand-sparkles::before{content:"\f72b"}.um .fa-ellipsis-vertical::before{content:"\f142"}.um .fa-ellipsis-v::before{content:"\f142"}.um .fa-ticket::before{content:"\f145"}.um .fa-power-off::before{content:"\f011"}.um .fa-right-long::before{content:"\f30b"}.um .fa-long-arrow-alt-right::before{content:"\f30b"}.um .fa-flag-usa::before{content:"\f74d"}.um .fa-laptop-file::before{content:"\e51d"}.um .fa-tty::before{content:"\f1e4"}.um .fa-teletype::before{content:"\f1e4"}.um .fa-diagram-next::before{content:"\e476"}.um .fa-person-rifle::before{content:"\e54e"}.um .fa-house-medical-circle-exclamation::before{content:"\e512"}.um .fa-closed-captioning::before{content:"\f20a"}.um .fa-person-hiking::before{content:"\f6ec"}.um .fa-hiking::before{content:"\f6ec"}.um .fa-venus-double::before{content:"\f226"}.um .fa-images::before{content:"\f302"}.um .fa-calculator::before{content:"\f1ec"}.um .fa-people-pulling::before{content:"\e535"}.um .fa-n::before{content:"N"}.um .fa-cable-car::before{content:"\f7da"}.um .fa-tram::before{content:"\f7da"}.um .fa-cloud-rain::before{content:"\f73d"}.um .fa-building-circle-xmark::before{content:"\e4d4"}.um .fa-ship::before{content:"\f21a"}.um .fa-arrows-down-to-line::before{content:"\e4b8"}.um .fa-download::before{content:"\f019"}.um .fa-face-grin::before{content:"\f580"}.um .fa-grin::before{content:"\f580"}.um .fa-delete-left::before{content:"\f55a"}.um .fa-backspace::before{content:"\f55a"}.um .fa-eye-dropper::before{content:"\f1fb"}.um .fa-eye-dropper-empty::before{content:"\f1fb"}.um .fa-eyedropper::before{content:"\f1fb"}.um .fa-file-circle-check::before{content:"\e5a0"}.um .fa-forward::before{content:"\f04e"}.um .fa-mobile::before{content:"\f3ce"}.um .fa-mobile-android::before{content:"\f3ce"}.um .fa-mobile-phone::before{content:"\f3ce"}.um .fa-face-meh::before{content:"\f11a"}.um .fa-meh::before{content:"\f11a"}.um .fa-align-center::before{content:"\f037"}.um .fa-book-skull::before{content:"\f6b7"}.um .fa-book-dead::before{content:"\f6b7"}.um .fa-id-card::before{content:"\f2c2"}.um .fa-drivers-license::before{content:"\f2c2"}.um .fa-outdent::before{content:"\f03b"}.um .fa-dedent::before{content:"\f03b"}.um .fa-heart-circle-exclamation::before{content:"\e4fe"}.um .fa-house::before{content:"\f015"}.um .fa-home::before{content:"\f015"}.um .fa-home-alt::before{content:"\f015"}.um .fa-home-lg-alt::before{content:"\f015"}.um .fa-calendar-week::before{content:"\f784"}.um .fa-laptop-medical::before{content:"\f812"}.um .fa-b::before{content:"B"}.um .fa-file-medical::before{content:"\f477"}.um .fa-dice-one::before{content:"\f525"}.um .fa-kiwi-bird::before{content:"\f535"}.um .fa-arrow-right-arrow-left::before{content:"\f0ec"}.um .fa-exchange::before{content:"\f0ec"}.um .fa-rotate-right::before{content:"\f2f9"}.um .fa-redo-alt::before{content:"\f2f9"}.um .fa-rotate-forward::before{content:"\f2f9"}.um .fa-utensils::before{content:"\f2e7"}.um .fa-cutlery::before{content:"\f2e7"}.um .fa-arrow-up-wide-short::before{content:"\f161"}.um .fa-sort-amount-up::before{content:"\f161"}.um .fa-mill-sign::before{content:"\e1ed"}.um .fa-bowl-rice::before{content:"\e2eb"}.um .fa-skull::before{content:"\f54c"}.um .fa-tower-broadcast::before{content:"\f519"}.um .fa-broadcast-tower::before{content:"\f519"}.um .fa-truck-pickup::before{content:"\f63c"}.um .fa-up-long::before{content:"\f30c"}.um .fa-long-arrow-alt-up::before{content:"\f30c"}.um .fa-stop::before{content:"\f04d"}.um .fa-code-merge::before{content:"\f387"}.um .fa-upload::before{content:"\f093"}.um .fa-hurricane::before{content:"\f751"}.um .fa-mound::before{content:"\e52d"}.um .fa-toilet-portable::before{content:"\e583"}.um .fa-compact-disc::before{content:"\f51f"}.um .fa-file-arrow-down::before{content:"\f56d"}.um .fa-file-download::before{content:"\f56d"}.um .fa-caravan::before{content:"\f8ff"}.um .fa-shield-cat::before{content:"\e572"}.um .fa-bolt::before{content:"\f0e7"}.um .fa-zap::before{content:"\f0e7"}.um .fa-glass-water::before{content:"\e4f4"}.um .fa-oil-well::before{content:"\e532"}.um .fa-vault::before{content:"\e2c5"}.um .fa-mars::before{content:"\f222"}.um .fa-toilet::before{content:"\f7d8"}.um .fa-plane-circle-xmark::before{content:"\e557"}.um .fa-yen-sign::before{content:"\f157"}.um .fa-cny::before{content:"\f157"}.um .fa-jpy::before{content:"\f157"}.um .fa-rmb::before{content:"\f157"}.um .fa-yen::before{content:"\f157"}.um .fa-ruble-sign::before{content:"\f158"}.um .fa-rouble::before{content:"\f158"}.um .fa-rub::before{content:"\f158"}.um .fa-ruble::before{content:"\f158"}.um .fa-sun::before{content:"\f185"}.um .fa-guitar::before{content:"\f7a6"}.um .fa-face-laugh-wink::before{content:"\f59c"}.um .fa-laugh-wink::before{content:"\f59c"}.um .fa-horse-head::before{content:"\f7ab"}.um .fa-bore-hole::before{content:"\e4c3"}.um .fa-industry::before{content:"\f275"}.um .fa-circle-down::before{content:"\f358"}.um .fa-arrow-alt-circle-down::before{content:"\f358"}.um .fa-arrows-turn-to-dots::before{content:"\e4c1"}.um .fa-florin-sign::before{content:"\e184"}.um .fa-arrow-down-short-wide::before{content:"\f884"}.um .fa-sort-amount-desc::before{content:"\f884"}.um .fa-sort-amount-down-alt::before{content:"\f884"}.um .fa-less-than::before{content:"\<"}.um .fa-angle-down::before{content:"\f107"}.um .fa-car-tunnel::before{content:"\e4de"}.um .fa-head-side-cough::before{content:"\e061"}.um .fa-grip-lines::before{content:"\f7a4"}.um .fa-thumbs-down::before{content:"\f165"}.um .fa-user-lock::before{content:"\f502"}.um .fa-arrow-right-long::before{content:"\f178"}.um .fa-long-arrow-right::before{content:"\f178"}.um .fa-anchor-circle-xmark::before{content:"\e4ac"}.um .fa-ellipsis::before{content:"\f141"}.um .fa-ellipsis-h::before{content:"\f141"}.um .fa-chess-pawn::before{content:"\f443"}.um .fa-kit-medical::before{content:"\f479"}.um .fa-first-aid::before{content:"\f479"}.um .fa-person-through-window::before{content:"\e5a9"}.um .fa-toolbox::before{content:"\f552"}.um .fa-hands-holding-circle::before{content:"\e4fb"}.um .fa-bug::before{content:"\f188"}.um .fa-credit-card::before{content:"\f09d"}.um .fa-credit-card-alt::before{content:"\f09d"}.um .fa-car::before{content:"\f1b9"}.um .fa-automobile::before{content:"\f1b9"}.um .fa-hand-holding-hand::before{content:"\e4f7"}.um .fa-book-open-reader::before{content:"\f5da"}.um .fa-book-reader::before{content:"\f5da"}.um .fa-mountain-sun::before{content:"\e52f"}.um .fa-arrows-left-right-to-line::before{content:"\e4ba"}.um .fa-dice-d20::before{content:"\f6cf"}.um .fa-truck-droplet::before{content:"\e58c"}.um .fa-file-circle-xmark::before{content:"\e5a1"}.um .fa-temperature-arrow-up::before{content:"\e040"}.um .fa-temperature-up::before{content:"\e040"}.um .fa-medal::before{content:"\f5a2"}.um .fa-bed::before{content:"\f236"}.um .fa-square-h::before{content:"\f0fd"}.um .fa-h-square::before{content:"\f0fd"}.um .fa-podcast::before{content:"\f2ce"}.um .fa-temperature-full::before{content:"\f2c7"}.um .fa-temperature-4::before{content:"\f2c7"}.um .fa-thermometer-4::before{content:"\f2c7"}.um .fa-thermometer-full::before{content:"\f2c7"}.um .fa-bell::before{content:"\f0f3"}.um .fa-superscript::before{content:"\f12b"}.um .fa-plug-circle-xmark::before{content:"\e560"}.um .fa-star-of-life::before{content:"\f621"}.um .fa-phone-slash::before{content:"\f3dd"}.um .fa-paint-roller::before{content:"\f5aa"}.um .fa-handshake-angle::before{content:"\f4c4"}.um .fa-hands-helping::before{content:"\f4c4"}.um .fa-location-dot::before{content:"\f3c5"}.um .fa-map-marker-alt::before{content:"\f3c5"}.um .fa-file::before{content:"\f15b"}.um .fa-greater-than::before{content:"\>"}.um .fa-person-swimming::before{content:"\f5c4"}.um .fa-swimmer::before{content:"\f5c4"}.um .fa-arrow-down::before{content:"\f063"}.um .fa-droplet::before{content:"\f043"}.um .fa-tint::before{content:"\f043"}.um .fa-eraser::before{content:"\f12d"}.um .fa-earth-americas::before{content:"\f57d"}.um .fa-earth::before{content:"\f57d"}.um .fa-earth-america::before{content:"\f57d"}.um .fa-globe-americas::before{content:"\f57d"}.um .fa-person-burst::before{content:"\e53b"}.um .fa-dove::before{content:"\f4ba"}.um .fa-battery-empty::before{content:"\f244"}.um .fa-battery-0::before{content:"\f244"}.um .fa-socks::before{content:"\f696"}.um .fa-inbox::before{content:"\f01c"}.um .fa-section::before{content:"\e447"}.um .fa-gauge-high::before{content:"\f625"}.um .fa-tachometer-alt::before{content:"\f625"}.um .fa-tachometer-alt-fast::before{content:"\f625"}.um .fa-envelope-open-text::before{content:"\f658"}.um .fa-hospital::before{content:"\f0f8"}.um .fa-hospital-alt::before{content:"\f0f8"}.um .fa-hospital-wide::before{content:"\f0f8"}.um .fa-wine-bottle::before{content:"\f72f"}.um .fa-chess-rook::before{content:"\f447"}.um .fa-bars-staggered::before{content:"\f550"}.um .fa-reorder::before{content:"\f550"}.um .fa-stream::before{content:"\f550"}.um .fa-dharmachakra::before{content:"\f655"}.um .fa-hotdog::before{content:"\f80f"}.um .fa-person-walking-with-cane::before{content:"\f29d"}.um .fa-blind::before{content:"\f29d"}.um .fa-drum::before{content:"\f569"}.um .fa-ice-cream::before{content:"\f810"}.um .fa-heart-circle-bolt::before{content:"\e4fc"}.um .fa-fax::before{content:"\f1ac"}.um .fa-paragraph::before{content:"\f1dd"}.um .fa-check-to-slot::before{content:"\f772"}.um .fa-vote-yea::before{content:"\f772"}.um .fa-star-half::before{content:"\f089"}.um .fa-boxes-stacked::before{content:"\f468"}.um .fa-boxes::before{content:"\f468"}.um .fa-boxes-alt::before{content:"\f468"}.um .fa-link::before{content:"\f0c1"}.um .fa-chain::before{content:"\f0c1"}.um .fa-ear-listen::before{content:"\f2a2"}.um .fa-assistive-listening-systems::before{content:"\f2a2"}.um .fa-tree-city::before{content:"\e587"}.um .fa-play::before{content:"\f04b"}.um .fa-font::before{content:"\f031"}.um .fa-table-cells-row-lock::before{content:"\e67a"}.um .fa-rupiah-sign::before{content:"\e23d"}.um .fa-magnifying-glass::before{content:"\f002"}.um .fa-search::before{content:"\f002"}.um .fa-table-tennis-paddle-ball::before{content:"\f45d"}.um .fa-ping-pong-paddle-ball::before{content:"\f45d"}.um .fa-table-tennis::before{content:"\f45d"}.um .fa-person-dots-from-line::before{content:"\f470"}.um .fa-diagnoses::before{content:"\f470"}.um .fa-trash-can-arrow-up::before{content:"\f82a"}.um .fa-trash-restore-alt::before{content:"\f82a"}.um .fa-naira-sign::before{content:"\e1f6"}.um .fa-cart-arrow-down::before{content:"\f218"}.um .fa-walkie-talkie::before{content:"\f8ef"}.um .fa-file-pen::before{content:"\f31c"}.um .fa-file-edit::before{content:"\f31c"}.um .fa-receipt::before{content:"\f543"}.um .fa-square-pen::before{content:"\f14b"}.um .fa-pen-square::before{content:"\f14b"}.um .fa-pencil-square::before{content:"\f14b"}.um .fa-suitcase-rolling::before{content:"\f5c1"}.um .fa-person-circle-exclamation::before{content:"\e53f"}.um .fa-chevron-down::before{content:"\f078"}.um .fa-battery-full::before{content:"\f240"}.um .fa-battery::before{content:"\f240"}.um .fa-battery-5::before{content:"\f240"}.um .fa-skull-crossbones::before{content:"\f714"}.um .fa-code-compare::before{content:"\e13a"}.um .fa-list-ul::before{content:"\f0ca"}.um .fa-list-dots::before{content:"\f0ca"}.um .fa-school-lock::before{content:"\e56f"}.um .fa-tower-cell::before{content:"\e585"}.um .fa-down-long::before{content:"\f309"}.um .fa-long-arrow-alt-down::before{content:"\f309"}.um .fa-ranking-star::before{content:"\e561"}.um .fa-chess-king::before{content:"\f43f"}.um .fa-person-harassing::before{content:"\e549"}.um .fa-brazilian-real-sign::before{content:"\e46c"}.um .fa-landmark-dome::before{content:"\f752"}.um .fa-landmark-alt::before{content:"\f752"}.um .fa-arrow-up::before{content:"\f062"}.um .fa-tv::before{content:"\f26c"}.um .fa-television::before{content:"\f26c"}.um .fa-tv-alt::before{content:"\f26c"}.um .fa-shrimp::before{content:"\e448"}.um .fa-list-check::before{content:"\f0ae"}.um .fa-tasks::before{content:"\f0ae"}.um .fa-jug-detergent::before{content:"\e519"}.um .fa-circle-user::before{content:"\f2bd"}.um .fa-user-circle::before{content:"\f2bd"}.um .fa-user-shield::before{content:"\f505"}.um .fa-wind::before{content:"\f72e"}.um .fa-car-burst::before{content:"\f5e1"}.um .fa-car-crash::before{content:"\f5e1"}.um .fa-y::before{content:"Y"}.um .fa-person-snowboarding::before{content:"\f7ce"}.um .fa-snowboarding::before{content:"\f7ce"}.um .fa-truck-fast::before{content:"\f48b"}.um .fa-shipping-fast::before{content:"\f48b"}.um .fa-fish::before{content:"\f578"}.um .fa-user-graduate::before{content:"\f501"}.um .fa-circle-half-stroke::before{content:"\f042"}.um .fa-adjust::before{content:"\f042"}.um .fa-clapperboard::before{content:"\e131"}.um .fa-circle-radiation::before{content:"\f7ba"}.um .fa-radiation-alt::before{content:"\f7ba"}.um .fa-baseball::before{content:"\f433"}.um .fa-baseball-ball::before{content:"\f433"}.um .fa-jet-fighter-up::before{content:"\e518"}.um .fa-diagram-project::before{content:"\f542"}.um .fa-project-diagram::before{content:"\f542"}.um .fa-copy::before{content:"\f0c5"}.um .fa-volume-xmark::before{content:"\f6a9"}.um .fa-volume-mute::before{content:"\f6a9"}.um .fa-volume-times::before{content:"\f6a9"}.um .fa-hand-sparkles::before{content:"\e05d"}.um .fa-grip::before{content:"\f58d"}.um .fa-grip-horizontal::before{content:"\f58d"}.um .fa-share-from-square::before{content:"\f14d"}.um .fa-share-square::before{content:"\f14d"}.um .fa-child-combatant::before{content:"\e4e0"}.um .fa-child-rifle::before{content:"\e4e0"}.um .fa-gun::before{content:"\e19b"}.um .fa-square-phone::before{content:"\f098"}.um .fa-phone-square::before{content:"\f098"}.um .fa-plus::before{content:"\+"}.um .fa-add::before{content:"\+"}.um .fa-expand::before{content:"\f065"}.um .fa-computer::before{content:"\e4e5"}.um .fa-xmark::before{content:"\f00d"}.um .fa-close::before{content:"\f00d"}.um .fa-multiply::before{content:"\f00d"}.um .fa-remove::before{content:"\f00d"}.um .fa-times::before{content:"\f00d"}.um .fa-arrows-up-down-left-right::before{content:"\f047"}.um .fa-arrows::before{content:"\f047"}.um .fa-chalkboard-user::before{content:"\f51c"}.um .fa-chalkboard-teacher::before{content:"\f51c"}.um .fa-peso-sign::before{content:"\e222"}.um .fa-building-shield::before{content:"\e4d8"}.um .fa-baby::before{content:"\f77c"}.um .fa-users-line::before{content:"\e592"}.um .fa-quote-left::before{content:"\f10d"}.um .fa-quote-left-alt::before{content:"\f10d"}.um .fa-tractor::before{content:"\f722"}.um .fa-trash-arrow-up::before{content:"\f829"}.um .fa-trash-restore::before{content:"\f829"}.um .fa-arrow-down-up-lock::before{content:"\e4b0"}.um .fa-lines-leaning::before{content:"\e51e"}.um .fa-ruler-combined::before{content:"\f546"}.um .fa-copyright::before{content:"\f1f9"}.um .fa-equals::before{content:"\="}.um .fa-blender::before{content:"\f517"}.um .fa-teeth::before{content:"\f62e"}.um .fa-shekel-sign::before{content:"\f20b"}.um .fa-ils::before{content:"\f20b"}.um .fa-shekel::before{content:"\f20b"}.um .fa-sheqel::before{content:"\f20b"}.um .fa-sheqel-sign::before{content:"\f20b"}.um .fa-map::before{content:"\f279"}.um .fa-rocket::before{content:"\f135"}.um .fa-photo-film::before{content:"\f87c"}.um .fa-photo-video::before{content:"\f87c"}.um .fa-folder-minus::before{content:"\f65d"}.um .fa-store::before{content:"\f54e"}.um .fa-arrow-trend-up::before{content:"\e098"}.um .fa-plug-circle-minus::before{content:"\e55e"}.um .fa-sign-hanging::before{content:"\f4d9"}.um .fa-sign::before{content:"\f4d9"}.um .fa-bezier-curve::before{content:"\f55b"}.um .fa-bell-slash::before{content:"\f1f6"}.um .fa-tablet::before{content:"\f3fb"}.um .fa-tablet-android::before{content:"\f3fb"}.um .fa-school-flag::before{content:"\e56e"}.um .fa-fill::before{content:"\f575"}.um .fa-angle-up::before{content:"\f106"}.um .fa-drumstick-bite::before{content:"\f6d7"}.um .fa-holly-berry::before{content:"\f7aa"}.um .fa-chevron-left::before{content:"\f053"}.um .fa-bacteria::before{content:"\e059"}.um .fa-hand-lizard::before{content:"\f258"}.um .fa-notdef::before{content:"\e1fe"}.um .fa-disease::before{content:"\f7fa"}.um .fa-briefcase-medical::before{content:"\f469"}.um .fa-genderless::before{content:"\f22d"}.um .fa-chevron-right::before{content:"\f054"}.um .fa-retweet::before{content:"\f079"}.um .fa-car-rear::before{content:"\f5de"}.um .fa-car-alt::before{content:"\f5de"}.um .fa-pump-soap::before{content:"\e06b"}.um .fa-video-slash::before{content:"\f4e2"}.um .fa-battery-quarter::before{content:"\f243"}.um .fa-battery-2::before{content:"\f243"}.um .fa-radio::before{content:"\f8d7"}.um .fa-baby-carriage::before{content:"\f77d"}.um .fa-carriage-baby::before{content:"\f77d"}.um .fa-traffic-light::before{content:"\f637"}.um .fa-thermometer::before{content:"\f491"}.um .fa-vr-cardboard::before{content:"\f729"}.um .fa-hand-middle-finger::before{content:"\f806"}.um .fa-percent::before{content:"\%"}.um .fa-percentage::before{content:"\%"}.um .fa-truck-moving::before{content:"\f4df"}.um .fa-glass-water-droplet::before{content:"\e4f5"}.um .fa-display::before{content:"\e163"}.um .fa-face-smile::before{content:"\f118"}.um .fa-smile::before{content:"\f118"}.um .fa-thumbtack::before{content:"\f08d"}.um .fa-thumb-tack::before{content:"\f08d"}.um .fa-trophy::before{content:"\f091"}.um .fa-person-praying::before{content:"\f683"}.um .fa-pray::before{content:"\f683"}.um .fa-hammer::before{content:"\f6e3"}.um .fa-hand-peace::before{content:"\f25b"}.um .fa-rotate::before{content:"\f2f1"}.um .fa-sync-alt::before{content:"\f2f1"}.um .fa-spinner::before{content:"\f110"}.um .fa-robot::before{content:"\f544"}.um .fa-peace::before{content:"\f67c"}.um .fa-gears::before{content:"\f085"}.um .fa-cogs::before{content:"\f085"}.um .fa-warehouse::before{content:"\f494"}.um .fa-arrow-up-right-dots::before{content:"\e4b7"}.um .fa-splotch::before{content:"\f5bc"}.um .fa-face-grin-hearts::before{content:"\f584"}.um .fa-grin-hearts::before{content:"\f584"}.um .fa-dice-four::before{content:"\f524"}.um .fa-sim-card::before{content:"\f7c4"}.um .fa-transgender::before{content:"\f225"}.um .fa-transgender-alt::before{content:"\f225"}.um .fa-mercury::before{content:"\f223"}.um .fa-arrow-turn-down::before{content:"\f149"}.um .fa-level-down::before{content:"\f149"}.um .fa-person-falling-burst::before{content:"\e547"}.um .fa-award::before{content:"\f559"}.um .fa-ticket-simple::before{content:"\f3ff"}.um .fa-ticket-alt::before{content:"\f3ff"}.um .fa-building::before{content:"\f1ad"}.um .fa-angles-left::before{content:"\f100"}.um .fa-angle-double-left::before{content:"\f100"}.um .fa-qrcode::before{content:"\f029"}.um .fa-clock-rotate-left::before{content:"\f1da"}.um .fa-history::before{content:"\f1da"}.um .fa-face-grin-beam-sweat::before{content:"\f583"}.um .fa-grin-beam-sweat::before{content:"\f583"}.um .fa-file-export::before{content:"\f56e"}.um .fa-arrow-right-from-file::before{content:"\f56e"}.um .fa-shield::before{content:"\f132"}.um .fa-shield-blank::before{content:"\f132"}.um .fa-arrow-up-short-wide::before{content:"\f885"}.um .fa-sort-amount-up-alt::before{content:"\f885"}.um .fa-house-medical::before{content:"\e3b2"}.um .fa-golf-ball-tee::before{content:"\f450"}.um .fa-golf-ball::before{content:"\f450"}.um .fa-circle-chevron-left::before{content:"\f137"}.um .fa-chevron-circle-left::before{content:"\f137"}.um .fa-house-chimney-window::before{content:"\e00d"}.um .fa-pen-nib::before{content:"\f5ad"}.um .fa-tent-arrow-turn-left::before{content:"\e580"}.um .fa-tents::before{content:"\e582"}.um .fa-wand-magic::before{content:"\f0d0"}.um .fa-magic::before{content:"\f0d0"}.um .fa-dog::before{content:"\f6d3"}.um .fa-carrot::before{content:"\f787"}.um .fa-moon::before{content:"\f186"}.um .fa-wine-glass-empty::before{content:"\f5ce"}.um .fa-wine-glass-alt::before{content:"\f5ce"}.um .fa-cheese::before{content:"\f7ef"}.um .fa-yin-yang::before{content:"\f6ad"}.um .fa-music::before{content:"\f001"}.um .fa-code-commit::before{content:"\f386"}.um .fa-temperature-low::before{content:"\f76b"}.um .fa-person-biking::before{content:"\f84a"}.um .fa-biking::before{content:"\f84a"}.um .fa-broom::before{content:"\f51a"}.um .fa-shield-heart::before{content:"\e574"}.um .fa-gopuram::before{content:"\f664"}.um .fa-earth-oceania::before{content:"\e47b"}.um .fa-globe-oceania::before{content:"\e47b"}.um .fa-square-xmark::before{content:"\f2d3"}.um .fa-times-square::before{content:"\f2d3"}.um .fa-xmark-square::before{content:"\f2d3"}.um .fa-hashtag::before{content:"\#"}.um .fa-up-right-and-down-left-from-center::before{content:"\f424"}.um .fa-expand-alt::before{content:"\f424"}.um .fa-oil-can::before{content:"\f613"}.um .fa-t::before{content:"T"}.um .fa-hippo::before{content:"\f6ed"}.um .fa-chart-column::before{content:"\e0e3"}.um .fa-infinity::before{content:"\f534"}.um .fa-vial-circle-check::before{content:"\e596"}.um .fa-person-arrow-down-to-line::before{content:"\e538"}.um .fa-voicemail::before{content:"\f897"}.um .fa-fan::before{content:"\f863"}.um .fa-person-walking-luggage::before{content:"\e554"}.um .fa-up-down::before{content:"\f338"}.um .fa-arrows-alt-v::before{content:"\f338"}.um .fa-cloud-moon-rain::before{content:"\f73c"}.um .fa-calendar::before{content:"\f133"}.um .fa-trailer::before{content:"\e041"}.um .fa-bahai::before{content:"\f666"}.um .fa-haykal::before{content:"\f666"}.um .fa-sd-card::before{content:"\f7c2"}.um .fa-dragon::before{content:"\f6d5"}.um .fa-shoe-prints::before{content:"\f54b"}.um .fa-circle-plus::before{content:"\f055"}.um .fa-plus-circle::before{content:"\f055"}.um .fa-face-grin-tongue-wink::before{content:"\f58b"}.um .fa-grin-tongue-wink::before{content:"\f58b"}.um .fa-hand-holding::before{content:"\f4bd"}.um .fa-plug-circle-exclamation::before{content:"\e55d"}.um .fa-link-slash::before{content:"\f127"}.um .fa-chain-broken::before{content:"\f127"}.um .fa-chain-slash::before{content:"\f127"}.um .fa-unlink::before{content:"\f127"}.um .fa-clone::before{content:"\f24d"}.um .fa-person-walking-arrow-loop-left::before{content:"\e551"}.um .fa-arrow-up-z-a::before{content:"\f882"}.um .fa-sort-alpha-up-alt::before{content:"\f882"}.um .fa-fire-flame-curved::before{content:"\f7e4"}.um .fa-fire-alt::before{content:"\f7e4"}.um .fa-tornado::before{content:"\f76f"}.um .fa-file-circle-plus::before{content:"\e494"}.um .fa-book-quran::before{content:"\f687"}.um .fa-quran::before{content:"\f687"}.um .fa-anchor::before{content:"\f13d"}.um .fa-border-all::before{content:"\f84c"}.um .fa-face-angry::before{content:"\f556"}.um .fa-angry::before{content:"\f556"}.um .fa-cookie-bite::before{content:"\f564"}.um .fa-arrow-trend-down::before{content:"\e097"}.um .fa-rss::before{content:"\f09e"}.um .fa-feed::before{content:"\f09e"}.um .fa-draw-polygon::before{content:"\f5ee"}.um .fa-scale-balanced::before{content:"\f24e"}.um .fa-balance-scale::before{content:"\f24e"}.um .fa-gauge-simple-high::before{content:"\f62a"}.um .fa-tachometer::before{content:"\f62a"}.um .fa-tachometer-fast::before{content:"\f62a"}.um .fa-shower::before{content:"\f2cc"}.um .fa-desktop::before{content:"\f390"}.um .fa-desktop-alt::before{content:"\f390"}.um .fa-m::before{content:"M"}.um .fa-table-list::before{content:"\f00b"}.um .fa-th-list::before{content:"\f00b"}.um .fa-comment-sms::before{content:"\f7cd"}.um .fa-sms::before{content:"\f7cd"}.um .fa-book::before{content:"\f02d"}.um .fa-user-plus::before{content:"\f234"}.um .fa-check::before{content:"\f00c"}.um .fa-battery-three-quarters::before{content:"\f241"}.um .fa-battery-4::before{content:"\f241"}.um .fa-house-circle-check::before{content:"\e509"}.um .fa-angle-left::before{content:"\f104"}.um .fa-diagram-successor::before{content:"\e47a"}.um .fa-truck-arrow-right::before{content:"\e58b"}.um .fa-arrows-split-up-and-left::before{content:"\e4bc"}.um .fa-hand-fist::before{content:"\f6de"}.um .fa-fist-raised::before{content:"\f6de"}.um .fa-cloud-moon::before{content:"\f6c3"}.um .fa-briefcase::before{content:"\f0b1"}.um .fa-person-falling::before{content:"\e546"}.um .fa-image-portrait::before{content:"\f3e0"}.um .fa-portrait::before{content:"\f3e0"}.um .fa-user-tag::before{content:"\f507"}.um .fa-rug::before{content:"\e569"}.um .fa-earth-europe::before{content:"\f7a2"}.um .fa-globe-europe::before{content:"\f7a2"}.um .fa-cart-flatbed-suitcase::before{content:"\f59d"}.um .fa-luggage-cart::before{content:"\f59d"}.um .fa-rectangle-xmark::before{content:"\f410"}.um .fa-rectangle-times::before{content:"\f410"}.um .fa-times-rectangle::before{content:"\f410"}.um .fa-window-close::before{content:"\f410"}.um .fa-baht-sign::before{content:"\e0ac"}.um .fa-book-open::before{content:"\f518"}.um .fa-book-journal-whills::before{content:"\f66a"}.um .fa-journal-whills::before{content:"\f66a"}.um .fa-handcuffs::before{content:"\e4f8"}.um .fa-triangle-exclamation::before{content:"\f071"}.um .fa-exclamation-triangle::before{content:"\f071"}.um .fa-warning::before{content:"\f071"}.um .fa-database::before{content:"\f1c0"}.um .fa-share::before{content:"\f064"}.um .fa-mail-forward::before{content:"\f064"}.um .fa-bottle-droplet::before{content:"\e4c4"}.um .fa-mask-face::before{content:"\e1d7"}.um .fa-hill-rockslide::before{content:"\e508"}.um .fa-right-left::before{content:"\f362"}.um .fa-exchange-alt::before{content:"\f362"}.um .fa-paper-plane::before{content:"\f1d8"}.um .fa-road-circle-exclamation::before{content:"\e565"}.um .fa-dungeon::before{content:"\f6d9"}.um .fa-align-right::before{content:"\f038"}.um .fa-money-bill-1-wave::before{content:"\f53b"}.um .fa-money-bill-wave-alt::before{content:"\f53b"}.um .fa-life-ring::before{content:"\f1cd"}.um .fa-hands::before{content:"\f2a7"}.um .fa-sign-language::before{content:"\f2a7"}.um .fa-signing::before{content:"\f2a7"}.um .fa-calendar-day::before{content:"\f783"}.um .fa-water-ladder::before{content:"\f5c5"}.um .fa-ladder-water::before{content:"\f5c5"}.um .fa-swimming-pool::before{content:"\f5c5"}.um .fa-arrows-up-down::before{content:"\f07d"}.um .fa-arrows-v::before{content:"\f07d"}.um .fa-face-grimace::before{content:"\f57f"}.um .fa-grimace::before{content:"\f57f"}.um .fa-wheelchair-move::before{content:"\e2ce"}.um .fa-wheelchair-alt::before{content:"\e2ce"}.um .fa-turn-down::before{content:"\f3be"}.um .fa-level-down-alt::before{content:"\f3be"}.um .fa-person-walking-arrow-right::before{content:"\e552"}.um .fa-square-envelope::before{content:"\f199"}.um .fa-envelope-square::before{content:"\f199"}.um .fa-dice::before{content:"\f522"}.um .fa-bowling-ball::before{content:"\f436"}.um .fa-brain::before{content:"\f5dc"}.um .fa-bandage::before{content:"\f462"}.um .fa-band-aid::before{content:"\f462"}.um .fa-calendar-minus::before{content:"\f272"}.um .fa-circle-xmark::before{content:"\f057"}.um .fa-times-circle::before{content:"\f057"}.um .fa-xmark-circle::before{content:"\f057"}.um .fa-gifts::before{content:"\f79c"}.um .fa-hotel::before{content:"\f594"}.um .fa-earth-asia::before{content:"\f57e"}.um .fa-globe-asia::before{content:"\f57e"}.um .fa-id-card-clip::before{content:"\f47f"}.um .fa-id-card-alt::before{content:"\f47f"}.um .fa-magnifying-glass-plus::before{content:"\f00e"}.um .fa-search-plus::before{content:"\f00e"}.um .fa-thumbs-up::before{content:"\f164"}.um .fa-user-clock::before{content:"\f4fd"}.um .fa-hand-dots::before{content:"\f461"}.um .fa-allergies::before{content:"\f461"}.um .fa-file-invoice::before{content:"\f570"}.um .fa-window-minimize::before{content:"\f2d1"}.um .fa-mug-saucer::before{content:"\f0f4"}.um .fa-coffee::before{content:"\f0f4"}.um .fa-brush::before{content:"\f55d"}.um .fa-mask::before{content:"\f6fa"}.um .fa-magnifying-glass-minus::before{content:"\f010"}.um .fa-search-minus::before{content:"\f010"}.um .fa-ruler-vertical::before{content:"\f548"}.um .fa-user-large::before{content:"\f406"}.um .fa-user-alt::before{content:"\f406"}.um .fa-train-tram::before{content:"\e5b4"}.um .fa-user-nurse::before{content:"\f82f"}.um .fa-syringe::before{content:"\f48e"}.um .fa-cloud-sun::before{content:"\f6c4"}.um .fa-stopwatch-20::before{content:"\e06f"}.um .fa-square-full::before{content:"\f45c"}.um .fa-magnet::before{content:"\f076"}.um .fa-jar::before{content:"\e516"}.um .fa-note-sticky::before{content:"\f249"}.um .fa-sticky-note::before{content:"\f249"}.um .fa-bug-slash::before{content:"\e490"}.um .fa-arrow-up-from-water-pump::before{content:"\e4b6"}.um .fa-bone::before{content:"\f5d7"}.um .fa-user-injured::before{content:"\f728"}.um .fa-face-sad-tear::before{content:"\f5b4"}.um .fa-sad-tear::before{content:"\f5b4"}.um .fa-plane::before{content:"\f072"}.um .fa-tent-arrows-down::before{content:"\e581"}.um .fa-exclamation::before{content:"\!"}.um .fa-arrows-spin::before{content:"\e4bb"}.um .fa-print::before{content:"\f02f"}.um .fa-turkish-lira-sign::before{content:"\e2bb"}.um .fa-try::before{content:"\e2bb"}.um .fa-turkish-lira::before{content:"\e2bb"}.um .fa-dollar-sign::before{content:"\$"}.um .fa-dollar::before{content:"\$"}.um .fa-usd::before{content:"\$"}.um .fa-x::before{content:"X"}.um .fa-magnifying-glass-dollar::before{content:"\f688"}.um .fa-search-dollar::before{content:"\f688"}.um .fa-users-gear::before{content:"\f509"}.um .fa-users-cog::before{content:"\f509"}.um .fa-person-military-pointing::before{content:"\e54a"}.um .fa-building-columns::before{content:"\f19c"}.um .fa-bank::before{content:"\f19c"}.um .fa-institution::before{content:"\f19c"}.um .fa-museum::before{content:"\f19c"}.um .fa-university::before{content:"\f19c"}.um .fa-umbrella::before{content:"\f0e9"}.um .fa-trowel::before{content:"\e589"}.um .fa-d::before{content:"D"}.um .fa-stapler::before{content:"\e5af"}.um .fa-masks-theater::before{content:"\f630"}.um .fa-theater-masks::before{content:"\f630"}.um .fa-kip-sign::before{content:"\e1c4"}.um .fa-hand-point-left::before{content:"\f0a5"}.um .fa-handshake-simple::before{content:"\f4c6"}.um .fa-handshake-alt::before{content:"\f4c6"}.um .fa-jet-fighter::before{content:"\f0fb"}.um .fa-fighter-jet::before{content:"\f0fb"}.um .fa-square-share-nodes::before{content:"\f1e1"}.um .fa-share-alt-square::before{content:"\f1e1"}.um .fa-barcode::before{content:"\f02a"}.um .fa-plus-minus::before{content:"\e43c"}.um .fa-video::before{content:"\f03d"}.um .fa-video-camera::before{content:"\f03d"}.um .fa-graduation-cap::before{content:"\f19d"}.um .fa-mortar-board::before{content:"\f19d"}.um .fa-hand-holding-medical::before{content:"\e05c"}.um .fa-person-circle-check::before{content:"\e53e"}.um .fa-turn-up::before{content:"\f3bf"}.um .fa-level-up-alt::before{content:"\f3bf"}.um .fa-sr-only,.um .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.um .fa-sr-only-focusable:not(:focus),.um .sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.um :host,.um :root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../libs/fontawesome/webfonts/fa-brands-400.woff2) format("woff2"),url(../libs/fontawesome/webfonts/fa-brands-400.ttf) format("truetype")}.um .fa-brands,.um .fab{font-weight:400}.um .fa-monero:before{content:"\f3d0"}.um .fa-hooli:before{content:"\f427"}.um .fa-yelp:before{content:"\f1e9"}.um .fa-cc-visa:before{content:"\f1f0"}.um .fa-lastfm:before{content:"\f202"}.um .fa-shopware:before{content:"\f5b5"}.um .fa-creative-commons-nc:before{content:"\f4e8"}.um .fa-aws:before{content:"\f375"}.um .fa-redhat:before{content:"\f7bc"}.um .fa-yoast:before{content:"\f2b1"}.um .fa-cloudflare:before{content:"\e07d"}.um .fa-ups:before{content:"\f7e0"}.um .fa-pixiv:before{content:"\e640"}.um .fa-wpexplorer:before{content:"\f2de"}.um .fa-dyalog:before{content:"\f399"}.um .fa-bity:before{content:"\f37a"}.um .fa-stackpath:before{content:"\f842"}.um .fa-buysellads:before{content:"\f20d"}.um .fa-first-order:before{content:"\f2b0"}.um .fa-modx:before{content:"\f285"}.um .fa-guilded:before{content:"\e07e"}.um .fa-vnv:before{content:"\f40b"}.um .fa-square-js:before{content:"\f3b9"}.um .fa-js-square:before{content:"\f3b9"}.um .fa-microsoft:before{content:"\f3ca"}.um .fa-qq:before{content:"\f1d6"}.um .fa-orcid:before{content:"\f8d2"}.um .fa-java:before{content:"\f4e4"}.um .fa-invision:before{content:"\f7b0"}.um .fa-creative-commons-pd-alt:before{content:"\f4ed"}.um .fa-centercode:before{content:"\f380"}.um .fa-glide-g:before{content:"\f2a6"}.um .fa-drupal:before{content:"\f1a9"}.um .fa-jxl:before{content:"\e67b"}.um .fa-hire-a-helper:before{content:"\f3b0"}.um .fa-creative-commons-by:before{content:"\f4e7"}.um .fa-unity:before{content:"\e049"}.um .fa-whmcs:before{content:"\f40d"}.um .fa-rocketchat:before{content:"\f3e8"}.um .fa-vk:before{content:"\f189"}.um .fa-untappd:before{content:"\f405"}.um .fa-mailchimp:before{content:"\f59e"}.um .fa-css3-alt:before{content:"\f38b"}.um .fa-square-reddit:before{content:"\f1a2"}.um .fa-reddit-square:before{content:"\f1a2"}.um .fa-vimeo-v:before{content:"\f27d"}.um .fa-contao:before{content:"\f26d"}.um .fa-square-font-awesome:before{content:"\e5ad"}.um .fa-deskpro:before{content:"\f38f"}.um .fa-brave:before{content:"\e63c"}.um .fa-sistrix:before{content:"\f3ee"}.um .fa-square-instagram:before{content:"\e055"}.um .fa-instagram-square:before{content:"\e055"}.um .fa-battle-net:before{content:"\f835"}.um .fa-the-red-yeti:before{content:"\f69d"}.um .fa-square-hacker-news:before{content:"\f3af"}.um .fa-hacker-news-square:before{content:"\f3af"}.um .fa-edge:before{content:"\f282"}.um .fa-threads:before{content:"\e618"}.um .fa-napster:before{content:"\f3d2"}.um .fa-square-snapchat:before{content:"\f2ad"}.um .fa-snapchat-square:before{content:"\f2ad"}.um .fa-google-plus-g:before{content:"\f0d5"}.um .fa-artstation:before{content:"\f77a"}.um .fa-markdown:before{content:"\f60f"}.um .fa-sourcetree:before{content:"\f7d3"}.um .fa-google-plus:before{content:"\f2b3"}.um .fa-diaspora:before{content:"\f791"}.um .fa-foursquare:before{content:"\f180"}.um .fa-stack-overflow:before{content:"\f16c"}.um .fa-github-alt:before{content:"\f113"}.um .fa-phoenix-squadron:before{content:"\f511"}.um .fa-pagelines:before{content:"\f18c"}.um .fa-algolia:before{content:"\f36c"}.um .fa-red-river:before{content:"\f3e3"}.um .fa-creative-commons-sa:before{content:"\f4ef"}.um .fa-safari:before{content:"\f267"}.um .fa-google:before{content:"\f1a0"}.um .fa-square-font-awesome-stroke:before{content:"\f35c"}.um .fa-font-awesome-alt:before{content:"\f35c"}.um .fa-atlassian:before{content:"\f77b"}.um .fa-linkedin-in:before{content:"\f0e1"}.um .fa-digital-ocean:before{content:"\f391"}.um .fa-nimblr:before{content:"\f5a8"}.um .fa-chromecast:before{content:"\f838"}.um .fa-evernote:before{content:"\f839"}.um .fa-hacker-news:before{content:"\f1d4"}.um .fa-creative-commons-sampling:before{content:"\f4f0"}.um .fa-adversal:before{content:"\f36a"}.um .fa-creative-commons:before{content:"\f25e"}.um .fa-watchman-monitoring:before{content:"\e087"}.um .fa-fonticons:before{content:"\f280"}.um .fa-weixin:before{content:"\f1d7"}.um .fa-shirtsinbulk:before{content:"\f214"}.um .fa-codepen:before{content:"\f1cb"}.um .fa-git-alt:before{content:"\f841"}.um .fa-lyft:before{content:"\f3c3"}.um .fa-rev:before{content:"\f5b2"}.um .fa-windows:before{content:"\f17a"}.um .fa-wizards-of-the-coast:before{content:"\f730"}.um .fa-square-viadeo:before{content:"\f2aa"}.um .fa-viadeo-square:before{content:"\f2aa"}.um .fa-meetup:before{content:"\f2e0"}.um .fa-centos:before{content:"\f789"}.um .fa-adn:before{content:"\f170"}.um .fa-cloudsmith:before{content:"\f384"}.um .fa-opensuse:before{content:"\e62b"}.um .fa-pied-piper-alt:before{content:"\f1a8"}.um .fa-square-dribbble:before{content:"\f397"}.um .fa-dribbble-square:before{content:"\f397"}.um .fa-codiepie:before{content:"\f284"}.um .fa-node:before{content:"\f419"}.um .fa-mix:before{content:"\f3cb"}.um .fa-steam:before{content:"\f1b6"}.um .fa-cc-apple-pay:before{content:"\f416"}.um .fa-scribd:before{content:"\f28a"}.um .fa-debian:before{content:"\e60b"}.um .fa-openid:before{content:"\f19b"}.um .fa-instalod:before{content:"\e081"}.um .fa-expeditedssl:before{content:"\f23e"}.um .fa-sellcast:before{content:"\f2da"}.um .fa-square-twitter:before{content:"\f081"}.um .fa-twitter-square:before{content:"\f081"}.um .fa-r-project:before{content:"\f4f7"}.um .fa-delicious:before{content:"\f1a5"}.um .fa-freebsd:before{content:"\f3a4"}.um .fa-vuejs:before{content:"\f41f"}.um .fa-accusoft:before{content:"\f369"}.um .fa-ioxhost:before{content:"\f208"}.um .fa-fonticons-fi:before{content:"\f3a2"}.um .fa-app-store:before{content:"\f36f"}.um .fa-cc-mastercard:before{content:"\f1f1"}.um .fa-itunes-note:before{content:"\f3b5"}.um .fa-golang:before{content:"\e40f"}.um .fa-kickstarter:before{content:"\f3bb"}.um .fa-square-kickstarter:before{content:"\f3bb"}.um .fa-grav:before{content:"\f2d6"}.um .fa-weibo:before{content:"\f18a"}.um .fa-uncharted:before{content:"\e084"}.um .fa-firstdraft:before{content:"\f3a1"}.um .fa-square-youtube:before{content:"\f431"}.um .fa-youtube-square:before{content:"\f431"}.um .fa-wikipedia-w:before{content:"\f266"}.um .fa-wpressr:before{content:"\f3e4"}.um .fa-rendact:before{content:"\f3e4"}.um .fa-angellist:before{content:"\f209"}.um .fa-galactic-republic:before{content:"\f50c"}.um .fa-nfc-directional:before{content:"\e530"}.um .fa-skype:before{content:"\f17e"}.um .fa-joget:before{content:"\f3b7"}.um .fa-fedora:before{content:"\f798"}.um .fa-stripe-s:before{content:"\f42a"}.um .fa-meta:before{content:"\e49b"}.um .fa-laravel:before{content:"\f3bd"}.um .fa-hotjar:before{content:"\f3b1"}.um .fa-bluetooth-b:before{content:"\f294"}.um .fa-square-letterboxd:before{content:"\e62e"}.um .fa-sticker-mule:before{content:"\f3f7"}.um .fa-creative-commons-zero:before{content:"\f4f3"}.um .fa-hips:before{content:"\f452"}.um .fa-behance:before{content:"\f1b4"}.um .fa-reddit:before{content:"\f1a1"}.um .fa-discord:before{content:"\f392"}.um .fa-chrome:before{content:"\f268"}.um .fa-app-store-ios:before{content:"\f370"}.um .fa-cc-discover:before{content:"\f1f2"}.um .fa-wpbeginner:before{content:"\f297"}.um .fa-confluence:before{content:"\f78d"}.um .fa-shoelace:before{content:"\e60c"}.um .fa-mdb:before{content:"\f8ca"}.um .fa-dochub:before{content:"\f394"}.um .fa-accessible-icon:before{content:"\f368"}.um .fa-ebay:before{content:"\f4f4"}.um .fa-amazon:before{content:"\f270"}.um .fa-unsplash:before{content:"\e07c"}.um .fa-yarn:before{content:"\f7e3"}.um .fa-square-steam:before{content:"\f1b7"}.um .fa-steam-square:before{content:"\f1b7"}.um .fa-500px:before{content:"\f26e"}.um .fa-square-vimeo:before{content:"\f194"}.um .fa-vimeo-square:before{content:"\f194"}.um .fa-asymmetrik:before{content:"\f372"}.um .fa-font-awesome:before{content:"\f2b4"}.um .fa-font-awesome-flag:before{content:"\f2b4"}.um .fa-font-awesome-logo-full:before{content:"\f2b4"}.um .fa-gratipay:before{content:"\f184"}.um .fa-apple:before{content:"\f179"}.um .fa-hive:before{content:"\e07f"}.um .fa-gitkraken:before{content:"\f3a6"}.um .fa-keybase:before{content:"\f4f5"}.um .fa-apple-pay:before{content:"\f415"}.um .fa-padlet:before{content:"\e4a0"}.um .fa-amazon-pay:before{content:"\f42c"}.um .fa-square-github:before{content:"\f092"}.um .fa-github-square:before{content:"\f092"}.um .fa-stumbleupon:before{content:"\f1a4"}.um .fa-fedex:before{content:"\f797"}.um .fa-phoenix-framework:before{content:"\f3dc"}.um .fa-shopify:before{content:"\e057"}.um .fa-neos:before{content:"\f612"}.um .fa-square-threads:before{content:"\e619"}.um .fa-hackerrank:before{content:"\f5f7"}.um .fa-researchgate:before{content:"\f4f8"}.um .fa-swift:before{content:"\f8e1"}.um .fa-angular:before{content:"\f420"}.um .fa-speakap:before{content:"\f3f3"}.um .fa-angrycreative:before{content:"\f36e"}.um .fa-y-combinator:before{content:"\f23b"}.um .fa-empire:before{content:"\f1d1"}.um .fa-envira:before{content:"\f299"}.um .fa-google-scholar:before{content:"\e63b"}.um .fa-square-gitlab:before{content:"\e5ae"}.um .fa-gitlab-square:before{content:"\e5ae"}.um .fa-studiovinari:before{content:"\f3f8"}.um .fa-pied-piper:before{content:"\f2ae"}.um .fa-wordpress:before{content:"\f19a"}.um .fa-product-hunt:before{content:"\f288"}.um .fa-firefox:before{content:"\f269"}.um .fa-linode:before{content:"\f2b8"}.um .fa-goodreads:before{content:"\f3a8"}.um .fa-square-odnoklassniki:before{content:"\f264"}.um .fa-odnoklassniki-square:before{content:"\f264"}.um .fa-jsfiddle:before{content:"\f1cc"}.um .fa-sith:before{content:"\f512"}.um .fa-themeisle:before{content:"\f2b2"}.um .fa-page4:before{content:"\f3d7"}.um .fa-hashnode:before{content:"\e499"}.um .fa-react:before{content:"\f41b"}.um .fa-cc-paypal:before{content:"\f1f4"}.um .fa-squarespace:before{content:"\f5be"}.um .fa-cc-stripe:before{content:"\f1f5"}.um .fa-creative-commons-share:before{content:"\f4f2"}.um .fa-bitcoin:before{content:"\f379"}.um .fa-keycdn:before{content:"\f3ba"}.um .fa-opera:before{content:"\f26a"}.um .fa-itch-io:before{content:"\f83a"}.um .fa-umbraco:before{content:"\f8e8"}.um .fa-galactic-senate:before{content:"\f50d"}.um .fa-ubuntu:before{content:"\f7df"}.um .fa-draft2digital:before{content:"\f396"}.um .fa-stripe:before{content:"\f429"}.um .fa-houzz:before{content:"\f27c"}.um .fa-gg:before{content:"\f260"}.um .fa-dhl:before{content:"\f790"}.um .fa-square-pinterest:before{content:"\f0d3"}.um .fa-pinterest-square:before{content:"\f0d3"}.um .fa-xing:before{content:"\f168"}.um .fa-blackberry:before{content:"\f37b"}.um .fa-creative-commons-pd:before{content:"\f4ec"}.um .fa-playstation:before{content:"\f3df"}.um .fa-quinscape:before{content:"\f459"}.um .fa-less:before{content:"\f41d"}.um .fa-blogger-b:before{content:"\f37d"}.um .fa-opencart:before{content:"\f23d"}.um .fa-vine:before{content:"\f1ca"}.um .fa-signal-messenger:before{content:"\e663"}.um .fa-paypal:before{content:"\f1ed"}.um .fa-gitlab:before{content:"\f296"}.um .fa-typo3:before{content:"\f42b"}.um .fa-reddit-alien:before{content:"\f281"}.um .fa-yahoo:before{content:"\f19e"}.um .fa-dailymotion:before{content:"\e052"}.um .fa-affiliatetheme:before{content:"\f36b"}.um .fa-pied-piper-pp:before{content:"\f1a7"}.um .fa-bootstrap:before{content:"\f836"}.um .fa-odnoklassniki:before{content:"\f263"}.um .fa-nfc-symbol:before{content:"\e531"}.um .fa-mintbit:before{content:"\e62f"}.um .fa-ethereum:before{content:"\f42e"}.um .fa-speaker-deck:before{content:"\f83c"}.um .fa-creative-commons-nc-eu:before{content:"\f4e9"}.um .fa-patreon:before{content:"\f3d9"}.um .fa-avianex:before{content:"\f374"}.um .fa-ello:before{content:"\f5f1"}.um .fa-gofore:before{content:"\f3a7"}.um .fa-bimobject:before{content:"\f378"}.um .fa-brave-reverse:before{content:"\e63d"}.um .fa-facebook-f:before{content:"\f39e"}.um .fa-square-google-plus:before{content:"\f0d4"}.um .fa-google-plus-square:before{content:"\f0d4"}.um .fa-web-awesome:before{content:"\e682"}.um .fa-mandalorian:before{content:"\f50f"}.um .fa-first-order-alt:before{content:"\f50a"}.um .fa-osi:before{content:"\f41a"}.um .fa-google-wallet:before{content:"\f1ee"}.um .fa-d-and-d-beyond:before{content:"\f6ca"}.um .fa-periscope:before{content:"\f3da"}.um .fa-fulcrum:before{content:"\f50b"}.um .fa-cloudscale:before{content:"\f383"}.um .fa-forumbee:before{content:"\f211"}.um .fa-mizuni:before{content:"\f3cc"}.um .fa-schlix:before{content:"\f3ea"}.um .fa-square-xing:before{content:"\f169"}.um .fa-xing-square:before{content:"\f169"}.um .fa-bandcamp:before{content:"\f2d5"}.um .fa-wpforms:before{content:"\f298"}.um .fa-cloudversify:before{content:"\f385"}.um .fa-usps:before{content:"\f7e1"}.um .fa-megaport:before{content:"\f5a3"}.um .fa-magento:before{content:"\f3c4"}.um .fa-spotify:before{content:"\f1bc"}.um .fa-optin-monster:before{content:"\f23c"}.um .fa-fly:before{content:"\f417"}.um .fa-aviato:before{content:"\f421"}.um .fa-itunes:before{content:"\f3b4"}.um .fa-cuttlefish:before{content:"\f38c"}.um .fa-blogger:before{content:"\f37c"}.um .fa-flickr:before{content:"\f16e"}.um .fa-viber:before{content:"\f409"}.um .fa-soundcloud:before{content:"\f1be"}.um .fa-digg:before{content:"\f1a6"}.um .fa-tencent-weibo:before{content:"\f1d5"}.um .fa-letterboxd:before{content:"\e62d"}.um .fa-symfony:before{content:"\f83d"}.um .fa-maxcdn:before{content:"\f136"}.um .fa-etsy:before{content:"\f2d7"}.um .fa-facebook-messenger:before{content:"\f39f"}.um .fa-audible:before{content:"\f373"}.um .fa-think-peaks:before{content:"\f731"}.um .fa-bilibili:before{content:"\e3d9"}.um .fa-erlang:before{content:"\f39d"}.um .fa-x-twitter:before{content:"\e61b"}.um .fa-cotton-bureau:before{content:"\f89e"}.um .fa-dashcube:before{content:"\f210"}.um .fa-42-group:before{content:"\e080"}.um .fa-innosoft:before{content:"\e080"}.um .fa-stack-exchange:before{content:"\f18d"}.um .fa-elementor:before{content:"\f430"}.um .fa-square-pied-piper:before{content:"\e01e"}.um .fa-pied-piper-square:before{content:"\e01e"}.um .fa-creative-commons-nd:before{content:"\f4eb"}.um .fa-palfed:before{content:"\f3d8"}.um .fa-superpowers:before{content:"\f2dd"}.um .fa-resolving:before{content:"\f3e7"}.um .fa-xbox:before{content:"\f412"}.um .fa-square-web-awesome-stroke:before{content:"\e684"}.um .fa-searchengin:before{content:"\f3eb"}.um .fa-tiktok:before{content:"\e07b"}.um .fa-square-facebook:before{content:"\f082"}.um .fa-facebook-square:before{content:"\f082"}.um .fa-renren:before{content:"\f18b"}.um .fa-linux:before{content:"\f17c"}.um .fa-glide:before{content:"\f2a5"}.um .fa-linkedin:before{content:"\f08c"}.um .fa-hubspot:before{content:"\f3b2"}.um .fa-deploydog:before{content:"\f38e"}.um .fa-twitch:before{content:"\f1e8"}.um .fa-ravelry:before{content:"\f2d9"}.um .fa-mixer:before{content:"\e056"}.um .fa-square-lastfm:before{content:"\f203"}.um .fa-lastfm-square:before{content:"\f203"}.um .fa-vimeo:before{content:"\f40a"}.um .fa-mendeley:before{content:"\f7b3"}.um .fa-uniregistry:before{content:"\f404"}.um .fa-figma:before{content:"\f799"}.um .fa-creative-commons-remix:before{content:"\f4ee"}.um .fa-cc-amazon-pay:before{content:"\f42d"}.um .fa-dropbox:before{content:"\f16b"}.um .fa-instagram:before{content:"\f16d"}.um .fa-cmplid:before{content:"\e360"}.um .fa-upwork:before{content:"\e641"}.um .fa-facebook:before{content:"\f09a"}.um .fa-gripfire:before{content:"\f3ac"}.um .fa-jedi-order:before{content:"\f50e"}.um .fa-uikit:before{content:"\f403"}.um .fa-fort-awesome-alt:before{content:"\f3a3"}.um .fa-phabricator:before{content:"\f3db"}.um .fa-ussunnah:before{content:"\f407"}.um .fa-earlybirds:before{content:"\f39a"}.um .fa-trade-federation:before{content:"\f513"}.um .fa-autoprefixer:before{content:"\f41c"}.um .fa-whatsapp:before{content:"\f232"}.um .fa-square-upwork:before{content:"\e67c"}.um .fa-slideshare:before{content:"\f1e7"}.um .fa-google-play:before{content:"\f3ab"}.um .fa-viadeo:before{content:"\f2a9"}.um .fa-line:before{content:"\f3c0"}.um .fa-google-drive:before{content:"\f3aa"}.um .fa-servicestack:before{content:"\f3ec"}.um .fa-simplybuilt:before{content:"\f215"}.um .fa-bitbucket:before{content:"\f171"}.um .fa-imdb:before{content:"\f2d8"}.um .fa-deezer:before{content:"\e077"}.um .fa-raspberry-pi:before{content:"\f7bb"}.um .fa-jira:before{content:"\f7b1"}.um .fa-docker:before{content:"\f395"}.um .fa-screenpal:before{content:"\e570"}.um .fa-bluetooth:before{content:"\f293"}.um .fa-gitter:before{content:"\f426"}.um .fa-d-and-d:before{content:"\f38d"}.um .fa-microblog:before{content:"\e01a"}.um .fa-cc-diners-club:before{content:"\f24c"}.um .fa-gg-circle:before{content:"\f261"}.um .fa-pied-piper-hat:before{content:"\f4e5"}.um .fa-kickstarter-k:before{content:"\f3bc"}.um .fa-yandex:before{content:"\f413"}.um .fa-readme:before{content:"\f4d5"}.um .fa-html5:before{content:"\f13b"}.um .fa-sellsy:before{content:"\f213"}.um .fa-square-web-awesome:before{content:"\e683"}.um .fa-sass:before{content:"\f41e"}.um .fa-wirsindhandwerk:before{content:"\e2d0"}.um .fa-wsh:before{content:"\e2d0"}.um .fa-buromobelexperte:before{content:"\f37f"}.um .fa-salesforce:before{content:"\f83b"}.um .fa-octopus-deploy:before{content:"\e082"}.um .fa-medapps:before{content:"\f3c6"}.um .fa-ns8:before{content:"\f3d5"}.um .fa-pinterest-p:before{content:"\f231"}.um .fa-apper:before{content:"\f371"}.um .fa-fort-awesome:before{content:"\f286"}.um .fa-waze:before{content:"\f83f"}.um .fa-bluesky:before{content:"\e671"}.um .fa-cc-jcb:before{content:"\f24b"}.um .fa-snapchat:before{content:"\f2ab"}.um .fa-snapchat-ghost:before{content:"\f2ab"}.um .fa-fantasy-flight-games:before{content:"\f6dc"}.um .fa-rust:before{content:"\e07a"}.um .fa-wix:before{content:"\f5cf"}.um .fa-square-behance:before{content:"\f1b5"}.um .fa-behance-square:before{content:"\f1b5"}.um .fa-supple:before{content:"\f3f9"}.um .fa-webflow:before{content:"\e65c"}.um .fa-rebel:before{content:"\f1d0"}.um .fa-css3:before{content:"\f13c"}.um .fa-staylinked:before{content:"\f3f5"}.um .fa-kaggle:before{content:"\f5fa"}.um .fa-space-awesome:before{content:"\e5ac"}.um .fa-deviantart:before{content:"\f1bd"}.um .fa-cpanel:before{content:"\f388"}.um .fa-goodreads-g:before{content:"\f3a9"}.um .fa-square-git:before{content:"\f1d2"}.um .fa-git-square:before{content:"\f1d2"}.um .fa-square-tumblr:before{content:"\f174"}.um .fa-tumblr-square:before{content:"\f174"}.um .fa-trello:before{content:"\f181"}.um .fa-creative-commons-nc-jp:before{content:"\f4ea"}.um .fa-get-pocket:before{content:"\f265"}.um .fa-perbyte:before{content:"\e083"}.um .fa-grunt:before{content:"\f3ad"}.um .fa-weebly:before{content:"\f5cc"}.um .fa-connectdevelop:before{content:"\f20e"}.um .fa-leanpub:before{content:"\f212"}.um .fa-black-tie:before{content:"\f27e"}.um .fa-themeco:before{content:"\f5c6"}.um .fa-python:before{content:"\f3e2"}.um .fa-android:before{content:"\f17b"}.um .fa-bots:before{content:"\e340"}.um .fa-free-code-camp:before{content:"\f2c5"}.um .fa-hornbill:before{content:"\f592"}.um .fa-js:before{content:"\f3b8"}.um .fa-ideal:before{content:"\e013"}.um .fa-git:before{content:"\f1d3"}.um .fa-dev:before{content:"\f6cc"}.um .fa-sketch:before{content:"\f7c6"}.um .fa-yandex-international:before{content:"\f414"}.um .fa-cc-amex:before{content:"\f1f3"}.um .fa-uber:before{content:"\f402"}.um .fa-github:before{content:"\f09b"}.um .fa-php:before{content:"\f457"}.um .fa-alipay:before{content:"\f642"}.um .fa-youtube:before{content:"\f167"}.um .fa-skyatlas:before{content:"\f216"}.um .fa-firefox-browser:before{content:"\e007"}.um .fa-replyd:before{content:"\f3e6"}.um .fa-suse:before{content:"\f7d6"}.um .fa-jenkins:before{content:"\f3b6"}.um .fa-twitter:before{content:"\f099"}.um .fa-rockrms:before{content:"\f3e9"}.um .fa-pinterest:before{content:"\f0d2"}.um .fa-buffer:before{content:"\f837"}.um .fa-npm:before{content:"\f3d4"}.um .fa-yammer:before{content:"\f840"}.um .fa-btc:before{content:"\f15a"}.um .fa-dribbble:before{content:"\f17d"}.um .fa-stumbleupon-circle:before{content:"\f1a3"}.um .fa-internet-explorer:before{content:"\f26b"}.um .fa-stubber:before{content:"\e5c7"}.um .fa-telegram:before{content:"\f2c6"}.um .fa-telegram-plane:before{content:"\f2c6"}.um .fa-old-republic:before{content:"\f510"}.um .fa-odysee:before{content:"\e5c6"}.um .fa-square-whatsapp:before{content:"\f40c"}.um .fa-whatsapp-square:before{content:"\f40c"}.um .fa-node-js:before{content:"\f3d3"}.um .fa-edge-legacy:before{content:"\e078"}.um .fa-slack:before{content:"\f198"}.um .fa-slack-hash:before{content:"\f198"}.um .fa-medrt:before{content:"\f3c8"}.um .fa-usb:before{content:"\f287"}.um .fa-tumblr:before{content:"\f173"}.um .fa-vaadin:before{content:"\f408"}.um .fa-quora:before{content:"\f2c4"}.um .fa-square-x-twitter:before{content:"\e61a"}.um .fa-reacteurope:before{content:"\f75d"}.um .fa-medium:before{content:"\f23a"}.um .fa-medium-m:before{content:"\f23a"}.um .fa-amilia:before{content:"\f36d"}.um .fa-mixcloud:before{content:"\f289"}.um .fa-flipboard:before{content:"\f44d"}.um .fa-viacoin:before{content:"\f237"}.um .fa-critical-role:before{content:"\f6c9"}.um .fa-sitrox:before{content:"\e44a"}.um .fa-discourse:before{content:"\f393"}.um .fa-joomla:before{content:"\f1aa"}.um .fa-mastodon:before{content:"\f4f6"}.um .fa-airbnb:before{content:"\f834"}.um .fa-wolf-pack-battalion:before{content:"\f514"}.um .fa-buy-n-large:before{content:"\f8a6"}.um .fa-gulp:before{content:"\f3ae"}.um .fa-creative-commons-sampling-plus:before{content:"\f4f1"}.um .fa-strava:before{content:"\f428"}.um .fa-ember:before{content:"\f423"}.um .fa-canadian-maple-leaf:before{content:"\f785"}.um .fa-teamspeak:before{content:"\f4f9"}.um .fa-pushed:before{content:"\f3e1"}.um .fa-wordpress-simple:before{content:"\f411"}.um .fa-nutritionix:before{content:"\f3d6"}.um .fa-wodu:before{content:"\e088"}.um .fa-google-pay:before{content:"\e079"}.um .fa-intercom:before{content:"\f7af"}.um .fa-zhihu:before{content:"\f63f"}.um .fa-korvue:before{content:"\f42f"}.um .fa-pix:before{content:"\e43a"}.um .fa-steam-symbol:before{content:"\f3f6"}.um :host,.um :root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../libs/fontawesome/webfonts/fa-regular-400.woff2) format("woff2"),url(../libs/fontawesome/webfonts/fa-regular-400.ttf) format("truetype")}.um .fa-regular,.um .far{font-weight:400}.um :host,.um :root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../libs/fontawesome/webfonts/fa-solid-900.woff2) format("woff2"),url(../libs/fontawesome/webfonts/fa-solid-900.ttf) format("truetype")}.um .fa-solid,.um .fas{font-weight:900}.um .fa.fa-glass:before{content:"\f000"}.um .fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-envelope-o:before{content:"\f0e0"}.um .fa.fa-star-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-o:before{content:"\f005"}.um .fa.fa-remove:before{content:"\f00d"}.um .fa.fa-close:before{content:"\f00d"}.um .fa.fa-gear:before{content:"\f013"}.um .fa.fa-trash-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-trash-o:before{content:"\f2ed"}.um .fa.fa-home:before{content:"\f015"}.um .fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-o:before{content:"\f15b"}.um .fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-clock-o:before{content:"\f017"}.um .fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-down:before{content:"\f358"}.um .fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-up:before{content:"\f35b"}.um .fa.fa-play-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-play-circle-o:before{content:"\f144"}.um .fa.fa-repeat:before{content:"\f01e"}.um .fa.fa-rotate-right:before{content:"\f01e"}.um .fa.fa-refresh:before{content:"\f021"}.um .fa.fa-list-alt{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-list-alt:before{content:"\f022"}.um .fa.fa-dedent:before{content:"\f03b"}.um .fa.fa-video-camera:before{content:"\f03d"}.um .fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-picture-o:before{content:"\f03e"}.um .fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-photo:before{content:"\f03e"}.um .fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-image:before{content:"\f03e"}.um .fa.fa-map-marker:before{content:"\f3c5"}.um .fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-pencil-square-o:before{content:"\f044"}.um .fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-edit:before{content:"\f044"}.um .fa.fa-share-square-o:before{content:"\f14d"}.um .fa.fa-check-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-check-square-o:before{content:"\f14a"}.um .fa.fa-arrows:before{content:"\f0b2"}.um .fa.fa-times-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-times-circle-o:before{content:"\f057"}.um .fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-check-circle-o:before{content:"\f058"}.um .fa.fa-mail-forward:before{content:"\f064"}.um .fa.fa-expand:before{content:"\f424"}.um .fa.fa-compress:before{content:"\f422"}.um .fa.fa-eye{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-eye-slash{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-warning:before{content:"\f071"}.um .fa.fa-calendar:before{content:"\f073"}.um .fa.fa-arrows-v:before{content:"\f338"}.um .fa.fa-arrows-h:before{content:"\f337"}.um .fa.fa-bar-chart:before{content:"\e0e3"}.um .fa.fa-bar-chart-o:before{content:"\e0e3"}.um .fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-twitter-square:before{content:"\f081"}.um .fa.fa-facebook-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook-square:before{content:"\f082"}.um .fa.fa-gears:before{content:"\f085"}.um .fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-thumbs-o-up:before{content:"\f164"}.um .fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-thumbs-o-down:before{content:"\f165"}.um .fa.fa-heart-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-heart-o:before{content:"\f004"}.um .fa.fa-sign-out:before{content:"\f2f5"}.um .fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-linkedin-square:before{content:"\f08c"}.um .fa.fa-thumb-tack:before{content:"\f08d"}.um .fa.fa-external-link:before{content:"\f35d"}.um .fa.fa-sign-in:before{content:"\f2f6"}.um .fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-github-square:before{content:"\f092"}.um .fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-lemon-o:before{content:"\f094"}.um .fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-square-o:before{content:"\f0c8"}.um .fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-bookmark-o:before{content:"\f02e"}.um .fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook:before{content:"\f39e"}.um .fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook-f:before{content:"\f39e"}.um .fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-feed:before{content:"\f09e"}.um .fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hdd-o:before{content:"\f0a0"}.um .fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-right:before{content:"\f0a4"}.um .fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-left:before{content:"\f0a5"}.um .fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-up:before{content:"\f0a6"}.um .fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-down:before{content:"\f0a7"}.um .fa.fa-globe:before{content:"\f57d"}.um .fa.fa-tasks:before{content:"\f828"}.um .fa.fa-arrows-alt:before{content:"\f31e"}.um .fa.fa-group:before{content:"\f0c0"}.um .fa.fa-chain:before{content:"\f0c1"}.um .fa.fa-cut:before{content:"\f0c4"}.um .fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-files-o:before{content:"\f0c5"}.um .fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-floppy-o:before{content:"\f0c7"}.um .fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-save:before{content:"\f0c7"}.um .fa.fa-navicon:before{content:"\f0c9"}.um .fa.fa-reorder:before{content:"\f0c9"}.um .fa.fa-magic:before{content:"\e2ca"}.um .fa.fa-pinterest{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pinterest-square:before{content:"\f0d3"}.um .fa.fa-google-plus-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-square:before{content:"\f0d4"}.um .fa.fa-google-plus{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus:before{content:"\f0d5"}.um .fa.fa-money:before{content:"\f3d1"}.um .fa.fa-unsorted:before{content:"\f0dc"}.um .fa.fa-sort-desc:before{content:"\f0dd"}.um .fa.fa-sort-asc:before{content:"\f0de"}.um .fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-linkedin:before{content:"\f0e1"}.um .fa.fa-rotate-left:before{content:"\f0e2"}.um .fa.fa-legal:before{content:"\f0e3"}.um .fa.fa-tachometer:before{content:"\f625"}.um .fa.fa-dashboard:before{content:"\f625"}.um .fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-comment-o:before{content:"\f075"}.um .fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-comments-o:before{content:"\f086"}.um .fa.fa-flash:before{content:"\f0e7"}.um .fa.fa-clipboard:before{content:"\f0ea"}.um .fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-lightbulb-o:before{content:"\f0eb"}.um .fa.fa-exchange:before{content:"\f362"}.um .fa.fa-cloud-download:before{content:"\f0ed"}.um .fa.fa-cloud-upload:before{content:"\f0ee"}.um .fa.fa-bell-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-bell-o:before{content:"\f0f3"}.um .fa.fa-cutlery:before{content:"\f2e7"}.um .fa.fa-file-text-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-text-o:before{content:"\f15c"}.um .fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-building-o:before{content:"\f1ad"}.um .fa.fa-hospital-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hospital-o:before{content:"\f0f8"}.um .fa.fa-tablet:before{content:"\f3fa"}.um .fa.fa-mobile:before{content:"\f3cd"}.um .fa.fa-mobile-phone:before{content:"\f3cd"}.um .fa.fa-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-circle-o:before{content:"\f111"}.um .fa.fa-mail-reply:before{content:"\f3e5"}.um .fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-folder-o:before{content:"\f07b"}.um .fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-folder-open-o:before{content:"\f07c"}.um .fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-smile-o:before{content:"\f118"}.um .fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-frown-o:before{content:"\f119"}.um .fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-meh-o:before{content:"\f11a"}.um .fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-keyboard-o:before{content:"\f11c"}.um .fa.fa-flag-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-flag-o:before{content:"\f024"}.um .fa.fa-mail-reply-all:before{content:"\f122"}.um .fa.fa-star-half-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-half-o:before{content:"\f5c0"}.um .fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-half-empty:before{content:"\f5c0"}.um .fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-half-full:before{content:"\f5c0"}.um .fa.fa-code-fork:before{content:"\f126"}.um .fa.fa-chain-broken:before{content:"\f127"}.um .fa.fa-unlink:before{content:"\f127"}.um .fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-o:before{content:"\f133"}.um .fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-html5{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-css3{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-unlock-alt:before{content:"\f09c"}.um .fa.fa-minus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-minus-square-o:before{content:"\f146"}.um .fa.fa-level-up:before{content:"\f3bf"}.um .fa.fa-level-down:before{content:"\f3be"}.um .fa.fa-pencil-square:before{content:"\f14b"}.um .fa.fa-external-link-square:before{content:"\f360"}.um .fa.fa-compass{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-down:before{content:"\f150"}.um .fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-down:before{content:"\f150"}.um .fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-up:before{content:"\f151"}.um .fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-up:before{content:"\f151"}.um .fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-right:before{content:"\f152"}.um .fa.fa-toggle-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-right:before{content:"\f152"}.um .fa.fa-eur:before{content:"\f153"}.um .fa.fa-euro:before{content:"\f153"}.um .fa.fa-gbp:before{content:"\f154"}.um .fa.fa-usd:before{content:"\$"}.um .fa.fa-dollar:before{content:"\$"}.um .fa.fa-inr:before{content:"\e1bc"}.um .fa.fa-rupee:before{content:"\e1bc"}.um .fa.fa-jpy:before{content:"\f157"}.um .fa.fa-cny:before{content:"\f157"}.um .fa.fa-rmb:before{content:"\f157"}.um .fa.fa-yen:before{content:"\f157"}.um .fa.fa-rub:before{content:"\f158"}.um .fa.fa-ruble:before{content:"\f158"}.um .fa.fa-rouble:before{content:"\f158"}.um .fa.fa-krw:before{content:"\f159"}.um .fa.fa-won:before{content:"\f159"}.um .fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitcoin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitcoin:before{content:"\f15a"}.um .fa.fa-file-text:before{content:"\f15c"}.um .fa.fa-sort-alpha-asc:before{content:"\f15d"}.um .fa.fa-sort-alpha-desc:before{content:"\f881"}.um .fa.fa-sort-amount-asc:before{content:"\f884"}.um .fa.fa-sort-amount-desc:before{content:"\f160"}.um .fa.fa-sort-numeric-asc:before{content:"\f162"}.um .fa.fa-sort-numeric-desc:before{content:"\f886"}.um .fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-youtube-square:before{content:"\f431"}.um .fa.fa-youtube{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-xing{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-xing-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-xing-square:before{content:"\f169"}.um .fa.fa-youtube-play{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-youtube-play:before{content:"\f167"}.um .fa.fa-dropbox{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-instagram{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-flickr{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-adn{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitbucket{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitbucket-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitbucket-square:before{content:"\f171"}.um .fa.fa-tumblr{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-tumblr-square:before{content:"\f174"}.um .fa.fa-long-arrow-down:before{content:"\f309"}.um .fa.fa-long-arrow-up:before{content:"\f30c"}.um .fa.fa-long-arrow-left:before{content:"\f30a"}.um .fa.fa-long-arrow-right:before{content:"\f30b"}.um .fa.fa-apple{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-android{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-linux{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-dribbble{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-skype{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-foursquare{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-trello{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gratipay{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gittip{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gittip:before{content:"\f184"}.um .fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-sun-o:before{content:"\f185"}.um .fa.fa-moon-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-moon-o:before{content:"\f186"}.um .fa.fa-vk{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-renren{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pagelines{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-stack-exchange{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-right:before{content:"\f35a"}.um .fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-left:before{content:"\f359"}.um .fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-left:before{content:"\f191"}.um .fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-left:before{content:"\f191"}.um .fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-dot-circle-o:before{content:"\f192"}.um .fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-vimeo-square:before{content:"\f194"}.um .fa.fa-try:before{content:"\e2bb"}.um .fa.fa-turkish-lira:before{content:"\e2bb"}.um .fa.fa-plus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-plus-square-o:before{content:"\f0fe"}.um .fa.fa-slack{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-openid{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-institution:before{content:"\f19c"}.um .fa.fa-bank:before{content:"\f19c"}.um .fa.fa-mortar-board:before{content:"\f19d"}.um .fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit-square:before{content:"\f1a2"}.um .fa.fa-stumbleupon-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-stumbleupon{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-delicious{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-digg{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pied-piper-pp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pied-piper-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-drupal{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-joomla{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-behance{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-behance-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-behance-square:before{content:"\f1b5"}.um .fa.fa-steam{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-steam-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-steam-square:before{content:"\f1b7"}.um .fa.fa-automobile:before{content:"\f1b9"}.um .fa.fa-cab:before{content:"\f1ba"}.um .fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-deviantart{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-soundcloud{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-pdf-o:before{content:"\f1c1"}.um .fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-word-o:before{content:"\f1c2"}.um .fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-excel-o:before{content:"\f1c3"}.um .fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-powerpoint-o:before{content:"\f1c4"}.um .fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-image-o:before{content:"\f1c5"}.um .fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-photo-o:before{content:"\f1c5"}.um .fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-picture-o:before{content:"\f1c5"}.um .fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-archive-o:before{content:"\f1c6"}.um .fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-zip-o:before{content:"\f1c6"}.um .fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-audio-o:before{content:"\f1c7"}.um .fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-sound-o:before{content:"\f1c7"}.um .fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-video-o:before{content:"\f1c8"}.um .fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-movie-o:before{content:"\f1c8"}.um .fa.fa-file-code-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-code-o:before{content:"\f1c9"}.um .fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-codepen{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-jsfiddle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-life-bouy:before{content:"\f1cd"}.um .fa.fa-life-buoy:before{content:"\f1cd"}.um .fa.fa-life-saver:before{content:"\f1cd"}.um .fa.fa-support:before{content:"\f1cd"}.um .fa.fa-circle-o-notch:before{content:"\f1ce"}.um .fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ra{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ra:before{content:"\f1d0"}.um .fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-resistance:before{content:"\f1d0"}.um .fa.fa-empire{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ge:before{content:"\f1d1"}.um .fa.fa-git-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-git-square:before{content:"\f1d2"}.um .fa.fa-git{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-hacker-news{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-y-combinator-square:before{content:"\f1d4"}.um .fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yc-square:before{content:"\f1d4"}.um .fa.fa-tencent-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-qq{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wechat{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wechat:before{content:"\f1d7"}.um .fa.fa-send:before{content:"\f1d8"}.um .fa.fa-paper-plane-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-paper-plane-o:before{content:"\f1d8"}.um .fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-send-o:before{content:"\f1d8"}.um .fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-circle-thin:before{content:"\f111"}.um .fa.fa-header:before{content:"\f1dc"}.um .fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-futbol-o:before{content:"\f1e3"}.um .fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-soccer-ball-o:before{content:"\f1e3"}.um .fa.fa-slideshare{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-twitch{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-newspaper-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-newspaper-o:before{content:"\f1ea"}.um .fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-wallet{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-visa{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-mastercard{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-discover{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-amex{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-stripe{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bell-slash-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-bell-slash-o:before{content:"\f1f6"}.um .fa.fa-trash:before{content:"\f2ed"}.um .fa.fa-copyright{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-eyedropper:before{content:"\f1fb"}.um .fa.fa-area-chart:before{content:"\f1fe"}.um .fa.fa-pie-chart:before{content:"\f200"}.um .fa.fa-line-chart:before{content:"\f201"}.um .fa.fa-lastfm{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-lastfm-square:before{content:"\f203"}.um .fa.fa-ioxhost{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-angellist{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-cc:before{content:"\f20a"}.um .fa.fa-ils:before{content:"\f20b"}.um .fa.fa-shekel:before{content:"\f20b"}.um .fa.fa-sheqel:before{content:"\f20b"}.um .fa.fa-buysellads{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-connectdevelop{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-dashcube{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-forumbee{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-leanpub{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-sellsy{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-shirtsinbulk{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-simplybuilt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-diamond:before{content:"\f3a5"}.um .fa.fa-transgender:before{content:"\f224"}.um .fa.fa-intersex:before{content:"\f224"}.um .fa.fa-transgender-alt:before{content:"\f225"}.um .fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook-official:before{content:"\f09a"}.um .fa.fa-pinterest-p{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-hotel:before{content:"\f236"}.um .fa.fa-viacoin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-medium{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-y-combinator{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yc:before{content:"\f23b"}.um .fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-opencart{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-expeditedssl{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-battery-4:before{content:"\f240"}.um .fa.fa-battery:before{content:"\f240"}.um .fa.fa-battery-3:before{content:"\f241"}.um .fa.fa-battery-2:before{content:"\f242"}.um .fa.fa-battery-1:before{content:"\f243"}.um .fa.fa-battery-0:before{content:"\f244"}.um .fa.fa-object-group{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-object-ungroup{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-sticky-note-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-sticky-note-o:before{content:"\f249"}.um .fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-diners-club{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-clone{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hourglass-o:before{content:"\f254"}.um .fa.fa-hourglass-1:before{content:"\f251"}.um .fa.fa-hourglass-2:before{content:"\f252"}.um .fa.fa-hourglass-3:before{content:"\f253"}.um .fa.fa-hand-rock-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-rock-o:before{content:"\f255"}.um .fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-grab-o:before{content:"\f255"}.um .fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-paper-o:before{content:"\f256"}.um .fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-stop-o:before{content:"\f256"}.um .fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-scissors-o:before{content:"\f257"}.um .fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-lizard-o:before{content:"\f258"}.um .fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-spock-o:before{content:"\f259"}.um .fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-pointer-o:before{content:"\f25a"}.um .fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-peace-o:before{content:"\f25b"}.um .fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-creative-commons{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gg{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gg-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-odnoklassniki{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-odnoklassniki-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-odnoklassniki-square:before{content:"\f264"}.um .fa.fa-get-pocket{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-safari{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-chrome{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-firefox{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-opera{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-internet-explorer{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-television:before{content:"\f26c"}.um .fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-500px{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-amazon{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-plus-o:before{content:"\f271"}.um .fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-minus-o:before{content:"\f272"}.um .fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-times-o:before{content:"\f273"}.um .fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-check-o:before{content:"\f274"}.um .fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-map-o:before{content:"\f279"}.um .fa.fa-commenting:before{content:"\f4ad"}.um .fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-commenting-o:before{content:"\f4ad"}.um .fa.fa-houzz{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-vimeo:before{content:"\f27d"}.um .fa.fa-black-tie{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fonticons{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-edge{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-credit-card-alt:before{content:"\f09d"}.um .fa.fa-codiepie{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-modx{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fort-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-product-hunt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-mixcloud{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-scribd{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-pause-circle-o:before{content:"\f28b"}.um .fa.fa-stop-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-stop-circle-o:before{content:"\f28d"}.um .fa.fa-bluetooth{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bluetooth-b{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gitlab{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wpbeginner{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-envira{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wheelchair-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wheelchair-alt:before{content:"\f368"}.um .fa.fa-question-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-question-circle-o:before{content:"\f059"}.um .fa.fa-volume-control-phone:before{content:"\f2a0"}.um .fa.fa-asl-interpreting:before{content:"\f2a3"}.um .fa.fa-deafness:before{content:"\f2a4"}.um .fa.fa-hard-of-hearing:before{content:"\f2a4"}.um .fa.fa-glide{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-signing:before{content:"\f2a7"}.um .fa.fa-viadeo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-viadeo-square:before{content:"\f2aa"}.um .fa.fa-snapchat{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-snapchat-ghost{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-snapchat-ghost:before{content:"\f2ab"}.um .fa.fa-snapchat-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-snapchat-square:before{content:"\f2ad"}.um .fa.fa-pied-piper{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-first-order{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-themeisle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-official{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-official:before{content:"\f2b3"}.um .fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-circle:before{content:"\f2b3"}.um .fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fa{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fa:before{content:"\f2b4"}.um .fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-handshake-o:before{content:"\f2b5"}.um .fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-envelope-open-o:before{content:"\f2b6"}.um .fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-address-book-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-address-book-o:before{content:"\f2b9"}.um .fa.fa-vcard:before{content:"\f2bb"}.um .fa.fa-address-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-address-card-o:before{content:"\f2bb"}.um .fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-vcard-o:before{content:"\f2bb"}.um .fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-user-circle-o:before{content:"\f2bd"}.um .fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-user-o:before{content:"\f007"}.um .fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-drivers-license:before{content:"\f2c2"}.um .fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-id-card-o:before{content:"\f2c2"}.um .fa.fa-drivers-license-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-drivers-license-o:before{content:"\f2c2"}.um .fa.fa-quora{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-free-code-camp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-thermometer-4:before{content:"\f2c7"}.um .fa.fa-thermometer:before{content:"\f2c7"}.um .fa.fa-thermometer-3:before{content:"\f2c8"}.um .fa.fa-thermometer-2:before{content:"\f2c9"}.um .fa.fa-thermometer-1:before{content:"\f2ca"}.um .fa.fa-thermometer-0:before{content:"\f2cb"}.um .fa.fa-bathtub:before{content:"\f2cd"}.um .fa.fa-s15:before{content:"\f2cd"}.um .fa.fa-window-maximize{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-window-restore{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-times-rectangle:before{content:"\f410"}.um .fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-window-close-o:before{content:"\f410"}.um .fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-times-rectangle-o:before{content:"\f410"}.um .fa.fa-bandcamp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-grav{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-etsy{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-imdb{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-eercast{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-eercast:before{content:"\f2da"}.um .fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-snowflake-o:before{content:"\f2dc"}.um .fa.fa-superpowers{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-meetup{font-family:"Font Awesome 6 Brands";font-weight:400} \ No newline at end of file + */}.um .fa,.um-icon-within .fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style,900)}.um .fa,.um .fa-brands,.um .fa-classic,.um .fa-regular,.um .fa-sharp,.um .fa-solid,.um .fab,.um .far,.um .fas,.um-icon-within .fa,.um-icon-within .fa-brands,.um-icon-within .fa-classic,.um-icon-within .fa-regular,.um-icon-within .fa-sharp,.um-icon-within .fa-solid,.um-icon-within .fab,.um-icon-within .far,.um-icon-within .fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.um .fa-classic,.um .fa-regular,.um .fa-solid,.um .far,.um .fas,.um-icon-within .fa-classic,.um-icon-within .fa-regular,.um-icon-within .fa-solid,.um-icon-within .far,.um-icon-within .fas{font-family:"Font Awesome 6 Free"}.um .fa-brands,.um .fab,.um-icon-within .fa-brands,.um-icon-within .fab{font-family:"Font Awesome 6 Brands"}.um .fa-1x,.um-icon-within .fa-1x{font-size:1em}.um .fa-2x,.um-icon-within .fa-2x{font-size:2em}.um .fa-3x,.um-icon-within .fa-3x{font-size:3em}.um .fa-4x,.um-icon-within .fa-4x{font-size:4em}.um .fa-5x,.um-icon-within .fa-5x{font-size:5em}.um .fa-6x,.um-icon-within .fa-6x{font-size:6em}.um .fa-7x,.um-icon-within .fa-7x{font-size:7em}.um .fa-8x,.um-icon-within .fa-8x{font-size:8em}.um .fa-9x,.um-icon-within .fa-9x{font-size:9em}.um .fa-10x,.um-icon-within .fa-10x{font-size:10em}.um .fa-2xs,.um-icon-within .fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.um .fa-xs,.um-icon-within .fa-xs{font-size:.75em;line-height:.0833333337em;vertical-align:.125em}.um .fa-sm,.um-icon-within .fa-sm{font-size:.875em;line-height:.0714285718em;vertical-align:.0535714295em}.um .fa-lg,.um-icon-within .fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.um .fa-xl,.um-icon-within .fa-xl{font-size:1.5em;line-height:.0416666682em;vertical-align:-.125em}.um .fa-2xl,.um-icon-within .fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.um .fa-fw,.um-icon-within .fa-fw{text-align:center;width:1.25em}.um .fa-ul,.um-icon-within .fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.um .fa-ul>li,.um-icon-within .fa-ul>li{position:relative}.um .fa-li,.um-icon-within .fa-li{left:calc(var(--fa-li-width,2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.um .fa-border,.um-icon-within .fa-border{border-color:var(--fa-border-color,#eee);border-radius:var(--fa-border-radius,.1em);border-style:var(--fa-border-style,solid);border-width:var(--fa-border-width,.08em);padding:var(--fa-border-padding,.2em .25em .15em)}.um .fa-pull-left,.um-icon-within .fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.um .fa-pull-right,.um-icon-within .fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.um .fa-beat,.um-icon-within .fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.um .fa-bounce,.um-icon-within .fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.um .fa-fade,.um-icon-within .fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.um .fa-beat-fade,.um-icon-within .fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.um .fa-flip,.um-icon-within .fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.um .fa-shake,.um-icon-within .fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.um .fa-spin,.um-icon-within .fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.um .fa-spin-reverse,.um-icon-within .fa-spin-reverse{--fa-animation-direction:reverse}.um .fa-pulse,.um .fa-spin-pulse,.um-icon-within .fa-pulse,.um-icon-within .fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.um .fa-beat,.um .fa-beat-fade,.um .fa-bounce,.um .fa-fade,.um .fa-flip,.um .fa-pulse,.um .fa-shake,.um .fa-spin,.um .fa-spin-pulse,.um-icon-within .fa-beat,.um-icon-within .fa-beat-fade,.um-icon-within .fa-bounce,.um-icon-within .fa-fade,.um-icon-within .fa-flip,.um-icon-within .fa-pulse,.um-icon-within .fa-shake,.um-icon-within .fa-spin,.um-icon-within .fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1,1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{transform:scale(1,1) translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1,1) translateY(0)}100%{transform:scale(1,1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,100%{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}24%,8%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}100%,40%{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.um .fa-rotate-90,.um-icon-within .fa-rotate-90{transform:rotate(90deg)}.um .fa-rotate-180,.um-icon-within .fa-rotate-180{transform:rotate(180deg)}.um .fa-rotate-270,.um-icon-within .fa-rotate-270{transform:rotate(270deg)}.um .fa-flip-horizontal,.um-icon-within .fa-flip-horizontal{transform:scale(-1,1)}.um .fa-flip-vertical,.um-icon-within .fa-flip-vertical{transform:scale(1,-1)}.um .fa-flip-both,.um .fa-flip-horizontal.fa-flip-vertical,.um-icon-within .fa-flip-both,.um-icon-within .fa-flip-horizontal.fa-flip-vertical{transform:scale(-1,-1)}.um .fa-rotate-by,.um-icon-within .fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.um .fa-stack,.um-icon-within .fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.um .fa-stack-1x,.um .fa-stack-2x,.um-icon-within .fa-stack-1x,.um-icon-within .fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.um .fa-stack-1x,.um-icon-within .fa-stack-1x{line-height:inherit}.um .fa-stack-2x,.um-icon-within .fa-stack-2x{font-size:2em}.um .fa-inverse,.um-icon-within .fa-inverse{color:var(--fa-inverse,#fff)}.um .fa-0::before,.um-icon-within .fa-0::before{content:"\30 "}.um .fa-1::before,.um-icon-within .fa-1::before{content:"\31 "}.um .fa-2::before,.um-icon-within .fa-2::before{content:"\32 "}.um .fa-3::before,.um-icon-within .fa-3::before{content:"\33 "}.um .fa-4::before,.um-icon-within .fa-4::before{content:"\34 "}.um .fa-5::before,.um-icon-within .fa-5::before{content:"\35 "}.um .fa-6::before,.um-icon-within .fa-6::before{content:"\36 "}.um .fa-7::before,.um-icon-within .fa-7::before{content:"\37 "}.um .fa-8::before,.um-icon-within .fa-8::before{content:"\38 "}.um .fa-9::before,.um-icon-within .fa-9::before{content:"\39 "}.um .fa-fill-drip::before,.um-icon-within .fa-fill-drip::before{content:"\f576"}.um .fa-arrows-to-circle::before,.um-icon-within .fa-arrows-to-circle::before{content:"\e4bd"}.um .fa-circle-chevron-right::before,.um-icon-within .fa-circle-chevron-right::before{content:"\f138"}.um .fa-chevron-circle-right::before,.um-icon-within .fa-chevron-circle-right::before{content:"\f138"}.um .fa-at::before,.um-icon-within .fa-at::before{content:"\@"}.um .fa-trash-can::before,.um-icon-within .fa-trash-can::before{content:"\f2ed"}.um .fa-trash-alt::before,.um-icon-within .fa-trash-alt::before{content:"\f2ed"}.um .fa-text-height::before,.um-icon-within .fa-text-height::before{content:"\f034"}.um .fa-user-xmark::before,.um-icon-within .fa-user-xmark::before{content:"\f235"}.um .fa-user-times::before,.um-icon-within .fa-user-times::before{content:"\f235"}.um .fa-stethoscope::before,.um-icon-within .fa-stethoscope::before{content:"\f0f1"}.um .fa-message::before,.um-icon-within .fa-message::before{content:"\f27a"}.um .fa-comment-alt::before,.um-icon-within .fa-comment-alt::before{content:"\f27a"}.um .fa-info::before,.um-icon-within .fa-info::before{content:"\f129"}.um .fa-down-left-and-up-right-to-center::before,.um-icon-within .fa-down-left-and-up-right-to-center::before{content:"\f422"}.um .fa-compress-alt::before,.um-icon-within .fa-compress-alt::before{content:"\f422"}.um .fa-explosion::before,.um-icon-within .fa-explosion::before{content:"\e4e9"}.um .fa-file-lines::before,.um-icon-within .fa-file-lines::before{content:"\f15c"}.um .fa-file-alt::before,.um-icon-within .fa-file-alt::before{content:"\f15c"}.um .fa-file-text::before,.um-icon-within .fa-file-text::before{content:"\f15c"}.um .fa-wave-square::before,.um-icon-within .fa-wave-square::before{content:"\f83e"}.um .fa-ring::before,.um-icon-within .fa-ring::before{content:"\f70b"}.um .fa-building-un::before,.um-icon-within .fa-building-un::before{content:"\e4d9"}.um .fa-dice-three::before,.um-icon-within .fa-dice-three::before{content:"\f527"}.um .fa-calendar-days::before,.um-icon-within .fa-calendar-days::before{content:"\f073"}.um .fa-calendar-alt::before,.um-icon-within .fa-calendar-alt::before{content:"\f073"}.um .fa-anchor-circle-check::before,.um-icon-within .fa-anchor-circle-check::before{content:"\e4aa"}.um .fa-building-circle-arrow-right::before,.um-icon-within .fa-building-circle-arrow-right::before{content:"\e4d1"}.um .fa-volleyball::before,.um-icon-within .fa-volleyball::before{content:"\f45f"}.um .fa-volleyball-ball::before,.um-icon-within .fa-volleyball-ball::before{content:"\f45f"}.um .fa-arrows-up-to-line::before,.um-icon-within .fa-arrows-up-to-line::before{content:"\e4c2"}.um .fa-sort-down::before,.um-icon-within .fa-sort-down::before{content:"\f0dd"}.um .fa-sort-desc::before,.um-icon-within .fa-sort-desc::before{content:"\f0dd"}.um .fa-circle-minus::before,.um-icon-within .fa-circle-minus::before{content:"\f056"}.um .fa-minus-circle::before,.um-icon-within .fa-minus-circle::before{content:"\f056"}.um .fa-door-open::before,.um-icon-within .fa-door-open::before{content:"\f52b"}.um .fa-right-from-bracket::before,.um-icon-within .fa-right-from-bracket::before{content:"\f2f5"}.um .fa-sign-out-alt::before,.um-icon-within .fa-sign-out-alt::before{content:"\f2f5"}.um .fa-atom::before,.um-icon-within .fa-atom::before{content:"\f5d2"}.um .fa-soap::before,.um-icon-within .fa-soap::before{content:"\e06e"}.um .fa-icons::before,.um-icon-within .fa-icons::before{content:"\f86d"}.um .fa-heart-music-camera-bolt::before,.um-icon-within .fa-heart-music-camera-bolt::before{content:"\f86d"}.um .fa-microphone-lines-slash::before,.um-icon-within .fa-microphone-lines-slash::before{content:"\f539"}.um .fa-microphone-alt-slash::before,.um-icon-within .fa-microphone-alt-slash::before{content:"\f539"}.um .fa-bridge-circle-check::before,.um-icon-within .fa-bridge-circle-check::before{content:"\e4c9"}.um .fa-pump-medical::before,.um-icon-within .fa-pump-medical::before{content:"\e06a"}.um .fa-fingerprint::before,.um-icon-within .fa-fingerprint::before{content:"\f577"}.um .fa-hand-point-right::before,.um-icon-within .fa-hand-point-right::before{content:"\f0a4"}.um .fa-magnifying-glass-location::before,.um-icon-within .fa-magnifying-glass-location::before{content:"\f689"}.um .fa-search-location::before,.um-icon-within .fa-search-location::before{content:"\f689"}.um .fa-forward-step::before,.um-icon-within .fa-forward-step::before{content:"\f051"}.um .fa-step-forward::before,.um-icon-within .fa-step-forward::before{content:"\f051"}.um .fa-face-smile-beam::before,.um-icon-within .fa-face-smile-beam::before{content:"\f5b8"}.um .fa-smile-beam::before,.um-icon-within .fa-smile-beam::before{content:"\f5b8"}.um .fa-flag-checkered::before,.um-icon-within .fa-flag-checkered::before{content:"\f11e"}.um .fa-football::before,.um-icon-within .fa-football::before{content:"\f44e"}.um .fa-football-ball::before,.um-icon-within .fa-football-ball::before{content:"\f44e"}.um .fa-school-circle-exclamation::before,.um-icon-within .fa-school-circle-exclamation::before{content:"\e56c"}.um .fa-crop::before,.um-icon-within .fa-crop::before{content:"\f125"}.um .fa-angles-down::before,.um-icon-within .fa-angles-down::before{content:"\f103"}.um .fa-angle-double-down::before,.um-icon-within .fa-angle-double-down::before{content:"\f103"}.um .fa-users-rectangle::before,.um-icon-within .fa-users-rectangle::before{content:"\e594"}.um .fa-people-roof::before,.um-icon-within .fa-people-roof::before{content:"\e537"}.um .fa-people-line::before,.um-icon-within .fa-people-line::before{content:"\e534"}.um .fa-beer-mug-empty::before,.um-icon-within .fa-beer-mug-empty::before{content:"\f0fc"}.um .fa-beer::before,.um-icon-within .fa-beer::before{content:"\f0fc"}.um .fa-diagram-predecessor::before,.um-icon-within .fa-diagram-predecessor::before{content:"\e477"}.um .fa-arrow-up-long::before,.um-icon-within .fa-arrow-up-long::before{content:"\f176"}.um .fa-long-arrow-up::before,.um-icon-within .fa-long-arrow-up::before{content:"\f176"}.um .fa-fire-flame-simple::before,.um-icon-within .fa-fire-flame-simple::before{content:"\f46a"}.um .fa-burn::before,.um-icon-within .fa-burn::before{content:"\f46a"}.um .fa-person::before,.um-icon-within .fa-person::before{content:"\f183"}.um .fa-male::before,.um-icon-within .fa-male::before{content:"\f183"}.um .fa-laptop::before,.um-icon-within .fa-laptop::before{content:"\f109"}.um .fa-file-csv::before,.um-icon-within .fa-file-csv::before{content:"\f6dd"}.um .fa-menorah::before,.um-icon-within .fa-menorah::before{content:"\f676"}.um .fa-truck-plane::before,.um-icon-within .fa-truck-plane::before{content:"\e58f"}.um .fa-record-vinyl::before,.um-icon-within .fa-record-vinyl::before{content:"\f8d9"}.um .fa-face-grin-stars::before,.um-icon-within .fa-face-grin-stars::before{content:"\f587"}.um .fa-grin-stars::before,.um-icon-within .fa-grin-stars::before{content:"\f587"}.um .fa-bong::before,.um-icon-within .fa-bong::before{content:"\f55c"}.um .fa-spaghetti-monster-flying::before,.um-icon-within .fa-spaghetti-monster-flying::before{content:"\f67b"}.um .fa-pastafarianism::before,.um-icon-within .fa-pastafarianism::before{content:"\f67b"}.um .fa-arrow-down-up-across-line::before,.um-icon-within .fa-arrow-down-up-across-line::before{content:"\e4af"}.um .fa-spoon::before,.um-icon-within .fa-spoon::before{content:"\f2e5"}.um .fa-utensil-spoon::before,.um-icon-within .fa-utensil-spoon::before{content:"\f2e5"}.um .fa-jar-wheat::before,.um-icon-within .fa-jar-wheat::before{content:"\e517"}.um .fa-envelopes-bulk::before,.um-icon-within .fa-envelopes-bulk::before{content:"\f674"}.um .fa-mail-bulk::before,.um-icon-within .fa-mail-bulk::before{content:"\f674"}.um .fa-file-circle-exclamation::before,.um-icon-within .fa-file-circle-exclamation::before{content:"\e4eb"}.um .fa-circle-h::before,.um-icon-within .fa-circle-h::before{content:"\f47e"}.um .fa-hospital-symbol::before,.um-icon-within .fa-hospital-symbol::before{content:"\f47e"}.um .fa-pager::before,.um-icon-within .fa-pager::before{content:"\f815"}.um .fa-address-book::before,.um-icon-within .fa-address-book::before{content:"\f2b9"}.um .fa-contact-book::before,.um-icon-within .fa-contact-book::before{content:"\f2b9"}.um .fa-strikethrough::before,.um-icon-within .fa-strikethrough::before{content:"\f0cc"}.um .fa-k::before,.um-icon-within .fa-k::before{content:"K"}.um .fa-landmark-flag::before,.um-icon-within .fa-landmark-flag::before{content:"\e51c"}.um .fa-pencil::before,.um-icon-within .fa-pencil::before{content:"\f303"}.um .fa-pencil-alt::before,.um-icon-within .fa-pencil-alt::before{content:"\f303"}.um .fa-backward::before,.um-icon-within .fa-backward::before{content:"\f04a"}.um .fa-caret-right::before,.um-icon-within .fa-caret-right::before{content:"\f0da"}.um .fa-comments::before,.um-icon-within .fa-comments::before{content:"\f086"}.um .fa-paste::before,.um-icon-within .fa-paste::before{content:"\f0ea"}.um .fa-file-clipboard::before,.um-icon-within .fa-file-clipboard::before{content:"\f0ea"}.um .fa-code-pull-request::before,.um-icon-within .fa-code-pull-request::before{content:"\e13c"}.um .fa-clipboard-list::before,.um-icon-within .fa-clipboard-list::before{content:"\f46d"}.um .fa-truck-ramp-box::before,.um-icon-within .fa-truck-ramp-box::before{content:"\f4de"}.um .fa-truck-loading::before,.um-icon-within .fa-truck-loading::before{content:"\f4de"}.um .fa-user-check::before,.um-icon-within .fa-user-check::before{content:"\f4fc"}.um .fa-vial-virus::before,.um-icon-within .fa-vial-virus::before{content:"\e597"}.um .fa-sheet-plastic::before,.um-icon-within .fa-sheet-plastic::before{content:"\e571"}.um .fa-blog::before,.um-icon-within .fa-blog::before{content:"\f781"}.um .fa-user-ninja::before,.um-icon-within .fa-user-ninja::before{content:"\f504"}.um .fa-person-arrow-up-from-line::before,.um-icon-within .fa-person-arrow-up-from-line::before{content:"\e539"}.um .fa-scroll-torah::before,.um-icon-within .fa-scroll-torah::before{content:"\f6a0"}.um .fa-torah::before,.um-icon-within .fa-torah::before{content:"\f6a0"}.um .fa-broom-ball::before,.um-icon-within .fa-broom-ball::before{content:"\f458"}.um .fa-quidditch::before,.um-icon-within .fa-quidditch::before{content:"\f458"}.um .fa-quidditch-broom-ball::before,.um-icon-within .fa-quidditch-broom-ball::before{content:"\f458"}.um .fa-toggle-off::before,.um-icon-within .fa-toggle-off::before{content:"\f204"}.um .fa-box-archive::before,.um-icon-within .fa-box-archive::before{content:"\f187"}.um .fa-archive::before,.um-icon-within .fa-archive::before{content:"\f187"}.um .fa-person-drowning::before,.um-icon-within .fa-person-drowning::before{content:"\e545"}.um .fa-arrow-down-9-1::before,.um-icon-within .fa-arrow-down-9-1::before{content:"\f886"}.um .fa-sort-numeric-desc::before,.um-icon-within .fa-sort-numeric-desc::before{content:"\f886"}.um .fa-sort-numeric-down-alt::before,.um-icon-within .fa-sort-numeric-down-alt::before{content:"\f886"}.um .fa-face-grin-tongue-squint::before,.um-icon-within .fa-face-grin-tongue-squint::before{content:"\f58a"}.um .fa-grin-tongue-squint::before,.um-icon-within .fa-grin-tongue-squint::before{content:"\f58a"}.um .fa-spray-can::before,.um-icon-within .fa-spray-can::before{content:"\f5bd"}.um .fa-truck-monster::before,.um-icon-within .fa-truck-monster::before{content:"\f63b"}.um .fa-w::before,.um-icon-within .fa-w::before{content:"W"}.um .fa-earth-africa::before,.um-icon-within .fa-earth-africa::before{content:"\f57c"}.um .fa-globe-africa::before,.um-icon-within .fa-globe-africa::before{content:"\f57c"}.um .fa-rainbow::before,.um-icon-within .fa-rainbow::before{content:"\f75b"}.um .fa-circle-notch::before,.um-icon-within .fa-circle-notch::before{content:"\f1ce"}.um .fa-tablet-screen-button::before,.um-icon-within .fa-tablet-screen-button::before{content:"\f3fa"}.um .fa-tablet-alt::before,.um-icon-within .fa-tablet-alt::before{content:"\f3fa"}.um .fa-paw::before,.um-icon-within .fa-paw::before{content:"\f1b0"}.um .fa-cloud::before,.um-icon-within .fa-cloud::before{content:"\f0c2"}.um .fa-trowel-bricks::before,.um-icon-within .fa-trowel-bricks::before{content:"\e58a"}.um .fa-face-flushed::before,.um-icon-within .fa-face-flushed::before{content:"\f579"}.um .fa-flushed::before,.um-icon-within .fa-flushed::before{content:"\f579"}.um .fa-hospital-user::before,.um-icon-within .fa-hospital-user::before{content:"\f80d"}.um .fa-tent-arrow-left-right::before,.um-icon-within .fa-tent-arrow-left-right::before{content:"\e57f"}.um .fa-gavel::before,.um-icon-within .fa-gavel::before{content:"\f0e3"}.um .fa-legal::before,.um-icon-within .fa-legal::before{content:"\f0e3"}.um .fa-binoculars::before,.um-icon-within .fa-binoculars::before{content:"\f1e5"}.um .fa-microphone-slash::before,.um-icon-within .fa-microphone-slash::before{content:"\f131"}.um .fa-box-tissue::before,.um-icon-within .fa-box-tissue::before{content:"\e05b"}.um .fa-motorcycle::before,.um-icon-within .fa-motorcycle::before{content:"\f21c"}.um .fa-bell-concierge::before,.um-icon-within .fa-bell-concierge::before{content:"\f562"}.um .fa-concierge-bell::before,.um-icon-within .fa-concierge-bell::before{content:"\f562"}.um .fa-pen-ruler::before,.um-icon-within .fa-pen-ruler::before{content:"\f5ae"}.um .fa-pencil-ruler::before,.um-icon-within .fa-pencil-ruler::before{content:"\f5ae"}.um .fa-people-arrows::before,.um-icon-within .fa-people-arrows::before{content:"\e068"}.um .fa-people-arrows-left-right::before,.um-icon-within .fa-people-arrows-left-right::before{content:"\e068"}.um .fa-mars-and-venus-burst::before,.um-icon-within .fa-mars-and-venus-burst::before{content:"\e523"}.um .fa-square-caret-right::before,.um-icon-within .fa-square-caret-right::before{content:"\f152"}.um .fa-caret-square-right::before,.um-icon-within .fa-caret-square-right::before{content:"\f152"}.um .fa-scissors::before,.um-icon-within .fa-scissors::before{content:"\f0c4"}.um .fa-cut::before,.um-icon-within .fa-cut::before{content:"\f0c4"}.um .fa-sun-plant-wilt::before,.um-icon-within .fa-sun-plant-wilt::before{content:"\e57a"}.um .fa-toilets-portable::before,.um-icon-within .fa-toilets-portable::before{content:"\e584"}.um .fa-hockey-puck::before,.um-icon-within .fa-hockey-puck::before{content:"\f453"}.um .fa-table::before,.um-icon-within .fa-table::before{content:"\f0ce"}.um .fa-magnifying-glass-arrow-right::before,.um-icon-within .fa-magnifying-glass-arrow-right::before{content:"\e521"}.um .fa-tachograph-digital::before,.um-icon-within .fa-tachograph-digital::before{content:"\f566"}.um .fa-digital-tachograph::before,.um-icon-within .fa-digital-tachograph::before{content:"\f566"}.um .fa-users-slash::before,.um-icon-within .fa-users-slash::before{content:"\e073"}.um .fa-clover::before,.um-icon-within .fa-clover::before{content:"\e139"}.um .fa-reply::before,.um-icon-within .fa-reply::before{content:"\f3e5"}.um .fa-mail-reply::before,.um-icon-within .fa-mail-reply::before{content:"\f3e5"}.um .fa-star-and-crescent::before,.um-icon-within .fa-star-and-crescent::before{content:"\f699"}.um .fa-house-fire::before,.um-icon-within .fa-house-fire::before{content:"\e50c"}.um .fa-square-minus::before,.um-icon-within .fa-square-minus::before{content:"\f146"}.um .fa-minus-square::before,.um-icon-within .fa-minus-square::before{content:"\f146"}.um .fa-helicopter::before,.um-icon-within .fa-helicopter::before{content:"\f533"}.um .fa-compass::before,.um-icon-within .fa-compass::before{content:"\f14e"}.um .fa-square-caret-down::before,.um-icon-within .fa-square-caret-down::before{content:"\f150"}.um .fa-caret-square-down::before,.um-icon-within .fa-caret-square-down::before{content:"\f150"}.um .fa-file-circle-question::before,.um-icon-within .fa-file-circle-question::before{content:"\e4ef"}.um .fa-laptop-code::before,.um-icon-within .fa-laptop-code::before{content:"\f5fc"}.um .fa-swatchbook::before,.um-icon-within .fa-swatchbook::before{content:"\f5c3"}.um .fa-prescription-bottle::before,.um-icon-within .fa-prescription-bottle::before{content:"\f485"}.um .fa-bars::before,.um-icon-within .fa-bars::before{content:"\f0c9"}.um .fa-navicon::before,.um-icon-within .fa-navicon::before{content:"\f0c9"}.um .fa-people-group::before,.um-icon-within .fa-people-group::before{content:"\e533"}.um .fa-hourglass-end::before,.um-icon-within .fa-hourglass-end::before{content:"\f253"}.um .fa-hourglass-3::before,.um-icon-within .fa-hourglass-3::before{content:"\f253"}.um .fa-heart-crack::before,.um-icon-within .fa-heart-crack::before{content:"\f7a9"}.um .fa-heart-broken::before,.um-icon-within .fa-heart-broken::before{content:"\f7a9"}.um .fa-square-up-right::before,.um-icon-within .fa-square-up-right::before{content:"\f360"}.um .fa-external-link-square-alt::before,.um-icon-within .fa-external-link-square-alt::before{content:"\f360"}.um .fa-face-kiss-beam::before,.um-icon-within .fa-face-kiss-beam::before{content:"\f597"}.um .fa-kiss-beam::before,.um-icon-within .fa-kiss-beam::before{content:"\f597"}.um .fa-film::before,.um-icon-within .fa-film::before{content:"\f008"}.um .fa-ruler-horizontal::before,.um-icon-within .fa-ruler-horizontal::before{content:"\f547"}.um .fa-people-robbery::before,.um-icon-within .fa-people-robbery::before{content:"\e536"}.um .fa-lightbulb::before,.um-icon-within .fa-lightbulb::before{content:"\f0eb"}.um .fa-caret-left::before,.um-icon-within .fa-caret-left::before{content:"\f0d9"}.um .fa-circle-exclamation::before,.um-icon-within .fa-circle-exclamation::before{content:"\f06a"}.um .fa-exclamation-circle::before,.um-icon-within .fa-exclamation-circle::before{content:"\f06a"}.um .fa-school-circle-xmark::before,.um-icon-within .fa-school-circle-xmark::before{content:"\e56d"}.um .fa-arrow-right-from-bracket::before,.um-icon-within .fa-arrow-right-from-bracket::before{content:"\f08b"}.um .fa-sign-out::before,.um-icon-within .fa-sign-out::before{content:"\f08b"}.um .fa-circle-chevron-down::before,.um-icon-within .fa-circle-chevron-down::before{content:"\f13a"}.um .fa-chevron-circle-down::before,.um-icon-within .fa-chevron-circle-down::before{content:"\f13a"}.um .fa-unlock-keyhole::before,.um-icon-within .fa-unlock-keyhole::before{content:"\f13e"}.um .fa-unlock-alt::before,.um-icon-within .fa-unlock-alt::before{content:"\f13e"}.um .fa-cloud-showers-heavy::before,.um-icon-within .fa-cloud-showers-heavy::before{content:"\f740"}.um .fa-headphones-simple::before,.um-icon-within .fa-headphones-simple::before{content:"\f58f"}.um .fa-headphones-alt::before,.um-icon-within .fa-headphones-alt::before{content:"\f58f"}.um .fa-sitemap::before,.um-icon-within .fa-sitemap::before{content:"\f0e8"}.um .fa-circle-dollar-to-slot::before,.um-icon-within .fa-circle-dollar-to-slot::before{content:"\f4b9"}.um .fa-donate::before,.um-icon-within .fa-donate::before{content:"\f4b9"}.um .fa-memory::before,.um-icon-within .fa-memory::before{content:"\f538"}.um .fa-road-spikes::before,.um-icon-within .fa-road-spikes::before{content:"\e568"}.um .fa-fire-burner::before,.um-icon-within .fa-fire-burner::before{content:"\e4f1"}.um .fa-flag::before,.um-icon-within .fa-flag::before{content:"\f024"}.um .fa-hanukiah::before,.um-icon-within .fa-hanukiah::before{content:"\f6e6"}.um .fa-feather::before,.um-icon-within .fa-feather::before{content:"\f52d"}.um .fa-volume-low::before,.um-icon-within .fa-volume-low::before{content:"\f027"}.um .fa-volume-down::before,.um-icon-within .fa-volume-down::before{content:"\f027"}.um .fa-comment-slash::before,.um-icon-within .fa-comment-slash::before{content:"\f4b3"}.um .fa-cloud-sun-rain::before,.um-icon-within .fa-cloud-sun-rain::before{content:"\f743"}.um .fa-compress::before,.um-icon-within .fa-compress::before{content:"\f066"}.um .fa-wheat-awn::before,.um-icon-within .fa-wheat-awn::before{content:"\e2cd"}.um .fa-wheat-alt::before,.um-icon-within .fa-wheat-alt::before{content:"\e2cd"}.um .fa-ankh::before,.um-icon-within .fa-ankh::before{content:"\f644"}.um .fa-hands-holding-child::before,.um-icon-within .fa-hands-holding-child::before{content:"\e4fa"}.um .fa-asterisk::before,.um-icon-within .fa-asterisk::before{content:"\*"}.um .fa-square-check::before,.um-icon-within .fa-square-check::before{content:"\f14a"}.um .fa-check-square::before,.um-icon-within .fa-check-square::before{content:"\f14a"}.um .fa-peseta-sign::before,.um-icon-within .fa-peseta-sign::before{content:"\e221"}.um .fa-heading::before,.um-icon-within .fa-heading::before{content:"\f1dc"}.um .fa-header::before,.um-icon-within .fa-header::before{content:"\f1dc"}.um .fa-ghost::before,.um-icon-within .fa-ghost::before{content:"\f6e2"}.um .fa-list::before,.um-icon-within .fa-list::before{content:"\f03a"}.um .fa-list-squares::before,.um-icon-within .fa-list-squares::before{content:"\f03a"}.um .fa-square-phone-flip::before,.um-icon-within .fa-square-phone-flip::before{content:"\f87b"}.um .fa-phone-square-alt::before,.um-icon-within .fa-phone-square-alt::before{content:"\f87b"}.um .fa-cart-plus::before,.um-icon-within .fa-cart-plus::before{content:"\f217"}.um .fa-gamepad::before,.um-icon-within .fa-gamepad::before{content:"\f11b"}.um .fa-circle-dot::before,.um-icon-within .fa-circle-dot::before{content:"\f192"}.um .fa-dot-circle::before,.um-icon-within .fa-dot-circle::before{content:"\f192"}.um .fa-face-dizzy::before,.um-icon-within .fa-face-dizzy::before{content:"\f567"}.um .fa-dizzy::before,.um-icon-within .fa-dizzy::before{content:"\f567"}.um .fa-egg::before,.um-icon-within .fa-egg::before{content:"\f7fb"}.um .fa-house-medical-circle-xmark::before,.um-icon-within .fa-house-medical-circle-xmark::before{content:"\e513"}.um .fa-campground::before,.um-icon-within .fa-campground::before{content:"\f6bb"}.um .fa-folder-plus::before,.um-icon-within .fa-folder-plus::before{content:"\f65e"}.um .fa-futbol::before,.um-icon-within .fa-futbol::before{content:"\f1e3"}.um .fa-futbol-ball::before,.um-icon-within .fa-futbol-ball::before{content:"\f1e3"}.um .fa-soccer-ball::before,.um-icon-within .fa-soccer-ball::before{content:"\f1e3"}.um .fa-paintbrush::before,.um-icon-within .fa-paintbrush::before{content:"\f1fc"}.um .fa-paint-brush::before,.um-icon-within .fa-paint-brush::before{content:"\f1fc"}.um .fa-lock::before,.um-icon-within .fa-lock::before{content:"\f023"}.um .fa-gas-pump::before,.um-icon-within .fa-gas-pump::before{content:"\f52f"}.um .fa-hot-tub-person::before,.um-icon-within .fa-hot-tub-person::before{content:"\f593"}.um .fa-hot-tub::before,.um-icon-within .fa-hot-tub::before{content:"\f593"}.um .fa-map-location::before,.um-icon-within .fa-map-location::before{content:"\f59f"}.um .fa-map-marked::before,.um-icon-within .fa-map-marked::before{content:"\f59f"}.um .fa-house-flood-water::before,.um-icon-within .fa-house-flood-water::before{content:"\e50e"}.um .fa-tree::before,.um-icon-within .fa-tree::before{content:"\f1bb"}.um .fa-bridge-lock::before,.um-icon-within .fa-bridge-lock::before{content:"\e4cc"}.um .fa-sack-dollar::before,.um-icon-within .fa-sack-dollar::before{content:"\f81d"}.um .fa-pen-to-square::before,.um-icon-within .fa-pen-to-square::before{content:"\f044"}.um .fa-edit::before,.um-icon-within .fa-edit::before{content:"\f044"}.um .fa-car-side::before,.um-icon-within .fa-car-side::before{content:"\f5e4"}.um .fa-share-nodes::before,.um-icon-within .fa-share-nodes::before{content:"\f1e0"}.um .fa-share-alt::before,.um-icon-within .fa-share-alt::before{content:"\f1e0"}.um .fa-heart-circle-minus::before,.um-icon-within .fa-heart-circle-minus::before{content:"\e4ff"}.um .fa-hourglass-half::before,.um-icon-within .fa-hourglass-half::before{content:"\f252"}.um .fa-hourglass-2::before,.um-icon-within .fa-hourglass-2::before{content:"\f252"}.um .fa-microscope::before,.um-icon-within .fa-microscope::before{content:"\f610"}.um .fa-sink::before,.um-icon-within .fa-sink::before{content:"\e06d"}.um .fa-bag-shopping::before,.um-icon-within .fa-bag-shopping::before{content:"\f290"}.um .fa-shopping-bag::before,.um-icon-within .fa-shopping-bag::before{content:"\f290"}.um .fa-arrow-down-z-a::before,.um-icon-within .fa-arrow-down-z-a::before{content:"\f881"}.um .fa-sort-alpha-desc::before,.um-icon-within .fa-sort-alpha-desc::before{content:"\f881"}.um .fa-sort-alpha-down-alt::before,.um-icon-within .fa-sort-alpha-down-alt::before{content:"\f881"}.um .fa-mitten::before,.um-icon-within .fa-mitten::before{content:"\f7b5"}.um .fa-person-rays::before,.um-icon-within .fa-person-rays::before{content:"\e54d"}.um .fa-users::before,.um-icon-within .fa-users::before{content:"\f0c0"}.um .fa-eye-slash::before,.um-icon-within .fa-eye-slash::before{content:"\f070"}.um .fa-flask-vial::before,.um-icon-within .fa-flask-vial::before{content:"\e4f3"}.um .fa-hand::before,.um-icon-within .fa-hand::before{content:"\f256"}.um .fa-hand-paper::before,.um-icon-within .fa-hand-paper::before{content:"\f256"}.um .fa-om::before,.um-icon-within .fa-om::before{content:"\f679"}.um .fa-worm::before,.um-icon-within .fa-worm::before{content:"\e599"}.um .fa-house-circle-xmark::before,.um-icon-within .fa-house-circle-xmark::before{content:"\e50b"}.um .fa-plug::before,.um-icon-within .fa-plug::before{content:"\f1e6"}.um .fa-chevron-up::before,.um-icon-within .fa-chevron-up::before{content:"\f077"}.um .fa-hand-spock::before,.um-icon-within .fa-hand-spock::before{content:"\f259"}.um .fa-stopwatch::before,.um-icon-within .fa-stopwatch::before{content:"\f2f2"}.um .fa-face-kiss::before,.um-icon-within .fa-face-kiss::before{content:"\f596"}.um .fa-kiss::before,.um-icon-within .fa-kiss::before{content:"\f596"}.um .fa-bridge-circle-xmark::before,.um-icon-within .fa-bridge-circle-xmark::before{content:"\e4cb"}.um .fa-face-grin-tongue::before,.um-icon-within .fa-face-grin-tongue::before{content:"\f589"}.um .fa-grin-tongue::before,.um-icon-within .fa-grin-tongue::before{content:"\f589"}.um .fa-chess-bishop::before,.um-icon-within .fa-chess-bishop::before{content:"\f43a"}.um .fa-face-grin-wink::before,.um-icon-within .fa-face-grin-wink::before{content:"\f58c"}.um .fa-grin-wink::before,.um-icon-within .fa-grin-wink::before{content:"\f58c"}.um .fa-ear-deaf::before,.um-icon-within .fa-ear-deaf::before{content:"\f2a4"}.um .fa-deaf::before,.um-icon-within .fa-deaf::before{content:"\f2a4"}.um .fa-deafness::before,.um-icon-within .fa-deafness::before{content:"\f2a4"}.um .fa-hard-of-hearing::before,.um-icon-within .fa-hard-of-hearing::before{content:"\f2a4"}.um .fa-road-circle-check::before,.um-icon-within .fa-road-circle-check::before{content:"\e564"}.um .fa-dice-five::before,.um-icon-within .fa-dice-five::before{content:"\f523"}.um .fa-square-rss::before,.um-icon-within .fa-square-rss::before{content:"\f143"}.um .fa-rss-square::before,.um-icon-within .fa-rss-square::before{content:"\f143"}.um .fa-land-mine-on::before,.um-icon-within .fa-land-mine-on::before{content:"\e51b"}.um .fa-i-cursor::before,.um-icon-within .fa-i-cursor::before{content:"\f246"}.um .fa-stamp::before,.um-icon-within .fa-stamp::before{content:"\f5bf"}.um .fa-stairs::before,.um-icon-within .fa-stairs::before{content:"\e289"}.um .fa-i::before,.um-icon-within .fa-i::before{content:"I"}.um .fa-hryvnia-sign::before,.um-icon-within .fa-hryvnia-sign::before{content:"\f6f2"}.um .fa-hryvnia::before,.um-icon-within .fa-hryvnia::before{content:"\f6f2"}.um .fa-pills::before,.um-icon-within .fa-pills::before{content:"\f484"}.um .fa-face-grin-wide::before,.um-icon-within .fa-face-grin-wide::before{content:"\f581"}.um .fa-grin-alt::before,.um-icon-within .fa-grin-alt::before{content:"\f581"}.um .fa-tooth::before,.um-icon-within .fa-tooth::before{content:"\f5c9"}.um .fa-v::before,.um-icon-within .fa-v::before{content:"V"}.um .fa-bangladeshi-taka-sign::before,.um-icon-within .fa-bangladeshi-taka-sign::before{content:"\e2e6"}.um .fa-bicycle::before,.um-icon-within .fa-bicycle::before{content:"\f206"}.um .fa-staff-snake::before,.um-icon-within .fa-staff-snake::before{content:"\e579"}.um .fa-rod-asclepius::before,.um-icon-within .fa-rod-asclepius::before{content:"\e579"}.um .fa-rod-snake::before,.um-icon-within .fa-rod-snake::before{content:"\e579"}.um .fa-staff-aesculapius::before,.um-icon-within .fa-staff-aesculapius::before{content:"\e579"}.um .fa-head-side-cough-slash::before,.um-icon-within .fa-head-side-cough-slash::before{content:"\e062"}.um .fa-truck-medical::before,.um-icon-within .fa-truck-medical::before{content:"\f0f9"}.um .fa-ambulance::before,.um-icon-within .fa-ambulance::before{content:"\f0f9"}.um .fa-wheat-awn-circle-exclamation::before,.um-icon-within .fa-wheat-awn-circle-exclamation::before{content:"\e598"}.um .fa-snowman::before,.um-icon-within .fa-snowman::before{content:"\f7d0"}.um .fa-mortar-pestle::before,.um-icon-within .fa-mortar-pestle::before{content:"\f5a7"}.um .fa-road-barrier::before,.um-icon-within .fa-road-barrier::before{content:"\e562"}.um .fa-school::before,.um-icon-within .fa-school::before{content:"\f549"}.um .fa-igloo::before,.um-icon-within .fa-igloo::before{content:"\f7ae"}.um .fa-joint::before,.um-icon-within .fa-joint::before{content:"\f595"}.um .fa-angle-right::before,.um-icon-within .fa-angle-right::before{content:"\f105"}.um .fa-horse::before,.um-icon-within .fa-horse::before{content:"\f6f0"}.um .fa-q::before,.um-icon-within .fa-q::before{content:"Q"}.um .fa-g::before,.um-icon-within .fa-g::before{content:"G"}.um .fa-notes-medical::before,.um-icon-within .fa-notes-medical::before{content:"\f481"}.um .fa-temperature-half::before,.um-icon-within .fa-temperature-half::before{content:"\f2c9"}.um .fa-temperature-2::before,.um-icon-within .fa-temperature-2::before{content:"\f2c9"}.um .fa-thermometer-2::before,.um-icon-within .fa-thermometer-2::before{content:"\f2c9"}.um .fa-thermometer-half::before,.um-icon-within .fa-thermometer-half::before{content:"\f2c9"}.um .fa-dong-sign::before,.um-icon-within .fa-dong-sign::before{content:"\e169"}.um .fa-capsules::before,.um-icon-within .fa-capsules::before{content:"\f46b"}.um .fa-poo-storm::before,.um-icon-within .fa-poo-storm::before{content:"\f75a"}.um .fa-poo-bolt::before,.um-icon-within .fa-poo-bolt::before{content:"\f75a"}.um .fa-face-frown-open::before,.um-icon-within .fa-face-frown-open::before{content:"\f57a"}.um .fa-frown-open::before,.um-icon-within .fa-frown-open::before{content:"\f57a"}.um .fa-hand-point-up::before,.um-icon-within .fa-hand-point-up::before{content:"\f0a6"}.um .fa-money-bill::before,.um-icon-within .fa-money-bill::before{content:"\f0d6"}.um .fa-bookmark::before,.um-icon-within .fa-bookmark::before{content:"\f02e"}.um .fa-align-justify::before,.um-icon-within .fa-align-justify::before{content:"\f039"}.um .fa-umbrella-beach::before,.um-icon-within .fa-umbrella-beach::before{content:"\f5ca"}.um .fa-helmet-un::before,.um-icon-within .fa-helmet-un::before{content:"\e503"}.um .fa-bullseye::before,.um-icon-within .fa-bullseye::before{content:"\f140"}.um .fa-bacon::before,.um-icon-within .fa-bacon::before{content:"\f7e5"}.um .fa-hand-point-down::before,.um-icon-within .fa-hand-point-down::before{content:"\f0a7"}.um .fa-arrow-up-from-bracket::before,.um-icon-within .fa-arrow-up-from-bracket::before{content:"\e09a"}.um .fa-folder::before,.um-icon-within .fa-folder::before{content:"\f07b"}.um .fa-folder-blank::before,.um-icon-within .fa-folder-blank::before{content:"\f07b"}.um .fa-file-waveform::before,.um-icon-within .fa-file-waveform::before{content:"\f478"}.um .fa-file-medical-alt::before,.um-icon-within .fa-file-medical-alt::before{content:"\f478"}.um .fa-radiation::before,.um-icon-within .fa-radiation::before{content:"\f7b9"}.um .fa-chart-simple::before,.um-icon-within .fa-chart-simple::before{content:"\e473"}.um .fa-mars-stroke::before,.um-icon-within .fa-mars-stroke::before{content:"\f229"}.um .fa-vial::before,.um-icon-within .fa-vial::before{content:"\f492"}.um .fa-gauge::before,.um-icon-within .fa-gauge::before{content:"\f624"}.um .fa-dashboard::before,.um-icon-within .fa-dashboard::before{content:"\f624"}.um .fa-gauge-med::before,.um-icon-within .fa-gauge-med::before{content:"\f624"}.um .fa-tachometer-alt-average::before,.um-icon-within .fa-tachometer-alt-average::before{content:"\f624"}.um .fa-wand-magic-sparkles::before,.um-icon-within .fa-wand-magic-sparkles::before{content:"\e2ca"}.um .fa-magic-wand-sparkles::before,.um-icon-within .fa-magic-wand-sparkles::before{content:"\e2ca"}.um .fa-e::before,.um-icon-within .fa-e::before{content:"E"}.um .fa-pen-clip::before,.um-icon-within .fa-pen-clip::before{content:"\f305"}.um .fa-pen-alt::before,.um-icon-within .fa-pen-alt::before{content:"\f305"}.um .fa-bridge-circle-exclamation::before,.um-icon-within .fa-bridge-circle-exclamation::before{content:"\e4ca"}.um .fa-user::before,.um-icon-within .fa-user::before{content:"\f007"}.um .fa-school-circle-check::before,.um-icon-within .fa-school-circle-check::before{content:"\e56b"}.um .fa-dumpster::before,.um-icon-within .fa-dumpster::before{content:"\f793"}.um .fa-van-shuttle::before,.um-icon-within .fa-van-shuttle::before{content:"\f5b6"}.um .fa-shuttle-van::before,.um-icon-within .fa-shuttle-van::before{content:"\f5b6"}.um .fa-building-user::before,.um-icon-within .fa-building-user::before{content:"\e4da"}.um .fa-square-caret-left::before,.um-icon-within .fa-square-caret-left::before{content:"\f191"}.um .fa-caret-square-left::before,.um-icon-within .fa-caret-square-left::before{content:"\f191"}.um .fa-highlighter::before,.um-icon-within .fa-highlighter::before{content:"\f591"}.um .fa-key::before,.um-icon-within .fa-key::before{content:"\f084"}.um .fa-bullhorn::before,.um-icon-within .fa-bullhorn::before{content:"\f0a1"}.um .fa-globe::before,.um-icon-within .fa-globe::before{content:"\f0ac"}.um .fa-synagogue::before,.um-icon-within .fa-synagogue::before{content:"\f69b"}.um .fa-person-half-dress::before,.um-icon-within .fa-person-half-dress::before{content:"\e548"}.um .fa-road-bridge::before,.um-icon-within .fa-road-bridge::before{content:"\e563"}.um .fa-location-arrow::before,.um-icon-within .fa-location-arrow::before{content:"\f124"}.um .fa-c::before,.um-icon-within .fa-c::before{content:"C"}.um .fa-tablet-button::before,.um-icon-within .fa-tablet-button::before{content:"\f10a"}.um .fa-building-lock::before,.um-icon-within .fa-building-lock::before{content:"\e4d6"}.um .fa-pizza-slice::before,.um-icon-within .fa-pizza-slice::before{content:"\f818"}.um .fa-money-bill-wave::before,.um-icon-within .fa-money-bill-wave::before{content:"\f53a"}.um .fa-chart-area::before,.um-icon-within .fa-chart-area::before{content:"\f1fe"}.um .fa-area-chart::before,.um-icon-within .fa-area-chart::before{content:"\f1fe"}.um .fa-house-flag::before,.um-icon-within .fa-house-flag::before{content:"\e50d"}.um .fa-person-circle-minus::before,.um-icon-within .fa-person-circle-minus::before{content:"\e540"}.um .fa-ban::before,.um-icon-within .fa-ban::before{content:"\f05e"}.um .fa-cancel::before,.um-icon-within .fa-cancel::before{content:"\f05e"}.um .fa-camera-rotate::before,.um-icon-within .fa-camera-rotate::before{content:"\e0d8"}.um .fa-spray-can-sparkles::before,.um-icon-within .fa-spray-can-sparkles::before{content:"\f5d0"}.um .fa-air-freshener::before,.um-icon-within .fa-air-freshener::before{content:"\f5d0"}.um .fa-star::before,.um-icon-within .fa-star::before{content:"\f005"}.um .fa-repeat::before,.um-icon-within .fa-repeat::before{content:"\f363"}.um .fa-cross::before,.um-icon-within .fa-cross::before{content:"\f654"}.um .fa-box::before,.um-icon-within .fa-box::before{content:"\f466"}.um .fa-venus-mars::before,.um-icon-within .fa-venus-mars::before{content:"\f228"}.um .fa-arrow-pointer::before,.um-icon-within .fa-arrow-pointer::before{content:"\f245"}.um .fa-mouse-pointer::before,.um-icon-within .fa-mouse-pointer::before{content:"\f245"}.um .fa-maximize::before,.um-icon-within .fa-maximize::before{content:"\f31e"}.um .fa-expand-arrows-alt::before,.um-icon-within .fa-expand-arrows-alt::before{content:"\f31e"}.um .fa-charging-station::before,.um-icon-within .fa-charging-station::before{content:"\f5e7"}.um .fa-shapes::before,.um-icon-within .fa-shapes::before{content:"\f61f"}.um .fa-triangle-circle-square::before,.um-icon-within .fa-triangle-circle-square::before{content:"\f61f"}.um .fa-shuffle::before,.um-icon-within .fa-shuffle::before{content:"\f074"}.um .fa-random::before,.um-icon-within .fa-random::before{content:"\f074"}.um .fa-person-running::before,.um-icon-within .fa-person-running::before{content:"\f70c"}.um .fa-running::before,.um-icon-within .fa-running::before{content:"\f70c"}.um .fa-mobile-retro::before,.um-icon-within .fa-mobile-retro::before{content:"\e527"}.um .fa-grip-lines-vertical::before,.um-icon-within .fa-grip-lines-vertical::before{content:"\f7a5"}.um .fa-spider::before,.um-icon-within .fa-spider::before{content:"\f717"}.um .fa-hands-bound::before,.um-icon-within .fa-hands-bound::before{content:"\e4f9"}.um .fa-file-invoice-dollar::before,.um-icon-within .fa-file-invoice-dollar::before{content:"\f571"}.um .fa-plane-circle-exclamation::before,.um-icon-within .fa-plane-circle-exclamation::before{content:"\e556"}.um .fa-x-ray::before,.um-icon-within .fa-x-ray::before{content:"\f497"}.um .fa-spell-check::before,.um-icon-within .fa-spell-check::before{content:"\f891"}.um .fa-slash::before,.um-icon-within .fa-slash::before{content:"\f715"}.um .fa-computer-mouse::before,.um-icon-within .fa-computer-mouse::before{content:"\f8cc"}.um .fa-mouse::before,.um-icon-within .fa-mouse::before{content:"\f8cc"}.um .fa-arrow-right-to-bracket::before,.um-icon-within .fa-arrow-right-to-bracket::before{content:"\f090"}.um .fa-sign-in::before,.um-icon-within .fa-sign-in::before{content:"\f090"}.um .fa-shop-slash::before,.um-icon-within .fa-shop-slash::before{content:"\e070"}.um .fa-store-alt-slash::before,.um-icon-within .fa-store-alt-slash::before{content:"\e070"}.um .fa-server::before,.um-icon-within .fa-server::before{content:"\f233"}.um .fa-virus-covid-slash::before,.um-icon-within .fa-virus-covid-slash::before{content:"\e4a9"}.um .fa-shop-lock::before,.um-icon-within .fa-shop-lock::before{content:"\e4a5"}.um .fa-hourglass-start::before,.um-icon-within .fa-hourglass-start::before{content:"\f251"}.um .fa-hourglass-1::before,.um-icon-within .fa-hourglass-1::before{content:"\f251"}.um .fa-blender-phone::before,.um-icon-within .fa-blender-phone::before{content:"\f6b6"}.um .fa-building-wheat::before,.um-icon-within .fa-building-wheat::before{content:"\e4db"}.um .fa-person-breastfeeding::before,.um-icon-within .fa-person-breastfeeding::before{content:"\e53a"}.um .fa-right-to-bracket::before,.um-icon-within .fa-right-to-bracket::before{content:"\f2f6"}.um .fa-sign-in-alt::before,.um-icon-within .fa-sign-in-alt::before{content:"\f2f6"}.um .fa-venus::before,.um-icon-within .fa-venus::before{content:"\f221"}.um .fa-passport::before,.um-icon-within .fa-passport::before{content:"\f5ab"}.um .fa-heart-pulse::before,.um-icon-within .fa-heart-pulse::before{content:"\f21e"}.um .fa-heartbeat::before,.um-icon-within .fa-heartbeat::before{content:"\f21e"}.um .fa-people-carry-box::before,.um-icon-within .fa-people-carry-box::before{content:"\f4ce"}.um .fa-people-carry::before,.um-icon-within .fa-people-carry::before{content:"\f4ce"}.um .fa-temperature-high::before,.um-icon-within .fa-temperature-high::before{content:"\f769"}.um .fa-microchip::before,.um-icon-within .fa-microchip::before{content:"\f2db"}.um .fa-crown::before,.um-icon-within .fa-crown::before{content:"\f521"}.um .fa-weight-hanging::before,.um-icon-within .fa-weight-hanging::before{content:"\f5cd"}.um .fa-xmarks-lines::before,.um-icon-within .fa-xmarks-lines::before{content:"\e59a"}.um .fa-file-prescription::before,.um-icon-within .fa-file-prescription::before{content:"\f572"}.um .fa-weight-scale::before,.um-icon-within .fa-weight-scale::before{content:"\f496"}.um .fa-weight::before,.um-icon-within .fa-weight::before{content:"\f496"}.um .fa-user-group::before,.um-icon-within .fa-user-group::before{content:"\f500"}.um .fa-user-friends::before,.um-icon-within .fa-user-friends::before{content:"\f500"}.um .fa-arrow-up-a-z::before,.um-icon-within .fa-arrow-up-a-z::before{content:"\f15e"}.um .fa-sort-alpha-up::before,.um-icon-within .fa-sort-alpha-up::before{content:"\f15e"}.um .fa-chess-knight::before,.um-icon-within .fa-chess-knight::before{content:"\f441"}.um .fa-face-laugh-squint::before,.um-icon-within .fa-face-laugh-squint::before{content:"\f59b"}.um .fa-laugh-squint::before,.um-icon-within .fa-laugh-squint::before{content:"\f59b"}.um .fa-wheelchair::before,.um-icon-within .fa-wheelchair::before{content:"\f193"}.um .fa-circle-arrow-up::before,.um-icon-within .fa-circle-arrow-up::before{content:"\f0aa"}.um .fa-arrow-circle-up::before,.um-icon-within .fa-arrow-circle-up::before{content:"\f0aa"}.um .fa-toggle-on::before,.um-icon-within .fa-toggle-on::before{content:"\f205"}.um .fa-person-walking::before,.um-icon-within .fa-person-walking::before{content:"\f554"}.um .fa-walking::before,.um-icon-within .fa-walking::before{content:"\f554"}.um .fa-l::before,.um-icon-within .fa-l::before{content:"L"}.um .fa-fire::before,.um-icon-within .fa-fire::before{content:"\f06d"}.um .fa-bed-pulse::before,.um-icon-within .fa-bed-pulse::before{content:"\f487"}.um .fa-procedures::before,.um-icon-within .fa-procedures::before{content:"\f487"}.um .fa-shuttle-space::before,.um-icon-within .fa-shuttle-space::before{content:"\f197"}.um .fa-space-shuttle::before,.um-icon-within .fa-space-shuttle::before{content:"\f197"}.um .fa-face-laugh::before,.um-icon-within .fa-face-laugh::before{content:"\f599"}.um .fa-laugh::before,.um-icon-within .fa-laugh::before{content:"\f599"}.um .fa-folder-open::before,.um-icon-within .fa-folder-open::before{content:"\f07c"}.um .fa-heart-circle-plus::before,.um-icon-within .fa-heart-circle-plus::before{content:"\e500"}.um .fa-code-fork::before,.um-icon-within .fa-code-fork::before{content:"\e13b"}.um .fa-city::before,.um-icon-within .fa-city::before{content:"\f64f"}.um .fa-microphone-lines::before,.um-icon-within .fa-microphone-lines::before{content:"\f3c9"}.um .fa-microphone-alt::before,.um-icon-within .fa-microphone-alt::before{content:"\f3c9"}.um .fa-pepper-hot::before,.um-icon-within .fa-pepper-hot::before{content:"\f816"}.um .fa-unlock::before,.um-icon-within .fa-unlock::before{content:"\f09c"}.um .fa-colon-sign::before,.um-icon-within .fa-colon-sign::before{content:"\e140"}.um .fa-headset::before,.um-icon-within .fa-headset::before{content:"\f590"}.um .fa-store-slash::before,.um-icon-within .fa-store-slash::before{content:"\e071"}.um .fa-road-circle-xmark::before,.um-icon-within .fa-road-circle-xmark::before{content:"\e566"}.um .fa-user-minus::before,.um-icon-within .fa-user-minus::before{content:"\f503"}.um .fa-mars-stroke-up::before,.um-icon-within .fa-mars-stroke-up::before{content:"\f22a"}.um .fa-mars-stroke-v::before,.um-icon-within .fa-mars-stroke-v::before{content:"\f22a"}.um .fa-champagne-glasses::before,.um-icon-within .fa-champagne-glasses::before{content:"\f79f"}.um .fa-glass-cheers::before,.um-icon-within .fa-glass-cheers::before{content:"\f79f"}.um .fa-clipboard::before,.um-icon-within .fa-clipboard::before{content:"\f328"}.um .fa-house-circle-exclamation::before,.um-icon-within .fa-house-circle-exclamation::before{content:"\e50a"}.um .fa-file-arrow-up::before,.um-icon-within .fa-file-arrow-up::before{content:"\f574"}.um .fa-file-upload::before,.um-icon-within .fa-file-upload::before{content:"\f574"}.um .fa-wifi::before,.um-icon-within .fa-wifi::before{content:"\f1eb"}.um .fa-wifi-3::before,.um-icon-within .fa-wifi-3::before{content:"\f1eb"}.um .fa-wifi-strong::before,.um-icon-within .fa-wifi-strong::before{content:"\f1eb"}.um .fa-bath::before,.um-icon-within .fa-bath::before{content:"\f2cd"}.um .fa-bathtub::before,.um-icon-within .fa-bathtub::before{content:"\f2cd"}.um .fa-underline::before,.um-icon-within .fa-underline::before{content:"\f0cd"}.um .fa-user-pen::before,.um-icon-within .fa-user-pen::before{content:"\f4ff"}.um .fa-user-edit::before,.um-icon-within .fa-user-edit::before{content:"\f4ff"}.um .fa-signature::before,.um-icon-within .fa-signature::before{content:"\f5b7"}.um .fa-stroopwafel::before,.um-icon-within .fa-stroopwafel::before{content:"\f551"}.um .fa-bold::before,.um-icon-within .fa-bold::before{content:"\f032"}.um .fa-anchor-lock::before,.um-icon-within .fa-anchor-lock::before{content:"\e4ad"}.um .fa-building-ngo::before,.um-icon-within .fa-building-ngo::before{content:"\e4d7"}.um .fa-manat-sign::before,.um-icon-within .fa-manat-sign::before{content:"\e1d5"}.um .fa-not-equal::before,.um-icon-within .fa-not-equal::before{content:"\f53e"}.um .fa-border-top-left::before,.um-icon-within .fa-border-top-left::before{content:"\f853"}.um .fa-border-style::before,.um-icon-within .fa-border-style::before{content:"\f853"}.um .fa-map-location-dot::before,.um-icon-within .fa-map-location-dot::before{content:"\f5a0"}.um .fa-map-marked-alt::before,.um-icon-within .fa-map-marked-alt::before{content:"\f5a0"}.um .fa-jedi::before,.um-icon-within .fa-jedi::before{content:"\f669"}.um .fa-square-poll-vertical::before,.um-icon-within .fa-square-poll-vertical::before{content:"\f681"}.um .fa-poll::before,.um-icon-within .fa-poll::before{content:"\f681"}.um .fa-mug-hot::before,.um-icon-within .fa-mug-hot::before{content:"\f7b6"}.um .fa-car-battery::before,.um-icon-within .fa-car-battery::before{content:"\f5df"}.um .fa-battery-car::before,.um-icon-within .fa-battery-car::before{content:"\f5df"}.um .fa-gift::before,.um-icon-within .fa-gift::before{content:"\f06b"}.um .fa-dice-two::before,.um-icon-within .fa-dice-two::before{content:"\f528"}.um .fa-chess-queen::before,.um-icon-within .fa-chess-queen::before{content:"\f445"}.um .fa-glasses::before,.um-icon-within .fa-glasses::before{content:"\f530"}.um .fa-chess-board::before,.um-icon-within .fa-chess-board::before{content:"\f43c"}.um .fa-building-circle-check::before,.um-icon-within .fa-building-circle-check::before{content:"\e4d2"}.um .fa-person-chalkboard::before,.um-icon-within .fa-person-chalkboard::before{content:"\e53d"}.um .fa-mars-stroke-right::before,.um-icon-within .fa-mars-stroke-right::before{content:"\f22b"}.um .fa-mars-stroke-h::before,.um-icon-within .fa-mars-stroke-h::before{content:"\f22b"}.um .fa-hand-back-fist::before,.um-icon-within .fa-hand-back-fist::before{content:"\f255"}.um .fa-hand-rock::before,.um-icon-within .fa-hand-rock::before{content:"\f255"}.um .fa-square-caret-up::before,.um-icon-within .fa-square-caret-up::before{content:"\f151"}.um .fa-caret-square-up::before,.um-icon-within .fa-caret-square-up::before{content:"\f151"}.um .fa-cloud-showers-water::before,.um-icon-within .fa-cloud-showers-water::before{content:"\e4e4"}.um .fa-chart-bar::before,.um-icon-within .fa-chart-bar::before{content:"\f080"}.um .fa-bar-chart::before,.um-icon-within .fa-bar-chart::before{content:"\f080"}.um .fa-hands-bubbles::before,.um-icon-within .fa-hands-bubbles::before{content:"\e05e"}.um .fa-hands-wash::before,.um-icon-within .fa-hands-wash::before{content:"\e05e"}.um .fa-less-than-equal::before,.um-icon-within .fa-less-than-equal::before{content:"\f537"}.um .fa-train::before,.um-icon-within .fa-train::before{content:"\f238"}.um .fa-eye-low-vision::before,.um-icon-within .fa-eye-low-vision::before{content:"\f2a8"}.um .fa-low-vision::before,.um-icon-within .fa-low-vision::before{content:"\f2a8"}.um .fa-crow::before,.um-icon-within .fa-crow::before{content:"\f520"}.um .fa-sailboat::before,.um-icon-within .fa-sailboat::before{content:"\e445"}.um .fa-window-restore::before,.um-icon-within .fa-window-restore::before{content:"\f2d2"}.um .fa-square-plus::before,.um-icon-within .fa-square-plus::before{content:"\f0fe"}.um .fa-plus-square::before,.um-icon-within .fa-plus-square::before{content:"\f0fe"}.um .fa-torii-gate::before,.um-icon-within .fa-torii-gate::before{content:"\f6a1"}.um .fa-frog::before,.um-icon-within .fa-frog::before{content:"\f52e"}.um .fa-bucket::before,.um-icon-within .fa-bucket::before{content:"\e4cf"}.um .fa-image::before,.um-icon-within .fa-image::before{content:"\f03e"}.um .fa-microphone::before,.um-icon-within .fa-microphone::before{content:"\f130"}.um .fa-cow::before,.um-icon-within .fa-cow::before{content:"\f6c8"}.um .fa-caret-up::before,.um-icon-within .fa-caret-up::before{content:"\f0d8"}.um .fa-screwdriver::before,.um-icon-within .fa-screwdriver::before{content:"\f54a"}.um .fa-folder-closed::before,.um-icon-within .fa-folder-closed::before{content:"\e185"}.um .fa-house-tsunami::before,.um-icon-within .fa-house-tsunami::before{content:"\e515"}.um .fa-square-nfi::before,.um-icon-within .fa-square-nfi::before{content:"\e576"}.um .fa-arrow-up-from-ground-water::before,.um-icon-within .fa-arrow-up-from-ground-water::before{content:"\e4b5"}.um .fa-martini-glass::before,.um-icon-within .fa-martini-glass::before{content:"\f57b"}.um .fa-glass-martini-alt::before,.um-icon-within .fa-glass-martini-alt::before{content:"\f57b"}.um .fa-rotate-left::before,.um-icon-within .fa-rotate-left::before{content:"\f2ea"}.um .fa-rotate-back::before,.um-icon-within .fa-rotate-back::before{content:"\f2ea"}.um .fa-rotate-backward::before,.um-icon-within .fa-rotate-backward::before{content:"\f2ea"}.um .fa-undo-alt::before,.um-icon-within .fa-undo-alt::before{content:"\f2ea"}.um .fa-table-columns::before,.um-icon-within .fa-table-columns::before{content:"\f0db"}.um .fa-columns::before,.um-icon-within .fa-columns::before{content:"\f0db"}.um .fa-lemon::before,.um-icon-within .fa-lemon::before{content:"\f094"}.um .fa-head-side-mask::before,.um-icon-within .fa-head-side-mask::before{content:"\e063"}.um .fa-handshake::before,.um-icon-within .fa-handshake::before{content:"\f2b5"}.um .fa-gem::before,.um-icon-within .fa-gem::before{content:"\f3a5"}.um .fa-dolly::before,.um-icon-within .fa-dolly::before{content:"\f472"}.um .fa-dolly-box::before,.um-icon-within .fa-dolly-box::before{content:"\f472"}.um .fa-smoking::before,.um-icon-within .fa-smoking::before{content:"\f48d"}.um .fa-minimize::before,.um-icon-within .fa-minimize::before{content:"\f78c"}.um .fa-compress-arrows-alt::before,.um-icon-within .fa-compress-arrows-alt::before{content:"\f78c"}.um .fa-monument::before,.um-icon-within .fa-monument::before{content:"\f5a6"}.um .fa-snowplow::before,.um-icon-within .fa-snowplow::before{content:"\f7d2"}.um .fa-angles-right::before,.um-icon-within .fa-angles-right::before{content:"\f101"}.um .fa-angle-double-right::before,.um-icon-within .fa-angle-double-right::before{content:"\f101"}.um .fa-cannabis::before,.um-icon-within .fa-cannabis::before{content:"\f55f"}.um .fa-circle-play::before,.um-icon-within .fa-circle-play::before{content:"\f144"}.um .fa-play-circle::before,.um-icon-within .fa-play-circle::before{content:"\f144"}.um .fa-tablets::before,.um-icon-within .fa-tablets::before{content:"\f490"}.um .fa-ethernet::before,.um-icon-within .fa-ethernet::before{content:"\f796"}.um .fa-euro-sign::before,.um-icon-within .fa-euro-sign::before{content:"\f153"}.um .fa-eur::before,.um-icon-within .fa-eur::before{content:"\f153"}.um .fa-euro::before,.um-icon-within .fa-euro::before{content:"\f153"}.um .fa-chair::before,.um-icon-within .fa-chair::before{content:"\f6c0"}.um .fa-circle-check::before,.um-icon-within .fa-circle-check::before{content:"\f058"}.um .fa-check-circle::before,.um-icon-within .fa-check-circle::before{content:"\f058"}.um .fa-circle-stop::before,.um-icon-within .fa-circle-stop::before{content:"\f28d"}.um .fa-stop-circle::before,.um-icon-within .fa-stop-circle::before{content:"\f28d"}.um .fa-compass-drafting::before,.um-icon-within .fa-compass-drafting::before{content:"\f568"}.um .fa-drafting-compass::before,.um-icon-within .fa-drafting-compass::before{content:"\f568"}.um .fa-plate-wheat::before,.um-icon-within .fa-plate-wheat::before{content:"\e55a"}.um .fa-icicles::before,.um-icon-within .fa-icicles::before{content:"\f7ad"}.um .fa-person-shelter::before,.um-icon-within .fa-person-shelter::before{content:"\e54f"}.um .fa-neuter::before,.um-icon-within .fa-neuter::before{content:"\f22c"}.um .fa-id-badge::before,.um-icon-within .fa-id-badge::before{content:"\f2c1"}.um .fa-marker::before,.um-icon-within .fa-marker::before{content:"\f5a1"}.um .fa-face-laugh-beam::before,.um-icon-within .fa-face-laugh-beam::before{content:"\f59a"}.um .fa-laugh-beam::before,.um-icon-within .fa-laugh-beam::before{content:"\f59a"}.um .fa-helicopter-symbol::before,.um-icon-within .fa-helicopter-symbol::before{content:"\e502"}.um .fa-universal-access::before,.um-icon-within .fa-universal-access::before{content:"\f29a"}.um .fa-circle-chevron-up::before,.um-icon-within .fa-circle-chevron-up::before{content:"\f139"}.um .fa-chevron-circle-up::before,.um-icon-within .fa-chevron-circle-up::before{content:"\f139"}.um .fa-lari-sign::before,.um-icon-within .fa-lari-sign::before{content:"\e1c8"}.um .fa-volcano::before,.um-icon-within .fa-volcano::before{content:"\f770"}.um .fa-person-walking-dashed-line-arrow-right::before,.um-icon-within .fa-person-walking-dashed-line-arrow-right::before{content:"\e553"}.um .fa-sterling-sign::before,.um-icon-within .fa-sterling-sign::before{content:"\f154"}.um .fa-gbp::before,.um-icon-within .fa-gbp::before{content:"\f154"}.um .fa-pound-sign::before,.um-icon-within .fa-pound-sign::before{content:"\f154"}.um .fa-viruses::before,.um-icon-within .fa-viruses::before{content:"\e076"}.um .fa-square-person-confined::before,.um-icon-within .fa-square-person-confined::before{content:"\e577"}.um .fa-user-tie::before,.um-icon-within .fa-user-tie::before{content:"\f508"}.um .fa-arrow-down-long::before,.um-icon-within .fa-arrow-down-long::before{content:"\f175"}.um .fa-long-arrow-down::before,.um-icon-within .fa-long-arrow-down::before{content:"\f175"}.um .fa-tent-arrow-down-to-line::before,.um-icon-within .fa-tent-arrow-down-to-line::before{content:"\e57e"}.um .fa-certificate::before,.um-icon-within .fa-certificate::before{content:"\f0a3"}.um .fa-reply-all::before,.um-icon-within .fa-reply-all::before{content:"\f122"}.um .fa-mail-reply-all::before,.um-icon-within .fa-mail-reply-all::before{content:"\f122"}.um .fa-suitcase::before,.um-icon-within .fa-suitcase::before{content:"\f0f2"}.um .fa-person-skating::before,.um-icon-within .fa-person-skating::before{content:"\f7c5"}.um .fa-skating::before,.um-icon-within .fa-skating::before{content:"\f7c5"}.um .fa-filter-circle-dollar::before,.um-icon-within .fa-filter-circle-dollar::before{content:"\f662"}.um .fa-funnel-dollar::before,.um-icon-within .fa-funnel-dollar::before{content:"\f662"}.um .fa-camera-retro::before,.um-icon-within .fa-camera-retro::before{content:"\f083"}.um .fa-circle-arrow-down::before,.um-icon-within .fa-circle-arrow-down::before{content:"\f0ab"}.um .fa-arrow-circle-down::before,.um-icon-within .fa-arrow-circle-down::before{content:"\f0ab"}.um .fa-file-import::before,.um-icon-within .fa-file-import::before{content:"\f56f"}.um .fa-arrow-right-to-file::before,.um-icon-within .fa-arrow-right-to-file::before{content:"\f56f"}.um .fa-square-arrow-up-right::before,.um-icon-within .fa-square-arrow-up-right::before{content:"\f14c"}.um .fa-external-link-square::before,.um-icon-within .fa-external-link-square::before{content:"\f14c"}.um .fa-box-open::before,.um-icon-within .fa-box-open::before{content:"\f49e"}.um .fa-scroll::before,.um-icon-within .fa-scroll::before{content:"\f70e"}.um .fa-spa::before,.um-icon-within .fa-spa::before{content:"\f5bb"}.um .fa-location-pin-lock::before,.um-icon-within .fa-location-pin-lock::before{content:"\e51f"}.um .fa-pause::before,.um-icon-within .fa-pause::before{content:"\f04c"}.um .fa-hill-avalanche::before,.um-icon-within .fa-hill-avalanche::before{content:"\e507"}.um .fa-temperature-empty::before,.um-icon-within .fa-temperature-empty::before{content:"\f2cb"}.um .fa-temperature-0::before,.um-icon-within .fa-temperature-0::before{content:"\f2cb"}.um .fa-thermometer-0::before,.um-icon-within .fa-thermometer-0::before{content:"\f2cb"}.um .fa-thermometer-empty::before,.um-icon-within .fa-thermometer-empty::before{content:"\f2cb"}.um .fa-bomb::before,.um-icon-within .fa-bomb::before{content:"\f1e2"}.um .fa-registered::before,.um-icon-within .fa-registered::before{content:"\f25d"}.um .fa-address-card::before,.um-icon-within .fa-address-card::before{content:"\f2bb"}.um .fa-contact-card::before,.um-icon-within .fa-contact-card::before{content:"\f2bb"}.um .fa-vcard::before,.um-icon-within .fa-vcard::before{content:"\f2bb"}.um .fa-scale-unbalanced-flip::before,.um-icon-within .fa-scale-unbalanced-flip::before{content:"\f516"}.um .fa-balance-scale-right::before,.um-icon-within .fa-balance-scale-right::before{content:"\f516"}.um .fa-subscript::before,.um-icon-within .fa-subscript::before{content:"\f12c"}.um .fa-diamond-turn-right::before,.um-icon-within .fa-diamond-turn-right::before{content:"\f5eb"}.um .fa-directions::before,.um-icon-within .fa-directions::before{content:"\f5eb"}.um .fa-burst::before,.um-icon-within .fa-burst::before{content:"\e4dc"}.um .fa-house-laptop::before,.um-icon-within .fa-house-laptop::before{content:"\e066"}.um .fa-laptop-house::before,.um-icon-within .fa-laptop-house::before{content:"\e066"}.um .fa-face-tired::before,.um-icon-within .fa-face-tired::before{content:"\f5c8"}.um .fa-tired::before,.um-icon-within .fa-tired::before{content:"\f5c8"}.um .fa-money-bills::before,.um-icon-within .fa-money-bills::before{content:"\e1f3"}.um .fa-smog::before,.um-icon-within .fa-smog::before{content:"\f75f"}.um .fa-crutch::before,.um-icon-within .fa-crutch::before{content:"\f7f7"}.um .fa-cloud-arrow-up::before,.um-icon-within .fa-cloud-arrow-up::before{content:"\f0ee"}.um .fa-cloud-upload::before,.um-icon-within .fa-cloud-upload::before{content:"\f0ee"}.um .fa-cloud-upload-alt::before,.um-icon-within .fa-cloud-upload-alt::before{content:"\f0ee"}.um .fa-palette::before,.um-icon-within .fa-palette::before{content:"\f53f"}.um .fa-arrows-turn-right::before,.um-icon-within .fa-arrows-turn-right::before{content:"\e4c0"}.um .fa-vest::before,.um-icon-within .fa-vest::before{content:"\e085"}.um .fa-ferry::before,.um-icon-within .fa-ferry::before{content:"\e4ea"}.um .fa-arrows-down-to-people::before,.um-icon-within .fa-arrows-down-to-people::before{content:"\e4b9"}.um .fa-seedling::before,.um-icon-within .fa-seedling::before{content:"\f4d8"}.um .fa-sprout::before,.um-icon-within .fa-sprout::before{content:"\f4d8"}.um .fa-left-right::before,.um-icon-within .fa-left-right::before{content:"\f337"}.um .fa-arrows-alt-h::before,.um-icon-within .fa-arrows-alt-h::before{content:"\f337"}.um .fa-boxes-packing::before,.um-icon-within .fa-boxes-packing::before{content:"\e4c7"}.um .fa-circle-arrow-left::before,.um-icon-within .fa-circle-arrow-left::before{content:"\f0a8"}.um .fa-arrow-circle-left::before,.um-icon-within .fa-arrow-circle-left::before{content:"\f0a8"}.um .fa-group-arrows-rotate::before,.um-icon-within .fa-group-arrows-rotate::before{content:"\e4f6"}.um .fa-bowl-food::before,.um-icon-within .fa-bowl-food::before{content:"\e4c6"}.um .fa-candy-cane::before,.um-icon-within .fa-candy-cane::before{content:"\f786"}.um .fa-arrow-down-wide-short::before,.um-icon-within .fa-arrow-down-wide-short::before{content:"\f160"}.um .fa-sort-amount-asc::before,.um-icon-within .fa-sort-amount-asc::before{content:"\f160"}.um .fa-sort-amount-down::before,.um-icon-within .fa-sort-amount-down::before{content:"\f160"}.um .fa-cloud-bolt::before,.um-icon-within .fa-cloud-bolt::before{content:"\f76c"}.um .fa-thunderstorm::before,.um-icon-within .fa-thunderstorm::before{content:"\f76c"}.um .fa-text-slash::before,.um-icon-within .fa-text-slash::before{content:"\f87d"}.um .fa-remove-format::before,.um-icon-within .fa-remove-format::before{content:"\f87d"}.um .fa-face-smile-wink::before,.um-icon-within .fa-face-smile-wink::before{content:"\f4da"}.um .fa-smile-wink::before,.um-icon-within .fa-smile-wink::before{content:"\f4da"}.um .fa-file-word::before,.um-icon-within .fa-file-word::before{content:"\f1c2"}.um .fa-file-powerpoint::before,.um-icon-within .fa-file-powerpoint::before{content:"\f1c4"}.um .fa-arrows-left-right::before,.um-icon-within .fa-arrows-left-right::before{content:"\f07e"}.um .fa-arrows-h::before,.um-icon-within .fa-arrows-h::before{content:"\f07e"}.um .fa-house-lock::before,.um-icon-within .fa-house-lock::before{content:"\e510"}.um .fa-cloud-arrow-down::before,.um-icon-within .fa-cloud-arrow-down::before{content:"\f0ed"}.um .fa-cloud-download::before,.um-icon-within .fa-cloud-download::before{content:"\f0ed"}.um .fa-cloud-download-alt::before,.um-icon-within .fa-cloud-download-alt::before{content:"\f0ed"}.um .fa-children::before,.um-icon-within .fa-children::before{content:"\e4e1"}.um .fa-chalkboard::before,.um-icon-within .fa-chalkboard::before{content:"\f51b"}.um .fa-blackboard::before,.um-icon-within .fa-blackboard::before{content:"\f51b"}.um .fa-user-large-slash::before,.um-icon-within .fa-user-large-slash::before{content:"\f4fa"}.um .fa-user-alt-slash::before,.um-icon-within .fa-user-alt-slash::before{content:"\f4fa"}.um .fa-envelope-open::before,.um-icon-within .fa-envelope-open::before{content:"\f2b6"}.um .fa-handshake-simple-slash::before,.um-icon-within .fa-handshake-simple-slash::before{content:"\e05f"}.um .fa-handshake-alt-slash::before,.um-icon-within .fa-handshake-alt-slash::before{content:"\e05f"}.um .fa-mattress-pillow::before,.um-icon-within .fa-mattress-pillow::before{content:"\e525"}.um .fa-guarani-sign::before,.um-icon-within .fa-guarani-sign::before{content:"\e19a"}.um .fa-arrows-rotate::before,.um-icon-within .fa-arrows-rotate::before{content:"\f021"}.um .fa-refresh::before,.um-icon-within .fa-refresh::before{content:"\f021"}.um .fa-sync::before,.um-icon-within .fa-sync::before{content:"\f021"}.um .fa-fire-extinguisher::before,.um-icon-within .fa-fire-extinguisher::before{content:"\f134"}.um .fa-cruzeiro-sign::before,.um-icon-within .fa-cruzeiro-sign::before{content:"\e152"}.um .fa-greater-than-equal::before,.um-icon-within .fa-greater-than-equal::before{content:"\f532"}.um .fa-shield-halved::before,.um-icon-within .fa-shield-halved::before{content:"\f3ed"}.um .fa-shield-alt::before,.um-icon-within .fa-shield-alt::before{content:"\f3ed"}.um .fa-book-atlas::before,.um-icon-within .fa-book-atlas::before{content:"\f558"}.um .fa-atlas::before,.um-icon-within .fa-atlas::before{content:"\f558"}.um .fa-virus::before,.um-icon-within .fa-virus::before{content:"\e074"}.um .fa-envelope-circle-check::before,.um-icon-within .fa-envelope-circle-check::before{content:"\e4e8"}.um .fa-layer-group::before,.um-icon-within .fa-layer-group::before{content:"\f5fd"}.um .fa-arrows-to-dot::before,.um-icon-within .fa-arrows-to-dot::before{content:"\e4be"}.um .fa-archway::before,.um-icon-within .fa-archway::before{content:"\f557"}.um .fa-heart-circle-check::before,.um-icon-within .fa-heart-circle-check::before{content:"\e4fd"}.um .fa-house-chimney-crack::before,.um-icon-within .fa-house-chimney-crack::before{content:"\f6f1"}.um .fa-house-damage::before,.um-icon-within .fa-house-damage::before{content:"\f6f1"}.um .fa-file-zipper::before,.um-icon-within .fa-file-zipper::before{content:"\f1c6"}.um .fa-file-archive::before,.um-icon-within .fa-file-archive::before{content:"\f1c6"}.um .fa-square::before,.um-icon-within .fa-square::before{content:"\f0c8"}.um .fa-martini-glass-empty::before,.um-icon-within .fa-martini-glass-empty::before{content:"\f000"}.um .fa-glass-martini::before,.um-icon-within .fa-glass-martini::before{content:"\f000"}.um .fa-couch::before,.um-icon-within .fa-couch::before{content:"\f4b8"}.um .fa-cedi-sign::before,.um-icon-within .fa-cedi-sign::before{content:"\e0df"}.um .fa-italic::before,.um-icon-within .fa-italic::before{content:"\f033"}.um .fa-table-cells-column-lock::before,.um-icon-within .fa-table-cells-column-lock::before{content:"\e678"}.um .fa-church::before,.um-icon-within .fa-church::before{content:"\f51d"}.um .fa-comments-dollar::before,.um-icon-within .fa-comments-dollar::before{content:"\f653"}.um .fa-democrat::before,.um-icon-within .fa-democrat::before{content:"\f747"}.um .fa-z::before,.um-icon-within .fa-z::before{content:"Z"}.um .fa-person-skiing::before,.um-icon-within .fa-person-skiing::before{content:"\f7c9"}.um .fa-skiing::before,.um-icon-within .fa-skiing::before{content:"\f7c9"}.um .fa-road-lock::before,.um-icon-within .fa-road-lock::before{content:"\e567"}.um .fa-a::before,.um-icon-within .fa-a::before{content:"A"}.um .fa-temperature-arrow-down::before,.um-icon-within .fa-temperature-arrow-down::before{content:"\e03f"}.um .fa-temperature-down::before,.um-icon-within .fa-temperature-down::before{content:"\e03f"}.um .fa-feather-pointed::before,.um-icon-within .fa-feather-pointed::before{content:"\f56b"}.um .fa-feather-alt::before,.um-icon-within .fa-feather-alt::before{content:"\f56b"}.um .fa-p::before,.um-icon-within .fa-p::before{content:"P"}.um .fa-snowflake::before,.um-icon-within .fa-snowflake::before{content:"\f2dc"}.um .fa-newspaper::before,.um-icon-within .fa-newspaper::before{content:"\f1ea"}.um .fa-rectangle-ad::before,.um-icon-within .fa-rectangle-ad::before{content:"\f641"}.um .fa-ad::before,.um-icon-within .fa-ad::before{content:"\f641"}.um .fa-circle-arrow-right::before,.um-icon-within .fa-circle-arrow-right::before{content:"\f0a9"}.um .fa-arrow-circle-right::before,.um-icon-within .fa-arrow-circle-right::before{content:"\f0a9"}.um .fa-filter-circle-xmark::before,.um-icon-within .fa-filter-circle-xmark::before{content:"\e17b"}.um .fa-locust::before,.um-icon-within .fa-locust::before{content:"\e520"}.um .fa-sort::before,.um-icon-within .fa-sort::before{content:"\f0dc"}.um .fa-unsorted::before,.um-icon-within .fa-unsorted::before{content:"\f0dc"}.um .fa-list-ol::before,.um-icon-within .fa-list-ol::before{content:"\f0cb"}.um .fa-list-1-2::before,.um-icon-within .fa-list-1-2::before{content:"\f0cb"}.um .fa-list-numeric::before,.um-icon-within .fa-list-numeric::before{content:"\f0cb"}.um .fa-person-dress-burst::before,.um-icon-within .fa-person-dress-burst::before{content:"\e544"}.um .fa-money-check-dollar::before,.um-icon-within .fa-money-check-dollar::before{content:"\f53d"}.um .fa-money-check-alt::before,.um-icon-within .fa-money-check-alt::before{content:"\f53d"}.um .fa-vector-square::before,.um-icon-within .fa-vector-square::before{content:"\f5cb"}.um .fa-bread-slice::before,.um-icon-within .fa-bread-slice::before{content:"\f7ec"}.um .fa-language::before,.um-icon-within .fa-language::before{content:"\f1ab"}.um .fa-face-kiss-wink-heart::before,.um-icon-within .fa-face-kiss-wink-heart::before{content:"\f598"}.um .fa-kiss-wink-heart::before,.um-icon-within .fa-kiss-wink-heart::before{content:"\f598"}.um .fa-filter::before,.um-icon-within .fa-filter::before{content:"\f0b0"}.um .fa-question::before,.um-icon-within .fa-question::before{content:"\?"}.um .fa-file-signature::before,.um-icon-within .fa-file-signature::before{content:"\f573"}.um .fa-up-down-left-right::before,.um-icon-within .fa-up-down-left-right::before{content:"\f0b2"}.um .fa-arrows-alt::before,.um-icon-within .fa-arrows-alt::before{content:"\f0b2"}.um .fa-house-chimney-user::before,.um-icon-within .fa-house-chimney-user::before{content:"\e065"}.um .fa-hand-holding-heart::before,.um-icon-within .fa-hand-holding-heart::before{content:"\f4be"}.um .fa-puzzle-piece::before,.um-icon-within .fa-puzzle-piece::before{content:"\f12e"}.um .fa-money-check::before,.um-icon-within .fa-money-check::before{content:"\f53c"}.um .fa-star-half-stroke::before,.um-icon-within .fa-star-half-stroke::before{content:"\f5c0"}.um .fa-star-half-alt::before,.um-icon-within .fa-star-half-alt::before{content:"\f5c0"}.um .fa-code::before,.um-icon-within .fa-code::before{content:"\f121"}.um .fa-whiskey-glass::before,.um-icon-within .fa-whiskey-glass::before{content:"\f7a0"}.um .fa-glass-whiskey::before,.um-icon-within .fa-glass-whiskey::before{content:"\f7a0"}.um .fa-building-circle-exclamation::before,.um-icon-within .fa-building-circle-exclamation::before{content:"\e4d3"}.um .fa-magnifying-glass-chart::before,.um-icon-within .fa-magnifying-glass-chart::before{content:"\e522"}.um .fa-arrow-up-right-from-square::before,.um-icon-within .fa-arrow-up-right-from-square::before{content:"\f08e"}.um .fa-external-link::before,.um-icon-within .fa-external-link::before{content:"\f08e"}.um .fa-cubes-stacked::before,.um-icon-within .fa-cubes-stacked::before{content:"\e4e6"}.um .fa-won-sign::before,.um-icon-within .fa-won-sign::before{content:"\f159"}.um .fa-krw::before,.um-icon-within .fa-krw::before{content:"\f159"}.um .fa-won::before,.um-icon-within .fa-won::before{content:"\f159"}.um .fa-virus-covid::before,.um-icon-within .fa-virus-covid::before{content:"\e4a8"}.um .fa-austral-sign::before,.um-icon-within .fa-austral-sign::before{content:"\e0a9"}.um .fa-f::before,.um-icon-within .fa-f::before{content:"F"}.um .fa-leaf::before,.um-icon-within .fa-leaf::before{content:"\f06c"}.um .fa-road::before,.um-icon-within .fa-road::before{content:"\f018"}.um .fa-taxi::before,.um-icon-within .fa-taxi::before{content:"\f1ba"}.um .fa-cab::before,.um-icon-within .fa-cab::before{content:"\f1ba"}.um .fa-person-circle-plus::before,.um-icon-within .fa-person-circle-plus::before{content:"\e541"}.um .fa-chart-pie::before,.um-icon-within .fa-chart-pie::before{content:"\f200"}.um .fa-pie-chart::before,.um-icon-within .fa-pie-chart::before{content:"\f200"}.um .fa-bolt-lightning::before,.um-icon-within .fa-bolt-lightning::before{content:"\e0b7"}.um .fa-sack-xmark::before,.um-icon-within .fa-sack-xmark::before{content:"\e56a"}.um .fa-file-excel::before,.um-icon-within .fa-file-excel::before{content:"\f1c3"}.um .fa-file-contract::before,.um-icon-within .fa-file-contract::before{content:"\f56c"}.um .fa-fish-fins::before,.um-icon-within .fa-fish-fins::before{content:"\e4f2"}.um .fa-building-flag::before,.um-icon-within .fa-building-flag::before{content:"\e4d5"}.um .fa-face-grin-beam::before,.um-icon-within .fa-face-grin-beam::before{content:"\f582"}.um .fa-grin-beam::before,.um-icon-within .fa-grin-beam::before{content:"\f582"}.um .fa-object-ungroup::before,.um-icon-within .fa-object-ungroup::before{content:"\f248"}.um .fa-poop::before,.um-icon-within .fa-poop::before{content:"\f619"}.um .fa-location-pin::before,.um-icon-within .fa-location-pin::before{content:"\f041"}.um .fa-map-marker::before,.um-icon-within .fa-map-marker::before{content:"\f041"}.um .fa-kaaba::before,.um-icon-within .fa-kaaba::before{content:"\f66b"}.um .fa-toilet-paper::before,.um-icon-within .fa-toilet-paper::before{content:"\f71e"}.um .fa-helmet-safety::before,.um-icon-within .fa-helmet-safety::before{content:"\f807"}.um .fa-hard-hat::before,.um-icon-within .fa-hard-hat::before{content:"\f807"}.um .fa-hat-hard::before,.um-icon-within .fa-hat-hard::before{content:"\f807"}.um .fa-eject::before,.um-icon-within .fa-eject::before{content:"\f052"}.um .fa-circle-right::before,.um-icon-within .fa-circle-right::before{content:"\f35a"}.um .fa-arrow-alt-circle-right::before,.um-icon-within .fa-arrow-alt-circle-right::before{content:"\f35a"}.um .fa-plane-circle-check::before,.um-icon-within .fa-plane-circle-check::before{content:"\e555"}.um .fa-face-rolling-eyes::before,.um-icon-within .fa-face-rolling-eyes::before{content:"\f5a5"}.um .fa-meh-rolling-eyes::before,.um-icon-within .fa-meh-rolling-eyes::before{content:"\f5a5"}.um .fa-object-group::before,.um-icon-within .fa-object-group::before{content:"\f247"}.um .fa-chart-line::before,.um-icon-within .fa-chart-line::before{content:"\f201"}.um .fa-line-chart::before,.um-icon-within .fa-line-chart::before{content:"\f201"}.um .fa-mask-ventilator::before,.um-icon-within .fa-mask-ventilator::before{content:"\e524"}.um .fa-arrow-right::before,.um-icon-within .fa-arrow-right::before{content:"\f061"}.um .fa-signs-post::before,.um-icon-within .fa-signs-post::before{content:"\f277"}.um .fa-map-signs::before,.um-icon-within .fa-map-signs::before{content:"\f277"}.um .fa-cash-register::before,.um-icon-within .fa-cash-register::before{content:"\f788"}.um .fa-person-circle-question::before,.um-icon-within .fa-person-circle-question::before{content:"\e542"}.um .fa-h::before,.um-icon-within .fa-h::before{content:"H"}.um .fa-tarp::before,.um-icon-within .fa-tarp::before{content:"\e57b"}.um .fa-screwdriver-wrench::before,.um-icon-within .fa-screwdriver-wrench::before{content:"\f7d9"}.um .fa-tools::before,.um-icon-within .fa-tools::before{content:"\f7d9"}.um .fa-arrows-to-eye::before,.um-icon-within .fa-arrows-to-eye::before{content:"\e4bf"}.um .fa-plug-circle-bolt::before,.um-icon-within .fa-plug-circle-bolt::before{content:"\e55b"}.um .fa-heart::before,.um-icon-within .fa-heart::before{content:"\f004"}.um .fa-mars-and-venus::before,.um-icon-within .fa-mars-and-venus::before{content:"\f224"}.um .fa-house-user::before,.um-icon-within .fa-house-user::before{content:"\e1b0"}.um .fa-home-user::before,.um-icon-within .fa-home-user::before{content:"\e1b0"}.um .fa-dumpster-fire::before,.um-icon-within .fa-dumpster-fire::before{content:"\f794"}.um .fa-house-crack::before,.um-icon-within .fa-house-crack::before{content:"\e3b1"}.um .fa-martini-glass-citrus::before,.um-icon-within .fa-martini-glass-citrus::before{content:"\f561"}.um .fa-cocktail::before,.um-icon-within .fa-cocktail::before{content:"\f561"}.um .fa-face-surprise::before,.um-icon-within .fa-face-surprise::before{content:"\f5c2"}.um .fa-surprise::before,.um-icon-within .fa-surprise::before{content:"\f5c2"}.um .fa-bottle-water::before,.um-icon-within .fa-bottle-water::before{content:"\e4c5"}.um .fa-circle-pause::before,.um-icon-within .fa-circle-pause::before{content:"\f28b"}.um .fa-pause-circle::before,.um-icon-within .fa-pause-circle::before{content:"\f28b"}.um .fa-toilet-paper-slash::before,.um-icon-within .fa-toilet-paper-slash::before{content:"\e072"}.um .fa-apple-whole::before,.um-icon-within .fa-apple-whole::before{content:"\f5d1"}.um .fa-apple-alt::before,.um-icon-within .fa-apple-alt::before{content:"\f5d1"}.um .fa-kitchen-set::before,.um-icon-within .fa-kitchen-set::before{content:"\e51a"}.um .fa-r::before,.um-icon-within .fa-r::before{content:"R"}.um .fa-temperature-quarter::before,.um-icon-within .fa-temperature-quarter::before{content:"\f2ca"}.um .fa-temperature-1::before,.um-icon-within .fa-temperature-1::before{content:"\f2ca"}.um .fa-thermometer-1::before,.um-icon-within .fa-thermometer-1::before{content:"\f2ca"}.um .fa-thermometer-quarter::before,.um-icon-within .fa-thermometer-quarter::before{content:"\f2ca"}.um .fa-cube::before,.um-icon-within .fa-cube::before{content:"\f1b2"}.um .fa-bitcoin-sign::before,.um-icon-within .fa-bitcoin-sign::before{content:"\e0b4"}.um .fa-shield-dog::before,.um-icon-within .fa-shield-dog::before{content:"\e573"}.um .fa-solar-panel::before,.um-icon-within .fa-solar-panel::before{content:"\f5ba"}.um .fa-lock-open::before,.um-icon-within .fa-lock-open::before{content:"\f3c1"}.um .fa-elevator::before,.um-icon-within .fa-elevator::before{content:"\e16d"}.um .fa-money-bill-transfer::before,.um-icon-within .fa-money-bill-transfer::before{content:"\e528"}.um .fa-money-bill-trend-up::before,.um-icon-within .fa-money-bill-trend-up::before{content:"\e529"}.um .fa-house-flood-water-circle-arrow-right::before,.um-icon-within .fa-house-flood-water-circle-arrow-right::before{content:"\e50f"}.um .fa-square-poll-horizontal::before,.um-icon-within .fa-square-poll-horizontal::before{content:"\f682"}.um .fa-poll-h::before,.um-icon-within .fa-poll-h::before{content:"\f682"}.um .fa-circle::before,.um-icon-within .fa-circle::before{content:"\f111"}.um .fa-backward-fast::before,.um-icon-within .fa-backward-fast::before{content:"\f049"}.um .fa-fast-backward::before,.um-icon-within .fa-fast-backward::before{content:"\f049"}.um .fa-recycle::before,.um-icon-within .fa-recycle::before{content:"\f1b8"}.um .fa-user-astronaut::before,.um-icon-within .fa-user-astronaut::before{content:"\f4fb"}.um .fa-plane-slash::before,.um-icon-within .fa-plane-slash::before{content:"\e069"}.um .fa-trademark::before,.um-icon-within .fa-trademark::before{content:"\f25c"}.um .fa-basketball::before,.um-icon-within .fa-basketball::before{content:"\f434"}.um .fa-basketball-ball::before,.um-icon-within .fa-basketball-ball::before{content:"\f434"}.um .fa-satellite-dish::before,.um-icon-within .fa-satellite-dish::before{content:"\f7c0"}.um .fa-circle-up::before,.um-icon-within .fa-circle-up::before{content:"\f35b"}.um .fa-arrow-alt-circle-up::before,.um-icon-within .fa-arrow-alt-circle-up::before{content:"\f35b"}.um .fa-mobile-screen-button::before,.um-icon-within .fa-mobile-screen-button::before{content:"\f3cd"}.um .fa-mobile-alt::before,.um-icon-within .fa-mobile-alt::before{content:"\f3cd"}.um .fa-volume-high::before,.um-icon-within .fa-volume-high::before{content:"\f028"}.um .fa-volume-up::before,.um-icon-within .fa-volume-up::before{content:"\f028"}.um .fa-users-rays::before,.um-icon-within .fa-users-rays::before{content:"\e593"}.um .fa-wallet::before,.um-icon-within .fa-wallet::before{content:"\f555"}.um .fa-clipboard-check::before,.um-icon-within .fa-clipboard-check::before{content:"\f46c"}.um .fa-file-audio::before,.um-icon-within .fa-file-audio::before{content:"\f1c7"}.um .fa-burger::before,.um-icon-within .fa-burger::before{content:"\f805"}.um .fa-hamburger::before,.um-icon-within .fa-hamburger::before{content:"\f805"}.um .fa-wrench::before,.um-icon-within .fa-wrench::before{content:"\f0ad"}.um .fa-bugs::before,.um-icon-within .fa-bugs::before{content:"\e4d0"}.um .fa-rupee-sign::before,.um-icon-within .fa-rupee-sign::before{content:"\f156"}.um .fa-rupee::before,.um-icon-within .fa-rupee::before{content:"\f156"}.um .fa-file-image::before,.um-icon-within .fa-file-image::before{content:"\f1c5"}.um .fa-circle-question::before,.um-icon-within .fa-circle-question::before{content:"\f059"}.um .fa-question-circle::before,.um-icon-within .fa-question-circle::before{content:"\f059"}.um .fa-plane-departure::before,.um-icon-within .fa-plane-departure::before{content:"\f5b0"}.um .fa-handshake-slash::before,.um-icon-within .fa-handshake-slash::before{content:"\e060"}.um .fa-book-bookmark::before,.um-icon-within .fa-book-bookmark::before{content:"\e0bb"}.um .fa-code-branch::before,.um-icon-within .fa-code-branch::before{content:"\f126"}.um .fa-hat-cowboy::before,.um-icon-within .fa-hat-cowboy::before{content:"\f8c0"}.um .fa-bridge::before,.um-icon-within .fa-bridge::before{content:"\e4c8"}.um .fa-phone-flip::before,.um-icon-within .fa-phone-flip::before{content:"\f879"}.um .fa-phone-alt::before,.um-icon-within .fa-phone-alt::before{content:"\f879"}.um .fa-truck-front::before,.um-icon-within .fa-truck-front::before{content:"\e2b7"}.um .fa-cat::before,.um-icon-within .fa-cat::before{content:"\f6be"}.um .fa-anchor-circle-exclamation::before,.um-icon-within .fa-anchor-circle-exclamation::before{content:"\e4ab"}.um .fa-truck-field::before,.um-icon-within .fa-truck-field::before{content:"\e58d"}.um .fa-route::before,.um-icon-within .fa-route::before{content:"\f4d7"}.um .fa-clipboard-question::before,.um-icon-within .fa-clipboard-question::before{content:"\e4e3"}.um .fa-panorama::before,.um-icon-within .fa-panorama::before{content:"\e209"}.um .fa-comment-medical::before,.um-icon-within .fa-comment-medical::before{content:"\f7f5"}.um .fa-teeth-open::before,.um-icon-within .fa-teeth-open::before{content:"\f62f"}.um .fa-file-circle-minus::before,.um-icon-within .fa-file-circle-minus::before{content:"\e4ed"}.um .fa-tags::before,.um-icon-within .fa-tags::before{content:"\f02c"}.um .fa-wine-glass::before,.um-icon-within .fa-wine-glass::before{content:"\f4e3"}.um .fa-forward-fast::before,.um-icon-within .fa-forward-fast::before{content:"\f050"}.um .fa-fast-forward::before,.um-icon-within .fa-fast-forward::before{content:"\f050"}.um .fa-face-meh-blank::before,.um-icon-within .fa-face-meh-blank::before{content:"\f5a4"}.um .fa-meh-blank::before,.um-icon-within .fa-meh-blank::before{content:"\f5a4"}.um .fa-square-parking::before,.um-icon-within .fa-square-parking::before{content:"\f540"}.um .fa-parking::before,.um-icon-within .fa-parking::before{content:"\f540"}.um .fa-house-signal::before,.um-icon-within .fa-house-signal::before{content:"\e012"}.um .fa-bars-progress::before,.um-icon-within .fa-bars-progress::before{content:"\f828"}.um .fa-tasks-alt::before,.um-icon-within .fa-tasks-alt::before{content:"\f828"}.um .fa-faucet-drip::before,.um-icon-within .fa-faucet-drip::before{content:"\e006"}.um .fa-cart-flatbed::before,.um-icon-within .fa-cart-flatbed::before{content:"\f474"}.um .fa-dolly-flatbed::before,.um-icon-within .fa-dolly-flatbed::before{content:"\f474"}.um .fa-ban-smoking::before,.um-icon-within .fa-ban-smoking::before{content:"\f54d"}.um .fa-smoking-ban::before,.um-icon-within .fa-smoking-ban::before{content:"\f54d"}.um .fa-terminal::before,.um-icon-within .fa-terminal::before{content:"\f120"}.um .fa-mobile-button::before,.um-icon-within .fa-mobile-button::before{content:"\f10b"}.um .fa-house-medical-flag::before,.um-icon-within .fa-house-medical-flag::before{content:"\e514"}.um .fa-basket-shopping::before,.um-icon-within .fa-basket-shopping::before{content:"\f291"}.um .fa-shopping-basket::before,.um-icon-within .fa-shopping-basket::before{content:"\f291"}.um .fa-tape::before,.um-icon-within .fa-tape::before{content:"\f4db"}.um .fa-bus-simple::before,.um-icon-within .fa-bus-simple::before{content:"\f55e"}.um .fa-bus-alt::before,.um-icon-within .fa-bus-alt::before{content:"\f55e"}.um .fa-eye::before,.um-icon-within .fa-eye::before{content:"\f06e"}.um .fa-face-sad-cry::before,.um-icon-within .fa-face-sad-cry::before{content:"\f5b3"}.um .fa-sad-cry::before,.um-icon-within .fa-sad-cry::before{content:"\f5b3"}.um .fa-audio-description::before,.um-icon-within .fa-audio-description::before{content:"\f29e"}.um .fa-person-military-to-person::before,.um-icon-within .fa-person-military-to-person::before{content:"\e54c"}.um .fa-file-shield::before,.um-icon-within .fa-file-shield::before{content:"\e4f0"}.um .fa-user-slash::before,.um-icon-within .fa-user-slash::before{content:"\f506"}.um .fa-pen::before,.um-icon-within .fa-pen::before{content:"\f304"}.um .fa-tower-observation::before,.um-icon-within .fa-tower-observation::before{content:"\e586"}.um .fa-file-code::before,.um-icon-within .fa-file-code::before{content:"\f1c9"}.um .fa-signal::before,.um-icon-within .fa-signal::before{content:"\f012"}.um .fa-signal-5::before,.um-icon-within .fa-signal-5::before{content:"\f012"}.um .fa-signal-perfect::before,.um-icon-within .fa-signal-perfect::before{content:"\f012"}.um .fa-bus::before,.um-icon-within .fa-bus::before{content:"\f207"}.um .fa-heart-circle-xmark::before,.um-icon-within .fa-heart-circle-xmark::before{content:"\e501"}.um .fa-house-chimney::before,.um-icon-within .fa-house-chimney::before{content:"\e3af"}.um .fa-home-lg::before,.um-icon-within .fa-home-lg::before{content:"\e3af"}.um .fa-window-maximize::before,.um-icon-within .fa-window-maximize::before{content:"\f2d0"}.um .fa-face-frown::before,.um-icon-within .fa-face-frown::before{content:"\f119"}.um .fa-frown::before,.um-icon-within .fa-frown::before{content:"\f119"}.um .fa-prescription::before,.um-icon-within .fa-prescription::before{content:"\f5b1"}.um .fa-shop::before,.um-icon-within .fa-shop::before{content:"\f54f"}.um .fa-store-alt::before,.um-icon-within .fa-store-alt::before{content:"\f54f"}.um .fa-floppy-disk::before,.um-icon-within .fa-floppy-disk::before{content:"\f0c7"}.um .fa-save::before,.um-icon-within .fa-save::before{content:"\f0c7"}.um .fa-vihara::before,.um-icon-within .fa-vihara::before{content:"\f6a7"}.um .fa-scale-unbalanced::before,.um-icon-within .fa-scale-unbalanced::before{content:"\f515"}.um .fa-balance-scale-left::before,.um-icon-within .fa-balance-scale-left::before{content:"\f515"}.um .fa-sort-up::before,.um-icon-within .fa-sort-up::before{content:"\f0de"}.um .fa-sort-asc::before,.um-icon-within .fa-sort-asc::before{content:"\f0de"}.um .fa-comment-dots::before,.um-icon-within .fa-comment-dots::before{content:"\f4ad"}.um .fa-commenting::before,.um-icon-within .fa-commenting::before{content:"\f4ad"}.um .fa-plant-wilt::before,.um-icon-within .fa-plant-wilt::before{content:"\e5aa"}.um .fa-diamond::before,.um-icon-within .fa-diamond::before{content:"\f219"}.um .fa-face-grin-squint::before,.um-icon-within .fa-face-grin-squint::before{content:"\f585"}.um .fa-grin-squint::before,.um-icon-within .fa-grin-squint::before{content:"\f585"}.um .fa-hand-holding-dollar::before,.um-icon-within .fa-hand-holding-dollar::before{content:"\f4c0"}.um .fa-hand-holding-usd::before,.um-icon-within .fa-hand-holding-usd::before{content:"\f4c0"}.um .fa-bacterium::before,.um-icon-within .fa-bacterium::before{content:"\e05a"}.um .fa-hand-pointer::before,.um-icon-within .fa-hand-pointer::before{content:"\f25a"}.um .fa-drum-steelpan::before,.um-icon-within .fa-drum-steelpan::before{content:"\f56a"}.um .fa-hand-scissors::before,.um-icon-within .fa-hand-scissors::before{content:"\f257"}.um .fa-hands-praying::before,.um-icon-within .fa-hands-praying::before{content:"\f684"}.um .fa-praying-hands::before,.um-icon-within .fa-praying-hands::before{content:"\f684"}.um .fa-arrow-rotate-right::before,.um-icon-within .fa-arrow-rotate-right::before{content:"\f01e"}.um .fa-arrow-right-rotate::before,.um-icon-within .fa-arrow-right-rotate::before{content:"\f01e"}.um .fa-arrow-rotate-forward::before,.um-icon-within .fa-arrow-rotate-forward::before{content:"\f01e"}.um .fa-redo::before,.um-icon-within .fa-redo::before{content:"\f01e"}.um .fa-biohazard::before,.um-icon-within .fa-biohazard::before{content:"\f780"}.um .fa-location-crosshairs::before,.um-icon-within .fa-location-crosshairs::before{content:"\f601"}.um .fa-location::before,.um-icon-within .fa-location::before{content:"\f601"}.um .fa-mars-double::before,.um-icon-within .fa-mars-double::before{content:"\f227"}.um .fa-child-dress::before,.um-icon-within .fa-child-dress::before{content:"\e59c"}.um .fa-users-between-lines::before,.um-icon-within .fa-users-between-lines::before{content:"\e591"}.um .fa-lungs-virus::before,.um-icon-within .fa-lungs-virus::before{content:"\e067"}.um .fa-face-grin-tears::before,.um-icon-within .fa-face-grin-tears::before{content:"\f588"}.um .fa-grin-tears::before,.um-icon-within .fa-grin-tears::before{content:"\f588"}.um .fa-phone::before,.um-icon-within .fa-phone::before{content:"\f095"}.um .fa-calendar-xmark::before,.um-icon-within .fa-calendar-xmark::before{content:"\f273"}.um .fa-calendar-times::before,.um-icon-within .fa-calendar-times::before{content:"\f273"}.um .fa-child-reaching::before,.um-icon-within .fa-child-reaching::before{content:"\e59d"}.um .fa-head-side-virus::before,.um-icon-within .fa-head-side-virus::before{content:"\e064"}.um .fa-user-gear::before,.um-icon-within .fa-user-gear::before{content:"\f4fe"}.um .fa-user-cog::before,.um-icon-within .fa-user-cog::before{content:"\f4fe"}.um .fa-arrow-up-1-9::before,.um-icon-within .fa-arrow-up-1-9::before{content:"\f163"}.um .fa-sort-numeric-up::before,.um-icon-within .fa-sort-numeric-up::before{content:"\f163"}.um .fa-door-closed::before,.um-icon-within .fa-door-closed::before{content:"\f52a"}.um .fa-shield-virus::before,.um-icon-within .fa-shield-virus::before{content:"\e06c"}.um .fa-dice-six::before,.um-icon-within .fa-dice-six::before{content:"\f526"}.um .fa-mosquito-net::before,.um-icon-within .fa-mosquito-net::before{content:"\e52c"}.um .fa-bridge-water::before,.um-icon-within .fa-bridge-water::before{content:"\e4ce"}.um .fa-person-booth::before,.um-icon-within .fa-person-booth::before{content:"\f756"}.um .fa-text-width::before,.um-icon-within .fa-text-width::before{content:"\f035"}.um .fa-hat-wizard::before,.um-icon-within .fa-hat-wizard::before{content:"\f6e8"}.um .fa-pen-fancy::before,.um-icon-within .fa-pen-fancy::before{content:"\f5ac"}.um .fa-person-digging::before,.um-icon-within .fa-person-digging::before{content:"\f85e"}.um .fa-digging::before,.um-icon-within .fa-digging::before{content:"\f85e"}.um .fa-trash::before,.um-icon-within .fa-trash::before{content:"\f1f8"}.um .fa-gauge-simple::before,.um-icon-within .fa-gauge-simple::before{content:"\f629"}.um .fa-gauge-simple-med::before,.um-icon-within .fa-gauge-simple-med::before{content:"\f629"}.um .fa-tachometer-average::before,.um-icon-within .fa-tachometer-average::before{content:"\f629"}.um .fa-book-medical::before,.um-icon-within .fa-book-medical::before{content:"\f7e6"}.um .fa-poo::before,.um-icon-within .fa-poo::before{content:"\f2fe"}.um .fa-quote-right::before,.um-icon-within .fa-quote-right::before{content:"\f10e"}.um .fa-quote-right-alt::before,.um-icon-within .fa-quote-right-alt::before{content:"\f10e"}.um .fa-shirt::before,.um-icon-within .fa-shirt::before{content:"\f553"}.um .fa-t-shirt::before,.um-icon-within .fa-t-shirt::before{content:"\f553"}.um .fa-tshirt::before,.um-icon-within .fa-tshirt::before{content:"\f553"}.um .fa-cubes::before,.um-icon-within .fa-cubes::before{content:"\f1b3"}.um .fa-divide::before,.um-icon-within .fa-divide::before{content:"\f529"}.um .fa-tenge-sign::before,.um-icon-within .fa-tenge-sign::before{content:"\f7d7"}.um .fa-tenge::before,.um-icon-within .fa-tenge::before{content:"\f7d7"}.um .fa-headphones::before,.um-icon-within .fa-headphones::before{content:"\f025"}.um .fa-hands-holding::before,.um-icon-within .fa-hands-holding::before{content:"\f4c2"}.um .fa-hands-clapping::before,.um-icon-within .fa-hands-clapping::before{content:"\e1a8"}.um .fa-republican::before,.um-icon-within .fa-republican::before{content:"\f75e"}.um .fa-arrow-left::before,.um-icon-within .fa-arrow-left::before{content:"\f060"}.um .fa-person-circle-xmark::before,.um-icon-within .fa-person-circle-xmark::before{content:"\e543"}.um .fa-ruler::before,.um-icon-within .fa-ruler::before{content:"\f545"}.um .fa-align-left::before,.um-icon-within .fa-align-left::before{content:"\f036"}.um .fa-dice-d6::before,.um-icon-within .fa-dice-d6::before{content:"\f6d1"}.um .fa-restroom::before,.um-icon-within .fa-restroom::before{content:"\f7bd"}.um .fa-j::before,.um-icon-within .fa-j::before{content:"J"}.um .fa-users-viewfinder::before,.um-icon-within .fa-users-viewfinder::before{content:"\e595"}.um .fa-file-video::before,.um-icon-within .fa-file-video::before{content:"\f1c8"}.um .fa-up-right-from-square::before,.um-icon-within .fa-up-right-from-square::before{content:"\f35d"}.um .fa-external-link-alt::before,.um-icon-within .fa-external-link-alt::before{content:"\f35d"}.um .fa-table-cells::before,.um-icon-within .fa-table-cells::before{content:"\f00a"}.um .fa-th::before,.um-icon-within .fa-th::before{content:"\f00a"}.um .fa-file-pdf::before,.um-icon-within .fa-file-pdf::before{content:"\f1c1"}.um .fa-book-bible::before,.um-icon-within .fa-book-bible::before{content:"\f647"}.um .fa-bible::before,.um-icon-within .fa-bible::before{content:"\f647"}.um .fa-o::before,.um-icon-within .fa-o::before{content:"O"}.um .fa-suitcase-medical::before,.um-icon-within .fa-suitcase-medical::before{content:"\f0fa"}.um .fa-medkit::before,.um-icon-within .fa-medkit::before{content:"\f0fa"}.um .fa-user-secret::before,.um-icon-within .fa-user-secret::before{content:"\f21b"}.um .fa-otter::before,.um-icon-within .fa-otter::before{content:"\f700"}.um .fa-person-dress::before,.um-icon-within .fa-person-dress::before{content:"\f182"}.um .fa-female::before,.um-icon-within .fa-female::before{content:"\f182"}.um .fa-comment-dollar::before,.um-icon-within .fa-comment-dollar::before{content:"\f651"}.um .fa-business-time::before,.um-icon-within .fa-business-time::before{content:"\f64a"}.um .fa-briefcase-clock::before,.um-icon-within .fa-briefcase-clock::before{content:"\f64a"}.um .fa-table-cells-large::before,.um-icon-within .fa-table-cells-large::before{content:"\f009"}.um .fa-th-large::before,.um-icon-within .fa-th-large::before{content:"\f009"}.um .fa-book-tanakh::before,.um-icon-within .fa-book-tanakh::before{content:"\f827"}.um .fa-tanakh::before,.um-icon-within .fa-tanakh::before{content:"\f827"}.um .fa-phone-volume::before,.um-icon-within .fa-phone-volume::before{content:"\f2a0"}.um .fa-volume-control-phone::before,.um-icon-within .fa-volume-control-phone::before{content:"\f2a0"}.um .fa-hat-cowboy-side::before,.um-icon-within .fa-hat-cowboy-side::before{content:"\f8c1"}.um .fa-clipboard-user::before,.um-icon-within .fa-clipboard-user::before{content:"\f7f3"}.um .fa-child::before,.um-icon-within .fa-child::before{content:"\f1ae"}.um .fa-lira-sign::before,.um-icon-within .fa-lira-sign::before{content:"\f195"}.um .fa-satellite::before,.um-icon-within .fa-satellite::before{content:"\f7bf"}.um .fa-plane-lock::before,.um-icon-within .fa-plane-lock::before{content:"\e558"}.um .fa-tag::before,.um-icon-within .fa-tag::before{content:"\f02b"}.um .fa-comment::before,.um-icon-within .fa-comment::before{content:"\f075"}.um .fa-cake-candles::before,.um-icon-within .fa-cake-candles::before{content:"\f1fd"}.um .fa-birthday-cake::before,.um-icon-within .fa-birthday-cake::before{content:"\f1fd"}.um .fa-cake::before,.um-icon-within .fa-cake::before{content:"\f1fd"}.um .fa-envelope::before,.um-icon-within .fa-envelope::before{content:"\f0e0"}.um .fa-angles-up::before,.um-icon-within .fa-angles-up::before{content:"\f102"}.um .fa-angle-double-up::before,.um-icon-within .fa-angle-double-up::before{content:"\f102"}.um .fa-paperclip::before,.um-icon-within .fa-paperclip::before{content:"\f0c6"}.um .fa-arrow-right-to-city::before,.um-icon-within .fa-arrow-right-to-city::before{content:"\e4b3"}.um .fa-ribbon::before,.um-icon-within .fa-ribbon::before{content:"\f4d6"}.um .fa-lungs::before,.um-icon-within .fa-lungs::before{content:"\f604"}.um .fa-arrow-up-9-1::before,.um-icon-within .fa-arrow-up-9-1::before{content:"\f887"}.um .fa-sort-numeric-up-alt::before,.um-icon-within .fa-sort-numeric-up-alt::before{content:"\f887"}.um .fa-litecoin-sign::before,.um-icon-within .fa-litecoin-sign::before{content:"\e1d3"}.um .fa-border-none::before,.um-icon-within .fa-border-none::before{content:"\f850"}.um .fa-circle-nodes::before,.um-icon-within .fa-circle-nodes::before{content:"\e4e2"}.um .fa-parachute-box::before,.um-icon-within .fa-parachute-box::before{content:"\f4cd"}.um .fa-indent::before,.um-icon-within .fa-indent::before{content:"\f03c"}.um .fa-truck-field-un::before,.um-icon-within .fa-truck-field-un::before{content:"\e58e"}.um .fa-hourglass::before,.um-icon-within .fa-hourglass::before{content:"\f254"}.um .fa-hourglass-empty::before,.um-icon-within .fa-hourglass-empty::before{content:"\f254"}.um .fa-mountain::before,.um-icon-within .fa-mountain::before{content:"\f6fc"}.um .fa-user-doctor::before,.um-icon-within .fa-user-doctor::before{content:"\f0f0"}.um .fa-user-md::before,.um-icon-within .fa-user-md::before{content:"\f0f0"}.um .fa-circle-info::before,.um-icon-within .fa-circle-info::before{content:"\f05a"}.um .fa-info-circle::before,.um-icon-within .fa-info-circle::before{content:"\f05a"}.um .fa-cloud-meatball::before,.um-icon-within .fa-cloud-meatball::before{content:"\f73b"}.um .fa-camera::before,.um-icon-within .fa-camera::before{content:"\f030"}.um .fa-camera-alt::before,.um-icon-within .fa-camera-alt::before{content:"\f030"}.um .fa-square-virus::before,.um-icon-within .fa-square-virus::before{content:"\e578"}.um .fa-meteor::before,.um-icon-within .fa-meteor::before{content:"\f753"}.um .fa-car-on::before,.um-icon-within .fa-car-on::before{content:"\e4dd"}.um .fa-sleigh::before,.um-icon-within .fa-sleigh::before{content:"\f7cc"}.um .fa-arrow-down-1-9::before,.um-icon-within .fa-arrow-down-1-9::before{content:"\f162"}.um .fa-sort-numeric-asc::before,.um-icon-within .fa-sort-numeric-asc::before{content:"\f162"}.um .fa-sort-numeric-down::before,.um-icon-within .fa-sort-numeric-down::before{content:"\f162"}.um .fa-hand-holding-droplet::before,.um-icon-within .fa-hand-holding-droplet::before{content:"\f4c1"}.um .fa-hand-holding-water::before,.um-icon-within .fa-hand-holding-water::before{content:"\f4c1"}.um .fa-water::before,.um-icon-within .fa-water::before{content:"\f773"}.um .fa-calendar-check::before,.um-icon-within .fa-calendar-check::before{content:"\f274"}.um .fa-braille::before,.um-icon-within .fa-braille::before{content:"\f2a1"}.um .fa-prescription-bottle-medical::before,.um-icon-within .fa-prescription-bottle-medical::before{content:"\f486"}.um .fa-prescription-bottle-alt::before,.um-icon-within .fa-prescription-bottle-alt::before{content:"\f486"}.um .fa-landmark::before,.um-icon-within .fa-landmark::before{content:"\f66f"}.um .fa-truck::before,.um-icon-within .fa-truck::before{content:"\f0d1"}.um .fa-crosshairs::before,.um-icon-within .fa-crosshairs::before{content:"\f05b"}.um .fa-person-cane::before,.um-icon-within .fa-person-cane::before{content:"\e53c"}.um .fa-tent::before,.um-icon-within .fa-tent::before{content:"\e57d"}.um .fa-vest-patches::before,.um-icon-within .fa-vest-patches::before{content:"\e086"}.um .fa-check-double::before,.um-icon-within .fa-check-double::before{content:"\f560"}.um .fa-arrow-down-a-z::before,.um-icon-within .fa-arrow-down-a-z::before{content:"\f15d"}.um .fa-sort-alpha-asc::before,.um-icon-within .fa-sort-alpha-asc::before{content:"\f15d"}.um .fa-sort-alpha-down::before,.um-icon-within .fa-sort-alpha-down::before{content:"\f15d"}.um .fa-money-bill-wheat::before,.um-icon-within .fa-money-bill-wheat::before{content:"\e52a"}.um .fa-cookie::before,.um-icon-within .fa-cookie::before{content:"\f563"}.um .fa-arrow-rotate-left::before,.um-icon-within .fa-arrow-rotate-left::before{content:"\f0e2"}.um .fa-arrow-left-rotate::before,.um-icon-within .fa-arrow-left-rotate::before{content:"\f0e2"}.um .fa-arrow-rotate-back::before,.um-icon-within .fa-arrow-rotate-back::before{content:"\f0e2"}.um .fa-arrow-rotate-backward::before,.um-icon-within .fa-arrow-rotate-backward::before{content:"\f0e2"}.um .fa-undo::before,.um-icon-within .fa-undo::before{content:"\f0e2"}.um .fa-hard-drive::before,.um-icon-within .fa-hard-drive::before{content:"\f0a0"}.um .fa-hdd::before,.um-icon-within .fa-hdd::before{content:"\f0a0"}.um .fa-face-grin-squint-tears::before,.um-icon-within .fa-face-grin-squint-tears::before{content:"\f586"}.um .fa-grin-squint-tears::before,.um-icon-within .fa-grin-squint-tears::before{content:"\f586"}.um .fa-dumbbell::before,.um-icon-within .fa-dumbbell::before{content:"\f44b"}.um .fa-rectangle-list::before,.um-icon-within .fa-rectangle-list::before{content:"\f022"}.um .fa-list-alt::before,.um-icon-within .fa-list-alt::before{content:"\f022"}.um .fa-tarp-droplet::before,.um-icon-within .fa-tarp-droplet::before{content:"\e57c"}.um .fa-house-medical-circle-check::before,.um-icon-within .fa-house-medical-circle-check::before{content:"\e511"}.um .fa-person-skiing-nordic::before,.um-icon-within .fa-person-skiing-nordic::before{content:"\f7ca"}.um .fa-skiing-nordic::before,.um-icon-within .fa-skiing-nordic::before{content:"\f7ca"}.um .fa-calendar-plus::before,.um-icon-within .fa-calendar-plus::before{content:"\f271"}.um .fa-plane-arrival::before,.um-icon-within .fa-plane-arrival::before{content:"\f5af"}.um .fa-circle-left::before,.um-icon-within .fa-circle-left::before{content:"\f359"}.um .fa-arrow-alt-circle-left::before,.um-icon-within .fa-arrow-alt-circle-left::before{content:"\f359"}.um .fa-train-subway::before,.um-icon-within .fa-train-subway::before{content:"\f239"}.um .fa-subway::before,.um-icon-within .fa-subway::before{content:"\f239"}.um .fa-chart-gantt::before,.um-icon-within .fa-chart-gantt::before{content:"\e0e4"}.um .fa-indian-rupee-sign::before,.um-icon-within .fa-indian-rupee-sign::before{content:"\e1bc"}.um .fa-indian-rupee::before,.um-icon-within .fa-indian-rupee::before{content:"\e1bc"}.um .fa-inr::before,.um-icon-within .fa-inr::before{content:"\e1bc"}.um .fa-crop-simple::before,.um-icon-within .fa-crop-simple::before{content:"\f565"}.um .fa-crop-alt::before,.um-icon-within .fa-crop-alt::before{content:"\f565"}.um .fa-money-bill-1::before,.um-icon-within .fa-money-bill-1::before{content:"\f3d1"}.um .fa-money-bill-alt::before,.um-icon-within .fa-money-bill-alt::before{content:"\f3d1"}.um .fa-left-long::before,.um-icon-within .fa-left-long::before{content:"\f30a"}.um .fa-long-arrow-alt-left::before,.um-icon-within .fa-long-arrow-alt-left::before{content:"\f30a"}.um .fa-dna::before,.um-icon-within .fa-dna::before{content:"\f471"}.um .fa-virus-slash::before,.um-icon-within .fa-virus-slash::before{content:"\e075"}.um .fa-minus::before,.um-icon-within .fa-minus::before{content:"\f068"}.um .fa-subtract::before,.um-icon-within .fa-subtract::before{content:"\f068"}.um .fa-chess::before,.um-icon-within .fa-chess::before{content:"\f439"}.um .fa-arrow-left-long::before,.um-icon-within .fa-arrow-left-long::before{content:"\f177"}.um .fa-long-arrow-left::before,.um-icon-within .fa-long-arrow-left::before{content:"\f177"}.um .fa-plug-circle-check::before,.um-icon-within .fa-plug-circle-check::before{content:"\e55c"}.um .fa-street-view::before,.um-icon-within .fa-street-view::before{content:"\f21d"}.um .fa-franc-sign::before,.um-icon-within .fa-franc-sign::before{content:"\e18f"}.um .fa-volume-off::before,.um-icon-within .fa-volume-off::before{content:"\f026"}.um .fa-hands-asl-interpreting::before,.um-icon-within .fa-hands-asl-interpreting::before{content:"\f2a3"}.um .fa-american-sign-language-interpreting::before,.um-icon-within .fa-american-sign-language-interpreting::before{content:"\f2a3"}.um .fa-asl-interpreting::before,.um-icon-within .fa-asl-interpreting::before{content:"\f2a3"}.um .fa-hands-american-sign-language-interpreting::before,.um-icon-within .fa-hands-american-sign-language-interpreting::before{content:"\f2a3"}.um .fa-gear::before,.um-icon-within .fa-gear::before{content:"\f013"}.um .fa-cog::before,.um-icon-within .fa-cog::before{content:"\f013"}.um .fa-droplet-slash::before,.um-icon-within .fa-droplet-slash::before{content:"\f5c7"}.um .fa-tint-slash::before,.um-icon-within .fa-tint-slash::before{content:"\f5c7"}.um .fa-mosque::before,.um-icon-within .fa-mosque::before{content:"\f678"}.um .fa-mosquito::before,.um-icon-within .fa-mosquito::before{content:"\e52b"}.um .fa-star-of-david::before,.um-icon-within .fa-star-of-david::before{content:"\f69a"}.um .fa-person-military-rifle::before,.um-icon-within .fa-person-military-rifle::before{content:"\e54b"}.um .fa-cart-shopping::before,.um-icon-within .fa-cart-shopping::before{content:"\f07a"}.um .fa-shopping-cart::before,.um-icon-within .fa-shopping-cart::before{content:"\f07a"}.um .fa-vials::before,.um-icon-within .fa-vials::before{content:"\f493"}.um .fa-plug-circle-plus::before,.um-icon-within .fa-plug-circle-plus::before{content:"\e55f"}.um .fa-place-of-worship::before,.um-icon-within .fa-place-of-worship::before{content:"\f67f"}.um .fa-grip-vertical::before,.um-icon-within .fa-grip-vertical::before{content:"\f58e"}.um .fa-arrow-turn-up::before,.um-icon-within .fa-arrow-turn-up::before{content:"\f148"}.um .fa-level-up::before,.um-icon-within .fa-level-up::before{content:"\f148"}.um .fa-u::before,.um-icon-within .fa-u::before{content:"U"}.um .fa-square-root-variable::before,.um-icon-within .fa-square-root-variable::before{content:"\f698"}.um .fa-square-root-alt::before,.um-icon-within .fa-square-root-alt::before{content:"\f698"}.um .fa-clock::before,.um-icon-within .fa-clock::before{content:"\f017"}.um .fa-clock-four::before,.um-icon-within .fa-clock-four::before{content:"\f017"}.um .fa-backward-step::before,.um-icon-within .fa-backward-step::before{content:"\f048"}.um .fa-step-backward::before,.um-icon-within .fa-step-backward::before{content:"\f048"}.um .fa-pallet::before,.um-icon-within .fa-pallet::before{content:"\f482"}.um .fa-faucet::before,.um-icon-within .fa-faucet::before{content:"\e005"}.um .fa-baseball-bat-ball::before,.um-icon-within .fa-baseball-bat-ball::before{content:"\f432"}.um .fa-s::before,.um-icon-within .fa-s::before{content:"S"}.um .fa-timeline::before,.um-icon-within .fa-timeline::before{content:"\e29c"}.um .fa-keyboard::before,.um-icon-within .fa-keyboard::before{content:"\f11c"}.um .fa-caret-down::before,.um-icon-within .fa-caret-down::before{content:"\f0d7"}.um .fa-house-chimney-medical::before,.um-icon-within .fa-house-chimney-medical::before{content:"\f7f2"}.um .fa-clinic-medical::before,.um-icon-within .fa-clinic-medical::before{content:"\f7f2"}.um .fa-temperature-three-quarters::before,.um-icon-within .fa-temperature-three-quarters::before{content:"\f2c8"}.um .fa-temperature-3::before,.um-icon-within .fa-temperature-3::before{content:"\f2c8"}.um .fa-thermometer-3::before,.um-icon-within .fa-thermometer-3::before{content:"\f2c8"}.um .fa-thermometer-three-quarters::before,.um-icon-within .fa-thermometer-three-quarters::before{content:"\f2c8"}.um .fa-mobile-screen::before,.um-icon-within .fa-mobile-screen::before{content:"\f3cf"}.um .fa-mobile-android-alt::before,.um-icon-within .fa-mobile-android-alt::before{content:"\f3cf"}.um .fa-plane-up::before,.um-icon-within .fa-plane-up::before{content:"\e22d"}.um .fa-piggy-bank::before,.um-icon-within .fa-piggy-bank::before{content:"\f4d3"}.um .fa-battery-half::before,.um-icon-within .fa-battery-half::before{content:"\f242"}.um .fa-battery-3::before,.um-icon-within .fa-battery-3::before{content:"\f242"}.um .fa-mountain-city::before,.um-icon-within .fa-mountain-city::before{content:"\e52e"}.um .fa-coins::before,.um-icon-within .fa-coins::before{content:"\f51e"}.um .fa-khanda::before,.um-icon-within .fa-khanda::before{content:"\f66d"}.um .fa-sliders::before,.um-icon-within .fa-sliders::before{content:"\f1de"}.um .fa-sliders-h::before,.um-icon-within .fa-sliders-h::before{content:"\f1de"}.um .fa-folder-tree::before,.um-icon-within .fa-folder-tree::before{content:"\f802"}.um .fa-network-wired::before,.um-icon-within .fa-network-wired::before{content:"\f6ff"}.um .fa-map-pin::before,.um-icon-within .fa-map-pin::before{content:"\f276"}.um .fa-hamsa::before,.um-icon-within .fa-hamsa::before{content:"\f665"}.um .fa-cent-sign::before,.um-icon-within .fa-cent-sign::before{content:"\e3f5"}.um .fa-flask::before,.um-icon-within .fa-flask::before{content:"\f0c3"}.um .fa-person-pregnant::before,.um-icon-within .fa-person-pregnant::before{content:"\e31e"}.um .fa-wand-sparkles::before,.um-icon-within .fa-wand-sparkles::before{content:"\f72b"}.um .fa-ellipsis-vertical::before,.um-icon-within .fa-ellipsis-vertical::before{content:"\f142"}.um .fa-ellipsis-v::before,.um-icon-within .fa-ellipsis-v::before{content:"\f142"}.um .fa-ticket::before,.um-icon-within .fa-ticket::before{content:"\f145"}.um .fa-power-off::before,.um-icon-within .fa-power-off::before{content:"\f011"}.um .fa-right-long::before,.um-icon-within .fa-right-long::before{content:"\f30b"}.um .fa-long-arrow-alt-right::before,.um-icon-within .fa-long-arrow-alt-right::before{content:"\f30b"}.um .fa-flag-usa::before,.um-icon-within .fa-flag-usa::before{content:"\f74d"}.um .fa-laptop-file::before,.um-icon-within .fa-laptop-file::before{content:"\e51d"}.um .fa-tty::before,.um-icon-within .fa-tty::before{content:"\f1e4"}.um .fa-teletype::before,.um-icon-within .fa-teletype::before{content:"\f1e4"}.um .fa-diagram-next::before,.um-icon-within .fa-diagram-next::before{content:"\e476"}.um .fa-person-rifle::before,.um-icon-within .fa-person-rifle::before{content:"\e54e"}.um .fa-house-medical-circle-exclamation::before,.um-icon-within .fa-house-medical-circle-exclamation::before{content:"\e512"}.um .fa-closed-captioning::before,.um-icon-within .fa-closed-captioning::before{content:"\f20a"}.um .fa-person-hiking::before,.um-icon-within .fa-person-hiking::before{content:"\f6ec"}.um .fa-hiking::before,.um-icon-within .fa-hiking::before{content:"\f6ec"}.um .fa-venus-double::before,.um-icon-within .fa-venus-double::before{content:"\f226"}.um .fa-images::before,.um-icon-within .fa-images::before{content:"\f302"}.um .fa-calculator::before,.um-icon-within .fa-calculator::before{content:"\f1ec"}.um .fa-people-pulling::before,.um-icon-within .fa-people-pulling::before{content:"\e535"}.um .fa-n::before,.um-icon-within .fa-n::before{content:"N"}.um .fa-cable-car::before,.um-icon-within .fa-cable-car::before{content:"\f7da"}.um .fa-tram::before,.um-icon-within .fa-tram::before{content:"\f7da"}.um .fa-cloud-rain::before,.um-icon-within .fa-cloud-rain::before{content:"\f73d"}.um .fa-building-circle-xmark::before,.um-icon-within .fa-building-circle-xmark::before{content:"\e4d4"}.um .fa-ship::before,.um-icon-within .fa-ship::before{content:"\f21a"}.um .fa-arrows-down-to-line::before,.um-icon-within .fa-arrows-down-to-line::before{content:"\e4b8"}.um .fa-download::before,.um-icon-within .fa-download::before{content:"\f019"}.um .fa-face-grin::before,.um-icon-within .fa-face-grin::before{content:"\f580"}.um .fa-grin::before,.um-icon-within .fa-grin::before{content:"\f580"}.um .fa-delete-left::before,.um-icon-within .fa-delete-left::before{content:"\f55a"}.um .fa-backspace::before,.um-icon-within .fa-backspace::before{content:"\f55a"}.um .fa-eye-dropper::before,.um-icon-within .fa-eye-dropper::before{content:"\f1fb"}.um .fa-eye-dropper-empty::before,.um-icon-within .fa-eye-dropper-empty::before{content:"\f1fb"}.um .fa-eyedropper::before,.um-icon-within .fa-eyedropper::before{content:"\f1fb"}.um .fa-file-circle-check::before,.um-icon-within .fa-file-circle-check::before{content:"\e5a0"}.um .fa-forward::before,.um-icon-within .fa-forward::before{content:"\f04e"}.um .fa-mobile::before,.um-icon-within .fa-mobile::before{content:"\f3ce"}.um .fa-mobile-android::before,.um-icon-within .fa-mobile-android::before{content:"\f3ce"}.um .fa-mobile-phone::before,.um-icon-within .fa-mobile-phone::before{content:"\f3ce"}.um .fa-face-meh::before,.um-icon-within .fa-face-meh::before{content:"\f11a"}.um .fa-meh::before,.um-icon-within .fa-meh::before{content:"\f11a"}.um .fa-align-center::before,.um-icon-within .fa-align-center::before{content:"\f037"}.um .fa-book-skull::before,.um-icon-within .fa-book-skull::before{content:"\f6b7"}.um .fa-book-dead::before,.um-icon-within .fa-book-dead::before{content:"\f6b7"}.um .fa-id-card::before,.um-icon-within .fa-id-card::before{content:"\f2c2"}.um .fa-drivers-license::before,.um-icon-within .fa-drivers-license::before{content:"\f2c2"}.um .fa-outdent::before,.um-icon-within .fa-outdent::before{content:"\f03b"}.um .fa-dedent::before,.um-icon-within .fa-dedent::before{content:"\f03b"}.um .fa-heart-circle-exclamation::before,.um-icon-within .fa-heart-circle-exclamation::before{content:"\e4fe"}.um .fa-house::before,.um-icon-within .fa-house::before{content:"\f015"}.um .fa-home::before,.um-icon-within .fa-home::before{content:"\f015"}.um .fa-home-alt::before,.um-icon-within .fa-home-alt::before{content:"\f015"}.um .fa-home-lg-alt::before,.um-icon-within .fa-home-lg-alt::before{content:"\f015"}.um .fa-calendar-week::before,.um-icon-within .fa-calendar-week::before{content:"\f784"}.um .fa-laptop-medical::before,.um-icon-within .fa-laptop-medical::before{content:"\f812"}.um .fa-b::before,.um-icon-within .fa-b::before{content:"B"}.um .fa-file-medical::before,.um-icon-within .fa-file-medical::before{content:"\f477"}.um .fa-dice-one::before,.um-icon-within .fa-dice-one::before{content:"\f525"}.um .fa-kiwi-bird::before,.um-icon-within .fa-kiwi-bird::before{content:"\f535"}.um .fa-arrow-right-arrow-left::before,.um-icon-within .fa-arrow-right-arrow-left::before{content:"\f0ec"}.um .fa-exchange::before,.um-icon-within .fa-exchange::before{content:"\f0ec"}.um .fa-rotate-right::before,.um-icon-within .fa-rotate-right::before{content:"\f2f9"}.um .fa-redo-alt::before,.um-icon-within .fa-redo-alt::before{content:"\f2f9"}.um .fa-rotate-forward::before,.um-icon-within .fa-rotate-forward::before{content:"\f2f9"}.um .fa-utensils::before,.um-icon-within .fa-utensils::before{content:"\f2e7"}.um .fa-cutlery::before,.um-icon-within .fa-cutlery::before{content:"\f2e7"}.um .fa-arrow-up-wide-short::before,.um-icon-within .fa-arrow-up-wide-short::before{content:"\f161"}.um .fa-sort-amount-up::before,.um-icon-within .fa-sort-amount-up::before{content:"\f161"}.um .fa-mill-sign::before,.um-icon-within .fa-mill-sign::before{content:"\e1ed"}.um .fa-bowl-rice::before,.um-icon-within .fa-bowl-rice::before{content:"\e2eb"}.um .fa-skull::before,.um-icon-within .fa-skull::before{content:"\f54c"}.um .fa-tower-broadcast::before,.um-icon-within .fa-tower-broadcast::before{content:"\f519"}.um .fa-broadcast-tower::before,.um-icon-within .fa-broadcast-tower::before{content:"\f519"}.um .fa-truck-pickup::before,.um-icon-within .fa-truck-pickup::before{content:"\f63c"}.um .fa-up-long::before,.um-icon-within .fa-up-long::before{content:"\f30c"}.um .fa-long-arrow-alt-up::before,.um-icon-within .fa-long-arrow-alt-up::before{content:"\f30c"}.um .fa-stop::before,.um-icon-within .fa-stop::before{content:"\f04d"}.um .fa-code-merge::before,.um-icon-within .fa-code-merge::before{content:"\f387"}.um .fa-upload::before,.um-icon-within .fa-upload::before{content:"\f093"}.um .fa-hurricane::before,.um-icon-within .fa-hurricane::before{content:"\f751"}.um .fa-mound::before,.um-icon-within .fa-mound::before{content:"\e52d"}.um .fa-toilet-portable::before,.um-icon-within .fa-toilet-portable::before{content:"\e583"}.um .fa-compact-disc::before,.um-icon-within .fa-compact-disc::before{content:"\f51f"}.um .fa-file-arrow-down::before,.um-icon-within .fa-file-arrow-down::before{content:"\f56d"}.um .fa-file-download::before,.um-icon-within .fa-file-download::before{content:"\f56d"}.um .fa-caravan::before,.um-icon-within .fa-caravan::before{content:"\f8ff"}.um .fa-shield-cat::before,.um-icon-within .fa-shield-cat::before{content:"\e572"}.um .fa-bolt::before,.um-icon-within .fa-bolt::before{content:"\f0e7"}.um .fa-zap::before,.um-icon-within .fa-zap::before{content:"\f0e7"}.um .fa-glass-water::before,.um-icon-within .fa-glass-water::before{content:"\e4f4"}.um .fa-oil-well::before,.um-icon-within .fa-oil-well::before{content:"\e532"}.um .fa-vault::before,.um-icon-within .fa-vault::before{content:"\e2c5"}.um .fa-mars::before,.um-icon-within .fa-mars::before{content:"\f222"}.um .fa-toilet::before,.um-icon-within .fa-toilet::before{content:"\f7d8"}.um .fa-plane-circle-xmark::before,.um-icon-within .fa-plane-circle-xmark::before{content:"\e557"}.um .fa-yen-sign::before,.um-icon-within .fa-yen-sign::before{content:"\f157"}.um .fa-cny::before,.um-icon-within .fa-cny::before{content:"\f157"}.um .fa-jpy::before,.um-icon-within .fa-jpy::before{content:"\f157"}.um .fa-rmb::before,.um-icon-within .fa-rmb::before{content:"\f157"}.um .fa-yen::before,.um-icon-within .fa-yen::before{content:"\f157"}.um .fa-ruble-sign::before,.um-icon-within .fa-ruble-sign::before{content:"\f158"}.um .fa-rouble::before,.um-icon-within .fa-rouble::before{content:"\f158"}.um .fa-rub::before,.um-icon-within .fa-rub::before{content:"\f158"}.um .fa-ruble::before,.um-icon-within .fa-ruble::before{content:"\f158"}.um .fa-sun::before,.um-icon-within .fa-sun::before{content:"\f185"}.um .fa-guitar::before,.um-icon-within .fa-guitar::before{content:"\f7a6"}.um .fa-face-laugh-wink::before,.um-icon-within .fa-face-laugh-wink::before{content:"\f59c"}.um .fa-laugh-wink::before,.um-icon-within .fa-laugh-wink::before{content:"\f59c"}.um .fa-horse-head::before,.um-icon-within .fa-horse-head::before{content:"\f7ab"}.um .fa-bore-hole::before,.um-icon-within .fa-bore-hole::before{content:"\e4c3"}.um .fa-industry::before,.um-icon-within .fa-industry::before{content:"\f275"}.um .fa-circle-down::before,.um-icon-within .fa-circle-down::before{content:"\f358"}.um .fa-arrow-alt-circle-down::before,.um-icon-within .fa-arrow-alt-circle-down::before{content:"\f358"}.um .fa-arrows-turn-to-dots::before,.um-icon-within .fa-arrows-turn-to-dots::before{content:"\e4c1"}.um .fa-florin-sign::before,.um-icon-within .fa-florin-sign::before{content:"\e184"}.um .fa-arrow-down-short-wide::before,.um-icon-within .fa-arrow-down-short-wide::before{content:"\f884"}.um .fa-sort-amount-desc::before,.um-icon-within .fa-sort-amount-desc::before{content:"\f884"}.um .fa-sort-amount-down-alt::before,.um-icon-within .fa-sort-amount-down-alt::before{content:"\f884"}.um .fa-less-than::before,.um-icon-within .fa-less-than::before{content:"\<"}.um .fa-angle-down::before,.um-icon-within .fa-angle-down::before{content:"\f107"}.um .fa-car-tunnel::before,.um-icon-within .fa-car-tunnel::before{content:"\e4de"}.um .fa-head-side-cough::before,.um-icon-within .fa-head-side-cough::before{content:"\e061"}.um .fa-grip-lines::before,.um-icon-within .fa-grip-lines::before{content:"\f7a4"}.um .fa-thumbs-down::before,.um-icon-within .fa-thumbs-down::before{content:"\f165"}.um .fa-user-lock::before,.um-icon-within .fa-user-lock::before{content:"\f502"}.um .fa-arrow-right-long::before,.um-icon-within .fa-arrow-right-long::before{content:"\f178"}.um .fa-long-arrow-right::before,.um-icon-within .fa-long-arrow-right::before{content:"\f178"}.um .fa-anchor-circle-xmark::before,.um-icon-within .fa-anchor-circle-xmark::before{content:"\e4ac"}.um .fa-ellipsis::before,.um-icon-within .fa-ellipsis::before{content:"\f141"}.um .fa-ellipsis-h::before,.um-icon-within .fa-ellipsis-h::before{content:"\f141"}.um .fa-chess-pawn::before,.um-icon-within .fa-chess-pawn::before{content:"\f443"}.um .fa-kit-medical::before,.um-icon-within .fa-kit-medical::before{content:"\f479"}.um .fa-first-aid::before,.um-icon-within .fa-first-aid::before{content:"\f479"}.um .fa-person-through-window::before,.um-icon-within .fa-person-through-window::before{content:"\e5a9"}.um .fa-toolbox::before,.um-icon-within .fa-toolbox::before{content:"\f552"}.um .fa-hands-holding-circle::before,.um-icon-within .fa-hands-holding-circle::before{content:"\e4fb"}.um .fa-bug::before,.um-icon-within .fa-bug::before{content:"\f188"}.um .fa-credit-card::before,.um-icon-within .fa-credit-card::before{content:"\f09d"}.um .fa-credit-card-alt::before,.um-icon-within .fa-credit-card-alt::before{content:"\f09d"}.um .fa-car::before,.um-icon-within .fa-car::before{content:"\f1b9"}.um .fa-automobile::before,.um-icon-within .fa-automobile::before{content:"\f1b9"}.um .fa-hand-holding-hand::before,.um-icon-within .fa-hand-holding-hand::before{content:"\e4f7"}.um .fa-book-open-reader::before,.um-icon-within .fa-book-open-reader::before{content:"\f5da"}.um .fa-book-reader::before,.um-icon-within .fa-book-reader::before{content:"\f5da"}.um .fa-mountain-sun::before,.um-icon-within .fa-mountain-sun::before{content:"\e52f"}.um .fa-arrows-left-right-to-line::before,.um-icon-within .fa-arrows-left-right-to-line::before{content:"\e4ba"}.um .fa-dice-d20::before,.um-icon-within .fa-dice-d20::before{content:"\f6cf"}.um .fa-truck-droplet::before,.um-icon-within .fa-truck-droplet::before{content:"\e58c"}.um .fa-file-circle-xmark::before,.um-icon-within .fa-file-circle-xmark::before{content:"\e5a1"}.um .fa-temperature-arrow-up::before,.um-icon-within .fa-temperature-arrow-up::before{content:"\e040"}.um .fa-temperature-up::before,.um-icon-within .fa-temperature-up::before{content:"\e040"}.um .fa-medal::before,.um-icon-within .fa-medal::before{content:"\f5a2"}.um .fa-bed::before,.um-icon-within .fa-bed::before{content:"\f236"}.um .fa-square-h::before,.um-icon-within .fa-square-h::before{content:"\f0fd"}.um .fa-h-square::before,.um-icon-within .fa-h-square::before{content:"\f0fd"}.um .fa-podcast::before,.um-icon-within .fa-podcast::before{content:"\f2ce"}.um .fa-temperature-full::before,.um-icon-within .fa-temperature-full::before{content:"\f2c7"}.um .fa-temperature-4::before,.um-icon-within .fa-temperature-4::before{content:"\f2c7"}.um .fa-thermometer-4::before,.um-icon-within .fa-thermometer-4::before{content:"\f2c7"}.um .fa-thermometer-full::before,.um-icon-within .fa-thermometer-full::before{content:"\f2c7"}.um .fa-bell::before,.um-icon-within .fa-bell::before{content:"\f0f3"}.um .fa-superscript::before,.um-icon-within .fa-superscript::before{content:"\f12b"}.um .fa-plug-circle-xmark::before,.um-icon-within .fa-plug-circle-xmark::before{content:"\e560"}.um .fa-star-of-life::before,.um-icon-within .fa-star-of-life::before{content:"\f621"}.um .fa-phone-slash::before,.um-icon-within .fa-phone-slash::before{content:"\f3dd"}.um .fa-paint-roller::before,.um-icon-within .fa-paint-roller::before{content:"\f5aa"}.um .fa-handshake-angle::before,.um-icon-within .fa-handshake-angle::before{content:"\f4c4"}.um .fa-hands-helping::before,.um-icon-within .fa-hands-helping::before{content:"\f4c4"}.um .fa-location-dot::before,.um-icon-within .fa-location-dot::before{content:"\f3c5"}.um .fa-map-marker-alt::before,.um-icon-within .fa-map-marker-alt::before{content:"\f3c5"}.um .fa-file::before,.um-icon-within .fa-file::before{content:"\f15b"}.um .fa-greater-than::before,.um-icon-within .fa-greater-than::before{content:"\>"}.um .fa-person-swimming::before,.um-icon-within .fa-person-swimming::before{content:"\f5c4"}.um .fa-swimmer::before,.um-icon-within .fa-swimmer::before{content:"\f5c4"}.um .fa-arrow-down::before,.um-icon-within .fa-arrow-down::before{content:"\f063"}.um .fa-droplet::before,.um-icon-within .fa-droplet::before{content:"\f043"}.um .fa-tint::before,.um-icon-within .fa-tint::before{content:"\f043"}.um .fa-eraser::before,.um-icon-within .fa-eraser::before{content:"\f12d"}.um .fa-earth-americas::before,.um-icon-within .fa-earth-americas::before{content:"\f57d"}.um .fa-earth::before,.um-icon-within .fa-earth::before{content:"\f57d"}.um .fa-earth-america::before,.um-icon-within .fa-earth-america::before{content:"\f57d"}.um .fa-globe-americas::before,.um-icon-within .fa-globe-americas::before{content:"\f57d"}.um .fa-person-burst::before,.um-icon-within .fa-person-burst::before{content:"\e53b"}.um .fa-dove::before,.um-icon-within .fa-dove::before{content:"\f4ba"}.um .fa-battery-empty::before,.um-icon-within .fa-battery-empty::before{content:"\f244"}.um .fa-battery-0::before,.um-icon-within .fa-battery-0::before{content:"\f244"}.um .fa-socks::before,.um-icon-within .fa-socks::before{content:"\f696"}.um .fa-inbox::before,.um-icon-within .fa-inbox::before{content:"\f01c"}.um .fa-section::before,.um-icon-within .fa-section::before{content:"\e447"}.um .fa-gauge-high::before,.um-icon-within .fa-gauge-high::before{content:"\f625"}.um .fa-tachometer-alt::before,.um-icon-within .fa-tachometer-alt::before{content:"\f625"}.um .fa-tachometer-alt-fast::before,.um-icon-within .fa-tachometer-alt-fast::before{content:"\f625"}.um .fa-envelope-open-text::before,.um-icon-within .fa-envelope-open-text::before{content:"\f658"}.um .fa-hospital::before,.um-icon-within .fa-hospital::before{content:"\f0f8"}.um .fa-hospital-alt::before,.um-icon-within .fa-hospital-alt::before{content:"\f0f8"}.um .fa-hospital-wide::before,.um-icon-within .fa-hospital-wide::before{content:"\f0f8"}.um .fa-wine-bottle::before,.um-icon-within .fa-wine-bottle::before{content:"\f72f"}.um .fa-chess-rook::before,.um-icon-within .fa-chess-rook::before{content:"\f447"}.um .fa-bars-staggered::before,.um-icon-within .fa-bars-staggered::before{content:"\f550"}.um .fa-reorder::before,.um-icon-within .fa-reorder::before{content:"\f550"}.um .fa-stream::before,.um-icon-within .fa-stream::before{content:"\f550"}.um .fa-dharmachakra::before,.um-icon-within .fa-dharmachakra::before{content:"\f655"}.um .fa-hotdog::before,.um-icon-within .fa-hotdog::before{content:"\f80f"}.um .fa-person-walking-with-cane::before,.um-icon-within .fa-person-walking-with-cane::before{content:"\f29d"}.um .fa-blind::before,.um-icon-within .fa-blind::before{content:"\f29d"}.um .fa-drum::before,.um-icon-within .fa-drum::before{content:"\f569"}.um .fa-ice-cream::before,.um-icon-within .fa-ice-cream::before{content:"\f810"}.um .fa-heart-circle-bolt::before,.um-icon-within .fa-heart-circle-bolt::before{content:"\e4fc"}.um .fa-fax::before,.um-icon-within .fa-fax::before{content:"\f1ac"}.um .fa-paragraph::before,.um-icon-within .fa-paragraph::before{content:"\f1dd"}.um .fa-check-to-slot::before,.um-icon-within .fa-check-to-slot::before{content:"\f772"}.um .fa-vote-yea::before,.um-icon-within .fa-vote-yea::before{content:"\f772"}.um .fa-star-half::before,.um-icon-within .fa-star-half::before{content:"\f089"}.um .fa-boxes-stacked::before,.um-icon-within .fa-boxes-stacked::before{content:"\f468"}.um .fa-boxes::before,.um-icon-within .fa-boxes::before{content:"\f468"}.um .fa-boxes-alt::before,.um-icon-within .fa-boxes-alt::before{content:"\f468"}.um .fa-link::before,.um-icon-within .fa-link::before{content:"\f0c1"}.um .fa-chain::before,.um-icon-within .fa-chain::before{content:"\f0c1"}.um .fa-ear-listen::before,.um-icon-within .fa-ear-listen::before{content:"\f2a2"}.um .fa-assistive-listening-systems::before,.um-icon-within .fa-assistive-listening-systems::before{content:"\f2a2"}.um .fa-tree-city::before,.um-icon-within .fa-tree-city::before{content:"\e587"}.um .fa-play::before,.um-icon-within .fa-play::before{content:"\f04b"}.um .fa-font::before,.um-icon-within .fa-font::before{content:"\f031"}.um .fa-table-cells-row-lock::before,.um-icon-within .fa-table-cells-row-lock::before{content:"\e67a"}.um .fa-rupiah-sign::before,.um-icon-within .fa-rupiah-sign::before{content:"\e23d"}.um .fa-magnifying-glass::before,.um-icon-within .fa-magnifying-glass::before{content:"\f002"}.um .fa-search::before,.um-icon-within .fa-search::before{content:"\f002"}.um .fa-table-tennis-paddle-ball::before,.um-icon-within .fa-table-tennis-paddle-ball::before{content:"\f45d"}.um .fa-ping-pong-paddle-ball::before,.um-icon-within .fa-ping-pong-paddle-ball::before{content:"\f45d"}.um .fa-table-tennis::before,.um-icon-within .fa-table-tennis::before{content:"\f45d"}.um .fa-person-dots-from-line::before,.um-icon-within .fa-person-dots-from-line::before{content:"\f470"}.um .fa-diagnoses::before,.um-icon-within .fa-diagnoses::before{content:"\f470"}.um .fa-trash-can-arrow-up::before,.um-icon-within .fa-trash-can-arrow-up::before{content:"\f82a"}.um .fa-trash-restore-alt::before,.um-icon-within .fa-trash-restore-alt::before{content:"\f82a"}.um .fa-naira-sign::before,.um-icon-within .fa-naira-sign::before{content:"\e1f6"}.um .fa-cart-arrow-down::before,.um-icon-within .fa-cart-arrow-down::before{content:"\f218"}.um .fa-walkie-talkie::before,.um-icon-within .fa-walkie-talkie::before{content:"\f8ef"}.um .fa-file-pen::before,.um-icon-within .fa-file-pen::before{content:"\f31c"}.um .fa-file-edit::before,.um-icon-within .fa-file-edit::before{content:"\f31c"}.um .fa-receipt::before,.um-icon-within .fa-receipt::before{content:"\f543"}.um .fa-square-pen::before,.um-icon-within .fa-square-pen::before{content:"\f14b"}.um .fa-pen-square::before,.um-icon-within .fa-pen-square::before{content:"\f14b"}.um .fa-pencil-square::before,.um-icon-within .fa-pencil-square::before{content:"\f14b"}.um .fa-suitcase-rolling::before,.um-icon-within .fa-suitcase-rolling::before{content:"\f5c1"}.um .fa-person-circle-exclamation::before,.um-icon-within .fa-person-circle-exclamation::before{content:"\e53f"}.um .fa-chevron-down::before,.um-icon-within .fa-chevron-down::before{content:"\f078"}.um .fa-battery-full::before,.um-icon-within .fa-battery-full::before{content:"\f240"}.um .fa-battery::before,.um-icon-within .fa-battery::before{content:"\f240"}.um .fa-battery-5::before,.um-icon-within .fa-battery-5::before{content:"\f240"}.um .fa-skull-crossbones::before,.um-icon-within .fa-skull-crossbones::before{content:"\f714"}.um .fa-code-compare::before,.um-icon-within .fa-code-compare::before{content:"\e13a"}.um .fa-list-ul::before,.um-icon-within .fa-list-ul::before{content:"\f0ca"}.um .fa-list-dots::before,.um-icon-within .fa-list-dots::before{content:"\f0ca"}.um .fa-school-lock::before,.um-icon-within .fa-school-lock::before{content:"\e56f"}.um .fa-tower-cell::before,.um-icon-within .fa-tower-cell::before{content:"\e585"}.um .fa-down-long::before,.um-icon-within .fa-down-long::before{content:"\f309"}.um .fa-long-arrow-alt-down::before,.um-icon-within .fa-long-arrow-alt-down::before{content:"\f309"}.um .fa-ranking-star::before,.um-icon-within .fa-ranking-star::before{content:"\e561"}.um .fa-chess-king::before,.um-icon-within .fa-chess-king::before{content:"\f43f"}.um .fa-person-harassing::before,.um-icon-within .fa-person-harassing::before{content:"\e549"}.um .fa-brazilian-real-sign::before,.um-icon-within .fa-brazilian-real-sign::before{content:"\e46c"}.um .fa-landmark-dome::before,.um-icon-within .fa-landmark-dome::before{content:"\f752"}.um .fa-landmark-alt::before,.um-icon-within .fa-landmark-alt::before{content:"\f752"}.um .fa-arrow-up::before,.um-icon-within .fa-arrow-up::before{content:"\f062"}.um .fa-tv::before,.um-icon-within .fa-tv::before{content:"\f26c"}.um .fa-television::before,.um-icon-within .fa-television::before{content:"\f26c"}.um .fa-tv-alt::before,.um-icon-within .fa-tv-alt::before{content:"\f26c"}.um .fa-shrimp::before,.um-icon-within .fa-shrimp::before{content:"\e448"}.um .fa-list-check::before,.um-icon-within .fa-list-check::before{content:"\f0ae"}.um .fa-tasks::before,.um-icon-within .fa-tasks::before{content:"\f0ae"}.um .fa-jug-detergent::before,.um-icon-within .fa-jug-detergent::before{content:"\e519"}.um .fa-circle-user::before,.um-icon-within .fa-circle-user::before{content:"\f2bd"}.um .fa-user-circle::before,.um-icon-within .fa-user-circle::before{content:"\f2bd"}.um .fa-user-shield::before,.um-icon-within .fa-user-shield::before{content:"\f505"}.um .fa-wind::before,.um-icon-within .fa-wind::before{content:"\f72e"}.um .fa-car-burst::before,.um-icon-within .fa-car-burst::before{content:"\f5e1"}.um .fa-car-crash::before,.um-icon-within .fa-car-crash::before{content:"\f5e1"}.um .fa-y::before,.um-icon-within .fa-y::before{content:"Y"}.um .fa-person-snowboarding::before,.um-icon-within .fa-person-snowboarding::before{content:"\f7ce"}.um .fa-snowboarding::before,.um-icon-within .fa-snowboarding::before{content:"\f7ce"}.um .fa-truck-fast::before,.um-icon-within .fa-truck-fast::before{content:"\f48b"}.um .fa-shipping-fast::before,.um-icon-within .fa-shipping-fast::before{content:"\f48b"}.um .fa-fish::before,.um-icon-within .fa-fish::before{content:"\f578"}.um .fa-user-graduate::before,.um-icon-within .fa-user-graduate::before{content:"\f501"}.um .fa-circle-half-stroke::before,.um-icon-within .fa-circle-half-stroke::before{content:"\f042"}.um .fa-adjust::before,.um-icon-within .fa-adjust::before{content:"\f042"}.um .fa-clapperboard::before,.um-icon-within .fa-clapperboard::before{content:"\e131"}.um .fa-circle-radiation::before,.um-icon-within .fa-circle-radiation::before{content:"\f7ba"}.um .fa-radiation-alt::before,.um-icon-within .fa-radiation-alt::before{content:"\f7ba"}.um .fa-baseball::before,.um-icon-within .fa-baseball::before{content:"\f433"}.um .fa-baseball-ball::before,.um-icon-within .fa-baseball-ball::before{content:"\f433"}.um .fa-jet-fighter-up::before,.um-icon-within .fa-jet-fighter-up::before{content:"\e518"}.um .fa-diagram-project::before,.um-icon-within .fa-diagram-project::before{content:"\f542"}.um .fa-project-diagram::before,.um-icon-within .fa-project-diagram::before{content:"\f542"}.um .fa-copy::before,.um-icon-within .fa-copy::before{content:"\f0c5"}.um .fa-volume-xmark::before,.um-icon-within .fa-volume-xmark::before{content:"\f6a9"}.um .fa-volume-mute::before,.um-icon-within .fa-volume-mute::before{content:"\f6a9"}.um .fa-volume-times::before,.um-icon-within .fa-volume-times::before{content:"\f6a9"}.um .fa-hand-sparkles::before,.um-icon-within .fa-hand-sparkles::before{content:"\e05d"}.um .fa-grip::before,.um-icon-within .fa-grip::before{content:"\f58d"}.um .fa-grip-horizontal::before,.um-icon-within .fa-grip-horizontal::before{content:"\f58d"}.um .fa-share-from-square::before,.um-icon-within .fa-share-from-square::before{content:"\f14d"}.um .fa-share-square::before,.um-icon-within .fa-share-square::before{content:"\f14d"}.um .fa-child-combatant::before,.um-icon-within .fa-child-combatant::before{content:"\e4e0"}.um .fa-child-rifle::before,.um-icon-within .fa-child-rifle::before{content:"\e4e0"}.um .fa-gun::before,.um-icon-within .fa-gun::before{content:"\e19b"}.um .fa-square-phone::before,.um-icon-within .fa-square-phone::before{content:"\f098"}.um .fa-phone-square::before,.um-icon-within .fa-phone-square::before{content:"\f098"}.um .fa-plus::before,.um-icon-within .fa-plus::before{content:"\+"}.um .fa-add::before,.um-icon-within .fa-add::before{content:"\+"}.um .fa-expand::before,.um-icon-within .fa-expand::before{content:"\f065"}.um .fa-computer::before,.um-icon-within .fa-computer::before{content:"\e4e5"}.um .fa-xmark::before,.um-icon-within .fa-xmark::before{content:"\f00d"}.um .fa-close::before,.um-icon-within .fa-close::before{content:"\f00d"}.um .fa-multiply::before,.um-icon-within .fa-multiply::before{content:"\f00d"}.um .fa-remove::before,.um-icon-within .fa-remove::before{content:"\f00d"}.um .fa-times::before,.um-icon-within .fa-times::before{content:"\f00d"}.um .fa-arrows-up-down-left-right::before,.um-icon-within .fa-arrows-up-down-left-right::before{content:"\f047"}.um .fa-arrows::before,.um-icon-within .fa-arrows::before{content:"\f047"}.um .fa-chalkboard-user::before,.um-icon-within .fa-chalkboard-user::before{content:"\f51c"}.um .fa-chalkboard-teacher::before,.um-icon-within .fa-chalkboard-teacher::before{content:"\f51c"}.um .fa-peso-sign::before,.um-icon-within .fa-peso-sign::before{content:"\e222"}.um .fa-building-shield::before,.um-icon-within .fa-building-shield::before{content:"\e4d8"}.um .fa-baby::before,.um-icon-within .fa-baby::before{content:"\f77c"}.um .fa-users-line::before,.um-icon-within .fa-users-line::before{content:"\e592"}.um .fa-quote-left::before,.um-icon-within .fa-quote-left::before{content:"\f10d"}.um .fa-quote-left-alt::before,.um-icon-within .fa-quote-left-alt::before{content:"\f10d"}.um .fa-tractor::before,.um-icon-within .fa-tractor::before{content:"\f722"}.um .fa-trash-arrow-up::before,.um-icon-within .fa-trash-arrow-up::before{content:"\f829"}.um .fa-trash-restore::before,.um-icon-within .fa-trash-restore::before{content:"\f829"}.um .fa-arrow-down-up-lock::before,.um-icon-within .fa-arrow-down-up-lock::before{content:"\e4b0"}.um .fa-lines-leaning::before,.um-icon-within .fa-lines-leaning::before{content:"\e51e"}.um .fa-ruler-combined::before,.um-icon-within .fa-ruler-combined::before{content:"\f546"}.um .fa-copyright::before,.um-icon-within .fa-copyright::before{content:"\f1f9"}.um .fa-equals::before,.um-icon-within .fa-equals::before{content:"\="}.um .fa-blender::before,.um-icon-within .fa-blender::before{content:"\f517"}.um .fa-teeth::before,.um-icon-within .fa-teeth::before{content:"\f62e"}.um .fa-shekel-sign::before,.um-icon-within .fa-shekel-sign::before{content:"\f20b"}.um .fa-ils::before,.um-icon-within .fa-ils::before{content:"\f20b"}.um .fa-shekel::before,.um-icon-within .fa-shekel::before{content:"\f20b"}.um .fa-sheqel::before,.um-icon-within .fa-sheqel::before{content:"\f20b"}.um .fa-sheqel-sign::before,.um-icon-within .fa-sheqel-sign::before{content:"\f20b"}.um .fa-map::before,.um-icon-within .fa-map::before{content:"\f279"}.um .fa-rocket::before,.um-icon-within .fa-rocket::before{content:"\f135"}.um .fa-photo-film::before,.um-icon-within .fa-photo-film::before{content:"\f87c"}.um .fa-photo-video::before,.um-icon-within .fa-photo-video::before{content:"\f87c"}.um .fa-folder-minus::before,.um-icon-within .fa-folder-minus::before{content:"\f65d"}.um .fa-store::before,.um-icon-within .fa-store::before{content:"\f54e"}.um .fa-arrow-trend-up::before,.um-icon-within .fa-arrow-trend-up::before{content:"\e098"}.um .fa-plug-circle-minus::before,.um-icon-within .fa-plug-circle-minus::before{content:"\e55e"}.um .fa-sign-hanging::before,.um-icon-within .fa-sign-hanging::before{content:"\f4d9"}.um .fa-sign::before,.um-icon-within .fa-sign::before{content:"\f4d9"}.um .fa-bezier-curve::before,.um-icon-within .fa-bezier-curve::before{content:"\f55b"}.um .fa-bell-slash::before,.um-icon-within .fa-bell-slash::before{content:"\f1f6"}.um .fa-tablet::before,.um-icon-within .fa-tablet::before{content:"\f3fb"}.um .fa-tablet-android::before,.um-icon-within .fa-tablet-android::before{content:"\f3fb"}.um .fa-school-flag::before,.um-icon-within .fa-school-flag::before{content:"\e56e"}.um .fa-fill::before,.um-icon-within .fa-fill::before{content:"\f575"}.um .fa-angle-up::before,.um-icon-within .fa-angle-up::before{content:"\f106"}.um .fa-drumstick-bite::before,.um-icon-within .fa-drumstick-bite::before{content:"\f6d7"}.um .fa-holly-berry::before,.um-icon-within .fa-holly-berry::before{content:"\f7aa"}.um .fa-chevron-left::before,.um-icon-within .fa-chevron-left::before{content:"\f053"}.um .fa-bacteria::before,.um-icon-within .fa-bacteria::before{content:"\e059"}.um .fa-hand-lizard::before,.um-icon-within .fa-hand-lizard::before{content:"\f258"}.um .fa-notdef::before,.um-icon-within .fa-notdef::before{content:"\e1fe"}.um .fa-disease::before,.um-icon-within .fa-disease::before{content:"\f7fa"}.um .fa-briefcase-medical::before,.um-icon-within .fa-briefcase-medical::before{content:"\f469"}.um .fa-genderless::before,.um-icon-within .fa-genderless::before{content:"\f22d"}.um .fa-chevron-right::before,.um-icon-within .fa-chevron-right::before{content:"\f054"}.um .fa-retweet::before,.um-icon-within .fa-retweet::before{content:"\f079"}.um .fa-car-rear::before,.um-icon-within .fa-car-rear::before{content:"\f5de"}.um .fa-car-alt::before,.um-icon-within .fa-car-alt::before{content:"\f5de"}.um .fa-pump-soap::before,.um-icon-within .fa-pump-soap::before{content:"\e06b"}.um .fa-video-slash::before,.um-icon-within .fa-video-slash::before{content:"\f4e2"}.um .fa-battery-quarter::before,.um-icon-within .fa-battery-quarter::before{content:"\f243"}.um .fa-battery-2::before,.um-icon-within .fa-battery-2::before{content:"\f243"}.um .fa-radio::before,.um-icon-within .fa-radio::before{content:"\f8d7"}.um .fa-baby-carriage::before,.um-icon-within .fa-baby-carriage::before{content:"\f77d"}.um .fa-carriage-baby::before,.um-icon-within .fa-carriage-baby::before{content:"\f77d"}.um .fa-traffic-light::before,.um-icon-within .fa-traffic-light::before{content:"\f637"}.um .fa-thermometer::before,.um-icon-within .fa-thermometer::before{content:"\f491"}.um .fa-vr-cardboard::before,.um-icon-within .fa-vr-cardboard::before{content:"\f729"}.um .fa-hand-middle-finger::before,.um-icon-within .fa-hand-middle-finger::before{content:"\f806"}.um .fa-percent::before,.um-icon-within .fa-percent::before{content:"\%"}.um .fa-percentage::before,.um-icon-within .fa-percentage::before{content:"\%"}.um .fa-truck-moving::before,.um-icon-within .fa-truck-moving::before{content:"\f4df"}.um .fa-glass-water-droplet::before,.um-icon-within .fa-glass-water-droplet::before{content:"\e4f5"}.um .fa-display::before,.um-icon-within .fa-display::before{content:"\e163"}.um .fa-face-smile::before,.um-icon-within .fa-face-smile::before{content:"\f118"}.um .fa-smile::before,.um-icon-within .fa-smile::before{content:"\f118"}.um .fa-thumbtack::before,.um-icon-within .fa-thumbtack::before{content:"\f08d"}.um .fa-thumb-tack::before,.um-icon-within .fa-thumb-tack::before{content:"\f08d"}.um .fa-trophy::before,.um-icon-within .fa-trophy::before{content:"\f091"}.um .fa-person-praying::before,.um-icon-within .fa-person-praying::before{content:"\f683"}.um .fa-pray::before,.um-icon-within .fa-pray::before{content:"\f683"}.um .fa-hammer::before,.um-icon-within .fa-hammer::before{content:"\f6e3"}.um .fa-hand-peace::before,.um-icon-within .fa-hand-peace::before{content:"\f25b"}.um .fa-rotate::before,.um-icon-within .fa-rotate::before{content:"\f2f1"}.um .fa-sync-alt::before,.um-icon-within .fa-sync-alt::before{content:"\f2f1"}.um .fa-spinner::before,.um-icon-within .fa-spinner::before{content:"\f110"}.um .fa-robot::before,.um-icon-within .fa-robot::before{content:"\f544"}.um .fa-peace::before,.um-icon-within .fa-peace::before{content:"\f67c"}.um .fa-gears::before,.um-icon-within .fa-gears::before{content:"\f085"}.um .fa-cogs::before,.um-icon-within .fa-cogs::before{content:"\f085"}.um .fa-warehouse::before,.um-icon-within .fa-warehouse::before{content:"\f494"}.um .fa-arrow-up-right-dots::before,.um-icon-within .fa-arrow-up-right-dots::before{content:"\e4b7"}.um .fa-splotch::before,.um-icon-within .fa-splotch::before{content:"\f5bc"}.um .fa-face-grin-hearts::before,.um-icon-within .fa-face-grin-hearts::before{content:"\f584"}.um .fa-grin-hearts::before,.um-icon-within .fa-grin-hearts::before{content:"\f584"}.um .fa-dice-four::before,.um-icon-within .fa-dice-four::before{content:"\f524"}.um .fa-sim-card::before,.um-icon-within .fa-sim-card::before{content:"\f7c4"}.um .fa-transgender::before,.um-icon-within .fa-transgender::before{content:"\f225"}.um .fa-transgender-alt::before,.um-icon-within .fa-transgender-alt::before{content:"\f225"}.um .fa-mercury::before,.um-icon-within .fa-mercury::before{content:"\f223"}.um .fa-arrow-turn-down::before,.um-icon-within .fa-arrow-turn-down::before{content:"\f149"}.um .fa-level-down::before,.um-icon-within .fa-level-down::before{content:"\f149"}.um .fa-person-falling-burst::before,.um-icon-within .fa-person-falling-burst::before{content:"\e547"}.um .fa-award::before,.um-icon-within .fa-award::before{content:"\f559"}.um .fa-ticket-simple::before,.um-icon-within .fa-ticket-simple::before{content:"\f3ff"}.um .fa-ticket-alt::before,.um-icon-within .fa-ticket-alt::before{content:"\f3ff"}.um .fa-building::before,.um-icon-within .fa-building::before{content:"\f1ad"}.um .fa-angles-left::before,.um-icon-within .fa-angles-left::before{content:"\f100"}.um .fa-angle-double-left::before,.um-icon-within .fa-angle-double-left::before{content:"\f100"}.um .fa-qrcode::before,.um-icon-within .fa-qrcode::before{content:"\f029"}.um .fa-clock-rotate-left::before,.um-icon-within .fa-clock-rotate-left::before{content:"\f1da"}.um .fa-history::before,.um-icon-within .fa-history::before{content:"\f1da"}.um .fa-face-grin-beam-sweat::before,.um-icon-within .fa-face-grin-beam-sweat::before{content:"\f583"}.um .fa-grin-beam-sweat::before,.um-icon-within .fa-grin-beam-sweat::before{content:"\f583"}.um .fa-file-export::before,.um-icon-within .fa-file-export::before{content:"\f56e"}.um .fa-arrow-right-from-file::before,.um-icon-within .fa-arrow-right-from-file::before{content:"\f56e"}.um .fa-shield::before,.um-icon-within .fa-shield::before{content:"\f132"}.um .fa-shield-blank::before,.um-icon-within .fa-shield-blank::before{content:"\f132"}.um .fa-arrow-up-short-wide::before,.um-icon-within .fa-arrow-up-short-wide::before{content:"\f885"}.um .fa-sort-amount-up-alt::before,.um-icon-within .fa-sort-amount-up-alt::before{content:"\f885"}.um .fa-house-medical::before,.um-icon-within .fa-house-medical::before{content:"\e3b2"}.um .fa-golf-ball-tee::before,.um-icon-within .fa-golf-ball-tee::before{content:"\f450"}.um .fa-golf-ball::before,.um-icon-within .fa-golf-ball::before{content:"\f450"}.um .fa-circle-chevron-left::before,.um-icon-within .fa-circle-chevron-left::before{content:"\f137"}.um .fa-chevron-circle-left::before,.um-icon-within .fa-chevron-circle-left::before{content:"\f137"}.um .fa-house-chimney-window::before,.um-icon-within .fa-house-chimney-window::before{content:"\e00d"}.um .fa-pen-nib::before,.um-icon-within .fa-pen-nib::before{content:"\f5ad"}.um .fa-tent-arrow-turn-left::before,.um-icon-within .fa-tent-arrow-turn-left::before{content:"\e580"}.um .fa-tents::before,.um-icon-within .fa-tents::before{content:"\e582"}.um .fa-wand-magic::before,.um-icon-within .fa-wand-magic::before{content:"\f0d0"}.um .fa-magic::before,.um-icon-within .fa-magic::before{content:"\f0d0"}.um .fa-dog::before,.um-icon-within .fa-dog::before{content:"\f6d3"}.um .fa-carrot::before,.um-icon-within .fa-carrot::before{content:"\f787"}.um .fa-moon::before,.um-icon-within .fa-moon::before{content:"\f186"}.um .fa-wine-glass-empty::before,.um-icon-within .fa-wine-glass-empty::before{content:"\f5ce"}.um .fa-wine-glass-alt::before,.um-icon-within .fa-wine-glass-alt::before{content:"\f5ce"}.um .fa-cheese::before,.um-icon-within .fa-cheese::before{content:"\f7ef"}.um .fa-yin-yang::before,.um-icon-within .fa-yin-yang::before{content:"\f6ad"}.um .fa-music::before,.um-icon-within .fa-music::before{content:"\f001"}.um .fa-code-commit::before,.um-icon-within .fa-code-commit::before{content:"\f386"}.um .fa-temperature-low::before,.um-icon-within .fa-temperature-low::before{content:"\f76b"}.um .fa-person-biking::before,.um-icon-within .fa-person-biking::before{content:"\f84a"}.um .fa-biking::before,.um-icon-within .fa-biking::before{content:"\f84a"}.um .fa-broom::before,.um-icon-within .fa-broom::before{content:"\f51a"}.um .fa-shield-heart::before,.um-icon-within .fa-shield-heart::before{content:"\e574"}.um .fa-gopuram::before,.um-icon-within .fa-gopuram::before{content:"\f664"}.um .fa-earth-oceania::before,.um-icon-within .fa-earth-oceania::before{content:"\e47b"}.um .fa-globe-oceania::before,.um-icon-within .fa-globe-oceania::before{content:"\e47b"}.um .fa-square-xmark::before,.um-icon-within .fa-square-xmark::before{content:"\f2d3"}.um .fa-times-square::before,.um-icon-within .fa-times-square::before{content:"\f2d3"}.um .fa-xmark-square::before,.um-icon-within .fa-xmark-square::before{content:"\f2d3"}.um .fa-hashtag::before,.um-icon-within .fa-hashtag::before{content:"\#"}.um .fa-up-right-and-down-left-from-center::before,.um-icon-within .fa-up-right-and-down-left-from-center::before{content:"\f424"}.um .fa-expand-alt::before,.um-icon-within .fa-expand-alt::before{content:"\f424"}.um .fa-oil-can::before,.um-icon-within .fa-oil-can::before{content:"\f613"}.um .fa-t::before,.um-icon-within .fa-t::before{content:"T"}.um .fa-hippo::before,.um-icon-within .fa-hippo::before{content:"\f6ed"}.um .fa-chart-column::before,.um-icon-within .fa-chart-column::before{content:"\e0e3"}.um .fa-infinity::before,.um-icon-within .fa-infinity::before{content:"\f534"}.um .fa-vial-circle-check::before,.um-icon-within .fa-vial-circle-check::before{content:"\e596"}.um .fa-person-arrow-down-to-line::before,.um-icon-within .fa-person-arrow-down-to-line::before{content:"\e538"}.um .fa-voicemail::before,.um-icon-within .fa-voicemail::before{content:"\f897"}.um .fa-fan::before,.um-icon-within .fa-fan::before{content:"\f863"}.um .fa-person-walking-luggage::before,.um-icon-within .fa-person-walking-luggage::before{content:"\e554"}.um .fa-up-down::before,.um-icon-within .fa-up-down::before{content:"\f338"}.um .fa-arrows-alt-v::before,.um-icon-within .fa-arrows-alt-v::before{content:"\f338"}.um .fa-cloud-moon-rain::before,.um-icon-within .fa-cloud-moon-rain::before{content:"\f73c"}.um .fa-calendar::before,.um-icon-within .fa-calendar::before{content:"\f133"}.um .fa-trailer::before,.um-icon-within .fa-trailer::before{content:"\e041"}.um .fa-bahai::before,.um-icon-within .fa-bahai::before{content:"\f666"}.um .fa-haykal::before,.um-icon-within .fa-haykal::before{content:"\f666"}.um .fa-sd-card::before,.um-icon-within .fa-sd-card::before{content:"\f7c2"}.um .fa-dragon::before,.um-icon-within .fa-dragon::before{content:"\f6d5"}.um .fa-shoe-prints::before,.um-icon-within .fa-shoe-prints::before{content:"\f54b"}.um .fa-circle-plus::before,.um-icon-within .fa-circle-plus::before{content:"\f055"}.um .fa-plus-circle::before,.um-icon-within .fa-plus-circle::before{content:"\f055"}.um .fa-face-grin-tongue-wink::before,.um-icon-within .fa-face-grin-tongue-wink::before{content:"\f58b"}.um .fa-grin-tongue-wink::before,.um-icon-within .fa-grin-tongue-wink::before{content:"\f58b"}.um .fa-hand-holding::before,.um-icon-within .fa-hand-holding::before{content:"\f4bd"}.um .fa-plug-circle-exclamation::before,.um-icon-within .fa-plug-circle-exclamation::before{content:"\e55d"}.um .fa-link-slash::before,.um-icon-within .fa-link-slash::before{content:"\f127"}.um .fa-chain-broken::before,.um-icon-within .fa-chain-broken::before{content:"\f127"}.um .fa-chain-slash::before,.um-icon-within .fa-chain-slash::before{content:"\f127"}.um .fa-unlink::before,.um-icon-within .fa-unlink::before{content:"\f127"}.um .fa-clone::before,.um-icon-within .fa-clone::before{content:"\f24d"}.um .fa-person-walking-arrow-loop-left::before,.um-icon-within .fa-person-walking-arrow-loop-left::before{content:"\e551"}.um .fa-arrow-up-z-a::before,.um-icon-within .fa-arrow-up-z-a::before{content:"\f882"}.um .fa-sort-alpha-up-alt::before,.um-icon-within .fa-sort-alpha-up-alt::before{content:"\f882"}.um .fa-fire-flame-curved::before,.um-icon-within .fa-fire-flame-curved::before{content:"\f7e4"}.um .fa-fire-alt::before,.um-icon-within .fa-fire-alt::before{content:"\f7e4"}.um .fa-tornado::before,.um-icon-within .fa-tornado::before{content:"\f76f"}.um .fa-file-circle-plus::before,.um-icon-within .fa-file-circle-plus::before{content:"\e494"}.um .fa-book-quran::before,.um-icon-within .fa-book-quran::before{content:"\f687"}.um .fa-quran::before,.um-icon-within .fa-quran::before{content:"\f687"}.um .fa-anchor::before,.um-icon-within .fa-anchor::before{content:"\f13d"}.um .fa-border-all::before,.um-icon-within .fa-border-all::before{content:"\f84c"}.um .fa-face-angry::before,.um-icon-within .fa-face-angry::before{content:"\f556"}.um .fa-angry::before,.um-icon-within .fa-angry::before{content:"\f556"}.um .fa-cookie-bite::before,.um-icon-within .fa-cookie-bite::before{content:"\f564"}.um .fa-arrow-trend-down::before,.um-icon-within .fa-arrow-trend-down::before{content:"\e097"}.um .fa-rss::before,.um-icon-within .fa-rss::before{content:"\f09e"}.um .fa-feed::before,.um-icon-within .fa-feed::before{content:"\f09e"}.um .fa-draw-polygon::before,.um-icon-within .fa-draw-polygon::before{content:"\f5ee"}.um .fa-scale-balanced::before,.um-icon-within .fa-scale-balanced::before{content:"\f24e"}.um .fa-balance-scale::before,.um-icon-within .fa-balance-scale::before{content:"\f24e"}.um .fa-gauge-simple-high::before,.um-icon-within .fa-gauge-simple-high::before{content:"\f62a"}.um .fa-tachometer::before,.um-icon-within .fa-tachometer::before{content:"\f62a"}.um .fa-tachometer-fast::before,.um-icon-within .fa-tachometer-fast::before{content:"\f62a"}.um .fa-shower::before,.um-icon-within .fa-shower::before{content:"\f2cc"}.um .fa-desktop::before,.um-icon-within .fa-desktop::before{content:"\f390"}.um .fa-desktop-alt::before,.um-icon-within .fa-desktop-alt::before{content:"\f390"}.um .fa-m::before,.um-icon-within .fa-m::before{content:"M"}.um .fa-table-list::before,.um-icon-within .fa-table-list::before{content:"\f00b"}.um .fa-th-list::before,.um-icon-within .fa-th-list::before{content:"\f00b"}.um .fa-comment-sms::before,.um-icon-within .fa-comment-sms::before{content:"\f7cd"}.um .fa-sms::before,.um-icon-within .fa-sms::before{content:"\f7cd"}.um .fa-book::before,.um-icon-within .fa-book::before{content:"\f02d"}.um .fa-user-plus::before,.um-icon-within .fa-user-plus::before{content:"\f234"}.um .fa-check::before,.um-icon-within .fa-check::before{content:"\f00c"}.um .fa-battery-three-quarters::before,.um-icon-within .fa-battery-three-quarters::before{content:"\f241"}.um .fa-battery-4::before,.um-icon-within .fa-battery-4::before{content:"\f241"}.um .fa-house-circle-check::before,.um-icon-within .fa-house-circle-check::before{content:"\e509"}.um .fa-angle-left::before,.um-icon-within .fa-angle-left::before{content:"\f104"}.um .fa-diagram-successor::before,.um-icon-within .fa-diagram-successor::before{content:"\e47a"}.um .fa-truck-arrow-right::before,.um-icon-within .fa-truck-arrow-right::before{content:"\e58b"}.um .fa-arrows-split-up-and-left::before,.um-icon-within .fa-arrows-split-up-and-left::before{content:"\e4bc"}.um .fa-hand-fist::before,.um-icon-within .fa-hand-fist::before{content:"\f6de"}.um .fa-fist-raised::before,.um-icon-within .fa-fist-raised::before{content:"\f6de"}.um .fa-cloud-moon::before,.um-icon-within .fa-cloud-moon::before{content:"\f6c3"}.um .fa-briefcase::before,.um-icon-within .fa-briefcase::before{content:"\f0b1"}.um .fa-person-falling::before,.um-icon-within .fa-person-falling::before{content:"\e546"}.um .fa-image-portrait::before,.um-icon-within .fa-image-portrait::before{content:"\f3e0"}.um .fa-portrait::before,.um-icon-within .fa-portrait::before{content:"\f3e0"}.um .fa-user-tag::before,.um-icon-within .fa-user-tag::before{content:"\f507"}.um .fa-rug::before,.um-icon-within .fa-rug::before{content:"\e569"}.um .fa-earth-europe::before,.um-icon-within .fa-earth-europe::before{content:"\f7a2"}.um .fa-globe-europe::before,.um-icon-within .fa-globe-europe::before{content:"\f7a2"}.um .fa-cart-flatbed-suitcase::before,.um-icon-within .fa-cart-flatbed-suitcase::before{content:"\f59d"}.um .fa-luggage-cart::before,.um-icon-within .fa-luggage-cart::before{content:"\f59d"}.um .fa-rectangle-xmark::before,.um-icon-within .fa-rectangle-xmark::before{content:"\f410"}.um .fa-rectangle-times::before,.um-icon-within .fa-rectangle-times::before{content:"\f410"}.um .fa-times-rectangle::before,.um-icon-within .fa-times-rectangle::before{content:"\f410"}.um .fa-window-close::before,.um-icon-within .fa-window-close::before{content:"\f410"}.um .fa-baht-sign::before,.um-icon-within .fa-baht-sign::before{content:"\e0ac"}.um .fa-book-open::before,.um-icon-within .fa-book-open::before{content:"\f518"}.um .fa-book-journal-whills::before,.um-icon-within .fa-book-journal-whills::before{content:"\f66a"}.um .fa-journal-whills::before,.um-icon-within .fa-journal-whills::before{content:"\f66a"}.um .fa-handcuffs::before,.um-icon-within .fa-handcuffs::before{content:"\e4f8"}.um .fa-triangle-exclamation::before,.um-icon-within .fa-triangle-exclamation::before{content:"\f071"}.um .fa-exclamation-triangle::before,.um-icon-within .fa-exclamation-triangle::before{content:"\f071"}.um .fa-warning::before,.um-icon-within .fa-warning::before{content:"\f071"}.um .fa-database::before,.um-icon-within .fa-database::before{content:"\f1c0"}.um .fa-share::before,.um-icon-within .fa-share::before{content:"\f064"}.um .fa-mail-forward::before,.um-icon-within .fa-mail-forward::before{content:"\f064"}.um .fa-bottle-droplet::before,.um-icon-within .fa-bottle-droplet::before{content:"\e4c4"}.um .fa-mask-face::before,.um-icon-within .fa-mask-face::before{content:"\e1d7"}.um .fa-hill-rockslide::before,.um-icon-within .fa-hill-rockslide::before{content:"\e508"}.um .fa-right-left::before,.um-icon-within .fa-right-left::before{content:"\f362"}.um .fa-exchange-alt::before,.um-icon-within .fa-exchange-alt::before{content:"\f362"}.um .fa-paper-plane::before,.um-icon-within .fa-paper-plane::before{content:"\f1d8"}.um .fa-road-circle-exclamation::before,.um-icon-within .fa-road-circle-exclamation::before{content:"\e565"}.um .fa-dungeon::before,.um-icon-within .fa-dungeon::before{content:"\f6d9"}.um .fa-align-right::before,.um-icon-within .fa-align-right::before{content:"\f038"}.um .fa-money-bill-1-wave::before,.um-icon-within .fa-money-bill-1-wave::before{content:"\f53b"}.um .fa-money-bill-wave-alt::before,.um-icon-within .fa-money-bill-wave-alt::before{content:"\f53b"}.um .fa-life-ring::before,.um-icon-within .fa-life-ring::before{content:"\f1cd"}.um .fa-hands::before,.um-icon-within .fa-hands::before{content:"\f2a7"}.um .fa-sign-language::before,.um-icon-within .fa-sign-language::before{content:"\f2a7"}.um .fa-signing::before,.um-icon-within .fa-signing::before{content:"\f2a7"}.um .fa-calendar-day::before,.um-icon-within .fa-calendar-day::before{content:"\f783"}.um .fa-water-ladder::before,.um-icon-within .fa-water-ladder::before{content:"\f5c5"}.um .fa-ladder-water::before,.um-icon-within .fa-ladder-water::before{content:"\f5c5"}.um .fa-swimming-pool::before,.um-icon-within .fa-swimming-pool::before{content:"\f5c5"}.um .fa-arrows-up-down::before,.um-icon-within .fa-arrows-up-down::before{content:"\f07d"}.um .fa-arrows-v::before,.um-icon-within .fa-arrows-v::before{content:"\f07d"}.um .fa-face-grimace::before,.um-icon-within .fa-face-grimace::before{content:"\f57f"}.um .fa-grimace::before,.um-icon-within .fa-grimace::before{content:"\f57f"}.um .fa-wheelchair-move::before,.um-icon-within .fa-wheelchair-move::before{content:"\e2ce"}.um .fa-wheelchair-alt::before,.um-icon-within .fa-wheelchair-alt::before{content:"\e2ce"}.um .fa-turn-down::before,.um-icon-within .fa-turn-down::before{content:"\f3be"}.um .fa-level-down-alt::before,.um-icon-within .fa-level-down-alt::before{content:"\f3be"}.um .fa-person-walking-arrow-right::before,.um-icon-within .fa-person-walking-arrow-right::before{content:"\e552"}.um .fa-square-envelope::before,.um-icon-within .fa-square-envelope::before{content:"\f199"}.um .fa-envelope-square::before,.um-icon-within .fa-envelope-square::before{content:"\f199"}.um .fa-dice::before,.um-icon-within .fa-dice::before{content:"\f522"}.um .fa-bowling-ball::before,.um-icon-within .fa-bowling-ball::before{content:"\f436"}.um .fa-brain::before,.um-icon-within .fa-brain::before{content:"\f5dc"}.um .fa-bandage::before,.um-icon-within .fa-bandage::before{content:"\f462"}.um .fa-band-aid::before,.um-icon-within .fa-band-aid::before{content:"\f462"}.um .fa-calendar-minus::before,.um-icon-within .fa-calendar-minus::before{content:"\f272"}.um .fa-circle-xmark::before,.um-icon-within .fa-circle-xmark::before{content:"\f057"}.um .fa-times-circle::before,.um-icon-within .fa-times-circle::before{content:"\f057"}.um .fa-xmark-circle::before,.um-icon-within .fa-xmark-circle::before{content:"\f057"}.um .fa-gifts::before,.um-icon-within .fa-gifts::before{content:"\f79c"}.um .fa-hotel::before,.um-icon-within .fa-hotel::before{content:"\f594"}.um .fa-earth-asia::before,.um-icon-within .fa-earth-asia::before{content:"\f57e"}.um .fa-globe-asia::before,.um-icon-within .fa-globe-asia::before{content:"\f57e"}.um .fa-id-card-clip::before,.um-icon-within .fa-id-card-clip::before{content:"\f47f"}.um .fa-id-card-alt::before,.um-icon-within .fa-id-card-alt::before{content:"\f47f"}.um .fa-magnifying-glass-plus::before,.um-icon-within .fa-magnifying-glass-plus::before{content:"\f00e"}.um .fa-search-plus::before,.um-icon-within .fa-search-plus::before{content:"\f00e"}.um .fa-thumbs-up::before,.um-icon-within .fa-thumbs-up::before{content:"\f164"}.um .fa-user-clock::before,.um-icon-within .fa-user-clock::before{content:"\f4fd"}.um .fa-hand-dots::before,.um-icon-within .fa-hand-dots::before{content:"\f461"}.um .fa-allergies::before,.um-icon-within .fa-allergies::before{content:"\f461"}.um .fa-file-invoice::before,.um-icon-within .fa-file-invoice::before{content:"\f570"}.um .fa-window-minimize::before,.um-icon-within .fa-window-minimize::before{content:"\f2d1"}.um .fa-mug-saucer::before,.um-icon-within .fa-mug-saucer::before{content:"\f0f4"}.um .fa-coffee::before,.um-icon-within .fa-coffee::before{content:"\f0f4"}.um .fa-brush::before,.um-icon-within .fa-brush::before{content:"\f55d"}.um .fa-mask::before,.um-icon-within .fa-mask::before{content:"\f6fa"}.um .fa-magnifying-glass-minus::before,.um-icon-within .fa-magnifying-glass-minus::before{content:"\f010"}.um .fa-search-minus::before,.um-icon-within .fa-search-minus::before{content:"\f010"}.um .fa-ruler-vertical::before,.um-icon-within .fa-ruler-vertical::before{content:"\f548"}.um .fa-user-large::before,.um-icon-within .fa-user-large::before{content:"\f406"}.um .fa-user-alt::before,.um-icon-within .fa-user-alt::before{content:"\f406"}.um .fa-train-tram::before,.um-icon-within .fa-train-tram::before{content:"\e5b4"}.um .fa-user-nurse::before,.um-icon-within .fa-user-nurse::before{content:"\f82f"}.um .fa-syringe::before,.um-icon-within .fa-syringe::before{content:"\f48e"}.um .fa-cloud-sun::before,.um-icon-within .fa-cloud-sun::before{content:"\f6c4"}.um .fa-stopwatch-20::before,.um-icon-within .fa-stopwatch-20::before{content:"\e06f"}.um .fa-square-full::before,.um-icon-within .fa-square-full::before{content:"\f45c"}.um .fa-magnet::before,.um-icon-within .fa-magnet::before{content:"\f076"}.um .fa-jar::before,.um-icon-within .fa-jar::before{content:"\e516"}.um .fa-note-sticky::before,.um-icon-within .fa-note-sticky::before{content:"\f249"}.um .fa-sticky-note::before,.um-icon-within .fa-sticky-note::before{content:"\f249"}.um .fa-bug-slash::before,.um-icon-within .fa-bug-slash::before{content:"\e490"}.um .fa-arrow-up-from-water-pump::before,.um-icon-within .fa-arrow-up-from-water-pump::before{content:"\e4b6"}.um .fa-bone::before,.um-icon-within .fa-bone::before{content:"\f5d7"}.um .fa-user-injured::before,.um-icon-within .fa-user-injured::before{content:"\f728"}.um .fa-face-sad-tear::before,.um-icon-within .fa-face-sad-tear::before{content:"\f5b4"}.um .fa-sad-tear::before,.um-icon-within .fa-sad-tear::before{content:"\f5b4"}.um .fa-plane::before,.um-icon-within .fa-plane::before{content:"\f072"}.um .fa-tent-arrows-down::before,.um-icon-within .fa-tent-arrows-down::before{content:"\e581"}.um .fa-exclamation::before,.um-icon-within .fa-exclamation::before{content:"\!"}.um .fa-arrows-spin::before,.um-icon-within .fa-arrows-spin::before{content:"\e4bb"}.um .fa-print::before,.um-icon-within .fa-print::before{content:"\f02f"}.um .fa-turkish-lira-sign::before,.um-icon-within .fa-turkish-lira-sign::before{content:"\e2bb"}.um .fa-try::before,.um-icon-within .fa-try::before{content:"\e2bb"}.um .fa-turkish-lira::before,.um-icon-within .fa-turkish-lira::before{content:"\e2bb"}.um .fa-dollar-sign::before,.um-icon-within .fa-dollar-sign::before{content:"\$"}.um .fa-dollar::before,.um-icon-within .fa-dollar::before{content:"\$"}.um .fa-usd::before,.um-icon-within .fa-usd::before{content:"\$"}.um .fa-x::before,.um-icon-within .fa-x::before{content:"X"}.um .fa-magnifying-glass-dollar::before,.um-icon-within .fa-magnifying-glass-dollar::before{content:"\f688"}.um .fa-search-dollar::before,.um-icon-within .fa-search-dollar::before{content:"\f688"}.um .fa-users-gear::before,.um-icon-within .fa-users-gear::before{content:"\f509"}.um .fa-users-cog::before,.um-icon-within .fa-users-cog::before{content:"\f509"}.um .fa-person-military-pointing::before,.um-icon-within .fa-person-military-pointing::before{content:"\e54a"}.um .fa-building-columns::before,.um-icon-within .fa-building-columns::before{content:"\f19c"}.um .fa-bank::before,.um-icon-within .fa-bank::before{content:"\f19c"}.um .fa-institution::before,.um-icon-within .fa-institution::before{content:"\f19c"}.um .fa-museum::before,.um-icon-within .fa-museum::before{content:"\f19c"}.um .fa-university::before,.um-icon-within .fa-university::before{content:"\f19c"}.um .fa-umbrella::before,.um-icon-within .fa-umbrella::before{content:"\f0e9"}.um .fa-trowel::before,.um-icon-within .fa-trowel::before{content:"\e589"}.um .fa-d::before,.um-icon-within .fa-d::before{content:"D"}.um .fa-stapler::before,.um-icon-within .fa-stapler::before{content:"\e5af"}.um .fa-masks-theater::before,.um-icon-within .fa-masks-theater::before{content:"\f630"}.um .fa-theater-masks::before,.um-icon-within .fa-theater-masks::before{content:"\f630"}.um .fa-kip-sign::before,.um-icon-within .fa-kip-sign::before{content:"\e1c4"}.um .fa-hand-point-left::before,.um-icon-within .fa-hand-point-left::before{content:"\f0a5"}.um .fa-handshake-simple::before,.um-icon-within .fa-handshake-simple::before{content:"\f4c6"}.um .fa-handshake-alt::before,.um-icon-within .fa-handshake-alt::before{content:"\f4c6"}.um .fa-jet-fighter::before,.um-icon-within .fa-jet-fighter::before{content:"\f0fb"}.um .fa-fighter-jet::before,.um-icon-within .fa-fighter-jet::before{content:"\f0fb"}.um .fa-square-share-nodes::before,.um-icon-within .fa-square-share-nodes::before{content:"\f1e1"}.um .fa-share-alt-square::before,.um-icon-within .fa-share-alt-square::before{content:"\f1e1"}.um .fa-barcode::before,.um-icon-within .fa-barcode::before{content:"\f02a"}.um .fa-plus-minus::before,.um-icon-within .fa-plus-minus::before{content:"\e43c"}.um .fa-video::before,.um-icon-within .fa-video::before{content:"\f03d"}.um .fa-video-camera::before,.um-icon-within .fa-video-camera::before{content:"\f03d"}.um .fa-graduation-cap::before,.um-icon-within .fa-graduation-cap::before{content:"\f19d"}.um .fa-mortar-board::before,.um-icon-within .fa-mortar-board::before{content:"\f19d"}.um .fa-hand-holding-medical::before,.um-icon-within .fa-hand-holding-medical::before{content:"\e05c"}.um .fa-person-circle-check::before,.um-icon-within .fa-person-circle-check::before{content:"\e53e"}.um .fa-turn-up::before,.um-icon-within .fa-turn-up::before{content:"\f3bf"}.um .fa-level-up-alt::before,.um-icon-within .fa-level-up-alt::before{content:"\f3bf"}.um .fa-sr-only,.um .sr-only,.um-icon-within .fa-sr-only,.um-icon-within .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.um .fa-sr-only-focusable:not(:focus),.um .sr-only-focusable:not(:focus),.um-icon-within .fa-sr-only-focusable:not(:focus),.um-icon-within .sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.um :host,.um :root,.um-icon-within :host,.um-icon-within :root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../libs/fontawesome/webfonts/fa-brands-400.woff2) format("woff2"),url(../libs/fontawesome/webfonts/fa-brands-400.ttf) format("truetype")}.um .fa-brands,.um .fab,.um-icon-within .fa-brands,.um-icon-within .fab{font-weight:400}.um .fa-monero:before,.um-icon-within .fa-monero:before{content:"\f3d0"}.um .fa-hooli:before,.um-icon-within .fa-hooli:before{content:"\f427"}.um .fa-yelp:before,.um-icon-within .fa-yelp:before{content:"\f1e9"}.um .fa-cc-visa:before,.um-icon-within .fa-cc-visa:before{content:"\f1f0"}.um .fa-lastfm:before,.um-icon-within .fa-lastfm:before{content:"\f202"}.um .fa-shopware:before,.um-icon-within .fa-shopware:before{content:"\f5b5"}.um .fa-creative-commons-nc:before,.um-icon-within .fa-creative-commons-nc:before{content:"\f4e8"}.um .fa-aws:before,.um-icon-within .fa-aws:before{content:"\f375"}.um .fa-redhat:before,.um-icon-within .fa-redhat:before{content:"\f7bc"}.um .fa-yoast:before,.um-icon-within .fa-yoast:before{content:"\f2b1"}.um .fa-cloudflare:before,.um-icon-within .fa-cloudflare:before{content:"\e07d"}.um .fa-ups:before,.um-icon-within .fa-ups:before{content:"\f7e0"}.um .fa-pixiv:before,.um-icon-within .fa-pixiv:before{content:"\e640"}.um .fa-wpexplorer:before,.um-icon-within .fa-wpexplorer:before{content:"\f2de"}.um .fa-dyalog:before,.um-icon-within .fa-dyalog:before{content:"\f399"}.um .fa-bity:before,.um-icon-within .fa-bity:before{content:"\f37a"}.um .fa-stackpath:before,.um-icon-within .fa-stackpath:before{content:"\f842"}.um .fa-buysellads:before,.um-icon-within .fa-buysellads:before{content:"\f20d"}.um .fa-first-order:before,.um-icon-within .fa-first-order:before{content:"\f2b0"}.um .fa-modx:before,.um-icon-within .fa-modx:before{content:"\f285"}.um .fa-guilded:before,.um-icon-within .fa-guilded:before{content:"\e07e"}.um .fa-vnv:before,.um-icon-within .fa-vnv:before{content:"\f40b"}.um .fa-square-js:before,.um-icon-within .fa-square-js:before{content:"\f3b9"}.um .fa-js-square:before,.um-icon-within .fa-js-square:before{content:"\f3b9"}.um .fa-microsoft:before,.um-icon-within .fa-microsoft:before{content:"\f3ca"}.um .fa-qq:before,.um-icon-within .fa-qq:before{content:"\f1d6"}.um .fa-orcid:before,.um-icon-within .fa-orcid:before{content:"\f8d2"}.um .fa-java:before,.um-icon-within .fa-java:before{content:"\f4e4"}.um .fa-invision:before,.um-icon-within .fa-invision:before{content:"\f7b0"}.um .fa-creative-commons-pd-alt:before,.um-icon-within .fa-creative-commons-pd-alt:before{content:"\f4ed"}.um .fa-centercode:before,.um-icon-within .fa-centercode:before{content:"\f380"}.um .fa-glide-g:before,.um-icon-within .fa-glide-g:before{content:"\f2a6"}.um .fa-drupal:before,.um-icon-within .fa-drupal:before{content:"\f1a9"}.um .fa-jxl:before,.um-icon-within .fa-jxl:before{content:"\e67b"}.um .fa-hire-a-helper:before,.um-icon-within .fa-hire-a-helper:before{content:"\f3b0"}.um .fa-creative-commons-by:before,.um-icon-within .fa-creative-commons-by:before{content:"\f4e7"}.um .fa-unity:before,.um-icon-within .fa-unity:before{content:"\e049"}.um .fa-whmcs:before,.um-icon-within .fa-whmcs:before{content:"\f40d"}.um .fa-rocketchat:before,.um-icon-within .fa-rocketchat:before{content:"\f3e8"}.um .fa-vk:before,.um-icon-within .fa-vk:before{content:"\f189"}.um .fa-untappd:before,.um-icon-within .fa-untappd:before{content:"\f405"}.um .fa-mailchimp:before,.um-icon-within .fa-mailchimp:before{content:"\f59e"}.um .fa-css3-alt:before,.um-icon-within .fa-css3-alt:before{content:"\f38b"}.um .fa-square-reddit:before,.um-icon-within .fa-square-reddit:before{content:"\f1a2"}.um .fa-reddit-square:before,.um-icon-within .fa-reddit-square:before{content:"\f1a2"}.um .fa-vimeo-v:before,.um-icon-within .fa-vimeo-v:before{content:"\f27d"}.um .fa-contao:before,.um-icon-within .fa-contao:before{content:"\f26d"}.um .fa-square-font-awesome:before,.um-icon-within .fa-square-font-awesome:before{content:"\e5ad"}.um .fa-deskpro:before,.um-icon-within .fa-deskpro:before{content:"\f38f"}.um .fa-brave:before,.um-icon-within .fa-brave:before{content:"\e63c"}.um .fa-sistrix:before,.um-icon-within .fa-sistrix:before{content:"\f3ee"}.um .fa-square-instagram:before,.um-icon-within .fa-square-instagram:before{content:"\e055"}.um .fa-instagram-square:before,.um-icon-within .fa-instagram-square:before{content:"\e055"}.um .fa-battle-net:before,.um-icon-within .fa-battle-net:before{content:"\f835"}.um .fa-the-red-yeti:before,.um-icon-within .fa-the-red-yeti:before{content:"\f69d"}.um .fa-square-hacker-news:before,.um-icon-within .fa-square-hacker-news:before{content:"\f3af"}.um .fa-hacker-news-square:before,.um-icon-within .fa-hacker-news-square:before{content:"\f3af"}.um .fa-edge:before,.um-icon-within .fa-edge:before{content:"\f282"}.um .fa-threads:before,.um-icon-within .fa-threads:before{content:"\e618"}.um .fa-napster:before,.um-icon-within .fa-napster:before{content:"\f3d2"}.um .fa-square-snapchat:before,.um-icon-within .fa-square-snapchat:before{content:"\f2ad"}.um .fa-snapchat-square:before,.um-icon-within .fa-snapchat-square:before{content:"\f2ad"}.um .fa-google-plus-g:before,.um-icon-within .fa-google-plus-g:before{content:"\f0d5"}.um .fa-artstation:before,.um-icon-within .fa-artstation:before{content:"\f77a"}.um .fa-markdown:before,.um-icon-within .fa-markdown:before{content:"\f60f"}.um .fa-sourcetree:before,.um-icon-within .fa-sourcetree:before{content:"\f7d3"}.um .fa-google-plus:before,.um-icon-within .fa-google-plus:before{content:"\f2b3"}.um .fa-diaspora:before,.um-icon-within .fa-diaspora:before{content:"\f791"}.um .fa-foursquare:before,.um-icon-within .fa-foursquare:before{content:"\f180"}.um .fa-stack-overflow:before,.um-icon-within .fa-stack-overflow:before{content:"\f16c"}.um .fa-github-alt:before,.um-icon-within .fa-github-alt:before{content:"\f113"}.um .fa-phoenix-squadron:before,.um-icon-within .fa-phoenix-squadron:before{content:"\f511"}.um .fa-pagelines:before,.um-icon-within .fa-pagelines:before{content:"\f18c"}.um .fa-algolia:before,.um-icon-within .fa-algolia:before{content:"\f36c"}.um .fa-red-river:before,.um-icon-within .fa-red-river:before{content:"\f3e3"}.um .fa-creative-commons-sa:before,.um-icon-within .fa-creative-commons-sa:before{content:"\f4ef"}.um .fa-safari:before,.um-icon-within .fa-safari:before{content:"\f267"}.um .fa-google:before,.um-icon-within .fa-google:before{content:"\f1a0"}.um .fa-square-font-awesome-stroke:before,.um-icon-within .fa-square-font-awesome-stroke:before{content:"\f35c"}.um .fa-font-awesome-alt:before,.um-icon-within .fa-font-awesome-alt:before{content:"\f35c"}.um .fa-atlassian:before,.um-icon-within .fa-atlassian:before{content:"\f77b"}.um .fa-linkedin-in:before,.um-icon-within .fa-linkedin-in:before{content:"\f0e1"}.um .fa-digital-ocean:before,.um-icon-within .fa-digital-ocean:before{content:"\f391"}.um .fa-nimblr:before,.um-icon-within .fa-nimblr:before{content:"\f5a8"}.um .fa-chromecast:before,.um-icon-within .fa-chromecast:before{content:"\f838"}.um .fa-evernote:before,.um-icon-within .fa-evernote:before{content:"\f839"}.um .fa-hacker-news:before,.um-icon-within .fa-hacker-news:before{content:"\f1d4"}.um .fa-creative-commons-sampling:before,.um-icon-within .fa-creative-commons-sampling:before{content:"\f4f0"}.um .fa-adversal:before,.um-icon-within .fa-adversal:before{content:"\f36a"}.um .fa-creative-commons:before,.um-icon-within .fa-creative-commons:before{content:"\f25e"}.um .fa-watchman-monitoring:before,.um-icon-within .fa-watchman-monitoring:before{content:"\e087"}.um .fa-fonticons:before,.um-icon-within .fa-fonticons:before{content:"\f280"}.um .fa-weixin:before,.um-icon-within .fa-weixin:before{content:"\f1d7"}.um .fa-shirtsinbulk:before,.um-icon-within .fa-shirtsinbulk:before{content:"\f214"}.um .fa-codepen:before,.um-icon-within .fa-codepen:before{content:"\f1cb"}.um .fa-git-alt:before,.um-icon-within .fa-git-alt:before{content:"\f841"}.um .fa-lyft:before,.um-icon-within .fa-lyft:before{content:"\f3c3"}.um .fa-rev:before,.um-icon-within .fa-rev:before{content:"\f5b2"}.um .fa-windows:before,.um-icon-within .fa-windows:before{content:"\f17a"}.um .fa-wizards-of-the-coast:before,.um-icon-within .fa-wizards-of-the-coast:before{content:"\f730"}.um .fa-square-viadeo:before,.um-icon-within .fa-square-viadeo:before{content:"\f2aa"}.um .fa-viadeo-square:before,.um-icon-within .fa-viadeo-square:before{content:"\f2aa"}.um .fa-meetup:before,.um-icon-within .fa-meetup:before{content:"\f2e0"}.um .fa-centos:before,.um-icon-within .fa-centos:before{content:"\f789"}.um .fa-adn:before,.um-icon-within .fa-adn:before{content:"\f170"}.um .fa-cloudsmith:before,.um-icon-within .fa-cloudsmith:before{content:"\f384"}.um .fa-opensuse:before,.um-icon-within .fa-opensuse:before{content:"\e62b"}.um .fa-pied-piper-alt:before,.um-icon-within .fa-pied-piper-alt:before{content:"\f1a8"}.um .fa-square-dribbble:before,.um-icon-within .fa-square-dribbble:before{content:"\f397"}.um .fa-dribbble-square:before,.um-icon-within .fa-dribbble-square:before{content:"\f397"}.um .fa-codiepie:before,.um-icon-within .fa-codiepie:before{content:"\f284"}.um .fa-node:before,.um-icon-within .fa-node:before{content:"\f419"}.um .fa-mix:before,.um-icon-within .fa-mix:before{content:"\f3cb"}.um .fa-steam:before,.um-icon-within .fa-steam:before{content:"\f1b6"}.um .fa-cc-apple-pay:before,.um-icon-within .fa-cc-apple-pay:before{content:"\f416"}.um .fa-scribd:before,.um-icon-within .fa-scribd:before{content:"\f28a"}.um .fa-debian:before,.um-icon-within .fa-debian:before{content:"\e60b"}.um .fa-openid:before,.um-icon-within .fa-openid:before{content:"\f19b"}.um .fa-instalod:before,.um-icon-within .fa-instalod:before{content:"\e081"}.um .fa-expeditedssl:before,.um-icon-within .fa-expeditedssl:before{content:"\f23e"}.um .fa-sellcast:before,.um-icon-within .fa-sellcast:before{content:"\f2da"}.um .fa-square-twitter:before,.um-icon-within .fa-square-twitter:before{content:"\f081"}.um .fa-twitter-square:before,.um-icon-within .fa-twitter-square:before{content:"\f081"}.um .fa-r-project:before,.um-icon-within .fa-r-project:before{content:"\f4f7"}.um .fa-delicious:before,.um-icon-within .fa-delicious:before{content:"\f1a5"}.um .fa-freebsd:before,.um-icon-within .fa-freebsd:before{content:"\f3a4"}.um .fa-vuejs:before,.um-icon-within .fa-vuejs:before{content:"\f41f"}.um .fa-accusoft:before,.um-icon-within .fa-accusoft:before{content:"\f369"}.um .fa-ioxhost:before,.um-icon-within .fa-ioxhost:before{content:"\f208"}.um .fa-fonticons-fi:before,.um-icon-within .fa-fonticons-fi:before{content:"\f3a2"}.um .fa-app-store:before,.um-icon-within .fa-app-store:before{content:"\f36f"}.um .fa-cc-mastercard:before,.um-icon-within .fa-cc-mastercard:before{content:"\f1f1"}.um .fa-itunes-note:before,.um-icon-within .fa-itunes-note:before{content:"\f3b5"}.um .fa-golang:before,.um-icon-within .fa-golang:before{content:"\e40f"}.um .fa-kickstarter:before,.um-icon-within .fa-kickstarter:before{content:"\f3bb"}.um .fa-square-kickstarter:before,.um-icon-within .fa-square-kickstarter:before{content:"\f3bb"}.um .fa-grav:before,.um-icon-within .fa-grav:before{content:"\f2d6"}.um .fa-weibo:before,.um-icon-within .fa-weibo:before{content:"\f18a"}.um .fa-uncharted:before,.um-icon-within .fa-uncharted:before{content:"\e084"}.um .fa-firstdraft:before,.um-icon-within .fa-firstdraft:before{content:"\f3a1"}.um .fa-square-youtube:before,.um-icon-within .fa-square-youtube:before{content:"\f431"}.um .fa-youtube-square:before,.um-icon-within .fa-youtube-square:before{content:"\f431"}.um .fa-wikipedia-w:before,.um-icon-within .fa-wikipedia-w:before{content:"\f266"}.um .fa-wpressr:before,.um-icon-within .fa-wpressr:before{content:"\f3e4"}.um .fa-rendact:before,.um-icon-within .fa-rendact:before{content:"\f3e4"}.um .fa-angellist:before,.um-icon-within .fa-angellist:before{content:"\f209"}.um .fa-galactic-republic:before,.um-icon-within .fa-galactic-republic:before{content:"\f50c"}.um .fa-nfc-directional:before,.um-icon-within .fa-nfc-directional:before{content:"\e530"}.um .fa-skype:before,.um-icon-within .fa-skype:before{content:"\f17e"}.um .fa-joget:before,.um-icon-within .fa-joget:before{content:"\f3b7"}.um .fa-fedora:before,.um-icon-within .fa-fedora:before{content:"\f798"}.um .fa-stripe-s:before,.um-icon-within .fa-stripe-s:before{content:"\f42a"}.um .fa-meta:before,.um-icon-within .fa-meta:before{content:"\e49b"}.um .fa-laravel:before,.um-icon-within .fa-laravel:before{content:"\f3bd"}.um .fa-hotjar:before,.um-icon-within .fa-hotjar:before{content:"\f3b1"}.um .fa-bluetooth-b:before,.um-icon-within .fa-bluetooth-b:before{content:"\f294"}.um .fa-square-letterboxd:before,.um-icon-within .fa-square-letterboxd:before{content:"\e62e"}.um .fa-sticker-mule:before,.um-icon-within .fa-sticker-mule:before{content:"\f3f7"}.um .fa-creative-commons-zero:before,.um-icon-within .fa-creative-commons-zero:before{content:"\f4f3"}.um .fa-hips:before,.um-icon-within .fa-hips:before{content:"\f452"}.um .fa-behance:before,.um-icon-within .fa-behance:before{content:"\f1b4"}.um .fa-reddit:before,.um-icon-within .fa-reddit:before{content:"\f1a1"}.um .fa-discord:before,.um-icon-within .fa-discord:before{content:"\f392"}.um .fa-chrome:before,.um-icon-within .fa-chrome:before{content:"\f268"}.um .fa-app-store-ios:before,.um-icon-within .fa-app-store-ios:before{content:"\f370"}.um .fa-cc-discover:before,.um-icon-within .fa-cc-discover:before{content:"\f1f2"}.um .fa-wpbeginner:before,.um-icon-within .fa-wpbeginner:before{content:"\f297"}.um .fa-confluence:before,.um-icon-within .fa-confluence:before{content:"\f78d"}.um .fa-shoelace:before,.um-icon-within .fa-shoelace:before{content:"\e60c"}.um .fa-mdb:before,.um-icon-within .fa-mdb:before{content:"\f8ca"}.um .fa-dochub:before,.um-icon-within .fa-dochub:before{content:"\f394"}.um .fa-accessible-icon:before,.um-icon-within .fa-accessible-icon:before{content:"\f368"}.um .fa-ebay:before,.um-icon-within .fa-ebay:before{content:"\f4f4"}.um .fa-amazon:before,.um-icon-within .fa-amazon:before{content:"\f270"}.um .fa-unsplash:before,.um-icon-within .fa-unsplash:before{content:"\e07c"}.um .fa-yarn:before,.um-icon-within .fa-yarn:before{content:"\f7e3"}.um .fa-square-steam:before,.um-icon-within .fa-square-steam:before{content:"\f1b7"}.um .fa-steam-square:before,.um-icon-within .fa-steam-square:before{content:"\f1b7"}.um .fa-500px:before,.um-icon-within .fa-500px:before{content:"\f26e"}.um .fa-square-vimeo:before,.um-icon-within .fa-square-vimeo:before{content:"\f194"}.um .fa-vimeo-square:before,.um-icon-within .fa-vimeo-square:before{content:"\f194"}.um .fa-asymmetrik:before,.um-icon-within .fa-asymmetrik:before{content:"\f372"}.um .fa-font-awesome:before,.um-icon-within .fa-font-awesome:before{content:"\f2b4"}.um .fa-font-awesome-flag:before,.um-icon-within .fa-font-awesome-flag:before{content:"\f2b4"}.um .fa-font-awesome-logo-full:before,.um-icon-within .fa-font-awesome-logo-full:before{content:"\f2b4"}.um .fa-gratipay:before,.um-icon-within .fa-gratipay:before{content:"\f184"}.um .fa-apple:before,.um-icon-within .fa-apple:before{content:"\f179"}.um .fa-hive:before,.um-icon-within .fa-hive:before{content:"\e07f"}.um .fa-gitkraken:before,.um-icon-within .fa-gitkraken:before{content:"\f3a6"}.um .fa-keybase:before,.um-icon-within .fa-keybase:before{content:"\f4f5"}.um .fa-apple-pay:before,.um-icon-within .fa-apple-pay:before{content:"\f415"}.um .fa-padlet:before,.um-icon-within .fa-padlet:before{content:"\e4a0"}.um .fa-amazon-pay:before,.um-icon-within .fa-amazon-pay:before{content:"\f42c"}.um .fa-square-github:before,.um-icon-within .fa-square-github:before{content:"\f092"}.um .fa-github-square:before,.um-icon-within .fa-github-square:before{content:"\f092"}.um .fa-stumbleupon:before,.um-icon-within .fa-stumbleupon:before{content:"\f1a4"}.um .fa-fedex:before,.um-icon-within .fa-fedex:before{content:"\f797"}.um .fa-phoenix-framework:before,.um-icon-within .fa-phoenix-framework:before{content:"\f3dc"}.um .fa-shopify:before,.um-icon-within .fa-shopify:before{content:"\e057"}.um .fa-neos:before,.um-icon-within .fa-neos:before{content:"\f612"}.um .fa-square-threads:before,.um-icon-within .fa-square-threads:before{content:"\e619"}.um .fa-hackerrank:before,.um-icon-within .fa-hackerrank:before{content:"\f5f7"}.um .fa-researchgate:before,.um-icon-within .fa-researchgate:before{content:"\f4f8"}.um .fa-swift:before,.um-icon-within .fa-swift:before{content:"\f8e1"}.um .fa-angular:before,.um-icon-within .fa-angular:before{content:"\f420"}.um .fa-speakap:before,.um-icon-within .fa-speakap:before{content:"\f3f3"}.um .fa-angrycreative:before,.um-icon-within .fa-angrycreative:before{content:"\f36e"}.um .fa-y-combinator:before,.um-icon-within .fa-y-combinator:before{content:"\f23b"}.um .fa-empire:before,.um-icon-within .fa-empire:before{content:"\f1d1"}.um .fa-envira:before,.um-icon-within .fa-envira:before{content:"\f299"}.um .fa-google-scholar:before,.um-icon-within .fa-google-scholar:before{content:"\e63b"}.um .fa-square-gitlab:before,.um-icon-within .fa-square-gitlab:before{content:"\e5ae"}.um .fa-gitlab-square:before,.um-icon-within .fa-gitlab-square:before{content:"\e5ae"}.um .fa-studiovinari:before,.um-icon-within .fa-studiovinari:before{content:"\f3f8"}.um .fa-pied-piper:before,.um-icon-within .fa-pied-piper:before{content:"\f2ae"}.um .fa-wordpress:before,.um-icon-within .fa-wordpress:before{content:"\f19a"}.um .fa-product-hunt:before,.um-icon-within .fa-product-hunt:before{content:"\f288"}.um .fa-firefox:before,.um-icon-within .fa-firefox:before{content:"\f269"}.um .fa-linode:before,.um-icon-within .fa-linode:before{content:"\f2b8"}.um .fa-goodreads:before,.um-icon-within .fa-goodreads:before{content:"\f3a8"}.um .fa-square-odnoklassniki:before,.um-icon-within .fa-square-odnoklassniki:before{content:"\f264"}.um .fa-odnoklassniki-square:before,.um-icon-within .fa-odnoklassniki-square:before{content:"\f264"}.um .fa-jsfiddle:before,.um-icon-within .fa-jsfiddle:before{content:"\f1cc"}.um .fa-sith:before,.um-icon-within .fa-sith:before{content:"\f512"}.um .fa-themeisle:before,.um-icon-within .fa-themeisle:before{content:"\f2b2"}.um .fa-page4:before,.um-icon-within .fa-page4:before{content:"\f3d7"}.um .fa-hashnode:before,.um-icon-within .fa-hashnode:before{content:"\e499"}.um .fa-react:before,.um-icon-within .fa-react:before{content:"\f41b"}.um .fa-cc-paypal:before,.um-icon-within .fa-cc-paypal:before{content:"\f1f4"}.um .fa-squarespace:before,.um-icon-within .fa-squarespace:before{content:"\f5be"}.um .fa-cc-stripe:before,.um-icon-within .fa-cc-stripe:before{content:"\f1f5"}.um .fa-creative-commons-share:before,.um-icon-within .fa-creative-commons-share:before{content:"\f4f2"}.um .fa-bitcoin:before,.um-icon-within .fa-bitcoin:before{content:"\f379"}.um .fa-keycdn:before,.um-icon-within .fa-keycdn:before{content:"\f3ba"}.um .fa-opera:before,.um-icon-within .fa-opera:before{content:"\f26a"}.um .fa-itch-io:before,.um-icon-within .fa-itch-io:before{content:"\f83a"}.um .fa-umbraco:before,.um-icon-within .fa-umbraco:before{content:"\f8e8"}.um .fa-galactic-senate:before,.um-icon-within .fa-galactic-senate:before{content:"\f50d"}.um .fa-ubuntu:before,.um-icon-within .fa-ubuntu:before{content:"\f7df"}.um .fa-draft2digital:before,.um-icon-within .fa-draft2digital:before{content:"\f396"}.um .fa-stripe:before,.um-icon-within .fa-stripe:before{content:"\f429"}.um .fa-houzz:before,.um-icon-within .fa-houzz:before{content:"\f27c"}.um .fa-gg:before,.um-icon-within .fa-gg:before{content:"\f260"}.um .fa-dhl:before,.um-icon-within .fa-dhl:before{content:"\f790"}.um .fa-square-pinterest:before,.um-icon-within .fa-square-pinterest:before{content:"\f0d3"}.um .fa-pinterest-square:before,.um-icon-within .fa-pinterest-square:before{content:"\f0d3"}.um .fa-xing:before,.um-icon-within .fa-xing:before{content:"\f168"}.um .fa-blackberry:before,.um-icon-within .fa-blackberry:before{content:"\f37b"}.um .fa-creative-commons-pd:before,.um-icon-within .fa-creative-commons-pd:before{content:"\f4ec"}.um .fa-playstation:before,.um-icon-within .fa-playstation:before{content:"\f3df"}.um .fa-quinscape:before,.um-icon-within .fa-quinscape:before{content:"\f459"}.um .fa-less:before,.um-icon-within .fa-less:before{content:"\f41d"}.um .fa-blogger-b:before,.um-icon-within .fa-blogger-b:before{content:"\f37d"}.um .fa-opencart:before,.um-icon-within .fa-opencart:before{content:"\f23d"}.um .fa-vine:before,.um-icon-within .fa-vine:before{content:"\f1ca"}.um .fa-signal-messenger:before,.um-icon-within .fa-signal-messenger:before{content:"\e663"}.um .fa-paypal:before,.um-icon-within .fa-paypal:before{content:"\f1ed"}.um .fa-gitlab:before,.um-icon-within .fa-gitlab:before{content:"\f296"}.um .fa-typo3:before,.um-icon-within .fa-typo3:before{content:"\f42b"}.um .fa-reddit-alien:before,.um-icon-within .fa-reddit-alien:before{content:"\f281"}.um .fa-yahoo:before,.um-icon-within .fa-yahoo:before{content:"\f19e"}.um .fa-dailymotion:before,.um-icon-within .fa-dailymotion:before{content:"\e052"}.um .fa-affiliatetheme:before,.um-icon-within .fa-affiliatetheme:before{content:"\f36b"}.um .fa-pied-piper-pp:before,.um-icon-within .fa-pied-piper-pp:before{content:"\f1a7"}.um .fa-bootstrap:before,.um-icon-within .fa-bootstrap:before{content:"\f836"}.um .fa-odnoklassniki:before,.um-icon-within .fa-odnoklassniki:before{content:"\f263"}.um .fa-nfc-symbol:before,.um-icon-within .fa-nfc-symbol:before{content:"\e531"}.um .fa-mintbit:before,.um-icon-within .fa-mintbit:before{content:"\e62f"}.um .fa-ethereum:before,.um-icon-within .fa-ethereum:before{content:"\f42e"}.um .fa-speaker-deck:before,.um-icon-within .fa-speaker-deck:before{content:"\f83c"}.um .fa-creative-commons-nc-eu:before,.um-icon-within .fa-creative-commons-nc-eu:before{content:"\f4e9"}.um .fa-patreon:before,.um-icon-within .fa-patreon:before{content:"\f3d9"}.um .fa-avianex:before,.um-icon-within .fa-avianex:before{content:"\f374"}.um .fa-ello:before,.um-icon-within .fa-ello:before{content:"\f5f1"}.um .fa-gofore:before,.um-icon-within .fa-gofore:before{content:"\f3a7"}.um .fa-bimobject:before,.um-icon-within .fa-bimobject:before{content:"\f378"}.um .fa-brave-reverse:before,.um-icon-within .fa-brave-reverse:before{content:"\e63d"}.um .fa-facebook-f:before,.um-icon-within .fa-facebook-f:before{content:"\f39e"}.um .fa-square-google-plus:before,.um-icon-within .fa-square-google-plus:before{content:"\f0d4"}.um .fa-google-plus-square:before,.um-icon-within .fa-google-plus-square:before{content:"\f0d4"}.um .fa-web-awesome:before,.um-icon-within .fa-web-awesome:before{content:"\e682"}.um .fa-mandalorian:before,.um-icon-within .fa-mandalorian:before{content:"\f50f"}.um .fa-first-order-alt:before,.um-icon-within .fa-first-order-alt:before{content:"\f50a"}.um .fa-osi:before,.um-icon-within .fa-osi:before{content:"\f41a"}.um .fa-google-wallet:before,.um-icon-within .fa-google-wallet:before{content:"\f1ee"}.um .fa-d-and-d-beyond:before,.um-icon-within .fa-d-and-d-beyond:before{content:"\f6ca"}.um .fa-periscope:before,.um-icon-within .fa-periscope:before{content:"\f3da"}.um .fa-fulcrum:before,.um-icon-within .fa-fulcrum:before{content:"\f50b"}.um .fa-cloudscale:before,.um-icon-within .fa-cloudscale:before{content:"\f383"}.um .fa-forumbee:before,.um-icon-within .fa-forumbee:before{content:"\f211"}.um .fa-mizuni:before,.um-icon-within .fa-mizuni:before{content:"\f3cc"}.um .fa-schlix:before,.um-icon-within .fa-schlix:before{content:"\f3ea"}.um .fa-square-xing:before,.um-icon-within .fa-square-xing:before{content:"\f169"}.um .fa-xing-square:before,.um-icon-within .fa-xing-square:before{content:"\f169"}.um .fa-bandcamp:before,.um-icon-within .fa-bandcamp:before{content:"\f2d5"}.um .fa-wpforms:before,.um-icon-within .fa-wpforms:before{content:"\f298"}.um .fa-cloudversify:before,.um-icon-within .fa-cloudversify:before{content:"\f385"}.um .fa-usps:before,.um-icon-within .fa-usps:before{content:"\f7e1"}.um .fa-megaport:before,.um-icon-within .fa-megaport:before{content:"\f5a3"}.um .fa-magento:before,.um-icon-within .fa-magento:before{content:"\f3c4"}.um .fa-spotify:before,.um-icon-within .fa-spotify:before{content:"\f1bc"}.um .fa-optin-monster:before,.um-icon-within .fa-optin-monster:before{content:"\f23c"}.um .fa-fly:before,.um-icon-within .fa-fly:before{content:"\f417"}.um .fa-aviato:before,.um-icon-within .fa-aviato:before{content:"\f421"}.um .fa-itunes:before,.um-icon-within .fa-itunes:before{content:"\f3b4"}.um .fa-cuttlefish:before,.um-icon-within .fa-cuttlefish:before{content:"\f38c"}.um .fa-blogger:before,.um-icon-within .fa-blogger:before{content:"\f37c"}.um .fa-flickr:before,.um-icon-within .fa-flickr:before{content:"\f16e"}.um .fa-viber:before,.um-icon-within .fa-viber:before{content:"\f409"}.um .fa-soundcloud:before,.um-icon-within .fa-soundcloud:before{content:"\f1be"}.um .fa-digg:before,.um-icon-within .fa-digg:before{content:"\f1a6"}.um .fa-tencent-weibo:before,.um-icon-within .fa-tencent-weibo:before{content:"\f1d5"}.um .fa-letterboxd:before,.um-icon-within .fa-letterboxd:before{content:"\e62d"}.um .fa-symfony:before,.um-icon-within .fa-symfony:before{content:"\f83d"}.um .fa-maxcdn:before,.um-icon-within .fa-maxcdn:before{content:"\f136"}.um .fa-etsy:before,.um-icon-within .fa-etsy:before{content:"\f2d7"}.um .fa-facebook-messenger:before,.um-icon-within .fa-facebook-messenger:before{content:"\f39f"}.um .fa-audible:before,.um-icon-within .fa-audible:before{content:"\f373"}.um .fa-think-peaks:before,.um-icon-within .fa-think-peaks:before{content:"\f731"}.um .fa-bilibili:before,.um-icon-within .fa-bilibili:before{content:"\e3d9"}.um .fa-erlang:before,.um-icon-within .fa-erlang:before{content:"\f39d"}.um .fa-x-twitter:before,.um-icon-within .fa-x-twitter:before{content:"\e61b"}.um .fa-cotton-bureau:before,.um-icon-within .fa-cotton-bureau:before{content:"\f89e"}.um .fa-dashcube:before,.um-icon-within .fa-dashcube:before{content:"\f210"}.um .fa-42-group:before,.um-icon-within .fa-42-group:before{content:"\e080"}.um .fa-innosoft:before,.um-icon-within .fa-innosoft:before{content:"\e080"}.um .fa-stack-exchange:before,.um-icon-within .fa-stack-exchange:before{content:"\f18d"}.um .fa-elementor:before,.um-icon-within .fa-elementor:before{content:"\f430"}.um .fa-square-pied-piper:before,.um-icon-within .fa-square-pied-piper:before{content:"\e01e"}.um .fa-pied-piper-square:before,.um-icon-within .fa-pied-piper-square:before{content:"\e01e"}.um .fa-creative-commons-nd:before,.um-icon-within .fa-creative-commons-nd:before{content:"\f4eb"}.um .fa-palfed:before,.um-icon-within .fa-palfed:before{content:"\f3d8"}.um .fa-superpowers:before,.um-icon-within .fa-superpowers:before{content:"\f2dd"}.um .fa-resolving:before,.um-icon-within .fa-resolving:before{content:"\f3e7"}.um .fa-xbox:before,.um-icon-within .fa-xbox:before{content:"\f412"}.um .fa-square-web-awesome-stroke:before,.um-icon-within .fa-square-web-awesome-stroke:before{content:"\e684"}.um .fa-searchengin:before,.um-icon-within .fa-searchengin:before{content:"\f3eb"}.um .fa-tiktok:before,.um-icon-within .fa-tiktok:before{content:"\e07b"}.um .fa-square-facebook:before,.um-icon-within .fa-square-facebook:before{content:"\f082"}.um .fa-facebook-square:before,.um-icon-within .fa-facebook-square:before{content:"\f082"}.um .fa-renren:before,.um-icon-within .fa-renren:before{content:"\f18b"}.um .fa-linux:before,.um-icon-within .fa-linux:before{content:"\f17c"}.um .fa-glide:before,.um-icon-within .fa-glide:before{content:"\f2a5"}.um .fa-linkedin:before,.um-icon-within .fa-linkedin:before{content:"\f08c"}.um .fa-hubspot:before,.um-icon-within .fa-hubspot:before{content:"\f3b2"}.um .fa-deploydog:before,.um-icon-within .fa-deploydog:before{content:"\f38e"}.um .fa-twitch:before,.um-icon-within .fa-twitch:before{content:"\f1e8"}.um .fa-ravelry:before,.um-icon-within .fa-ravelry:before{content:"\f2d9"}.um .fa-mixer:before,.um-icon-within .fa-mixer:before{content:"\e056"}.um .fa-square-lastfm:before,.um-icon-within .fa-square-lastfm:before{content:"\f203"}.um .fa-lastfm-square:before,.um-icon-within .fa-lastfm-square:before{content:"\f203"}.um .fa-vimeo:before,.um-icon-within .fa-vimeo:before{content:"\f40a"}.um .fa-mendeley:before,.um-icon-within .fa-mendeley:before{content:"\f7b3"}.um .fa-uniregistry:before,.um-icon-within .fa-uniregistry:before{content:"\f404"}.um .fa-figma:before,.um-icon-within .fa-figma:before{content:"\f799"}.um .fa-creative-commons-remix:before,.um-icon-within .fa-creative-commons-remix:before{content:"\f4ee"}.um .fa-cc-amazon-pay:before,.um-icon-within .fa-cc-amazon-pay:before{content:"\f42d"}.um .fa-dropbox:before,.um-icon-within .fa-dropbox:before{content:"\f16b"}.um .fa-instagram:before,.um-icon-within .fa-instagram:before{content:"\f16d"}.um .fa-cmplid:before,.um-icon-within .fa-cmplid:before{content:"\e360"}.um .fa-upwork:before,.um-icon-within .fa-upwork:before{content:"\e641"}.um .fa-facebook:before,.um-icon-within .fa-facebook:before{content:"\f09a"}.um .fa-gripfire:before,.um-icon-within .fa-gripfire:before{content:"\f3ac"}.um .fa-jedi-order:before,.um-icon-within .fa-jedi-order:before{content:"\f50e"}.um .fa-uikit:before,.um-icon-within .fa-uikit:before{content:"\f403"}.um .fa-fort-awesome-alt:before,.um-icon-within .fa-fort-awesome-alt:before{content:"\f3a3"}.um .fa-phabricator:before,.um-icon-within .fa-phabricator:before{content:"\f3db"}.um .fa-ussunnah:before,.um-icon-within .fa-ussunnah:before{content:"\f407"}.um .fa-earlybirds:before,.um-icon-within .fa-earlybirds:before{content:"\f39a"}.um .fa-trade-federation:before,.um-icon-within .fa-trade-federation:before{content:"\f513"}.um .fa-autoprefixer:before,.um-icon-within .fa-autoprefixer:before{content:"\f41c"}.um .fa-whatsapp:before,.um-icon-within .fa-whatsapp:before{content:"\f232"}.um .fa-square-upwork:before,.um-icon-within .fa-square-upwork:before{content:"\e67c"}.um .fa-slideshare:before,.um-icon-within .fa-slideshare:before{content:"\f1e7"}.um .fa-google-play:before,.um-icon-within .fa-google-play:before{content:"\f3ab"}.um .fa-viadeo:before,.um-icon-within .fa-viadeo:before{content:"\f2a9"}.um .fa-line:before,.um-icon-within .fa-line:before{content:"\f3c0"}.um .fa-google-drive:before,.um-icon-within .fa-google-drive:before{content:"\f3aa"}.um .fa-servicestack:before,.um-icon-within .fa-servicestack:before{content:"\f3ec"}.um .fa-simplybuilt:before,.um-icon-within .fa-simplybuilt:before{content:"\f215"}.um .fa-bitbucket:before,.um-icon-within .fa-bitbucket:before{content:"\f171"}.um .fa-imdb:before,.um-icon-within .fa-imdb:before{content:"\f2d8"}.um .fa-deezer:before,.um-icon-within .fa-deezer:before{content:"\e077"}.um .fa-raspberry-pi:before,.um-icon-within .fa-raspberry-pi:before{content:"\f7bb"}.um .fa-jira:before,.um-icon-within .fa-jira:before{content:"\f7b1"}.um .fa-docker:before,.um-icon-within .fa-docker:before{content:"\f395"}.um .fa-screenpal:before,.um-icon-within .fa-screenpal:before{content:"\e570"}.um .fa-bluetooth:before,.um-icon-within .fa-bluetooth:before{content:"\f293"}.um .fa-gitter:before,.um-icon-within .fa-gitter:before{content:"\f426"}.um .fa-d-and-d:before,.um-icon-within .fa-d-and-d:before{content:"\f38d"}.um .fa-microblog:before,.um-icon-within .fa-microblog:before{content:"\e01a"}.um .fa-cc-diners-club:before,.um-icon-within .fa-cc-diners-club:before{content:"\f24c"}.um .fa-gg-circle:before,.um-icon-within .fa-gg-circle:before{content:"\f261"}.um .fa-pied-piper-hat:before,.um-icon-within .fa-pied-piper-hat:before{content:"\f4e5"}.um .fa-kickstarter-k:before,.um-icon-within .fa-kickstarter-k:before{content:"\f3bc"}.um .fa-yandex:before,.um-icon-within .fa-yandex:before{content:"\f413"}.um .fa-readme:before,.um-icon-within .fa-readme:before{content:"\f4d5"}.um .fa-html5:before,.um-icon-within .fa-html5:before{content:"\f13b"}.um .fa-sellsy:before,.um-icon-within .fa-sellsy:before{content:"\f213"}.um .fa-square-web-awesome:before,.um-icon-within .fa-square-web-awesome:before{content:"\e683"}.um .fa-sass:before,.um-icon-within .fa-sass:before{content:"\f41e"}.um .fa-wirsindhandwerk:before,.um-icon-within .fa-wirsindhandwerk:before{content:"\e2d0"}.um .fa-wsh:before,.um-icon-within .fa-wsh:before{content:"\e2d0"}.um .fa-buromobelexperte:before,.um-icon-within .fa-buromobelexperte:before{content:"\f37f"}.um .fa-salesforce:before,.um-icon-within .fa-salesforce:before{content:"\f83b"}.um .fa-octopus-deploy:before,.um-icon-within .fa-octopus-deploy:before{content:"\e082"}.um .fa-medapps:before,.um-icon-within .fa-medapps:before{content:"\f3c6"}.um .fa-ns8:before,.um-icon-within .fa-ns8:before{content:"\f3d5"}.um .fa-pinterest-p:before,.um-icon-within .fa-pinterest-p:before{content:"\f231"}.um .fa-apper:before,.um-icon-within .fa-apper:before{content:"\f371"}.um .fa-fort-awesome:before,.um-icon-within .fa-fort-awesome:before{content:"\f286"}.um .fa-waze:before,.um-icon-within .fa-waze:before{content:"\f83f"}.um .fa-bluesky:before,.um-icon-within .fa-bluesky:before{content:"\e671"}.um .fa-cc-jcb:before,.um-icon-within .fa-cc-jcb:before{content:"\f24b"}.um .fa-snapchat:before,.um-icon-within .fa-snapchat:before{content:"\f2ab"}.um .fa-snapchat-ghost:before,.um-icon-within .fa-snapchat-ghost:before{content:"\f2ab"}.um .fa-fantasy-flight-games:before,.um-icon-within .fa-fantasy-flight-games:before{content:"\f6dc"}.um .fa-rust:before,.um-icon-within .fa-rust:before{content:"\e07a"}.um .fa-wix:before,.um-icon-within .fa-wix:before{content:"\f5cf"}.um .fa-square-behance:before,.um-icon-within .fa-square-behance:before{content:"\f1b5"}.um .fa-behance-square:before,.um-icon-within .fa-behance-square:before{content:"\f1b5"}.um .fa-supple:before,.um-icon-within .fa-supple:before{content:"\f3f9"}.um .fa-webflow:before,.um-icon-within .fa-webflow:before{content:"\e65c"}.um .fa-rebel:before,.um-icon-within .fa-rebel:before{content:"\f1d0"}.um .fa-css3:before,.um-icon-within .fa-css3:before{content:"\f13c"}.um .fa-staylinked:before,.um-icon-within .fa-staylinked:before{content:"\f3f5"}.um .fa-kaggle:before,.um-icon-within .fa-kaggle:before{content:"\f5fa"}.um .fa-space-awesome:before,.um-icon-within .fa-space-awesome:before{content:"\e5ac"}.um .fa-deviantart:before,.um-icon-within .fa-deviantart:before{content:"\f1bd"}.um .fa-cpanel:before,.um-icon-within .fa-cpanel:before{content:"\f388"}.um .fa-goodreads-g:before,.um-icon-within .fa-goodreads-g:before{content:"\f3a9"}.um .fa-square-git:before,.um-icon-within .fa-square-git:before{content:"\f1d2"}.um .fa-git-square:before,.um-icon-within .fa-git-square:before{content:"\f1d2"}.um .fa-square-tumblr:before,.um-icon-within .fa-square-tumblr:before{content:"\f174"}.um .fa-tumblr-square:before,.um-icon-within .fa-tumblr-square:before{content:"\f174"}.um .fa-trello:before,.um-icon-within .fa-trello:before{content:"\f181"}.um .fa-creative-commons-nc-jp:before,.um-icon-within .fa-creative-commons-nc-jp:before{content:"\f4ea"}.um .fa-get-pocket:before,.um-icon-within .fa-get-pocket:before{content:"\f265"}.um .fa-perbyte:before,.um-icon-within .fa-perbyte:before{content:"\e083"}.um .fa-grunt:before,.um-icon-within .fa-grunt:before{content:"\f3ad"}.um .fa-weebly:before,.um-icon-within .fa-weebly:before{content:"\f5cc"}.um .fa-connectdevelop:before,.um-icon-within .fa-connectdevelop:before{content:"\f20e"}.um .fa-leanpub:before,.um-icon-within .fa-leanpub:before{content:"\f212"}.um .fa-black-tie:before,.um-icon-within .fa-black-tie:before{content:"\f27e"}.um .fa-themeco:before,.um-icon-within .fa-themeco:before{content:"\f5c6"}.um .fa-python:before,.um-icon-within .fa-python:before{content:"\f3e2"}.um .fa-android:before,.um-icon-within .fa-android:before{content:"\f17b"}.um .fa-bots:before,.um-icon-within .fa-bots:before{content:"\e340"}.um .fa-free-code-camp:before,.um-icon-within .fa-free-code-camp:before{content:"\f2c5"}.um .fa-hornbill:before,.um-icon-within .fa-hornbill:before{content:"\f592"}.um .fa-js:before,.um-icon-within .fa-js:before{content:"\f3b8"}.um .fa-ideal:before,.um-icon-within .fa-ideal:before{content:"\e013"}.um .fa-git:before,.um-icon-within .fa-git:before{content:"\f1d3"}.um .fa-dev:before,.um-icon-within .fa-dev:before{content:"\f6cc"}.um .fa-sketch:before,.um-icon-within .fa-sketch:before{content:"\f7c6"}.um .fa-yandex-international:before,.um-icon-within .fa-yandex-international:before{content:"\f414"}.um .fa-cc-amex:before,.um-icon-within .fa-cc-amex:before{content:"\f1f3"}.um .fa-uber:before,.um-icon-within .fa-uber:before{content:"\f402"}.um .fa-github:before,.um-icon-within .fa-github:before{content:"\f09b"}.um .fa-php:before,.um-icon-within .fa-php:before{content:"\f457"}.um .fa-alipay:before,.um-icon-within .fa-alipay:before{content:"\f642"}.um .fa-youtube:before,.um-icon-within .fa-youtube:before{content:"\f167"}.um .fa-skyatlas:before,.um-icon-within .fa-skyatlas:before{content:"\f216"}.um .fa-firefox-browser:before,.um-icon-within .fa-firefox-browser:before{content:"\e007"}.um .fa-replyd:before,.um-icon-within .fa-replyd:before{content:"\f3e6"}.um .fa-suse:before,.um-icon-within .fa-suse:before{content:"\f7d6"}.um .fa-jenkins:before,.um-icon-within .fa-jenkins:before{content:"\f3b6"}.um .fa-twitter:before,.um-icon-within .fa-twitter:before{content:"\f099"}.um .fa-rockrms:before,.um-icon-within .fa-rockrms:before{content:"\f3e9"}.um .fa-pinterest:before,.um-icon-within .fa-pinterest:before{content:"\f0d2"}.um .fa-buffer:before,.um-icon-within .fa-buffer:before{content:"\f837"}.um .fa-npm:before,.um-icon-within .fa-npm:before{content:"\f3d4"}.um .fa-yammer:before,.um-icon-within .fa-yammer:before{content:"\f840"}.um .fa-btc:before,.um-icon-within .fa-btc:before{content:"\f15a"}.um .fa-dribbble:before,.um-icon-within .fa-dribbble:before{content:"\f17d"}.um .fa-stumbleupon-circle:before,.um-icon-within .fa-stumbleupon-circle:before{content:"\f1a3"}.um .fa-internet-explorer:before,.um-icon-within .fa-internet-explorer:before{content:"\f26b"}.um .fa-stubber:before,.um-icon-within .fa-stubber:before{content:"\e5c7"}.um .fa-telegram:before,.um-icon-within .fa-telegram:before{content:"\f2c6"}.um .fa-telegram-plane:before,.um-icon-within .fa-telegram-plane:before{content:"\f2c6"}.um .fa-old-republic:before,.um-icon-within .fa-old-republic:before{content:"\f510"}.um .fa-odysee:before,.um-icon-within .fa-odysee:before{content:"\e5c6"}.um .fa-square-whatsapp:before,.um-icon-within .fa-square-whatsapp:before{content:"\f40c"}.um .fa-whatsapp-square:before,.um-icon-within .fa-whatsapp-square:before{content:"\f40c"}.um .fa-node-js:before,.um-icon-within .fa-node-js:before{content:"\f3d3"}.um .fa-edge-legacy:before,.um-icon-within .fa-edge-legacy:before{content:"\e078"}.um .fa-slack:before,.um-icon-within .fa-slack:before{content:"\f198"}.um .fa-slack-hash:before,.um-icon-within .fa-slack-hash:before{content:"\f198"}.um .fa-medrt:before,.um-icon-within .fa-medrt:before{content:"\f3c8"}.um .fa-usb:before,.um-icon-within .fa-usb:before{content:"\f287"}.um .fa-tumblr:before,.um-icon-within .fa-tumblr:before{content:"\f173"}.um .fa-vaadin:before,.um-icon-within .fa-vaadin:before{content:"\f408"}.um .fa-quora:before,.um-icon-within .fa-quora:before{content:"\f2c4"}.um .fa-square-x-twitter:before,.um-icon-within .fa-square-x-twitter:before{content:"\e61a"}.um .fa-reacteurope:before,.um-icon-within .fa-reacteurope:before{content:"\f75d"}.um .fa-medium:before,.um-icon-within .fa-medium:before{content:"\f23a"}.um .fa-medium-m:before,.um-icon-within .fa-medium-m:before{content:"\f23a"}.um .fa-amilia:before,.um-icon-within .fa-amilia:before{content:"\f36d"}.um .fa-mixcloud:before,.um-icon-within .fa-mixcloud:before{content:"\f289"}.um .fa-flipboard:before,.um-icon-within .fa-flipboard:before{content:"\f44d"}.um .fa-viacoin:before,.um-icon-within .fa-viacoin:before{content:"\f237"}.um .fa-critical-role:before,.um-icon-within .fa-critical-role:before{content:"\f6c9"}.um .fa-sitrox:before,.um-icon-within .fa-sitrox:before{content:"\e44a"}.um .fa-discourse:before,.um-icon-within .fa-discourse:before{content:"\f393"}.um .fa-joomla:before,.um-icon-within .fa-joomla:before{content:"\f1aa"}.um .fa-mastodon:before,.um-icon-within .fa-mastodon:before{content:"\f4f6"}.um .fa-airbnb:before,.um-icon-within .fa-airbnb:before{content:"\f834"}.um .fa-wolf-pack-battalion:before,.um-icon-within .fa-wolf-pack-battalion:before{content:"\f514"}.um .fa-buy-n-large:before,.um-icon-within .fa-buy-n-large:before{content:"\f8a6"}.um .fa-gulp:before,.um-icon-within .fa-gulp:before{content:"\f3ae"}.um .fa-creative-commons-sampling-plus:before,.um-icon-within .fa-creative-commons-sampling-plus:before{content:"\f4f1"}.um .fa-strava:before,.um-icon-within .fa-strava:before{content:"\f428"}.um .fa-ember:before,.um-icon-within .fa-ember:before{content:"\f423"}.um .fa-canadian-maple-leaf:before,.um-icon-within .fa-canadian-maple-leaf:before{content:"\f785"}.um .fa-teamspeak:before,.um-icon-within .fa-teamspeak:before{content:"\f4f9"}.um .fa-pushed:before,.um-icon-within .fa-pushed:before{content:"\f3e1"}.um .fa-wordpress-simple:before,.um-icon-within .fa-wordpress-simple:before{content:"\f411"}.um .fa-nutritionix:before,.um-icon-within .fa-nutritionix:before{content:"\f3d6"}.um .fa-wodu:before,.um-icon-within .fa-wodu:before{content:"\e088"}.um .fa-google-pay:before,.um-icon-within .fa-google-pay:before{content:"\e079"}.um .fa-intercom:before,.um-icon-within .fa-intercom:before{content:"\f7af"}.um .fa-zhihu:before,.um-icon-within .fa-zhihu:before{content:"\f63f"}.um .fa-korvue:before,.um-icon-within .fa-korvue:before{content:"\f42f"}.um .fa-pix:before,.um-icon-within .fa-pix:before{content:"\e43a"}.um .fa-steam-symbol:before,.um-icon-within .fa-steam-symbol:before{content:"\f3f6"}.um :host,.um :root,.um-icon-within :host,.um-icon-within :root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../libs/fontawesome/webfonts/fa-regular-400.woff2) format("woff2"),url(../libs/fontawesome/webfonts/fa-regular-400.ttf) format("truetype")}.um .fa-regular,.um .far,.um-icon-within .fa-regular,.um-icon-within .far{font-weight:400}.um :host,.um :root,.um-icon-within :host,.um-icon-within :root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../libs/fontawesome/webfonts/fa-solid-900.woff2) format("woff2"),url(../libs/fontawesome/webfonts/fa-solid-900.ttf) format("truetype")}.um .fa-solid,.um .fas,.um-icon-within .fa-solid,.um-icon-within .fas{font-weight:900}.um .fa.fa-glass:before,.um-icon-within .fa.fa-glass:before{content:"\f000"}.um .fa.fa-envelope-o,.um-icon-within .fa.fa-envelope-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-envelope-o:before,.um-icon-within .fa.fa-envelope-o:before{content:"\f0e0"}.um .fa.fa-star-o,.um-icon-within .fa.fa-star-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-o:before,.um-icon-within .fa.fa-star-o:before{content:"\f005"}.um .fa.fa-remove:before,.um-icon-within .fa.fa-remove:before{content:"\f00d"}.um .fa.fa-close:before,.um-icon-within .fa.fa-close:before{content:"\f00d"}.um .fa.fa-gear:before,.um-icon-within .fa.fa-gear:before{content:"\f013"}.um .fa.fa-trash-o,.um-icon-within .fa.fa-trash-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-trash-o:before,.um-icon-within .fa.fa-trash-o:before{content:"\f2ed"}.um .fa.fa-home:before,.um-icon-within .fa.fa-home:before{content:"\f015"}.um .fa.fa-file-o,.um-icon-within .fa.fa-file-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-o:before,.um-icon-within .fa.fa-file-o:before{content:"\f15b"}.um .fa.fa-clock-o,.um-icon-within .fa.fa-clock-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-clock-o:before,.um-icon-within .fa.fa-clock-o:before{content:"\f017"}.um .fa.fa-arrow-circle-o-down,.um-icon-within .fa.fa-arrow-circle-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-down:before,.um-icon-within .fa.fa-arrow-circle-o-down:before{content:"\f358"}.um .fa.fa-arrow-circle-o-up,.um-icon-within .fa.fa-arrow-circle-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-up:before,.um-icon-within .fa.fa-arrow-circle-o-up:before{content:"\f35b"}.um .fa.fa-play-circle-o,.um-icon-within .fa.fa-play-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-play-circle-o:before,.um-icon-within .fa.fa-play-circle-o:before{content:"\f144"}.um .fa.fa-repeat:before,.um-icon-within .fa.fa-repeat:before{content:"\f01e"}.um .fa.fa-rotate-right:before,.um-icon-within .fa.fa-rotate-right:before{content:"\f01e"}.um .fa.fa-refresh:before,.um-icon-within .fa.fa-refresh:before{content:"\f021"}.um .fa.fa-list-alt,.um-icon-within .fa.fa-list-alt{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-list-alt:before,.um-icon-within .fa.fa-list-alt:before{content:"\f022"}.um .fa.fa-dedent:before,.um-icon-within .fa.fa-dedent:before{content:"\f03b"}.um .fa.fa-video-camera:before,.um-icon-within .fa.fa-video-camera:before{content:"\f03d"}.um .fa.fa-picture-o,.um-icon-within .fa.fa-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-picture-o:before,.um-icon-within .fa.fa-picture-o:before{content:"\f03e"}.um .fa.fa-photo,.um-icon-within .fa.fa-photo{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-photo:before,.um-icon-within .fa.fa-photo:before{content:"\f03e"}.um .fa.fa-image,.um-icon-within .fa.fa-image{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-image:before,.um-icon-within .fa.fa-image:before{content:"\f03e"}.um .fa.fa-map-marker:before,.um-icon-within .fa.fa-map-marker:before{content:"\f3c5"}.um .fa.fa-pencil-square-o,.um-icon-within .fa.fa-pencil-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-pencil-square-o:before,.um-icon-within .fa.fa-pencil-square-o:before{content:"\f044"}.um .fa.fa-edit,.um-icon-within .fa.fa-edit{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-edit:before,.um-icon-within .fa.fa-edit:before{content:"\f044"}.um .fa.fa-share-square-o:before,.um-icon-within .fa.fa-share-square-o:before{content:"\f14d"}.um .fa.fa-check-square-o,.um-icon-within .fa.fa-check-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-check-square-o:before,.um-icon-within .fa.fa-check-square-o:before{content:"\f14a"}.um .fa.fa-arrows:before,.um-icon-within .fa.fa-arrows:before{content:"\f0b2"}.um .fa.fa-times-circle-o,.um-icon-within .fa.fa-times-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-times-circle-o:before,.um-icon-within .fa.fa-times-circle-o:before{content:"\f057"}.um .fa.fa-check-circle-o,.um-icon-within .fa.fa-check-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-check-circle-o:before,.um-icon-within .fa.fa-check-circle-o:before{content:"\f058"}.um .fa.fa-mail-forward:before,.um-icon-within .fa.fa-mail-forward:before{content:"\f064"}.um .fa.fa-expand:before,.um-icon-within .fa.fa-expand:before{content:"\f424"}.um .fa.fa-compress:before,.um-icon-within .fa.fa-compress:before{content:"\f422"}.um .fa.fa-eye,.um-icon-within .fa.fa-eye{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-eye-slash,.um-icon-within .fa.fa-eye-slash{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-warning:before,.um-icon-within .fa.fa-warning:before{content:"\f071"}.um .fa.fa-calendar:before,.um-icon-within .fa.fa-calendar:before{content:"\f073"}.um .fa.fa-arrows-v:before,.um-icon-within .fa.fa-arrows-v:before{content:"\f338"}.um .fa.fa-arrows-h:before,.um-icon-within .fa.fa-arrows-h:before{content:"\f337"}.um .fa.fa-bar-chart:before,.um-icon-within .fa.fa-bar-chart:before{content:"\e0e3"}.um .fa.fa-bar-chart-o:before,.um-icon-within .fa.fa-bar-chart-o:before{content:"\e0e3"}.um .fa.fa-twitter-square,.um-icon-within .fa.fa-twitter-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-twitter-square:before,.um-icon-within .fa.fa-twitter-square:before{content:"\f081"}.um .fa.fa-facebook-square,.um-icon-within .fa.fa-facebook-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook-square:before,.um-icon-within .fa.fa-facebook-square:before{content:"\f082"}.um .fa.fa-gears:before,.um-icon-within .fa.fa-gears:before{content:"\f085"}.um .fa.fa-thumbs-o-up,.um-icon-within .fa.fa-thumbs-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-thumbs-o-up:before,.um-icon-within .fa.fa-thumbs-o-up:before{content:"\f164"}.um .fa.fa-thumbs-o-down,.um-icon-within .fa.fa-thumbs-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-thumbs-o-down:before,.um-icon-within .fa.fa-thumbs-o-down:before{content:"\f165"}.um .fa.fa-heart-o,.um-icon-within .fa.fa-heart-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-heart-o:before,.um-icon-within .fa.fa-heart-o:before{content:"\f004"}.um .fa.fa-sign-out:before,.um-icon-within .fa.fa-sign-out:before{content:"\f2f5"}.um .fa.fa-linkedin-square,.um-icon-within .fa.fa-linkedin-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-linkedin-square:before,.um-icon-within .fa.fa-linkedin-square:before{content:"\f08c"}.um .fa.fa-thumb-tack:before,.um-icon-within .fa.fa-thumb-tack:before{content:"\f08d"}.um .fa.fa-external-link:before,.um-icon-within .fa.fa-external-link:before{content:"\f35d"}.um .fa.fa-sign-in:before,.um-icon-within .fa.fa-sign-in:before{content:"\f2f6"}.um .fa.fa-github-square,.um-icon-within .fa.fa-github-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-github-square:before,.um-icon-within .fa.fa-github-square:before{content:"\f092"}.um .fa.fa-lemon-o,.um-icon-within .fa.fa-lemon-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-lemon-o:before,.um-icon-within .fa.fa-lemon-o:before{content:"\f094"}.um .fa.fa-square-o,.um-icon-within .fa.fa-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-square-o:before,.um-icon-within .fa.fa-square-o:before{content:"\f0c8"}.um .fa.fa-bookmark-o,.um-icon-within .fa.fa-bookmark-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-bookmark-o:before,.um-icon-within .fa.fa-bookmark-o:before{content:"\f02e"}.um .fa.fa-twitter,.um-icon-within .fa.fa-twitter{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook,.um-icon-within .fa.fa-facebook{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook:before,.um-icon-within .fa.fa-facebook:before{content:"\f39e"}.um .fa.fa-facebook-f,.um-icon-within .fa.fa-facebook-f{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook-f:before,.um-icon-within .fa.fa-facebook-f:before{content:"\f39e"}.um .fa.fa-github,.um-icon-within .fa.fa-github{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-credit-card,.um-icon-within .fa.fa-credit-card{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-feed:before,.um-icon-within .fa.fa-feed:before{content:"\f09e"}.um .fa.fa-hdd-o,.um-icon-within .fa.fa-hdd-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hdd-o:before,.um-icon-within .fa.fa-hdd-o:before{content:"\f0a0"}.um .fa.fa-hand-o-right,.um-icon-within .fa.fa-hand-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-right:before,.um-icon-within .fa.fa-hand-o-right:before{content:"\f0a4"}.um .fa.fa-hand-o-left,.um-icon-within .fa.fa-hand-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-left:before,.um-icon-within .fa.fa-hand-o-left:before{content:"\f0a5"}.um .fa.fa-hand-o-up,.um-icon-within .fa.fa-hand-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-up:before,.um-icon-within .fa.fa-hand-o-up:before{content:"\f0a6"}.um .fa.fa-hand-o-down,.um-icon-within .fa.fa-hand-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-o-down:before,.um-icon-within .fa.fa-hand-o-down:before{content:"\f0a7"}.um .fa.fa-globe:before,.um-icon-within .fa.fa-globe:before{content:"\f57d"}.um .fa.fa-tasks:before,.um-icon-within .fa.fa-tasks:before{content:"\f828"}.um .fa.fa-arrows-alt:before,.um-icon-within .fa.fa-arrows-alt:before{content:"\f31e"}.um .fa.fa-group:before,.um-icon-within .fa.fa-group:before{content:"\f0c0"}.um .fa.fa-chain:before,.um-icon-within .fa.fa-chain:before{content:"\f0c1"}.um .fa.fa-cut:before,.um-icon-within .fa.fa-cut:before{content:"\f0c4"}.um .fa.fa-files-o,.um-icon-within .fa.fa-files-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-files-o:before,.um-icon-within .fa.fa-files-o:before{content:"\f0c5"}.um .fa.fa-floppy-o,.um-icon-within .fa.fa-floppy-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-floppy-o:before,.um-icon-within .fa.fa-floppy-o:before{content:"\f0c7"}.um .fa.fa-save,.um-icon-within .fa.fa-save{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-save:before,.um-icon-within .fa.fa-save:before{content:"\f0c7"}.um .fa.fa-navicon:before,.um-icon-within .fa.fa-navicon:before{content:"\f0c9"}.um .fa.fa-reorder:before,.um-icon-within .fa.fa-reorder:before{content:"\f0c9"}.um .fa.fa-magic:before,.um-icon-within .fa.fa-magic:before{content:"\e2ca"}.um .fa.fa-pinterest,.um-icon-within .fa.fa-pinterest{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pinterest-square,.um-icon-within .fa.fa-pinterest-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pinterest-square:before,.um-icon-within .fa.fa-pinterest-square:before{content:"\f0d3"}.um .fa.fa-google-plus-square,.um-icon-within .fa.fa-google-plus-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-square:before,.um-icon-within .fa.fa-google-plus-square:before{content:"\f0d4"}.um .fa.fa-google-plus,.um-icon-within .fa.fa-google-plus{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus:before,.um-icon-within .fa.fa-google-plus:before{content:"\f0d5"}.um .fa.fa-money:before,.um-icon-within .fa.fa-money:before{content:"\f3d1"}.um .fa.fa-unsorted:before,.um-icon-within .fa.fa-unsorted:before{content:"\f0dc"}.um .fa.fa-sort-desc:before,.um-icon-within .fa.fa-sort-desc:before{content:"\f0dd"}.um .fa.fa-sort-asc:before,.um-icon-within .fa.fa-sort-asc:before{content:"\f0de"}.um .fa.fa-linkedin,.um-icon-within .fa.fa-linkedin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-linkedin:before,.um-icon-within .fa.fa-linkedin:before{content:"\f0e1"}.um .fa.fa-rotate-left:before,.um-icon-within .fa.fa-rotate-left:before{content:"\f0e2"}.um .fa.fa-legal:before,.um-icon-within .fa.fa-legal:before{content:"\f0e3"}.um .fa.fa-tachometer:before,.um-icon-within .fa.fa-tachometer:before{content:"\f625"}.um .fa.fa-dashboard:before,.um-icon-within .fa.fa-dashboard:before{content:"\f625"}.um .fa.fa-comment-o,.um-icon-within .fa.fa-comment-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-comment-o:before,.um-icon-within .fa.fa-comment-o:before{content:"\f075"}.um .fa.fa-comments-o,.um-icon-within .fa.fa-comments-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-comments-o:before,.um-icon-within .fa.fa-comments-o:before{content:"\f086"}.um .fa.fa-flash:before,.um-icon-within .fa.fa-flash:before{content:"\f0e7"}.um .fa.fa-clipboard:before,.um-icon-within .fa.fa-clipboard:before{content:"\f0ea"}.um .fa.fa-lightbulb-o,.um-icon-within .fa.fa-lightbulb-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-lightbulb-o:before,.um-icon-within .fa.fa-lightbulb-o:before{content:"\f0eb"}.um .fa.fa-exchange:before,.um-icon-within .fa.fa-exchange:before{content:"\f362"}.um .fa.fa-cloud-download:before,.um-icon-within .fa.fa-cloud-download:before{content:"\f0ed"}.um .fa.fa-cloud-upload:before,.um-icon-within .fa.fa-cloud-upload:before{content:"\f0ee"}.um .fa.fa-bell-o,.um-icon-within .fa.fa-bell-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-bell-o:before,.um-icon-within .fa.fa-bell-o:before{content:"\f0f3"}.um .fa.fa-cutlery:before,.um-icon-within .fa.fa-cutlery:before{content:"\f2e7"}.um .fa.fa-file-text-o,.um-icon-within .fa.fa-file-text-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-text-o:before,.um-icon-within .fa.fa-file-text-o:before{content:"\f15c"}.um .fa.fa-building-o,.um-icon-within .fa.fa-building-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-building-o:before,.um-icon-within .fa.fa-building-o:before{content:"\f1ad"}.um .fa.fa-hospital-o,.um-icon-within .fa.fa-hospital-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hospital-o:before,.um-icon-within .fa.fa-hospital-o:before{content:"\f0f8"}.um .fa.fa-tablet:before,.um-icon-within .fa.fa-tablet:before{content:"\f3fa"}.um .fa.fa-mobile:before,.um-icon-within .fa.fa-mobile:before{content:"\f3cd"}.um .fa.fa-mobile-phone:before,.um-icon-within .fa.fa-mobile-phone:before{content:"\f3cd"}.um .fa.fa-circle-o,.um-icon-within .fa.fa-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-circle-o:before,.um-icon-within .fa.fa-circle-o:before{content:"\f111"}.um .fa.fa-mail-reply:before,.um-icon-within .fa.fa-mail-reply:before{content:"\f3e5"}.um .fa.fa-github-alt,.um-icon-within .fa.fa-github-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-folder-o,.um-icon-within .fa.fa-folder-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-folder-o:before,.um-icon-within .fa.fa-folder-o:before{content:"\f07b"}.um .fa.fa-folder-open-o,.um-icon-within .fa.fa-folder-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-folder-open-o:before,.um-icon-within .fa.fa-folder-open-o:before{content:"\f07c"}.um .fa.fa-smile-o,.um-icon-within .fa.fa-smile-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-smile-o:before,.um-icon-within .fa.fa-smile-o:before{content:"\f118"}.um .fa.fa-frown-o,.um-icon-within .fa.fa-frown-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-frown-o:before,.um-icon-within .fa.fa-frown-o:before{content:"\f119"}.um .fa.fa-meh-o,.um-icon-within .fa.fa-meh-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-meh-o:before,.um-icon-within .fa.fa-meh-o:before{content:"\f11a"}.um .fa.fa-keyboard-o,.um-icon-within .fa.fa-keyboard-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-keyboard-o:before,.um-icon-within .fa.fa-keyboard-o:before{content:"\f11c"}.um .fa.fa-flag-o,.um-icon-within .fa.fa-flag-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-flag-o:before,.um-icon-within .fa.fa-flag-o:before{content:"\f024"}.um .fa.fa-mail-reply-all:before,.um-icon-within .fa.fa-mail-reply-all:before{content:"\f122"}.um .fa.fa-star-half-o,.um-icon-within .fa.fa-star-half-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-half-o:before,.um-icon-within .fa.fa-star-half-o:before{content:"\f5c0"}.um .fa.fa-star-half-empty,.um-icon-within .fa.fa-star-half-empty{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-half-empty:before,.um-icon-within .fa.fa-star-half-empty:before{content:"\f5c0"}.um .fa.fa-star-half-full,.um-icon-within .fa.fa-star-half-full{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-star-half-full:before,.um-icon-within .fa.fa-star-half-full:before{content:"\f5c0"}.um .fa.fa-code-fork:before,.um-icon-within .fa.fa-code-fork:before{content:"\f126"}.um .fa.fa-chain-broken:before,.um-icon-within .fa.fa-chain-broken:before{content:"\f127"}.um .fa.fa-unlink:before,.um-icon-within .fa.fa-unlink:before{content:"\f127"}.um .fa.fa-calendar-o,.um-icon-within .fa.fa-calendar-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-o:before,.um-icon-within .fa.fa-calendar-o:before{content:"\f133"}.um .fa.fa-maxcdn,.um-icon-within .fa.fa-maxcdn{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-html5,.um-icon-within .fa.fa-html5{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-css3,.um-icon-within .fa.fa-css3{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-unlock-alt:before,.um-icon-within .fa.fa-unlock-alt:before{content:"\f09c"}.um .fa.fa-minus-square-o,.um-icon-within .fa.fa-minus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-minus-square-o:before,.um-icon-within .fa.fa-minus-square-o:before{content:"\f146"}.um .fa.fa-level-up:before,.um-icon-within .fa.fa-level-up:before{content:"\f3bf"}.um .fa.fa-level-down:before,.um-icon-within .fa.fa-level-down:before{content:"\f3be"}.um .fa.fa-pencil-square:before,.um-icon-within .fa.fa-pencil-square:before{content:"\f14b"}.um .fa.fa-external-link-square:before,.um-icon-within .fa.fa-external-link-square:before{content:"\f360"}.um .fa.fa-compass,.um-icon-within .fa.fa-compass{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-down,.um-icon-within .fa.fa-caret-square-o-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-down:before,.um-icon-within .fa.fa-caret-square-o-down:before{content:"\f150"}.um .fa.fa-toggle-down,.um-icon-within .fa.fa-toggle-down{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-down:before,.um-icon-within .fa.fa-toggle-down:before{content:"\f150"}.um .fa.fa-caret-square-o-up,.um-icon-within .fa.fa-caret-square-o-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-up:before,.um-icon-within .fa.fa-caret-square-o-up:before{content:"\f151"}.um .fa.fa-toggle-up,.um-icon-within .fa.fa-toggle-up{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-up:before,.um-icon-within .fa.fa-toggle-up:before{content:"\f151"}.um .fa.fa-caret-square-o-right,.um-icon-within .fa.fa-caret-square-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-right:before,.um-icon-within .fa.fa-caret-square-o-right:before{content:"\f152"}.um .fa.fa-toggle-right,.um-icon-within .fa.fa-toggle-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-right:before,.um-icon-within .fa.fa-toggle-right:before{content:"\f152"}.um .fa.fa-eur:before,.um-icon-within .fa.fa-eur:before{content:"\f153"}.um .fa.fa-euro:before,.um-icon-within .fa.fa-euro:before{content:"\f153"}.um .fa.fa-gbp:before,.um-icon-within .fa.fa-gbp:before{content:"\f154"}.um .fa.fa-usd:before,.um-icon-within .fa.fa-usd:before{content:"\$"}.um .fa.fa-dollar:before,.um-icon-within .fa.fa-dollar:before{content:"\$"}.um .fa.fa-inr:before,.um-icon-within .fa.fa-inr:before{content:"\e1bc"}.um .fa.fa-rupee:before,.um-icon-within .fa.fa-rupee:before{content:"\e1bc"}.um .fa.fa-jpy:before,.um-icon-within .fa.fa-jpy:before{content:"\f157"}.um .fa.fa-cny:before,.um-icon-within .fa.fa-cny:before{content:"\f157"}.um .fa.fa-rmb:before,.um-icon-within .fa.fa-rmb:before{content:"\f157"}.um .fa.fa-yen:before,.um-icon-within .fa.fa-yen:before{content:"\f157"}.um .fa.fa-rub:before,.um-icon-within .fa.fa-rub:before{content:"\f158"}.um .fa.fa-ruble:before,.um-icon-within .fa.fa-ruble:before{content:"\f158"}.um .fa.fa-rouble:before,.um-icon-within .fa.fa-rouble:before{content:"\f158"}.um .fa.fa-krw:before,.um-icon-within .fa.fa-krw:before{content:"\f159"}.um .fa.fa-won:before,.um-icon-within .fa.fa-won:before{content:"\f159"}.um .fa.fa-btc,.um-icon-within .fa.fa-btc{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitcoin,.um-icon-within .fa.fa-bitcoin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitcoin:before,.um-icon-within .fa.fa-bitcoin:before{content:"\f15a"}.um .fa.fa-file-text:before,.um-icon-within .fa.fa-file-text:before{content:"\f15c"}.um .fa.fa-sort-alpha-asc:before,.um-icon-within .fa.fa-sort-alpha-asc:before{content:"\f15d"}.um .fa.fa-sort-alpha-desc:before,.um-icon-within .fa.fa-sort-alpha-desc:before{content:"\f881"}.um .fa.fa-sort-amount-asc:before,.um-icon-within .fa.fa-sort-amount-asc:before{content:"\f884"}.um .fa.fa-sort-amount-desc:before,.um-icon-within .fa.fa-sort-amount-desc:before{content:"\f160"}.um .fa.fa-sort-numeric-asc:before,.um-icon-within .fa.fa-sort-numeric-asc:before{content:"\f162"}.um .fa.fa-sort-numeric-desc:before,.um-icon-within .fa.fa-sort-numeric-desc:before{content:"\f886"}.um .fa.fa-youtube-square,.um-icon-within .fa.fa-youtube-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-youtube-square:before,.um-icon-within .fa.fa-youtube-square:before{content:"\f431"}.um .fa.fa-youtube,.um-icon-within .fa.fa-youtube{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-xing,.um-icon-within .fa.fa-xing{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-xing-square,.um-icon-within .fa.fa-xing-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-xing-square:before,.um-icon-within .fa.fa-xing-square:before{content:"\f169"}.um .fa.fa-youtube-play,.um-icon-within .fa.fa-youtube-play{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-youtube-play:before,.um-icon-within .fa.fa-youtube-play:before{content:"\f167"}.um .fa.fa-dropbox,.um-icon-within .fa.fa-dropbox{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-stack-overflow,.um-icon-within .fa.fa-stack-overflow{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-instagram,.um-icon-within .fa.fa-instagram{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-flickr,.um-icon-within .fa.fa-flickr{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-adn,.um-icon-within .fa.fa-adn{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitbucket,.um-icon-within .fa.fa-bitbucket{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitbucket-square,.um-icon-within .fa.fa-bitbucket-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bitbucket-square:before,.um-icon-within .fa.fa-bitbucket-square:before{content:"\f171"}.um .fa.fa-tumblr,.um-icon-within .fa.fa-tumblr{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-tumblr-square,.um-icon-within .fa.fa-tumblr-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-tumblr-square:before,.um-icon-within .fa.fa-tumblr-square:before{content:"\f174"}.um .fa.fa-long-arrow-down:before,.um-icon-within .fa.fa-long-arrow-down:before{content:"\f309"}.um .fa.fa-long-arrow-up:before,.um-icon-within .fa.fa-long-arrow-up:before{content:"\f30c"}.um .fa.fa-long-arrow-left:before,.um-icon-within .fa.fa-long-arrow-left:before{content:"\f30a"}.um .fa.fa-long-arrow-right:before,.um-icon-within .fa.fa-long-arrow-right:before{content:"\f30b"}.um .fa.fa-apple,.um-icon-within .fa.fa-apple{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-windows,.um-icon-within .fa.fa-windows{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-android,.um-icon-within .fa.fa-android{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-linux,.um-icon-within .fa.fa-linux{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-dribbble,.um-icon-within .fa.fa-dribbble{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-skype,.um-icon-within .fa.fa-skype{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-foursquare,.um-icon-within .fa.fa-foursquare{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-trello,.um-icon-within .fa.fa-trello{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gratipay,.um-icon-within .fa.fa-gratipay{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gittip,.um-icon-within .fa.fa-gittip{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gittip:before,.um-icon-within .fa.fa-gittip:before{content:"\f184"}.um .fa.fa-sun-o,.um-icon-within .fa.fa-sun-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-sun-o:before,.um-icon-within .fa.fa-sun-o:before{content:"\f185"}.um .fa.fa-moon-o,.um-icon-within .fa.fa-moon-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-moon-o:before,.um-icon-within .fa.fa-moon-o:before{content:"\f186"}.um .fa.fa-vk,.um-icon-within .fa.fa-vk{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-weibo,.um-icon-within .fa.fa-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-renren,.um-icon-within .fa.fa-renren{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pagelines,.um-icon-within .fa.fa-pagelines{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-stack-exchange,.um-icon-within .fa.fa-stack-exchange{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-arrow-circle-o-right,.um-icon-within .fa.fa-arrow-circle-o-right{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-right:before,.um-icon-within .fa.fa-arrow-circle-o-right:before{content:"\f35a"}.um .fa.fa-arrow-circle-o-left,.um-icon-within .fa.fa-arrow-circle-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-arrow-circle-o-left:before,.um-icon-within .fa.fa-arrow-circle-o-left:before{content:"\f359"}.um .fa.fa-caret-square-o-left,.um-icon-within .fa.fa-caret-square-o-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-caret-square-o-left:before,.um-icon-within .fa.fa-caret-square-o-left:before{content:"\f191"}.um .fa.fa-toggle-left,.um-icon-within .fa.fa-toggle-left{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-toggle-left:before,.um-icon-within .fa.fa-toggle-left:before{content:"\f191"}.um .fa.fa-dot-circle-o,.um-icon-within .fa.fa-dot-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-dot-circle-o:before,.um-icon-within .fa.fa-dot-circle-o:before{content:"\f192"}.um .fa.fa-vimeo-square,.um-icon-within .fa.fa-vimeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-vimeo-square:before,.um-icon-within .fa.fa-vimeo-square:before{content:"\f194"}.um .fa.fa-try:before,.um-icon-within .fa.fa-try:before{content:"\e2bb"}.um .fa.fa-turkish-lira:before,.um-icon-within .fa.fa-turkish-lira:before{content:"\e2bb"}.um .fa.fa-plus-square-o,.um-icon-within .fa.fa-plus-square-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-plus-square-o:before,.um-icon-within .fa.fa-plus-square-o:before{content:"\f0fe"}.um .fa.fa-slack,.um-icon-within .fa.fa-slack{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wordpress,.um-icon-within .fa.fa-wordpress{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-openid,.um-icon-within .fa.fa-openid{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-institution:before,.um-icon-within .fa.fa-institution:before{content:"\f19c"}.um .fa.fa-bank:before,.um-icon-within .fa.fa-bank:before{content:"\f19c"}.um .fa.fa-mortar-board:before,.um-icon-within .fa.fa-mortar-board:before{content:"\f19d"}.um .fa.fa-yahoo,.um-icon-within .fa.fa-yahoo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google,.um-icon-within .fa.fa-google{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit,.um-icon-within .fa.fa-reddit{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit-square,.um-icon-within .fa.fa-reddit-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit-square:before,.um-icon-within .fa.fa-reddit-square:before{content:"\f1a2"}.um .fa.fa-stumbleupon-circle,.um-icon-within .fa.fa-stumbleupon-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-stumbleupon,.um-icon-within .fa.fa-stumbleupon{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-delicious,.um-icon-within .fa.fa-delicious{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-digg,.um-icon-within .fa.fa-digg{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pied-piper-pp,.um-icon-within .fa.fa-pied-piper-pp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pied-piper-alt,.um-icon-within .fa.fa-pied-piper-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-drupal,.um-icon-within .fa.fa-drupal{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-joomla,.um-icon-within .fa.fa-joomla{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-behance,.um-icon-within .fa.fa-behance{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-behance-square,.um-icon-within .fa.fa-behance-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-behance-square:before,.um-icon-within .fa.fa-behance-square:before{content:"\f1b5"}.um .fa.fa-steam,.um-icon-within .fa.fa-steam{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-steam-square,.um-icon-within .fa.fa-steam-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-steam-square:before,.um-icon-within .fa.fa-steam-square:before{content:"\f1b7"}.um .fa.fa-automobile:before,.um-icon-within .fa.fa-automobile:before{content:"\f1b9"}.um .fa.fa-cab:before,.um-icon-within .fa.fa-cab:before{content:"\f1ba"}.um .fa.fa-spotify,.um-icon-within .fa.fa-spotify{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-deviantart,.um-icon-within .fa.fa-deviantart{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-soundcloud,.um-icon-within .fa.fa-soundcloud{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-file-pdf-o,.um-icon-within .fa.fa-file-pdf-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-pdf-o:before,.um-icon-within .fa.fa-file-pdf-o:before{content:"\f1c1"}.um .fa.fa-file-word-o,.um-icon-within .fa.fa-file-word-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-word-o:before,.um-icon-within .fa.fa-file-word-o:before{content:"\f1c2"}.um .fa.fa-file-excel-o,.um-icon-within .fa.fa-file-excel-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-excel-o:before,.um-icon-within .fa.fa-file-excel-o:before{content:"\f1c3"}.um .fa.fa-file-powerpoint-o,.um-icon-within .fa.fa-file-powerpoint-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-powerpoint-o:before,.um-icon-within .fa.fa-file-powerpoint-o:before{content:"\f1c4"}.um .fa.fa-file-image-o,.um-icon-within .fa.fa-file-image-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-image-o:before,.um-icon-within .fa.fa-file-image-o:before{content:"\f1c5"}.um .fa.fa-file-photo-o,.um-icon-within .fa.fa-file-photo-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-photo-o:before,.um-icon-within .fa.fa-file-photo-o:before{content:"\f1c5"}.um .fa.fa-file-picture-o,.um-icon-within .fa.fa-file-picture-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-picture-o:before,.um-icon-within .fa.fa-file-picture-o:before{content:"\f1c5"}.um .fa.fa-file-archive-o,.um-icon-within .fa.fa-file-archive-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-archive-o:before,.um-icon-within .fa.fa-file-archive-o:before{content:"\f1c6"}.um .fa.fa-file-zip-o,.um-icon-within .fa.fa-file-zip-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-zip-o:before,.um-icon-within .fa.fa-file-zip-o:before{content:"\f1c6"}.um .fa.fa-file-audio-o,.um-icon-within .fa.fa-file-audio-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-audio-o:before,.um-icon-within .fa.fa-file-audio-o:before{content:"\f1c7"}.um .fa.fa-file-sound-o,.um-icon-within .fa.fa-file-sound-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-sound-o:before,.um-icon-within .fa.fa-file-sound-o:before{content:"\f1c7"}.um .fa.fa-file-video-o,.um-icon-within .fa.fa-file-video-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-video-o:before,.um-icon-within .fa.fa-file-video-o:before{content:"\f1c8"}.um .fa.fa-file-movie-o,.um-icon-within .fa.fa-file-movie-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-movie-o:before,.um-icon-within .fa.fa-file-movie-o:before{content:"\f1c8"}.um .fa.fa-file-code-o,.um-icon-within .fa.fa-file-code-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-file-code-o:before,.um-icon-within .fa.fa-file-code-o:before{content:"\f1c9"}.um .fa.fa-vine,.um-icon-within .fa.fa-vine{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-codepen,.um-icon-within .fa.fa-codepen{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-jsfiddle,.um-icon-within .fa.fa-jsfiddle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-life-bouy:before,.um-icon-within .fa.fa-life-bouy:before{content:"\f1cd"}.um .fa.fa-life-buoy:before,.um-icon-within .fa.fa-life-buoy:before{content:"\f1cd"}.um .fa.fa-life-saver:before,.um-icon-within .fa.fa-life-saver:before{content:"\f1cd"}.um .fa.fa-support:before,.um-icon-within .fa.fa-support:before{content:"\f1cd"}.um .fa.fa-circle-o-notch:before,.um-icon-within .fa.fa-circle-o-notch:before{content:"\f1ce"}.um .fa.fa-rebel,.um-icon-within .fa.fa-rebel{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ra,.um-icon-within .fa.fa-ra{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ra:before,.um-icon-within .fa.fa-ra:before{content:"\f1d0"}.um .fa.fa-resistance,.um-icon-within .fa.fa-resistance{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-resistance:before,.um-icon-within .fa.fa-resistance:before{content:"\f1d0"}.um .fa.fa-empire,.um-icon-within .fa.fa-empire{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ge,.um-icon-within .fa.fa-ge{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ge:before,.um-icon-within .fa.fa-ge:before{content:"\f1d1"}.um .fa.fa-git-square,.um-icon-within .fa.fa-git-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-git-square:before,.um-icon-within .fa.fa-git-square:before{content:"\f1d2"}.um .fa.fa-git,.um-icon-within .fa.fa-git{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-hacker-news,.um-icon-within .fa.fa-hacker-news{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-y-combinator-square,.um-icon-within .fa.fa-y-combinator-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-y-combinator-square:before,.um-icon-within .fa.fa-y-combinator-square:before{content:"\f1d4"}.um .fa.fa-yc-square,.um-icon-within .fa.fa-yc-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yc-square:before,.um-icon-within .fa.fa-yc-square:before{content:"\f1d4"}.um .fa.fa-tencent-weibo,.um-icon-within .fa.fa-tencent-weibo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-qq,.um-icon-within .fa.fa-qq{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-weixin,.um-icon-within .fa.fa-weixin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wechat,.um-icon-within .fa.fa-wechat{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wechat:before,.um-icon-within .fa.fa-wechat:before{content:"\f1d7"}.um .fa.fa-send:before,.um-icon-within .fa.fa-send:before{content:"\f1d8"}.um .fa.fa-paper-plane-o,.um-icon-within .fa.fa-paper-plane-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-paper-plane-o:before,.um-icon-within .fa.fa-paper-plane-o:before{content:"\f1d8"}.um .fa.fa-send-o,.um-icon-within .fa.fa-send-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-send-o:before,.um-icon-within .fa.fa-send-o:before{content:"\f1d8"}.um .fa.fa-circle-thin,.um-icon-within .fa.fa-circle-thin{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-circle-thin:before,.um-icon-within .fa.fa-circle-thin:before{content:"\f111"}.um .fa.fa-header:before,.um-icon-within .fa.fa-header:before{content:"\f1dc"}.um .fa.fa-futbol-o,.um-icon-within .fa.fa-futbol-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-futbol-o:before,.um-icon-within .fa.fa-futbol-o:before{content:"\f1e3"}.um .fa.fa-soccer-ball-o,.um-icon-within .fa.fa-soccer-ball-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-soccer-ball-o:before,.um-icon-within .fa.fa-soccer-ball-o:before{content:"\f1e3"}.um .fa.fa-slideshare,.um-icon-within .fa.fa-slideshare{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-twitch,.um-icon-within .fa.fa-twitch{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yelp,.um-icon-within .fa.fa-yelp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-newspaper-o,.um-icon-within .fa.fa-newspaper-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-newspaper-o:before,.um-icon-within .fa.fa-newspaper-o:before{content:"\f1ea"}.um .fa.fa-paypal,.um-icon-within .fa.fa-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-wallet,.um-icon-within .fa.fa-google-wallet{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-visa,.um-icon-within .fa.fa-cc-visa{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-mastercard,.um-icon-within .fa.fa-cc-mastercard{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-discover,.um-icon-within .fa.fa-cc-discover{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-amex,.um-icon-within .fa.fa-cc-amex{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-paypal,.um-icon-within .fa.fa-cc-paypal{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-stripe,.um-icon-within .fa.fa-cc-stripe{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bell-slash-o,.um-icon-within .fa.fa-bell-slash-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-bell-slash-o:before,.um-icon-within .fa.fa-bell-slash-o:before{content:"\f1f6"}.um .fa.fa-trash:before,.um-icon-within .fa.fa-trash:before{content:"\f2ed"}.um .fa.fa-copyright,.um-icon-within .fa.fa-copyright{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-eyedropper:before,.um-icon-within .fa.fa-eyedropper:before{content:"\f1fb"}.um .fa.fa-area-chart:before,.um-icon-within .fa.fa-area-chart:before{content:"\f1fe"}.um .fa.fa-pie-chart:before,.um-icon-within .fa.fa-pie-chart:before{content:"\f200"}.um .fa.fa-line-chart:before,.um-icon-within .fa.fa-line-chart:before{content:"\f201"}.um .fa.fa-lastfm,.um-icon-within .fa.fa-lastfm{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-lastfm-square,.um-icon-within .fa.fa-lastfm-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-lastfm-square:before,.um-icon-within .fa.fa-lastfm-square:before{content:"\f203"}.um .fa.fa-ioxhost,.um-icon-within .fa.fa-ioxhost{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-angellist,.um-icon-within .fa.fa-angellist{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc,.um-icon-within .fa.fa-cc{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-cc:before,.um-icon-within .fa.fa-cc:before{content:"\f20a"}.um .fa.fa-ils:before,.um-icon-within .fa.fa-ils:before{content:"\f20b"}.um .fa.fa-shekel:before,.um-icon-within .fa.fa-shekel:before{content:"\f20b"}.um .fa.fa-sheqel:before,.um-icon-within .fa.fa-sheqel:before{content:"\f20b"}.um .fa.fa-buysellads,.um-icon-within .fa.fa-buysellads{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-connectdevelop,.um-icon-within .fa.fa-connectdevelop{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-dashcube,.um-icon-within .fa.fa-dashcube{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-forumbee,.um-icon-within .fa.fa-forumbee{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-leanpub,.um-icon-within .fa.fa-leanpub{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-sellsy,.um-icon-within .fa.fa-sellsy{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-shirtsinbulk,.um-icon-within .fa.fa-shirtsinbulk{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-simplybuilt,.um-icon-within .fa.fa-simplybuilt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-skyatlas,.um-icon-within .fa.fa-skyatlas{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-diamond,.um-icon-within .fa.fa-diamond{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-diamond:before,.um-icon-within .fa.fa-diamond:before{content:"\f3a5"}.um .fa.fa-transgender:before,.um-icon-within .fa.fa-transgender:before{content:"\f224"}.um .fa.fa-intersex:before,.um-icon-within .fa.fa-intersex:before{content:"\f224"}.um .fa.fa-transgender-alt:before,.um-icon-within .fa.fa-transgender-alt:before{content:"\f225"}.um .fa.fa-facebook-official,.um-icon-within .fa.fa-facebook-official{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-facebook-official:before,.um-icon-within .fa.fa-facebook-official:before{content:"\f09a"}.um .fa.fa-pinterest-p,.um-icon-within .fa.fa-pinterest-p{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-whatsapp,.um-icon-within .fa.fa-whatsapp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-hotel:before,.um-icon-within .fa.fa-hotel:before{content:"\f236"}.um .fa.fa-viacoin,.um-icon-within .fa.fa-viacoin{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-medium,.um-icon-within .fa.fa-medium{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-y-combinator,.um-icon-within .fa.fa-y-combinator{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yc,.um-icon-within .fa.fa-yc{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yc:before,.um-icon-within .fa.fa-yc:before{content:"\f23b"}.um .fa.fa-optin-monster,.um-icon-within .fa.fa-optin-monster{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-opencart,.um-icon-within .fa.fa-opencart{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-expeditedssl,.um-icon-within .fa.fa-expeditedssl{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-battery-4:before,.um-icon-within .fa.fa-battery-4:before{content:"\f240"}.um .fa.fa-battery:before,.um-icon-within .fa.fa-battery:before{content:"\f240"}.um .fa.fa-battery-3:before,.um-icon-within .fa.fa-battery-3:before{content:"\f241"}.um .fa.fa-battery-2:before,.um-icon-within .fa.fa-battery-2:before{content:"\f242"}.um .fa.fa-battery-1:before,.um-icon-within .fa.fa-battery-1:before{content:"\f243"}.um .fa.fa-battery-0:before,.um-icon-within .fa.fa-battery-0:before{content:"\f244"}.um .fa.fa-object-group,.um-icon-within .fa.fa-object-group{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-object-ungroup,.um-icon-within .fa.fa-object-ungroup{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-sticky-note-o,.um-icon-within .fa.fa-sticky-note-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-sticky-note-o:before,.um-icon-within .fa.fa-sticky-note-o:before{content:"\f249"}.um .fa.fa-cc-jcb,.um-icon-within .fa.fa-cc-jcb{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-cc-diners-club,.um-icon-within .fa.fa-cc-diners-club{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-clone,.um-icon-within .fa.fa-clone{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hourglass-o:before,.um-icon-within .fa.fa-hourglass-o:before{content:"\f254"}.um .fa.fa-hourglass-1:before,.um-icon-within .fa.fa-hourglass-1:before{content:"\f251"}.um .fa.fa-hourglass-2:before,.um-icon-within .fa.fa-hourglass-2:before{content:"\f252"}.um .fa.fa-hourglass-3:before,.um-icon-within .fa.fa-hourglass-3:before{content:"\f253"}.um .fa.fa-hand-rock-o,.um-icon-within .fa.fa-hand-rock-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-rock-o:before,.um-icon-within .fa.fa-hand-rock-o:before{content:"\f255"}.um .fa.fa-hand-grab-o,.um-icon-within .fa.fa-hand-grab-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-grab-o:before,.um-icon-within .fa.fa-hand-grab-o:before{content:"\f255"}.um .fa.fa-hand-paper-o,.um-icon-within .fa.fa-hand-paper-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-paper-o:before,.um-icon-within .fa.fa-hand-paper-o:before{content:"\f256"}.um .fa.fa-hand-stop-o,.um-icon-within .fa.fa-hand-stop-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-stop-o:before,.um-icon-within .fa.fa-hand-stop-o:before{content:"\f256"}.um .fa.fa-hand-scissors-o,.um-icon-within .fa.fa-hand-scissors-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-scissors-o:before,.um-icon-within .fa.fa-hand-scissors-o:before{content:"\f257"}.um .fa.fa-hand-lizard-o,.um-icon-within .fa.fa-hand-lizard-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-lizard-o:before,.um-icon-within .fa.fa-hand-lizard-o:before{content:"\f258"}.um .fa.fa-hand-spock-o,.um-icon-within .fa.fa-hand-spock-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-spock-o:before,.um-icon-within .fa.fa-hand-spock-o:before{content:"\f259"}.um .fa.fa-hand-pointer-o,.um-icon-within .fa.fa-hand-pointer-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-pointer-o:before,.um-icon-within .fa.fa-hand-pointer-o:before{content:"\f25a"}.um .fa.fa-hand-peace-o,.um-icon-within .fa.fa-hand-peace-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-hand-peace-o:before,.um-icon-within .fa.fa-hand-peace-o:before{content:"\f25b"}.um .fa.fa-registered,.um-icon-within .fa.fa-registered{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-creative-commons,.um-icon-within .fa.fa-creative-commons{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gg,.um-icon-within .fa.fa-gg{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gg-circle,.um-icon-within .fa.fa-gg-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-odnoklassniki,.um-icon-within .fa.fa-odnoklassniki{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-odnoklassniki-square,.um-icon-within .fa.fa-odnoklassniki-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-odnoklassniki-square:before,.um-icon-within .fa.fa-odnoklassniki-square:before{content:"\f264"}.um .fa.fa-get-pocket,.um-icon-within .fa.fa-get-pocket{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wikipedia-w,.um-icon-within .fa.fa-wikipedia-w{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-safari,.um-icon-within .fa.fa-safari{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-chrome,.um-icon-within .fa.fa-chrome{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-firefox,.um-icon-within .fa.fa-firefox{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-opera,.um-icon-within .fa.fa-opera{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-internet-explorer,.um-icon-within .fa.fa-internet-explorer{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-television:before,.um-icon-within .fa.fa-television:before{content:"\f26c"}.um .fa.fa-contao,.um-icon-within .fa.fa-contao{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-500px,.um-icon-within .fa.fa-500px{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-amazon,.um-icon-within .fa.fa-amazon{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-calendar-plus-o,.um-icon-within .fa.fa-calendar-plus-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-plus-o:before,.um-icon-within .fa.fa-calendar-plus-o:before{content:"\f271"}.um .fa.fa-calendar-minus-o,.um-icon-within .fa.fa-calendar-minus-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-minus-o:before,.um-icon-within .fa.fa-calendar-minus-o:before{content:"\f272"}.um .fa.fa-calendar-times-o,.um-icon-within .fa.fa-calendar-times-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-times-o:before,.um-icon-within .fa.fa-calendar-times-o:before{content:"\f273"}.um .fa.fa-calendar-check-o,.um-icon-within .fa.fa-calendar-check-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-calendar-check-o:before,.um-icon-within .fa.fa-calendar-check-o:before{content:"\f274"}.um .fa.fa-map-o,.um-icon-within .fa.fa-map-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-map-o:before,.um-icon-within .fa.fa-map-o:before{content:"\f279"}.um .fa.fa-commenting:before,.um-icon-within .fa.fa-commenting:before{content:"\f4ad"}.um .fa.fa-commenting-o,.um-icon-within .fa.fa-commenting-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-commenting-o:before,.um-icon-within .fa.fa-commenting-o:before{content:"\f4ad"}.um .fa.fa-houzz,.um-icon-within .fa.fa-houzz{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-vimeo,.um-icon-within .fa.fa-vimeo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-vimeo:before,.um-icon-within .fa.fa-vimeo:before{content:"\f27d"}.um .fa.fa-black-tie,.um-icon-within .fa.fa-black-tie{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fonticons,.um-icon-within .fa.fa-fonticons{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-reddit-alien,.um-icon-within .fa.fa-reddit-alien{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-edge,.um-icon-within .fa.fa-edge{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-credit-card-alt:before,.um-icon-within .fa.fa-credit-card-alt:before{content:"\f09d"}.um .fa.fa-codiepie,.um-icon-within .fa.fa-codiepie{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-modx,.um-icon-within .fa.fa-modx{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fort-awesome,.um-icon-within .fa.fa-fort-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-usb,.um-icon-within .fa.fa-usb{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-product-hunt,.um-icon-within .fa.fa-product-hunt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-mixcloud,.um-icon-within .fa.fa-mixcloud{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-scribd,.um-icon-within .fa.fa-scribd{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-pause-circle-o,.um-icon-within .fa.fa-pause-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-pause-circle-o:before,.um-icon-within .fa.fa-pause-circle-o:before{content:"\f28b"}.um .fa.fa-stop-circle-o,.um-icon-within .fa.fa-stop-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-stop-circle-o:before,.um-icon-within .fa.fa-stop-circle-o:before{content:"\f28d"}.um .fa.fa-bluetooth,.um-icon-within .fa.fa-bluetooth{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-bluetooth-b,.um-icon-within .fa.fa-bluetooth-b{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-gitlab,.um-icon-within .fa.fa-gitlab{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wpbeginner,.um-icon-within .fa.fa-wpbeginner{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wpforms,.um-icon-within .fa.fa-wpforms{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-envira,.um-icon-within .fa.fa-envira{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wheelchair-alt,.um-icon-within .fa.fa-wheelchair-alt{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wheelchair-alt:before,.um-icon-within .fa.fa-wheelchair-alt:before{content:"\f368"}.um .fa.fa-question-circle-o,.um-icon-within .fa.fa-question-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-question-circle-o:before,.um-icon-within .fa.fa-question-circle-o:before{content:"\f059"}.um .fa.fa-volume-control-phone:before,.um-icon-within .fa.fa-volume-control-phone:before{content:"\f2a0"}.um .fa.fa-asl-interpreting:before,.um-icon-within .fa.fa-asl-interpreting:before{content:"\f2a3"}.um .fa.fa-deafness:before,.um-icon-within .fa.fa-deafness:before{content:"\f2a4"}.um .fa.fa-hard-of-hearing:before,.um-icon-within .fa.fa-hard-of-hearing:before{content:"\f2a4"}.um .fa.fa-glide,.um-icon-within .fa.fa-glide{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-glide-g,.um-icon-within .fa.fa-glide-g{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-signing:before,.um-icon-within .fa.fa-signing:before{content:"\f2a7"}.um .fa.fa-viadeo,.um-icon-within .fa.fa-viadeo{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-viadeo-square,.um-icon-within .fa.fa-viadeo-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-viadeo-square:before,.um-icon-within .fa.fa-viadeo-square:before{content:"\f2aa"}.um .fa.fa-snapchat,.um-icon-within .fa.fa-snapchat{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-snapchat-ghost,.um-icon-within .fa.fa-snapchat-ghost{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-snapchat-ghost:before,.um-icon-within .fa.fa-snapchat-ghost:before{content:"\f2ab"}.um .fa.fa-snapchat-square,.um-icon-within .fa.fa-snapchat-square{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-snapchat-square:before,.um-icon-within .fa.fa-snapchat-square:before{content:"\f2ad"}.um .fa.fa-pied-piper,.um-icon-within .fa.fa-pied-piper{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-first-order,.um-icon-within .fa.fa-first-order{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-yoast,.um-icon-within .fa.fa-yoast{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-themeisle,.um-icon-within .fa.fa-themeisle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-official,.um-icon-within .fa.fa-google-plus-official{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-official:before,.um-icon-within .fa.fa-google-plus-official:before{content:"\f2b3"}.um .fa.fa-google-plus-circle,.um-icon-within .fa.fa-google-plus-circle{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-google-plus-circle:before,.um-icon-within .fa.fa-google-plus-circle:before{content:"\f2b3"}.um .fa.fa-font-awesome,.um-icon-within .fa.fa-font-awesome{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fa,.um-icon-within .fa.fa-fa{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-fa:before,.um-icon-within .fa.fa-fa:before{content:"\f2b4"}.um .fa.fa-handshake-o,.um-icon-within .fa.fa-handshake-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-handshake-o:before,.um-icon-within .fa.fa-handshake-o:before{content:"\f2b5"}.um .fa.fa-envelope-open-o,.um-icon-within .fa.fa-envelope-open-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-envelope-open-o:before,.um-icon-within .fa.fa-envelope-open-o:before{content:"\f2b6"}.um .fa.fa-linode,.um-icon-within .fa.fa-linode{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-address-book-o,.um-icon-within .fa.fa-address-book-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-address-book-o:before,.um-icon-within .fa.fa-address-book-o:before{content:"\f2b9"}.um .fa.fa-vcard:before,.um-icon-within .fa.fa-vcard:before{content:"\f2bb"}.um .fa.fa-address-card-o,.um-icon-within .fa.fa-address-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-address-card-o:before,.um-icon-within .fa.fa-address-card-o:before{content:"\f2bb"}.um .fa.fa-vcard-o,.um-icon-within .fa.fa-vcard-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-vcard-o:before,.um-icon-within .fa.fa-vcard-o:before{content:"\f2bb"}.um .fa.fa-user-circle-o,.um-icon-within .fa.fa-user-circle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-user-circle-o:before,.um-icon-within .fa.fa-user-circle-o:before{content:"\f2bd"}.um .fa.fa-user-o,.um-icon-within .fa.fa-user-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-user-o:before,.um-icon-within .fa.fa-user-o:before{content:"\f007"}.um .fa.fa-id-badge,.um-icon-within .fa.fa-id-badge{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-drivers-license:before,.um-icon-within .fa.fa-drivers-license:before{content:"\f2c2"}.um .fa.fa-id-card-o,.um-icon-within .fa.fa-id-card-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-id-card-o:before,.um-icon-within .fa.fa-id-card-o:before{content:"\f2c2"}.um .fa.fa-drivers-license-o,.um-icon-within .fa.fa-drivers-license-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-drivers-license-o:before,.um-icon-within .fa.fa-drivers-license-o:before{content:"\f2c2"}.um .fa.fa-quora,.um-icon-within .fa.fa-quora{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-free-code-camp,.um-icon-within .fa.fa-free-code-camp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-telegram,.um-icon-within .fa.fa-telegram{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-thermometer-4:before,.um-icon-within .fa.fa-thermometer-4:before{content:"\f2c7"}.um .fa.fa-thermometer:before,.um-icon-within .fa.fa-thermometer:before{content:"\f2c7"}.um .fa.fa-thermometer-3:before,.um-icon-within .fa.fa-thermometer-3:before{content:"\f2c8"}.um .fa.fa-thermometer-2:before,.um-icon-within .fa.fa-thermometer-2:before{content:"\f2c9"}.um .fa.fa-thermometer-1:before,.um-icon-within .fa.fa-thermometer-1:before{content:"\f2ca"}.um .fa.fa-thermometer-0:before,.um-icon-within .fa.fa-thermometer-0:before{content:"\f2cb"}.um .fa.fa-bathtub:before,.um-icon-within .fa.fa-bathtub:before{content:"\f2cd"}.um .fa.fa-s15:before,.um-icon-within .fa.fa-s15:before{content:"\f2cd"}.um .fa.fa-window-maximize,.um-icon-within .fa.fa-window-maximize{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-window-restore,.um-icon-within .fa.fa-window-restore{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-times-rectangle:before,.um-icon-within .fa.fa-times-rectangle:before{content:"\f410"}.um .fa.fa-window-close-o,.um-icon-within .fa.fa-window-close-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-window-close-o:before,.um-icon-within .fa.fa-window-close-o:before{content:"\f410"}.um .fa.fa-times-rectangle-o,.um-icon-within .fa.fa-times-rectangle-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-times-rectangle-o:before,.um-icon-within .fa.fa-times-rectangle-o:before{content:"\f410"}.um .fa.fa-bandcamp,.um-icon-within .fa.fa-bandcamp{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-grav,.um-icon-within .fa.fa-grav{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-etsy,.um-icon-within .fa.fa-etsy{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-imdb,.um-icon-within .fa.fa-imdb{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-ravelry,.um-icon-within .fa.fa-ravelry{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-eercast,.um-icon-within .fa.fa-eercast{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-eercast:before,.um-icon-within .fa.fa-eercast:before{content:"\f2da"}.um .fa.fa-snowflake-o,.um-icon-within .fa.fa-snowflake-o{font-family:"Font Awesome 6 Free";font-weight:400}.um .fa.fa-snowflake-o:before,.um-icon-within .fa.fa-snowflake-o:before{content:"\f2dc"}.um .fa.fa-superpowers,.um-icon-within .fa.fa-superpowers{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-wpexplorer,.um-icon-within .fa.fa-wpexplorer{font-family:"Font Awesome 6 Brands";font-weight:400}.um .fa.fa-meetup,.um-icon-within .fa.fa-meetup{font-family:"Font Awesome 6 Brands";font-weight:400} \ No newline at end of file diff --git a/assets/css/um-fontawesome.sass b/assets/css/um-fontawesome.sass index 48530726..01c785f8 100644 --- a/assets/css/um-fontawesome.sass +++ b/assets/css/um-fontawesome.sass @@ -1,6 +1,7 @@ $fa-font-path: "../libs/fontawesome/webfonts" -.um +.um, +.um-icon-within @import "../libs/fontawesome/scss/fontawesome.scss" @import "../libs/fontawesome/scss/brands.scss" @import "../libs/fontawesome/scss/regular.scss" diff --git a/assets/css/um-members-rtl.min.css b/assets/css/um-members-rtl.min.css index 1b0630ad..e69de29b 100644 --- a/assets/css/um-members-rtl.min.css +++ b/assets/css/um-members-rtl.min.css @@ -1 +0,0 @@ -.um-directory .um-member-directory-header .um-member-directory-header-row.um-member-directory-search-row{justify-content:flex-start}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line label{margin:0 0 0 10px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type{margin:0 0 0 10px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a a{margin:0 0 0 5px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a .um-new-dropdown{right:-12px;left:auto}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters .um-member-directory-filters-a a{margin:0 0 0 5px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-datepicker-filter-type input,.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-timepicker-filter-type input{margin:0 0 0 5px!important}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-datepicker-filter-type input:nth-child(even),.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-timepicker-filter-type input:nth-child(even){margin:0 5px 0 0!important}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag{margin:0 0 5px 10px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag:first-child{margin-left:10px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag .um-members-filter-remove{margin-left:0;margin-right:10px}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-members-edit-btn a.um-edit-profile-btn:before{margin-right:0;margin-left:8px}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-photo{margin:0 0 0 15px}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content{margin:0 0 0 10px}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-actions .um-member-cog .um-new-dropdown{right:auto;left:0;text-align:right}.um-directory .um-members-pagination-box .um-members-pagi{align-items:center}.um-directory .um-members-pagination-box .um-members-pagi .pagi.pagi-arrow{transform:rotate(180deg)}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type{margin:0 0 0 2px}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-new-dropdown{right:auto;left:0}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo{margin:0 0 0 10px}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{margin:0 0 0 10px}.um-directory.uimob500 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type{margin:0 0 0 5px}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo{margin:0 0 0 10px}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer{align-items:flex-start}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{margin:0 0 0 10px}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons .um-members-list-footer-button-wrapper{margin:0 0 5px 10px}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo{margin:0 0 0 10px}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{margin:0 0 0 10px}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons .um-members-list-footer-button-wrapper{margin:0 0 5px 10px} \ No newline at end of file diff --git a/assets/css/um-members.min.css b/assets/css/um-members.min.css index e69de29b..5659a061 100644 --- a/assets/css/um-members.min.css +++ b/assets/css/um-members.min.css @@ -0,0 +1 @@ +@-webkit-keyframes um-ajax-spinning{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes um-ajax-spinning{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-ms-keyframes um-ajax-spinning{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes um-ajax-spinning{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.um-new-dropdown{font-size:16px;margin:0;position:absolute;height:auto;background:#fff;z-index:10;display:none;border:1px solid #ddd;box-shadow:0 7px 14px 0 rgba(50,50,93,.1),0 3px 6px 0 rgba(0,0,0,.07);-webkit-box-shadow:0 7px 14px 0 rgba(50,50,93,.1),0 3px 6px 0 rgba(0,0,0,.07);box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;border-radius:5px 5px 5px 5px;-moz-border-radius:5px 5px 5px 5px;-webkit-border-radius:5px 5px 5px 5px}.um-new-dropdown ul{margin:0;padding:0}.um-new-dropdown ul li{list-style-type:none;padding:0;margin:0}.um-new-dropdown ul li a{display:block;padding:8px 12px;line-height:1}.um-new-dropdown-arr{position:absolute;font-size:24px;width:24px;height:24px;overflow:hidden;z-index:15;color:#eee}.um-new-dropdown-arr *{display:block;width:24px;height:24px;vertical-align:bottom;overflow:hidden;line-height:24px}body #content .um-directory a{text-decoration:none;border-bottom:none;box-shadow:none}body #content .um-directory a:focus,body #content .um-directory a:hover{text-decoration:none;border-bottom:none;box-shadow:none}.um-directory{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;flex-wrap:nowrap;position:relative}.um-directory a{text-decoration:none;border-bottom:none;box-shadow:none}.um-directory a:focus,.um-directory a:hover{text-decoration:none;border-bottom:none;box-shadow:none}.um-directory .select2-container--disabled{opacity:.6}.um-directory .um-members-overlay{display:none;position:absolute;width:100%;top:0;bottom:0;background:0 0;z-index:2}.um-directory .um-members-overlay .um-ajax-loading{-webkit-transition:.1s opacity;-moz-transition:.1s opacity;-ms-transition:.1s opacity;-o-transition:.1s opacity;transition:.1s opacity;color:#c6c6c6!important;-webkit-animation:um-ajax-spinning 1.1s infinite linear;animation:um-ajax-spinning 1.1s infinite linear;border-top:.2em solid rgba(198,198,198,.2);border-right:.2em solid rgba(198,198,198,.2);border-bottom:.2em solid rgba(198,198,198,.2);border-left:.2em solid #c6c6c6;font-size:1.75em;position:absolute;left:calc(50% - 1.75em);top:calc(50% - 1.75em);-ms-transform:translateZ(0);transform:translateZ(0);border-radius:50%;display:block;width:2.5em;height:2.5em;margin:0;outline:0;padding:0;vertical-align:baseline}.um-directory .um-member-directory-header{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;flex-wrap:nowrap;width:100%}.um-directory .um-member-directory-header .um-member-directory-header-row.um-member-directory-filters-bar{padding:0 0 10px 0}.um-directory .um-member-directory-header .um-member-directory-header-row:not(.um-member-directory-filters-bar){display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap;margin:0 0 10px 0}.um-directory .um-member-directory-header .um-member-directory-header-row.um-header-row-invisible{margin:0}.um-directory .um-member-directory-header .um-member-directory-header-row.um-member-directory-search-row{justify-content:flex-end}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;width:60%}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line label{flex:1;margin:0 10px 0 0;min-width:90px;max-width:85%}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line label span{display:none;margin:0 5px 0 0}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line label .um-search-line{-webkit-appearance:textfield;width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line .um-do-search{min-width:15%;width:auto}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line{display:flex;flex-direction:row;justify-content:space-between;align-items:center;flex-wrap:nowrap;width:100%}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type{font-size:30px;line-height:30px;margin:0 10px 0 0;width:30px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type .um-member-directory-view-type-a{color:#ddd;display:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type.um-disabled{cursor:default}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type.um-disabled a{cursor:default}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type:not(.um-disabled) .um-member-directory-view-type-a:hover{color:#ccc}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type:not(.um-disabled) .um-member-directory-view-type-a:focus{color:#ddd}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap;flex:5}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap;position:relative;cursor:pointer}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a a{margin:0 5px 0 0}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a i.um-faicon-caret-down{display:inline}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a i.um-faicon-caret-up{display:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a.um-member-directory-sorting-visible i.um-faicon-caret-down{display:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a.um-member-directory-sorting-visible i.um-faicon-caret-up{display:inline}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a .um-new-dropdown{top:24px;width:200px;left:-12px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a .um-new-dropdown li a[data-selected="1"]{display:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters{display:flex;flex-direction:row;justify-content:flex-end;align-items:baseline;flex-wrap:nowrap;flex:2;text-align:right}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters .um-member-directory-filters-a{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap;cursor:pointer}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters .um-member-directory-filters-a a{margin:0 5px 0 0}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters .um-member-directory-filters-a i.um-faicon-caret-down{display:inline}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters .um-member-directory-filters-a i.um-faicon-caret-up{display:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters .um-member-directory-filters-a.um-member-directory-filters-visible i.um-faicon-caret-down{display:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters .um-member-directory-filters-a.um-member-directory-filters-visible i.um-faicon-caret-up{display:inline}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search{margin:0;width:100%;display:grid;grid-template-rows:auto 1fr;grid-template-columns:repeat(3,1fr);grid-gap:10px;grid-auto-rows:minmax(max-content,auto);-ms-grid-template-rows:auto 1fr;-ms-grid-template-columns:repeat(3,1fr);-ms-grid-gap:10px;-ms-grid-auto-rows:minmax(max-content,auto);align-items:center}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap;width:100%;position:relative}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter .select2-container{float:left;width:100%!important}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter .um-s1{width:100%}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-text-filter-type input{width:100%}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-slider-filter-type{flex-direction:column;align-items:stretch}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-slider-filter-type .um-slider{width:calc(100% - 16px)}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-slider-filter-type .um-slider .ui-slider-range.ui-widget-header{background:#44b0ec;border:1px solid #44b0ec!important;margin-top:-1px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-slider-filter-type .um-slider.ui-slider.ui-slider-horizontal{border:1px solid #ddd!important;box-sizing:border-box;margin:4px 8px 0 8px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-slider-filter-type .um-slider-range{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap;margin:6px 0 0 8px;font-size:.8em}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-datepicker-filter-type,.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-timepicker-filter-type{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-datepicker-filter-type input,.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-timepicker-filter-type input{width:calc(50% - 5px);margin:0 5px 0 0!important;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-datepicker-filter-type input:nth-child(even),.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-timepicker-filter-type input:nth-child(even){margin:0 0 0 5px!important}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search[style*="overflow: hidden;"] .um-search-filter{pointer-events:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search.um-search-invisible{display:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:wrap;margin:0;padding:0;box-sizing:border-box;border:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap;margin:0 10px 5px 0;padding:0 10px;border-radius:3px;cursor:default;background:#f1f1f1;font-size:13px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag:first-child{margin-left:0}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag .um-members-filter-remove{float:right;display:inline-block;margin-left:10px;cursor:pointer;font-weight:700;font-size:20px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag .um-members-filter-remove:hover{color:#a00}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-clear-filters{display:none}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-clear-filters a{padding:3px 10px;margin:0 10px}.um-directory .um-members-wrapper{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;flex-wrap:nowrap;width:100%;margin:0 0 10px 0;padding:0;position:relative;height:300px}.um-directory .um-members-wrapper .um-members-intro{text-align:center;margin:0 0 10px 0}.um-directory .um-members-wrapper .um-members-total{font-size:20px;font-weight:300}.um-directory .um-members-wrapper .um-members{width:100%;margin:0;padding:0;-ms-word-break:break-all;word-break:break-word;word-wrap:break-word}.um-directory .um-members-wrapper .um-members .um-member{border:1px solid #ddd;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.um-directory .um-members-wrapper .um-members .um-member .um-member-photo.radius-1 a img{-moz-border-radius:999px!important;-webkit-border-radius:999px!important;border-radius:999px!important}.um-directory .um-members-wrapper .um-members .um-member .um-member-photo.radius-1.radius-2 a img{-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important}.um-directory .um-members-wrapper .um-members .um-member .um-member-photo.radius-1.radius-3 a img{-moz-border-radius:0!important;-webkit-border-radius:0!important;border-radius:0!important}.um-directory .um-members-wrapper .um-members .um-member .um-member-card .um-member-name{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap}.um-directory .um-members-wrapper .um-members .um-member .um-member-card .um-member-name a{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:nowrap}.um-directory .um-members-wrapper .um-members img{display:block;overflow:hidden;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;margin:0;padding:0}.um-directory .um-members-wrapper .um-members.um-members-grid .um-gutter-sizer{width:5%}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member{float:left;width:30%;background:#fff;text-align:center;margin-bottom:40px;position:relative}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-status{display:none;background:#999}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-status.awaiting_admin_review,.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-status.inactive,.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-status.rejected{display:block;position:absolute;top:0;left:0;width:100%;padding:7px 15px;color:#fff;z-index:10;font-size:13px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-status.awaiting_admin_review{background:#c74a4a}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-photo{padding:40px 0 20px 0;text-align:center}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-photo a{text-decoration:none;box-shadow:none!important;display:inline!important}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-photo a img{display:inline!important;border:5px solid #fff;background:#fff;width:140px;height:140px;float:none!important}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member.awaiting_admin_review,.um-directory .um-members-wrapper .um-members.um-members-grid .um-member.inactive,.um-directory .um-members-wrapper .um-members.um-members-grid .um-member.rejected{opacity:.7}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member.with-cover .um-member-photo{padding-top:0}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member.with-cover .um-member-photo a img{width:90px;height:90px;position:relative;top:-35px;margin-bottom:-45px;float:none;opacity:1}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-cover{background-color:#eee;box-sizing:border-box;position:relative}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-cover[data-ratio]{overflow-y:hidden}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-cover .um-member-cover-e{text-align:center;box-sizing:border-box}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-cover .um-member-cover-e img{width:100%!important}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card{padding-bottom:15px}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card.no-photo{padding-top:30px}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-name{margin:0 0 4px 0;justify-content:center}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-name a{font-size:16px;line-height:26px;color:#444;font-weight:700}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-members-edit-btn{margin:2px 0;height:40px}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-members-edit-btn a.um-edit-profile-btn{padding:10px 15px!important;transition:none!important;display:inline-block!important;margin:0 auto!important;min-width:110px;width:auto;text-align:center;font-size:13px}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-members-edit-btn a.um-edit-profile-btn:before{font-family:FontAwesome;margin-right:8px;width:14px;text-align:left;display:inline-block;font-size:16px;position:relative;left:0;top:1px;content:"\f013"}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-tagline{font-size:13px;line-height:22px;color:#999;padding:0 15px}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-meta{display:none;margin:20px 15px 0 15px;padding:15px 0;border-top:1px solid #e5e5e5}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-meta.no-animate{display:block}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-meta .um-member-metaline{font-size:13px;padding:12px 0 0 0;line-height:16px;vertical-align:middle}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-meta .um-member-metaline strong{display:block;clear:both}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-meta .um-member-metaline span{display:block;text-align:center}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-meta .um-member-connect{padding-top:20px}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-meta .um-member-connect a{display:inline-block;width:40px;line-height:40px;height:40px;-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px;color:#fff!important;opacity:.85;margin:0 1px;font-size:22px;transition:.25s}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-meta .um-member-connect a:hover{opacity:1;color:#fff}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-less{display:none}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-less a{color:#666;display:inline-block}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-less a i{display:block;font-size:32px;height:32px;line-height:32px}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-more a{color:#666;display:inline-block}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-member-meta-main .um-member-more a i{display:block;font-size:32px;height:32px;line-height:32px}.um-directory .um-members-wrapper .um-members.um-members-list{display:grid;grid-template-rows:auto 1fr;grid-template-columns:repeat(1,1fr);grid-gap:10px;grid-auto-rows:minmax(max-content,auto);-ms-grid-template-rows:auto 1fr;-ms-grid-template-columns:repeat(1,1fr);-ms-grid-gap:10px;-ms-grid-auto-rows:minmax(max-content,auto);align-items:center}.um-directory .um-members-wrapper .um-members.um-members-list .um-member{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;flex-wrap:nowrap;width:100%;padding:15px;margin:0;background:#fff;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-status{display:none;background:#999}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-status.awaiting_admin_review,.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-status.inactive,.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-status.rejected{display:block;width:100%;padding:7px 15px;margin-bottom:10px;color:#fff;font-size:13px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-status.awaiting_admin_review{background:#c74a4a}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container{display:flex;flex-direction:row;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;width:100%;margin:0 0 10px 0;padding:0}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-photo{width:100px;margin:0 15px 0 0;padding:0}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-photo a{width:100px;height:100px;display:block}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-photo a img{width:100px;height:100px;position:relative;top:0;margin:0;margin-bottom:0;border:none}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card{display:flex;flex-direction:row;justify-content:flex-start;align-items:flex-start;flex-wrap:nowrap;width:calc(100% - 115px);padding:0;margin:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card.no-photo{width:100%}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;flex-wrap:nowrap;width:calc(100% - 30px);margin:0 10px 0 0}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-card-header{width:100%}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-card-header .um-member-name{margin:0 0 4px 0}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-card-header .um-member-name a{font-size:16px;line-height:26px;color:#444;font-weight:700}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-tagline{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:wrap;width:100%;font-size:13px;color:#999;padding:0;box-sizing:border-box}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-meta-main{width:100%;padding:0;box-sizing:border-box;display:none}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-meta-main.no-animate{display:block}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-meta-main .um-member-meta{float:left;width:100%;display:block;margin:10px 0 0 0;box-sizing:border-box;border:none}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-meta-main .um-member-meta .um-member-metaline{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;flex-wrap:wrap;font-size:13px;padding:12px 0 0 0;line-height:16px;width:100%}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-meta-main .um-member-meta .um-member-connect{padding-top:10px}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-meta-main .um-member-meta .um-member-connect a{display:inline-block;width:40px;line-height:40px;height:40px;-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px;color:#fff!important;opacity:.85;margin:0 1px;font-size:22px;transition:.25s;text-align:center}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content .um-member-meta-main .um-member-meta .um-member-connect a:hover{opacity:1;color:#fff}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-actions{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;flex-wrap:nowrap;width:20px;text-align:right;padding:0}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-actions .um-member-cog{position:relative}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-actions .um-member-cog .um-member-actions-a{line-height:1;display:block;color:#666}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-actions .um-member-cog .um-member-actions-a i{display:block;font-size:20px;line-height:1}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-actions .um-member-cog .um-new-dropdown{width:180px;right:0;text-align:left}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-actions a{box-sizing:border-box}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer{display:flex;flex-direction:row;justify-content:flex-end;align-items:center;flex-wrap:nowrap;width:100%}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap;width:calc(100% - 145px);margin:0 10px 0 0}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons .um-members-list-footer-button-wrapper{display:flex;flex-direction:row;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap;margin:0}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons>:not(:last-child){margin:0 10px 0 0}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-reveal-buttons{width:20px;text-align:right}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-reveal-buttons .um-member-more{display:flex;flex-direction:column;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-reveal-buttons .um-member-more a{color:#666;display:inline-block}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-reveal-buttons .um-member-more a i{display:block;font-size:28px;height:28px;line-height:28px}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-reveal-buttons .um-member-less{display:flex;flex-direction:column;justify-content:flex-start;align-items:baseline;flex-wrap:nowrap;display:none}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-reveal-buttons .um-member-less a{color:#666;display:inline-block}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-reveal-buttons .um-member-less a i{display:block;font-size:28px;height:28px;line-height:28px}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer.no-photo.no-reveal .um-member-card-footer-buttons{width:100%}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer.no-photo:not(.no-reveal) .um-member-card-footer-buttons{width:calc(100% - 30px)}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer.no-reveal:not(.no-photo) .um-member-card-footer-buttons{width:calc(100% - 125px)}.um-directory .um-members-wrapper .um-members .um-members-none{text-align:center;font-size:18px}.um-directory .um-members-pagination-box{width:100%;float:left;margin:0 0 10px 0;padding:0}.um-directory .um-members-pagination-box .um-members-pagi{display:flex;flex-direction:row;justify-content:center;align-items:baseline;flex-wrap:nowrap;width:100%;margin:0;padding:0;font-size:15px}.um-directory .um-members-pagination-box .um-members-pagi .pagi{cursor:pointer;display:inline-block;width:auto;height:34px;line-height:34px;transition:all .2s linear;padding:0 14px;color:#666!important;font-weight:400}.um-directory .um-members-pagination-box .um-members-pagi .pagi.pagi-arrow{line-height:38px}.um-directory .um-members-pagination-box .um-members-pagi .pagi.pagi-arrow i:before{font-size:20px;vertical-align:middle!important;height:34px;line-height:34px;top:-2px;position:relative}.um-directory .um-members-pagination-box .um-members-pagi .pagi.current{cursor:default;color:#fff!important}.um-directory .um-members-pagination-box .um-members-pagi .pagi.current:hover{color:#fff!important}.um-directory .um-members-pagination-box .um-members-pagi .pagi.disabled{cursor:default;opacity:.4}.um-directory .um-members-pagination-box .um-members-pagi .pagi.none{color:#aaa!important}.um-directory .um-members-pagination-box .um-members-pagidrop{width:100%;float:left;margin:0;text-align:center;padding:5px 0;font-size:15px}.um-directory.um-loaded .um-members-wrapper{height:auto}.um-directory[data-view_type=list] .um-member-directory-header .um-member-directory-header-row .um-member-directory-view-type .um-member-directory-view-type-a[data-type=list]{display:block}.um-directory[data-view_type=grid] .um-member-directory-header .um-member-directory-header-row .um-member-directory-view-type .um-member-directory-view-type-a[data-type=grid]{display:block}.um-directory[data-view_type=map] .um-member-directory-header .um-member-directory-header-row .um-member-directory-view-type .um-member-directory-view-type-a[data-type=map]{display:block}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line{width:100%}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row.um-member-directory-search-row{justify-content:flex-start}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line{flex-wrap:wrap}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type{width:20px;font-size:20px;line-height:20px;margin:0 2px 0 0}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting{width:calc(100% - 25px);justify-content:flex-end}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-new-dropdown{right:0;left:auto}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters{flex:none;width:100%}.um-directory.uimob340 .um-member-directory-header .um-search{grid-template-columns:repeat(1,1fr)}.um-directory.uimob340 .um-members-wrapper .um-members .um-member{width:100%}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-grid .um-gutter-sizer{width:0}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member{padding:10px}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo{width:50px;margin:0 10px 0 0}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo a{width:50px;height:50px}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo a img{width:50px;height:50px}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card{width:calc(100% - 60px)}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer{align-items:flex-start}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{display:flex;flex-direction:column;justify-content:flex-start;align-items:stretch;flex-wrap:nowrap;width:calc(100% - 90px);margin:0 10px 0 0}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons .um-members-list-footer-button-wrapper{margin:0 0 5px 0}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons .um-members-list-footer-button-wrapper a.um-button{width:100%!important}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer.no-reveal:not(.no-photo) .um-member-card-footer-buttons{width:calc(100% - 70px)}.um-directory.uimob340 .um-members-pagination-box .um-members-pagi{display:none}.um-directory.uimob500 .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line{width:100%}.um-directory.uimob500 .um-member-directory-header .um-member-directory-header-row.um-member-directory-search-row{justify-content:flex-start}.um-directory.uimob500 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type{width:20px;font-size:20px;line-height:20px;margin:0 5px 0 0}.um-directory.uimob500 .um-member-directory-header .um-search{grid-template-columns:repeat(1,1fr)}.um-directory.uimob500 .um-members-wrapper .um-members .um-member{width:100%}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-grid .um-gutter-sizer{width:0}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo{width:70px;margin:0 10px 0 0}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo a{width:70px;height:70px}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo a img{width:70px;height:70px}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card{width:calc(100% - 80px)}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer{align-items:flex-start}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{flex-wrap:wrap;width:calc(100% - 110px);margin:0 10px 0 0}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons .um-members-list-footer-button-wrapper{margin:0 10px 5px 0}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer.no-reveal:not(.no-photo) .um-member-card-footer-buttons{width:calc(100% - 90px)}.um-directory.uimob500 .um-members-pagination-box .um-members-pagi{display:none}.um-directory.uimob800 .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line{width:100%}.um-directory.uimob800 .um-member-directory-header .um-search{grid-template-columns:repeat(2,1fr)}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-grid .um-gutter-sizer{width:4%}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-grid .um-member{width:48%}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo{width:80px;margin:0 10px 0 0}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo a{width:80px;height:80px}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo a img{width:80px;height:80px}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card{width:calc(100% - 90px)}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer{align-items:flex-start}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{flex-wrap:wrap;width:calc(100% - 120px);margin:0 10px 0 0}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons .um-members-list-footer-button-wrapper{margin:0 10px 5px 0}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer.no-reveal:not(.no-photo) .um-member-card-footer-buttons{width:calc(100% - 100px)}.um-directory.uimob960 .um-member-directory-header .um-search{grid-template-columns:repeat(2,1fr)}.um-directory.uimob960 .um-members-wrapper .um-members.um-members-grid .um-gutter-sizer{width:4%}.um-directory.uimob960 .um-members-wrapper .um-members.um-members-grid .um-member{width:48%}.select2-container .select2-results li.select2-results__option[aria-disabled=true]{display:none} \ No newline at end of file From dca31429dbadd3cd102cabe0c8e92034b4d8823a Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 24 Apr 2024 02:42:44 +0300 Subject: [PATCH 28/50] - reviewed #1510; --- includes/core/class-member-directory-meta.php | 3 +- includes/core/class-member-directory.php | 32 ++++++++++++++----- readme.txt | 1 + 3 files changed, 27 insertions(+), 9 deletions(-) diff --git a/includes/core/class-member-directory-meta.php b/includes/core/class-member-directory-meta.php index dae20b37..8df10b14 100644 --- a/includes/core/class-member-directory-meta.php +++ b/includes/core/class-member-directory-meta.php @@ -959,7 +959,8 @@ if ( ! class_exists( 'um\core\Member_Directory_Meta' ) ) { } elseif ( 'last_login' === $sortby ) { $this->joins[] = "LEFT JOIN {$wpdb->prefix}um_metadata umm_sort ON ( umm_sort.user_id = u.ID AND umm_sort.um_key = '_um_last_login' )"; - $this->sql_order = ' ORDER BY CAST( umm_sort.um_value AS DATETIME ) DESC '; + $this->joins[] = "LEFT JOIN {$wpdb->prefix}um_metadata umm_show_login ON ( umm_show_login.user_id = u.ID AND umm_show_login.um_key = 'um_show_last_login' )"; + $this->sql_order = $wpdb->prepare( ' ORDER BY CASE ISNULL(NULLIF(umm_show_login.um_value,%s)) WHEN 0 THEN %s ELSE CAST( umm_sort.um_value AS DATETIME ) END DESC ', 'a:1:{i:0;s:3:"yes";}', '1970-01-01 00:00:00' ); } elseif ( 'last_first_name' === $sortby ) { diff --git a/includes/core/class-member-directory.php b/includes/core/class-member-directory.php index 5ff16b8f..e462fc85 100644 --- a/includes/core/class-member-directory.php +++ b/includes/core/class-member-directory.php @@ -1464,17 +1464,33 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) { } elseif ( 'last_login' === $sortby ) { $this->query_args['orderby'] = array( 'um_last_login' => 'DESC' ); + // Please use custom meta table for better results and sorting. $this->query_args['meta_query'][] = array( - 'relation' => 'OR', + 'relation' => 'AND', array( - 'key' => '_um_last_login', - 'compare' => 'EXISTS', - 'type' => 'DATETIME', + 'relation' => 'OR', + array( + 'key' => '_um_last_login', + 'compare' => 'EXISTS', + 'type' => 'DATETIME', + ), + 'um_last_login' => array( + 'key' => '_um_last_login', + 'compare' => 'NOT EXISTS', + 'type' => 'DATETIME', + ), ), - 'um_last_login' => array( - 'key' => '_um_last_login', - 'compare' => 'NOT EXISTS', - 'type' => 'DATETIME', + array( + 'relation' => 'OR', + array( + 'key' => 'um_show_last_login', + 'compare' => 'NOT EXISTS', + ), + array( + 'key' => 'um_show_last_login', + 'value' => 'a:1:{i:0;s:2:"no";}', + 'compare' => '!=', + ), ), ); unset( $this->query_args['order'] ); diff --git a/readme.txt b/readme.txt index 517fbb3f..9db19f97 100644 --- a/readme.txt +++ b/readme.txt @@ -180,6 +180,7 @@ IMPORTANT: PLEASE UPDATE THE PLUGIN TO AT LEAST VERSION 2.6.7 IMMEDIATELY. VERSI * Fixed: YouTube validation when field value is empty * Fixed: Social URLs sanitizing where user can put his social username (e.g. Instagram, Facebook) * Fixed: Using only published forms and member directories IDs on predefined pages installation +* Fixed: Member Directory before query hook when custom meta table is active = 2.8.5 2024-04-09 = From 6b4e7445270c299eab8190a42d0f6c503fdb0423 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 24 Apr 2024 02:43:59 +0300 Subject: [PATCH 29/50] - reviewed #1510; --- includes/core/class-member-directory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/core/class-member-directory.php b/includes/core/class-member-directory.php index e462fc85..2accfbce 100644 --- a/includes/core/class-member-directory.php +++ b/includes/core/class-member-directory.php @@ -1463,8 +1463,8 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) { unset( $this->query_args['order'] ); } elseif ( 'last_login' === $sortby ) { - $this->query_args['orderby'] = array( 'um_last_login' => 'DESC' ); - // Please use custom meta table for better results and sorting. + $this->query_args['orderby'] = array( 'um_last_login' => 'DESC' ); + // Please use custom meta table for better results and sorting. Here we only hide the users without visible last login date. $this->query_args['meta_query'][] = array( 'relation' => 'AND', array( From 005dabad1b0cd27c9f26fa91ecc34dafc2a108bd Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 24 Apr 2024 14:33:40 +0300 Subject: [PATCH 30/50] - fixed PHP Fatal error: Uncaught TypeError while uploading files; --- includes/core/class-uploader.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/includes/core/class-uploader.php b/includes/core/class-uploader.php index 19f6e28f..9ef60e96 100644 --- a/includes/core/class-uploader.php +++ b/includes/core/class-uploader.php @@ -1300,18 +1300,16 @@ if ( ! class_exists( 'um\core\Uploader' ) ) { } $submitted = get_user_meta( $user_id, 'submitted', true ); - $submitted = ! empty( $submitted ) ? $submitted : array(); + $submitted = ( ! empty( $submitted ) && is_array( $submitted ) ) ? $submitted : array(); $submitted[ $key ] = $new_filename; update_user_meta( $user_id, 'submitted', $submitted ); if ( $move_only ) { - $file = $user_basedir . DIRECTORY_SEPARATOR . $filename; if ( rename( $temp_file_path, $file ) ) { $new_files[ $key ] = $filename; } - } else { $file = $user_basedir . DIRECTORY_SEPARATOR . $new_filename; From 635b57be606b3fb2c8b1354f7f0cdbe9a180fba2 Mon Sep 17 00:00:00 2001 From: ashubawork Date: Wed, 24 Apr 2024 16:04:07 +0300 Subject: [PATCH 31/50] - fix sort by last login --- includes/core/class-member-directory.php | 51 +++++++++++++----------- 1 file changed, 28 insertions(+), 23 deletions(-) diff --git a/includes/core/class-member-directory.php b/includes/core/class-member-directory.php index 2accfbce..061a7ecb 100644 --- a/includes/core/class-member-directory.php +++ b/includes/core/class-member-directory.php @@ -1466,34 +1466,21 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) { $this->query_args['orderby'] = array( 'um_last_login' => 'DESC' ); // Please use custom meta table for better results and sorting. Here we only hide the users without visible last login date. $this->query_args['meta_query'][] = array( - 'relation' => 'AND', + 'relation' => 'OR', array( - 'relation' => 'OR', - array( - 'key' => '_um_last_login', - 'compare' => 'EXISTS', - 'type' => 'DATETIME', - ), - 'um_last_login' => array( - 'key' => '_um_last_login', - 'compare' => 'NOT EXISTS', - 'type' => 'DATETIME', - ), + 'key' => '_um_last_login', + 'compare' => 'EXISTS', + 'type' => 'DATETIME', ), - array( - 'relation' => 'OR', - array( - 'key' => 'um_show_last_login', - 'compare' => 'NOT EXISTS', - ), - array( - 'key' => 'um_show_last_login', - 'value' => 'a:1:{i:0;s:2:"no";}', - 'compare' => '!=', - ), + 'um_last_login' => array( + 'key' => '_um_last_login', + 'compare' => 'NOT EXISTS', + 'type' => 'DATETIME', ), ); unset( $this->query_args['order'] ); + + add_filter( 'pre_user_query', array( &$this, 'sortby_last_login' ), 10, 1 ); } elseif ( $sortby == 'last_first_name' ) { $this->query_args['meta_query'][] = array( @@ -1694,6 +1681,24 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) { return $query; } + + /** + * Sorting by last login + * + * @param object $query + * + * @return mixed + */ + public function sortby_last_login( $query ) { + if ( array_key_exists( 'um_last_login', $query->query_vars['orderby'] ) ) { + global $wpdb; + $query->query_from .= " LEFT JOIN {$wpdb->prefix}usermeta AS umm_sort ON ( umm_sort.user_id = wp_users.ID AND umm_sort.meta_key = '_um_last_login' ) "; + $query->query_from .= " LEFT JOIN {$wpdb->prefix}usermeta AS umm_show_login ON ( umm_show_login.user_id = wp_users.ID AND umm_show_login.meta_key = 'um_show_last_login' ) "; + $query->query_orderby = " ORDER BY CASE ISNULL(NULLIF(umm_show_login.meta_value,'a:1:{i:0;s:3:\"yes\";}')) WHEN 0 THEN '1970-01-01 00:00:00' ELSE CAST( umm_sort.meta_value AS DATETIME ) END DESC "; + } + return $query; + } + /** * Prepare the search line. Avoid the using mySQL statement. * From 1409de3eb4daf37277e1d073d37b13b86bd3926c Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 24 Apr 2024 17:50:52 +0300 Subject: [PATCH 32/50] - fixed form duplicate and PHP notice about empty mode; - fixed first install and login/registration forms custom fields; --- includes/admin/class-admin.php | 3 + includes/class-config.php | 138 ++++++++++++++++++++++++++++++++- includes/core/class-setup.php | 18 +---- 3 files changed, 142 insertions(+), 17 deletions(-) diff --git a/includes/admin/class-admin.php b/includes/admin/class-admin.php index 88ebb2a1..e839d293 100644 --- a/includes/admin/class-admin.php +++ b/includes/admin/class-admin.php @@ -1809,6 +1809,9 @@ if ( ! class_exists( 'um\admin\Admin' ) ) { 'post_title' => sprintf( __( 'Duplicate of %s', 'ultimate-member' ), get_the_title( $post_id ) ), 'post_status' => 'publish', 'post_author' => get_current_user_id(), + 'meta_input' => array( + '_um_mode' => get_post_meta( $post_id, '_um_mode', true ), + ), ); $n_id = wp_insert_post( $n ); diff --git a/includes/class-config.php b/includes/class-config.php index 3d3039a5..5391f9c1 100644 --- a/includes/class-config.php +++ b/includes/class-config.php @@ -279,21 +279,153 @@ if ( ! class_exists( 'um\Config' ) ) { $this->core_form_meta_all = apply_filters( 'um_core_form_meta_all', $this->core_form_meta_all ); $this->core_form_meta['register'] = array( - '_um_custom_fields' => 'a:6:{s:10:"user_login";a:15:{s:5:"title";s:8:"Username";s:7:"metakey";s:10:"user_login";s:4:"type";s:4:"text";s:5:"label";s:8:"Username";s:8:"required";i:1;s:6:"public";i:1;s:8:"editable";b:0;s:8:"validate";s:15:"unique_username";s:9:"min_chars";i:3;s:9:"max_chars";i:24;s:8:"position";s:1:"1";s:6:"in_row";s:9:"_um_row_1";s:10:"in_sub_row";s:1:"0";s:9:"in_column";s:1:"1";s:8:"in_group";s:0:"";}s:10:"user_email";a:13:{s:5:"title";s:14:"Email Address";s:7:"metakey";s:10:"user_email";s:4:"type";s:4:"text";s:5:"label";s:14:"E-mail Address";s:8:"required";i:0;s:6:"public";i:1;s:8:"editable";b:1;s:8:"validate";s:12:"unique_email";s:8:"position";s:1:"4";s:6:"in_row";s:9:"_um_row_1";s:10:"in_sub_row";s:1:"0";s:9:"in_column";s:1:"1";s:8:"in_group";s:0:"";}s:13:"user_password";a:16:{s:5:"title";s:8:"Password";s:7:"metakey";s:13:"user_password";s:4:"type";s:8:"password";s:5:"label";s:8:"Password";s:8:"required";i:1;s:6:"public";i:1;s:8:"editable";b:1;s:9:"min_chars";i:8;s:9:"max_chars";i:30;s:15:"force_good_pass";i:1;s:18:"force_confirm_pass";i:1;s:8:"position";s:1:"5";s:6:"in_row";s:9:"_um_row_1";s:10:"in_sub_row";s:1:"0";s:9:"in_column";s:1:"1";s:8:"in_group";s:0:"";}s:10:"first_name";a:12:{s:5:"title";s:10:"First Name";s:7:"metakey";s:10:"first_name";s:4:"type";s:4:"text";s:5:"label";s:10:"First Name";s:8:"required";i:0;s:6:"public";i:1;s:8:"editable";b:1;s:8:"position";s:1:"2";s:6:"in_row";s:9:"_um_row_1";s:10:"in_sub_row";s:1:"0";s:9:"in_column";s:1:"1";s:8:"in_group";s:0:"";}s:9:"last_name";a:12:{s:5:"title";s:9:"Last Name";s:7:"metakey";s:9:"last_name";s:4:"type";s:4:"text";s:5:"label";s:9:"Last Name";s:8:"required";i:0;s:6:"public";i:1;s:8:"editable";b:1;s:8:"position";s:1:"3";s:6:"in_row";s:9:"_um_row_1";s:10:"in_sub_row";s:1:"0";s:9:"in_column";s:1:"1";s:8:"in_group";s:0:"";}s:9:"_um_row_1";a:4:{s:4:"type";s:3:"row";s:2:"id";s:9:"_um_row_1";s:8:"sub_rows";s:1:"1";s:4:"cols";s:1:"1";}}', + '_um_custom_fields' => array( + 'user_login' => array( + 'title' => __( 'Username', 'ultimate-member' ), + 'metakey' => 'user_login', + 'type' => 'text', + 'label' => __( 'Username', 'ultimate-member' ), + 'required' => 1, + 'public' => 1, + 'editable' => false, + 'validate' => 'unique_username', + 'min_chars' => 3, + 'max_chars' => 24, + 'position' => '1', + 'in_row' => '_um_row_1', + 'in_sub_row' => '0', + 'in_column' => '1', + 'in_group' => '', + ), + 'user_email' => array( + 'title' => __( 'E-mail Address', 'ultimate-member' ), + 'metakey' => 'user_email', + 'type' => 'text', + 'label' => __( 'E-mail Address', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, + 'validate' => 'unique_email', + 'position' => '4', + 'in_row' => '_um_row_1', + 'in_sub_row' => '0', + 'in_column' => '1', + 'in_group' => '', + ), + 'user_password' => array( + 'title' => __( 'Password', 'ultimate-member' ), + 'metakey' => 'user_password', + 'type' => 'password', + 'label' => __( 'Password', 'ultimate-member' ), + 'required' => 1, + 'public' => 1, + 'editable' => true, + 'min_chars' => 8, + 'max_chars' => 30, + 'force_good_pass' => 1, + 'force_confirm_pass' => 1, + 'position' => '5', + 'in_row' => '_um_row_1', + 'in_sub_row' => '0', + 'in_column' => '1', + 'in_group' => '', + ), + 'first_name' => array( + 'title' => __( 'First Name', 'ultimate-member' ), + 'metakey' => 'first_name', + 'type' => 'text', + 'label' => __( 'First Name', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, + 'position' => '2', + 'in_row' => '_um_row_1', + 'in_sub_row' => '0', + 'in_column' => '1', + 'in_group' => '', + ), + 'last_name' => array( + 'title' => __( 'Last Name', 'ultimate-member' ), + 'metakey' => 'last_name', + 'type' => 'text', + 'label' => __( 'Last Name', 'ultimate-member' ), + 'required' => 0, + 'public' => 1, + 'editable' => true, + 'position' => '3', + 'in_row' => '_um_row_1', + 'in_sub_row' => '0', + 'in_column' => '1', + 'in_group' => '', + ), + '_um_row_1' => array( + 'type' => 'row', + 'id' => '_um_row_1', + 'sub_rows' => '1', + 'cols' => '1', + ), + ), '_um_mode' => 'register', '_um_core' => 'register', '_um_register_use_custom_settings' => 0, ); $this->core_form_meta['login'] = array( - '_um_custom_fields' => 'a:3:{s:8:"username";a:13:{s:5:"title";s:18:"Username or Email";s:7:"metakey";s:8:"username";s:4:"type";s:4:"text";s:5:"label";s:18:"Username or E-mail";s:8:"required";i:1;s:6:"public";i:1;s:8:"editable";b:0;s:8:"validate";s:24:"unique_username_or_email";s:8:"position";s:1:"1";s:6:"in_row";s:9:"_um_row_1";s:10:"in_sub_row";s:1:"0";s:9:"in_column";s:1:"1";s:8:"in_group";s:0:"";}s:13:"user_password";a:16:{s:5:"title";s:8:"Password";s:7:"metakey";s:13:"user_password";s:4:"type";s:8:"password";s:5:"label";s:8:"Password";s:8:"required";i:1;s:6:"public";i:1;s:8:"editable";b:1;s:9:"min_chars";i:8;s:9:"max_chars";i:30;s:15:"force_good_pass";i:1;s:18:"force_confirm_pass";i:1;s:8:"position";s:1:"2";s:6:"in_row";s:9:"_um_row_1";s:10:"in_sub_row";s:1:"0";s:9:"in_column";s:1:"1";s:8:"in_group";s:0:"";}s:9:"_um_row_1";a:4:{s:4:"type";s:3:"row";s:2:"id";s:9:"_um_row_1";s:8:"sub_rows";s:1:"1";s:4:"cols";s:1:"1";}}', + '_um_custom_fields' => array( + 'username' => array( + 'title' => __( 'Username or E-mail', 'ultimate-member' ), + 'metakey' => 'username', + 'type' => 'text', + 'label' => __( 'Username or E-mail', 'ultimate-member' ), + 'required' => 1, + 'public' => 1, + 'editable' => false, + 'validate' => 'unique_username_or_email', + 'position' => '1', + 'in_row' => '_um_row_1', + 'in_sub_row' => '0', + 'in_column' => '1', + 'in_group' => '', + ), + 'user_password' => array( + 'title' => __( 'Password', 'ultimate-member' ), + 'metakey' => 'user_password', + 'type' => 'password', + 'label' => __( 'Password', 'ultimate-member' ), + 'required' => 1, + 'public' => 1, + 'editable' => true, + 'min_chars' => 8, + 'max_chars' => 30, + 'force_good_pass' => 1, + 'force_confirm_pass' => 1, + 'position' => '2', + 'in_row' => '_um_row_1', + 'in_sub_row' => '0', + 'in_column' => '1', + 'in_group' => '', + ), + '_um_row_1' => array( + 'type' => 'row', + 'id' => '_um_row_1', + 'sub_rows' => '1', + 'cols' => '1', + ), + ), '_um_mode' => 'login', '_um_core' => 'login', '_um_login_use_custom_settings' => 0, ); $this->core_form_meta['profile'] = array( - '_um_custom_fields' => 'a:1:{s:9:"_um_row_1";a:4:{s:4:"type";s:3:"row";s:2:"id";s:9:"_um_row_1";s:8:"sub_rows";s:1:"1";s:4:"cols";s:1:"1";}}', + '_um_custom_fields' => array( + '_um_row_1' => array( + 'type' => 'row', + 'id' => '_um_row_1', + 'sub_rows' => '1', + 'cols' => '1', + ), + ), '_um_mode' => 'profile', '_um_core' => 'profile', '_um_profile_use_custom_settings' => 0, diff --git a/includes/core/class-setup.php b/includes/core/class-setup.php index ae67f0ac..304ac477 100644 --- a/includes/core/class-setup.php +++ b/includes/core/class-setup.php @@ -97,13 +97,8 @@ KEY meta_value_indx (um_value(191)) $form_id = wp_insert_post( $form ); - foreach ( UM()->config()->core_form_meta[ $id ] as $key => $value ) { - if ( '_um_custom_fields' === $key ) { - $array = maybe_unserialize( $value ); - update_post_meta( $form_id, $key, $array ); - } else { - update_post_meta( $form_id, $key, $value ); - } + foreach ( UM()->config()->core_form_meta[ $id ] as $meta_key => $meta_value ) { + update_post_meta( $form_id, $meta_key, $meta_value ); } $core_forms[ $id ] = $form_id; @@ -132,13 +127,8 @@ KEY meta_value_indx (um_value(191)) $form_id = wp_insert_post( $form ); - foreach ( UM()->config()->core_directory_meta[ $id ] as $key => $value ) { - if ( '_um_custom_fields' === $key ) { - $array = maybe_unserialize( $value ); - update_post_meta( $form_id, $key, $array ); - } else { - update_post_meta( $form_id, $key, $value ); - } + foreach ( UM()->config()->core_directory_meta[ $id ] as $meta_key => $meta_value ) { + update_post_meta( $form_id, $meta_key, $meta_value ); } $core_directories[ $id ] = $form_id; From d1862561202dcf580a737e4a6f105b869d2162be Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 25 Apr 2024 01:30:22 +0300 Subject: [PATCH 33/50] - reviewed #1512; --- includes/core/class-member-directory.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/core/class-member-directory.php b/includes/core/class-member-directory.php index 061a7ecb..d9cdea0e 100644 --- a/includes/core/class-member-directory.php +++ b/includes/core/class-member-directory.php @@ -1480,7 +1480,7 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) { ); unset( $this->query_args['order'] ); - add_filter( 'pre_user_query', array( &$this, 'sortby_last_login' ), 10, 1 ); + add_filter( 'pre_user_query', array( &$this, 'sortby_last_login' ) ); } elseif ( $sortby == 'last_first_name' ) { $this->query_args['meta_query'][] = array( @@ -1692,8 +1692,8 @@ if ( ! class_exists( 'um\core\Member_Directory' ) ) { public function sortby_last_login( $query ) { if ( array_key_exists( 'um_last_login', $query->query_vars['orderby'] ) ) { global $wpdb; - $query->query_from .= " LEFT JOIN {$wpdb->prefix}usermeta AS umm_sort ON ( umm_sort.user_id = wp_users.ID AND umm_sort.meta_key = '_um_last_login' ) "; - $query->query_from .= " LEFT JOIN {$wpdb->prefix}usermeta AS umm_show_login ON ( umm_show_login.user_id = wp_users.ID AND umm_show_login.meta_key = 'um_show_last_login' ) "; + $query->query_from .= " LEFT JOIN {$wpdb->prefix}usermeta AS umm_sort ON ( umm_sort.user_id = {$wpdb->prefix}users.ID AND umm_sort.meta_key = '_um_last_login' ) "; + $query->query_from .= " LEFT JOIN {$wpdb->prefix}usermeta AS umm_show_login ON ( umm_show_login.user_id = {$wpdb->prefix}users.ID AND umm_show_login.meta_key = 'um_show_last_login' ) "; $query->query_orderby = " ORDER BY CASE ISNULL(NULLIF(umm_show_login.meta_value,'a:1:{i:0;s:3:\"yes\";}')) WHEN 0 THEN '1970-01-01 00:00:00' ELSE CAST( umm_sort.meta_value AS DATETIME ) END DESC "; } return $query; From 4900244c4ca4894c7760e3552741b07c07c86d0f Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 25 Apr 2024 02:43:57 +0300 Subject: [PATCH 34/50] - changed the place for the icon field because select2 styling don't work properly work at the bottom of the modal; --- assets/css/um-members-rtl.min.css | 1 + assets/js/admin/common.js | 6 +- assets/js/admin/common.min.js | 2 +- includes/admin/core/class-admin-metabox.php | 98 +++++++-------------- includes/core/class-builtin.php | 84 +++++++++--------- 5 files changed, 79 insertions(+), 112 deletions(-) diff --git a/assets/css/um-members-rtl.min.css b/assets/css/um-members-rtl.min.css index e69de29b..1b0630ad 100644 --- a/assets/css/um-members-rtl.min.css +++ b/assets/css/um-members-rtl.min.css @@ -0,0 +1 @@ +.um-directory .um-member-directory-header .um-member-directory-header-row.um-member-directory-search-row{justify-content:flex-start}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-search-line label{margin:0 0 0 10px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type{margin:0 0 0 10px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a a{margin:0 0 0 5px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-member-directory-sorting-a .um-new-dropdown{right:-12px;left:auto}.um-directory .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-filters .um-member-directory-filters-a a{margin:0 0 0 5px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-datepicker-filter-type input,.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-timepicker-filter-type input{margin:0 0 0 5px!important}.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-datepicker-filter-type input:nth-child(even),.um-directory .um-member-directory-header .um-member-directory-header-row .um-search .um-search-filter.um-timepicker-filter-type input:nth-child(even){margin:0 5px 0 0!important}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag{margin:0 0 5px 10px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag:first-child{margin-left:10px}.um-directory .um-member-directory-header .um-member-directory-header-row .um-filtered-line .um-members-filter-tag .um-members-filter-remove{margin-left:0;margin-right:10px}.um-directory .um-members-wrapper .um-members.um-members-grid .um-member .um-member-card .um-members-edit-btn a.um-edit-profile-btn:before{margin-right:0;margin-left:8px}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-photo{margin:0 0 0 15px}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-content{margin:0 0 0 10px}.um-directory .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-container .um-member-card .um-member-card-actions .um-member-cog .um-new-dropdown{right:auto;left:0;text-align:right}.um-directory .um-members-pagination-box .um-members-pagi{align-items:center}.um-directory .um-members-pagination-box .um-members-pagi .pagi.pagi-arrow{transform:rotate(180deg)}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type{margin:0 0 0 2px}.um-directory.uimob340 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-sorting .um-new-dropdown{right:auto;left:0}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo{margin:0 0 0 10px}.um-directory.uimob340 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{margin:0 0 0 10px}.um-directory.uimob500 .um-member-directory-header .um-member-directory-header-row .um-member-directory-nav-line .um-member-directory-view-type{margin:0 0 0 5px}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo{margin:0 0 0 10px}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer{align-items:flex-start}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{margin:0 0 0 10px}.um-directory.uimob500 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons .um-members-list-footer-button-wrapper{margin:0 0 5px 10px}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-photo{margin:0 0 0 10px}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons{margin:0 0 0 10px}.um-directory.uimob800 .um-members-wrapper .um-members.um-members-list .um-member .um-member-card-footer .um-member-card-footer-buttons .um-members-list-footer-button-wrapper{margin:0 0 5px 10px} \ No newline at end of file diff --git a/assets/js/admin/common.js b/assets/js/admin/common.js index d3356a19..0c5d83f7 100644 --- a/assets/js/admin/common.js +++ b/assets/js/admin/common.js @@ -91,10 +91,8 @@ UM.admin = { containerCssClass : 'um-select2-icon-container' }; - if ( $iconSelector.parents('.um-admin-tri').length ) { - select2_atts.dropdownParent = $iconSelector.parents('.um-admin-tri'); - } else if ( $iconSelector.parents('._heading_text').length ) { - select2_atts.dropdownParent = $iconSelector.parents('._heading_text'); + if ( $iconSelector.parents('.um-icon-select-field-wrapper').length ) { + select2_atts.dropdownParent = $iconSelector.parents('.um-icon-select-field-wrapper'); } $iconSelector.select2( select2_atts ).on( 'change', function () { diff --git a/assets/js/admin/common.min.js b/assets/js/admin/common.min.js index 91a9e9f8..eacca538 100644 --- a/assets/js/admin/common.min.js +++ b/assets/js/admin/common.min.js @@ -1 +1 @@ -"object"!=typeof window.UM&&(window.UM={}),"object"!=typeof window.UM.admin&&(window.UM.admin={}),UM.admin={tooltip:{all:null,init:function(){var t=jQuery(".um_tooltip");0 '+t.text+""):jQuery(' '+t.text+"")}var i;n.length&&(i={ajax:{url:wp.ajax.settings.url,dataType:"json",delay:250,data:function(t){return{search:t.term,action:"um_get_icons",page:t.page||1,nonce:um_admin_scripts.nonce}},processResults:function(t,n){n.page=n.page||1;var i=[];return t.data.icons&&jQuery.each(t.data.icons,function(t,n){i.push({id:t,text:n.label})}),{results:i,pagination:{more:50*n.page '+t.text+""):jQuery(' '+t.text+"")}var e;n.length&&(e={ajax:{url:wp.ajax.settings.url,dataType:"json",delay:250,data:function(t){return{search:t.term,action:"um_get_icons",page:t.page||1,nonce:um_admin_scripts.nonce}},processResults:function(t,n){n.page=n.page||1;var e=[];return t.data.icons&&jQuery.each(t.data.icons,function(t,n){e.push({id:t,text:n.label})}),{results:e,pagination:{more:50*n.pageset_field_type ) { + $wrapper_classes[] = '_heading_text'; + } + $wrapper_classes = implode( ' ', $wrapper_classes ); + // @todo new version if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 || empty( $this->edit_mode_value ) || array_key_exists( $this->edit_mode_value, $um_icons_list ) ) { - if ( 'row' === $this->set_field_type ) { - ?> - -

- - -

- - - -
-

- - -

-
- - set_field_type ) { - ?> - -

- - - - - - - - -

- - - -
-

- - - - - - - - -

-
- - +

+ + +

+ +

+ + + + + + + + +

+ array( 'name' => 'Text Box', 'col1' => array('_title','_metakey','_help','_default','_min_chars','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_validate','_custom_validate','_max_chars'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_validate','_custom_validate','_max_chars'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -275,8 +275,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'tel' => array( 'name' => __( 'Telephone', 'ultimate-member' ), 'col1' => array('_title','_metakey','_help','_default','_min_chars','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_validate','_custom_validate','_max_chars'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_validate','_custom_validate','_max_chars'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -291,8 +291,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'number' => array( 'name' => __('Number','ultimate-member'), 'col1' => array('_title','_metakey','_help','_default','_min','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_validate','_custom_validate','_max'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_validate','_custom_validate','_max'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -307,8 +307,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'textarea' => array( 'name' => 'Textarea', 'col1' => array('_title','_metakey','_help','_height','_max_chars','_max_words','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_default','_html'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_default','_html'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -323,8 +323,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'select' => array( 'name' => 'Dropdown', 'col1' => array('_title','_metakey','_help','_default','_options','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_custom_dropdown_options_source','_parent_dropdown_relationship'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_custom_dropdown_options_source','_parent_dropdown_relationship'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -343,8 +343,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'multiselect' => array( 'name' => 'Multi-Select', 'col1' => array('_title','_metakey','_help','_default','_options','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_min_selections','_max_selections','_custom_dropdown_options_source'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_min_selections','_max_selections','_custom_dropdown_options_source'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -363,8 +363,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'radio' => array( 'name' => 'Radio', 'col1' => array('_title','_metakey','_help','_default','_options','_visibility'), - 'col2' => array('_label','_public','_roles'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_public','_roles'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -383,8 +383,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'checkbox' => array( 'name' => 'Checkbox', 'col1' => array('_title','_metakey','_help','_default','_options','_visibility'), - 'col2' => array('_label','_public','_roles','_max_selections'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_public','_roles','_max_selections'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -403,8 +403,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'url' => array( 'name' => 'URL', 'col1' => array('_title','_metakey','_help','_default','_url_text','_visibility'), - 'col2' => array('_label','_placeholder','_url_target','_url_rel','_public','_roles','_validate','_custom_validate'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_url_target','_url_rel','_public','_roles','_validate','_custom_validate'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -419,8 +419,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'password' => array( 'name' => 'Password', 'col1' => array('_title','_metakey','_help','_min_chars','_max_chars','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_force_good_pass','_force_confirm_pass','_label_confirm_pass'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_force_good_pass','_force_confirm_pass','_label_confirm_pass'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -435,8 +435,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'image' => array( 'name' => 'Image Upload', 'col1' => array('_title','_metakey','_help','_allowed_types','_max_size','_crop','_visibility'), - 'col2' => array('_label','_public','_roles','_upload_text','_upload_help_text','_button_text'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_public','_roles','_upload_text','_upload_help_text','_button_text'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -455,8 +455,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'file' => array( 'name' => 'File Upload', 'col1' => array('_title','_metakey','_help','_allowed_types','_max_size','_visibility'), - 'col2' => array('_label','_public','_roles','_upload_text','_upload_help_text','_button_text'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_public','_roles','_upload_text','_upload_help_text','_button_text'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -475,8 +475,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'date' => array( 'name' => 'Date Picker', 'col1' => array( '_title', '_metakey', '_help', '_default', '_range', '_years', '_years_x', '_range_start', '_range_end', '_visibility' ), - 'col2' => array( '_label', '_placeholder', '_public', '_roles', '_format', '_format_custom', '_pretty_format', '_disabled_weekdays' ), - 'col3' => array( '_required', '_editable', '_icon' ), + 'col2' => array( '_label', '_icon', '_placeholder', '_public', '_roles', '_format', '_format_custom', '_pretty_format', '_disabled_weekdays' ), + 'col3' => array( '_required', '_editable' ), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -501,8 +501,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'time' => array( 'name' => 'Time Picker', 'col1' => array('_title','_metakey','_help','_format','_visibility'), - 'col2' => array('_label','_placeholder','_default','_public','_roles','_intervals'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_default','_public','_roles','_intervals'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -517,8 +517,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'rating' => array( 'name' => 'Rating', 'col1' => array('_title','_metakey','_help','_visibility'), - 'col2' => array('_label','_public','_roles','_number','_default'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_public','_roles','_number','_default'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -590,8 +590,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'googlemap' => array( 'name' => 'Google Map', 'col1' => array('_title','_metakey','_help','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_validate','_custom_validate'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_validate','_custom_validate'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -606,8 +606,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'youtube_video' => array( 'name' => 'YouTube Video', 'col1' => array('_title','_metakey','_help','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_validate','_custom_validate'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_validate','_custom_validate'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -622,8 +622,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'vimeo_video' => array( 'name' => 'Vimeo Video', 'col1' => array('_title','_metakey','_help','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_validate','_custom_validate'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_validate','_custom_validate'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -638,8 +638,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'soundcloud_track' => array( 'name' => 'SoundCloud Track', 'col1' => array('_title','_metakey','_help','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_validate','_custom_validate'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_validate','_custom_validate'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -653,8 +653,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'spotify' => array( 'name' => __( 'Spotify URL', 'ultimate-member' ), 'col1' => array('_title','_metakey','_help','_visibility'), - 'col2' => array('_label','_placeholder','_public','_roles','_validate','_custom_validate'), - 'col3' => array('_required','_editable','_icon'), + 'col2' => array('_label','_icon','_placeholder','_public','_roles','_validate','_custom_validate'), + 'col3' => array('_required','_editable'), 'validate' => array( '_title' => array( 'mode' => 'required', @@ -668,8 +668,8 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'oembed' => array( 'name' => __( 'oEmbed', 'ultimate-member' ), 'col1' => array( '_title', '_metakey', '_help', '_default', '_visibility' ), - 'col2' => array( '_label', '_placeholder', '_public', '_roles', '_validate', '_custom_validate' ), - 'col3' => array( '_required', '_editable', '_icon' ), + 'col2' => array( '_label', '_icon', '_placeholder', '_public', '_roles', '_validate', '_custom_validate' ), + 'col3' => array( '_required', '_editable' ), 'validate' => array( '_title' => array( 'mode' => 'required', From 5d3128b5200e1dccefda539570bf7a845a698931 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 25 Apr 2024 03:11:12 +0300 Subject: [PATCH 35/50] - used new icons for predefined fields; --- includes/core/class-builtin.php | 40 ++++++++++++++++----------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/includes/core/class-builtin.php b/includes/core/class-builtin.php index 4e790c6f..fdae828e 100644 --- a/includes/core/class-builtin.php +++ b/includes/core/class-builtin.php @@ -251,7 +251,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'in_fields' => false, 'form_only' => true, 'conditional_support' => 0, - 'icon' => 'um-faicon-pencil', + 'icon' => 'fas fa-pencil', 'col1' => array('_id','_background','_text_color','_padding','_margin','_border','_borderradius','_borderstyle','_bordercolor'), 'col2' => array('_heading','_heading_text','_heading_background_color','_heading_text_color','_icon','_icon_color','_css_class'), ), @@ -917,7 +917,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'pretty_format' => 1, 'years' => 115, 'years_x' => 'past', - 'icon' => 'um-faicon-calendar', + 'icon' => 'far fa-calendar-days', ), 'gender' => array( @@ -956,7 +956,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-facebook', + 'icon' => 'fab fa-facebook-f', 'validate' => 'facebook_url', 'url_text' => 'Facebook', 'advanced' => 'social', @@ -974,11 +974,11 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-twitter', // 'fa-brands fa-x-twitter' for new FA styles + 'icon' => 'fab fa-square-x-twitter', 'validate' => 'twitter_url', 'url_text' => 'X', 'advanced' => 'social', - 'color' => '#4099FF', // #0f1419 for X symbol + 'color' => '#0f1419', 'match' => 'https://twitter.com/', ), @@ -992,7 +992,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-linkedin', + 'icon' => 'fab fa-linkedin-in', 'validate' => 'linkedin_url', 'url_text' => 'LinkedIn', 'advanced' => 'social', @@ -1010,7 +1010,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-instagram', + 'icon' => 'fab fa-instagram', 'validate' => 'instagram_url', 'url_text' => 'Instagram', 'advanced' => 'social', @@ -1028,7 +1028,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-skype', + 'icon' => 'fab fa-skype', 'validate' => 'skype', 'url_text' => __( 'Join chat', 'ultimate-member' ), ), @@ -1043,7 +1043,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-icon-ios-telephone', + 'icon' => 'fab fa-viber', 'validate' => 'phone_number', ), @@ -1057,7 +1057,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-icon-social-whatsapp', + 'icon' => 'fab fa-whatsapp', 'validate' => 'phone_number', ), @@ -1071,7 +1071,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-paper-plane', + 'icon' => 'fab fa-telegram', 'validate' => 'telegram_url', 'url_text' => 'Telegram', 'match' => 'https://t.me/', @@ -1100,7 +1100,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-icon-ios-musical-note', + 'icon' => 'fab fa-tiktok', 'validate' => 'tiktok_url', 'url_text' => 'TikTok', 'advanced' => 'social', @@ -1116,7 +1116,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'required' => 0, 'public' => 1, 'editable' => true, - 'icon' => 'um-faicon-twitch', + 'icon' => 'fab fa-twitch', 'url_target' => '_blank', 'url_rel' => 'nofollow', 'validate' => 'twitch_url', @@ -1134,7 +1134,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'required' => 0, 'public' => 1, 'editable' => true, - 'icon' => 'um-icon-social-reddit', + 'icon' => 'fab fa-reddit-alien', 'url_target' => '_blank', 'url_rel' => 'nofollow', 'validate' => 'reddit_url', @@ -1154,7 +1154,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-youtube', + 'icon' => 'fab fa-youtube', 'validate' => 'youtube_url', 'url_text' => __( 'YouTube', 'ultimate-member' ), 'advanced' => 'social', @@ -1175,7 +1175,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'editable' => true, 'url_target' => '_blank', 'url_rel' => 'nofollow', - 'icon' => 'um-faicon-soundcloud', + 'icon' => 'fab fa-soundcloud', 'validate' => 'soundcloud_url', 'url_text' => 'SoundCloud', 'advanced' => 'social', @@ -1227,7 +1227,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'public' => 1, 'editable' => true, 'validate' => 'phone_number', - 'icon' => 'um-faicon-phone', + 'icon' => 'fas fa-phone', ), 'mobile_number' => array( @@ -1239,7 +1239,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'public' => 1, 'editable' => true, 'validate' => 'phone_number', - 'icon' => 'um-faicon-mobile', + 'icon' => 'fas fa-mobile-screen', ), // private use ( not public list ) @@ -1250,7 +1250,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'type' => 'image', 'label' => __('Change your profile photo','ultimate-member'), 'upload_text' => __('Upload your photo here','ultimate-member'), - 'icon' => 'um-faicon-camera', + 'icon' => 'fas fa-camera', 'crop' => 1, 'max_size' => ( UM()->options()->get('profile_photo_max_size') ) ? UM()->options()->get('profile_photo_max_size') : 999999999, 'min_width' => str_replace('px','',UM()->options()->get('profile_photosize')), @@ -1264,7 +1264,7 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'type' => 'image', 'label' => __('Change your cover photo','ultimate-member'), 'upload_text' => __('Upload profile cover here','ultimate-member'), - 'icon' => 'um-faicon-picture-o', + 'icon' => 'far fa-image', 'crop' => 2, 'max_size' => ( UM()->options()->get('cover_photo_max_size') ) ? UM()->options()->get('cover_photo_max_size') : 999999999, 'modal_size' => 'large', From 3ff15433fb219eede8e6e4e61b5dfa606d083250 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 25 Apr 2024 14:13:07 +0300 Subject: [PATCH 36/50] - discord field icon; --- includes/core/class-builtin.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/core/class-builtin.php b/includes/core/class-builtin.php index fdae828e..cae769cb 100644 --- a/includes/core/class-builtin.php +++ b/includes/core/class-builtin.php @@ -1085,9 +1085,12 @@ if ( ! class_exists( 'um\core\Builtin' ) ) { 'required' => 0, 'public' => 1, 'editable' => true, + 'icon' => 'fab fa-discord', 'url_target' => '_blank', + 'url_text' => __( 'Discord', 'ultimate-member' ), 'url_rel' => 'nofollow', 'validate' => 'discord', + 'color' => '#7289da', ), 'tiktok' => array( From 3581da4a6ff5acf71ed0939a7f35fe59c64f82cf Mon Sep 17 00:00:00 2001 From: ashubawork Date: Tue, 30 Apr 2024 13:00:58 +0300 Subject: [PATCH 37/50] - fix rating field view --- includes/core/um-filters-fields.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/includes/core/um-filters-fields.php b/includes/core/um-filters-fields.php index 251d4e63..d25d7276 100644 --- a/includes/core/um-filters-fields.php +++ b/includes/core/um-filters-fields.php @@ -679,16 +679,15 @@ add_filter( 'um_get_custom_field_array', 'um_get_custom_field_array', 99, 2 ); * @return mixed */ function um_force_utf8_fields( $value, $data, $type = '' ) { - - if( ! UM()->options()->get('um_force_utf8_strings') ) + if ( ! UM()->options()->get( 'um_force_utf8_strings' ) ) { return $value; - - $value = um_force_utf8_string( $value ); - - return $value; - } -add_filter('um_profile_field_filter_hook__','um_force_utf8_fields', 9, 3 ); + + $value = um_force_utf8_string( $value ); + + return $value; +} +add_filter( 'um_profile_field_filter_hook__', 'um_force_utf8_fields', 9, 3 ); /** @@ -855,7 +854,7 @@ function um_profile_field_filter_xss_validation( $value, $data, $type = '' ) { $value = 0; } } elseif ( 10 === $data['number'] ) { - if ( ! in_array( $value, range( 1, 10 ), true ) ) { + if ( ! in_array( absint( $value ), range( 1, 10 ), true ) ) { $value = 0; } } From 93de64ed75dcb59ffb6ce5d65091524f3a6d4095 Mon Sep 17 00:00:00 2001 From: ashubawork Date: Tue, 30 Apr 2024 13:08:23 +0300 Subject: [PATCH 38/50] - small fix --- includes/core/um-filters-fields.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/core/um-filters-fields.php b/includes/core/um-filters-fields.php index d25d7276..8576e68a 100644 --- a/includes/core/um-filters-fields.php +++ b/includes/core/um-filters-fields.php @@ -850,7 +850,7 @@ function um_profile_field_filter_xss_validation( $value, $data, $type = '' ) { $value = 0; } else { if ( 5 === absint( $data['number'] ) ) { - if ( ! in_array( $value, range( 1, 5 ), true ) ) { + if ( ! in_array( absint( $value ), range( 1, 5 ), true ) ) { $value = 0; } } elseif ( 10 === $data['number'] ) { From 13f2b9435128b1973a68b8d2b6d579f3512e2f96 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Tue, 30 Apr 2024 17:55:19 +0300 Subject: [PATCH 39/50] - changed texts; --- includes/admin/core/class-admin-forms.php | 2 +- includes/admin/core/class-admin-metabox.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/admin/core/class-admin-forms.php b/includes/admin/core/class-admin-forms.php index 996b13e5..93cd0a13 100644 --- a/includes/admin/core/class-admin-forms.php +++ b/includes/admin/core/class-admin-forms.php @@ -572,7 +572,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Forms' ) ) { $html .= ''; - $html .= '' . esc_html__( 'Icon is outdated. Please set the new one above.', 'ultimate-member' ) . ' + $html .= '' . esc_html__( 'The selected icon is using an outdated version. Please select the icon above to use latest version.', 'ultimate-member' ) . ' '; $html .= ''; diff --git a/includes/admin/core/class-admin-metabox.php b/includes/admin/core/class-admin-metabox.php index 0006fd2c..f4679337 100644 --- a/includes/admin/core/class-admin-metabox.php +++ b/includes/admin/core/class-admin-metabox.php @@ -1587,7 +1587,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Metabox' ) ) { - + From a04c244b970d8bdc94169532c0c31b64580e982f Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 1 May 2024 23:52:22 +0300 Subject: [PATCH 40/50] - updated version; --- ultimate-member.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ultimate-member.php b/ultimate-member.php index e3538615..879d4866 100644 --- a/ultimate-member.php +++ b/ultimate-member.php @@ -3,7 +3,7 @@ * Plugin Name: Ultimate Member * Plugin URI: http://ultimatemember.com/ * Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress - * Version: 2.8.6-alpha + * Version: 2.8.6 * Author: Ultimate Member * Author URI: http://ultimatemember.com/ * Text Domain: ultimate-member From 3b63b19cbbb8506c1340e88fb782a6ce7de9c727 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 2 May 2024 13:13:19 +0300 Subject: [PATCH 41/50] - added um-confirm JS library for better UI with js.confirm interfaces; --- assets/libs/um-confirm/um-confirm.css | 65 +++++++++ assets/libs/um-confirm/um-confirm.js | 154 ++++++++++++++++++++++ assets/libs/um-confirm/um-confirm.min.css | 1 + assets/libs/um-confirm/um-confirm.min.js | 1 + gulpfile.js | 10 ++ includes/common/class-enqueue.php | 9 +- 6 files changed, 237 insertions(+), 3 deletions(-) create mode 100755 assets/libs/um-confirm/um-confirm.css create mode 100755 assets/libs/um-confirm/um-confirm.js create mode 100755 assets/libs/um-confirm/um-confirm.min.css create mode 100755 assets/libs/um-confirm/um-confirm.min.js diff --git a/assets/libs/um-confirm/um-confirm.css b/assets/libs/um-confirm/um-confirm.css new file mode 100755 index 00000000..bb7ff4f1 --- /dev/null +++ b/assets/libs/um-confirm/um-confirm.css @@ -0,0 +1,65 @@ +#um_confirm_block { + display: none; +} + +#um_confirm_block_back { + background-color: rgba( 0,0,0, 0.2); + width: 100%; + height: 100%; + position: fixed; + left: 0; + top: 0; + z-index: 2147483646; +} + +.um_confirm { + position: fixed; + color: #fff; + width: 400px; + background-color: rgb( 0,0,0); + left: 50%; + top: 50%; + z-index: 2147483647; + /*display: none;*/ +} + +.um_confirm #um_confirm_title { + background-color: rgba(0, 0, 0, 0.4); + border-bottom: 1px solid #5c5c5c; + color: #cccccc; + font-weight: bold; + height: 15px; + padding: 10px; + text-align: center; + width: calc(100% - 20px); +} + +.um_confirm #um_confirm_message { + width: calc(100% - 40px); + text-align: center; + padding: 20px; +} + +.um_confirm #um_confirm_buttons { + height: 40px; + width: 100%; +} + +.um_confirm .um_confirm_button { + /*font-family: verdana, arial;*/ + border-top: 1px solid #5c5c5c; + color: #aaa; + font-size: 15px; + font-weight: bold; + float: left; + line-height: 40px; + text-align: center; + width: 50%; + cursor: pointer; +} + +.um_confirm .um_confirm_button:hover { + background-color: rgba(0, 0, 0, 0.6); + border-top: 1px solid #fff; + color: #fff; +} diff --git a/assets/libs/um-confirm/um-confirm.js b/assets/libs/um-confirm/um-confirm.js new file mode 100755 index 00000000..559b8f55 --- /dev/null +++ b/assets/libs/um-confirm/um-confirm.js @@ -0,0 +1,154 @@ +/* + * WPO Confirm Plugin + * Open dialog popup (YES/NO) + */ + +(function( $, undefined ) { + var options; + + var default_options = { + 'message' : '', + 'yes_label' : 'Yes', + 'no_label' : 'No' + }; + + var methods = { + init : function( settings ) { + //merge default & current options + options = $.extend( {}, default_options, settings ); + + $( this ).each( function() { + + $( this ).data( 'options', options ); + + methods.build.apply( $( this ), [options] ); + + //init links clicks for show confirm + $( this ).click( function(e) { + var options = $( this ).data( 'options' ); + $( '#um_confirm_message' ).html( options.message ); + $( '#um_confirm_button_yes' ).html( options.yes_label ); + $( '#um_confirm_button_no' ).html( options.no_label ); + + methods.show.apply( this ); + + e.stopPropagation(); + }); + + }); + + }, + build : function( settings ) { + + if( !methods.is_builded.apply( this ) ) { + + var obj = $( '
').appendTo( 'body' ).html( '
' + + '
Confirmation
' + + '
' + + '
' + + '
Yes
' + + '
No
' + + '
' + + '
' + + '
' ); + + $( document ).on( 'click', '#um_confirm_button_yes', function() { + var obj = $( '#um_confirm_block').data( 'obj' ); + methods.yes.apply( obj ); + }); + + $( document ).on( 'click', '#um_confirm_button_no', function() { + var obj = $( '#um_confirm_block').data( 'obj' ); + methods.no.apply( obj ); + }); + + $( document ).on( 'click', '#um_confirm_block_back', function() { + var obj = $( '#um_confirm_block').data( 'obj' ); + methods.close.apply( obj ); + }); + + + } + }, + is_builded : function() { + //return confirm already exists + return $('#um_confirm_block').length; + }, + show : function() { + $( '#um_confirm_block').data( 'obj', this ).show(); + var width = $('.um_confirm').width(); + var height = $('.um_confirm').height(); + $('.um_confirm').css('margin', '-' + height/2 + 'px 0 0 -' + width/2 + 'px' ); + }, + close : function() { + var opt = $( this ).data( 'options' ); + + $( '#um_confirm_message' ).html( '' ); + $( '#um_confirm_block' ).hide(); + + if( typeof opt.onClose === "function" ) { + opt.onClose.apply( this ); + } + }, + yes : function() { + var opt = $( this ).data( 'options' ); + + var data = {}; + if( $( '#um_confirm_block').find('form').length ) { + var temp = $( '#um_confirm_block').find('form').serializeArray(); + for( key in temp ) { + data[ temp[ key ]['name'] ] = temp[ key ]['value']; + } + } + + methods.close.apply( this ); + + if( typeof opt.onYes === "function" ) { + opt.onYes.apply( this, [ data ] ); + } + }, + no : function() { + var opt = $( this ).data( 'options' ); + + var data = {}; + if( $( '#um_confirm_block').find('form').length ) { + var temp = $( '#um_confirm_block').find('form').serializeArray(); + for( key in temp ) { + data[ temp[ key ]['name'] ] = temp[ key ]['value']; + } + } + + methods.close.apply( this ); + + if( typeof opt.onNo === "function" ) { + opt.onNo.apply( this, [ data ] ); + } + } + }; + + $.fn.um_confirm = function( method ) { + if( methods[method] ) { + return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ) ); + } else if ( typeof method === 'object' || ! method ) { + return methods.init.apply( this, arguments ); + } else { + $.error( 'Method ' + method + ' does not exist for jQuery.um_confirm plugin' ); + } + }; + + $.um_confirm = function( settings ) { + options = $.extend( {}, default_options, settings ); + $( settings.object ).data( 'options', options ); + + + methods.build.apply( $( settings.object ), [options] ); + if ( options.title ) { + $( '#um_confirm_title' ).html( options.title ); + } + $( '#um_confirm_message' ).html( options.message ); + $( '#um_confirm_button_yes' ).html( options.yes_label ); + $( '#um_confirm_button_no' ).html( options.no_label ); + methods.show.apply( settings.object ); + } + +})( jQuery ); diff --git a/assets/libs/um-confirm/um-confirm.min.css b/assets/libs/um-confirm/um-confirm.min.css new file mode 100755 index 00000000..f574725d --- /dev/null +++ b/assets/libs/um-confirm/um-confirm.min.css @@ -0,0 +1 @@ +#um_confirm_block{display:none}#um_confirm_block_back{background-color:rgba(0,0,0,.2);width:100%;height:100%;position:fixed;left:0;top:0;z-index:2147483646}.um_confirm{position:fixed;color:#fff;width:400px;background-color:#000;left:50%;top:50%;z-index:2147483647}.um_confirm #um_confirm_title{background-color:rgba(0,0,0,.4);border-bottom:1px solid #5c5c5c;color:#ccc;font-weight:700;height:15px;padding:10px;text-align:center;width:calc(100% - 20px)}.um_confirm #um_confirm_message{width:calc(100% - 40px);text-align:center;padding:20px}.um_confirm #um_confirm_buttons{height:40px;width:100%}.um_confirm .um_confirm_button{border-top:1px solid #5c5c5c;color:#aaa;font-size:15px;font-weight:700;float:left;line-height:40px;text-align:center;width:50%;cursor:pointer}.um_confirm .um_confirm_button:hover{background-color:rgba(0,0,0,.6);border-top:1px solid #fff;color:#fff} \ No newline at end of file diff --git a/assets/libs/um-confirm/um-confirm.min.js b/assets/libs/um-confirm/um-confirm.min.js new file mode 100755 index 00000000..41b9aff5 --- /dev/null +++ b/assets/libs/um-confirm/um-confirm.min.js @@ -0,0 +1 @@ +!function(t){var i,n={message:"",yes_label:"Yes",no_label:"No"},m={init:function(o){i=t.extend({},n,o),t(this).each(function(){t(this).data("options",i),m.build.apply(t(this),[i]),t(this).click(function(o){var i=t(this).data("options");t("#um_confirm_message").html(i.message),t("#um_confirm_button_yes").html(i.yes_label),t("#um_confirm_button_no").html(i.no_label),m.show.apply(this),o.stopPropagation()})})},build:function(o){m.is_builded.apply(this)||(t('
').appendTo("body").html('
Confirmation
Yes
No
'),t(document).on("click","#um_confirm_button_yes",function(){var o=t("#um_confirm_block").data("obj");m.yes.apply(o)}),t(document).on("click","#um_confirm_button_no",function(){var o=t("#um_confirm_block").data("obj");m.no.apply(o)}),t(document).on("click","#um_confirm_block_back",function(){var o=t("#um_confirm_block").data("obj");m.close.apply(o)}))},is_builded:function(){return t("#um_confirm_block").length},show:function(){t("#um_confirm_block").data("obj",this).show();var o=t(".um_confirm").width(),i=t(".um_confirm").height();t(".um_confirm").css("margin","-"+i/2+"px 0 0 -"+o/2+"px")},close:function(){var o=t(this).data("options");t("#um_confirm_message").html(""),t("#um_confirm_block").hide(),"function"==typeof o.onClose&&o.onClose.apply(this)},yes:function(){var o=t(this).data("options"),i={};if(t("#um_confirm_block").find("form").length){var n=t("#um_confirm_block").find("form").serializeArray();for(key in n)i[n[key].name]=n[key].value}m.close.apply(this),"function"==typeof o.onYes&&o.onYes.apply(this,[i])},no:function(){var o=t(this).data("options"),i={};if(t("#um_confirm_block").find("form").length){var n=t("#um_confirm_block").find("form").serializeArray();for(key in n)i[n[key].name]=n[key].value}m.close.apply(this),"function"==typeof o.onNo&&o.onNo.apply(this,[i])}};t.fn.um_confirm=function(o){return m[o]?m[o].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof o&&o?void t.error("Method "+o+" does not exist for jQuery.um_confirm plugin"):m.init.apply(this,arguments)},t.um_confirm=function(o){i=t.extend({},n,o),t(o.object).data("options",i),m.build.apply(t(o.object),[i]),t("#um_confirm_message").html(i.message),t("#um_confirm_button_yes").html(i.yes_label),t("#um_confirm_button_no").html(i.no_label),m.show.apply(o.object)}}(jQuery); \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index 12039bd5..7f87ebbf 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -265,6 +265,16 @@ function defaultTask( done ) { .pipe( rename({ suffix: '.min' }) ) .pipe( dest( 'assets/libs/tipsy/' ) ); + // UM Confirm lib + src(['assets/libs/um-confirm/*.css', '!assets/libs/um-confirm/*.min.css',]) + .pipe( cleanCSS() ) + .pipe( rename( { suffix: '.min' } ) ) + .pipe( dest( 'assets/libs/um-confirm/' ) ); + src(['assets/libs/um-confirm/*.js', '!assets/libs/um-confirm/*.min.js',]) + .pipe( uglify() ) + .pipe( rename({ suffix: '.min' }) ) + .pipe( dest( 'assets/libs/um-confirm/' ) ); + // Pickadate lib src(['assets/libs/pickadate/*.css', '!assets/libs/pickadate/*.min.css',]) .pipe( cleanCSS() ) diff --git a/includes/common/class-enqueue.php b/includes/common/class-enqueue.php index 55bd5a8e..5b7476ef 100644 --- a/includes/common/class-enqueue.php +++ b/includes/common/class-enqueue.php @@ -260,6 +260,9 @@ class Enqueue { wp_register_script( 'um_tipsy', $libs_url . 'tipsy/tipsy' . $suffix . '.js', array( 'jquery' ), '1.0.0a', true ); wp_register_style( 'um_tipsy', $libs_url . 'tipsy/tipsy' . $suffix . '.css', array(), '1.0.0a' ); + wp_register_script( 'um_confirm', $libs_url . 'um-confirm/um-confirm' . $suffix . '.js', array( 'jquery' ), '1.0', true ); + wp_register_style( 'um_confirm', $libs_url . 'um-confirm/um-confirm' . $suffix . '.css', array(), '1.0' ); + // Raty JS for rating field-type. wp_register_script( 'um_raty', $libs_url . 'raty/um-raty' . $suffix . '.js', array( 'jquery', 'wp-i18n' ), '2.6.0', true ); wp_set_script_translations( 'um_raty', 'ultimate-member' ); @@ -273,7 +276,7 @@ class Enqueue { // @todo new version // First install set this option to true by default and use new FontAwesome icons wp_register_style( 'um_fontawesome', $css_url . 'um-fontawesome' . $suffix . '.css', array(), self::$fa_version ); // New FontAwesome - $fonticons_handlers[] = 'um_fontawesome'; + $fonticons_handlers[] = 'um_fontawesome'; self::$fonticons_handlers = $fonticons_handlers; // Select2 JS. @@ -284,7 +287,7 @@ class Enqueue { wp_register_script( 'um_datetime_date', $libs_url . 'pickadate/picker.date' . $suffix . '.js', array( 'um_datetime' ), '3.6.2', true ); wp_register_script( 'um_datetime_time', $libs_url . 'pickadate/picker.time' . $suffix . '.js', array( 'um_datetime' ), '3.6.2', true ); - $common_js_deps = array( 'jquery', 'wp-util', 'wp-hooks', 'wp-i18n', 'um_tipsy', 'um_datetime_date', 'um_datetime_time' ); + $common_js_deps = array( 'jquery', 'wp-util', 'wp-hooks', 'wp-i18n', 'um_tipsy', 'um_confirm', 'um_datetime_date', 'um_datetime_time' ); // Load a localized version for date/time. $locale = $this->get_pickadate_locale(); @@ -326,7 +329,7 @@ class Enqueue { $um_common_variables = apply_filters( 'um_common_js_variables', $um_common_variables ); wp_localize_script( 'um_common', 'um_common_variables', $um_common_variables ); - $common_css_deps = array_merge( array( 'um_tipsy', 'um_datetime_date', 'um_datetime_time' ), self::$fonticons_handlers ); + $common_css_deps = array_merge( array( 'um_tipsy', 'um_confirm', 'um_datetime_date', 'um_datetime_time' ), self::$fonticons_handlers ); wp_register_style( 'um_common', $css_url . 'common' . $suffix . '.css', $common_css_deps, UM_VERSION ); } } From 38a9112d7415e8422b3e1e6e246f431421bdfdab Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Fri, 3 May 2024 14:02:55 +0300 Subject: [PATCH 42/50] - added JS function for handling form data and get serialized value; --- assets/js/common.js | 20 ++++++++++++++++++++ assets/js/common.min.js | 2 +- assets/libs/um-confirm/um-confirm.min.js | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/assets/js/common.js b/assets/js/common.js index 1bacdb00..bafe3dbf 100644 --- a/assets/js/common.js +++ b/assets/js/common.js @@ -118,6 +118,26 @@ UM.common = { } return ""; } + }, + form: { + vanillaSerialize: function ( formID ) { + let form = document.querySelector('#' + formID); + let data = new FormData( form ); + + let obj = {}; + for (let [key, value] of data) { + if (obj[key] !== undefined) { + if (!Array.isArray(obj[key])) { + obj[key] = [obj[key]]; + } + obj[key].push(value); + } else { + obj[key] = value; + } + } + + return obj; + } } } diff --git a/assets/js/common.min.js b/assets/js/common.min.js index 1f411df5..5ccb2ecf 100644 --- a/assets/js/common.min.js +++ b/assets/js/common.min.js @@ -1 +1 @@ -"object"!=typeof window.UM&&(window.UM={}),"object"!=typeof UM.common&&(UM.common={}),UM.common={tipsy:{init:function(){"function"==typeof jQuery.fn.tipsy&&(jQuery(".um-tip-n").tipsy({gravity:"n",opacity:1,live:"a.live",offset:3}),jQuery(".um-tip-w").tipsy({gravity:"w",opacity:1,live:"a.live",offset:3}),jQuery(".um-tip-e").tipsy({gravity:"e",opacity:1,live:"a.live",offset:3}),jQuery(".um-tip-s").tipsy({gravity:"s",opacity:1,live:"a.live",offset:3}))},hide:function(){"function"==typeof jQuery.fn.tipsy&&(jQuery(".um-tip-n").tipsy("hide"),jQuery(".um-tip-w").tipsy("hide"),jQuery(".um-tip-e").tipsy("hide"),jQuery(".um-tip-s").tipsy("hide"),jQuery(".um .tipsy").remove())}},datetimePicker:{init:function(){jQuery(".um-datepicker:not(.picker__input)").each(function(){e=void 0!==(elem=jQuery(this)).attr("data-disabled_weekdays")&&""!=elem.attr("data-disabled_weekdays")&&JSON.parse(elem.attr("data-disabled_weekdays"));var e,t=null,i=(void 0!==elem.attr("data-years")&&(t=elem.attr("data-years")),elem.attr("data-date_min")),a=elem.attr("data-date_max"),n=[],o=[],i=(void 0!==i&&(n=i.split(",")),void 0!==a&&(o=a.split(",")),n.length?new Date(n):null),a=n.length?new Date(o):null,o=(i&&"Invalid Date"==i.toString()&&3==n.length&&(n=n[1]+"/"+n[2]+"/"+n[0],i=new Date(Date.parse(n))),a&&"Invalid Date"==a.toString()&&3==o.length&&(n=o[1]+"/"+o[2]+"/"+o[0],a=new Date(Date.parse(n))),{disable:e,format:elem.attr("data-format"),formatSubmit:"yyyy/mm/dd",hiddenName:!0,onOpen:function(){elem.blur(),elem.parents("body").hasClass("wp-admin")&&elem.siblings(".picker").find(".picker__button--close").addClass("button")},onClose:function(){elem.blur()}});null!==t&&(o.selectYears=t),null!==i&&(o.min=i),null!==a&&(o.max=a),elem.pickadate(o)}),jQuery(".um-timepicker:not(.picker__input)").each(function(){(elem=jQuery(this)).pickatime({format:elem.attr("data-format"),interval:parseInt(elem.attr("data-intervals")),formatSubmit:"HH:i",hiddenName:!0,onOpen:function(){elem.blur()},onClose:function(){elem.blur()}})})}},select:{isSelected:function(e,t){return e===t?' selected="selected"':""}}},jQuery(document).on("ajaxStart",function(){UM.common.tipsy.hide()}),jQuery(document).on("ajaxSuccess",function(){UM.common.tipsy.init()}),jQuery(document).ready(function(){UM.common.tipsy.init(),UM.common.datetimePicker.init()}); \ No newline at end of file +"object"!=typeof window.UM&&(window.UM={}),"object"!=typeof UM.common&&(UM.common={}),UM.common={tipsy:{init:function(){"function"==typeof jQuery.fn.tipsy&&(jQuery(".um-tip-n").tipsy({gravity:"n",opacity:1,live:"a.live",offset:3}),jQuery(".um-tip-w").tipsy({gravity:"w",opacity:1,live:"a.live",offset:3}),jQuery(".um-tip-e").tipsy({gravity:"e",opacity:1,live:"a.live",offset:3}),jQuery(".um-tip-s").tipsy({gravity:"s",opacity:1,live:"a.live",offset:3}))},hide:function(){"function"==typeof jQuery.fn.tipsy&&(jQuery(".um-tip-n").tipsy("hide"),jQuery(".um-tip-w").tipsy("hide"),jQuery(".um-tip-e").tipsy("hide"),jQuery(".um-tip-s").tipsy("hide"),jQuery(".um .tipsy").remove())}},datetimePicker:{init:function(){jQuery(".um-datepicker:not(.picker__input)").each(function(){e=void 0!==(elem=jQuery(this)).attr("data-disabled_weekdays")&&""!=elem.attr("data-disabled_weekdays")&&JSON.parse(elem.attr("data-disabled_weekdays"));var e,t=null,i=(void 0!==elem.attr("data-years")&&(t=elem.attr("data-years")),elem.attr("data-date_min")),a=elem.attr("data-date_max"),n=[],o=[],i=(void 0!==i&&(n=i.split(",")),void 0!==a&&(o=a.split(",")),n.length?new Date(n):null),a=n.length?new Date(o):null,o=(i&&"Invalid Date"==i.toString()&&3==n.length&&(n=n[1]+"/"+n[2]+"/"+n[0],i=new Date(Date.parse(n))),a&&"Invalid Date"==a.toString()&&3==o.length&&(n=o[1]+"/"+o[2]+"/"+o[0],a=new Date(Date.parse(n))),{disable:e,format:elem.attr("data-format"),formatSubmit:"yyyy/mm/dd",hiddenName:!0,onOpen:function(){elem.blur(),elem.parents("body").hasClass("wp-admin")&&elem.siblings(".picker").find(".picker__button--close").addClass("button")},onClose:function(){elem.blur()}});null!==t&&(o.selectYears=t),null!==i&&(o.min=i),null!==a&&(o.max=a),elem.pickadate(o)}),jQuery(".um-timepicker:not(.picker__input)").each(function(){(elem=jQuery(this)).pickatime({format:elem.attr("data-format"),interval:parseInt(elem.attr("data-intervals")),formatSubmit:"HH:i",hiddenName:!0,onOpen:function(){elem.blur()},onClose:function(){elem.blur()}})})}},select:{isSelected:function(e,t){return e===t?' selected="selected"':""}},form:{vanillaSerialize:function(e){var t,i,e=document.querySelector("#"+e),a={};for([t,i]of new FormData(e))void 0!==a[t]?(Array.isArray(a[t])||(a[t]=[a[t]]),a[t].push(i)):a[t]=i;return a}}},jQuery(document).on("ajaxStart",function(){UM.common.tipsy.hide()}),jQuery(document).on("ajaxSuccess",function(){UM.common.tipsy.init()}),jQuery(document).ready(function(){UM.common.tipsy.init(),UM.common.datetimePicker.init()}); \ No newline at end of file diff --git a/assets/libs/um-confirm/um-confirm.min.js b/assets/libs/um-confirm/um-confirm.min.js index 41b9aff5..08291bc2 100755 --- a/assets/libs/um-confirm/um-confirm.min.js +++ b/assets/libs/um-confirm/um-confirm.min.js @@ -1 +1 @@ -!function(t){var i,n={message:"",yes_label:"Yes",no_label:"No"},m={init:function(o){i=t.extend({},n,o),t(this).each(function(){t(this).data("options",i),m.build.apply(t(this),[i]),t(this).click(function(o){var i=t(this).data("options");t("#um_confirm_message").html(i.message),t("#um_confirm_button_yes").html(i.yes_label),t("#um_confirm_button_no").html(i.no_label),m.show.apply(this),o.stopPropagation()})})},build:function(o){m.is_builded.apply(this)||(t('
').appendTo("body").html('
Confirmation
Yes
No
'),t(document).on("click","#um_confirm_button_yes",function(){var o=t("#um_confirm_block").data("obj");m.yes.apply(o)}),t(document).on("click","#um_confirm_button_no",function(){var o=t("#um_confirm_block").data("obj");m.no.apply(o)}),t(document).on("click","#um_confirm_block_back",function(){var o=t("#um_confirm_block").data("obj");m.close.apply(o)}))},is_builded:function(){return t("#um_confirm_block").length},show:function(){t("#um_confirm_block").data("obj",this).show();var o=t(".um_confirm").width(),i=t(".um_confirm").height();t(".um_confirm").css("margin","-"+i/2+"px 0 0 -"+o/2+"px")},close:function(){var o=t(this).data("options");t("#um_confirm_message").html(""),t("#um_confirm_block").hide(),"function"==typeof o.onClose&&o.onClose.apply(this)},yes:function(){var o=t(this).data("options"),i={};if(t("#um_confirm_block").find("form").length){var n=t("#um_confirm_block").find("form").serializeArray();for(key in n)i[n[key].name]=n[key].value}m.close.apply(this),"function"==typeof o.onYes&&o.onYes.apply(this,[i])},no:function(){var o=t(this).data("options"),i={};if(t("#um_confirm_block").find("form").length){var n=t("#um_confirm_block").find("form").serializeArray();for(key in n)i[n[key].name]=n[key].value}m.close.apply(this),"function"==typeof o.onNo&&o.onNo.apply(this,[i])}};t.fn.um_confirm=function(o){return m[o]?m[o].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof o&&o?void t.error("Method "+o+" does not exist for jQuery.um_confirm plugin"):m.init.apply(this,arguments)},t.um_confirm=function(o){i=t.extend({},n,o),t(o.object).data("options",i),m.build.apply(t(o.object),[i]),t("#um_confirm_message").html(i.message),t("#um_confirm_button_yes").html(i.yes_label),t("#um_confirm_button_no").html(i.no_label),m.show.apply(o.object)}}(jQuery); \ No newline at end of file +!function(t){var i,n={message:"",yes_label:"Yes",no_label:"No"},m={init:function(o){i=t.extend({},n,o),t(this).each(function(){t(this).data("options",i),m.build.apply(t(this),[i]),t(this).click(function(o){var i=t(this).data("options");t("#um_confirm_message").html(i.message),t("#um_confirm_button_yes").html(i.yes_label),t("#um_confirm_button_no").html(i.no_label),m.show.apply(this),o.stopPropagation()})})},build:function(o){m.is_builded.apply(this)||(t('
').appendTo("body").html('
Confirmation
Yes
No
'),t(document).on("click","#um_confirm_button_yes",function(){var o=t("#um_confirm_block").data("obj");m.yes.apply(o)}),t(document).on("click","#um_confirm_button_no",function(){var o=t("#um_confirm_block").data("obj");m.no.apply(o)}),t(document).on("click","#um_confirm_block_back",function(){var o=t("#um_confirm_block").data("obj");m.close.apply(o)}))},is_builded:function(){return t("#um_confirm_block").length},show:function(){t("#um_confirm_block").data("obj",this).show();var o=t(".um_confirm").width(),i=t(".um_confirm").height();t(".um_confirm").css("margin","-"+i/2+"px 0 0 -"+o/2+"px")},close:function(){var o=t(this).data("options");t("#um_confirm_message").html(""),t("#um_confirm_block").hide(),"function"==typeof o.onClose&&o.onClose.apply(this)},yes:function(){var o=t(this).data("options"),i={};if(t("#um_confirm_block").find("form").length){var n=t("#um_confirm_block").find("form").serializeArray();for(key in n)i[n[key].name]=n[key].value}m.close.apply(this),"function"==typeof o.onYes&&o.onYes.apply(this,[i])},no:function(){var o=t(this).data("options"),i={};if(t("#um_confirm_block").find("form").length){var n=t("#um_confirm_block").find("form").serializeArray();for(key in n)i[n[key].name]=n[key].value}m.close.apply(this),"function"==typeof o.onNo&&o.onNo.apply(this,[i])}};t.fn.um_confirm=function(o){return m[o]?m[o].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof o&&o?void t.error("Method "+o+" does not exist for jQuery.um_confirm plugin"):m.init.apply(this,arguments)},t.um_confirm=function(o){i=t.extend({},n,o),t(o.object).data("options",i),m.build.apply(t(o.object),[i]),i.title&&t("#um_confirm_title").html(i.title),t("#um_confirm_message").html(i.message),t("#um_confirm_button_yes").html(i.yes_label),t("#um_confirm_button_no").html(i.no_label),m.show.apply(o.object)}}(jQuery); \ No newline at end of file From a129ee105819c394c0769ee00222b6a62de3226e Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Mon, 6 May 2024 17:55:17 +0300 Subject: [PATCH 43/50] - added Zapier dependencies; --- assets/img/extensions/zapier.png | Bin 0 -> 8866 bytes includes/admin/templates/extensions.php | 7 +++++++ includes/class-dependencies.php | 1 + includes/core/class-plugin-updater.php | 4 ++++ 4 files changed, 12 insertions(+) create mode 100644 assets/img/extensions/zapier.png diff --git a/assets/img/extensions/zapier.png b/assets/img/extensions/zapier.png new file mode 100644 index 0000000000000000000000000000000000000000..968b2d26ad33ea651b009e27efc418999a96d3a5 GIT binary patch literal 8866 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 'Sell paid memberships to access your website via Stripe subscriptions', ); +//$premium['zapier'] = array( +// 'url' => 'https://ultimatemember.com/extensions/zapier/', +// 'img' => 'zapier.png', +// 'name' => 'Zapier', +// 'desc' => 'Integrates your Zapier with Ultimate Member', +//); + $free['jobboardwp'] = array( 'url' => 'https://wordpress.org/plugins/um-jobboardwp', 'img' => 'jobboardwp.png', diff --git a/includes/class-dependencies.php b/includes/class-dependencies.php index 898fb426..51e142a9 100644 --- a/includes/class-dependencies.php +++ b/includes/class-dependencies.php @@ -50,6 +50,7 @@ if ( ! class_exists( 'um\Dependencies' ) ) { 'social-activity' => '2.2.0', 'social-login' => '2.2.0', 'stripe' => '1.0.0', + 'zapier' => '1.0.0', 'terms-conditions' => '2.1.6', 'unsplash' => '2.0.2', 'user-bookmarks' => '2.1.4', diff --git a/includes/core/class-plugin-updater.php b/includes/core/class-plugin-updater.php index f9961135..5945d673 100644 --- a/includes/core/class-plugin-updater.php +++ b/includes/core/class-plugin-updater.php @@ -179,6 +179,10 @@ if ( ! class_exists( 'um\core\Plugin_Updater' ) ) { 'key' => 'stripe', 'title' => 'Stripe', ), + 'um-zapier/um-zapier.php' => array( + 'key' => 'zapier', + 'title' => 'Zapier', + ), ); $active_um_plugins = array(); From 691f2fdc4802040d17e76e6f1f5663cf6293e0a7 Mon Sep 17 00:00:00 2001 From: ashubawork Date: Wed, 8 May 2024 10:41:12 +0300 Subject: [PATCH 44/50] - fix checking for unique_email validation --- includes/core/um-actions-form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/core/um-actions-form.php b/includes/core/um-actions-form.php index 259ac140..d3f60a98 100644 --- a/includes/core/um-actions-form.php +++ b/includes/core/um-actions-form.php @@ -924,7 +924,7 @@ function um_submit_form_errors_hook_( $submitted_data, $form_data ) { UM()->form()->add_error( $key, __( 'You must provide your email', 'ultimate-member' ) ); } elseif ( 'register' === $mode && $email_exists ) { UM()->form()->add_error( $key, __( 'The email you entered is incorrect', 'ultimate-member' ) ); - } elseif ( 'profile' === $mode && $email_exists && $email_exists !== $submitted_data['user_id'] ) { + } elseif ( 'profile' === $mode && $email_exists && absint( $email_exists ) !== absint( $submitted_data['user_id'] ) ) { UM()->form()->add_error( $key, __( 'The email you entered is incorrect', 'ultimate-member' ) ); } elseif ( ! is_email( $submitted_data[ $key ] ) ) { UM()->form()->add_error( $key, __( 'The email you entered is incorrect', 'ultimate-member' ) ); From 59ce02ab475661cd85fc19618aacd422e5a4e642 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 8 May 2024 13:53:13 +0300 Subject: [PATCH 45/50] - fixed PHP errors while update from 1.3.x version; --- ...mail_templates.php => email-templates.php} | 98 +++++++++---------- .../core/packages/2.0-beta1/functions.php | 4 +- .../2.0-beta1/{um_cpt.php => um-cpt.php} | 50 +++++----- 3 files changed, 75 insertions(+), 77 deletions(-) rename includes/admin/core/packages/2.0-beta1/{email_templates.php => email-templates.php} (63%) rename includes/admin/core/packages/2.0-beta1/{um_cpt.php => um-cpt.php} (57%) diff --git a/includes/admin/core/packages/2.0-beta1/email_templates.php b/includes/admin/core/packages/2.0-beta1/email-templates.php similarity index 63% rename from includes/admin/core/packages/2.0-beta1/email_templates.php rename to includes/admin/core/packages/2.0-beta1/email-templates.php index e7f3bcc8..1c05738b 100644 --- a/includes/admin/core/packages/2.0-beta1/email_templates.php +++ b/includes/admin/core/packages/2.0-beta1/email-templates.php @@ -1,16 +1,15 @@ mail()->get_template_filename( $template_name ); - $ext = ! $html ? '.php' : '.html'; + $ext = ! $html ? '.php' : '.html'; $blog_id = ''; if ( ! $html ) { @@ -18,14 +17,15 @@ function um_upgrade20beta1_template_in_theme( $template_name, $html = false ) { } // check if there is template at theme folder - $template = locate_template( array( - trailingslashit( 'ultimate-member/email' . $blog_id ) . $template_name_file . $ext - ) ); + $template = locate_template( + array( + trailingslashit( 'ultimate-member/email' . $blog_id ) . $template_name_file . $ext, + ) + ); // Return what we found. - return ! $template ? false : true; + return (bool) $template; } - /** * Method returns expected path for template * @@ -36,28 +36,26 @@ function um_upgrade20beta1_template_in_theme( $template_name, $html = false ) { * @return string */ function um_upgrade20beta1_get_template_file( $location, $template_name, $html = false ) { - $template_path = ''; + $template_path = ''; $template_name_file = UM()->mail()->get_template_filename( $template_name ); - $ext = ! $html ? '.php' : '.html'; - switch( $location ) { + $ext = ! $html ? '.php' : '.html'; + switch ( $location ) { case 'theme': - $blog_id = ''; if ( ! $html ) { $blog_id = UM()->mail()->get_blog_id(); } - - $template_path = trailingslashit( get_stylesheet_directory() . '/ultimate-member/email' . $blog_id ). $template_name_file . $ext; + $template_path = trailingslashit( get_stylesheet_directory() . '/ultimate-member/email' . $blog_id ) . $template_name_file . $ext; break; + case 'plugin': - $path = ! empty( UM()->mail()->path_by_slug[ $template_name ] ) ? UM()->mail()->path_by_slug[ $template_name ] : UM_PATH . 'templates/email'; + $path = ! empty( UM()->mail()->path_by_slug[ $template_name ] ) ? UM()->mail()->path_by_slug[ $template_name ] : UM_PATH . 'templates/email'; $template_path = trailingslashit( $path ) . $template_name . $ext; break; } return $template_path; } - /** * Ajax copy template to the theme * @@ -70,28 +68,23 @@ function um_upgrade20beta1_copy_email_template( $template ) { return false; } $plugin_template_path = um_upgrade20beta1_get_template_file( 'plugin', $template ); - $theme_template_path = um_upgrade20beta1_get_template_file( 'theme', $template ); - $temp_path = str_replace( trailingslashit( get_stylesheet_directory() ), '', $theme_template_path ); - $temp_path = str_replace( '/', DIRECTORY_SEPARATOR, $temp_path ); - $folders = explode( DIRECTORY_SEPARATOR, $temp_path ); - $folders = array_splice( $folders, 0, count( $folders ) - 1 ); - $cur_folder = ''; - $theme_dir = trailingslashit( get_stylesheet_directory() ); + $theme_template_path = um_upgrade20beta1_get_template_file( 'theme', $template ); + $temp_path = str_replace( trailingslashit( get_stylesheet_directory() ), '', $theme_template_path ); + $temp_path = str_replace( '/', DIRECTORY_SEPARATOR, $temp_path ); + $folders = explode( DIRECTORY_SEPARATOR, $temp_path ); + $folders = array_splice( $folders, 0, count( $folders ) - 1 ); + $cur_folder = ''; + $theme_dir = trailingslashit( get_stylesheet_directory() ); foreach ( $folders as $folder ) { - $prev_dir = $cur_folder; + $prev_dir = $cur_folder; $cur_folder .= $folder . DIRECTORY_SEPARATOR; if ( ! is_dir( $theme_dir . $cur_folder ) && wp_is_writable( $theme_dir . $prev_dir ) ) { mkdir( $theme_dir . $cur_folder, 0777 ); } } - if ( file_exists( $plugin_template_path ) && copy( $plugin_template_path, $theme_template_path ) ) { - return true; - } else { - return false; - } + return ( file_exists( $plugin_template_path ) && copy( $plugin_template_path, $theme_template_path ) ); } - /** * Insert email template content to file * @@ -99,21 +92,22 @@ function um_upgrade20beta1_copy_email_template( $template ) { * @param string $content Email template content */ function um_upgrade20beta1_insert_content( $path, $content ) { - $fp = @fopen( $path, "w" ); - @fputs( $fp, $content ); - @fclose( $fp ); + if ( file_exists( $path ) ) { + $fp = @fopen( $path, "w" ); + @fputs( $fp, $content ); + @fclose( $fp ); + } } - /** * Transferring email templates to new logic */ function um_upgrade20beta1_email_templates_process() { $templates_in_theme = 0; - $emails = UM()->config()->email_notifications; + $emails = UM()->config()->email_notifications; foreach ( $emails as $email_key => $value ) { - $in_theme = um_upgrade20beta1_template_in_theme( $email_key, true ); + $in_theme = um_upgrade20beta1_template_in_theme( $email_key, true ); $theme_template_path = um_upgrade20beta1_get_template_file( 'theme', $email_key ); if ( ! $in_theme ) { @@ -138,23 +132,22 @@ function um_upgrade20beta1_email_templates_process() { um_upgrade20beta1_insert_content( $theme_template_path, $setting_value ); } - } else { //there is HTML email template in a theme's folder $theme_template_path_html = um_upgrade20beta1_get_template_file( 'theme', $email_key, true ); - $setting_value = preg_replace( '/<\/body>|<\/head>||<\/html>||/' , '', file_get_contents( $theme_template_path_html ) ); + $setting_value = preg_replace( '/<\/body>|<\/head>||<\/html>||/', '', file_get_contents( $theme_template_path_html ) ); if ( file_exists( $theme_template_path_html ) ) { - $temp_path = str_replace( trailingslashit( get_stylesheet_directory() ), '', $theme_template_path ); - $temp_path = str_replace( '/', DIRECTORY_SEPARATOR, $temp_path ); - $folders = explode( DIRECTORY_SEPARATOR, $temp_path ); - $folders = array_splice( $folders, 0, count( $folders ) - 1 ); + $temp_path = str_replace( trailingslashit( get_stylesheet_directory() ), '', $theme_template_path ); + $temp_path = str_replace( '/', DIRECTORY_SEPARATOR, $temp_path ); + $folders = explode( DIRECTORY_SEPARATOR, $temp_path ); + $folders = array_splice( $folders, 0, count( $folders ) - 1 ); $cur_folder = ''; - $theme_dir = trailingslashit( get_stylesheet_directory() ); + $theme_dir = trailingslashit( get_stylesheet_directory() ); foreach ( $folders as $folder ) { - $prev_dir = $cur_folder; + $prev_dir = $cur_folder; $cur_folder .= $folder . DIRECTORY_SEPARATOR; if ( ! is_dir( $theme_dir . $cur_folder ) && wp_is_writable( $theme_dir . $prev_dir ) ) { mkdir( $theme_dir . $cur_folder, 0777 ); @@ -168,26 +161,25 @@ function um_upgrade20beta1_email_templates_process() { $templates_in_theme++; } - } - } } - $email_html = ( $templates_in_theme > 0 ) ? true : false; + $email_html = $templates_in_theme > 0; UM()->options()->update( 'email_html', $email_html ); } - if ( is_multisite() ) { $start_blog_id = get_current_blog_id(); - $blog_ids = get_sites( array( - 'fields' => 'ids', - ) ); + $blog_ids = get_sites( + array( + 'fields' => 'ids', + ) + ); - foreach ( $blog_ids as $blog_id ) { - switch_to_blog( $blog_id ); + foreach ( $blog_ids as $b_id ) { + switch_to_blog( $b_id ); um_upgrade20beta1_email_templates_process(); } diff --git a/includes/admin/core/packages/2.0-beta1/functions.php b/includes/admin/core/packages/2.0-beta1/functions.php index 830b6fdc..f3ec400d 100644 --- a/includes/admin/core/packages/2.0-beta1/functions.php +++ b/includes/admin/core/packages/2.0-beta1/functions.php @@ -150,7 +150,7 @@ function um_upgrade_cpt20beta1() { um_maybe_unset_time_limit(); - include 'um_cpt.php'; + include 'um-cpt.php'; wp_send_json_success( array( 'message' => __( 'UM Custom Posts was upgraded successfully', 'ultimate-member' ) ) ); } @@ -318,7 +318,7 @@ function um_upgrade_email_templates20beta1() { um_maybe_unset_time_limit(); - include 'email_templates.php'; + include 'email-templates.php'; update_option( 'um_last_version_upgrade', '2.0-beta1' ); delete_option( 'um_roles_associations' ); diff --git a/includes/admin/core/packages/2.0-beta1/um_cpt.php b/includes/admin/core/packages/2.0-beta1/um-cpt.php similarity index 57% rename from includes/admin/core/packages/2.0-beta1/um_cpt.php rename to includes/admin/core/packages/2.0-beta1/um-cpt.php index 8ff13119..6c073707 100644 --- a/includes/admin/core/packages/2.0-beta1/um_cpt.php +++ b/includes/admin/core/packages/2.0-beta1/um-cpt.php @@ -5,57 +5,63 @@ $roles_associations = get_option( 'um_roles_associations' ); //"use_global" meta change to "_use_custom_settings" //also update for forms metadata where "member" or "admin" -$forms_query = new WP_Query; -$forms = $forms_query->query( array( - 'post_type' => 'um_form', - 'posts_per_page' => -1, - 'fields' => 'ids' -) ); +$forms_query = new WP_Query(); +$forms = $forms_query->query( + array( + 'post_type' => 'um_form', + 'posts_per_page' => -1, + 'fields' => 'ids', + ) +); foreach ( $forms as $form_id ) { $form_type = get_post_meta( $form_id, '_um_mode', true ); if ( ! empty( $form_type ) ) { - $use_globals = get_post_meta( $form_id, "_um_{$form_type}_use_globals", true ); - $use_custom_settings = empty( $use_globals ) ? true : false; + $use_globals = get_post_meta( $form_id, "_um_{$form_type}_use_globals", true ); + $use_custom_settings = empty( $use_globals ); update_post_meta( $form_id, "_um_{$form_type}_use_custom_settings", $use_custom_settings ); delete_post_meta( $form_id, "_um_{$form_type}_use_globals" ); - $role = get_post_meta( $form_id, "_um_{$form_type}_role", true ); - if ( $role ) { - update_post_meta( $form_id, "_um_{$form_type}_role", $roles_associations[ $role ] ); + $role_slug = get_post_meta( $form_id, "_um_{$form_type}_role", true ); + if ( $role_slug && array_key_exists( $role_slug, $roles_associations ) ) { + update_post_meta( $form_id, "_um_{$form_type}_role", $roles_associations[ $role_slug ] ); } } } //for metadata for all UM Member Directories //also update for forms metadata where "member" or "admin" -$forms_query = new WP_Query; -$member_directories = $forms_query->query( array( - 'post_type' => 'um_directory', - 'posts_per_page' => -1, - 'fields' => 'ids' -) ); +$forms_query = new WP_Query(); +$member_directories = $forms_query->query( + array( + 'post_type' => 'um_directory', + 'posts_per_page' => -1, + 'fields' => 'ids', + ) +); foreach ( $member_directories as $directory_id ) { $directory_roles = get_post_meta( $directory_id, '_um_roles', true ); - if ( ! empty( $directory_roles ) ) { foreach ( $directory_roles as $i => $role_k ) { - $directory_roles[ $i ] = $roles_associations[ $role_k ]; + if ( array_key_exists( $role_k, $roles_associations ) ) { + $directory_roles[ $i ] = $roles_associations[ $role_k ]; + } } update_post_meta( $directory_id, '_um_roles', $directory_roles ); } $um_roles_can_search = get_post_meta( $directory_id, '_um_roles_can_search', true ); - if ( ! empty( $um_roles_can_search ) ) { foreach ( $um_roles_can_search as $i => $role_k ) { - $um_roles_can_search[ $i ] = $roles_associations[ $role_k ]; + if ( array_key_exists( $role_k, $roles_associations ) ) { + $um_roles_can_search[ $i ] = $roles_associations[ $role_k ]; + } } update_post_meta( $directory_id, '_um_roles_can_search', $um_roles_can_search ); } -} \ No newline at end of file +} From af3b265d6584719ce62574ae5dcf776a3c54b2a0 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 8 May 2024 14:02:30 +0300 Subject: [PATCH 46/50] - fixed displaying required field asterisk on the Profile > View mode; --- includes/core/class-fields.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/core/class-fields.php b/includes/core/class-fields.php index e6fcb66d..487add7e 100644 --- a/includes/core/class-fields.php +++ b/includes/core/class-fields.php @@ -738,7 +738,7 @@ if ( ! class_exists( 'um\core\Fields' ) ) { $output .= '' . esc_html__( $label, 'ultimate-member' ); - if ( ! empty( $data['required'] ) && UM()->options()->get( 'form_asterisk' ) ) { + if ( ! $this->viewing && ! empty( $data['required'] ) && UM()->options()->get( 'form_asterisk' ) ) { $output .= '*'; } From 6f2d66cb13159a7baa6da0d52bf2e817152ea517 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 9 May 2024 10:56:03 +0300 Subject: [PATCH 47/50] - updated banners; --- .wordpress-org/banner-1544x500.png | Bin 125814 -> 16669 bytes .wordpress-org/banner-772x250.png | Bin 93703 -> 16128 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/.wordpress-org/banner-1544x500.png b/.wordpress-org/banner-1544x500.png index 6bd9cbd0f7397323791bb7f97620ceb6f58e7007..c4a07e2cc1a588f43eccaeb294bd33d6a4916f1c 100644 GIT binary patch literal 16669 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

w> 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�it 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

SM559hWW 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 literal 93703 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 From 39ce8b0b5a37255112caf655b4ad47d34ba112c1 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 9 May 2024 11:05:59 +0300 Subject: [PATCH 48/50] - updated license; --- license.txt | 845 ++++++++++++++++++++++++++++++++++++++-------------- readme.txt | 2 +- 2 files changed, 620 insertions(+), 227 deletions(-) diff --git a/license.txt b/license.txt index 5fbe4a70..f288702d 100644 --- a/license.txt +++ b/license.txt @@ -1,281 +1,674 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110, USA + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - Preamble + Preamble - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + TERMS AND CONDITIONS - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". + 0. Definitions. -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. + "This License" refers to version 3 of the GNU General Public License. - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. + A "covered work" means either the unmodified Program or a work based +on the Program. - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. + 1. Source Code. - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. + The Corresponding Source for a work in source code form is that +same work. - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. + 2. Basic Permissions. - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of this License. - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. + 13. Use with the GNU Affero General Public License. -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. + 14. Revised Versions of this License. - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. - NO WARRANTY + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. + 15. Disclaimer of Warranty. - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - END OF TERMS AND CONDITIONS + 16. Limitation of Liability. + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/readme.txt b/readme.txt index 4394296f..c480a710 100644 --- a/readme.txt +++ b/readme.txt @@ -7,7 +7,7 @@ Requires PHP: 5.6 Requires at least: 5.5 Tested up to: 6.5 Stable tag: 2.8.5 -License: GNU Version 2 or Any Later Version +License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.txt The #1 plugin for front-end user profiles, user registration & login forms, member directories, content restriction, user roles and more. From f2ac29bc9cc082c37a40ff0b686aa81bb5e69819 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 9 May 2024 17:11:10 +0300 Subject: [PATCH 49/50] - added info-comment for NGINX-config rules if they aren't applied by default; --- includes/core/class-rewrite.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/core/class-rewrite.php b/includes/core/class-rewrite.php index ccad3bb4..13578add 100644 --- a/includes/core/class-rewrite.php +++ b/includes/core/class-rewrite.php @@ -78,6 +78,7 @@ if ( ! class_exists( 'um\core\Rewrite' ) ) { public function add_rewrite_rules( $rules ) { $newrules = array(); + // NGINX-config `rewrite ^/um-download/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$ /index.php?um_action=download&um_form=$1&um_field=$2&um_user=$3&um_verify=$4 last;` $newrules['um-download/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$'] = 'index.php?um_action=download&um_form=$matches[1]&um_field=$matches[2]&um_user=$matches[3]&um_verify=$matches[4]'; if ( isset( UM()->config()->permalinks['user'] ) ) { From 9803f840abfd84b4774472293411e6ac971ceee0 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Mon, 20 May 2024 13:56:59 +0300 Subject: [PATCH 50/50] - prepared to release; --- changelog.txt | 18 ++++++++++++++++- includes/admin/class-site-health.php | 2 +- includes/admin/core/class-admin-forms.php | 2 +- includes/admin/core/class-admin-metabox.php | 2 +- .../admin/templates/modal/forms/fonticons.php | 2 +- readme.txt | 20 ++++++++++++++++--- 6 files changed, 38 insertions(+), 8 deletions(-) diff --git a/changelog.txt b/changelog.txt index 12894682..856ce70f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,11 +1,12 @@ == Changelog == -= 2.8.6 April xx, 2024 = += 2.8.6 May 22, 2024 = * Enhancements: - Added: Member Directory > Admin Filtering supports datepicker and timepicker filter-types with only "From" or "To" filled value - Added: Ability to customize modal templates upload-single.php and view-photo.php + - Added: New FontAwesome library. Version 6.5.2 * Bugfixes: @@ -14,6 +15,21 @@ - Fixed: YouTube validation when field value is empty - Fixed: Social URLs sanitizing where user can put his social username (e.g. Instagram, Facebook) - Fixed: Using only published forms and member directories IDs on predefined pages installation + - Fixed: Member Directory before query hook when custom meta table is active + - Fixed: Unique email validation + - Fixed: Displaying asterisk on the Profile > View Mode + - Fixed: PHP errors while upgrade from 1.3.x version + - Fixed: Rating field view + - Fixed: Sorting by last login value when "Hide my last login" is set + - Fixed: PHP errors while uploading files + - Fixed: Parsing error on the license activation + +* Templates required update: + + - Renamed templates/modal/um_upload_single.php → templates/modal/upload-single.php + - Renamed templates/modal/um_view_photo.php → templates/modal/view-photo.php + +* Cached and optimized/minified assets(JS/CSS) must be flushed/re-generated after upgrade = 2.8.5: April 9, 2024 = diff --git a/includes/admin/class-site-health.php b/includes/admin/class-site-health.php index b2c67b1a..24f6c8a3 100644 --- a/includes/admin/class-site-health.php +++ b/includes/admin/class-site-health.php @@ -41,7 +41,7 @@ class Site_Health { } $first_activation_date = get_option( 'um_first_activation_date', false ); - if ( ! empty( $first_activation_date ) && $first_activation_date < 1713342395 ) { + if ( ! empty( $first_activation_date ) && $first_activation_date < 1716336000 ) { $tests['direct']['um_outdated_icons'] = array( 'label' => esc_html__( 'Are the icons in Ultimate Member Forms and Settings out of date?', 'ultimate-member' ), 'test' => array( $this, 'outdated_icons_test' ), diff --git a/includes/admin/core/class-admin-forms.php b/includes/admin/core/class-admin-forms.php index 93cd0a13..298ea7b4 100644 --- a/includes/admin/core/class-admin-forms.php +++ b/includes/admin/core/class-admin-forms.php @@ -559,7 +559,7 @@ if ( ! class_exists( 'um\admin\core\Admin_Forms' ) ) { $first_activation_date = get_option( 'um_first_activation_date', false ); // @todo new version - if ( empty( $first_activation_date ) || $first_activation_date >= 1713342395 || empty( $value ) || array_key_exists( $value, $um_icons_list ) ) { + if ( empty( $first_activation_date ) || $first_activation_date >= 1716336000 || empty( $value ) || array_key_exists( $value, $um_icons_list ) ) { $html .= '