diff --git a/language/en-GB/en-GB.tpl_shaper_helix3.ini b/language/en-GB/en-GB.tpl_shaper_helix3.ini index 003ff45..7ba9560 100644 --- a/language/en-GB/en-GB.tpl_shaper_helix3.ini +++ b/language/en-GB/en-GB.tpl_shaper_helix3.ini @@ -441,3 +441,5 @@ HELIX_SHARE_TWITTER="Share On Twitter" HELIX_SHARE_GOOGLE_PLUS="Share On Google Plus" HELIX_SHARE_LINKEDIN="Share On Linkedin" HELIX_SHARE_PINTERSET="Share On Pinterest" + +COM_USERS_OPTIONAL="(Optional)" diff --git a/plugins/ajax/helix3/classes/image.php b/plugins/ajax/helix3/classes/image.php index f8371df..0facea8 100755 --- a/plugins/ajax/helix3/classes/image.php +++ b/plugins/ajax/helix3/classes/image.php @@ -11,7 +11,7 @@ class Helix3Image { - public static function createThumbs($src, $sizes = array(), $folder, $base_name, $ext) + public static function createThumbs($src, $folder, $base_name, $ext, $sizes = array()) { list($originalWidth, $originalHeight) = getimagesize($src); diff --git a/plugins/ajax/helix3/helix3.php b/plugins/ajax/helix3/helix3.php index d88fddb..7e26651 100755 --- a/plugins/ajax/helix3/helix3.php +++ b/plugins/ajax/helix3/helix3.php @@ -9,20 +9,29 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -jimport('joomla.plugin.plugin'); -jimport('joomla.filesystem.folder'); -jimport('joomla.filesystem.file'); -jimport('joomla.registry.registry'); -jimport('joomla.image.image'); +use Joomla\CMS\Factory; +use Joomla\CMS\Http\Http; +use Joomla\CMS\Language\Text; +use Joomla\CMS\Menu\SiteMenu; +use Joomla\Registry\Registry; +use Joomla\CMS\Filesystem\File; +use Joomla\CMS\Session\Session; +use Joomla\CMS\Plugin\CMSPlugin; +use Joomla\CMS\Filesystem\Folder; +use Joomla\CMS\Component\ComponentHelper; +use Joomla\CMS\Helper\MediaHelper; +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Uri\Uri; + require_once __DIR__ . '/classes/image.php'; -class plgAjaxHelix3 extends JPlugin +class plgAjaxHelix3 extends CMSPlugin { function onAjaxHelix3() { - $input = JFactory::getApplication()->input; + $input = Factory::getApplication()->input; $action = $input->post->get('action', '', 'STRING'); if($action=='upload_image') { @@ -58,7 +67,7 @@ function onAjaxHelix3() $report['action'] = 'remove'; $report['status'] = 'true'; } - $report['layout'] = JFolder::files($layoutPath, '.json'); + $report['layout'] = Folder::files($layoutPath, '.json'); break; case 'save': @@ -72,7 +81,7 @@ function onAjaxHelix3() fwrite($file, $content); fclose($file); } - $report['layout'] = JFolder::files($layoutPath, '.json'); + $report['layout'] = Folder::files($layoutPath, '.json'); break; case 'load': @@ -104,7 +113,7 @@ function onAjaxHelix3() case 'voting': - if (JSession::checkToken()) { + if (Session::checkToken()) { return json_encode($report); } @@ -124,7 +133,7 @@ function onAjaxHelix3() { $userIP = $_SERVER['REMOTE_ADDR']; - $db = JFactory::getDbo(); + $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select('*') @@ -219,10 +228,10 @@ function onAjaxHelix3() $template_path = JPATH_SITE . '/templates/' . self::getTemplate()->template . '/webfonts/webfonts.json'; $plugin_path = JPATH_PLUGINS . '/system/helix3/assets/webfonts/webfonts.json'; - if(JFile::exists( $template_path )) { - $json = JFile::read( $template_path ); + if(File::exists( $template_path )) { + $json = file_get_contents($template_path); } else { - $json = JFile::read( $plugin_path ); + $json = file_get_contents($plugin_path); } $webfonts = json_decode($json); @@ -256,25 +265,23 @@ function onAjaxHelix3() //Font variant case 'updateFonts': - jimport( 'joomla.filesystem.folder' ); - jimport('joomla.http.http'); - $template_path = JPATH_SITE . '/templates/' . self::getTemplate()->template . '/webfonts'; - if(!JFolder::exists( $template_path )) { - JFolder::create( $template_path, 0755 ); + if (!Folder::exists( $template_path )) + { + Folder::create( $template_path, 0755 ); } - $tplRegistry = new JRegistry(); + $tplRegistry = new Registry(); $tplParams = $tplRegistry->loadString(self::getTemplate()->params); $gfont_api = $tplParams->get('gfont_api', 'AIzaSyBVybAjpiMHzNyEm3ncA_RZ4WETKsLElDg'); $url = 'https://www.googleapis.com/webfonts/v1/webfonts?key='. $gfont_api; - $http = new JHttp(); + $http = new Http(); $str = $http->get($url); if($str->code == 200) { // if successfully updated - if ( JFile::write( $template_path . '/webfonts.json', $str->body )) { + if ( File::write( $template_path . '/webfonts.json', $str->body )) { echo "

Google Webfonts list successfully updated! Please refresh your browser.

"; } else { echo "

Google Webfonts update failed. Please make sure that your template folder is writable.

"; @@ -303,7 +310,7 @@ function onAjaxHelix3() $settings = $data['settings']; - $db = JFactory::getDbo(); + $db = Factory::getDbo(); $query = $db->getQuery(true); @@ -333,7 +340,7 @@ function onAjaxHelix3() } static public function getItemRating($pk = 0){ - $db = JFactory::getDbo(); + $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select('ROUND(rating_sum / rating_count, 0) AS rating, rating_count') ->from($db->quoteName('#__content_rating')) @@ -358,7 +365,7 @@ static public function resetMenuLayout($current_menu_id = 0){ $item = $items[$current_menu_id]; } - $menuItems = new JMenuSite; + $menuItems = new SiteMenu(); $no_child = true; $count = 0; @@ -460,7 +467,7 @@ static public function resetMenuLayout($current_menu_id = 0){ static public function create_menu($current_menu_id) { $items = self::menuItems(); - $menus = new JMenuSite; + $menus = new SiteMenu(); if (isset($items[$current_menu_id])) { @@ -476,7 +483,7 @@ static public function create_menu($current_menu_id) static public function menuItems() { - $menus = new JMenuSite; + $menus = new SiteMenu(); $menus = $menus->getMenu(); $new = array(); foreach ($menus as $item) { @@ -487,7 +494,7 @@ static public function menuItems() static public function loadNewLayout($layout_data = null){ - $lang = JFactory::getLanguage(); + $lang = Factory::getLanguage(); $lang->load('tpl_' . self::getTemplate()->template, JPATH_SITE, $lang->getName(), true); ob_start(); @@ -512,7 +519,7 @@ static public function loadNewLayout($layout_data = null){ if ($layout_data) { foreach ($layout_data as $row) { $rowSettings = self::getSettings($row->settings); - $name = JText::_('HELIX_SECTION_TITLE'); + $name = Text::_('HELIX_SECTION_TITLE'); if (isset($row->settings->name)) { $name = $row->settings->name; @@ -527,7 +534,7 @@ static public function loadNewLayout($layout_data = null){
@@ -585,24 +592,26 @@ static public function loadNewLayout($layout_data = null){ } - static public function getSettings($config = null) + static public function getSettings($config = null) { $data = ''; + if (count((array) $config)) - { + { foreach ($config as $key => $value) - { + { $data .= ' data-'.$key.'="'.$value.'"'; } } + return $data; } //Get template name - private static function getTemplate() + private static function getTemplate() { - $db = JFactory::getDbo(); + $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select($db->quoteName(array('template', 'params'))); $query->from($db->quoteName('#__template_styles')); @@ -614,40 +623,40 @@ private static function getTemplate() } // Upload File - private function upload_image() + private function upload_image() { - $input = JFactory::getApplication()->input; + $input = Factory::getApplication()->input; $image = $input->files->get('image'); $imageonly = $input->post->get('imageonly', false, 'BOOLEAN'); - $tplRegistry = new JRegistry(); + $tplRegistry = new Registry(); $tplParams = $tplRegistry->loadString(self::getTemplate()->params); $report = array(); // User is not authorised - if (!JFactory::getUser()->authorise('core.create', 'com_media')) + if (!Factory::getUser()->authorise('core.create', 'com_media')) { $report['status'] = false; - $report['output'] = JText::_('You are not authorised to upload file.'); + $report['output'] = Text::_('You are not authorised to upload file.'); echo json_encode($report); die; } if(count($image)) - { + { if ($image['error'] == UPLOAD_ERR_OK) { $error = false; - $params = JComponentHelper::getParams('com_media'); + $params = ComponentHelper::getParams('com_media'); // Total length of post back data in bytes. $contentLength = (int) $_SERVER['CONTENT_LENGTH']; // Instantiate the media helper - $mediaHelper = new JHelperMedia; + $mediaHelper = new MediaHelper; // Maximum allowed size of post back data in MB. $postMaxSize = $mediaHelper->toBytes(ini_get('post_max_size')); @@ -658,7 +667,7 @@ private function upload_image() // Check for the total size of post back data. if (($postMaxSize > 0 && $contentLength > $postMaxSize) || ($memoryLimit != -1 && $contentLength > $memoryLimit)) { $report['status'] = false; - $report['output'] = JText::_('Total size of upload exceeds the limit.'); + $report['output'] = Text::_('Total size of upload exceeds the limit.'); $error = true; echo json_encode($report); die; @@ -670,18 +679,18 @@ private function upload_image() if (($image['error'] == 1) || ($uploadMaxSize > 0 && $image['size'] > $uploadMaxSize) || ($uploadMaxFileSize > 0 && $image['size'] > $uploadMaxFileSize)) { $report['status'] = false; - $report['output'] = JText::_('This file is too large to upload.'); + $report['output'] = Text::_('This file is too large to upload.'); $error = true; } // Upload if no error found if(!$error) { // Organised folder structure - $date = JFactory::getDate(); - $folder = JHtml::_('date', $date, 'Y') . '/' . JHtml::_('date', $date, 'm') . '/' . JHtml::_('date', $date, 'd'); + $date = Factory::getDate(); + $folder = HTMLHelper::_('date', $date, 'Y') . '/' . HTMLHelper::_('date', $date, 'm') . '/' . HTMLHelper::_('date', $date, 'd'); if(!file_exists( JPATH_ROOT . '/images/' . $folder )) { - JFolder::create(JPATH_ROOT . '/images/' . $folder, 0755); + Folder::create(JPATH_ROOT . '/images/' . $folder, 0755); } $name = $image['name']; @@ -701,7 +710,7 @@ private function upload_image() } while(file_exists($dest)); // End Do not override - if(JFile::upload($path, $dest)) { + if(File::upload($path, $dest)) { $sizes = array(); @@ -721,7 +730,7 @@ private function upload_image() $sizes['large'] = explode('x', strtolower($tplParams->get('image_large_size', '600X600'))); } - $sources = Helix3Image::createThumbs($dest, $sizes, $folder, $base_name, $ext); + $sources = Helix3Image::createThumbs($dest, $folder, $base_name, $ext, $sizes); if(file_exists(JPATH_ROOT . '/images/' . $folder . '/' . $base_name . '_thumbnail.' . $ext)) { $src = 'images/' . $folder . '/' . $base_name . '_thumbnail.' . $ext; @@ -730,16 +739,16 @@ private function upload_image() $report['status'] = true; if($imageonly) { - $report['output'] = ''; + $report['output'] = ''; } else { - $report['output'] = '
  • Delete
  • '; + $report['output'] = '
  • Delete
  • '; } } } } } else { $report['status'] = false; - $report['output'] = JText::_('Upload Failed!'); + $report['output'] = Text::_('Upload Failed!'); } echo json_encode($report); @@ -748,53 +757,53 @@ private function upload_image() } // Delete File - private function remove_image() + private function remove_image() { $report = array(); - if (!JFactory::getUser()->authorise('core.delete', 'com_media')) + if (!Factory::getUser()->authorise('core.delete', 'com_media')) { $report['status'] = false; - $report['output'] = JText::_('You are not authorised to delete file.'); + $report['output'] = Text::_('You are not authorised to delete file.'); echo json_encode($report); die; } - $input = JFactory::getApplication()->input; + $input = Factory::getApplication()->input; $src = $input->post->get('src', '', 'STRING'); $path = JPATH_ROOT . '/' . $src; if(file_exists($path)) { - if(JFile::delete($path)) { + if(File::delete($path)) { $basename = basename($src); - $small = JPATH_ROOT . '/' . dirname($src) . '/' . JFile::stripExt($basename) . '_small.' . JFile::getExt($basename); - $thumbnail = JPATH_ROOT . '/' . dirname($src) . '/' . JFile::stripExt($basename) . '_thumbnail.' . JFile::getExt($basename); - $medium = JPATH_ROOT . '/' . dirname($src) . '/' . JFile::stripExt($basename) . '_medium.' . JFile::getExt($basename); - $large = JPATH_ROOT . '/' . dirname($src) . '/' . JFile::stripExt($basename) . '_large.' . JFile::getExt($basename); + $small = JPATH_ROOT . '/' . dirname($src) . '/' . File::stripExt($basename) . '_small.' . File::getExt($basename); + $thumbnail = JPATH_ROOT . '/' . dirname($src) . '/' . File::stripExt($basename) . '_thumbnail.' . File::getExt($basename); + $medium = JPATH_ROOT . '/' . dirname($src) . '/' . File::stripExt($basename) . '_medium.' . File::getExt($basename); + $large = JPATH_ROOT . '/' . dirname($src) . '/' . File::stripExt($basename) . '_large.' . File::getExt($basename); if(file_exists($small)) { - JFile::delete($small); + File::delete($small); } if(file_exists($thumbnail)) { - JFile::delete($thumbnail); + File::delete($thumbnail); } if(file_exists($medium)) { - JFile::delete($medium); + File::delete($medium); } if(file_exists($large)) { - JFile::delete($large); + File::delete($large); } $report['status'] = true; } else { $report['status'] = false; - $report['output'] = JText::_('Delete failed'); + $report['output'] = Text::_('Delete failed'); } } else { $report['status'] = true; diff --git a/plugins/ajax/helix3/helix3.xml b/plugins/ajax/helix3/helix3.xml index 1ac639c..073531a 100755 --- a/plugins/ajax/helix3/helix3.xml +++ b/plugins/ajax/helix3/helix3.xml @@ -7,7 +7,7 @@ http://www.gnu.org/licenses/gpl-2.0.html GPLv2 or later support@joomshaper.com http://www.joomshaper.com - 3.0.2 + 3.0.3 Helix3 Framework - Joomla Template Framework by JoomShaper diff --git a/plugins/system/helix3/core/classes/lessc.inc.php b/plugins/system/helix3/core/classes/lessc.inc.php index fca49e7..5906d34 100644 --- a/plugins/system/helix3/core/classes/lessc.inc.php +++ b/plugins/system/helix3/core/classes/lessc.inc.php @@ -1669,7 +1669,7 @@ protected function coerceColor($value) { $width = strlen($colorStr) == 3 ? 16 : 256; for ($i = 3; $i > 0; $i--) { // 3 2 1 - $t = $num % $width; + $t = floor($num) % floor($width); $num /= $width; $c[$i] = $t * (256/$width) + $t * floor(16/$width); @@ -3605,7 +3605,7 @@ protected function match($regex, &$out, $eatWhitespace = null) { if ($eatWhitespace === null) $eatWhitespace = $this->eatWhiteDefault; $r = '/'.$regex.($eatWhitespace && !$this->writeComments ? '\s*' : '').'/Ais'; - if (preg_match($r, $this->buffer, $out, null, $this->count)) { + if (preg_match($r, $this->buffer, $out, 0, $this->count)) { $this->count += strlen($out[0]); if ($eatWhitespace && $this->writeComments) $this->whitespace(); return true; @@ -3617,7 +3617,7 @@ protected function match($regex, &$out, $eatWhitespace = null) { protected function whitespace() { if ($this->writeComments) { $gotWhite = false; - while (preg_match(self::$whitePattern, $this->buffer, $m, null, $this->count)) { + while (preg_match(self::$whitePattern, $this->buffer, $m, 0, $this->count)) { if (isset($m[1]) && empty($this->seenComments[$this->count])) { $this->append(array("comment", $m[1])); $this->seenComments[$this->count] = true; @@ -3636,7 +3636,7 @@ protected function whitespace() { protected function peek($regex, &$out = null, $from = null) { if (is_null($from)) $from = $this->count; $r = '/'.$regex.'/Ais'; - $result = preg_match($r, $this->buffer, $out, null, $from); + $result = preg_match($r, $this->buffer, $out, 0, $from); return $result; } diff --git a/plugins/system/helix3/core/classes/menu.php b/plugins/system/helix3/core/classes/menu.php index 5b08462..c82e38d 100644 --- a/plugins/system/helix3/core/classes/menu.php +++ b/plugins/system/helix3/core/classes/menu.php @@ -9,6 +9,11 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); +use Joomla\CMS\Factory; +use Joomla\CMS\Router\Route; +use Joomla\CMS\Filter\OutputFilter; +use Joomla\CMS\Helper\ModuleHelper; + class Helix3Menu { protected $_items = array(); @@ -20,7 +25,7 @@ class Helix3Menu { function __construct($class = '', $name = '') { - $this->app = JFactory::getApplication(); + $this->app = Factory::getApplication(); $this->template = $this->app->getTemplate(true); $this->_params = $this->template->params; $this->extraclass = $class; @@ -40,7 +45,7 @@ function __construct($class = '', $name = '') public function initMenu() { - $app = JFactory::getApplication(); + $app = Factory::getApplication(); $menu = $app->getMenu('site'); $attributes = array('menutype'); @@ -127,11 +132,11 @@ public function initMenu() if (strcasecmp(substr($item->flink, 0, 4), 'http') && (strpos($item->flink, 'index.php?') !== false)) { - $item->flink = JRoute::_($item->flink, true, $item->getParams()->get('secure')); + $item->flink = Route::_($item->flink, true, $item->getParams()->get('secure')); } else { - $item->flink = JRoute::_($item->flink); + $item->flink = Route::_($item->flink); } // We prevent the double encoding because for some reason the $item is shared for menu modules and we get double encoding @@ -252,7 +257,7 @@ private function getItem($item) } else if ( ( $item->parent_id == 1 ) && ($item->megamenu == 0 )) { - $menulayout = json_decode($this->_items[$item->id]->getParams()->get('menulayout')); + $menulayout = json_decode(!empty($this->_items[$item->id]->getParams()->get('menulayout')) ? $this->_items[$item->id]->getParams()->get('menulayout') : ''); if ($menulayout) { @@ -287,7 +292,7 @@ private function dropdown($item) $dropdown_style = 'width: '. $dropdown_width .'px;'; - $layout = json_decode($this->_items[$item->id]->getParams()->get('menulayout')); + $layout = json_decode(!empty($this->_items[$item->id]->getParams()->get('menulayout')) ? $this->_items[$item->id]->getParams()->get('menulayout') : ''); $sub_alignment = $this->_items[$item->id]->getParams()->get('dropdown_position', 'right'); if (isset($layout->menuAlign) && $layout->menuAlign) @@ -453,7 +458,7 @@ private function start_el( $args = array() ) } else if ( ( $item->parent_id == 1 ) && ( $item->megamenu == 0 ) ) { - $menulayout = json_decode( $this->_items[$item->id]->getParams()->get('menulayout') ); + $menulayout = json_decode( !empty($this->_items[$item->id]->getParams()->get('menulayout')) ? $this->_items[$item->id]->getParams()->get('menulayout') : '' ); if ( $menulayout ) { @@ -519,7 +524,7 @@ private function item($item, $extra_class='') } $flink = $item->flink; - $flink = str_replace('&', '&', JFilterOutput::ampReplace(htmlspecialchars($flink))); + $flink = str_replace('&', '&', OutputFilter::ampReplace(htmlspecialchars($flink))); $output = ''; $options =''; @@ -551,13 +556,13 @@ private function item($item, $extra_class='') //Load Module by id or position private function load_module($mod) { - $app = JFactory::getApplication(); - $user = JFactory::getUser(); + $app = Factory::getApplication(); + $user = Factory::getUser(); $groups = implode(',', $user->getAuthorisedViewLevels()); - $lang = JFactory::getLanguage()->getTag(); + $lang = Factory::getLanguage()->getTag(); $clientId = (int) $app->getClientId(); - $db = JFactory::getDbo(); + $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select('m.id, m.title, m.module, m.position, m.content, m.showtitle, m.params'); $query->from('#__modules AS m'); @@ -573,7 +578,7 @@ private function load_module($mod) $query->where('m.position = "' . $mod . '"'); } - $date = JFactory::getDate(); + $date = Factory::getDate(); $now = $date->toSql(); $nullDate = $db->getNullDate(); @@ -611,7 +616,7 @@ private function load_module($mod) $module->client_id = 1; $module->position = strtolower($module->position); $clean[$module->id] = $module; - echo JModuleHelper::renderModule($module, $options); + echo ModuleHelper::renderModule($module, $options); } $output = ob_get_clean(); diff --git a/plugins/system/helix3/core/helix3.php b/plugins/system/helix3/core/helix3.php index 416da8d..90fd526 100644 --- a/plugins/system/helix3/core/helix3.php +++ b/plugins/system/helix3/core/helix3.php @@ -1,17 +1,21 @@ document = JFactory::getDocument(); + self::getInstance()->document = Factory::getDocument(); $doc = self::getInstance()->document; if (is_string($key)) { @@ -62,15 +66,15 @@ public static function getDocument($key = false) public static function getParam($key) { - $params = JFactory::getApplication()->getTemplate(true)->params; + $params = Factory::getApplication()->getTemplate(true)->params; return $params->get($key); } public static function loadHead() { - $doc = JFactory::getDocument(); - $app = JFactory::getApplication(); + $doc = Factory::getDocument(); + $app = Factory::getApplication(); $option = $app->input->get('option', ''); $view = $app->input->get('view', ''); $layout = $app->input->get('layout', ''); @@ -78,7 +82,7 @@ public static function loadHead() // Favicon if ($favicon = self::getParam('favicon')) { - $doc->addFavicon(JURI::base(true) . '/' . $favicon); + $doc->addFavicon(Uri::base(true) . '/' . $favicon); } else { @@ -90,28 +94,28 @@ public static function loadHead() { if (JVERSION < 4) { - $doc->addStylesheet(JURI::base(true) . '/plugins/system/helix3/assets/css/system.j3.min.css'); + $doc->addStylesheet(Uri::base(true) . '/plugins/system/helix3/assets/css/system.j3.min.css'); } else { - $doc->addStylesheet(JURI::base(true) . '/plugins/system/helix3/assets/css/system.j4.min.css'); + $doc->addStylesheet(Uri::base(true) . '/plugins/system/helix3/assets/css/system.j4.min.css'); } } // web fonts self::loadWebFonts(); - JHtml::_('jquery.framework'); + HTMLHelper::_('jquery.framework'); // Remove Joomla core bootstrap if (JVERSION < 4) { - JHtml::_('bootstrap.framework'); - if(isset($doc->_scripts[JUri::base(true) . '/media/jui/js/bootstrap.min.js'])) { - unset($doc->_scripts[JUri::base(true) . '/media/jui/js/bootstrap.min.js']); + HTMLHelper::_('bootstrap.framework'); + if(isset($doc->_scripts[Uri::base(true) . '/media/jui/js/bootstrap.min.js'])) { + unset($doc->_scripts[Uri::base(true) . '/media/jui/js/bootstrap.min.js']); } - $doc->addScript(JUri::root(true) . '/plugins/system/helix3/assets/js/bootstrap.legacy.js'); + $doc->addScript(Uri::root(true) . '/plugins/system/helix3/assets/js/bootstrap.legacy.js'); } echo ''; @@ -120,8 +124,8 @@ public static function loadHead() //Body Class public static function bodyClass($class = '') { - $app = JFactory::getApplication(); - $doc = JFactory::getDocument(); + $app = Factory::getApplication(); + $doc = Factory::getDocument(); $language = $doc->language; $direction = $doc->direction; $option = str_replace('_', '-', $app->input->getCmd('option', '')); @@ -153,7 +157,7 @@ public static function bodyClass($class = '') //Get view public static function view($class = '') { - $app = JFactory::getApplication(); + $app = Factory::getApplication(); $view = $app->input->getCmd('view', ''); $layout = $app->input->getCmd('layout', ''); @@ -168,13 +172,13 @@ public static function view($class = '') //Get Template name public static function getTemplate() { - return JFactory::getApplication()->getTemplate(); + return Factory::getApplication()->getTemplate(); } //Get Template URI public static function getTemplateUri() { - return JURI::base(true) . '/templates/' . self::getTemplate(); + return Uri::base(true) . '/templates/' . self::getTemplate(); } /** @@ -190,20 +194,20 @@ public static function Param($name = true, $value = null) // if $name = true, this will return all param data if (is_bool($name) and $name == true) { - return JFactory::getApplication()->getTemplate(true)->params; + return Factory::getApplication()->getTemplate(true)->params; } // if $value = null, this will return specific param data if (is_null($value)) { - return JFactory::getApplication()->getTemplate(true)->params->get($name); + return Factory::getApplication()->getTemplate(true)->params->get($name); } // if $value not = null, this will set a value in specific name. - $data = JFactory::getApplication()->getTemplate(true)->params->get($name); + $data = Factory::getApplication()->getTemplate(true)->params->get($name); if (is_null($data) or !isset($data)) { - JFactory::getApplication()->getTemplate(true)->params->set($name, $value); + Factory::getApplication()->getTemplate(true)->params->set($name, $value); return $value; } @@ -224,12 +228,12 @@ public static function Param($name = true, $value = null) private static function importFeatures() { - $template = JFactory::getApplication()->getTemplate(); + $template = Factory::getApplication()->getTemplate(); $path = JPATH_THEMES . '/' . $template . '/features'; if (file_exists($path)) { - $files = JFolder::files($path, '.php'); + $files = Folder::files($path, '.php'); if (count($files)) { @@ -237,7 +241,7 @@ private static function importFeatures() { include_once $path . '/' . $file; - $name = JFile::stripExt($file); + $name = File::stripExt($file); $class = 'Helix3Feature' . ucfirst($name); $class = new $class(self::getInstance()); @@ -277,17 +281,17 @@ public static function generatelayout() self::getInstance()->addCSS('custom.css'); self::getInstance()->addJS('custom.js'); - $doc = JFactory::getDocument(); - $app = JFactory::getApplication(); + $doc = Factory::getDocument(); + $app = Factory::getApplication(); $option = $app->input->get('option', ''); $view = $app->input->get('view', ''); $layout = $app->input->get('layout', ''); $pagebuilder = false; - $params = JFactory::getApplication()->getTemplate(true)->params; + $params = Factory::getApplication()->getTemplate(true)->params; if ($option == 'com_sppagebuilder') { - $doc->addStylesheet(JURI::base(true) . '/plugins/system/helix3/assets/css/pagebuilder.css'); + $doc->addStylesheet(Uri::base(true) . '/plugins/system/helix3/assets/css/pagebuilder.css'); $pagebuilder = true; } @@ -312,7 +316,7 @@ public static function generatelayout() if (empty($rows)) { $layout_file = JPATH_SITE . '/templates/' . self::getTemplate() . '/layout/default.json'; - if (!JFile::exists($layout_file)) + if (!File::exists($layout_file)) { die('Default Layout file is not exists! Please goto to template manager and create a new layout first.'); } @@ -341,7 +345,7 @@ public static function generatelayout() $fluidrow = $row->settings->fluidrow; } - $id = (empty($row->settings->name)) ? 'sp-section-' . ($key + 1) : 'sp-' . JFilterOutput::stringURLSafe($row->settings->name); + $id = (empty($row->settings->name)) ? 'sp-section-' . ($key + 1) : 'sp-' . OutputFilter::stringURLSafe($row->settings->name); $row_class = ''; @@ -397,7 +401,7 @@ public static function generatelayout() if (!empty($row->settings->background_image)) { - $row_css .= 'background-image:url("' . JURI::base(true) . '/' . htmlspecialchars((JVERSION < 4 ? $row->settings->background_image : JHtml::cleanImageURL($row->settings->background_image)->url), ENT_COMPAT, 'UTF-8') . '");'; + $row_css .= 'background-image:url("' . Uri::base(true) . '/' . htmlspecialchars((JVERSION < 4 ? $row->settings->background_image : HTMLHelper::cleanImageURL($row->settings->background_image)->url), ENT_COMPAT, 'UTF-8') . '");'; if (!empty($row->settings->background_repeat)) { $row_css .= 'background-repeat:' . $row->settings->background_repeat . ';'; @@ -476,14 +480,14 @@ public static function generatelayout() 'componentArea' => $componentArea, ); - $template = JFactory::getApplication()->getTemplate(); + $template = Factory::getApplication()->getTemplate(); $themepath = JPATH_THEMES . '/' . $template; $generate_file = $themepath . '/html/layouts/helix3/frontend/generate.php'; $lyt_thm_path = $themepath . '/html/layouts/helix3/'; $layout_path = (file_exists($generate_file)) ? $lyt_thm_path : JPATH_ROOT .'/plugins/system/helix3/layouts'; - $getLayout = new JLayoutFile('frontend.generate', $layout_path ); + $getLayout = new FileLayout('frontend.generate', $layout_path ); $output .= $getLayout->render($layout_data); } @@ -514,7 +518,7 @@ private static function hasComponent($rowColumns) //Get Active Columns private static function rowColumns($columns) { - $doc = JFactory::getDocument(); + $doc = Factory::getDocument(); $cols = array(); //Inactive @@ -583,7 +587,7 @@ private static function rowColumns($columns) //Count Modules public static function countModules($position) { - $doc = JFactory::getDocument(); + $doc = Factory::getDocument(); return ($doc->countModules($position) or self::hasFeature($position)); } @@ -617,7 +621,7 @@ public static function hasFeature($position) public static function addCSS($sources, $attribs = array()) { - $template = JFactory::getApplication()->getTemplate(); + $template = Factory::getApplication()->getTemplate(); $path = JPATH_THEMES . '/' . $template . '/css/'; $srcs = array(); @@ -639,13 +643,13 @@ public static function addCSS($sources, $attribs = array()) if (file_exists($path . $src)) { - self::getInstance()->document->addStyleSheet(JURI::base(true) . '/templates/' . $template . '/css/' . $src, 'text/css', null, $attribs); + self::getInstance()->document->addStyleSheet(Uri::base(true) . '/templates/' . $template . '/css/' . $src, [], $attribs); } else { if ($src != 'custom.css') { - self::getInstance()->document->addStyleSheet($src, 'text/css', null, $attribs); + self::getInstance()->document->addStyleSheet($src, [], $attribs); } } } @@ -666,7 +670,7 @@ public static function addJS($sources, $seperator = ',') $srcs = array(); - $template = JFactory::getApplication()->getTemplate(); + $template = Factory::getApplication()->getTemplate(); $path = JPATH_THEMES . '/' . $template . '/js/'; if (is_string($sources)) @@ -686,7 +690,7 @@ public static function addJS($sources, $seperator = ',') if (file_exists($path . $src)) { - self::getInstance()->document->addScript(JURI::base(true) . '/templates/' . $template . '/js/' . $src); + self::getInstance()->document->addScript(Uri::base(true) . '/templates/' . $template . '/js/' . $src); } else { @@ -790,7 +794,7 @@ public static function setLessVariable($name, $value) private static function autoCompileLess($less, $css) { // load the cache - $template = JFactory::getApplication()->getTemplate(); + $template = Factory::getApplication()->getTemplate(); $cachePath = JPATH_CACHE . '/com_templates/templates/' . $template; $cacheFile = $cachePath . '/' . basename($css . ".cache"); @@ -820,7 +824,7 @@ private static function autoCompileLess($less, $css) if (!file_exists($cachePath)) { - JFolder::create($cachePath, 0755); + Folder::create($cachePath, 0755); } file_put_contents($cacheFile, serialize($newCache)); @@ -840,7 +844,7 @@ private static function autoCompileLess($less, $css) */ public static function addLess($less, $css, $attribs = array()) { - $template = JFactory::getApplication()->getTemplate(); + $template = Factory::getApplication()->getTemplate(); $themepath = JPATH_THEMES . '/' . $template; if (self::getParam('lessoption') and self::getParam('lessoption') == '1') @@ -882,7 +886,7 @@ private static function resetCookie($name) */ public static function Preset() { - $template = JFactory::getApplication()->getTemplate(); + $template = Factory::getApplication()->getTemplate(); $name = $template . '_preset'; if (isset($_COOKIE[$name])) @@ -1019,9 +1023,9 @@ public static function loadWebFonts() */ public static function addGoogleFont($fonts) { - $doc = JFactory::getDocument(); + $doc = Factory::getDocument(); $webfonts = ''; - $tpl_path = JPATH_BASE . '/templates/' . JFactory::getApplication()->getTemplate() . '/webfonts/webfonts.json'; + $tpl_path = JPATH_BASE . '/templates/' . Factory::getApplication()->getTemplate() . '/webfonts/webfonts.json'; $plg_path = JPATH_BASE . '/plugins/system/helix3/assets/webfonts/webfonts.json'; if (file_exists($tpl_path)) @@ -1154,8 +1158,8 @@ public static function compressJS($excludes = '') { require_once(__DIR__ . '/classes/Minifier.php'); - $doc = JFactory::getDocument(); - $app = JFactory::getApplication(); + $doc = Factory::getDocument(); + $app = Factory::getApplication(); $view = $app->input->get('view'); $layout = $app->input->get('layout'); @@ -1170,7 +1174,7 @@ public static function compressJS($excludes = '') $all_scripts = $doc->_scripts; $cache_path = JPATH_ROOT . '/cache/com_templates/templates/' . self::getTemplate(); $scripts = array(); - $root_url = JURI::root(true); + $root_url = Uri::root(true); $minifiedCode = ''; $md5sum = ''; @@ -1179,11 +1183,16 @@ public static function compressJS($excludes = '') { $js_file = str_replace($root_url, JPATH_ROOT, $key); + // disable js compress for sp_pagebuilder + if(strpos($js_file, 'com_sppagebuilder')) { + continue; + } + if (strpos($js_file, JPATH_ROOT) === false) { $js_file = JPATH_ROOT . $key; } - if (JFile::exists($js_file)) + if (File::exists($js_file)) { if (!self::excludeJS($key, $excludes)) { @@ -1207,28 +1216,28 @@ public static function compressJS($excludes = '') //Compress All scripts if ($minifiedCode) { - if (!JFolder::exists($cache_path)) + if (!Folder::exists($cache_path)) { - JFolder::create($cache_path, 0755); + Folder::create($cache_path, 0755); } else { $file = $cache_path . '/' . md5($md5sum) . '.js'; - if (!JFile::exists($file)) + if (!File::exists($file)) { - JFile::write($file, $minifiedCode); + File::write($file, $minifiedCode); } else { if (filesize($file) == 0 || ((filemtime($file) + $cachetime * 60) < time())) { - JFile::write($file, $minifiedCode); + File::write($file, $minifiedCode); } } - $doc->addScript(JURI::base(true) . '/cache/com_templates/templates/' . self::getTemplate() . '/' . md5($md5sum) . '.js'); + $doc->addScript(Uri::base(true) . '/cache/com_templates/templates/' . self::getTemplate() . '/' . md5($md5sum) . '.js'); } } @@ -1251,21 +1260,34 @@ public static function compressCSS() require_once(__DIR__ . '/classes/cssmin.php'); - $doc = JFactory::getDocument(); - $app = JFactory::getApplication(); + $doc = Factory::getDocument(); + $app = Factory::getApplication(); $cachetime = $app->get('cachetime', 15); $all_stylesheets = $doc->_styleSheets; $cache_path = JPATH_ROOT . '/cache/com_templates/templates/' . self::getTemplate(); $stylesheets = array(); - $root_url = JURI::root(true); + $root_url = Uri::root(true); $minifiedCode = ''; $md5sum = ''; + $view = $app->input->get('view'); + $layout = $app->input->get('layout'); + + // disable css compress for edit view + if($view == 'form' || $layout == 'edit') + { + return; + } //Check all local stylesheets foreach ($all_stylesheets as $key => $value) { $css_file = str_replace($root_url, JPATH_ROOT, $key); + // disable css compress for sp_pagebuilder + if(strpos($css_file, 'com_sppagebuilder')) { + continue; + } + if (strpos($css_file, JPATH_ROOT) === false) { $css_file = JPATH_ROOT . $key; } @@ -1273,7 +1295,7 @@ public static function compressCSS() global $absolute_url; $absolute_url = $key;//absoulte path of each css file - if (JFile::exists($css_file)) + if (File::exists($css_file)) { $stylesheets[] = $key; $md5sum .= md5($key); @@ -1305,28 +1327,28 @@ function ($matches) //Compress All stylesheets if ($minifiedCode) { - if (!JFolder::exists($cache_path)) + if (!Folder::exists($cache_path)) { - JFolder::create($cache_path, 0755); + Folder::create($cache_path, 0755); } else { $file = $cache_path . '/' . md5($md5sum) . '.css'; - if (!JFile::exists($file)) + if (!File::exists($file)) { - JFile::write($file, $minifiedCode); + File::write($file, $minifiedCode); } else { if (filesize($file) == 0 || ((filemtime($file) + $cachetime * 60) < time())) { - JFile::write($file, $minifiedCode); + File::write($file, $minifiedCode); } } - $doc->addStylesheet(JURI::base(true) . '/cache/com_templates/templates/' . self::getTemplate() . '/' . md5($md5sum) . '.css'); + $doc->addStylesheet(Uri::base(true) . '/cache/com_templates/templates/' . self::getTemplate() . '/' . md5($md5sum) . '.css'); } } diff --git a/plugins/system/helix3/fields/asset.php b/plugins/system/helix3/fields/asset.php index 37e6e34..2d27df0 100644 --- a/plugins/system/helix3/fields/asset.php +++ b/plugins/system/helix3/fields/asset.php @@ -9,30 +9,33 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -jimport('joomla.form.formfield'); +use Joomla\CMS\Factory; +use Joomla\CMS\Form\FormField; +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Uri\Uri; -class JFormFieldAsset extends JFormField +class JFormFieldAsset extends FormField { protected $type = 'Asset'; protected function getInput() { $v = $this->getVersion(); - $helix_plg_url = JURI::root(true) . '/plugins/system/helix3'; - $doc = JFactory::getDocument(); - $doc->addScriptdeclaration('var layoutbuilder_base="' . JURI::root() . '";'); + $helix_plg_url = Uri::root(true) . '/plugins/system/helix3'; + $doc = Factory::getDocument(); + $doc->addScriptdeclaration('var layoutbuilder_base="' . Uri::root() . '";'); $doc->addScriptDeclaration("var basepath = '{$helix_plg_url}';"); $doc->addScriptDeclaration("var pluginVersion = '{$v}';"); //Core scripts - JHtml::_('jquery.framework'); + HTMLHelper::_('jquery.framework'); $jVersion = JVERSION < 4 ? '' : '.j4'; - if(JVERSION < 4) + if (JVERSION < 4) { - JHtml::_('jquery.ui', array('core', 'sortable')); - JHtml::_('formbehavior.chosen', 'select'); + HTMLHelper::_('jquery.ui', array('core', 'sortable')); + HTMLHelper::_('formbehavior.chosen', 'select'); } else { @@ -55,7 +58,7 @@ protected function getInput() private function getVersion() { - $db = JFactory::getDBO(); + $db = Factory::getDBO(); $query = $db->getQuery(true); $query ->select(array('*')) diff --git a/plugins/system/helix3/fields/button.php b/plugins/system/helix3/fields/button.php index bfdc473..0fa059c 100644 --- a/plugins/system/helix3/fields/button.php +++ b/plugins/system/helix3/fields/button.php @@ -9,9 +9,9 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -jimport('joomla.form.formfield'); +use Joomla\CMS\Form\FormField; -class JFormFieldButton extends JFormField +class JFormFieldButton extends FormField { protected $type = 'Button'; protected function getInput() { diff --git a/plugins/system/helix3/fields/group.php b/plugins/system/helix3/fields/group.php index b639d8f..ac97120 100644 --- a/plugins/system/helix3/fields/group.php +++ b/plugins/system/helix3/fields/group.php @@ -9,18 +9,23 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -jimport('joomla.form.formfield'); +use Joomla\CMS\Form\FormField; +use Joomla\CMS\Language\Text; -class JFormFieldGroup extends JFormField { +class JFormFieldGroup extends FormField +{ protected $type = 'Group'; - public function getInput() { + + public function getInput() + { $text = (string) $this->element['title']; - $subtitle = (!empty($this->element['subtitle'])) ? '' . JText::_($this->element['subtitle']) . '':''; + $subtitle = (!empty($this->element['subtitle'])) ? '' . Text::_($this->element['subtitle']) . '':''; $group = ($this->element['group']=='no')?'no_group':'in_group'; - return '
    ' . JText::_($text) . $subtitle . '
    '; + return '
    ' . Text::_($text) . $subtitle . '
    '; } - public function getLabel(){ + public function getLabel() + { return false; } } diff --git a/plugins/system/helix3/fields/icon.php b/plugins/system/helix3/fields/icon.php index 4b04478..e6038c0 100644 --- a/plugins/system/helix3/fields/icon.php +++ b/plugins/system/helix3/fields/icon.php @@ -9,11 +9,11 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -jimport('joomla.form.formfield'); +use Joomla\CMS\Form\FormField; +use Joomla\CMS\HTML\HTMLHelper; -jimport('joomla.html.html.select'); - -class JFormFieldIcon extends JFormField { +class JFormFieldIcon extends FormField +{ protected $type = 'Icon'; @@ -22,18 +22,20 @@ public function getInput() { $icons = $this->getIconsList(); $arr = array(); - $arr[] = JHtml::_('select.option', '', '' ); + $arr[] = HTMLHelper::_('select.option', '', '' ); - foreach ($icons as $value) { - $arr[] = JHtml::_('select.option', $value, str_replace('fa-', '', $value) ); + foreach ($icons as $value) + { + $arr[] = HTMLHelper::_('select.option', $value, str_replace('fa-', '', $value) ); } - return JHtml::_('select.genericlist', $arr, $this->name, 'class="form-select"', 'value', 'text', $this->value); + return HTMLHelper::_('select.genericlist', $arr, $this->name, 'class="form-select"', 'value', 'text', $this->value); } /*Icons List*/ - private static function getIconsList() { + private static function getIconsList() + { return array( 'fa-500px', 'fa-adjust', diff --git a/plugins/system/helix3/fields/layout.php b/plugins/system/helix3/fields/layout.php index 72fa57c..6fde952 100644 --- a/plugins/system/helix3/fields/layout.php +++ b/plugins/system/helix3/fields/layout.php @@ -9,9 +9,12 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -jimport('joomla.form.formfield'); +use Joomla\CMS\Factory; +use Joomla\CMS\Form\FormField; -class JFormFieldLayout extends JFormField { + +class JFormFieldLayout extends FormField +{ protected $type = 'Layout'; @@ -57,8 +60,8 @@ public function getLabel() //Get template name private static function getTemplate() { - $id = (int) JFactory::getApplication()->input->get('id', 0); - $db = JFactory::getDbo(); + $id = (int) Factory::getApplication()->input->get('id', 0); + $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select($db->quoteName(array('template'))); $query->from($db->quoteName('#__template_styles')); diff --git a/plugins/system/helix3/fields/layoutlist.php b/plugins/system/helix3/fields/layoutlist.php index 3e2dadc..1c9886e 100644 --- a/plugins/system/helix3/fields/layoutlist.php +++ b/plugins/system/helix3/fields/layoutlist.php @@ -1,17 +1,20 @@ '; - $htmls .= ''; + $htmls .= ''; return $htmls; } @@ -47,8 +50,8 @@ public function getLabel() //Get template name private static function getTemplate() { - $id = (int) JFactory::getApplication()->input->get('id', 0); - $db = JFactory::getDbo(); + $id = (int) Factory::getApplication()->input->get('id', 0); + $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select($db->quoteName(array('template'))); $query->from($db->quoteName('#__template_styles')); diff --git a/plugins/system/helix3/fields/megamenu.php b/plugins/system/helix3/fields/megamenu.php index d86c7c8..9b9b454 100644 --- a/plugins/system/helix3/fields/megamenu.php +++ b/plugins/system/helix3/fields/megamenu.php @@ -9,9 +9,9 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -jimport('joomla.form.formfield'); +use Joomla\CMS\Form\FormField; -class JFormFieldMegamenu extends JFormField +class JFormFieldMegamenu extends FormField { protected $type = "Megamenu"; diff --git a/plugins/system/helix3/fields/menulayout.php b/plugins/system/helix3/fields/menulayout.php index 782e4d7..df05bae 100644 --- a/plugins/system/helix3/fields/menulayout.php +++ b/plugins/system/helix3/fields/menulayout.php @@ -9,12 +9,17 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); +use Joomla\CMS\Factory; +use Joomla\CMS\Language\Text; +use Joomla\CMS\Menu\SiteMenu; + + $current_menu_id = $this->form->getValue('id'); function create_menu($current_menu_id) { $items = menuItems(); - $menus = new JMenuSite; + $menus = new SiteMenu(); if (isset($items[$current_menu_id])) { @@ -30,7 +35,7 @@ function create_menu($current_menu_id) function menuItems() { - $menus = new JMenuSite; + $menus = new SiteMenu(); $menus = $menus->getMenu(); $new = array(); foreach ($menus as $item) { @@ -41,7 +46,7 @@ function menuItems() function getModuleNameId($id = 'all') { - $db = JFactory::getDBO(); + $db = Factory::getDBO(); if ($id == 'all') { $query = 'SELECT id, title FROM `#__modules` WHERE ( `published` !=-2 AND `published` !=0 ) AND client_id = 0'; @@ -85,7 +90,7 @@ function getModuleNameId($id = 'all') $item = $items[$current_menu_id]; } -$menuItems = new JMenuSite; +$menuItems = new SiteMenu(); $no_child = true; $count = 0; @@ -131,7 +136,7 @@ function getModuleNameId($id = 'all')
    - +
    • - +
    • -
    • +
    • - - - - + + + +
    • - +
    diff --git a/plugins/system/helix3/fields/modpos.php b/plugins/system/helix3/fields/modpos.php index d44ffa6..4975929 100644 --- a/plugins/system/helix3/fields/modpos.php +++ b/plugins/system/helix3/fields/modpos.php @@ -1,15 +1,19 @@ setQuery($query); @@ -57,8 +61,8 @@ protected function getInput() $selectOption = array(); sort($selectOption); - foreach($options as $option) $selectOption[] = JHTML::_( 'select.option',$option,$option ); + foreach($options as $option) $selectOption[] = HTMLHelper::_( 'select.option',$option,$option ); - return JHTML::_('select.genericlist', $selectOption, 'jform[params]['.$this->element['name'].']', 'class="form-select '.$this->element['class'].'"', 'value', 'text', $this->value, 'jform_params_helix_'.$this->element['name']); + return HTMLHelper::_('select.genericlist', $selectOption, 'jform[params]['.$this->element['name'].']', 'class="form-select '.$this->element['class'].'"', 'value', 'text', $this->value, 'jform_params_helix_'.$this->element['name']); } } diff --git a/plugins/system/helix3/fields/optionio.php b/plugins/system/helix3/fields/optionio.php index 6acc376..1f2c57c 100644 --- a/plugins/system/helix3/fields/optionio.php +++ b/plugins/system/helix3/fields/optionio.php @@ -9,15 +9,17 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -jimport('joomla.form.formfield'); +use Joomla\CMS\Factory; +use Joomla\CMS\Form\FormField; +use Joomla\CMS\Language\Text; -class JFormFieldOptionio extends JFormField +class JFormFieldOptionio extends FormField { protected $type = 'optionio'; protected function getInput() { - $input = JFactory::getApplication()->input; + $input = Factory::getApplication()->input; $template_id = $input->get('id',0,'INT'); $url_cureent = "//$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; @@ -26,11 +28,11 @@ protected function getInput() $output = ''; $output .= ''; $output .= '
    '; $output .= ''; - $output .= ''; + $output .= ''; $output .= '
    '; return $output; diff --git a/plugins/system/helix3/fields/presets.php b/plugins/system/helix3/fields/presets.php index 29746a0..fa39c9d 100644 --- a/plugins/system/helix3/fields/presets.php +++ b/plugins/system/helix3/fields/presets.php @@ -1,20 +1,21 @@ form->getValue('template'); $templatePresetsDir = JPATH_SITE.'/templates/'.$template.'/images/presets/'; - $base_url = JURI::root(true).'/templates/'.$template.'/images/presets/'; + $base_url = Uri::root(true).'/templates/'.$template.'/images/presets/'; $root_path = JPATH_SITE.'/templates/'.$template.'/images/presets/'; - $doc = JFactory::getDocument(); - $helix_url = JURI::root(true).'/plugins/system/helix3/'; + $doc = Factory::getDocument(); + $helix_url = Uri::root(true).'/plugins/system/helix3/'; - $folders = JFolder::folders($templatePresetsDir); + $folders = Folder::folders($templatePresetsDir); if( !defined('CURRENT_PRESET') ){ define('CURRENT_PRESET', $this->value); @@ -36,7 +37,7 @@ protected function getInput() } $html = ''; - $app = JFactory::getApplication(); + $app = Factory::getApplication(); $template = $app->getTemplate('shaper_helix3'); $params = $template->params; $variable = $params->get('variable'); diff --git a/plugins/system/helix3/fields/spgallery.php b/plugins/system/helix3/fields/spgallery.php index 05681a3..a582a6e 100644 --- a/plugins/system/helix3/fields/spgallery.php +++ b/plugins/system/helix3/fields/spgallery.php @@ -1,27 +1,35 @@ addScript($plg_path . '/assets/js/jquery.ui.core.min.js'); // $doc->addScript($plg_path . '/assets/js/jquery.ui.sortable.min.js'); - $plg_path = JURI::root(true) . '/plugins/system/helix3'; + $plg_path = Uri::root(true) . '/plugins/system/helix3'; $doc->addScript($plg_path . '/assets/js/jquery-ui.min.js'); $doc->addScript($plg_path . '/assets/js/spgallery.js'); $doc->addStyleSheet($plg_path . '/assets/css/spgallery.css'); @@ -43,20 +51,20 @@ protected function getInput() $data_src = $value; - $src = JURI::root(true) . '/' . $value; + $src = Uri::root(true) . '/' . $value; $basename = basename($src); - $thumbnail = JPATH_ROOT . '/' . dirname($value) . '/' . JFile::stripExt($basename) . '_thumbnail.' . JFile::getExt($basename); + $thumbnail = JPATH_ROOT . '/' . dirname($value) . '/' . File::stripExt($basename) . '_thumbnail.' . File::getExt($basename); if(file_exists($thumbnail)) { - $src = JURI::root(true) . '/' . dirname($value) . '/' . JFile::stripExt($basename) . '_thumbnail.' . JFile::getExt($basename); + $src = Uri::root(true) . '/' . dirname($value) . '/' . File::stripExt($basename) . '_thumbnail.' . File::getExt($basename); } - $small_size = JPATH_ROOT . '/' . dirname($value) . '/' . JFile::stripExt($basename) . '_small.' . JFile::getExt($basename); + $small_size = JPATH_ROOT . '/' . dirname($value) . '/' . File::stripExt($basename) . '_small.' . File::getExt($basename); if(file_exists($small_size)) { - $src = JURI::root(true) . '/' . dirname($value) . '/' . JFile::stripExt($basename) . '_small.' . JFile::getExt($basename); + $src = Uri::root(true) . '/' . dirname($value) . '/' . File::stripExt($basename) . '_small.' . File::getExt($basename); } $output .= '
  • Delete
  • '; diff --git a/plugins/system/helix3/fields/spimage.php b/plugins/system/helix3/fields/spimage.php index e4fa562..96c4a9c 100644 --- a/plugins/system/helix3/fields/spimage.php +++ b/plugins/system/helix3/fields/spimage.php @@ -9,18 +9,24 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -class JFormFieldSpimage extends JFormField +use Joomla\CMS\Factory; +use Joomla\CMS\Filesystem\File; +use Joomla\CMS\Form\FormField; +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Uri\Uri; + +class JFormFieldSpimage extends FormField { protected $type = 'Spimage'; protected function getInput() { - $doc = JFactory::getDocument(); + $doc = Factory::getDocument(); - JHtml::_('jquery.framework'); + HTMLHelper::_('jquery.framework'); - $plg_path = JURI::root(true) . '/plugins/system/helix3'; + $plg_path = Uri::root(true) . '/plugins/system/helix3'; $doc->addScript($plg_path . '/assets/js/spimage.js'); $doc->addStyleSheet($plg_path . '/assets/css/spimage.css'); @@ -35,15 +41,17 @@ protected function getInput() $output = '
    '; $output .= '
    '; - if($this->value) { + if ($this->value) + { $data_src = $this->value; - $src = JURI::root(true) . '/' . $data_src; + $src = Uri::root(true) . '/' . $data_src; $basename = basename($data_src); - $thumbnail = JPATH_ROOT . '/' . dirname($data_src) . '/' . JFile::stripExt($basename) . '_thumbnail.' . JFile::getExt($basename); + $thumbnail = JPATH_ROOT . '/' . dirname($data_src) . '/' . File::stripExt($basename) . '_thumbnail.' . File::getExt($basename); - if(file_exists($thumbnail)) { - $src = JURI::root(true) . '/' . dirname($data_src) . '/' . JFile::stripExt($basename) . '_thumbnail.' . JFile::getExt($basename); + if (file_exists($thumbnail)) + { + $src = Uri::root(true) . '/' . dirname($data_src) . '/' . File::stripExt($basename) . '_thumbnail.' . File::getExt($basename); } $output .= ''; diff --git a/plugins/system/helix3/fields/typography.php b/plugins/system/helix3/fields/typography.php index 888d8a8..5d6c514 100644 --- a/plugins/system/helix3/fields/typography.php +++ b/plugins/system/helix3/fields/typography.php @@ -1,17 +1,20 @@ '; $html .= '
    '; - $html .= ''; + $html .= ''; $html .= ''; if(isset($value->fontFamily)) { @@ -85,7 +88,7 @@ protected function getInput() { //Font Subsets $html .= '
    '; - $html .= ''; + $html .= ''; $html .= ''; $html .= '
    '; @@ -140,8 +143,8 @@ private static function filterArray($items, $key) { //Get template name private static function getTemplate() { - $id = (int) JFactory::getApplication()->input->get('id', 0); - $db = JFactory::getDbo(); + $id = (int) Factory::getApplication()->input->get('id', 0); + $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select($db->quoteName(array('template'))); $query->from($db->quoteName('#__template_styles')); diff --git a/plugins/system/helix3/helix3.php b/plugins/system/helix3/helix3.php index 587c6a3..926300f 100644 --- a/plugins/system/helix3/helix3.php +++ b/plugins/system/helix3/helix3.php @@ -9,17 +9,20 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -jimport('joomla.plugin.plugin'); -jimport( 'joomla.event.plugin' ); -jimport('joomla.registry.registry'); - +use Joomla\CMS\Factory; +use Joomla\CMS\Uri\Uri; +use Joomla\CMS\Form\Form; +use Joomla\Registry\Registry; +use Joomla\CMS\Filesystem\File; use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Plugin\CMSPlugin; -if(!class_exists('Helix3')) { - require_once (__DIR__ . '/core/helix3.php'); +if (!class_exists('Helix3')) +{ + require_once (__DIR__ . '/core/helix3.php'); } -class plgSystemHelix3 extends JPlugin +class plgSystemHelix3 extends CMSPlugin { protected $autoloadLanguage = true; @@ -48,8 +51,8 @@ public function onAfterInitialise() require_once $bootstrapPath; } - JHtml::register('bootstrap.tooltip', ['Helix3Bootstrap', 'tooltip']); - JHtml::register('bootstrap.popover', ['Helix3Bootstrap', 'popover']); + HTMLHelper::register('bootstrap.tooltip', ['Helix3Bootstrap', 'tooltip']); + HTMLHelper::register('bootstrap.popover', ['Helix3Bootstrap', 'popover']); } } } @@ -57,15 +60,16 @@ public function onAfterInitialise() // Copied style function onAfterDispatch() { - if( !JFactory::getApplication()->isClient('administrator') ) { + if (!Factory::getApplication()->isClient('api') && !Factory::getApplication()->isClient('administrator')) + { - $activeMenu = JFactory::getApplication()->getMenu()->getActive(); + $activeMenu = Factory::getApplication()->getMenu()->getActive(); - if(is_null($activeMenu)) $template_style_id = 0; + if (is_null($activeMenu)) $template_style_id = 0; else $template_style_id = (int) $activeMenu->template_style_id; if ($template_style_id > 0) { - $db = JFactory::getDbo(); + $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select(array('*')); $query->from($db->quoteName('#__template_styles')); @@ -76,7 +80,7 @@ function onAfterDispatch() { if(!empty($style->template) && !empty($style->params)) { - JFactory::getApplication()->setTemplate($style->template, $style->params); + Factory::getApplication()->setTemplate($style->template, $style->params); } } } @@ -85,13 +89,13 @@ function onAfterDispatch() { function onContentPrepareForm($form, $data) { $v = self::getVersion(); - $doc = JFactory::getDocument(); - $plg_path = JURI::root(true) . '/plugins/system/helix3'; - $plg_path2 = JURI::root() . 'plugins/system/helix3'; - JForm::addFormPath(JPATH_PLUGINS.'/system/helix3/params'); + $doc = Factory::getDocument(); + $plg_path = Uri::root(true) . '/plugins/system/helix3'; + $plg_path2 = Uri::root() . 'plugins/system/helix3'; + Form::addFormPath(JPATH_PLUGINS.'/system/helix3/params'); if ($form->getName()=='com_menus.item') { //Add Helix menu params to the menu item - JHtml::_('jquery.framework'); + HTMLHelper::_('jquery.framework'); $data = (array)$data; if($data['id'] && $data['parent_id'] == 1) @@ -101,11 +105,11 @@ function onContentPrepareForm($form, $data) $doc->addStyleSheet($plg_path . '/assets/css/modal.css?' . $v); $doc->addStyleSheet($plg_path . '/assets/css/menu.generator.css?' . $v); - JHtml::_('jquery.framework'); + HTMLHelper::_('jquery.framework'); if(JVERSION < 4) { - JHtml::_('jquery.ui', array('core', 'more', 'sortable')); + HTMLHelper::_('jquery.ui', array('core', 'more', 'sortable')); $doc->addScript($plg_path.'/assets/js/jquery-ui.draggable.min.js?' . $v); } else @@ -125,17 +129,19 @@ function onContentPrepareForm($form, $data) } //Article Post format - if ($form->getName() == 'com_content.article') { - JHtml::_('jquery.framework'); + if ($form->getName() == 'com_content.article') + { + HTMLHelper::_('jquery.framework'); $doc->addStyleSheet($plg_path.'/assets/css/font-awesome.min.css?' . $v); $doc->addScript($plg_path.'/assets/js/post-formats.js?' . $v); $tpl_path = JPATH_ROOT . '/templates/' . $this->getTemplateName(); - if(JFile::exists( $tpl_path . '/post-formats.xml' )) { - JForm::addFormPath($tpl_path); + if (File::exists( $tpl_path . '/post-formats.xml' )) + { + Form::addFormPath($tpl_path); } else { - JForm::addFormPath(JPATH_PLUGINS . '/system/helix3/params'); + Form::addFormPath(JPATH_PLUGINS . '/system/helix3/params'); } $form->loadFile('post-formats', false); @@ -149,7 +155,7 @@ public function onExtensionAfterSave($option, $data) { if ($option == 'com_templates.style' && !empty($data->id)) { - $params = new JRegistry; + $params = new Registry; $params->loadString($data->params); $email = $params->get('joomshaper_email'); @@ -162,7 +168,7 @@ public function onExtensionAfterSave($option, $data) { $extra_query = 'joomshaper_email=' . urlencode($email); $extra_query .='&joomshaper_license_key=' . urlencode($license_key); - $db = JFactory::getDbo(); + $db = Factory::getDbo(); $fields = array( $db->quoteName('extra_query') . '=' . $db->quote($extra_query), @@ -181,17 +187,18 @@ public function onExtensionAfterSave($option, $data) { public function onAfterRoute() { - $japps = JFactory::getApplication(); + $japps = Factory::getApplication(); if ( $japps->isClient('administrator') ) { - $user = JFactory::getUser(); + $user = Factory::getUser(); - if( !in_array( 8, $user->groups ) ){ + if ( !in_array( 8, $user->groups ) ) + { return false; } - $inputs = JFactory::getApplication()->input; + $inputs = Factory::getApplication()->input; $option = $inputs->get ( 'option', '' ); $id = $inputs->get ( 'id', '0', 'INT' ); @@ -199,10 +206,10 @@ public function onAfterRoute() if ( strtolower( $option ) == 'com_templates' && $id && $helix3task == "export" ) { - $db = JFactory::getDbo(); - $query = $db->getQuery(true); + $db = Factory::getDbo(); + $query = $db->getQuery(true); - $query + $query ->select( '*' ) ->from( $db->quoteName( '#__template_styles' ) ) ->where( $db->quoteName( 'id' ) . ' = ' . $db->quote( $id ) . ' AND ' . $db->quoteName( 'client_id' ) . ' = 0' ); @@ -229,7 +236,7 @@ public function onAfterRoute() private function getTemplateName() { - $db = JFactory::getDbo(); + $db = Factory::getDbo(); $query = $db->getQuery(true); $query->select($db->quoteName(array('template'))); $query->from($db->quoteName('#__template_styles')); @@ -241,24 +248,24 @@ private function getTemplateName() } function onAfterRender() { - $app = JFactory::getApplication(); + $app = Factory::getApplication(); - if ($app->isClient('administrator')) + if ($app->isClient('administrator')) { - return; - } - - $body = JFactory::getApplication()->getBody(); - $preset = Helix3::Preset(); - - $body = str_replace('{helix_preset}', $preset, $body); + return; + } + + $body = Factory::getApplication()->getBody(); + $preset = Helix3::Preset(); - JFactory::getApplication()->setBody($body); + $body = str_replace('{helix_preset}', !empty($preset) ? $preset : '', $body); + + Factory::getApplication()->setBody($body); } private static function getVersion() { - $db = JFactory::getDBO(); + $db = Factory::getDBO(); $query = $db->getQuery(true); $query ->select(array('*')) diff --git a/plugins/system/helix3/helix3.xml b/plugins/system/helix3/helix3.xml index cba17be..9429f59 100644 --- a/plugins/system/helix3/helix3.xml +++ b/plugins/system/helix3/helix3.xml @@ -7,7 +7,7 @@ http://www.gnu.org/licenses/gpl-2.0.html GPLv2 or later support@joomshaper.com http://www.joomshaper.com - 3.0.2 + 3.0.3 Helix3 Framework - Joomla Template Framework by JoomShaper diff --git a/plugins/system/helix3/layout/generated.php b/plugins/system/helix3/layout/generated.php index ce90fb4..2f33518 100644 --- a/plugins/system/helix3/layout/generated.php +++ b/plugins/system/helix3/layout/generated.php @@ -1,18 +1,22 @@
    @@ -62,8 +66,8 @@
    @@ -75,13 +79,13 @@
    - +
    • - +
        $grid){ @@ -93,9 +97,9 @@
    • -
    • -
    • -
    • +
    • +
    • +
    @@ -103,7 +107,7 @@
    -
    +
    @@ -120,7 +124,7 @@ if ($layout_data) { foreach ($layout_data as $row) { $rowSettings = RowColumnSettings::getSettings($row->settings); - $name = JText::_('HELIX_SECTION_TITLE'); + $name = Text::_('HELIX_SECTION_TITLE'); if (isset($row->settings->name)) { $name = $row->settings->name; @@ -136,7 +140,7 @@
    diff --git a/plugins/system/helix3/layout/layout-settings/fields-helper.php b/plugins/system/helix3/layout/layout-settings/fields-helper.php index 013f0d6..3515f2d 100644 --- a/plugins/system/helix3/layout/layout-settings/fields-helper.php +++ b/plugins/system/helix3/layout/layout-settings/fields-helper.php @@ -1,20 +1,22 @@ 'general', 'title'=>'', @@ -16,128 +18,128 @@ 'name' => array( 'type' => 'text', - 'title' => JText::_('HELIX_SECTION_TITLE'), - 'desc' => JText::_('HELIX_SECTION_TITLE_DESC'), + 'title' => Text::_('HELIX_SECTION_TITLE'), + 'desc' => Text::_('HELIX_SECTION_TITLE_DESC'), 'std' => '' ), 'background_color' => array( 'type' => 'color', - 'title' => JText::_('HELIX_SECTION_BACKGROUND_COLOR'), - 'desc' => JText::_('HELIX_SECTION_BACKGROUND_COLOR_DESC') + 'title' => Text::_('HELIX_SECTION_BACKGROUND_COLOR'), + 'desc' => Text::_('HELIX_SECTION_BACKGROUND_COLOR_DESC') ), 'color' => array( 'type' => 'color', - 'title' => JText::_('HELIX_SECTION_TEXT_COLOR'), - 'desc' => JText::_('HELIX_SECTION_TEXT_COLOR_DESC') + 'title' => Text::_('HELIX_SECTION_TEXT_COLOR'), + 'desc' => Text::_('HELIX_SECTION_TEXT_COLOR_DESC') ), 'background_image' => array( 'type' => 'media', - 'title' => JText::_('HELIX_SECTION_BACKGROUND_IMAGE'), - 'desc' => JText::_('HELIX_SECTION_BACKGROUND_IMAGE_DESC'), + 'title' => Text::_('HELIX_SECTION_BACKGROUND_IMAGE'), + 'desc' => Text::_('HELIX_SECTION_BACKGROUND_IMAGE_DESC'), 'std' => '', ), 'background_repeat'=>array( 'type'=>'select', - 'title'=>JText::_('HELIX_BG_REPEAT'), - 'desc'=>JText::_('HELIX_BG_REPEAT_DESC'), + 'title'=>Text::_('HELIX_BG_REPEAT'), + 'desc'=>Text::_('HELIX_BG_REPEAT_DESC'), 'values'=>array( - 'no-repeat'=>JText::_('HELIX_BG_REPEAT_NO'), - 'repeat'=>JText::_('HELIX_BG_REPEAT_ALL'), - 'repeat-x'=>JText::_('HELIX_BG_REPEAT_HORIZ'), - 'repeat-y'=>JText::_('HELIX_BG_REPEAT_VERTI'), - 'inherit'=>JText::_('HELIX_BG_REPEAT_INHERIT'), + 'no-repeat'=>Text::_('HELIX_BG_REPEAT_NO'), + 'repeat'=>Text::_('HELIX_BG_REPEAT_ALL'), + 'repeat-x'=>Text::_('HELIX_BG_REPEAT_HORIZ'), + 'repeat-y'=>Text::_('HELIX_BG_REPEAT_VERTI'), + 'inherit'=>Text::_('HELIX_BG_REPEAT_INHERIT'), ), 'std'=>'no-repeat', ), 'background_size' => array( 'type' => 'select', - 'title'=>JText::_('HELIX_BG_SIZE'), - 'desc'=>JText::_('HELIX_BG_SIZE_DESC'), + 'title'=>Text::_('HELIX_BG_SIZE'), + 'desc'=>Text::_('HELIX_BG_SIZE_DESC'), 'values'=>array( - 'cover'=>JText::_('HELIX_BG_COVER'), - 'contain'=>JText::_('HELIX_BG_CONTAIN'), - 'inherit'=>JText::_('HELIX_BG_INHERIT'), + 'cover'=>Text::_('HELIX_BG_COVER'), + 'contain'=>Text::_('HELIX_BG_CONTAIN'), + 'inherit'=>Text::_('HELIX_BG_INHERIT'), ), 'std'=>'cover', ), 'background_attachment'=>array( 'type'=>'select', - 'title'=>JText::_('HELIX_BG_ATTACHMENT'), - 'desc'=>JText::_('HELIX_BG_ATTACHMENT_DESC'), + 'title'=>Text::_('HELIX_BG_ATTACHMENT'), + 'desc'=>Text::_('HELIX_BG_ATTACHMENT_DESC'), 'values'=>array( - 'fixed'=>JText::_('HELIX_BG_ATTACHMENT_FIXED'), - 'scroll'=>JText::_('HELIX_BG_ATTACHMENT_SCROLL'), - 'inherit'=>JText::_('HELIX_BG_ATTACHMENT_INHERIT'), + 'fixed'=>Text::_('HELIX_BG_ATTACHMENT_FIXED'), + 'scroll'=>Text::_('HELIX_BG_ATTACHMENT_SCROLL'), + 'inherit'=>Text::_('HELIX_BG_ATTACHMENT_INHERIT'), ), 'std'=>'fixed', ), 'background_position' => array( 'type' => 'select', - 'title'=>JText::_('HELIX_BG_POSITION'), - 'desc'=>JText::_('HELIX_BG_POSITION_DESC'), + 'title'=>Text::_('HELIX_BG_POSITION'), + 'desc'=>Text::_('HELIX_BG_POSITION_DESC'), 'values'=>array( - '0 0'=>JText::_('HELIX_BG_POSITION_LEFT_TOP'), - '0 50%'=>JText::_('HELIX_BG_POSITION_LEFT_CENTER'), - '0 100%'=>JText::_('HELIX_BG_POSITION_LEFT_BOTTOM'), - '50% 0'=>JText::_('HELIX_BG_POSITION_CENTER_TOP'), - '50% 50%'=>JText::_('HELIX_BG_POSITION_CENTER_CENTER'), - '50% 100%'=>JText::_('HELIX_BG_POSITION_CENTER_BOTTOM'), - '100% 0'=>JText::_('HELIX_BG_POSITION_RIGHT_TOP'), - '100% 50%'=>JText::_('HELIX_BG_POSITION_RIGHT_CENTER'), - '100% 100%'=>JText::_('HELIX_BG_POSITION_RIGHT_BOTTOM'), + '0 0'=>Text::_('HELIX_BG_POSITION_LEFT_TOP'), + '0 50%'=>Text::_('HELIX_BG_POSITION_LEFT_CENTER'), + '0 100%'=>Text::_('HELIX_BG_POSITION_LEFT_BOTTOM'), + '50% 0'=>Text::_('HELIX_BG_POSITION_CENTER_TOP'), + '50% 50%'=>Text::_('HELIX_BG_POSITION_CENTER_CENTER'), + '50% 100%'=>Text::_('HELIX_BG_POSITION_CENTER_BOTTOM'), + '100% 0'=>Text::_('HELIX_BG_POSITION_RIGHT_TOP'), + '100% 50%'=>Text::_('HELIX_BG_POSITION_RIGHT_CENTER'), + '100% 100%'=>Text::_('HELIX_BG_POSITION_RIGHT_BOTTOM'), ), 'std'=>'0 0', ), 'link_color' => array( 'type' => 'color', - 'title' => JText::_('HELIX_LINK_COLOR'), - 'desc' => JText::_('HELIX_LINK_COLOR_DESC') + 'title' => Text::_('HELIX_LINK_COLOR'), + 'desc' => Text::_('HELIX_LINK_COLOR_DESC') ), 'link_hover_color' => array( 'type' => 'color', - 'title' => JText::_('HELIX_LINK_HOVER_COLOR'), - 'desc' => JText::_('HELIX_LINK_HOVER_COLOR_DESC') + 'title' => Text::_('HELIX_LINK_HOVER_COLOR'), + 'desc' => Text::_('HELIX_LINK_HOVER_COLOR_DESC') ), 'hidden_xs' => array( 'type' => 'checkbox', - 'title' => JText::_('HELIX_HIDDEN_MOBILE'), - 'desc' => JText::_('HELIX_HIDDEN_MOBILE_DESC'), + 'title' => Text::_('HELIX_HIDDEN_MOBILE'), + 'desc' => Text::_('HELIX_HIDDEN_MOBILE_DESC'), 'std' => '', ), 'hidden_sm' => array( 'type' => 'checkbox', - 'title' => JText::_('HELIX_HIDDEN_TABLET'), - 'desc' => JText::_('HELIX_HIDDEN_TABLET_DESC'), + 'title' => Text::_('HELIX_HIDDEN_TABLET'), + 'desc' => Text::_('HELIX_HIDDEN_TABLET_DESC'), 'std' => '', ), 'hidden_md' => array( 'type' => 'checkbox', - 'title' => JText::_('HELIX_HIDDEN_DESKTOP'), - 'desc' => JText::_('HELIX_HIDDEN_DESKTOP_DESC'), + 'title' => Text::_('HELIX_HIDDEN_DESKTOP'), + 'desc' => Text::_('HELIX_HIDDEN_DESKTOP_DESC'), 'std' => '', ), 'padding' => array( 'type' => 'text', - 'title' => JText::_('HELIX_PADDING'), - 'desc' => JText::_('HELIX_PADDING_DESC'), + 'title' => Text::_('HELIX_PADDING'), + 'desc' => Text::_('HELIX_PADDING_DESC'), 'std' => '' ), 'margin' => array( 'type' => 'text', - 'title' => JText::_('HELIX_MARGIN'), - 'desc' => JText::_('HELIX_MARGIN_DESC'), + 'title' => Text::_('HELIX_MARGIN'), + 'desc' => Text::_('HELIX_MARGIN_DESC'), 'std' => '' ), 'fluidrow' => array( 'type' => 'checkbox', - 'title' => JText::_('HELIX_ROW_FULL_WIDTH'), - 'desc' => JText::_('HELIX_ROW_FULL_WIDTH_DESC'), + 'title' => Text::_('HELIX_ROW_FULL_WIDTH'), + 'desc' => Text::_('HELIX_ROW_FULL_WIDTH_DESC'), 'std' => '', ), 'custom_class' => array( 'type' => 'text', - 'title' => JText::_('HELIX_CUSTOM_CLASS'), - 'desc' => JText::_('HELIX_CUSTOM_CLASS_DESC'), + 'title' => Text::_('HELIX_CUSTOM_CLASS'), + 'desc' => Text::_('HELIX_CUSTOM_CLASS_DESC'), 'std' => '' ), ) @@ -150,39 +152,39 @@ 'column_type' => array( 'type' => 'checkbox', - 'title' => JText::_('HELIX_COMPONENT'), - 'desc' => JText::_('HELIX_COMPONENT_DESC'), + 'title' => Text::_('HELIX_COMPONENT'), + 'desc' => Text::_('HELIX_COMPONENT_DESC'), 'std'=>'', ), 'name' => array( 'type' => 'select', - 'title' => JText::_('HELIX_MODULE_POSITION'), - 'desc' => JText::_('HELIX_MODULE_POSITION_DESC'), + 'title' => Text::_('HELIX_MODULE_POSITION'), + 'desc' => Text::_('HELIX_MODULE_POSITION_DESC'), 'values' => array(), 'std'=>'none', ), 'hidden_xs' => array( 'type' => 'checkbox', - 'title' => JText::_('HELIX_HIDDEN_MOBILE'), - 'desc' => JText::_('HELIX_HIDDEN_MOBILE_DESC'), + 'title' => Text::_('HELIX_HIDDEN_MOBILE'), + 'desc' => Text::_('HELIX_HIDDEN_MOBILE_DESC'), 'std' => '', ), 'hidden_sm' => array( 'type' => 'checkbox', - 'title' => JText::_('HELIX_HIDDEN_TABLET'), - 'desc' => JText::_('HELIX_HIDDEN_TABLET_DESC'), + 'title' => Text::_('HELIX_HIDDEN_TABLET'), + 'desc' => Text::_('HELIX_HIDDEN_TABLET_DESC'), 'std' => '', ), 'hidden_md' => array( 'type' => 'checkbox', - 'title' => JText::_('HELIX_HIDDEN_DESKTOP'), - 'desc' => JText::_('HELIX_HIDDEN_DESKTOP_DESC'), + 'title' => Text::_('HELIX_HIDDEN_DESKTOP'), + 'desc' => Text::_('HELIX_HIDDEN_DESKTOP_DESC'), 'std' => '', ), 'sm_col' => array( 'type' => 'select', - 'title' => JText::_('HELIX_TABLET_LAYOUT'), - 'desc' => JText::_('HELIX_TABLET_LAYOUT_DESC'), + 'title' => Text::_('HELIX_TABLET_LAYOUT'), + 'desc' => Text::_('HELIX_TABLET_LAYOUT_DESC'), 'values' => array( '' => "", 'col-sm-1' => 'col-md-1', @@ -202,8 +204,8 @@ ), 'xs_col' => array( 'type' => 'select', - 'title' => JText::_('HELIX_MOBILE_LAYOUT'), - 'desc' => JText::_('HELIX_MOBILE_LAYOUT_DESC'), + 'title' => Text::_('HELIX_MOBILE_LAYOUT'), + 'desc' => Text::_('HELIX_MOBILE_LAYOUT_DESC'), 'values' => array( '' => "", 'col-xs-1' => 'col-1', @@ -223,8 +225,8 @@ ), 'custom_class' => array( 'type' => 'text', - 'title' => JText::_('HELIX_CUSTOM_CLASS'), - 'desc' => JText::_('HELIX_CUSTOM_CLASS_DESC'), + 'title' => Text::_('HELIX_CUSTOM_CLASS'), + 'desc' => Text::_('HELIX_CUSTOM_CLASS_DESC'), 'std' => '' ), ) diff --git a/plugins/system/helix3/layout/types/color.php b/plugins/system/helix3/layout/types/color.php index 9e0d758..d8b0d54 100644 --- a/plugins/system/helix3/layout/types/color.php +++ b/plugins/system/helix3/layout/types/color.php @@ -6,6 +6,8 @@ * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ +use Joomla\CMS\HTML\HTMLHelper; + //no direct accees defined ('_JEXEC') or die ('resticted aceess'); @@ -19,8 +21,8 @@ static function getInput($key, $attr) } // Including fallback code for HTML5 non supported browsers. - JHtml::_('jquery.framework'); - JHtml::_('script', 'system/html5fallback.js', false, true); + HTMLHelper::_('jquery.framework'); + HTMLHelper::_('script', 'system/html5fallback.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9')); $output = '
    '; $output .= ''; diff --git a/plugins/system/helix3/layout/types/media.php b/plugins/system/helix3/layout/types/media.php index 047fbf2..d78bf77 100644 --- a/plugins/system/helix3/layout/types/media.php +++ b/plugins/system/helix3/layout/types/media.php @@ -4,11 +4,16 @@ * @author JoomShaper https://www.joomshaper.com * @copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later -*/ +*/ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); +use Joomla\CMS\Uri\Uri; +use Joomla\CMS\Language\Text; +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Component\ComponentHelper; + class SpTypeMedia { static function getInput($key, $attr) @@ -20,7 +25,7 @@ static function getInput($key, $attr) } if($attr['std']!='') { - $src = 'src="' . JURI::root() . $attr['std'] . '"'; + $src = 'src="' . Uri::root() . $attr['std'] . '"'; } else { $src = ''; } @@ -33,8 +38,8 @@ static function getInput($key, $attr) // Joomla if (JVERSION < 4) { - JHtml::_('jquery.framework'); - JHtml::_('behavior.modal'); + HTMLHelper::_('jquery.framework'); + HTMLHelper::_('behavior.modal'); $output .= '
    '; $output .= ''; @@ -47,24 +52,24 @@ static function getInput($key, $attr) $url = 'index.php?option=com_media&view=media&tmpl=component'; $id = 'helix3_modal'; - $modalHTML = JHtml::_( + $modalHTML = HTMLHelper::_( 'bootstrap.renderModal', 'imageModal_' . $id, [ 'url' => $url, - 'title' => JText::_('JLIB_FORM_CHANGE_IMAGE'), + 'title' => Text::_('JLIB_FORM_CHANGE_IMAGE'), 'closeButton' => true, 'height' => '100%', 'width' => '100%', 'modalWidth' => '80', 'bodyHeight' => '60', - 'footer' => '' - . '', + 'footer' => '' + . '', ] ); $output .= ''; @@ -73,8 +78,8 @@ static function getInput($key, $attr) $output .= '
    '; $output .= ''; - $output .= ''; - $output .= ''; + $output .= ''; + $output .= ''; $output .= '
    '; $output .= '
    '; diff --git a/plugins/system/helix3/layouts/frontend/generate.php b/plugins/system/helix3/layouts/frontend/generate.php index a0afa08..dc91f37 100644 --- a/plugins/system/helix3/layouts/frontend/generate.php +++ b/plugins/system/helix3/layouts/frontend/generate.php @@ -7,16 +7,19 @@ */ defined('_JEXEC') or die('Restricted Access'); -// +use Joomla\CMS\Factory; +use Joomla\CMS\Layout\FileLayout; + //helper & model $menu_class = JPATH_ROOT . '/plugins/system/helix3/core/classes/helix3.php'; -if (file_exists($menu_class)) { +if (file_exists($menu_class)) +{ require_once($menu_class); } -$template = JFactory::getApplication()->getTemplate(); +$template = Factory::getApplication()->getTemplate(); $themepath = JPATH_THEMES . '/' . $template; $rows_file = $themepath . '/html/layouts/helix3/frontend/rows.php'; $lyt_thm_path = $themepath . '/html/layouts/helix3/'; @@ -41,7 +44,7 @@ } -$getLayout = new JLayoutFile('frontend.rows', $layout_path ); +$getLayout = new FileLayout('frontend.rows', $layout_path ); $output .= $getLayout->render($data); diff --git a/plugins/system/helix3/layouts/frontend/modules.php b/plugins/system/helix3/layouts/frontend/modules.php index 261f22c..b5a0d12 100644 --- a/plugins/system/helix3/layouts/frontend/modules.php +++ b/plugins/system/helix3/layouts/frontend/modules.php @@ -5,12 +5,16 @@ * @copyright (c) 2010 - 2021 JoomShaper * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later */ + +use Joomla\CMS\Filter\OutputFilter; + defined('_JEXEC') or die('Restricted Access'); //helper & model $menu_class = JPATH_ROOT . '/plugins/system/helix3/core/classes/helix3.php'; -if (file_exists($menu_class)) { +if (file_exists($menu_class)) +{ require_once($menu_class); } @@ -18,7 +22,7 @@ $output =''; - $output .= '
    '; + $output .= '
    '; $output .= '
    '; diff --git a/plugins/system/helix3/layouts/frontend/rows.php b/plugins/system/helix3/layouts/frontend/rows.php index 5e1d777..bfb75e7 100644 --- a/plugins/system/helix3/layouts/frontend/rows.php +++ b/plugins/system/helix3/layouts/frontend/rows.php @@ -1,20 +1,24 @@ getTemplate(); +$template = Factory::getApplication()->getTemplate(); $themepath = JPATH_THEMES . '/' . $template; $carea_file = $themepath . '/html/layouts/helix3/frontend/conponentarea.php'; $module_file = $themepath . '/html/layouts/helix3/frontend/modules.php'; @@ -79,13 +83,15 @@ $column->className = $column->className . ' ' . $responsive_class; //End Responsive Utilities - if ($column->settings->column_type){ //Component - $getLayout = new JLayoutFile('frontend.conponentarea', $layout_path_carea ); + if ($column->settings->column_type) + { //Component + $getLayout = new FileLayout('frontend.conponentarea', $layout_path_carea ); $output .= $getLayout->render($column); } - else { // Module + else + { // Module - $getLayout = new JLayoutFile('frontend.modules', $layout_path_module ); + $getLayout = new FileLayout('frontend.modules', $layout_path_module ); $output .= $getLayout->render($column); } } diff --git a/plugins/system/helix3/params/menu-child.xml b/plugins/system/helix3/params/menu-child.xml index 1449bd0..472bce6 100644 --- a/plugins/system/helix3/params/menu-child.xml +++ b/plugins/system/helix3/params/menu-child.xml @@ -3,8 +3,8 @@
    - - + + diff --git a/templates/shaper_helix3/comingsoon.php b/templates/shaper_helix3/comingsoon.php index be02fe7..28ecb6a 100755 --- a/templates/shaper_helix3/comingsoon.php +++ b/templates/shaper_helix3/comingsoon.php @@ -7,8 +7,15 @@ */ defined('_JEXEC') or die; -$doc = JFactory::getDocument(); -$app = JFactory::getApplication(); + +use Joomla\CMS\Factory; +use Joomla\CMS\Uri\Uri; +use Joomla\CMS\Image\Image; +use Joomla\CMS\Language\Text; +use Joomla\CMS\HTML\HTMLHelper; + +$doc = Factory::getDocument(); +$app = Factory::getApplication(); //Load Helix $helix3_path = JPATH_PLUGINS.'/system/helix3/core/helix3.php'; @@ -28,7 +35,7 @@ //Comingsoon Logo if ($logo_image = $this->params->get('comingsoon_logo')) { - $logo = JURI::root() . '/' . $logo_image; + $logo = Uri::root() . '/' . $logo_image; $path = JPATH_ROOT . '/' . $logo_image; } else @@ -39,7 +46,7 @@ if (file_exists($path)) { - $image = new JImage( $path ); + $image = new Image( $path ); $logo_width = $image->getWidth(); $logo_height = $image->getHeight(); } @@ -58,7 +65,7 @@ $comingsoon_date = explode('-', $this->params->get("comingsoon_date")); //Load jQuery -JHtml::_('jquery.framework'); +HTMLHelper::_('jquery.framework'); ?> @@ -68,7 +75,7 @@ helix3->getParam('favicon')) { - $doc->addFavicon( JURI::base(true) . '/' . $favicon); + $doc->addFavicon( Uri::base(true) . '/' . $favicon); } else { @@ -108,7 +115,7 @@ $hascs_bg = ''; if ($cs_bg = $this->params->get('comingsoon_bg')) { - $comingsoon_bg = JURI::root() . $cs_bg; + $comingsoon_bg = Uri::root() . $cs_bg; $hascs_bg = 'has-background'; } ?> @@ -210,8 +217,8 @@ diff --git a/templates/shaper_helix3/component.php b/templates/shaper_helix3/component.php index f342e12..c561459 100755 --- a/templates/shaper_helix3/component.php +++ b/templates/shaper_helix3/component.php @@ -7,6 +7,10 @@ */ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); + +use Joomla\CMS\Factory; +use Joomla\CMS\Uri\Uri; + //Load Helix $helix3_path = JPATH_PLUGINS . '/system/helix3/core/helix3.php'; @@ -20,7 +24,7 @@ die('Please install and activate helix plugin'); } -$app = JFactory::getApplication(); +$app = Factory::getApplication(); $input = $app->input; $option = str_replace('_', '-', $input->get('option', '', 'STRING')); @@ -33,10 +37,10 @@ params->get('favicon')) { - $doc->addFavicon( JURI::base(true) . '/' . $favicon); + $doc->addFavicon( Uri::base(true) . '/' . $favicon); } else { diff --git a/templates/shaper_helix3/css/font-awesome-v4-shims.min.css b/templates/shaper_helix3/css/font-awesome-v4-shims.min.css index 40f685d..0596ce3 100644 --- a/templates/shaper_helix3/css/font-awesome-v4-shims.min.css +++ b/templates/shaper_helix3/css/font-awesome-v4-shims.min.css @@ -1,4 +1,5 @@ /*! - * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com + * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - */.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f884"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cab:before{content:"\f1ba"} \ No newline at end of file + */ + .fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-expand:before{content:"\f424"}.fa.fa-compress:before{content:"\f422"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f884"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud,.fa.fa-spotify{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cab:before{content:"\f1ba"} \ No newline at end of file diff --git a/templates/shaper_helix3/css/frontend-edit.css b/templates/shaper_helix3/css/frontend-edit.css index a048f6c..3f1b343 100755 --- a/templates/shaper_helix3/css/frontend-edit.css +++ b/templates/shaper_helix3/css/frontend-edit.css @@ -11,6 +11,78 @@ .layout-edit .btn-group input[type="radio"] { display: none; } +.jviewport-height10 { + height: 10vh; +} +.jviewport-height20 { + height: 20vh; +} +.jviewport-height30 { + height: 30vh; +} +.jviewport-height40 { + height: 40vh; +} +.jviewport-height50 { + height: 50vh; +} +.jviewport-height60 { + height: 60vh; +} +.jviewport-height70 { + height: 70vh; +} +.jviewport-height80 { + height: 80vh; +} +.jviewport-height90 { + height: 90vh; +} +.jviewport-height100 { + height: 100vh; +} +[class*=jviewport-height] iframe { + height: 100%; +} +.modal-dialog .jviewport-width10 { + width: 10vw; +} +.modal-dialog .jviewport-width20 { + width: 20vw; + max-width: none; +} +.modal-dialog .jviewport-width30 { + width: 30vw; + max-width: none; +} +.modal-dialog .jviewport-width40 { + width: 40vw; + max-width: none; +} +.modal-dialog .jviewport-width50 { + width: 50vw; + max-width: none; +} +.modal-dialog .jviewport-width60 { + width: 60vw; + max-width: none; +} +.modal-dialog .jviewport-width70 { + width: 70vw; + max-width: none; +} +.modal-dialog .jviewport-width80 { + width: 80vw; + max-width: none; +} +.modal-dialog .jviewport-width90 { + width: 90vw; + max-width: none; +} +.modal-dialog .jviewport-width100 { + width: 100vw; + max-width: none; +} iframe, svg { max-width: 100%; diff --git a/templates/shaper_helix3/css/joomla-fontawesome.min.css b/templates/shaper_helix3/css/joomla-fontawesome.min.css index 1fedfdb..4d57f60 100644 --- a/templates/shaper_helix3/css/joomla-fontawesome.min.css +++ b/templates/shaper_helix3/css/joomla-fontawesome.min.css @@ -1,7758 +1,62 @@ -@charset "UTF-8"; /*! - * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com + * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - */ -.fa, -.fas, -[class^="icon-"], -[class*=" icon-"], -.far, -.fal, -.fad, -.fab, -.icon-joomla { - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - display: inline-block; - font-style: normal; - font-variant: normal; - text-rendering: auto; - line-height: 1; -} + */.fa,.fab,.fad,.fal,.far,.fas,.icon-joomla,[class*=" icon-"],[class^=icon-]{text-rendering:auto}.fa,.fab,.fad,.fal,.far,.fas,.icon-joomla,[class*=" icon-"],[class^=icon-]{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;line-height:1}.icon-joomla,[class*=" icon-"],[class^=icon-]{font-weight:400}.fa-lg,.icon-lg{font-size:1.332em;line-height:.75em;vertical-align:-.0667em}.fa-xs,.icon-xs{font-size:.75em}.fa-sm,.icon-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw,.icon-fw{text-align:center;width:1.25em}.fa-ul,.icon-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li,.icon-ul>li{position:relative}.fa-li,.icon-li{left:-2em;line-height:inherit;position:absolute;text-align:center;width:2em}.fa-border,.icon-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left,.icon-pull-left{float:left}.fa-pull-right,.icon-pull-right{float:right}.fa-pull-left.icon-joomla,.fa-pull-left[class*=" icon-"],.fa-pull-left[class^=icon-],.fa.fa-pull-left,.fa.icon-pull-left,.fab.fa-pull-left,.fab.icon-pull-left,.fal.fa-pull-left,.fal.icon-pull-left,.far.fa-pull-left,.far.icon-pull-left,.fas.fa-pull-left,.fas.icon-pull-left,.icon-joomla.icon-pull-left,[class*=" icon-"].icon-pull-left,[class^=icon-].icon-pull-left{margin-right:.3em}.fa-pull-right.icon-joomla,.fa-pull-right[class*=" icon-"],.fa-pull-right[class^=icon-],.fa.fa-pull-right,.fa.icon-pull-right,.fab.fa-pull-right,.fab.icon-pull-right,.fal.fa-pull-right,.fal.icon-pull-right,.far.fa-pull-right,.far.icon-pull-right,.fas.fa-pull-right,.fas.icon-pull-right,.icon-joomla.icon-pull-right,[class*=" icon-"].icon-pull-right,[class^=icon-].icon-pull-right{margin-left:.3em}.fa-spin,.icon-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse,.icon-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90,.icon-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180,.icon-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270,.icon-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal,.icon-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical,.icon-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-horizontal.icon-flip-vertical,.fa-flip-vertical.icon-flip-horizontal,.icon-flip-both,.icon-flip-horizontal.icon-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .icon-flip-both,:root .icon-flip-horizontal,:root .icon-flip-vertical,:root .icon-rotate-90,:root .icon-rotate-180,:root .icon-rotate-270{-webkit-filter:none;filter:none}.fa-stack,.icon-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x,.icon-stack-1x,.icon-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x,.icon-stack-1x{line-height:inherit}.fa-stack-2x,.icon-stack-2x{font-size:2em}.fa-inverse,.icon-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{clip:rect(0,0,0,0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto} -.icon-joomla, -[class^="icon-"], -[class*=" icon-"] { - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - display: inline-block; +/*! + * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ + @font-face { + font-family: "Font Awesome 5 Free"; font-style: normal; - font-variant: normal; - font-weight: normal; - line-height: 1; -} - -.fa-lg, -.icon-lg { - font-size: 1.3333333333em; - line-height: 0.75em; - vertical-align: -0.0667em; -} - -.fa-xs, -.icon-xs { - font-size: 0.75em; -} - -.fa-sm, -.icon-sm { - font-size: 0.875em; -} - -.fa-1x { - font-size: 1em; -} - -.fa-2x { - font-size: 2em; -} - -.fa-3x { - font-size: 3em; -} - -.fa-4x { - font-size: 4em; -} - -.fa-5x { - font-size: 5em; -} - -.fa-6x { - font-size: 6em; -} - -.fa-7x { - font-size: 7em; -} - -.fa-8x { - font-size: 8em; -} - -.fa-9x { - font-size: 9em; -} - -.fa-10x { - font-size: 10em; -} - -.fa-fw, -.icon-fw { - text-align: center; - width: 1.25em; -} - -.fa-ul, -.icon-ul { - list-style-type: none; - margin-left: 2.5em; - padding-left: 0; -} -.fa-ul > li, -.icon-ul > li { - position: relative; -} - -.fa-li, -.icon-li { - left: -2em; - position: absolute; - text-align: center; - width: 2em; - line-height: inherit; -} - -.fa-border, -.icon-border { - border: solid 0.08em #eee; - border-radius: 0.1em; - padding: 0.2em 0.25em 0.15em; -} - -.fa-pull-left, -.icon-pull-left { - float: left; -} - -.fa-pull-right, -.icon-pull-right { - float: right; -} - -.fa.fa-pull-left, -.fa.icon-pull-left, -.fas.fa-pull-left, -.fas.icon-pull-left, -.fa-pull-left[class^="icon-"], -[class^="icon-"].icon-pull-left, -.fa-pull-left[class*=" icon-"], -[class*=" icon-"].icon-pull-left, -.far.fa-pull-left, -.far.icon-pull-left, -.fal.fa-pull-left, -.fal.icon-pull-left, -.fab.fa-pull-left, -.fab.icon-pull-left, -.fa-pull-left.icon-joomla, -.icon-joomla.icon-pull-left { - margin-right: 0.3em; -} -.fa.fa-pull-right, -.fa.icon-pull-right, -.fas.fa-pull-right, -.fas.icon-pull-right, -.fa-pull-right[class^="icon-"], -[class^="icon-"].icon-pull-right, -.fa-pull-right[class*=" icon-"], -[class*=" icon-"].icon-pull-right, -.far.fa-pull-right, -.far.icon-pull-right, -.fal.fa-pull-right, -.fal.icon-pull-right, -.fab.fa-pull-right, -.fab.icon-pull-right, -.fa-pull-right.icon-joomla, -.icon-joomla.icon-pull-right { - margin-left: 0.3em; -} - -.fa-spin, -.icon-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} - -.fa-pulse, -.icon-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } -} -.fa-rotate-90, -.icon-rotate-90 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; - -webkit-transform: rotate(90deg); - transform: rotate(90deg); -} - -.fa-rotate-180, -.icon-rotate-180 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; - -webkit-transform: rotate(180deg); - transform: rotate(180deg); -} - -.fa-rotate-270, -.icon-rotate-270 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; - -webkit-transform: rotate(270deg); - transform: rotate(270deg); -} - -.fa-flip-horizontal, -.icon-flip-horizontal { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; - -webkit-transform: scale(-1, 1); - transform: scale(-1, 1); -} - -.fa-flip-vertical, -.icon-flip-vertical { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(1, -1); - transform: scale(1, -1); -} - -.fa-flip-both, -.icon-flip-both, -.fa-flip-horizontal.fa-flip-vertical, -.fa-flip-horizontal.icon-flip-vertical, -.fa-flip-vertical.icon-flip-horizontal, -.icon-flip-horizontal.icon-flip-vertical { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(-1, -1); - transform: scale(-1, -1); -} - -:root .fa-rotate-90, -:root .icon-rotate-90, -:root .fa-rotate-180, -:root .icon-rotate-180, -:root .fa-rotate-270, -:root .icon-rotate-270, -:root .fa-flip-horizontal, -:root .icon-flip-horizontal, -:root .fa-flip-vertical, -:root .icon-flip-vertical, -:root .fa-flip-both, -:root .icon-flip-both { - -webkit-filter: none; - filter: none; -} - -.fa-stack, -.icon-stack { - display: inline-block; - height: 2em; - line-height: 2em; - position: relative; - vertical-align: middle; - width: 2.5em; -} - -.fa-stack-1x, -.icon-stack-1x, -.fa-stack-2x, -.icon-stack-2x { - left: 0; - position: absolute; - text-align: center; - width: 100%; -} - -.fa-stack-1x, -.icon-stack-1x { - line-height: inherit; -} - -.fa-stack-2x, -.icon-stack-2x { - font-size: 2em; -} - -.fa-inverse, -.icon-inverse { - color: #fff; -} - -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen -readers do not read off random characters that represent icons */ -.fa-500px:before { - content: ""; -} - -.fa-accessible-icon:before { - content: ""; -} - -.fa-accusoft:before { - content: ""; -} - -.fa-acquisitions-incorporated:before { - content: ""; -} - -.fa-ad:before { - content: ""; -} - -.fa-address-book:before { - content: ""; -} - -.fa-address-card:before { - content: ""; -} - -.fa-adjust:before { - content: ""; -} - -.fa-adn:before { - content: ""; -} - -.fa-adversal:before { - content: ""; -} - -.fa-affiliatetheme:before { - content: ""; -} - -.fa-air-freshener:before { - content: ""; -} - -.fa-airbnb:before { - content: ""; -} - -.fa-algolia:before { - content: ""; -} - -.fa-align-center:before { - content: ""; -} - -.fa-align-justify:before { - content: ""; -} - -.fa-align-left:before { - content: ""; -} - -.fa-align-right:before { - content: ""; -} - -.fa-alipay:before { - content: ""; -} - -.fa-allergies:before { - content: ""; -} - -.fa-amazon:before { - content: ""; -} - -.fa-amazon-pay:before { - content: ""; -} - -.fa-ambulance:before { - content: ""; -} - -.fa-american-sign-language-interpreting:before { - content: ""; -} - -.fa-amilia:before { - content: ""; -} - -.fa-anchor:before { - content: ""; -} - -.fa-android:before { - content: ""; -} - -.fa-angellist:before { - content: ""; -} - -.fa-angle-double-down:before { - content: ""; -} - -.fa-angle-double-left:before { - content: ""; -} - -.fa-angle-double-right:before { - content: ""; -} - -.fa-angle-double-up:before { - content: ""; -} - -.fa-angle-down:before { - content: ""; -} - -.fa-angle-left:before { - content: ""; -} - -.fa-angle-right:before { - content: ""; -} - -.fa-angle-up:before { - content: ""; -} - -.fa-angry:before { - content: ""; -} - -.fa-angrycreative:before { - content: ""; -} - -.fa-angular:before { - content: ""; -} - -.fa-ankh:before { - content: ""; -} - -.fa-app-store:before { - content: ""; -} - -.fa-app-store-ios:before { - content: ""; -} - -.fa-apper:before { - content: ""; -} - -.fa-apple:before { - content: ""; -} - -.fa-apple-alt:before { - content: ""; -} - -.fa-apple-pay:before { - content: ""; -} - -.fa-archive:before { - content: ""; -} - -.fa-archway:before { - content: ""; -} - -.fa-arrow-alt-circle-down:before { - content: ""; -} - -.fa-arrow-alt-circle-left:before { - content: ""; -} - -.fa-arrow-alt-circle-right:before { - content: ""; -} - -.fa-arrow-alt-circle-up:before { - content: ""; -} - -.fa-arrow-circle-down:before { - content: ""; -} - -.fa-arrow-circle-left:before { - content: ""; -} - -.fa-arrow-circle-right:before { - content: ""; -} - -.fa-arrow-circle-up:before { - content: ""; -} - -.fa-arrow-down:before { - content: ""; -} - -.fa-arrow-left:before { - content: ""; -} - -.fa-arrow-right:before { - content: ""; -} - -.fa-arrow-up:before { - content: ""; -} - -.fa-arrows-alt:before { - content: ""; -} - -.fa-arrows-alt-h:before { - content: ""; -} - -.fa-arrows-alt-v:before { - content: ""; -} - -.fa-artstation:before { - content: ""; -} - -.fa-assistive-listening-systems:before { - content: ""; -} - -.fa-asterisk:before { - content: ""; -} - -.fa-asymmetrik:before { - content: ""; -} - -.fa-at:before { - content: ""; -} - -.fa-atlas:before { - content: ""; -} - -.fa-atlassian:before { - content: ""; -} - -.fa-atom:before { - content: ""; + font-weight: 400; + font-display: block; + src: url("../fonts/fa-regular-400.eot"); + src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), + url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), + url("../fonts/fa-regular-400.ttf") format("truetype"), + url("../fonts/fa-regular-400.svg#fontawesome") format("svg"); } - -.fa-audible:before { - content: ""; +.far { + font-family: "Font Awesome 5 Free"; + font-weight: 400; } -.fa-audio-description:before { - content: ""; +/*! + * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ + @font-face { + font-family: "Font Awesome 5 Free"; + font-style: normal; + font-weight: 900; + font-display: block; + src: url("../fonts/fa-solid-900.eot"); + src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), + url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), + url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg"); } - -.fa-autoprefixer:before { - content: ""; +.fa, +.fas, +[class^="icon-"], +[class*=" icon-"] { + font-family: "Font Awesome 5 Free"; + font-weight: 900; } -.fa-avianex:before { - content: ""; -} - -.fa-aviato:before { - content: ""; -} - -.fa-award:before { - content: ""; -} - -.fa-aws:before { - content: ""; -} - -.fa-baby:before { - content: ""; -} - -.fa-baby-carriage:before { - content: ""; -} - -.fa-backspace:before { - content: ""; -} - -.fa-backward:before { - content: ""; -} - -.fa-bacon:before { - content: ""; -} - -.fa-bacteria:before { - content: ""; -} - -.fa-bacterium:before { - content: ""; -} - -.fa-bahai:before { - content: ""; -} - -.fa-balance-scale:before { - content: ""; -} - -.fa-balance-scale-left:before { - content: ""; -} - -.fa-balance-scale-right:before { - content: ""; -} - -.fa-ban:before { - content: ""; -} - -.fa-band-aid:before { - content: ""; -} - -.fa-bandcamp:before { - content: ""; -} - -.fa-barcode:before { - content: ""; -} - -.fa-bars:before { - content: ""; -} - -.fa-baseball-ball:before { - content: ""; -} - -.fa-basketball-ball:before { - content: ""; -} - -.fa-bath:before { - content: ""; -} - -.fa-battery-empty:before { - content: ""; -} - -.fa-battery-full:before { - content: ""; -} - -.fa-battery-half:before { - content: ""; -} - -.fa-battery-quarter:before { - content: ""; -} - -.fa-battery-three-quarters:before { - content: ""; -} - -.fa-battle-net:before { - content: ""; -} - -.fa-bed:before { - content: ""; -} - -.fa-beer:before { - content: ""; -} - -.fa-behance:before { - content: ""; -} - -.fa-behance-square:before { - content: ""; -} - -.fa-bell:before { - content: ""; -} - -.fa-bell-slash:before { - content: ""; -} - -.fa-bezier-curve:before { - content: ""; -} - -.fa-bible:before { - content: ""; -} - -.fa-bicycle:before { - content: ""; -} - -.fa-biking:before { - content: ""; -} - -.fa-bimobject:before { - content: ""; -} - -.fa-binoculars:before { - content: ""; -} - -.fa-biohazard:before { - content: ""; -} - -.fa-birthday-cake:before { - content: ""; -} - -.fa-bitbucket:before { - content: ""; -} - -.fa-bitcoin:before { - content: ""; -} - -.fa-bity:before { - content: ""; -} - -.fa-black-tie:before { - content: ""; -} - -.fa-blackberry:before { - content: ""; -} - -.fa-blender:before { - content: ""; -} - -.fa-blender-phone:before { - content: ""; -} - -.fa-blind:before { - content: ""; -} - -.fa-blog:before { - content: ""; -} - -.fa-blogger:before { - content: ""; -} - -.fa-blogger-b:before { - content: ""; -} - -.fa-bluetooth:before { - content: ""; -} - -.fa-bluetooth-b:before { - content: ""; -} - -.fa-bold:before { - content: ""; -} - -.fa-bolt:before { - content: ""; -} - -.fa-bomb:before { - content: ""; -} - -.fa-bone:before { - content: ""; -} - -.fa-bong:before { - content: ""; -} - -.fa-book:before { - content: ""; -} - -.fa-book-dead:before { - content: ""; -} - -.fa-book-medical:before { - content: ""; -} - -.fa-book-open:before { - content: ""; -} - -.fa-book-reader:before { - content: ""; -} - -.fa-bookmark:before { - content: ""; -} - -.fa-bootstrap:before { - content: ""; -} - -.fa-border-all:before { - content: ""; -} - -.fa-border-none:before { - content: ""; -} - -.fa-border-style:before { - content: ""; -} - -.fa-bowling-ball:before { - content: ""; -} - -.fa-box:before { - content: ""; -} - -.fa-box-open:before { - content: ""; -} - -.fa-box-tissue:before { - content: ""; -} - -.fa-boxes:before { - content: ""; -} - -.fa-braille:before { - content: ""; -} - -.fa-brain:before { - content: ""; -} - -.fa-bread-slice:before { - content: ""; -} - -.fa-briefcase:before { - content: ""; -} - -.fa-briefcase-medical:before { - content: ""; -} - -.fa-broadcast-tower:before { - content: ""; -} - -.fa-broom:before { - content: ""; -} - -.fa-brush:before { - content: ""; -} - -.fa-btc:before { - content: ""; -} - -.fa-buffer:before { - content: ""; -} - -.fa-bug:before { - content: ""; -} - -.fa-building:before { - content: ""; -} - -.fa-bullhorn:before { - content: ""; -} - -.fa-bullseye:before { - content: ""; -} - -.fa-burn:before { - content: ""; -} - -.fa-buromobelexperte:before { - content: ""; -} - -.fa-bus:before { - content: ""; -} - -.fa-bus-alt:before { - content: ""; -} - -.fa-business-time:before { - content: ""; -} - -.fa-buy-n-large:before { - content: ""; -} - -.fa-buysellads:before { - content: ""; -} - -.fa-calculator:before { - content: ""; -} - -.fa-calendar:before { - content: ""; -} - -.fa-calendar-alt:before { - content: ""; -} - -.fa-calendar-check:before { - content: ""; -} - -.fa-calendar-day:before { - content: ""; -} - -.fa-calendar-minus:before { - content: ""; -} - -.fa-calendar-plus:before { - content: ""; -} - -.fa-calendar-times:before { - content: ""; -} - -.fa-calendar-week:before { - content: ""; -} - -.fa-camera:before { - content: ""; -} - -.fa-camera-retro:before { - content: ""; -} - -.fa-campground:before { - content: ""; -} - -.fa-canadian-maple-leaf:before { - content: ""; -} - -.fa-candy-cane:before { - content: ""; -} - -.fa-cannabis:before { - content: ""; -} - -.fa-capsules:before { - content: ""; -} - -.fa-car:before { - content: ""; -} - -.fa-car-alt:before { - content: ""; -} - -.fa-car-battery:before { - content: ""; -} - -.fa-car-crash:before { - content: ""; -} - -.fa-car-side:before { - content: ""; -} - -.fa-caravan:before { - content: ""; -} - -.fa-caret-down:before { - content: ""; -} - -.fa-caret-left:before { - content: ""; -} - -.fa-caret-right:before { - content: ""; -} - -.fa-caret-square-down:before { - content: ""; -} - -.fa-caret-square-left:before { - content: ""; -} - -.fa-caret-square-right:before { - content: ""; -} - -.fa-caret-square-up:before { - content: ""; -} - -.fa-caret-up:before { - content: ""; -} - -.fa-carrot:before { - content: ""; -} - -.fa-cart-arrow-down:before { - content: ""; -} - -.fa-cart-plus:before { - content: ""; -} - -.fa-cash-register:before { - content: ""; -} - -.fa-cat:before { - content: ""; -} - -.fa-cc-amazon-pay:before { - content: ""; -} - -.fa-cc-amex:before { - content: ""; -} - -.fa-cc-apple-pay:before { - content: ""; -} - -.fa-cc-diners-club:before { - content: ""; -} - -.fa-cc-discover:before { - content: ""; -} - -.fa-cc-jcb:before { - content: ""; -} - -.fa-cc-mastercard:before { - content: ""; -} - -.fa-cc-paypal:before { - content: ""; -} - -.fa-cc-stripe:before { - content: ""; -} - -.fa-cc-visa:before { - content: ""; -} - -.fa-centercode:before { - content: ""; -} - -.fa-centos:before { - content: ""; -} - -.fa-certificate:before { - content: ""; -} - -.fa-chair:before { - content: ""; -} - -.fa-chalkboard:before { - content: ""; -} - -.fa-chalkboard-teacher:before { - content: ""; -} - -.fa-charging-station:before { - content: ""; -} - -.fa-chart-area:before { - content: ""; -} - -.fa-chart-bar:before { - content: ""; -} - -.fa-chart-line:before { - content: ""; -} - -.fa-chart-pie:before { - content: ""; -} - -.fa-check:before { - content: ""; -} - -.fa-check-circle:before { - content: ""; -} - -.fa-check-double:before { - content: ""; -} - -.fa-check-square:before { - content: ""; -} - -.fa-cheese:before { - content: ""; -} - -.fa-chess:before { - content: ""; -} - -.fa-chess-bishop:before { - content: ""; -} - -.fa-chess-board:before { - content: ""; -} - -.fa-chess-king:before { - content: ""; -} - -.fa-chess-knight:before { - content: ""; -} - -.fa-chess-pawn:before { - content: ""; -} - -.fa-chess-queen:before { - content: ""; -} - -.fa-chess-rook:before { - content: ""; -} - -.fa-chevron-circle-down:before { - content: ""; -} - -.fa-chevron-circle-left:before { - content: ""; -} - -.fa-chevron-circle-right:before { - content: ""; -} - -.fa-chevron-circle-up:before { - content: ""; -} - -.fa-chevron-down:before { - content: ""; -} - -.fa-chevron-left:before { - content: ""; -} - -.fa-chevron-right:before { - content: ""; -} - -.fa-chevron-up:before { - content: ""; -} - -.fa-child:before { - content: ""; -} - -.fa-chrome:before { - content: ""; -} - -.fa-chromecast:before { - content: ""; -} - -.fa-church:before { - content: ""; -} - -.fa-circle:before { - content: ""; -} - -.fa-circle-notch:before { - content: ""; -} - -.fa-city:before { - content: ""; -} - -.fa-clinic-medical:before { - content: ""; -} - -.fa-clipboard:before { - content: ""; -} - -.fa-clipboard-check:before { - content: ""; -} - -.fa-clipboard-list:before { - content: ""; -} - -.fa-clock:before { - content: ""; -} - -.fa-clone:before { - content: ""; -} - -.fa-closed-captioning:before { - content: ""; -} - -.fa-cloud:before { - content: ""; -} - -.fa-cloud-download-alt:before { - content: ""; -} - -.fa-cloud-meatball:before { - content: ""; -} - -.fa-cloud-moon:before { - content: ""; -} - -.fa-cloud-moon-rain:before { - content: ""; -} - -.fa-cloud-rain:before { - content: ""; -} - -.fa-cloud-showers-heavy:before { - content: ""; -} - -.fa-cloud-sun:before { - content: ""; -} - -.fa-cloud-sun-rain:before { - content: ""; -} - -.fa-cloud-upload-alt:before { - content: ""; -} - -.fa-cloudflare:before { - content: ""; -} - -.fa-cloudscale:before { - content: ""; -} - -.fa-cloudsmith:before { - content: ""; -} - -.fa-cloudversify:before { - content: ""; -} - -.fa-cocktail:before { - content: ""; -} - -.fa-code:before { - content: ""; -} - -.fa-code-branch:before { - content: ""; -} - -.fa-codepen:before { - content: ""; -} - -.fa-codiepie:before { - content: ""; -} - -.fa-coffee:before { - content: ""; -} - -.fa-cog:before { - content: ""; -} - -.fa-cogs:before { - content: ""; -} - -.fa-coins:before { - content: ""; -} - -.fa-columns:before { - content: ""; -} - -.fa-comment:before { - content: ""; -} - -.fa-comment-alt:before { - content: ""; -} - -.fa-comment-dollar:before { - content: ""; -} - -.fa-comment-dots:before { - content: ""; -} - -.fa-comment-medical:before { - content: ""; -} - -.fa-comment-slash:before { - content: ""; -} - -.fa-comments:before { - content: ""; -} - -.fa-comments-dollar:before { - content: ""; -} - -.fa-compact-disc:before { - content: ""; -} - -.fa-compass:before { - content: ""; -} - -.fa-compress:before { - content: ""; -} - -.fa-compress-alt:before { - content: ""; -} - -.fa-compress-arrows-alt:before { - content: ""; -} - -.fa-concierge-bell:before { - content: ""; -} - -.fa-confluence:before { - content: ""; -} - -.fa-connectdevelop:before { - content: ""; -} - -.fa-contao:before { - content: ""; -} - -.fa-cookie:before { - content: ""; -} - -.fa-cookie-bite:before { - content: ""; -} - -.fa-copy:before { - content: ""; -} - -.fa-copyright:before { - content: ""; -} - -.fa-cotton-bureau:before { - content: ""; -} - -.fa-couch:before { - content: ""; -} - -.fa-cpanel:before { - content: ""; -} - -.fa-creative-commons:before { - content: ""; -} - -.fa-creative-commons-by:before { - content: ""; -} - -.fa-creative-commons-nc:before { - content: ""; -} - -.fa-creative-commons-nc-eu:before { - content: ""; -} - -.fa-creative-commons-nc-jp:before { - content: ""; -} - -.fa-creative-commons-nd:before { - content: ""; -} - -.fa-creative-commons-pd:before { - content: ""; -} - -.fa-creative-commons-pd-alt:before { - content: ""; -} - -.fa-creative-commons-remix:before { - content: ""; -} - -.fa-creative-commons-sa:before { - content: ""; -} - -.fa-creative-commons-sampling:before { - content: ""; -} - -.fa-creative-commons-sampling-plus:before { - content: ""; -} - -.fa-creative-commons-share:before { - content: ""; -} - -.fa-creative-commons-zero:before { - content: ""; -} - -.fa-credit-card:before { - content: ""; -} - -.fa-critical-role:before { - content: ""; -} - -.fa-crop:before { - content: ""; -} - -.fa-crop-alt:before { - content: ""; -} - -.fa-cross:before { - content: ""; -} - -.fa-crosshairs:before { - content: ""; -} - -.fa-crow:before { - content: ""; -} - -.fa-crown:before { - content: ""; -} - -.fa-crutch:before { - content: ""; -} - -.fa-css3:before { - content: ""; -} - -.fa-css3-alt:before { - content: ""; -} - -.fa-cube:before { - content: ""; -} - -.fa-cubes:before { - content: ""; -} - -.fa-cut:before { - content: ""; -} - -.fa-cuttlefish:before { - content: ""; -} - -.fa-d-and-d:before { - content: ""; -} - -.fa-d-and-d-beyond:before { - content: ""; -} - -.fa-dailymotion:before { - content: ""; -} - -.fa-dashcube:before { - content: ""; -} - -.fa-database:before { - content: ""; -} - -.fa-deaf:before { - content: ""; -} - -.fa-deezer:before { - content: ""; -} - -.fa-delicious:before { - content: ""; -} - -.fa-democrat:before { - content: ""; -} - -.fa-deploydog:before { - content: ""; -} - -.fa-deskpro:before { - content: ""; -} - -.fa-desktop:before { - content: ""; -} - -.fa-dev:before { - content: ""; -} - -.fa-deviantart:before { - content: ""; -} - -.fa-dharmachakra:before { - content: ""; -} - -.fa-dhl:before { - content: ""; -} - -.fa-diagnoses:before { - content: ""; -} - -.fa-diaspora:before { - content: ""; -} - -.fa-dice:before { - content: ""; -} - -.fa-dice-d20:before { - content: ""; -} - -.fa-dice-d6:before { - content: ""; -} - -.fa-dice-five:before { - content: ""; -} - -.fa-dice-four:before { - content: ""; -} - -.fa-dice-one:before { - content: ""; -} - -.fa-dice-six:before { - content: ""; -} - -.fa-dice-three:before { - content: ""; -} - -.fa-dice-two:before { - content: ""; -} - -.fa-digg:before { - content: ""; -} - -.fa-digital-ocean:before { - content: ""; -} - -.fa-digital-tachograph:before { - content: ""; -} - -.fa-directions:before { - content: ""; -} - -.fa-discord:before { - content: ""; -} - -.fa-discourse:before { - content: ""; -} - -.fa-disease:before { - content: ""; -} - -.fa-divide:before { - content: ""; -} - -.fa-dizzy:before { - content: ""; -} - -.fa-dna:before { - content: ""; -} - -.fa-dochub:before { - content: ""; -} - -.fa-docker:before { - content: ""; -} - -.fa-dog:before { - content: ""; -} - -.fa-dollar-sign:before { - content: ""; -} - -.fa-dolly:before { - content: ""; -} - -.fa-dolly-flatbed:before { - content: ""; -} - -.fa-donate:before { - content: ""; -} - -.fa-door-closed:before { - content: ""; -} - -.fa-door-open:before { - content: ""; -} - -.fa-dot-circle:before { - content: ""; -} - -.fa-dove:before { - content: ""; -} - -.fa-download:before { - content: ""; -} - -.fa-draft2digital:before { - content: ""; -} - -.fa-drafting-compass:before { - content: ""; -} - -.fa-dragon:before { - content: ""; -} - -.fa-draw-polygon:before { - content: ""; -} - -.fa-dribbble:before { - content: ""; -} - -.fa-dribbble-square:before { - content: ""; -} - -.fa-dropbox:before { - content: ""; -} - -.fa-drum:before { - content: ""; -} - -.fa-drum-steelpan:before { - content: ""; -} - -.fa-drumstick-bite:before { - content: ""; -} - -.fa-drupal:before { - content: ""; -} - -.fa-dumbbell:before { - content: ""; -} - -.fa-dumpster:before { - content: ""; -} - -.fa-dumpster-fire:before { - content: ""; -} - -.fa-dungeon:before { - content: ""; -} - -.fa-dyalog:before { - content: ""; -} - -.fa-earlybirds:before { - content: ""; -} - -.fa-ebay:before { - content: ""; -} - -.fa-edge:before { - content: ""; -} - -.fa-edge-legacy:before { - content: ""; -} - -.fa-edit:before { - content: ""; -} - -.fa-egg:before { - content: ""; -} - -.fa-eject:before { - content: ""; -} - -.fa-elementor:before { - content: ""; -} - -.fa-ellipsis-h:before { - content: ""; -} - -.fa-ellipsis-v:before { - content: ""; -} - -.fa-ello:before { - content: ""; -} - -.fa-ember:before { - content: ""; -} - -.fa-empire:before { - content: ""; -} - -.fa-envelope:before { - content: ""; -} - -.fa-envelope-open:before { - content: ""; -} - -.fa-envelope-open-text:before { - content: ""; -} - -.fa-envelope-square:before { - content: ""; -} - -.fa-envira:before { - content: ""; -} - -.fa-equals:before { - content: ""; -} - -.fa-eraser:before { - content: ""; -} - -.fa-erlang:before { - content: ""; -} - -.fa-ethereum:before { - content: ""; -} - -.fa-ethernet:before { - content: ""; -} - -.fa-etsy:before { - content: ""; -} - -.fa-euro-sign:before { - content: ""; -} - -.fa-evernote:before { - content: ""; -} - -.fa-exchange-alt:before { - content: ""; -} - -.fa-exclamation:before { - content: ""; -} - -.fa-exclamation-circle:before { - content: ""; -} - -.fa-exclamation-triangle:before { - content: ""; -} - -.fa-expand:before { - content: ""; -} - -.fa-expand-alt:before { - content: ""; -} - -.fa-expand-arrows-alt:before { - content: ""; -} - -.fa-expeditedssl:before { - content: ""; -} - -.fa-external-link-alt:before { - content: ""; -} - -.fa-external-link-square-alt:before { - content: ""; -} - -.fa-eye:before { - content: ""; -} - -.fa-eye-dropper:before { - content: ""; -} - -.fa-eye-slash:before { - content: ""; -} - -.fa-facebook:before { - content: ""; -} - -.fa-facebook-f:before { - content: ""; -} - -.fa-facebook-messenger:before { - content: ""; -} - -.fa-facebook-square:before { - content: ""; -} - -.fa-fan:before { - content: ""; -} - -.fa-fantasy-flight-games:before { - content: ""; -} - -.fa-fast-backward:before { - content: ""; -} - -.fa-fast-forward:before { - content: ""; -} - -.fa-faucet:before { - content: ""; -} - -.fa-fax:before { - content: ""; -} - -.fa-feather:before { - content: ""; -} - -.fa-feather-alt:before { - content: ""; -} - -.fa-fedex:before { - content: ""; -} - -.fa-fedora:before { - content: ""; -} - -.fa-female:before { - content: ""; -} - -.fa-fighter-jet:before { - content: ""; -} - -.fa-figma:before { - content: ""; -} - -.fa-file:before { - content: ""; -} - -.fa-file-alt:before { - content: ""; -} - -.fa-file-archive:before { - content: ""; -} - -.fa-file-audio:before { - content: ""; -} - -.fa-file-code:before { - content: ""; -} - -.fa-file-contract:before { - content: ""; -} - -.fa-file-csv:before { - content: ""; -} - -.fa-file-download:before { - content: ""; -} - -.fa-file-excel:before { - content: ""; -} - -.fa-file-export:before { - content: ""; -} - -.fa-file-image:before { - content: ""; -} - -.fa-file-import:before { - content: ""; -} - -.fa-file-invoice:before { - content: ""; -} - -.fa-file-invoice-dollar:before { - content: ""; -} - -.fa-file-medical:before { - content: ""; -} - -.fa-file-medical-alt:before { - content: ""; -} - -.fa-file-pdf:before { - content: ""; -} - -.fa-file-powerpoint:before { - content: ""; -} - -.fa-file-prescription:before { - content: ""; -} - -.fa-file-signature:before { - content: ""; -} - -.fa-file-upload:before { - content: ""; -} - -.fa-file-video:before { - content: ""; -} - -.fa-file-word:before { - content: ""; -} - -.fa-fill:before { - content: ""; -} - -.fa-fill-drip:before { - content: ""; -} - -.fa-film:before { - content: ""; -} - -.fa-filter:before { - content: ""; -} - -.fa-fingerprint:before { - content: ""; -} - -.fa-fire:before { - content: ""; -} - -.fa-fire-alt:before { - content: ""; -} - -.fa-fire-extinguisher:before { - content: ""; -} - -.fa-firefox:before { - content: ""; -} - -.fa-firefox-browser:before { - content: ""; -} - -.fa-first-aid:before { - content: ""; -} - -.fa-first-order:before { - content: ""; -} - -.fa-first-order-alt:before { - content: ""; -} - -.fa-firstdraft:before { - content: ""; -} - -.fa-fish:before { - content: ""; -} - -.fa-fist-raised:before { - content: ""; -} - -.fa-flag:before { - content: ""; -} - -.fa-flag-checkered:before { - content: ""; -} - -.fa-flag-usa:before { - content: ""; -} - -.fa-flask:before { - content: ""; -} - -.fa-flickr:before { - content: ""; -} - -.fa-flipboard:before { - content: ""; -} - -.fa-flushed:before { - content: ""; -} - -.fa-fly:before { - content: ""; -} - -.fa-folder:before { - content: ""; -} - -.fa-folder-minus:before { - content: ""; -} - -.fa-folder-open:before { - content: ""; -} - -.fa-folder-plus:before { - content: ""; -} - -.fa-font:before { - content: ""; -} - -.fa-font-awesome:before { - content: ""; -} - -.fa-font-awesome-alt:before { - content: ""; -} - -.fa-font-awesome-flag:before { - content: ""; -} - -.fa-font-awesome-logo-full:before { - content: ""; -} - -.fa-fonticons:before { - content: ""; -} - -.fa-fonticons-fi:before { - content: ""; -} - -.fa-football-ball:before { - content: ""; -} - -.fa-fort-awesome:before { - content: ""; -} - -.fa-fort-awesome-alt:before { - content: ""; -} - -.fa-forumbee:before { - content: ""; -} - -.fa-forward:before { - content: ""; -} - -.fa-foursquare:before { - content: ""; -} - -.fa-free-code-camp:before { - content: ""; -} - -.fa-freebsd:before { - content: ""; -} - -.fa-frog:before { - content: ""; -} - -.fa-frown:before { - content: ""; -} - -.fa-frown-open:before { - content: ""; -} - -.fa-fulcrum:before { - content: ""; -} - -.fa-funnel-dollar:before { - content: ""; -} - -.fa-futbol:before { - content: ""; -} - -.fa-galactic-republic:before { - content: ""; -} - -.fa-galactic-senate:before { - content: ""; -} - -.fa-gamepad:before { - content: ""; -} - -.fa-gas-pump:before { - content: ""; -} - -.fa-gavel:before { - content: ""; -} - -.fa-gem:before { - content: ""; -} - -.fa-genderless:before { - content: ""; -} - -.fa-get-pocket:before { - content: ""; -} - -.fa-gg:before { - content: ""; -} - -.fa-gg-circle:before { - content: ""; -} - -.fa-ghost:before { - content: ""; -} - -.fa-gift:before { - content: ""; -} - -.fa-gifts:before { - content: ""; -} - -.fa-git:before { - content: ""; -} - -.fa-git-alt:before { - content: ""; -} - -.fa-git-square:before { - content: ""; -} - -.fa-github:before { - content: ""; -} - -.fa-github-alt:before { - content: ""; -} - -.fa-github-square:before { - content: ""; -} - -.fa-gitkraken:before { - content: ""; -} - -.fa-gitlab:before { - content: ""; -} - -.fa-gitter:before { - content: ""; -} - -.fa-glass-cheers:before { - content: ""; -} - -.fa-glass-martini:before { - content: ""; -} - -.fa-glass-martini-alt:before { - content: ""; -} - -.fa-glass-whiskey:before { - content: ""; -} - -.fa-glasses:before { - content: ""; -} - -.fa-glide:before { - content: ""; -} - -.fa-glide-g:before { - content: ""; -} - -.fa-globe:before { - content: ""; -} - -.fa-globe-africa:before { - content: ""; -} - -.fa-globe-americas:before { - content: ""; -} - -.fa-globe-asia:before { - content: ""; -} - -.fa-globe-europe:before { - content: ""; -} - -.fa-gofore:before { - content: ""; -} - -.fa-golf-ball:before { - content: ""; -} - -.fa-goodreads:before { - content: ""; -} - -.fa-goodreads-g:before { - content: ""; -} - -.fa-google:before { - content: ""; -} - -.fa-google-drive:before { - content: ""; -} - -.fa-google-pay:before { - content: ""; -} - -.fa-google-play:before { - content: ""; -} - -.fa-google-plus:before { - content: ""; -} - -.fa-google-plus-g:before { - content: ""; -} - -.fa-google-plus-square:before { - content: ""; -} - -.fa-google-wallet:before { - content: ""; -} - -.fa-gopuram:before { - content: ""; -} - -.fa-graduation-cap:before { - content: ""; -} - -.fa-gratipay:before { - content: ""; -} - -.fa-grav:before { - content: ""; -} - -.fa-greater-than:before { - content: ""; -} - -.fa-greater-than-equal:before { - content: ""; -} - -.fa-grimace:before { - content: ""; -} - -.fa-grin:before { - content: ""; -} - -.fa-grin-alt:before { - content: ""; -} - -.fa-grin-beam:before { - content: ""; -} - -.fa-grin-beam-sweat:before { - content: ""; -} - -.fa-grin-hearts:before { - content: ""; -} - -.fa-grin-squint:before { - content: ""; -} - -.fa-grin-squint-tears:before { - content: ""; -} - -.fa-grin-stars:before { - content: ""; -} - -.fa-grin-tears:before { - content: ""; -} - -.fa-grin-tongue:before { - content: ""; -} - -.fa-grin-tongue-squint:before { - content: ""; -} - -.fa-grin-tongue-wink:before { - content: ""; -} - -.fa-grin-wink:before { - content: ""; -} - -.fa-grip-horizontal:before { - content: ""; -} - -.fa-grip-lines:before { - content: ""; -} - -.fa-grip-lines-vertical:before { - content: ""; -} - -.fa-grip-vertical:before { - content: ""; -} - -.fa-gripfire:before { - content: ""; -} - -.fa-grunt:before { - content: ""; -} - -.fa-guilded:before { - content: ""; -} - -.fa-guitar:before { - content: ""; -} - -.fa-gulp:before { - content: ""; -} - -.fa-h-square:before { - content: ""; -} - -.fa-hacker-news:before { - content: ""; -} - -.fa-hacker-news-square:before { - content: ""; -} - -.fa-hackerrank:before { - content: ""; -} - -.fa-hamburger:before { - content: ""; -} - -.fa-hammer:before { - content: ""; -} - -.fa-hamsa:before { - content: ""; -} - -.fa-hand-holding:before { - content: ""; -} - -.fa-hand-holding-heart:before { - content: ""; -} - -.fa-hand-holding-medical:before { - content: ""; -} - -.fa-hand-holding-usd:before { - content: ""; -} - -.fa-hand-holding-water:before { - content: ""; -} - -.fa-hand-lizard:before { - content: ""; -} - -.fa-hand-middle-finger:before { - content: ""; -} - -.fa-hand-paper:before { - content: ""; -} - -.fa-hand-peace:before { - content: ""; -} - -.fa-hand-point-down:before { - content: ""; -} - -.fa-hand-point-left:before { - content: ""; -} - -.fa-hand-point-right:before { - content: ""; -} - -.fa-hand-point-up:before { - content: ""; -} - -.fa-hand-pointer:before { - content: ""; -} - -.fa-hand-rock:before { - content: ""; -} - -.fa-hand-scissors:before { - content: ""; -} - -.fa-hand-sparkles:before { - content: ""; -} - -.fa-hand-spock:before { - content: ""; -} - -.fa-hands:before { - content: ""; -} - -.fa-hands-helping:before { - content: ""; -} - -.fa-hands-wash:before { - content: ""; -} - -.fa-handshake:before { - content: ""; -} - -.fa-handshake-alt-slash:before { - content: ""; -} - -.fa-handshake-slash:before { - content: ""; -} - -.fa-hanukiah:before { - content: ""; -} - -.fa-hard-hat:before { - content: ""; -} - -.fa-hashtag:before { - content: ""; -} - -.fa-hat-cowboy:before { - content: ""; -} - -.fa-hat-cowboy-side:before { - content: ""; -} - -.fa-hat-wizard:before { - content: ""; -} - -.fa-hdd:before { - content: ""; -} - -.fa-head-side-cough:before { - content: ""; -} - -.fa-head-side-cough-slash:before { - content: ""; -} - -.fa-head-side-mask:before { - content: ""; -} - -.fa-head-side-virus:before { - content: ""; -} - -.fa-heading:before { - content: ""; -} - -.fa-headphones:before { - content: ""; -} - -.fa-headphones-alt:before { - content: ""; -} - -.fa-headset:before { - content: ""; -} - -.fa-heart:before { - content: ""; -} - -.fa-heart-broken:before { - content: ""; -} - -.fa-heartbeat:before { - content: ""; -} - -.fa-helicopter:before { - content: ""; -} - -.fa-highlighter:before { - content: ""; -} - -.fa-hiking:before { - content: ""; -} - -.fa-hippo:before { - content: ""; -} - -.fa-hips:before { - content: ""; -} - -.fa-hire-a-helper:before { - content: ""; -} - -.fa-history:before { - content: ""; -} - -.fa-hive:before { - content: ""; -} - -.fa-hockey-puck:before { - content: ""; -} - -.fa-holly-berry:before { - content: ""; -} - -.fa-home:before { - content: ""; -} - -.fa-hooli:before { - content: ""; -} - -.fa-hornbill:before { - content: ""; -} - -.fa-horse:before { - content: ""; -} - -.fa-horse-head:before { - content: ""; -} - -.fa-hospital:before { - content: ""; -} - -.fa-hospital-alt:before { - content: ""; -} - -.fa-hospital-symbol:before { - content: ""; -} - -.fa-hospital-user:before { - content: ""; -} - -.fa-hot-tub:before { - content: ""; -} - -.fa-hotdog:before { - content: ""; -} - -.fa-hotel:before { - content: ""; -} - -.fa-hotjar:before { - content: ""; -} - -.fa-hourglass:before { - content: ""; -} - -.fa-hourglass-end:before { - content: ""; -} - -.fa-hourglass-half:before { - content: ""; -} - -.fa-hourglass-start:before { - content: ""; -} - -.fa-house-damage:before { - content: ""; -} - -.fa-house-user:before { - content: ""; -} - -.fa-houzz:before { - content: ""; -} - -.fa-hryvnia:before { - content: ""; -} - -.fa-html5:before { - content: ""; -} - -.fa-hubspot:before { - content: ""; -} - -.fa-i-cursor:before { - content: ""; -} - -.fa-ice-cream:before { - content: ""; -} - -.fa-icicles:before { - content: ""; -} - -.fa-icons:before { - content: ""; -} - -.fa-id-badge:before { - content: ""; -} - -.fa-id-card:before { - content: ""; -} - -.fa-id-card-alt:before { - content: ""; -} - -.fa-ideal:before { - content: ""; -} - -.fa-igloo:before { - content: ""; -} - -.fa-image:before { - content: ""; -} - -.fa-images:before { - content: ""; -} - -.fa-imdb:before { - content: ""; -} - -.fa-inbox:before { - content: ""; -} - -.fa-indent:before { - content: ""; -} - -.fa-industry:before { - content: ""; -} - -.fa-infinity:before { - content: ""; -} - -.fa-info:before { - content: ""; -} - -.fa-info-circle:before { - content: ""; -} - -.fa-innosoft:before { - content: ""; -} - -.fa-instagram:before { - content: ""; -} - -.fa-instagram-square:before { - content: ""; -} - -.fa-instalod:before { - content: ""; -} - -.fa-intercom:before { - content: ""; -} - -.fa-internet-explorer:before { - content: ""; -} - -.fa-invision:before { - content: ""; -} - -.fa-ioxhost:before { - content: ""; -} - -.fa-italic:before { - content: ""; -} - -.fa-itch-io:before { - content: ""; -} - -.fa-itunes:before { - content: ""; -} - -.fa-itunes-note:before { - content: ""; -} - -.fa-java:before { - content: ""; -} - -.fa-jedi:before { - content: ""; -} - -.fa-jedi-order:before { - content: ""; -} - -.fa-jenkins:before { - content: ""; -} - -.fa-jira:before { - content: ""; -} - -.fa-joget:before { - content: ""; -} - -.fa-joint:before { - content: ""; -} - -.fa-joomla:before { - content: ""; -} - -.fa-journal-whills:before { - content: ""; -} - -.fa-js:before { - content: ""; -} - -.fa-js-square:before { - content: ""; -} - -.fa-jsfiddle:before { - content: ""; -} - -.fa-kaaba:before { - content: ""; -} - -.fa-kaggle:before { - content: ""; -} - -.fa-key:before { - content: ""; -} - -.fa-keybase:before { - content: ""; -} - -.fa-keyboard:before { - content: ""; -} - -.fa-keycdn:before { - content: ""; -} - -.fa-khanda:before { - content: ""; -} - -.fa-kickstarter:before { - content: ""; -} - -.fa-kickstarter-k:before { - content: ""; -} - -.fa-kiss:before { - content: ""; -} - -.fa-kiss-beam:before { - content: ""; -} - -.fa-kiss-wink-heart:before { - content: ""; -} - -.fa-kiwi-bird:before { - content: ""; -} - -.fa-korvue:before { - content: ""; -} - -.fa-landmark:before { - content: ""; -} - -.fa-language:before { - content: ""; -} - -.fa-laptop:before { - content: ""; -} - -.fa-laptop-code:before { - content: ""; -} - -.fa-laptop-house:before { - content: ""; -} - -.fa-laptop-medical:before { - content: ""; -} - -.fa-laravel:before { - content: ""; -} - -.fa-lastfm:before { - content: ""; -} - -.fa-lastfm-square:before { - content: ""; -} - -.fa-laugh:before { - content: ""; -} - -.fa-laugh-beam:before { - content: ""; -} - -.fa-laugh-squint:before { - content: ""; -} - -.fa-laugh-wink:before { - content: ""; -} - -.fa-layer-group:before { - content: ""; -} - -.fa-leaf:before { - content: ""; -} - -.fa-leanpub:before { - content: ""; -} - -.fa-lemon:before { - content: ""; -} - -.fa-less:before { - content: ""; -} - -.fa-less-than:before { - content: ""; -} - -.fa-less-than-equal:before { - content: ""; -} - -.fa-level-down-alt:before { - content: ""; -} - -.fa-level-up-alt:before { - content: ""; -} - -.fa-life-ring:before { - content: ""; -} - -.fa-lightbulb:before { - content: ""; -} - -.fa-line:before { - content: ""; -} - -.fa-link:before { - content: ""; -} - -.fa-linkedin:before { - content: ""; -} - -.fa-linkedin-in:before { - content: ""; -} - -.fa-linode:before { - content: ""; -} - -.fa-linux:before { - content: ""; -} - -.fa-lira-sign:before { - content: ""; -} - -.fa-list:before { - content: ""; -} - -.fa-list-alt:before { - content: ""; -} - -.fa-list-ol:before { - content: ""; -} - -.fa-list-ul:before { - content: ""; -} - -.fa-location-arrow:before { - content: ""; -} - -.fa-lock:before { - content: ""; -} - -.fa-lock-open:before { - content: ""; -} - -.fa-long-arrow-alt-down:before { - content: ""; -} - -.fa-long-arrow-alt-left:before { - content: ""; -} - -.fa-long-arrow-alt-right:before { - content: ""; -} - -.fa-long-arrow-alt-up:before { - content: ""; -} - -.fa-low-vision:before { - content: ""; -} - -.fa-luggage-cart:before { - content: ""; -} - -.fa-lungs:before { - content: ""; -} - -.fa-lungs-virus:before { - content: ""; -} - -.fa-lyft:before { - content: ""; -} - -.fa-magento:before { - content: ""; -} - -.fa-magic:before { - content: ""; -} - -.fa-magnet:before { - content: ""; -} - -.fa-mail-bulk:before { - content: ""; -} - -.fa-mailchimp:before { - content: ""; -} - -.fa-male:before { - content: ""; -} - -.fa-mandalorian:before { - content: ""; -} - -.fa-map:before { - content: ""; -} - -.fa-map-marked:before { - content: ""; -} - -.fa-map-marked-alt:before { - content: ""; -} - -.fa-map-marker:before { - content: ""; -} - -.fa-map-marker-alt:before { - content: ""; -} - -.fa-map-pin:before { - content: ""; -} - -.fa-map-signs:before { - content: ""; -} - -.fa-markdown:before { - content: ""; -} - -.fa-marker:before { - content: ""; -} - -.fa-mars:before { - content: ""; -} - -.fa-mars-double:before { - content: ""; -} - -.fa-mars-stroke:before { - content: ""; -} - -.fa-mars-stroke-h:before { - content: ""; -} - -.fa-mars-stroke-v:before { - content: ""; -} - -.fa-mask:before { - content: ""; -} - -.fa-mastodon:before { - content: ""; -} - -.fa-maxcdn:before { - content: ""; -} - -.fa-mdb:before { - content: ""; -} - -.fa-medal:before { - content: ""; -} - -.fa-medapps:before { - content: ""; -} - -.fa-medium:before { - content: ""; -} - -.fa-medium-m:before { - content: ""; -} - -.fa-medkit:before { - content: ""; -} - -.fa-medrt:before { - content: ""; -} - -.fa-meetup:before { - content: ""; -} - -.fa-megaport:before { - content: ""; -} - -.fa-meh:before { - content: ""; -} - -.fa-meh-blank:before { - content: ""; -} - -.fa-meh-rolling-eyes:before { - content: ""; -} - -.fa-memory:before { - content: ""; -} - -.fa-mendeley:before { - content: ""; -} - -.fa-menorah:before { - content: ""; -} - -.fa-mercury:before { - content: ""; -} - -.fa-meteor:before { - content: ""; -} - -.fa-microblog:before { - content: ""; -} - -.fa-microchip:before { - content: ""; -} - -.fa-microphone:before { - content: ""; -} - -.fa-microphone-alt:before { - content: ""; -} - -.fa-microphone-alt-slash:before { - content: ""; -} - -.fa-microphone-slash:before { - content: ""; -} - -.fa-microscope:before { - content: ""; -} - -.fa-microsoft:before { - content: ""; -} - -.fa-minus:before { - content: ""; -} - -.fa-minus-circle:before { - content: ""; -} - -.fa-minus-square:before { - content: ""; -} - -.fa-mitten:before { - content: ""; -} - -.fa-mix:before { - content: ""; -} - -.fa-mixcloud:before { - content: ""; -} - -.fa-mixer:before { - content: ""; -} - -.fa-mizuni:before { - content: ""; -} - -.fa-mobile:before { - content: ""; -} - -.fa-mobile-alt:before { - content: ""; -} - -.fa-modx:before { - content: ""; -} - -.fa-monero:before { - content: ""; -} - -.fa-money-bill:before { - content: ""; -} - -.fa-money-bill-alt:before { - content: ""; -} - -.fa-money-bill-wave:before { - content: ""; -} - -.fa-money-bill-wave-alt:before { - content: ""; -} - -.fa-money-check:before { - content: ""; -} - -.fa-money-check-alt:before { - content: ""; -} - -.fa-monument:before { - content: ""; -} - -.fa-moon:before { - content: ""; -} - -.fa-mortar-pestle:before { - content: ""; -} - -.fa-mosque:before { - content: ""; -} - -.fa-motorcycle:before { - content: ""; -} - -.fa-mountain:before { - content: ""; -} - -.fa-mouse:before { - content: ""; -} - -.fa-mouse-pointer:before { - content: ""; -} - -.fa-mug-hot:before { - content: ""; -} - -.fa-music:before { - content: ""; -} - -.fa-napster:before { - content: ""; -} - -.fa-neos:before { - content: ""; -} - -.fa-network-wired:before { - content: ""; -} - -.fa-neuter:before { - content: ""; -} - -.fa-newspaper:before { - content: ""; -} - -.fa-nimblr:before { - content: ""; -} - -.fa-node:before { - content: ""; -} - -.fa-node-js:before { - content: ""; -} - -.fa-not-equal:before { - content: ""; -} - -.fa-notes-medical:before { - content: ""; -} - -.fa-npm:before { - content: ""; -} - -.fa-ns8:before { - content: ""; -} - -.fa-nutritionix:before { - content: ""; -} - -.fa-object-group:before { - content: ""; -} - -.fa-object-ungroup:before { - content: ""; -} - -.fa-octopus-deploy:before { - content: ""; -} - -.fa-odnoklassniki:before { - content: ""; -} - -.fa-odnoklassniki-square:before { - content: ""; -} - -.fa-oil-can:before { - content: ""; -} - -.fa-old-republic:before { - content: ""; -} - -.fa-om:before { - content: ""; -} - -.fa-opencart:before { - content: ""; -} - -.fa-openid:before { - content: ""; -} - -.fa-opera:before { - content: ""; -} - -.fa-optin-monster:before { - content: ""; -} - -.fa-orcid:before { - content: ""; -} - -.fa-osi:before { - content: ""; -} - -.fa-otter:before { - content: ""; -} - -.fa-outdent:before { - content: ""; -} - -.fa-page4:before { - content: ""; -} - -.fa-pagelines:before { - content: ""; -} - -.fa-pager:before { - content: ""; -} - -.fa-paint-brush:before { - content: ""; -} - -.fa-paint-roller:before { - content: ""; -} - -.fa-palette:before { - content: ""; -} - -.fa-palfed:before { - content: ""; -} - -.fa-pallet:before { - content: ""; -} - -.fa-paper-plane:before { - content: ""; -} - -.fa-paperclip:before { - content: ""; -} - -.fa-parachute-box:before { - content: ""; -} - -.fa-paragraph:before { - content: ""; -} - -.fa-parking:before { - content: ""; -} - -.fa-passport:before { - content: ""; -} - -.fa-pastafarianism:before { - content: ""; -} - -.fa-paste:before { - content: ""; -} - -.fa-patreon:before { - content: ""; -} - -.fa-pause:before { - content: ""; -} - -.fa-pause-circle:before { - content: ""; -} - -.fa-paw:before { - content: ""; -} - -.fa-paypal:before { - content: ""; -} - -.fa-peace:before { - content: ""; -} - -.fa-pen:before { - content: ""; -} - -.fa-pen-alt:before { - content: ""; -} - -.fa-pen-fancy:before { - content: ""; -} - -.fa-pen-nib:before { - content: ""; -} - -.fa-pen-square:before { - content: ""; -} - -.fa-pencil-alt:before { - content: ""; -} - -.fa-pencil-ruler:before { - content: ""; -} - -.fa-penny-arcade:before { - content: ""; -} - -.fa-people-arrows:before { - content: ""; -} - -.fa-people-carry:before { - content: ""; -} - -.fa-pepper-hot:before { - content: ""; -} - -.fa-perbyte:before { - content: ""; -} - -.fa-percent:before { - content: ""; -} - -.fa-percentage:before { - content: ""; -} - -.fa-periscope:before { - content: ""; -} - -.fa-person-booth:before { - content: ""; -} - -.fa-phabricator:before { - content: ""; -} - -.fa-phoenix-framework:before { - content: ""; -} - -.fa-phoenix-squadron:before { - content: ""; -} - -.fa-phone:before { - content: ""; -} - -.fa-phone-alt:before { - content: ""; -} - -.fa-phone-slash:before { - content: ""; -} - -.fa-phone-square:before { - content: ""; -} - -.fa-phone-square-alt:before { - content: ""; -} - -.fa-phone-volume:before { - content: ""; -} - -.fa-photo-video:before { - content: ""; -} - -.fa-php:before { - content: ""; -} - -.fa-pied-piper:before { - content: ""; -} - -.fa-pied-piper-alt:before { - content: ""; -} - -.fa-pied-piper-hat:before { - content: ""; -} - -.fa-pied-piper-pp:before { - content: ""; -} - -.fa-pied-piper-square:before { - content: ""; -} - -.fa-piggy-bank:before { - content: ""; -} - -.fa-pills:before { - content: ""; -} - -.fa-pinterest:before { - content: ""; -} - -.fa-pinterest-p:before { - content: ""; -} - -.fa-pinterest-square:before { - content: ""; -} - -.fa-pizza-slice:before { - content: ""; -} - -.fa-place-of-worship:before { - content: ""; -} - -.fa-plane:before { - content: ""; -} - -.fa-plane-arrival:before { - content: ""; -} - -.fa-plane-departure:before { - content: ""; -} - -.fa-plane-slash:before { - content: ""; -} - -.fa-play:before { - content: ""; -} - -.fa-play-circle:before { - content: ""; -} - -.fa-playstation:before { - content: ""; -} - -.fa-plug:before { - content: ""; -} - -.fa-plus:before { - content: ""; -} - -.fa-plus-circle:before { - content: ""; -} - -.fa-plus-square:before { - content: ""; -} - -.fa-podcast:before { - content: ""; -} - -.fa-poll:before { - content: ""; -} - -.fa-poll-h:before { - content: ""; -} - -.fa-poo:before { - content: ""; -} - -.fa-poo-storm:before { - content: ""; -} - -.fa-poop:before { - content: ""; -} - -.fa-portrait:before { - content: ""; -} - -.fa-pound-sign:before { - content: ""; -} - -.fa-power-off:before { - content: ""; -} - -.fa-pray:before { - content: ""; -} - -.fa-praying-hands:before { - content: ""; -} - -.fa-prescription:before { - content: ""; -} - -.fa-prescription-bottle:before { - content: ""; -} - -.fa-prescription-bottle-alt:before { - content: ""; -} - -.fa-print:before { - content: ""; -} - -.fa-procedures:before { - content: ""; -} - -.fa-product-hunt:before { - content: ""; -} - -.fa-project-diagram:before { - content: ""; -} - -.fa-pump-medical:before { - content: ""; -} - -.fa-pump-soap:before { - content: ""; -} - -.fa-pushed:before { - content: ""; -} - -.fa-puzzle-piece:before { - content: ""; -} - -.fa-python:before { - content: ""; -} - -.fa-qq:before { - content: ""; -} - -.fa-qrcode:before { - content: ""; -} - -.fa-question:before { - content: ""; -} - -.fa-question-circle:before { - content: ""; -} - -.fa-quidditch:before { - content: ""; -} - -.fa-quinscape:before { - content: ""; -} - -.fa-quora:before { - content: ""; -} - -.fa-quote-left:before { - content: ""; -} - -.fa-quote-right:before { - content: ""; -} - -.fa-quran:before { - content: ""; -} - -.fa-r-project:before { - content: ""; -} - -.fa-radiation:before { - content: ""; -} - -.fa-radiation-alt:before { - content: ""; -} - -.fa-rainbow:before { - content: ""; -} - -.fa-random:before { - content: ""; -} - -.fa-raspberry-pi:before { - content: ""; -} - -.fa-ravelry:before { - content: ""; -} - -.fa-react:before { - content: ""; -} - -.fa-reacteurope:before { - content: ""; -} - -.fa-readme:before { - content: ""; -} - -.fa-rebel:before { - content: ""; -} - -.fa-receipt:before { - content: ""; -} - -.fa-record-vinyl:before { - content: ""; -} - -.fa-recycle:before { - content: ""; -} - -.fa-red-river:before { - content: ""; -} - -.fa-reddit:before { - content: ""; -} - -.fa-reddit-alien:before { - content: ""; -} - -.fa-reddit-square:before { - content: ""; -} - -.fa-redhat:before { - content: ""; -} - -.fa-redo:before { - content: ""; -} - -.fa-redo-alt:before { - content: ""; -} - -.fa-registered:before { - content: ""; -} - -.fa-remove-format:before { - content: ""; -} - -.fa-renren:before { - content: ""; -} - -.fa-reply:before { - content: ""; -} - -.fa-reply-all:before { - content: ""; -} - -.fa-replyd:before { - content: ""; -} - -.fa-republican:before { - content: ""; -} - -.fa-researchgate:before { - content: ""; -} - -.fa-resolving:before { - content: ""; -} - -.fa-restroom:before { - content: ""; -} - -.fa-retweet:before { - content: ""; -} - -.fa-rev:before { - content: ""; -} - -.fa-ribbon:before { - content: ""; -} - -.fa-ring:before { - content: ""; -} - -.fa-road:before { - content: ""; -} - -.fa-robot:before { - content: ""; -} - -.fa-rocket:before { - content: ""; -} - -.fa-rocketchat:before { - content: ""; -} - -.fa-rockrms:before { - content: ""; -} - -.fa-route:before { - content: ""; -} - -.fa-rss:before { - content: ""; -} - -.fa-rss-square:before { - content: ""; -} - -.fa-ruble-sign:before { - content: ""; -} - -.fa-ruler:before { - content: ""; -} - -.fa-ruler-combined:before { - content: ""; -} - -.fa-ruler-horizontal:before { - content: ""; -} - -.fa-ruler-vertical:before { - content: ""; -} - -.fa-running:before { - content: ""; -} - -.fa-rupee-sign:before { - content: ""; -} - -.fa-rust:before { - content: ""; -} - -.fa-sad-cry:before { - content: ""; -} - -.fa-sad-tear:before { - content: ""; -} - -.fa-safari:before { - content: ""; -} - -.fa-salesforce:before { - content: ""; -} - -.fa-sass:before { - content: ""; -} - -.fa-satellite:before { - content: ""; -} - -.fa-satellite-dish:before { - content: ""; -} - -.fa-save:before { - content: ""; -} - -.fa-schlix:before { - content: ""; -} - -.fa-school:before { - content: ""; -} - -.fa-screwdriver:before { - content: ""; -} - -.fa-scribd:before { - content: ""; -} - -.fa-scroll:before { - content: ""; -} - -.fa-sd-card:before { - content: ""; -} - -.fa-search:before { - content: ""; -} - -.fa-search-dollar:before { - content: ""; -} - -.fa-search-location:before { - content: ""; -} - -.fa-search-minus:before { - content: ""; -} - -.fa-search-plus:before { - content: ""; -} - -.fa-searchengin:before { - content: ""; -} - -.fa-seedling:before { - content: ""; -} - -.fa-sellcast:before { - content: ""; -} - -.fa-sellsy:before { - content: ""; -} - -.fa-server:before { - content: ""; -} - -.fa-servicestack:before { - content: ""; -} - -.fa-shapes:before { - content: ""; -} - -.fa-share:before { - content: ""; -} - -.fa-share-alt:before { - content: ""; -} - -.fa-share-alt-square:before { - content: ""; -} - -.fa-share-square:before { - content: ""; -} - -.fa-shekel-sign:before { - content: ""; -} - -.fa-shield-alt:before { - content: ""; -} - -.fa-shield-virus:before { - content: ""; -} - -.fa-ship:before { - content: ""; -} - -.fa-shipping-fast:before { - content: ""; -} - -.fa-shirtsinbulk:before { - content: ""; -} - -.fa-shoe-prints:before { - content: ""; -} - -.fa-shopify:before { - content: ""; -} - -.fa-shopping-bag:before { - content: ""; -} - -.fa-shopping-basket:before { - content: ""; -} - -.fa-shopping-cart:before { - content: ""; -} - -.fa-shopware:before { - content: ""; -} - -.fa-shower:before { - content: ""; -} - -.fa-shuttle-van:before { - content: ""; -} - -.fa-sign:before { - content: ""; -} - -.fa-sign-in-alt:before { - content: ""; -} - -.fa-sign-language:before { - content: ""; -} - -.fa-sign-out-alt:before { - content: ""; -} - -.fa-signal:before { - content: ""; -} - -.fa-signature:before { - content: ""; -} - -.fa-sim-card:before { - content: ""; -} - -.fa-simplybuilt:before { - content: ""; -} - -.fa-sink:before { - content: ""; -} - -.fa-sistrix:before { - content: ""; -} - -.fa-sitemap:before { - content: ""; -} - -.fa-sith:before { - content: ""; -} - -.fa-skating:before { - content: ""; -} - -.fa-sketch:before { - content: ""; -} - -.fa-skiing:before { - content: ""; -} - -.fa-skiing-nordic:before { - content: ""; -} - -.fa-skull:before { - content: ""; -} - -.fa-skull-crossbones:before { - content: ""; -} - -.fa-skyatlas:before { - content: ""; -} - -.fa-skype:before { - content: ""; -} - -.fa-slack:before { - content: ""; -} - -.fa-slack-hash:before { - content: ""; -} - -.fa-slash:before { - content: ""; -} - -.fa-sleigh:before { - content: ""; -} - -.fa-sliders-h:before { - content: ""; -} - -.fa-slideshare:before { - content: ""; -} - -.fa-smile:before { - content: ""; -} - -.fa-smile-beam:before { - content: ""; -} - -.fa-smile-wink:before { - content: ""; -} - -.fa-smog:before { - content: ""; -} - -.fa-smoking:before { - content: ""; -} - -.fa-smoking-ban:before { - content: ""; -} - -.fa-sms:before { - content: ""; -} - -.fa-snapchat:before { - content: ""; -} - -.fa-snapchat-ghost:before { - content: ""; -} - -.fa-snapchat-square:before { - content: ""; -} - -.fa-snowboarding:before { - content: ""; -} - -.fa-snowflake:before { - content: ""; -} - -.fa-snowman:before { - content: ""; -} - -.fa-snowplow:before { - content: ""; -} - -.fa-soap:before { - content: ""; -} - -.fa-socks:before { - content: ""; -} - -.fa-solar-panel:before { - content: ""; -} - -.fa-sort:before { - content: ""; -} - -.fa-sort-alpha-down:before { - content: ""; -} - -.fa-sort-alpha-down-alt:before { - content: ""; -} - -.fa-sort-alpha-up:before { - content: ""; -} - -.fa-sort-alpha-up-alt:before { - content: ""; -} - -.fa-sort-amount-down:before { - content: ""; -} - -.fa-sort-amount-down-alt:before { - content: ""; -} - -.fa-sort-amount-up:before { - content: ""; -} - -.fa-sort-amount-up-alt:before { - content: ""; -} - -.fa-sort-down:before { - content: ""; -} - -.fa-sort-numeric-down:before { - content: ""; -} - -.fa-sort-numeric-down-alt:before { - content: ""; -} - -.fa-sort-numeric-up:before { - content: ""; -} - -.fa-sort-numeric-up-alt:before { - content: ""; -} - -.fa-sort-up:before { - content: ""; -} - -.fa-soundcloud:before { - content: ""; -} - -.fa-sourcetree:before { - content: ""; -} - -.fa-spa:before { - content: ""; -} - -.fa-space-shuttle:before { - content: ""; -} - -.fa-speakap:before { - content: ""; -} - -.fa-speaker-deck:before { - content: ""; -} - -.fa-spell-check:before { - content: ""; -} - -.fa-spider:before { - content: ""; -} - -.fa-spinner:before { - content: ""; -} - -.fa-splotch:before { - content: ""; -} - -.fa-spotify:before { - content: ""; -} - -.fa-spray-can:before { - content: ""; -} - -.fa-square:before { - content: ""; -} - -.fa-square-full:before { - content: ""; -} - -.fa-square-root-alt:before { - content: ""; -} - -.fa-squarespace:before { - content: ""; -} - -.fa-stack-exchange:before { - content: ""; -} - -.fa-stack-overflow:before { - content: ""; -} - -.fa-stackpath:before { - content: ""; -} - -.fa-stamp:before { - content: ""; -} - -.fa-star:before { - content: ""; -} - -.fa-star-and-crescent:before { - content: ""; -} - -.fa-star-half:before { - content: ""; -} - -.fa-star-half-alt:before { - content: ""; -} - -.fa-star-of-david:before { - content: ""; -} - -.fa-star-of-life:before { - content: ""; -} - -.fa-staylinked:before { - content: ""; -} - -.fa-steam:before { - content: ""; -} - -.fa-steam-square:before { - content: ""; -} - -.fa-steam-symbol:before { - content: ""; -} - -.fa-step-backward:before { - content: ""; -} - -.fa-step-forward:before { - content: ""; -} - -.fa-stethoscope:before { - content: ""; -} - -.fa-sticker-mule:before { - content: ""; -} - -.fa-sticky-note:before { - content: ""; -} - -.fa-stop:before { - content: ""; -} - -.fa-stop-circle:before { - content: ""; -} - -.fa-stopwatch:before { - content: ""; -} - -.fa-stopwatch-20:before { - content: ""; -} - -.fa-store:before { - content: ""; -} - -.fa-store-alt:before { - content: ""; -} - -.fa-store-alt-slash:before { - content: ""; -} - -.fa-store-slash:before { - content: ""; -} - -.fa-strava:before { - content: ""; -} - -.fa-stream:before { - content: ""; -} - -.fa-street-view:before { - content: ""; -} - -.fa-strikethrough:before { - content: ""; -} - -.fa-stripe:before { - content: ""; -} - -.fa-stripe-s:before { - content: ""; -} - -.fa-stroopwafel:before { - content: ""; -} - -.fa-studiovinari:before { - content: ""; -} - -.fa-stumbleupon:before { - content: ""; -} - -.fa-stumbleupon-circle:before { - content: ""; -} - -.fa-subscript:before { - content: ""; -} - -.fa-subway:before { - content: ""; -} - -.fa-suitcase:before { - content: ""; -} - -.fa-suitcase-rolling:before { - content: ""; -} - -.fa-sun:before { - content: ""; -} - -.fa-superpowers:before { - content: ""; -} - -.fa-superscript:before { - content: ""; -} - -.fa-supple:before { - content: ""; -} - -.fa-surprise:before { - content: ""; -} - -.fa-suse:before { - content: ""; -} - -.fa-swatchbook:before { - content: ""; -} - -.fa-swift:before { - content: ""; -} - -.fa-swimmer:before { - content: ""; -} - -.fa-swimming-pool:before { - content: ""; -} - -.fa-symfony:before { - content: ""; -} - -.fa-synagogue:before { - content: ""; -} - -.fa-sync:before { - content: ""; -} - -.fa-sync-alt:before { - content: ""; -} - -.fa-syringe:before { - content: ""; -} - -.fa-table:before { - content: ""; -} - -.fa-table-tennis:before { - content: ""; -} - -.fa-tablet:before { - content: ""; -} - -.fa-tablet-alt:before { - content: ""; -} - -.fa-tablets:before { - content: ""; -} - -.fa-tachometer-alt:before { - content: ""; -} - -.fa-tag:before { - content: ""; -} - -.fa-tags:before { - content: ""; -} - -.fa-tape:before { - content: ""; -} - -.fa-tasks:before { - content: ""; -} - -.fa-taxi:before { - content: ""; -} - -.fa-teamspeak:before { - content: ""; -} - -.fa-teeth:before { - content: ""; -} - -.fa-teeth-open:before { - content: ""; -} - -.fa-telegram:before { - content: ""; -} - -.fa-telegram-plane:before { - content: ""; -} - -.fa-temperature-high:before { - content: ""; -} - -.fa-temperature-low:before { - content: ""; -} - -.fa-tencent-weibo:before { - content: ""; -} - -.fa-tenge:before { - content: ""; -} - -.fa-terminal:before { - content: ""; -} - -.fa-text-height:before { - content: ""; -} - -.fa-text-width:before { - content: ""; -} - -.fa-th:before { - content: ""; -} - -.fa-th-large:before { - content: ""; -} - -.fa-th-list:before { - content: ""; -} - -.fa-the-red-yeti:before { - content: ""; -} - -.fa-theater-masks:before { - content: ""; -} - -.fa-themeco:before { - content: ""; -} - -.fa-themeisle:before { - content: ""; -} - -.fa-thermometer:before { - content: ""; -} - -.fa-thermometer-empty:before { - content: ""; -} - -.fa-thermometer-full:before { - content: ""; -} - -.fa-thermometer-half:before { - content: ""; -} - -.fa-thermometer-quarter:before { - content: ""; -} - -.fa-thermometer-three-quarters:before { - content: ""; -} - -.fa-think-peaks:before { - content: ""; -} - -.fa-thumbs-down:before { - content: ""; -} - -.fa-thumbs-up:before { - content: ""; -} - -.fa-thumbtack:before { - content: ""; -} - -.fa-ticket-alt:before { - content: ""; -} - -.fa-tiktok:before { - content: ""; -} - -.fa-times:before { - content: ""; -} - -.fa-times-circle:before { - content: ""; -} - -.fa-tint:before { - content: ""; -} - -.fa-tint-slash:before { - content: ""; -} - -.fa-tired:before { - content: ""; -} - -.fa-toggle-off:before { - content: ""; -} - -.fa-toggle-on:before { - content: ""; -} - -.fa-toilet:before { - content: ""; -} - -.fa-toilet-paper:before { - content: ""; -} - -.fa-toilet-paper-slash:before { - content: ""; -} - -.fa-toolbox:before { - content: ""; -} - -.fa-tools:before { - content: ""; -} - -.fa-tooth:before { - content: ""; -} - -.fa-torah:before { - content: ""; -} - -.fa-torii-gate:before { - content: ""; -} - -.fa-tractor:before { - content: ""; -} - -.fa-trade-federation:before { - content: ""; -} - -.fa-trademark:before { - content: ""; -} - -.fa-traffic-light:before { - content: ""; -} - -.fa-trailer:before { - content: ""; -} - -.fa-train:before { - content: ""; -} - -.fa-tram:before { - content: ""; -} - -.fa-transgender:before { - content: ""; -} - -.fa-transgender-alt:before { - content: ""; -} - -.fa-trash:before { - content: ""; -} - -.fa-trash-alt:before { - content: ""; -} - -.fa-trash-restore:before { - content: ""; -} - -.fa-trash-restore-alt:before { - content: ""; -} - -.fa-tree:before { - content: ""; -} - -.fa-trello:before { - content: ""; -} - -.fa-tripadvisor:before { - content: ""; -} - -.fa-trophy:before { - content: ""; -} - -.fa-truck:before { - content: ""; -} - -.fa-truck-loading:before { - content: ""; -} - -.fa-truck-monster:before { - content: ""; -} - -.fa-truck-moving:before { - content: ""; -} - -.fa-truck-pickup:before { - content: ""; -} - -.fa-tshirt:before { - content: ""; -} - -.fa-tty:before { - content: ""; -} - -.fa-tumblr:before { - content: ""; -} - -.fa-tumblr-square:before { - content: ""; -} - -.fa-tv:before { - content: ""; -} - -.fa-twitch:before { - content: ""; -} - -.fa-twitter:before { - content: ""; -} - -.fa-twitter-square:before { - content: ""; -} - -.fa-typo3:before { - content: ""; -} - -.fa-uber:before { - content: ""; -} - -.fa-ubuntu:before { - content: ""; -} - -.fa-uikit:before { - content: ""; -} - -.fa-umbraco:before { - content: ""; -} - -.fa-umbrella:before { - content: ""; -} - -.fa-umbrella-beach:before { - content: ""; -} - -.fa-uncharted:before { - content: ""; -} - -.fa-underline:before { - content: ""; -} - -.fa-undo:before { - content: ""; -} - -.fa-undo-alt:before { - content: ""; -} - -.fa-uniregistry:before { - content: ""; -} - -.fa-unity:before { - content: ""; -} - -.fa-universal-access:before { - content: ""; -} - -.fa-university:before { - content: ""; -} - -.fa-unlink:before { - content: ""; -} - -.fa-unlock:before { - content: ""; -} - -.fa-unlock-alt:before { - content: ""; -} - -.fa-unsplash:before { - content: ""; -} - -.fa-untappd:before { - content: ""; -} - -.fa-upload:before { - content: ""; -} - -.fa-ups:before { - content: ""; -} - -.fa-usb:before { - content: ""; -} - -.fa-user:before { - content: ""; -} - -.fa-user-alt:before { - content: ""; -} - -.fa-user-alt-slash:before { - content: ""; -} - -.fa-user-astronaut:before { - content: ""; -} - -.fa-user-check:before { - content: ""; -} - -.fa-user-circle:before { - content: ""; -} - -.fa-user-clock:before { - content: ""; -} - -.fa-user-cog:before { - content: ""; -} - -.fa-user-edit:before { - content: ""; -} - -.fa-user-friends:before { - content: ""; -} - -.fa-user-graduate:before { - content: ""; -} - -.fa-user-injured:before { - content: ""; -} - -.fa-user-lock:before { - content: ""; -} - -.fa-user-md:before { - content: ""; -} - -.fa-user-minus:before { - content: ""; -} - -.fa-user-ninja:before { - content: ""; -} - -.fa-user-nurse:before { - content: ""; -} - -.fa-user-plus:before { - content: ""; -} - -.fa-user-secret:before { - content: ""; -} - -.fa-user-shield:before { - content: ""; -} - -.fa-user-slash:before { - content: ""; -} - -.fa-user-tag:before { - content: ""; -} - -.fa-user-tie:before { - content: ""; -} - -.fa-user-times:before { - content: ""; -} - -.fa-users:before { - content: ""; -} - -.fa-users-cog:before { - content: ""; -} - -.fa-users-slash:before { - content: ""; -} - -.fa-usps:before { - content: ""; -} - -.fa-ussunnah:before { - content: ""; -} - -.fa-utensil-spoon:before { - content: ""; -} - -.fa-utensils:before { - content: ""; -} - -.fa-vaadin:before { - content: ""; -} - -.fa-vector-square:before { - content: ""; -} - -.fa-venus:before { - content: ""; -} - -.fa-venus-double:before { - content: ""; -} - -.fa-venus-mars:before { - content: ""; -} - -.fa-vest:before { - content: ""; -} - -.fa-vest-patches:before { - content: ""; -} - -.fa-viacoin:before { - content: ""; -} - -.fa-viadeo:before { - content: ""; -} - -.fa-viadeo-square:before { - content: ""; -} - -.fa-vial:before { - content: ""; -} - -.fa-vials:before { - content: ""; -} - -.fa-viber:before { - content: ""; -} - -.fa-video:before { - content: ""; -} - -.fa-video-slash:before { - content: ""; -} - -.fa-vihara:before { - content: ""; -} - -.fa-vimeo:before { - content: ""; -} - -.fa-vimeo-square:before { - content: ""; -} - -.fa-vimeo-v:before { - content: ""; -} - -.fa-vine:before { - content: ""; -} - -.fa-virus:before { - content: ""; -} - -.fa-virus-slash:before { - content: ""; -} - -.fa-viruses:before { - content: ""; -} - -.fa-vk:before { - content: ""; -} - -.fa-vnv:before { - content: ""; -} - -.fa-voicemail:before { - content: ""; -} - -.fa-volleyball-ball:before { - content: ""; -} - -.fa-volume-down:before { - content: ""; -} - -.fa-volume-mute:before { - content: ""; -} - -.fa-volume-off:before { - content: ""; -} - -.fa-volume-up:before { - content: ""; -} - -.fa-vote-yea:before { - content: ""; -} - -.fa-vr-cardboard:before { - content: ""; -} - -.fa-vuejs:before { - content: ""; -} - -.fa-walking:before { - content: ""; -} - -.fa-wallet:before { - content: ""; -} - -.fa-warehouse:before { - content: ""; -} - -.fa-watchman-monitoring:before { - content: ""; -} - -.fa-water:before { - content: ""; -} - -.fa-wave-square:before { - content: ""; -} - -.fa-waze:before { - content: ""; -} - -.fa-weebly:before { - content: ""; -} - -.fa-weibo:before { - content: ""; -} - -.fa-weight:before { - content: ""; -} - -.fa-weight-hanging:before { - content: ""; -} - -.fa-weixin:before { - content: ""; -} - -.fa-whatsapp:before { - content: ""; -} - -.fa-whatsapp-square:before { - content: ""; -} - -.fa-wheelchair:before { - content: ""; -} - -.fa-whmcs:before { - content: ""; -} - -.fa-wifi:before { - content: ""; -} - -.fa-wikipedia-w:before { - content: ""; -} - -.fa-wind:before { - content: ""; -} - -.fa-window-close:before { - content: ""; -} - -.fa-window-maximize:before { - content: ""; -} - -.fa-window-minimize:before { - content: ""; -} - -.fa-window-restore:before { - content: ""; -} - -.fa-windows:before { - content: ""; -} - -.fa-wine-bottle:before { - content: ""; -} - -.fa-wine-glass:before { - content: ""; -} - -.fa-wine-glass-alt:before { - content: ""; -} - -.fa-wix:before { - content: ""; -} - -.fa-wizards-of-the-coast:before { - content: ""; -} - -.fa-wodu:before { - content: ""; -} - -.fa-wolf-pack-battalion:before { - content: ""; -} - -.fa-won-sign:before { - content: ""; -} - -.fa-wordpress:before { - content: ""; -} - -.fa-wordpress-simple:before { - content: ""; -} - -.fa-wpbeginner:before { - content: ""; -} - -.fa-wpexplorer:before { - content: ""; -} - -.fa-wpforms:before { - content: ""; -} - -.fa-wpressr:before { - content: ""; -} - -.fa-wrench:before { - content: ""; -} - -.fa-x-ray:before { - content: ""; -} - -.fa-xbox:before { - content: ""; -} - -.fa-xing:before { - content: ""; -} - -.fa-xing-square:before { - content: ""; -} - -.fa-y-combinator:before { - content: ""; -} - -.fa-yahoo:before { - content: ""; -} - -.fa-yammer:before { - content: ""; -} - -.fa-yandex:before { - content: ""; -} - -.fa-yandex-international:before { - content: ""; -} - -.fa-yarn:before { - content: ""; -} - -.fa-yelp:before { - content: ""; -} - -.fa-yen-sign:before { - content: ""; -} - -.fa-yin-yang:before { - content: ""; -} - -.fa-yoast:before { - content: ""; -} - -.fa-youtube:before { - content: ""; -} - -.fa-youtube-square:before { - content: ""; -} - -.fa-zhihu:before { - content: ""; -} - -.sr-only { - border: 0; - clip: rect(0, 0, 0, 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; -} - -.sr-only-focusable:active, -.sr-only-focusable:focus { - clip: auto; - height: auto; - margin: 0; - overflow: visible; - position: static; - width: auto; -} - -/*! - * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - */ -@font-face { - font-family: "Font Awesome 5 Free"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../fonts/fa-regular-400.eot"); - src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), - url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), - url("../fonts/fa-regular-400.ttf") format("truetype"), - url("../fonts/fa-regular-400.svg#fontawesome") format("svg"); -} -.far { - font-family: "Font Awesome 5 Free"; - font-weight: 400; -} - -/*! - * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - */ -@font-face { - font-family: "Font Awesome 5 Free"; - font-style: normal; - font-weight: 900; - font-display: block; - src: url("../fonts/fa-solid-900.eot"); - src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), - url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), - url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg"); -} -.fa, -.fas, -[class^="icon-"], -[class*=" icon-"] { - font-family: "Font Awesome 5 Free"; - font-weight: 900; -} - -/*! - * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com - * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) - */ -@font-face { - font-family: "Font Awesome 5 Brands"; - font-style: normal; - font-weight: 400; - font-display: block; - src: url("../fonts/fa-brands-400.eot"); - src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), - url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), - url("../fonts/fa-brands-400.ttf") format("truetype"), - url("../fonts/fa-brands-400.svg#fontawesome") format("svg"); -} -.fab, -.icon-joomla { - font-family: "Font Awesome 5 Brands"; - font-weight: 400; -} - -/** - * IcoMoon to Fontawesome Conversion - */ -[class^="icon-"], -[class*=" icon-"] { - speak: none; -} - -[class^="icon-"].disabled, -[class*=" icon-"].disabled, -[class^="fa-"].disabled, -[class*=" fa-"].disabled { - font-weight: 400; -} - -.icon-joomla:before { - content: ""; -} - -.icon-accessible:before { - content: ""; -} - -.icon-add:before { - content: ""; -} - -.icon-address-book:before { - content: ""; -} - -.icon-address:before { - content: ""; -} - -.icon-align-justify:before { - content: ""; -} - -.icon-angle-double-left:before { - content: ""; -} - -.icon-angle-double-right:before { - content: ""; -} - -.icon-angle-down:before { - content: ""; -} - -.icon-angle-left:before { - content: ""; -} - -.icon-angle-right:before { - content: ""; -} - -.icon-angle-up:before { - content: ""; -} - -.icon-apply:before { - content: ""; -} - -.icon-archive:before { - content: ""; -} - -.icon-arrow-down-2:before { - content: ""; -} - -.icon-arrow-down-3:before { - content: ""; -} - -.icon-arrow-down-4:before { - content: ""; -} - -.icon-arrow-down:before { - content: ""; -} - -.icon-arrow-first:before { - content: ""; -} - -.icon-arrow-last:before { - content: ""; -} - -.icon-arrow-left-2:before { - content: ""; -} - -.icon-arrow-left-3:before { - content: ""; -} - -.icon-arrow-left-4:before { - content: ""; -} - -.icon-arrow-left:before { - content: ""; -} - -.icon-arrow-right-2:before { - content: ""; -} - -.icon-arrow-right-3:before { - content: ""; -} - -.icon-arrow-right-4:before { - content: ""; -} - -.icon-arrow-right:before { - content: ""; -} - -.icon-arrow-up-2:before { - content: ""; -} - -.icon-arrow-up-3:before { - content: ""; -} - -.icon-arrow-up-4:before { - content: ""; -} - -.icon-arrow-up:before { - content: ""; -} - -.icon-arrows-alt:before { - content: ""; -} - -.icon-asterisk:before { - content: ""; -} - -.icon-attachment:before { - content: ""; -} - -.icon-backward-2:before { - content: ""; -} - -.icon-backward-circle:before { - content: ""; -} - -.icon-backward:before { - content: ""; -} - -.icon-ban-circle:before { - content: ""; -} - -.icon-bars:before { - content: ""; -} - -.icon-basket:before { - content: ""; -} - -.icon-bell:before { - content: ""; -} - -.icon-bolt:before { - content: ""; -} - -.icon-book:before { - content: ""; -} - -.icon-bookmark-2:before { - content: ""; -} - -.icon-bookmark:before { - content: ""; -} - -.icon-box-add:before { - content: ""; -} - -.icon-box-remove:before { - content: ""; -} - -.icon-briefcase:before { - content: ""; -} - -.icon-broadcast:before { - content: ""; -} - -.icon-brush:before { - content: ""; -} - -.icon-bubble-quote:before { - content: ""; -} - -.icon-bullhorn:before { - content: ""; -} - -.icon-calendar-check:before { - content: ""; -} - -.icon-calendar-2:before { - content: ""; -} - -.icon-calendar-3:before { - content: ""; -} - -.icon-calendar-alt:before { - content: ""; -} - -.icon-calendar:before { - content: ""; -} - -.icon-camera-2:before { - content: ""; -} - -.icon-camera:before { - content: ""; -} - -.icon-cancel-2:before { - content: ""; -} - -.icon-cancel-circle:before { - content: ""; -} - -.icon-cancel:before { - content: ""; -} - -.icon-caret-down:before { - content: ""; -} - -.icon-caret-up:before { - content: ""; -} - -.icon-cart:before { - content: ""; -} - -.icon-chart:before { - content: ""; -} - -.icon-check-circle:before { - content: ""; -} - -.icon-check-square:before { - content: ""; -} - -.icon-check:before { - content: ""; -} - -.icon-checkbox-checked:before { - content: ""; -} - -.icon-checkbox-partial:before { - content: ""; -} - -.icon-checkbox-unchecked:before { - content: ""; -} - -.icon-checkbox:before { - content: ""; -} - -.icon-checkedout:before { - content: ""; -} - -.icon-checkin:before { - content: ""; -} - -.icon-checkmark-2:before { - content: ""; -} - -.icon-checkmark-circle:before { - content: ""; -} - -.icon-checkmark:before { - content: ""; -} - -.icon-chevron-down:before { - content: ""; -} - -.icon-chevron-left:before { - content: ""; -} - -.icon-chevron-right:before { - content: ""; -} - -.icon-chevron-up:before { - content: ""; -} - -.icon-circle:before { - content: ""; -} - -.icon-clipboard:before { - content: ""; -} - -.icon-clock:before { - content: ""; -} - -.icon-cloud-download-alt:before { - content: ""; -} - -.icon-cloud-download:before { - content: ""; -} - -.icon-cloud-upload:before { - content: ""; -} - -.icon-cloud:before { - content: ""; -} - -.icon-code:before { - content: ""; -} - -.icon-code-branch:before { - content: ""; -} - -.icon-cog:before { - content: ""; -} - -.icon-cogs:before { - content: ""; -} - -.icon-collapse:before { - content: ""; -} - -.icon-color-palette:before { - content: ""; -} - -.icon-comment-dots:before { - content: ""; -} - -.icon-comment:before { - content: ""; -} - -.icon-comments-2:before { - content: ""; -} - -.icon-comments:before { - content: ""; -} - -.icon-compass:before { - content: ""; -} - -.icon-connection:before { - content: ""; -} - -.icon-contract-2:before { - content: ""; -} - -.icon-contract:before { - content: ""; -} - -.icon-copy:before { - content: ""; -} - -.icon-credit-2:before { - content: ""; -} - -.icon-credit:before { - content: ""; -} - -.icon-crop:before { - content: ""; -} - -.icon-cube:before { - content: ""; -} - -.icon-cubes:before { - content: ""; -} - -.icon-dashboard:before { - content: ""; -} - -.icon-database:before { - content: ""; -} - -.icon-default:before { - content: ""; -} - -.icon-delete:before { - content: ""; -} - -.icon-desktop:before { - content: ""; -} - -.icon-downarrow:before { - content: ""; -} - -.icon-download:before { - content: ""; -} - -.icon-drawer-2:before { - content: ""; -} - -.icon-drawer:before { - content: ""; -} - -.icon-edit:before { - content: ""; -} - -.icon-ellipsis-h:before { - content: ""; -} - -.icon-ellipsis-v:before { - content: ""; -} - -.icon-enter:before { - content: ""; -} - -.icon-envelope-open-text:before { - content: ""; -} - -.icon-envelope-opened:before { - content: ""; -} - -.icon-envelope:before { - content: ""; -} - -.icon-equalizer:before { - content: ""; -} - -.icon-error:before { - content: ""; -} - -.icon-exclamation-circle:before { - content: ""; -} - -.icon-exclamation-triangle:before { - content: ""; -} - -.icon-exclamation:before { - content: ""; -} - -.icon-exit:before { - content: ""; -} - -.icon-expand-2:before { - content: ""; -} - -.icon-expand:before { - content: ""; -} - -.icon-expired:before { - content: ""; -} - -.icon-external-link-alt:before { - content: ""; -} - -.icon-eye-2:before { - content: ""; -} - -.icon-eye-blocked:before { - content: ""; -} - -.icon-eye-close:before { - content: ""; -} - -.icon-eye-open:before { - content: ""; -} - -.icon-eye-slash:before { - content: ""; -} - -.icon-eye:before { - content: ""; -} - -.icon-fax:before { - content: ""; -} - -.icon-featured:before { - content: ""; -} - -.icon-feed:before { - content: ""; -} - -.icon-file-2:before { - content: ""; -} - -.icon-file-add:before { - content: ""; -} - -.icon-file-alt:before { - content: ""; -} - -.icon-file-check:before { - content: ""; -} - -.icon-file-minus:before { - content: ""; -} - -.icon-file-plus:before { - content: ""; -} - -.icon-file-remove:before { - content: ""; -} - -.icon-file:before { - content: ""; -} - -.icon-filter:before { - content: ""; -} - -.icon-first:before { - content: ""; -} - -.icon-flag-2:before { - content: ""; -} - -.icon-flag-3:before { - content: ""; -} - -.icon-flag:before { - content: ""; -} - -.icon-flash:before { - content: ""; -} - -.icon-folder-2:before { - content: ""; -} - -.icon-folder-3:before { - content: ""; -} - -.icon-folder-close:before { - content: ""; -} - -.icon-folder-minus:before { - content: ""; -} - -.icon-folder-open:before { - content: ""; -} - -.icon-folder-plus-2:before { - content: ""; -} - -.icon-folder-plus:before { - content: ""; -} - -.icon-folder-remove:before { - content: ""; -} - -.icon-folder:before { - content: ""; -} - -.icon-forward-2:before { - content: ""; -} - -.icon-forward-circle:before { - content: ""; -} - -.icon-forward:before { - content: ""; -} - -.icon-generic:before { - content: ""; -} - -.icon-globe:before { - content: ""; -} - -.icon-grid-2:before { - content: ""; -} - -.icon-grid-view-2:before { - content: ""; -} - -.icon-grid-view:before { - content: ""; -} - -.icon-grid:before { - content: ""; -} - -.icon-handshake:before { - content: ""; -} - -.icon-health:before { - content: ""; -} - -.icon-heart-2:before { - content: ""; -} - -.icon-heart:before { - content: ""; -} - -.icon-help:before { - content: ""; -} - -.icon-hits:before { - content: ""; -} - -.icon-home-2:before { - content: ""; -} - -.icon-home:before { - content: ""; -} - -.icon-image:before { - content: ""; -} - -.icon-images:before { - content: ""; -} - -.icon-info-2:before { - content: ""; -} - -.icon-info-circle:before { - content: ""; -} - -.icon-info:before { - content: ""; -} - -.icon-key:before { - content: ""; -} - -.icon-lamp:before { - content: ""; -} - -.icon-language:before { - content: ""; -} - -.icon-last:before { - content: ""; -} - -.icon-leftarrow:before { - content: ""; -} - -.icon-lightbulb:before { - content: ""; -} - -.icon-lightning:before { - content: ""; -} - -.icon-link:before { - content: ""; -} - -.icon-list-2:before { - content: ""; -} - -.icon-list-view:before { - content: ""; -} - -.icon-list:before { - content: ""; -} - -.icon-loading:before { - content: ""; -} - -.icon-location:before { - content: ""; -} - -.icon-lock:before { - content: ""; -} - -.icon-locked:before { - content: ""; -} - -.icon-loop:before { - content: ""; -} - -.icon-mail-2:before { - content: ""; -} - -.icon-mail:before { - content: ""; -} - -.icon-map-signs:before { - content: ""; -} - -.icon-menu-2:before { - content: ""; -} - -.icon-menu-3:before { - content: ""; -} - -.icon-menu:before { - content: ""; -} - -.icon-minus-2:before { - content: ""; -} - -.icon-minus-circle:before { - content: ""; -} - -.icon-minus-sign:before { - content: ""; -} - -.icon-minus:before { - content: ""; -} - -.icon-mobile:before { - content: ""; -} - -.icon-move:before { - content: ""; -} - -.icon-music:before { - content: ""; -} - -.icon-new-tab-2:before { - content: ""; -} - -.icon-new-tab:before { - content: ""; -} - -.icon-new:before { - content: ""; -} - -.icon-next:before { - content: ""; -} - -.icon-not-ok:before { - content: ""; -} - -.icon-notification-2:before { - content: ""; -} - -.icon-notification-circle:before { - content: ""; -} - -.icon-notification:before { - content: ""; -} - -.icon-ok:before { - content: ""; -} - -.icon-open:before { - content: ""; -} - -.icon-options:before { - content: ""; -} - -.icon-out-2:before { - content: ""; -} - -.icon-out-3:before { - content: ""; -} - -.icon-out:before { - content: ""; -} - -.icon-paint-brush:before { - content: ""; -} - -.icon-palette:before { - content: ""; -} - -.icon-paperclip:before { - content: ""; -} - -.icon-paragraph-center:before { - content: ""; -} - -.icon-paragraph-justify:before { - content: ""; -} - -.icon-paragraph-left:before { - content: ""; -} - -.icon-paragraph-right:before { - content: ""; -} - -.icon-pause-circle:before { - content: ""; -} - -.icon-pause:before { - content: ""; -} - -.icon-pen-square:before { - content: ""; -} - -.icon-pencil-2:before { - content: ""; -} - -.icon-pencil-alt:before { - content: ""; -} - -.icon-pencil:before { - content: ""; -} - -.icon-pending:before { - content: ""; -} - -.icon-phone-2:before { - content: ""; -} - -.icon-phone:before { - content: ""; -} - -.icon-picture:before { - content: ""; -} - -.icon-pictures:before { - content: ""; -} - -.icon-pie:before { - content: ""; -} - -.icon-pin:before { - content: ""; -} - -.icon-play-2:before { - content: ""; -} - -.icon-play-circle:before { - content: ""; -} - -.icon-play:before { - content: ""; -} - -.icon-plug:before { - content: ""; -} - -.icon-plus-2:before { - content: ""; -} - -.icon-plus-circle:before { - content: ""; -} - -.icon-plus-square:before { - content: ""; -} - -.icon-plus:before { - content: ""; -} - -.icon-power-cord:before { - content: ""; -} - -.icon-power-off:before { - content: ""; -} - -.icon-previous:before { - content: ""; -} - -.icon-print:before { - content: ""; -} - -.icon-printer:before { - content: ""; -} - -.icon-project-diagram:before { - content: ""; -} - -.icon-protected:before { - content: ""; -} - -.icon-publish:before { - content: ""; -} - -.icon-purge:before { - content: ""; -} - -.icon-pushpin:before { - content: ""; -} - -.icon-puzzle-piece:before { - content: ""; -} - -.icon-puzzle:before { - content: ""; -} - -.icon-question-2:before { - content: ""; -} - -.icon-question-circle:before { - content: ""; -} - -.icon-question-sign:before { - content: ""; -} - -.icon-question:before { - content: ""; -} - -.icon-quote-2:before { - content: ""; -} - -.icon-quote-3:before { - content: ""; -} - -.icon-quote:before { - content: ""; -} - -.icon-quotes-left:before { - content: ""; -} - -.icon-quotes-right:before { - content: ""; -} - -.icon-radio-checked:before { - content: ""; -} - -.icon-radio-unchecked:before { - content: ""; -} - -.icon-redo-2:before { - content: ""; -} - -.icon-redo:before { - content: ""; -} - -.icon-refresh:before { - content: ""; -} - -.icon-register:before { - content: ""; -} - -.icon-remove:before { - content: ""; -} - -.icon-reply:before { - content: ""; -} - -.icon-rightarrow:before { - content: ""; -} - -.icon-rss:before { - content: ""; -} - -.icon-save-copy:before { - content: ""; -} - -.icon-save-new:before { - content: ""; -} - -.icon-save:before { - content: ""; -} - -.icon-scissors:before { - content: ""; -} - -.icon-screen:before { - content: ""; -} - -.icon-screwdriver:before { - content: ""; -} - -.icon-search-minus:before { - content: ""; -} - -.icon-search-plus:before { - content: ""; -} - -.icon-search:before { - content: ""; -} - -.icon-select-file:before { - content: ""; -} - -.icon-share-alt:before { - content: ""; -} - -.icon-share:before { - content: ""; -} - -.icon-shield-alt:before { - content: ""; -} - -.icon-shield:before { - content: ""; -} - -.icon-shuffle:before { - content: ""; -} - -.icon-signup:before { - content: ""; -} - -.icon-sliders-h:before { - content: ""; -} - -.icon-smiley-2:before { - content: ""; -} - -.icon-smiley-happy-2:before { - content: ""; -} - -.icon-smiley-happy:before { - content: ""; -} - -.icon-smiley-neutral-2:before { - content: ""; -} - -.icon-smiley-neutral:before { - content: ""; -} - -.icon-smiley-sad-2:before { - content: ""; -} - -.icon-smiley-sad:before { - content: ""; -} - -.icon-smiley:before { - content: ""; -} - -.icon-sort:before { - content: ""; -} - -.icon-spinner:before { - content: ""; -} - -.icon-square:before { - content: ""; -} - -.icon-stack:before { - content: ""; -} - -.icon-star-2:before { - content: ""; -} - -.icon-star-empty:before { - content: ""; -} - -.icon-star:before { - content: ""; -} - -.icon-stop-circle:before { - content: ""; -} - -.icon-stop:before { - content: ""; -} - -.icon-success:before { - content: ""; -} - -.icon-support:before { - content: ""; -} - -.icon-switch:before { - content: ""; -} - -.icon-sync:before { - content: ""; -} - -.icon-tablet:before { - content: ""; -} - -.icon-tachometer-alt:before { - content: ""; -} - -.icon-tag-2:before { - content: ""; -} - -.icon-tag:before { - content: ""; -} - -.icon-tags-2:before { - content: ""; -} - -.icon-tags:before { - content: ""; -} - -.icon-tasks:before { - content: ""; -} - -.icon-text-width:before { - content: ""; -} - -.icon-th:before { - content: ""; -} - -.icon-th-large:before { - content: ""; -} - -.icon-thumbs-down:before { - content: ""; -} - -.icon-thumbs-up:before { - content: ""; -} - -.icon-times:before { - content: ""; -} - -.icon-toggle-off:before { - content: ""; -} - -.icon-toggle-on:before { - content: ""; -} - -.icon-tools:before { - content: ""; -} - -.icon-trash:before { - content: ""; -} - -.icon-tree-2:before { - content: ""; -} - -.icon-tree:before { - content: ""; -} - -.icon-trophy:before { - content: ""; -} - -.icon-unarchive:before { - content: ""; -} - -.icon-unblock:before { - content: ""; -} - -.icon-undo-2:before { - content: ""; -} - -.icon-undo:before { - content: ""; -} - -.icon-unfeatured:before { - content: ""; -} - -.icon-universal:before { - content: ""; -} - -.icon-universal-access:before { - content: ""; -} - -.icon-unlock-alt:before { - content: ""; -} - -.icon-unlock:before { - content: ""; -} - -.icon-unpublish:before { - content: ""; -} - -.icon-uparrow:before { - content: ""; -} - -.icon-upload:before { - content: ""; -} - -.icon-user-circle:before { - content: ""; -} - -.icon-user-edit:before { - content: ""; -} - -.icon-user-lock:before { - content: ""; -} - -.icon-user-tag:before { - content: ""; -} - -.icon-user:before { - content: ""; -} - -.icon-users-cog:before { - content: ""; -} - -.icon-users:before { - content: ""; -} - -.icon-vcard:before { - content: ""; -} - -.icon-video-2:before { - content: ""; -} - -.icon-video:before { - content: ""; -} - -.icon-wand:before { - content: ""; -} - -.icon-warning-2:before { - content: ""; -} - -.icon-warning-circle:before { - content: ""; -} - -.icon-warning:before { - content: ""; -} - -.icon-wifi:before { - content: ""; -} - -.icon-wrench:before { - content: ""; -} - -.icon-zoom-in:before { - content: ""; -} - -.icon-zoom-out:before { - content: ""; -} +/*! + * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ + @font-face { + font-family: "Font Awesome 5 Brands"; + font-style: normal; + font-weight: 400; + font-display: block; + src: url("../fonts/fa-brands-400.eot"); + src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), + url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), + url("../fonts/fa-brands-400.ttf") format("truetype"), + url("../fonts/fa-brands-400.svg#fontawesome") format("svg"); +}.fab,.icon-joomla{font-family:"Font Awesome 5 Brands";font-weight:400}[class*=" icon-"],[class^=icon-]{speak:none}[class*=" fa-"].disabled,[class*=" icon-"].disabled,[class^=fa-].disabled,[class^=icon-].disabled{font-weight:400}.icon-joomla:before{content:"\f1aa"}.icon-accessible:before{content:"\f29a"}.icon-add:before{content:"\f067"}.icon-address-book:before,.icon-address:before{content:"\f2b9"}.icon-align-justify:before{content:"\f039"}.icon-angle-double-left:before{content:"\f100"}.icon-angle-double-right:before{content:"\f101"}.icon-angle-down:before{content:"\f107"}.icon-angle-left:before{content:"\f104"}.icon-angle-right:before{content:"\f105"}.icon-angle-up:before{content:"\f106"}.icon-apply:before{content:"\f0c7"}.icon-archive:before{content:"\f187"}.icon-arrow-down-2:before{content:"\f358"}.icon-arrow-down-3:before{content:"\f0d7"}.icon-arrow-down-4:before{content:"\f063"}.icon-arrow-down:before{content:"\f078"}.icon-arrow-first:before{content:"\f048"}.icon-arrow-last:before{content:"\f049"}.icon-arrow-left-2:before{content:"\f359"}.icon-arrow-left-3:before{content:"\f0d9"}.icon-arrow-left-4:before{content:"\f060"}.icon-arrow-left:before{content:"\f053"}.icon-arrow-right-2:before{content:"\f35a"}.icon-arrow-right-3:before{content:"\f0da"}.icon-arrow-right-4:before{content:"\f061"}.icon-arrow-right:before{content:"\f054"}.icon-arrow-up-2:before{content:"\f35b"}.icon-arrow-up-3:before{content:"\f0d8"}.icon-arrow-up-4:before{content:"\f062"}.icon-arrow-up:before{content:"\f077"}.icon-arrows-alt:before{content:"\f0b2"}.icon-asterisk:before{content:"\f005"}.icon-attachment:before{content:"\f0c6"}.icon-backward-2:before{content:"\f359"}.icon-backward-circle:before{content:"\f137"}.icon-backward:before{content:"\f04a"}.icon-ban-circle:before{content:"\f056"}.icon-bars:before{content:"\f080"}.icon-basket:before{content:"\f291"}.icon-bell:before{content:"\f0f3"}.icon-bolt:before{content:"\f0e7"}.icon-book:before{content:"\f02d"}.icon-bookmark-2:before,.icon-bookmark:before{content:"\f02e"}.icon-box-add:before,.icon-box-remove:before{content:"\f187"}.icon-briefcase:before{content:"\f0b1"}.icon-broadcast:before{content:"\f1eb"}.icon-brush:before{content:"\f1fc"}.icon-bubble-quote:before{content:"\f075"}.icon-bullhorn:before{content:"\f0a1"}.icon-calendar-2:before,.icon-calendar-check:before{content:"\f274"}.icon-calendar-3:before{content:"\f133"}.icon-calendar-alt:before,.icon-calendar:before{content:"\f073"}.icon-camera-2:before{content:"\f03d"}.icon-camera:before{content:"\f030"}.icon-cancel-2:before{content:"\f00d"}.icon-cancel-circle:before{content:"\f057"}.icon-cancel:before{content:"\f00d"}.icon-caret-down:before{content:"\f0d7"}.icon-caret-up:before{content:"\f0d8"}.icon-cart:before{content:"\f07a"}.icon-chart:before{content:"\f1fe"}.icon-check-circle:before{content:"\f058"}.icon-check-square:before{content:"\f14a"}.icon-check:before{content:"\f00c"}.icon-checkbox-checked:before{content:"\f14a"}.icon-checkbox-partial:before,.icon-checkbox-unchecked:before{content:"\f0c8"}.icon-checkbox:before{content:"\f14a"}.icon-checkedout:before{content:"\f023"}.icon-checkin:before{content:"\f14a"}.icon-checkmark-2:before,.icon-checkmark-circle:before{content:"\f058"}.icon-checkmark:before{content:"\f00c"}.icon-chevron-down:before{content:"\f078"}.icon-chevron-left:before{content:"\f053"}.icon-chevron-right:before{content:"\f054"}.icon-chevron-up:before{content:"\f077"}.icon-circle:before{content:"\f111"}.icon-clipboard:before{content:"\f328"}.icon-clock:before{content:"\f017"}.icon-cloud-download-alt:before,.icon-cloud-download:before{content:"\f381"}.icon-cloud-upload:before{content:"\f382"}.icon-cloud:before{content:"\f0c2"}.icon-code:before{content:"\f121"}.icon-code-branch:before{content:"\f126"}.icon-cog:before{content:"\f013"}.icon-cogs:before{content:"\f085"}.icon-collapse:before{content:"\f067"}.icon-color-palette:before{content:"\f1fc"}.icon-comment-dots:before{content:"\f4ad"}.icon-comment:before{content:"\f075"}.icon-comments-2:before{content:"\f086"}.icon-comments:before{content:"\f075"}.icon-compass:before{content:"\f14e"}.icon-connection:before{content:"\f1eb"}.icon-contract-2:before{content:"\f291"}.icon-contract:before{content:"\f066"}.icon-copy:before{content:"\f0c5"}.icon-credit-2:before,.icon-credit:before{content:"\f09d"}.icon-crop:before{content:"\f125"}.icon-cube:before{content:"\f1b2"}.icon-cubes:before{content:"\f1b3"}.icon-dashboard:before{content:"\f3fd"}.icon-database:before{content:"\f1c0"}.icon-default:before{content:"\f015"}.icon-delete:before{content:"\f00d"}.icon-desktop:before{content:"\f108"}.icon-downarrow:before{content:"\f078"}.icon-download:before{content:"\f019"}.icon-drawer-2:before{content:"\f07b"}.icon-drawer:before{content:"\f07c"}.icon-edit:before{content:"\f044"}.icon-ellipsis-h:before{content:"\f141"}.icon-ellipsis-v:before{content:"\f142"}.icon-enter:before{content:"\f2f6"}.icon-envelope-open-text:before{content:"\f658"}.icon-envelope-opened:before,.icon-envelope:before{content:"\f0e0"}.icon-equalizer:before{content:"\f1de"}.icon-error:before{content:"\f12a"}.icon-exclamation-circle:before{content:"\f06a"}.icon-exclamation-triangle:before{content:"\f071"}.icon-exclamation:before{content:"\f12a"}.icon-exit:before{content:"\f2f5"}.icon-expand-2:before{content:"\f31e"}.icon-expand:before{content:"\f065"}.icon-expired:before{content:"\f056"}.icon-external-link-alt:before{content:"\f35d"}.icon-eye-2:before,.icon-eye-blocked:before,.icon-eye-close:before{content:"\f070"}.icon-eye-open:before{content:"\f06e"}.icon-eye-slash:before{content:"\f070"}.icon-eye:before{content:"\f06e"}.icon-fax:before{content:"\f1ac"}.icon-featured:before{content:"\f005"}.icon-feed:before{content:"\f143"}.icon-file-2:before{content:"\f15b"}.icon-file-add:before{content:"\f067"}.icon-file-alt:before{content:"\f15c"}.icon-file-check:before{content:"\f00c"}.icon-file-minus:before{content:"\f068"}.icon-file-plus:before{content:"\f067"}.icon-file-remove:before{content:"\f00d"}.icon-file:before{content:"\f15b"}.icon-filter:before{content:"\f0b0"}.icon-first:before{content:"\f049"}.icon-flag-2:before{content:"\f0c6"}.icon-flag-3:before,.icon-flag:before{content:"\f024"}.icon-flash:before{content:"\f0e7"}.icon-folder-2:before{content:"\f07b"}.icon-folder-3:before{content:"\f07c"}.icon-folder-close:before,.icon-folder-minus:before{content:"\f07b"}.icon-folder-open:before{content:"\f07c"}.icon-folder-plus-2:before{content:"\f07b"}.icon-folder-plus:before{content:"\f07c"}.icon-folder-remove:before,.icon-folder:before{content:"\f07b"}.icon-forward-2:before{content:"\f35a"}.icon-forward-circle:before{content:"\f138"}.icon-forward:before{content:"\f04e"}.icon-generic:before{content:"\f192"}.icon-globe:before{content:"\f0ac"}.icon-grid-2:before,.icon-grid-view-2:before{content:"\f00a"}.icon-grid-view:before,.icon-grid:before{content:"\f009"}.icon-handshake:before{content:"\f2b5"}.icon-health:before{content:"\f0fa"}.icon-heart-2:before,.icon-heart:before{content:"\f004"}.icon-help:before{content:"\f128"}.icon-hits:before{content:"\f06e"}.icon-home-2:before,.icon-home:before{content:"\f015"}.icon-image:before,.icon-images:before{content:"\f03e"}.icon-info-2:before,.icon-info-circle:before{content:"\f05a"}.icon-info:before{content:"\f129"}.icon-key:before{content:"\f084"}.icon-lamp:before{content:"\f0eb"}.icon-language:before{content:"\f1ab"}.icon-last:before{content:"\f050"}.icon-leftarrow:before{content:"\f053"}.icon-lightbulb:before{content:"\f0eb"}.icon-lightning:before{content:"\f0e7"}.icon-link:before{content:"\f0c1"}.icon-list-2:before{content:"\f0ca"}.icon-list-view:before,.icon-list:before{content:"\f03a"}.icon-loading:before{content:"\f110"}.icon-location:before{content:"\f3c5"}.icon-lock:before,.icon-locked:before{content:"\f023"}.icon-loop:before{content:"\f021"}.icon-mail-2:before,.icon-mail:before{content:"\f0e0"}.icon-map-signs:before{content:"\f277"}.icon-menu-2:before{content:"\f0dc"}.icon-menu-3:before{content:"\f0cb"}.icon-menu:before{content:"\f0c9"}.icon-minus-2:before{content:"\f068"}.icon-minus-circle:before{content:"\f056"}.icon-minus-sign:before,.icon-minus:before{content:"\f068"}.icon-mobile:before{content:"\f10b"}.icon-move:before{content:"\f0b2"}.icon-music:before{content:"\f001"}.icon-new-tab-2:before{content:"\f360"}.icon-new-tab:before{content:"\f35d"}.icon-new:before{content:"\f067"}.icon-next:before{content:"\f105"}.icon-not-ok:before{content:"\f068"}.icon-notification-2:before,.icon-notification-circle:before{content:"\f06a"}.icon-notification:before{content:"\f12a"}.icon-ok:before{content:"\f00c"}.icon-open:before{content:"\f3c1"}.icon-options:before{content:"\f013"}.icon-out-2:before{content:"\f35d"}.icon-out-3:before{content:"\f360"}.icon-out:before{content:"\f064"}.icon-paint-brush:before,.icon-palette:before{content:"\f1fc"}.icon-paperclip:before{content:"\f0c6"}.icon-paragraph-center:before{content:"\f037"}.icon-paragraph-justify:before{content:"\f039"}.icon-paragraph-left:before{content:"\f036"}.icon-paragraph-right:before{content:"\f038"}.icon-pause-circle:before{content:"\f28b"}.icon-pause:before{content:"\f04c"}.icon-pen-square:before{content:"\f14b"}.icon-pencil-2:before,.icon-pencil-alt:before{content:"\f303"}.icon-pencil:before{content:"\f044"}.icon-pending:before{content:"\f071"}.icon-phone-2:before{content:"\f095"}.icon-phone:before{content:"\f098"}.icon-picture:before,.icon-pictures:before{content:"\f03e"}.icon-pie:before{content:"\f200"}.icon-pin:before{content:"\f08d"}.icon-play-2:before{content:"\f04b"}.icon-play-circle:before{content:"\f144"}.icon-play:before{content:"\f04b"}.icon-plug:before{content:"\f1e6"}.icon-plus-2:before{content:"\f067"}.icon-plus-circle:before{content:"\f055"}.icon-plus-square:before{content:"\f0fe"}.icon-plus:before{content:"\f067"}.icon-power-cord:before{content:"\f1e6"}.icon-power-off:before{content:"\f011"}.icon-previous:before{content:"\f04a"}.icon-print:before,.icon-printer:before{content:"\f02f"}.icon-project-diagram:before{content:"\f542"}.icon-protected:before{content:"\f023"}.icon-publish:before{content:"\f00c"}.icon-purge:before{content:"\f1f8"}.icon-pushpin:before{content:"\f08d"}.icon-puzzle-piece:before,.icon-puzzle:before{content:"\f12e"}.icon-question-2:before,.icon-question-circle:before{content:"\f059"}.icon-question-sign:before,.icon-question:before{content:"\f128"}.icon-quote-2:before{content:"\f10e"}.icon-quote-3:before{content:"\f075"}.icon-quote:before,.icon-quotes-left:before{content:"\f10d"}.icon-quotes-right:before{content:"\f10e"}.icon-radio-checked:before{content:"\f058"}.icon-radio-unchecked:before{content:"\f111"}.icon-redo-2:before{content:"\f021"}.icon-redo:before{content:"\f064"}.icon-refresh:before{content:"\f021"}.icon-register:before{content:"\f35a"}.icon-remove:before{content:"\f00d"}.icon-reply:before{content:"\f359"}.icon-rightarrow:before{content:"\f054"}.icon-rss:before{content:"\f09e"}.icon-save-copy:before{content:"\f0c5"}.icon-save-new:before{content:"\f067"}.icon-save:before{content:"\f0c7"}.icon-scissors:before{content:"\f0c4"}.icon-screen:before{content:"\f108"}.icon-screwdriver:before{content:"\f0ad"}.icon-search-minus:before{content:"\f010"}.icon-search-plus:before{content:"\f00e"}.icon-search:before{content:"\f002"}.icon-select-file:before{content:"\f0c5"}.icon-share-alt:before,.icon-share:before{content:"\f064"}.icon-shield-alt:before,.icon-shield:before{content:"\f3ed"}.icon-shuffle:before{content:"\f074"}.icon-signup:before{content:"\f2f6"}.icon-sliders-h:before{content:"\f1de"}.icon-smiley-2:before,.icon-smiley-happy-2:before,.icon-smiley-happy:before,.icon-smiley-neutral-2:before,.icon-smiley-neutral:before{content:"\f118"}.icon-smiley-sad-2:before,.icon-smiley-sad:before{content:"\f119"}.icon-smiley:before{content:"\f118"}.icon-sort:before{content:"\f0dc"}.icon-spinner:before{content:"\f110"}.icon-square:before{content:"\f0c8"}.icon-stack:before{content:"\f0c5"}.icon-star-2:before{content:"\f089"}.icon-star-empty:before,.icon-star:before{content:"\f005"}.icon-stop-circle:before{content:"\f28d"}.icon-stop:before{content:"\f04d"}.icon-success:before{content:"\f14a"}.icon-support:before{content:"\f1cd"}.icon-switch:before{content:"\f011"}.icon-sync:before{content:"\f021"}.icon-tablet:before{content:"\f10a"}.icon-tachometer-alt:before{content:"\f3fd"}.icon-tag-2:before,.icon-tag:before{content:"\f02b"}.icon-tags-2:before,.icon-tags:before{content:"\f02c"}.icon-tasks:before{content:"\f0ae"}.icon-text-width:before{content:"\f035"}.icon-th:before{content:"\f00a"}.icon-th-large:before{content:"\f009"}.icon-thumbs-down:before{content:"\f165"}.icon-thumbs-up:before{content:"\f164"}.icon-times:before{content:"\f00d"}.icon-toggle-off:before{content:"\f204"}.icon-toggle-on:before{content:"\f205"}.icon-tools:before{content:"\f0ad"}.icon-trash:before{content:"\f1f8"}.icon-tree-2:before{content:"\f0e8"}.icon-tree:before{content:"\f126"}.icon-trophy:before{content:"\f091"}.icon-unarchive:before{content:"\f07c"}.icon-unblock:before{content:"\f021"}.icon-undo-2:before,.icon-undo:before{content:"\f0e2"}.icon-unfeatured:before{content:"\f111"}.icon-universal-access:before,.icon-universal:before{content:"\f29a"}.icon-unlock-alt:before{content:"\f13e"}.icon-unlock:before{content:"\f09c"}.icon-unpublish:before{content:"\f00d"}.icon-uparrow:before{content:"\f077"}.icon-upload:before{content:"\f093"}.icon-user-circle:before{content:"\f2bd"}.icon-user-edit:before{content:"\f4ff"}.icon-user-lock:before{content:"\f502"}.icon-user-tag:before{content:"\f507"}.icon-user:before{content:"\f007"}.icon-users-cog:before{content:"\f509"}.icon-users:before{content:"\f0c0"}.icon-vcard:before{content:"\f2bb"}.icon-video-2:before{content:"\f04b"}.icon-video:before{content:"\f03d"}.icon-wand:before{content:"\f0d0"}.icon-warning-2:before{content:"\f071"}.icon-warning-circle:before{content:"\f06a"}.icon-warning:before{content:"\f071"}.icon-wifi:before{content:"\f1eb"}.icon-wrench:before{content:"\f0ad"}.icon-zoom-in:before{content:"\f00e"}.icon-zoom-out:before{content:"\f010"} \ No newline at end of file diff --git a/templates/shaper_helix3/css/template.css b/templates/shaper_helix3/css/template.css index 45539c6..3b9892c 100755 --- a/templates/shaper_helix3/css/template.css +++ b/templates/shaper_helix3/css/template.css @@ -142,7 +142,7 @@ textarea.form-control { .sp-megamenu-parent .sp-dropdown li.sp-menu-item span { display: block; padding: 10px; - color: #141414; + color: #333333; cursor: pointer; } .sp-megamenu-parent .sp-dropdown li.sp-menu-item > a.sp-group-title, @@ -1859,7 +1859,7 @@ article.item { } .helix-social-share .helix-social-share-icon ul li div a:hover, .helix-social-share .helix-social-share-icon ul li div a:focus { - background: #1061cc; + background: #3d449a; color: #fff; } .view-article nav.pagenavigation > ul { @@ -2696,7 +2696,7 @@ table.category tbody > tr td { display: none; } .badge.badge-info { - background-color: #1061cc; + background-color: #3d449a; } .btn:not([class*="btn-"]) { color: #fff; diff --git a/templates/shaper_helix3/error.php b/templates/shaper_helix3/error.php index ef63204..d7c834d 100755 --- a/templates/shaper_helix3/error.php +++ b/templates/shaper_helix3/error.php @@ -9,12 +9,17 @@ //no direct accees defined ('_JEXEC') or die ('resticted aceess'); -$doc = JFactory::getDocument(); -$params = JFactory::getApplication()->getTemplate('true')->params; +use Joomla\CMS\Document\Renderer\Html\HeadRenderer; +use Joomla\CMS\Factory; +use Joomla\CMS\Uri\Uri; +use Joomla\CMS\Language\Text; + +$doc = Factory::getDocument(); +$params = Factory::getApplication()->getTemplate('true')->params; //Error Logo if ($logo_image = $params->get('error_logo')) { - $logo = JURI::root() . '/' . $logo_image; + $logo = Uri::root() . '/' . $logo_image; $path = JPATH_ROOT . '/' . $logo_image; } else { $logo = $this->baseurl . '/templates/' . $this->template . '/images/presets/preset1/logo.png'; @@ -23,7 +28,7 @@ //Favicon if($favicon = $params->get('favicon')) { - $doc->addFavicon( JURI::base(true) . '/' . $favicon); + $doc->addFavicon( Uri::base(true) . '/' . $favicon); } else { $doc->addFavicon( $this->baseurl . '/templates/' . $this->template . '/images/favicon.ico' ); } @@ -46,14 +51,14 @@ require_once($head); } } -$header_renderer = new JDocumentRendererHead($doc); +$header_renderer = new HeadRenderer($doc); $header_contents = $header_renderer->render(null); //background image $error_bg = ''; $hascs_bg = ''; if ($err_bg = $params->get('error_bg')) { - $error_bg = JURI::root() . $err_bg; + $error_bg = Uri::root() . $err_bg; $hascs_bg = 'has-background'; } @@ -89,7 +94,7 @@ setError($this->_error->getPrevious()); ?> -

    +

    _error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>

    renderBacktrace(); ?> setError($this->_error->getPrevious()); ?> @@ -100,7 +105,7 @@
    - + getBuffer('modules', '404', array('style' => 'sp_xhtml')); ?>
    diff --git a/templates/shaper_helix3/features/logo.php b/templates/shaper_helix3/features/logo.php index 98d0bc4..a7fd232 100755 --- a/templates/shaper_helix3/features/logo.php +++ b/templates/shaper_helix3/features/logo.php @@ -8,6 +8,10 @@ //no direct accees defined ('_JEXEC') or die('resticted aceess'); +use Joomla\CMS\Factory; +use Joomla\CMS\Image\Image; +use Joomla\CMS\Uri\Uri; + class Helix3FeatureLogo { private $helix3; @@ -24,8 +28,6 @@ public function renderFeature() //Retina Image if( $this->helix3->getParam('logo_type') == 'image' ) { - jimport('joomla.image.image'); - if( $this->helix3->getParam('logo_image') ) { $path = JPATH_ROOT . '/' . $this->helix3->getParam('logo_image'); } else { @@ -33,7 +35,7 @@ public function renderFeature() } if(file_exists($path)) { - $image = new JImage( $path ); + $image = new Image( $path ); $width = $image->getWidth(); $height = $image->getHeight(); } else { @@ -45,7 +47,7 @@ public function renderFeature() $html = ''; $custom_logo_class = ''; - $sitename = JFactory::getApplication()->get('sitename'); + $sitename = Factory::getApplication()->get('sitename'); if( $this->helix3->getParam('mobile_logo') ) { $custom_logo_class = ' d-none d-lg-block'; @@ -54,7 +56,7 @@ public function renderFeature() if( $this->helix3->getParam('logo_type') == 'image' ) { if( $this->helix3->getParam('logo_image') ) { $html .= ''; } else { $html .= ' - + - tab_name, 'language', JText::_('JFIELD_LANGUAGE_LABEL')); ?> + tab_name, 'language', Text::_('JFIELD_LANGUAGE_LABEL')); ?> form->renderField('language'); ?> - + - tab_name, 'language', JText::_('JFIELD_LANGUAGE_LABEL')); ?> + tab_name, 'language', Text::_('JFIELD_LANGUAGE_LABEL')); ?> form->renderField('language'); ?> - + form->renderField('language'); ?> get('show_publishing_options', 1) == 1) : ?> - tab_name, 'metadata', JText::_('COM_CONTENT_METADATA')); ?> + tab_name, 'metadata', Text::_('COM_CONTENT_METADATA')); ?> form->renderField('metadesc'); ?> form->renderField('metakey'); ?> - + - + @@ -165,15 +192,15 @@ - +
    get('save_history', 0) && $this->item->id) : ?>
    diff --git a/templates/shaper_helix3/html/com_finder/search/default.php b/templates/shaper_helix3/html/com_finder/search/default.php index 03a6b2c..345fc04 100644 --- a/templates/shaper_helix3/html/com_finder/search/default.php +++ b/templates/shaper_helix3/html/com_finder/search/default.php @@ -8,17 +8,20 @@ defined ('_JEXEC') or die(); +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Language\Text; + if(JVERSION < 4) { - JHtml::_('behavior.core'); - JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html'); + HTMLHelper::_('behavior.core'); + HTMLHelper::addIncludePath(JPATH_COMPONENT . '/helpers/html'); - JHtml::_('stylesheet', 'com_finder/finder.css', array('version' => 'auto', 'relative' => true)); - JHtml::_('stylesheet', 'vendor/awesomplete/awesomplete.css', array('version' => 'auto', 'relative' => true)); + HTMLHelper::_('stylesheet', 'com_finder/finder.css', array('version' => 'auto', 'relative' => true)); + HTMLHelper::_('stylesheet', 'vendor/awesomplete/awesomplete.css', array('version' => 'auto', 'relative' => true)); - JText::script('MOD_FINDER_SEARCH_VALUE', true); + Text::script('MOD_FINDER_SEARCH_VALUE', true); - JHtml::_('script', 'com_finder/finder.js', array('version' => 'auto', 'relative' => true)); + HTMLHelper::_('script', 'com_finder/finder.js', array('version' => 'auto', 'relative' => true)); } else { diff --git a/templates/shaper_helix3/html/com_finder/search/default_form.php b/templates/shaper_helix3/html/com_finder/search/default_form.php index fedb0e1..0bb8b95 100644 --- a/templates/shaper_helix3/html/com_finder/search/default_form.php +++ b/templates/shaper_helix3/html/com_finder/search/default_form.php @@ -8,11 +8,16 @@ defined ('_JEXEC') or die(); +use Joomla\CMS\Factory; +use Joomla\CMS\Router\Route; +use Joomla\CMS\Language\Text; +use Joomla\CMS\HTML\HTMLHelper; + if (JVERSION < 4) { if ($this->params->get('show_advanced', 1) || $this->params->get('show_autosuggest', 1)) { - JHtml::_('jquery.framework'); + HTMLHelper::_('jquery.framework'); $script = " jQuery(function() {"; @@ -41,11 +46,11 @@ */ if ($this->params->get('show_autosuggest', 1)) { - JHtml::_('script', 'jui/jquery.autocomplete.min.js', array('version' => 'auto', 'relative' => true)); + HTMLHelper::_('script', 'jui/jquery.autocomplete.min.js', array('version' => 'auto', 'relative' => true)); $script .= " var suggest = jQuery('#q').autocomplete({ - serviceUrl: '" . JRoute::_('index.php?option=com_finder&task=suggestions.suggest&format=json&tmpl=component') . "', + serviceUrl: '" . Route::_('index.php?option=com_finder&task=suggestions.suggest&format=json&tmpl=component') . "', paramName: 'q', minChars: 1, maxHeight: 400, @@ -58,20 +63,42 @@ $script .= " });"; - JFactory::getDocument()->addScriptDeclaration($script); + Factory::getDocument()->addScriptDeclaration($script); } } else { + HTMLHelper::_('jquery.framework'); + + $script = " + jQuery(function() {"; + + $script .= " + jQuery('.ads').on('click', function(e){ + if(jQuery('#advancedSearch').hasClass('hide')) { + jQuery('#advancedSearch').removeClass('hide'); + jQuery('#advancedSearch').slideDown(300); + + } else { + jQuery('#advancedSearch').addClass('hide'); + jQuery('#advancedSearch').slideUp(300); + } + });"; + + $script .= " + });"; + + Factory::getDocument()->addScriptDeclaration($script); + if ($this->params->get('show_autosuggest', 1)) { $this->document->getWebAssetManager()->usePreset('awesomplete'); - $this->document->addScriptOptions('finder-search', array('url' => JRoute::_('index.php?option=com_finder&task=suggestions.suggest&format=json&tmpl=component'))); + $this->document->addScriptOptions('finder-search', array('url' => Route::_('index.php?option=com_finder&task=suggestions.suggest&format=json&tmpl=component'))); } } ?> - + getFields(); ?> @@ -80,52 +107,63 @@
    escape($this->query->input) != '' || $this->params->get('allow_empty_query')) : ?> params->get('show_advanced', 1)) : ?> - + + + + + + + +
    params->get('show_advanced', 1)) : ?> +
    + +
    + params->get('show_advanced_tips', 1)) : ?>
    - + - - - - + + + + params->get('tuplecount', 1) > 1) : ?> - + - +
    - query, $this->params); ?> + query, $this->params); ?>
    diff --git a/templates/shaper_helix3/html/com_finder/search/default_result.php b/templates/shaper_helix3/html/com_finder/search/default_result.php index 6c410da..a2e5735 100644 --- a/templates/shaper_helix3/html/com_finder/search/default_result.php +++ b/templates/shaper_helix3/html/com_finder/search/default_result.php @@ -8,7 +8,10 @@ defined ('_JEXEC') or die(); +use Joomla\CMS\HTML\HTMLHelper; use Joomla\String\StringHelper; +use Joomla\CMS\Plugin\PluginHelper; +use Joomla\CMS\Router\Route; // Get the mime type class. $mime = !empty($this->result->mime) ? 'mime-' . $this->result->mime : null; @@ -32,7 +35,7 @@ $space = StringHelper::strpos($this->result->description, ' ', $start > 0 ? $start - 1 : 0); $start = ($space && $space < $pos) ? $space + 1 : $start; - $description = JHtml::_('string.truncate', StringHelper::substr($this->result->description, $start), $desc_length, true); + $description = HTMLHelper::_('string.truncate', StringHelper::substr($this->result->description, $start), $desc_length, true); } $route = $this->result->route; @@ -41,7 +44,7 @@ if (!empty($this->query->highlight) && empty($this->result->mime) && $this->params->get('highlight_terms', 1) - && JPluginHelper::isEnabled('system', 'highlight')) + && PluginHelper::isEnabled('system', 'highlight')) { $route .= '&highlight=' . base64_encode(json_encode($this->query->highlight)); } @@ -49,7 +52,7 @@ ?>
  • - + result->title; ?>

    @@ -60,7 +63,7 @@ params->get('show_url', 1)) : ?>
    - baseUrl . JRoute::_($this->result->route); ?> + baseUrl . Route::_($this->result->route); ?>
  • diff --git a/templates/shaper_helix3/html/com_finder/search/default_results.php b/templates/shaper_helix3/html/com_finder/search/default_results.php index 4b552fb..7cd4028 100644 --- a/templates/shaper_helix3/html/com_finder/search/default_results.php +++ b/templates/shaper_helix3/html/com_finder/search/default_results.php @@ -8,19 +8,25 @@ defined ('_JEXEC') or die(); +use Joomla\CMS\Factory; +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Language\Text; +use Joomla\CMS\Router\Route; +use Joomla\CMS\Uri\Uri; + ?> suggested && $this->params->get('show_suggested_query', 1)) || ($this->explained && $this->params->get('show_explained_query', 1))) : ?> -
    +
    suggested && $this->params->get('show_suggested_query', 1)) : ?> - query->toUri()); ?> + query->toUri()); ?> setVar('q', $this->suggested); ?> - toString(array('path', 'query'))); ?> + toString(array('path', 'query'))); ?> ' . $this->escape($this->suggested) . ''; ?> - + explained && $this->params->get('show_explained_query', 1)) : ?> explained; ?> @@ -30,21 +36,37 @@ total === 0) || ($this->total === null)) : ?>
    -

    - getLanguageFilter() ? '_MULTILANG' : ''; ?> -

    escape($this->query->input)); ?>

    +

    + getLanguageFilter() ? '_MULTILANG' : ''; ?> +

    escape($this->query->input)); ?>

    query->highlight) && $this->params->get('highlight_terms', 1)) : ?> - query->highlight); ?> + query->highlight); + } + else + { + $this->document->getWebAssetManager()->useScript('highlight'); + $this->document->addScriptOptions( + 'highlight', + [[ + 'class' => 'js-highlight', + 'highLight' => $this->query->highlight, + ]] + ); + } + ?>
    -
      - baseUrl = JUri::getInstance()->toString(array('scheme', 'host', 'port')); ?> +
        + baseUrl = Uri::getInstance()->toString(array('scheme', 'host', 'port')); ?> results as $result) : ?> result = &$result; ?> getLayoutFile($this->result->layout); ?> @@ -69,7 +91,7 @@ pagination->total; ?> pagination->limit * $this->pagination->pagesCurrent; ?> $total ? $total : $limit); ?> - +
    diff --git a/templates/shaper_helix3/html/com_mailto/mailto/default.php b/templates/shaper_helix3/html/com_mailto/mailto/default.php index 6b06c5b..4652de5 100755 --- a/templates/shaper_helix3/html/com_mailto/mailto/default.php +++ b/templates/shaper_helix3/html/com_mailto/mailto/default.php @@ -8,12 +8,20 @@ */ defined('_JEXEC') or die; -JHtml::_('behavior.core'); -JHtml::_('behavior.keepalive'); + +use Joomla\CMS\Factory; +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Language\Text; +use Joomla\CMS\Router\Router; +use Joomla\CMS\Uri\Uri; + + +HTMLHelper::_('behavior.core'); +HTMLHelper::_('behavior.keepalive'); $data = $this->get('data'); -JFactory::getDocument()->addScriptDeclaration(" +Factory::getDocument()->addScriptDeclaration(" Joomla.submitbutton = function(pressbutton) { var form = document.getElementById('mailtoForm'); @@ -21,7 +29,7 @@ // do field validation if (form.mailto.value == '' || form.from.value == '') { - alert('" . JText::_('COM_MAILTO_EMAIL_ERR_NOINFO') . "'); + alert('" . Text::_('COM_MAILTO_EMAIL_ERR_NOINFO') . "'); return false; } form.submit(); @@ -32,11 +40,11 @@

    - +

    - +
    form->getFieldset('') as $field) : ?> hidden) : ?> @@ -45,10 +53,10 @@
    @@ -57,37 +65,37 @@ - + -
    +
    - +
    - +
    - +
    - +
    @@ -96,7 +104,7 @@ - +
    \ No newline at end of file diff --git a/templates/shaper_helix3/html/com_search/search/default_form.php b/templates/shaper_helix3/html/com_search/search/default_form.php index 61396b9..940f077 100644 --- a/templates/shaper_helix3/html/com_search/search/default_form.php +++ b/templates/shaper_helix3/html/com_search/search/default_form.php @@ -8,18 +8,23 @@ defined('_JEXEC') or die; -JHtml::_('bootstrap.tooltip'); +use Joomla\CMS\Factory; +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Language\Text; +use Joomla\CMS\Router\Route; -$lang = JFactory::getLanguage(); +HTMLHelper::_('bootstrap.tooltip'); + +$lang = Factory::getLanguage(); $upper_limit = $lang->getUpperLimitSearchWord(); ?> -
    +
    - -
    @@ -28,7 +33,7 @@
    searchword)) : ?>

    - ' . $this->total . ''); ?> + ' . $this->total . ''); ?>

    @@ -39,7 +44,7 @@ params->get('search_phrases', 1)) : ?>
    - + lists['searchphrase']; ?>
    @@ -48,13 +53,13 @@ params->get('search_areas', 1)) : ?>
    - +
    searchareas['search'] as $val => $txt) : ?> searchareas['active']) && in_array($val, $this->searchareas['active']) ? 'checked="checked"' : ''; ?>
    diff --git a/templates/shaper_helix3/html/com_users/login/default_login.php b/templates/shaper_helix3/html/com_users/login/default_login.php index 8478d2d..aff7359 100644 --- a/templates/shaper_helix3/html/com_users/login/default_login.php +++ b/templates/shaper_helix3/html/com_users/login/default_login.php @@ -9,7 +9,13 @@ defined('_JEXEC') or die; -JHtml::_('behavior.keepalive'); +use Joomla\CMS\Router\Route; +use Joomla\CMS\Language\Text; +use Joomla\CMS\HTML\HTMLHelper; +use Joomla\CMS\Plugin\PluginHelper; +use Joomla\CMS\Component\ComponentHelper; + +HTMLHelper::_('behavior.keepalive'); ?>
    @@ -21,7 +27,7 @@ - params->get('logindescription_show') == 1 && str_replace(' ', '', $this->params->get('login_description')) != '') || $this->params->get('login_image') != '') : ?> + params->get('logindescription_show') == 1 && str_replace(' ', '', !empty($this->params->get('login_description')) ? $this->params->get('login_description') : '') != '') || $this->params->get('login_image') != '') : ?> - + form->setFieldAttribute( 'username', 'hint', JText::_('COM_USERS_LOGIN_USERNAME_LABEL') ); - $this->form->setFieldAttribute( 'password', 'hint', JText::_('JGLOBAL_PASSWORD') ); - $this->form->setFieldAttribute( 'secretkey', 'hint', JText::_('JGLOBAL_SECRETKEY') ); + $this->form->setFieldAttribute( 'username', 'hint', Text::_('COM_USERS_LOGIN_USERNAME_LABEL') ); + $this->form->setFieldAttribute( 'password', 'hint', Text::_('JGLOBAL_PASSWORD') ); + $this->form->setFieldAttribute( 'secretkey', 'hint', Text::_('JGLOBAL_SECRETKEY') ); ?> form->getFieldset('credentials') as $field) : ?> @@ -59,41 +65,41 @@
    - +
    - +
    form->getValue('return', '', $this->params->get('login_redirect_url', $this->params->get('login_redirect_menuitem'))); ?> - - + +