SEO SQUIRRLY™ - Version 12.1.01

Version Description

Download this release

Release Info

Developer cifi
Plugin Icon 128x128 SEO SQUIRRLY™
Version 12.1.01
Comparing to
See all releases

Code changes from version 12.1.00 to 12.1.01

classes/helpers/DevKit.php CHANGED
@@ -154,7 +154,7 @@ class SQ_Classes_Helpers_DevKit
154
 
155
  //Dev Kit images
156
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo')) {
157
- echo '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo') . '") !important;}#sq_blocksnippet .postbox-header h2:before,li.toplevel_page_sq_dashboard .wp-menu-image:before{background-image:url("' . SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo') . '") !important;}.components-squirrly-icon img{content:url("' . SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo') . '") !important;}.menu-top.toplevel_page_sq_dashboard .wp-menu-image:before {content: " ";width: 24px !important;height: 24px !important;display: inline-block;vertical-align: middle !important;line-height: inherit;background-repeat: no-repeat;background-position: center;background-size: 100%;}li.toplevel_page_sq_dashboard .wp-menu-image img{display: none !important;}</style>';
158
  }
159
  }
160
 
@@ -262,34 +262,35 @@ class SQ_Classes_Helpers_DevKit
262
  *
263
  * @return bool
264
  */
265
- public function updatePluginData()
266
  {
267
 
268
- $wp_filesystem = SQ_Classes_Helpers_Tools::initFilesystem();
 
269
 
270
- $package_file = _SQ_ROOT_DIR_ . 'package.json';
271
- if (!$wp_filesystem->exists($package_file)) {
272
- return false;
273
- }
274
-
275
- /* load configuration blocks data from core config files */
276
- $config = json_decode($wp_filesystem->get_contents($package_file), 1);
277
- if (isset($config['package'])) {
278
- self::$package = $config['package'];
279
 
280
- if (isset(self::$package['settings']) && !empty(SQ_Classes_Helpers_Tools::$options) && function_exists('array_replace_recursive')) {
281
- SQ_Classes_Helpers_Tools::$options = array_replace_recursive((array)SQ_Classes_Helpers_Tools::$options, (array)self::$package['settings']);
 
 
282
 
283
- SQ_Classes_Helpers_Tools::saveOptions();
 
 
 
 
284
 
 
 
285
  }
286
- }
287
 
288
-
289
- //remove the package after activation
290
- @unlink($package_file);
291
-
292
- return true;
293
  }
294
 
295
  /**
154
 
155
  //Dev Kit images
156
  if (SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo')) {
157
+ echo '<style>.sq_logo{background-image:url("' . SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo') . '") !important;}#sq_blocksnippet .postbox-header h2:before,li.toplevel_page_sq_dashboard .wp-menu-image:before{background-image:url("' . SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo') . '") !important;}.components-squirrly-icon img{content:url("' . SQ_Classes_Helpers_DevKit::getOption('sq_devkit_logo') . '") !important;}.menu-top.toplevel_page_sq_dashboard .wp-menu-image:before {content: " ";width: 20px !important;height: 20px !important;display: inline-block;vertical-align: middle !important;line-height: inherit;background-repeat: no-repeat;background-position: center;background-size: 100%;}li.toplevel_page_sq_dashboard .wp-menu-image img{display: none !important;}</style>';
158
  }
159
  }
160
 
262
  *
263
  * @return bool
264
  */
265
+ public function checkPluginData()
266
  {
267
 
268
+ try{
269
+ $wp_filesystem = SQ_Classes_Helpers_Tools::initFilesystem();
270
 
271
+ $package_file = _SQ_ROOT_DIR_ . 'package.json';
272
+ if (!$wp_filesystem->exists($package_file)) {
273
+ return false;
274
+ }
 
 
 
 
 
275
 
276
+ /* load configuration blocks data from core config files */
277
+ $config = json_decode($wp_filesystem->get_contents($package_file), 1);
278
+ if (isset($config['package'])) {
279
+ self::$package = $config['package'];
280
 
281
+ if (isset(self::$package['settings']) && !empty(SQ_Classes_Helpers_Tools::$options) && function_exists('array_replace_recursive')) {
282
+ SQ_Classes_Helpers_Tools::getOptions();
283
+ SQ_Classes_Helpers_Tools::$options = array_replace_recursive((array)SQ_Classes_Helpers_Tools::$options, (array)self::$package['settings']);
284
+ SQ_Classes_Helpers_Tools::saveOptions();
285
+ }
286
 
287
+ //remove the package after activation
288
+ @unlink($package_file);
289
  }
 
290
 
291
+ } catch (Exception $e) {
292
+ SQ_Classes_Error::setMessage(sprintf(esc_html__("An error occurred during DevKit. If this error persists, please contact us at: %s", 'squirrly-seo'), _SQ_SUPPORT_URL_));
293
+ }
 
 
294
  }
295
 
296
  /**
classes/helpers/Tools.php CHANGED
@@ -1204,7 +1204,7 @@ class SQ_Classes_Helpers_Tools
1204
 
1205
  //This option is use for custom Package installs
1206
  //update text in case of devkit
1207
- SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_DevKit')->updatePluginData();
1208
 
1209
  }
1210
 
1204
 
1205
  //This option is use for custom Package installs
1206
  //update text in case of devkit
1207
+ SQ_Classes_ObjController::getClass('SQ_Classes_Helpers_DevKit')->checkPluginData();
1208
 
1209
  }
1210
 
controllers/Menu.php CHANGED
@@ -92,6 +92,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController
92
  SQ_Classes_ObjController::getClass('SQ_Core_BlockConnect')->connectToCloud();
93
  }
94
 
 
95
  } catch (Exception $e) {
96
  SQ_Classes_Error::setMessage(sprintf(esc_html__("An error occurred during activation. If this error persists, please contact us at: %s", 'squirrly-seo'), _SQ_SUPPORT_URL_));
97
  }
@@ -421,7 +422,7 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController
421
  //Load the SLA in Post
422
  $this->model->addMeta(
423
  array('post' . _SQ_NAME_,
424
- ucfirst(_SQ_NAME_),
425
  array(SQ_Classes_ObjController::getClass('SQ_Controllers_Post'), 'init'),
426
  $type,
427
  'side',
92
  SQ_Classes_ObjController::getClass('SQ_Core_BlockConnect')->connectToCloud();
93
  }
94
 
95
+
96
  } catch (Exception $e) {
97
  SQ_Classes_Error::setMessage(sprintf(esc_html__("An error occurred during activation. If this error persists, please contact us at: %s", 'squirrly-seo'), _SQ_SUPPORT_URL_));
98
  }
422
  //Load the SLA in Post
423
  $this->model->addMeta(
424
  array('post' . _SQ_NAME_,
425
+ esc_html__('Squirrly Live Assistant', 'squirrly-seo'),
426
  array(SQ_Classes_ObjController::getClass('SQ_Controllers_Post'), 'init'),
427
  $type,
428
  'side',
controllers/Post.php CHANGED
@@ -35,14 +35,15 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController
35
  add_filter('wp_insert_post_data', array($this, 'checkImage'), 13, 2);
36
  }
37
 
38
- //Remove the SLA highlight from post
39
- add_filter('wp_insert_post_data', array($this, 'removeHighlight'), 12, 2);
40
-
41
  //Hook the save post action
42
- add_action('save_post', array($this, 'hookSavePost'), 11, 2);
 
 
 
 
43
 
44
  //Hook the Move To Trash action
45
- add_action('wp_trash_post', array(SQ_Classes_ObjController::getClass('SQ_Models_PostsList'), 'hookUpdateStatus'));
46
 
47
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap')) {
48
  add_action('transition_post_status', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps'), 'refreshSitemap'), PHP_INT_MAX, 3);
@@ -85,34 +86,6 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController
85
  $this->saved = array();
86
  }
87
 
88
- /**
89
- * Remove the Squirrly Highlights in case there are some left
90
- *
91
- * @param array $post_data
92
- * @param array $postarr
93
- * @return array
94
- */
95
- public function removeHighlight($post_data, $postarr)
96
- {
97
-
98
- if (isset($post_data['post_type']) && $post_data['post_type'] <> '') {
99
- //Exclude types for SLA
100
- $excludes = SQ_Classes_Helpers_Tools::getOption('sq_sla_exclude_post_types');
101
- if (in_array($post_data['post_type'], $excludes)) {
102
- return $post_data;
103
- }
104
- }
105
-
106
- if (!isset($post_data['post_content']) || !isset($postarr['ID'])) {
107
- return $post_data;
108
- }
109
-
110
- if (strpos($post_data['post_content'], '<mark') !== false) {
111
- $post_data['post_content'] = preg_replace('/<mark[^>]*(data-markjs|mark_counter)[^>]*>([^<]*)<\/mark>/i', '$2', $post_data['post_content']);
112
- }
113
- return $post_data;
114
- }
115
-
116
  /**
117
  * Check if the image is a remote image and save it locally
118
  *
@@ -272,11 +245,12 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController
272
  * Hook after save post to make sure the data is saved
273
  *
274
  * @param $post_id
 
275
  */
276
- public function hookSavePost($post_id)
277
  {
278
 
279
- if ($post_id && $post = get_post($post_id)) {
280
  //If the post is a new or edited post
281
  if (wp_is_post_autosave($post->ID) == ''
282
  && get_post_status($post->ID) <> 'auto-draft'
@@ -292,11 +266,9 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController
292
  SQ_Classes_ObjController::getClass('SQ_Models_Snippet')->saveSEO($post->ID);
293
 
294
  //Exclude types for SLA
295
- if (isset($post->post_type) && $post->post_type <> '') {
296
- $excludes = SQ_Classes_Helpers_Tools::getOption('sq_sla_exclude_post_types');
297
- if (in_array($post->post_type, $excludes)) {
298
- return;
299
- }
300
  }
301
 
302
  //Send the optimization when attachment page
@@ -685,14 +657,17 @@ class SQ_Controllers_Post extends SQ_Classes_FrontController
685
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('logo');
686
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('post');
687
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fontawesome');
688
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_floating.min.js');
689
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/utils/mark.min.js');
690
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/utils/xregexp.min.js');
691
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_briefcase.min.js');
692
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_frontend.min.js');
693
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_blockseo.min.js');
694
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_blocksearch.min.js');
695
- SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/squirrly.min.js');
 
 
 
696
 
697
  }
698
 
35
  add_filter('wp_insert_post_data', array($this, 'checkImage'), 13, 2);
36
  }
37
 
 
 
 
38
  //Hook the save post action
39
+ if(SQ_Classes_Helpers_Tools::isPluginInstalled('jetpack/jetpack.php')){
40
+ add_action('save_post', array($this, 'hookSavePost'), 21, 2);
41
+ }else{
42
+ add_action('save_post', array($this, 'hookSavePost'), 10, 2);
43
+ }
44
 
45
  //Hook the Move To Trash action
46
+ add_action('wp_trash_post', array(SQ_Classes_ObjController::getClass('SQ_Models_PostsList'), 'hookUpdateStatus'), 10, 1);
47
 
48
  if (SQ_Classes_Helpers_Tools::getOption('sq_auto_sitemap')) {
49
  add_action('transition_post_status', array(SQ_Classes_ObjController::getClass('SQ_Controllers_Sitemaps'), 'refreshSitemap'), PHP_INT_MAX, 3);
86
  $this->saved = array();
87
  }
88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  /**
90
  * Check if the image is a remote image and save it locally
91
  *
245
  * Hook after save post to make sure the data is saved
246
  *
247
  * @param $post_id
248
+ * @param WP_Post $post Post object.
249
  */
250
+ public function hookSavePost($post_id, $post)
251
  {
252
 
253
+ if ($post_id && isset($post->ID) && isset($post->post_type) && $post->post_type <> '') {
254
  //If the post is a new or edited post
255
  if (wp_is_post_autosave($post->ID) == ''
256
  && get_post_status($post->ID) <> 'auto-draft'
266
  SQ_Classes_ObjController::getClass('SQ_Models_Snippet')->saveSEO($post->ID);
267
 
268
  //Exclude types for SLA
269
+ $excludes = SQ_Classes_Helpers_Tools::getOption('sq_sla_exclude_post_types');
270
+ if (in_array($post->post_type, $excludes)) {
271
+ return;
 
 
272
  }
273
 
274
  //Send the optimization when attachment page
657
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('logo');
658
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('post');
659
  SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('fontawesome');
660
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/utils/mark'.(SQ_DEBUG ? '' : '.min').'.js');
661
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/utils/xregexp'.(SQ_DEBUG ? '' : '.min').'.js');
662
+
663
+ if(SQ_Classes_Helpers_Tools::getOption('sq_sla_type') <> 'integrated') {
664
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_floating' . (SQ_DEBUG ? '' : '.min') . '.js');
665
+ }
666
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_briefcase'.(SQ_DEBUG ? '' : '.min').'.js');
667
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_frontend'.(SQ_DEBUG ? '' : '.min').'.js');
668
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_blockseo'.(SQ_DEBUG ? '' : '.min').'.js');
669
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/sq_blocksearch'.(SQ_DEBUG ? '' : '.min').'.js');
670
+ SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('assistant/squirrly'.(SQ_DEBUG ? '' : '.min').'.js');
671
 
672
  }
673
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://plugin.squirrly.co/squirrly-seo-pricing/
4
  Tags: SEO, SEO Plugin, XML sitemap, WooCommerce SEO, Search Engine, Open Graph, Video Sitemap, Google News Sitemap, Rich Snippets, Robotx.txt, SEO Automation, Local SEO, SEO Content analysis, SEO Content, SEO Optimization, WordPress SEO, Yoast, Yoast Compatible, Yoast Import, SEO Redirection, Redirection, SEO Sitemap, SEO Caching, Meta Title, Meta Description, Performance, SEO Audit, SEO Keyword Research, SEO Rank Math import, Google Search Console, Schema
5
  Requires at least: 4.3
6
  Tested up to: 6.0
7
- Stable tag: 12.1.00
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
 
@@ -669,13 +669,55 @@ Type a keyword to the right of the screen and start using Squirrly Seo. Enjoy!
669
  9. Squirrly SEO - Progress & Achievements
670
 
671
  == Changelog ==
 
 
 
 
 
672
  = 12.1.00- 05/16/2022 =
673
  Update - Compatibility with WordPress 6.0
674
- Update - New Squirrly SEO UI
675
- Update - New Live Assistant interface
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
676
  Fix - Don't show the Manual GSC Indexability in Next SEO Goals if the Focus Page is already indexed
677
  Fix - Important security update
678
- Fix - Dev Kit install on plugin activation
679
  Fix - getView error for the deprecated function
680
  Fix - Woocommerce compatibility & Rich Snippets
681
 
4
  Tags: SEO, SEO Plugin, XML sitemap, WooCommerce SEO, Search Engine, Open Graph, Video Sitemap, Google News Sitemap, Rich Snippets, Robotx.txt, SEO Automation, Local SEO, SEO Content analysis, SEO Content, SEO Optimization, WordPress SEO, Yoast, Yoast Compatible, Yoast Import, SEO Redirection, Redirection, SEO Sitemap, SEO Caching, Meta Title, Meta Description, Performance, SEO Audit, SEO Keyword Research, SEO Rank Math import, Google Search Console, Schema
5
  Requires at least: 4.3
6
  Tested up to: 6.0
7
+ Stable tag: 12.1.01
8
  Requires PHP: 7.0
9
  License: GPLv2 or later
10
 
669
  9. Squirrly SEO - Progress & Achievements
670
 
671
  == Changelog ==
672
+ = 12.1.01- 05/17/2022 =
673
+ Fix - Show Squirrly logo in Page Editor toolbar to open/close Squirrly Live Assistant
674
+ Fix - Dev Kit install on plugin activation
675
+ Fix - Small bugs
676
+
677
  = 12.1.00- 05/16/2022 =
678
  Update - Compatibility with WordPress 6.0
679
+ Update New Animated Tooltip that teaches users how to use Red and Green elements inside the Focus Pages and the Bulk SEO sections of Squirrly
680
+ Update Optimized for mobile
681
+ Update – DEMO Post has been removed. This was meant to help users learn how to use the SEO Live Assistant, but we chose to remove the demo post due to users publishing it by mistake.
682
+ Update – New One Page Setup experience that helps users get pages, keywords and data inside many important sections of Squirrly SEO, so that everything becomes easier for the user.
683
+ Update – New field completion sequences, to make sure that at the end of One Page Setup, a user has all the info placed in their site, according to the specifications they make.
684
+ Update – New field selections in on-boarding according to USER LEVEL and the selected options.
685
+ Update – Option to Delete Suggested Keywords from the Keyword Research Assistant
686
+ Update – Keyword Research Results section changes to highlight the very easy to rank first
687
+ Update – New and Better Filters for Red Elements Inside Focus Pages and Bulk SEO
688
+ Update – Reset Day presented in the user profile info inside the plugin, for users to know when limit refresh happens
689
+ Update – New graphics for In-plugin Custom Learning Materials Suggestions
690
+ Update – New side navigation bar to make it easier and faster for users to move from one section/feature to another.
691
+ Update – New SEO expert and SEO beginner modes allowing users to easily switch from beginner mode (designed for non-SEO Experts) to expert mode (best for experienced SEOs).
692
+ Update – Changes to the lessons from the 14 Days Journey to Better Ranking
693
+ Update – Changes to the tasks visible in the Next SEO Goals section
694
+ Update – Changes to the tasks highlighted by the Settings Assistant (aka Squirrly Genius)
695
+ Update – Changes to the grouping of SEO Settings, to make it easier to navigate and set up
696
+ Update – New experience of using the SEO Live Assistant and the Blogging Assistant
697
+ Update – Changes to keyword research steps
698
+ Update – Changes to the experience of using the Keyword Research Tool
699
+ Update – New navigational elements indicating the location of the user within the plugin
700
+ Update – Clearer display of plan limits
701
+ Update – Changes to All Features section
702
+ Update – New in-plugin Custom Suggestions for Learning Materials (relevant for every section of the plugin)
703
+ Update – New custom tips and tricks panel for different sections of the plugin to help you make the most out of every feature from Squirrly SEO.
704
+ Update – Re-written the Advanced Mode completely (now the Expert Mode)
705
+ Update – Clearer NO Configurations zone and clearer ways to make Squirrly SEO go to compatibility mode
706
+ Update – Re-written on-boarding system, based on user choices and more control to the users.
707
+ Update – Changes to the Squirrly Genius digital assistant from Squirrly
708
+ Update – Re-Written SEO Settings
709
+ Update – Re-Written SEO Automations
710
+ Update – Better Navigation Elements across all sections
711
+ Update – New Navigation Menus in all the platform
712
+ Update – New UX for Pop-UPS and Next SEO Goals tasks
713
+ Update – Better Bulk Operation Features in Research, Rankings, Focus Pages, etc
714
+ Update – Better UX for Blogging Assistant and all sub-tools of Blogging Assistant
715
+ Update – Changing Settings Assistant by Squirrly to different Mastery Tasks handlers
716
+ Update – Better Cloud Account UX and In-Plugin Account UX
717
+ Update – Sitemap now gets created separately for each post type
718
+ Update – Added Pagination to Custom Post Types (to Sitemaps that have Custom Post Types)
719
  Fix - Don't show the Manual GSC Indexability in Next SEO Goals if the Focus Page is already indexed
720
  Fix - Important security update
 
721
  Fix - getView error for the deprecated function
722
  Fix - Woocommerce compatibility & Rich Snippets
723
 
squirrly.php CHANGED
@@ -8,7 +8,7 @@
8
  * Description: A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning and Cloud Services. Over 300 functionalities for SEO available when you need them.
9
  * Author: Squirrly
10
  * Author URI: https://plugin.squirrly.co
11
- * Version: 12.1.00
12
  * License: GPLv2 or later
13
  * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
14
  * Text Domain: squirrly-seo
@@ -17,7 +17,7 @@
17
 
18
  if (!defined('SQ_VERSION')) {
19
  /* SET THE CURRENT VERSION ABOVE AND BELOW */
20
- define('SQ_VERSION', '12.1.00');
21
  //The last stable version
22
  define('SQ_STABLE_VERSION', '11.1.12');
23
  // Call config files
8
  * Description: A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning and Cloud Services. Over 300 functionalities for SEO available when you need them.
9
  * Author: Squirrly
10
  * Author URI: https://plugin.squirrly.co
11
+ * Version: 12.1.02
12
  * License: GPLv2 or later
13
  * License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
14
  * Text Domain: squirrly-seo
17
 
18
  if (!defined('SQ_VERSION')) {
19
  /* SET THE CURRENT VERSION ABOVE AND BELOW */
20
+ define('SQ_VERSION', '12.1.02');
21
  //The last stable version
22
  define('SQ_STABLE_VERSION', '11.1.12');
23
  // Call config files
uninstall.php CHANGED
@@ -20,39 +20,9 @@ try {
20
  delete_option(SQ_OPTION);
21
  delete_option(SQ_TASKS);
22
 
23
- if(is_dir(_SQ_CACHE_DIR_)) {
24
- rrmdir(_SQ_CACHE_DIR_);
25
- }
26
-
27
  global $wpdb;
28
- $dbname = $wpdb->prefix . _SQ_DB_;
29
- $wpdb->query("DROP TABLE IF EXISTS `$dbname`");
30
  }
31
 
32
  } catch (Exception $e) {
33
  }
34
-
35
- /**
36
- * Remove the icon directory if exists
37
- *
38
- * @param string $dir
39
- */
40
- function rrmdir($dir)
41
- {
42
- if (is_dir($dir)) {
43
- $objects = scandir($dir);
44
- foreach ($objects as $object) {
45
- if ($object != "." && $object != "..") {
46
- if (filetype($dir . "/" . $object) == "dir")
47
- @rrmdir($dir . "/" . $object);
48
- else
49
- @unlink($dir . "/" . $object);
50
- }
51
- }
52
- reset($objects);
53
-
54
- if(is_dir($dir)) {
55
- @rrmdir($dir);
56
- }
57
- }
58
- }
20
  delete_option(SQ_OPTION);
21
  delete_option(SQ_TASKS);
22
 
 
 
 
 
23
  global $wpdb;
24
+ $wpdb->query("DROP TABLE IF EXISTS `".$wpdb->prefix . _SQ_DB_."`");
 
25
  }
26
 
27
  } catch (Exception $e) {
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
view/Assistant/Settings.php CHANGED
@@ -101,6 +101,20 @@
101
  </div>
102
  </div>
103
  <?php }?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  </div>
105
 
106
  <div class="col-12 p-0 m-0 my-5 sq_advanced">
101
  </div>
102
  </div>
103
  <?php }?>
104
+
105
+ <div class="col-12 row m-0 p-0 my-5">
106
+ <div class="font-weight-bold py-2"><?php echo esc_html__("Live Assistant Type", 'squirrly-seo'); ?>
107
+ <a href="https://howto12.squirrly.co/kb/squirrly-live-assistant/#settings" target="_blank"><i class="fa-solid fa-question-circle m-0 px-2" style="display: inline;"></i></a>
108
+ </div>
109
+ <div class="col-8 m-0 p-0 input-group">
110
+ <select name="sq_sla_type" class="form-control bg-input mb-1">
111
+ <option value="auto" <?php echo((SQ_Classes_Helpers_Tools::getOption('sq_sla_type') == 'auto') ? 'selected="selected"' : '') ?>><?php echo esc_html__("Auto", 'squirrly-seo'); ?></option>
112
+ <option value="integrated" <?php echo((SQ_Classes_Helpers_Tools::getOption('sq_sla_type') == 'integrated') ? 'selected="selected"' : '') ?>><?php echo esc_html__("Integrated Box", 'squirrly-seo'); ?></option>
113
+ <option value="floating" <?php echo((SQ_Classes_Helpers_Tools::getOption('sq_sla_type') == 'floating') ? 'selected="selected"' : '') ?>><?php echo esc_html__("Floating Box", 'squirrly-seo'); ?></option>
114
+ </select>
115
+ </div>
116
+ </div>
117
+
118
  </div>
119
 
120
  <div class="col-12 p-0 m-0 my-5 sq_advanced">
view/Blocks/LiveAssistant.php CHANGED
@@ -6,7 +6,7 @@
6
  <?php echo esc_html__("Live Assistant", 'squirrly-seo'); ?>
7
  <div class="sq_box_close" title="<?php echo esc_html__("Click to Close Squirrly Live Assistant", 'squirrly-seo'); ?>" style="display: none">x</div>
8
  <div class="sq_box_minimize" title="<?php echo esc_html__("Click to Minimize Box", 'squirrly-seo'); ?>" style="display: none">_</div>
9
- <div class="sq_box_maximize fa-solid fa-up-right-and-down-left-from-center" title="<?php echo esc_html__("Click to Maximize Box", 'squirrly-seo'); ?>" style="display: none"></div>
10
  <div id="sq_box_briefcase fa-solid fa-briefcase" title="<?php echo esc_html__("Squirrly Briefcase", 'squirrly-seo'); ?>"></div>
11
  </div>
12
  <div id="sq_errorloading" class="sq-p-2 sq-py-3 sq-bg-light sq-border-bottom" style="display: none">
@@ -28,7 +28,7 @@
28
  <input type="button" id="sq_selectit" value="<?php echo esc_html__("Use this keyword", 'squirrly-seo'); ?>" style="display: none"/>
29
  </div>
30
  </div>
31
- <div id="sq_block_tabs" class="sq-row sq-p-0 sq-mt-2 sq-mb-0 sq-mx-1 sq-border-bottom" style="display: none">
32
  <div class="sq_block_tab sq-col-3 sq-p-2 sq-m-0 sq-text-primary sq_active small" data-target="#sq_briefcase"><strong><?php echo esc_html__("Step 1", 'squirrly-seo'); ?></strong><br /><?php echo esc_html__("Keywords", 'squirrly-seo'); ?></div>
33
  <div class="sq_block_tab sq-col-3 sq-p-2 sq-m-0 sq-text-primary small" data-target="#sq_blocksearch"><strong><?php echo esc_html__("Step 2", 'squirrly-seo'); ?></strong><br /><?php echo esc_html__("Enhance", 'squirrly-seo'); ?></div>
34
  <div class="sq_block_tab sq-col-3 sq-p-2 sq-m-0 sq-text-primary small" data-target="#sq_blockseo"><strong><?php echo esc_html__("Step 3", 'squirrly-seo'); ?></strong><br /><?php echo esc_html__("Analysis", 'squirrly-seo'); ?></div>
@@ -40,7 +40,7 @@
40
  <div class="sq-row sq-p-2 sq-m-0 small" style="height: 100px;">
41
  <i class="fa-solid fa-briefcase sq-p-1 sq-px-2 sq-m-0"></i>
42
  <strong><?php echo esc_html__("Squirrly Briefcase", 'squirrly-seo') ?>:</strong>
43
- <div class="sq-col-12 sq-px-4 sq-mx-2"><?php echo esc_html__("We recomend that you select at least 3 Keywords for best results.", 'squirrly-seo') ?></div>
44
  </div>
45
  </div>
46
  <?php }?>
@@ -49,7 +49,7 @@
49
 
50
  <div id="sq_briefcase_content" class="sq-col-12 sq-m-0 sq-p-0 sq-py-2"></div>
51
  </div>
52
- <button data-target="#sq_blocksearch" class="sq_nextstep sq_step1 sq_button sq-col-12 sq-m-0 sq-p-2"><?php echo esc_html__("Continue", 'squirrly-seo'); ?> ></button>
53
  </div>
54
  <div id="sq_blocksearch" class="sq_block_steps" style="display: none">
55
  <?php if(SQ_Classes_Helpers_Tools::getOption('sq_keyword_help')){ ?>
@@ -77,7 +77,7 @@
77
  </div>
78
 
79
  <div class="sq_search"></div>
80
- <button data-target="#sq_blockseo" class="sq_nextstep sq_step2 sq_button sq-col-12 sq-m-0 sq-p-2"><?php echo esc_html__("Continue", 'squirrly-seo'); ?> ></button>
81
 
82
  <div id="sq_search_img_filter" style="display:none">
83
  <input id="sq_search_img_nolicence" type="checkbox" value="1" <?php if (SQ_Classes_Helpers_Tools::getOption('sq_img_licence')) echo 'checked="checked"'; ?> />
@@ -92,7 +92,7 @@
92
  <div class="sq-row sq-p-2 sq-m-0 small" style="height: 100px;">
93
  <i class="fa-solid fa-message sq-p-1 sq-px-2 sq-m-0"></i>
94
  <strong><?php echo esc_html__("Squirrly Live Assistant", 'squirrly-seo') ?>:</strong>
95
- <div class="sq-col-12 sq-px-4 sq-mx-2"><?php echo esc_html__("Squirrly automatically checks your article to make sure it has the best SEO chances", 'squirrly-seo') ?></div>
96
  </div>
97
  </div>
98
  <?php }?>
@@ -101,7 +101,7 @@
101
  <div class="sq-flex-grow-1 sq-m-0 sq-p-0 sq-py-1 sq-mr-2">
102
  <progress class="sq_blockseo_progress sq-col-12 sq-m-0 sq-p-0 sq-my-1" max="100" value="0"></progress>
103
  </div>
104
- <button id="sq_seo_refresh" class="sq-btn sq-btn-sm sq-btn-primary sq-text-white sq-rounded-0"><?php echo esc_html__("Update", 'squirrly-seo') ?></button>
105
 
106
  </div>
107
 
@@ -121,7 +121,7 @@
121
  </ul>
122
  </div>
123
 
124
- <button data-target="#sq_focuspages" class="sq_nextstep sq_step3 sq_button sq-col-12 sq-m-0 sq-p-2"><?php echo esc_html__("Continue", 'squirrly-seo'); ?> ></button>
125
 
126
  </div>
127
  <div id="sq_focuspages" class="sq_block_steps" style="display: none">
@@ -130,7 +130,7 @@
130
  <div class="sq-row sq-p-2 sq-m-0 small" style="height: 100px;">
131
  <i class="fa-solid fa-bullseye-arrow sq-p-1 sq-px-2 sq-m-0"></i>
132
  <strong><?php echo esc_html__("Squirrly Focus Pages", 'squirrly-seo') ?>:</strong>
133
- <div class="sq-col-12 sq-px-4 sq-mx-2"><?php echo esc_html__("Focus Pages bring you clear methods to take your content from never found to always found on Google.", 'squirrly-seo') ?></div>
134
  </div>
135
  </div>
136
  <?php }?>
6
  <?php echo esc_html__("Live Assistant", 'squirrly-seo'); ?>
7
  <div class="sq_box_close" title="<?php echo esc_html__("Click to Close Squirrly Live Assistant", 'squirrly-seo'); ?>" style="display: none">x</div>
8
  <div class="sq_box_minimize" title="<?php echo esc_html__("Click to Minimize Box", 'squirrly-seo'); ?>" style="display: none">_</div>
9
+ <div class="sq_box_maximize dashicons-before dashicons-editor-expand" title="<?php echo esc_html__("Click to Maximize Box", 'squirrly-seo'); ?>" style="display: none"></div>
10
  <div id="sq_box_briefcase fa-solid fa-briefcase" title="<?php echo esc_html__("Squirrly Briefcase", 'squirrly-seo'); ?>"></div>
11
  </div>
12
  <div id="sq_errorloading" class="sq-p-2 sq-py-3 sq-bg-light sq-border-bottom" style="display: none">
28
  <input type="button" id="sq_selectit" value="<?php echo esc_html__("Use this keyword", 'squirrly-seo'); ?>" style="display: none"/>
29
  </div>
30
  </div>
31
+ <div id="sq_block_tabs" class="sq-row sq-p-0 sq-mt-2 sq-mb-0 sq-mx-0 sq-border-bottom" style="display: none">
32
  <div class="sq_block_tab sq-col-3 sq-p-2 sq-m-0 sq-text-primary sq_active small" data-target="#sq_briefcase"><strong><?php echo esc_html__("Step 1", 'squirrly-seo'); ?></strong><br /><?php echo esc_html__("Keywords", 'squirrly-seo'); ?></div>
33
  <div class="sq_block_tab sq-col-3 sq-p-2 sq-m-0 sq-text-primary small" data-target="#sq_blocksearch"><strong><?php echo esc_html__("Step 2", 'squirrly-seo'); ?></strong><br /><?php echo esc_html__("Enhance", 'squirrly-seo'); ?></div>
34
  <div class="sq_block_tab sq-col-3 sq-p-2 sq-m-0 sq-text-primary small" data-target="#sq_blockseo"><strong><?php echo esc_html__("Step 3", 'squirrly-seo'); ?></strong><br /><?php echo esc_html__("Analysis", 'squirrly-seo'); ?></div>
40
  <div class="sq-row sq-p-2 sq-m-0 small" style="height: 100px;">
41
  <i class="fa-solid fa-briefcase sq-p-1 sq-px-2 sq-m-0"></i>
42
  <strong><?php echo esc_html__("Squirrly Briefcase", 'squirrly-seo') ?>:</strong>
43
+ <div class="sq_help sq-col-12 sq-px-4 sq-mx-2"><?php echo esc_html__("We recomend that you select at least 3 Keywords for best results.", 'squirrly-seo') ?></div>
44
  </div>
45
  </div>
46
  <?php }?>
49
 
50
  <div id="sq_briefcase_content" class="sq-col-12 sq-m-0 sq-p-0 sq-py-2"></div>
51
  </div>
52
+ <button type="button" data-target="#sq_blocksearch" class="sq_nextstep sq_step1 sq_button sq-col-12 sq-m-0 sq-p-2"><?php echo esc_html__("Continue", 'squirrly-seo'); ?> ></button>
53
  </div>
54
  <div id="sq_blocksearch" class="sq_block_steps" style="display: none">
55
  <?php if(SQ_Classes_Helpers_Tools::getOption('sq_keyword_help')){ ?>
77
  </div>
78
 
79
  <div class="sq_search"></div>
80
+ <button type="button" data-target="#sq_blockseo" class="sq_nextstep sq_step2 sq_button sq-col-12 sq-m-0 sq-p-2"><?php echo esc_html__("Continue", 'squirrly-seo'); ?> ></button>
81
 
82
  <div id="sq_search_img_filter" style="display:none">
83
  <input id="sq_search_img_nolicence" type="checkbox" value="1" <?php if (SQ_Classes_Helpers_Tools::getOption('sq_img_licence')) echo 'checked="checked"'; ?> />
92
  <div class="sq-row sq-p-2 sq-m-0 small" style="height: 100px;">
93
  <i class="fa-solid fa-message sq-p-1 sq-px-2 sq-m-0"></i>
94
  <strong><?php echo esc_html__("Squirrly Live Assistant", 'squirrly-seo') ?>:</strong>
95
+ <div class="sq_help sq-col-12 sq-px-4 sq-mx-2"><?php echo esc_html__("Squirrly automatically checks your article to make sure it has the best SEO chances", 'squirrly-seo') ?></div>
96
  </div>
97
  </div>
98
  <?php }?>
101
  <div class="sq-flex-grow-1 sq-m-0 sq-p-0 sq-py-1 sq-mr-2">
102
  <progress class="sq_blockseo_progress sq-col-12 sq-m-0 sq-p-0 sq-my-1" max="100" value="0"></progress>
103
  </div>
104
+ <button type="button" id="sq_seo_refresh" class="sq-btn sq-btn-sm sq-btn-primary sq-text-white sq-rounded-0"><?php echo esc_html__("Update", 'squirrly-seo') ?></button>
105
 
106
  </div>
107
 
121
  </ul>
122
  </div>
123
 
124
+ <button type="button" data-target="#sq_focuspages" class="sq_nextstep sq_step3 sq_button sq-col-12 sq-m-0 sq-p-2"><?php echo esc_html__("Continue", 'squirrly-seo'); ?> ></button>
125
 
126
  </div>
127
  <div id="sq_focuspages" class="sq_block_steps" style="display: none">
130
  <div class="sq-row sq-p-2 sq-m-0 small" style="height: 100px;">
131
  <i class="fa-solid fa-bullseye-arrow sq-p-1 sq-px-2 sq-m-0"></i>
132
  <strong><?php echo esc_html__("Squirrly Focus Pages", 'squirrly-seo') ?>:</strong>
133
+ <div class="sq_help sq-col-12 sq-px-4 sq-mx-2"><?php echo esc_html__("Focus Pages bring you clear methods to take your content from never found to always found on Google.", 'squirrly-seo') ?></div>
134
  </div>
135
  </div>
136
  <?php }?>
view/assets/css/logo.min.css CHANGED
@@ -1 +1 @@
1
- #sq_blocksnippet .postbox-header h2:before,.sq_logo{background-image:url(data:image/png;base64,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);display:inline-block;background-size:100%;background-repeat:no-repeat;background-position:center}.sq_logo{width:20px!important;height:20px!important;vertical-align:middle!important;line-height:inherit}.sq_logo_30{width:30px!important;height:30px!important}.sq_logo_50{width:50px!important;height:50px!important}.sq_logo_toolbar_text{font-size:1.1rem;font-weight:500}#sq_blocksnippet .postbox-header h2:before{content:" ";width:32px;height:32px;margin-right:10px;vertical-align:middle}#wpadminbar .sq_errorcount,.sq_errorcount{float:right;margin:8px 3px;font-size:10px!important;padding:0;width:18px!important;height:17px!important;line-height:19px!important;text-shadow:1px 1px #333!important;color:#fff!important;font-family:Arial,Helvetica,sans-serif!important;text-align:center!important;border:0!important;background-color:#f2000c!important;border-radius:50%!important;-webkit-border-radius:50%!important;-moz-border-radius:50%!important}#wp-admin-bar-sq_toolbar .ab-item{padding-right:22px!important}.menu-top.toplevel_page_sq_dashboard img{padding-top:5px!important;width:24px!important}.menu-top.toplevel_page_sq_dashboard .sq_errorcount,.menu-top.toplevel_page_sq_dashboard.wp-menu-open .sq_errorcount{margin:0 10px 0 0}
1
+ #sq_blocksnippet .postbox-header h2:before,.sq_logo{background-image:url(data:image/png;base64,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);display:inline-block;background-size:100%;background-repeat:no-repeat;background-position:center}.sq_logo{width:20px!important;height:20px!important;vertical-align:middle!important;line-height:inherit}.sq_logo_30{width:30px!important;height:30px!important}.sq_logo_50{width:50px!important;height:50px!important}.sq_logo_toolbar_text{font-size:1.1rem;font-weight:500}#sq_blocksnippet .postbox-header h2:before{content:" ";width:32px;height:32px;margin-right:10px;vertical-align:middle}#wpadminbar .sq_errorcount,.sq_errorcount{float:right;margin:8px 3px;font-size:10px!important;padding:0;width:18px!important;height:17px!important;line-height:19px!important;text-shadow:1px 1px #333!important;color:#fff!important;font-family:Arial,Helvetica,sans-serif!important;text-align:center!important;border:0!important;background-color:#f2000c!important;border-radius:50%!important;-webkit-border-radius:50%!important;-moz-border-radius:50%!important}#wp-admin-bar-sq_toolbar .ab-item{padding-right:22px!important}.menu-top.toplevel_page_sq_dashboard img{padding-top:7px!important;width:20px!important}.menu-top.toplevel_page_sq_dashboard .sq_errorcount,.menu-top.toplevel_page_sq_dashboard.wp-menu-open .sq_errorcount{margin:0 10px 0 0}
view/assets/css/post.min.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap);@-ms-keyframes play{0%{background-position:0}to{background-position:-400px}}@-o-keyframes play{0%{background-position:0}to{background-position:-400px}}@keyframes play{0%{background-position:0}to{background-position:-400px}}.sq_minloading{position:relative;opacity:.5;min-height:40px}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}.sq_minloading:before{position:absolute!important;right:calc(50% - 10px)!important;top:calc(50% - 8px)!important;display:block!important;float:right!important;line-height:30px!important;content:""!important;padding:0!important;margin:0 0 0 5px!important;height:16px!important;width:20px!important;background:url(../img/minloading.png) no-repeat!important;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_preloading,.sq_sla_connect_notice{font-size:.875rem;line-height:24px;text-align:center}#sq_preloading{color:gray}.sq_sla_connect_notice{font-weight:600;margin:0 auto 10px}.sq_sla_connect_notice_content{text-align:center;margin:6px auto}#postsquirrly .sq_frontend_noapi a,.sq_sla_connect_notice a{text-decoration:none}#postsquirrly .sq_frontend_noapi_inner img,.sq_sla_connect_notice_content a img{width:277px}#postsquirrly{background:0 0;border:0;margin:0;padding:2px;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}#postsquirrly :not(.fa,.fa-solid,.fa-brands),#sq_blog_preview *{font-family:"Noto Sans","Open Sans",Arial,sans-serif;font-size:.875rem;line-height:20px}#postsquirrly .postbox-header{display:none}#postsquirrly *,#sq_blocksnippet *{box-sizing:border-box}#sq_blocksnippet:not(.closed) .inside{display:block!important}#sq_blocksnippet.closed .inside{display:none!important}#postsquirrly.closed .inside,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_addbriefcase,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_item_delete,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_optimize{display:block}.sq_push{position:absolute;top:-7px;left:30px;font-size:.875rem;margin:0;border:1px solid #333;background-color:#8b0000;border-radius:50px;-webkit-border-radius:50px;-moz-border-radius:50px;padding:0 1px;width:14px;text-shadow:1px 1px #333;color:#fff;text-align:center}#sq_options_dasboard .sq_push{left:36px}#postsquirrly div.inside,#postsquirrly p,#postsquirrly td,#sq_blocksearch ul,#sq_blockseo ul,#sq_options>ul{margin:0;padding:0}.edit-post-sidebar #sq_options{display:none}#postsquirrly .handlediv,#postsquirrly .hndle{background:gray;opacity:0;height:1px;line-height:0}#postsquirrly .sq_header{color:#a0a0a0;font-size:.875rem;font-weight:400;line-height:20px}#postsquirrly .sq_header .sq_logo{width:30px!important;height:30px!important}#postsquirrly .sq_box{background-color:#fff;margin:0;padding:0;width:100%;height:100%}#normal-sortables #postsquirrly .sq_box{max-width:350px;margin:auto}#postsquirrly.sq_sticky{position:fixed!important;z-index:90000!important;right:3px;bottom:0;top:auto;height:136px;width:350px!important;padding:0!important;background:#fff!important;overflow-x:auto!important;box-shadow:0 0 5px -3px #555!important}#postsquirrly.sq_sticky::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#f5f5f5}#postsquirrly.sq_sticky::-webkit-scrollbar{width:7px;background-color:#f5f5f5}#postsquirrly.sq_sticky::-webkit-scrollbar-thumb{background-color:#bdafba;border:0}#postsquirrly.sq_sticky .hndle,#postsquirrly.sq_sticky.minimized #sq_briefcase_list,#postsquirrly.sq_sticky.minimized #sq_briefcase_topcontent{display:none!important}#postsquirrly.sq_sticky .sq_header{cursor:move}#postsquirrly .sq_box_close,#postsquirrly .sq_box_maximize,#postsquirrly .sq_box_minimize{display:block;float:right;margin:0;cursor:pointer;font-weight:300;font-size:.8rem;color:gray;padding:8px 10px 0 0;height:22px}#postsquirrly .sq_box_close{font-size:1.3rem;padding:3px 5px 0 0}#postsquirrly.sq_sticky.minimized{height:95px!important;overflow:hidden!important}#postsquirrly .inside{position:relative;height:100%}#postsquirrly .sq_box.sq_sticky{position:fixed;top:32px;z-index:99999;height:100%;max-width:291px;overflow-x:auto}#postsquirrly.sq_sticky .sq_box.sq_sticky{position:absolute;top:0;bottom:0;height:100%;margin:0}#postsquirrly .sq_box.sq_sticky>div{margin-bottom:25px}#postsquirrly .sq_box:hover:before{opacity:.8}#postsquirrly .sq_box:hover .sq_header{color:#444}#sq_blocklogin{background-color:#ffffe0}#sq_blocklogin input,#sq_blocklogin textarea{font-size:.875rem;height:30px;padding:6px}#postsquirrly .sq_button{display:block;text-decoration:none;line-height:30px;text-align:center;background-color:#6200ee!important;font-size:1.12rem;font-weight:700;color:#fff;margin:0;padding:0 15px;border:0;border-radius:0;cursor:pointer;vertical-align:top}#sq_blocklogin #sq_autologin #sq_loginimage,#sq_blocklogin #sq_login{background-color:#6200ee;color:#fff;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;cursor:pointer}#sq_blocklogin #sq_login{border:0;min-width:100px;min-height:35px}#sq_blocklogin label{margin-top:0;margin-right:2px;width:72px;display:inline-block}#sq_blocklogin ul li{position:relative;padding:4px 0 4px 5px;margin:5px 0;line-height:16px;text-shadow:1px 1px #fff}#sq_blocklogin .sq_error,#sq_blocklogin .sq_info,#sq_blocklogin ul li{font-size:.875rem;text-align:center}#sq_blocklogin .sq_error{color:red;margin:5px auto}#sq_blocklogin #sq_register{margin:5px 0;font-size:.875rem;font-weight:700}#sq_blocklogin #sq_register_wait{display:inline-block;margin-left:2px}#sq_blocklogin #sq_autologin{padding:20px 10px 5px}#sq_blocklogin #sq_autologin #sq_loginimage{display:block;height:auto;width:100px;font-size:.875rem;font-weight:700;margin:13px;padding:10px 0;text-decoration:none}#sq_blocklogin #sq_register_email{text-align:center;width:250px;height:45px;margin:14px auto 11px}#sq_blocklogin #sq_register_email #sq_email{width:160px!important;border:2px solid #6200ee}#sq_blocklogin #sq_signin{color:#6200ee;margin:5px;cursor:pointer}#sq_options{float:right;position:relative;height:40px;margin:0;padding:0;z-index:13}#side-sortables #sq_options{z-index:1003}#postsquirrly #sq_options{float:none;background:0 0;border:0;box-shadow:none}#normal-sortables #postsquirrly #sq_options{display:flex;width:280px;margin:10px auto}#postsquirrly.sq_frontend .sq_frontend_noapi{font-size:1.1rem;line-height:24px;font-weight:600;margin:0 auto 10px;text-align:center}#postsquirrly .sq_frontend_noapi_inner{text-align:center;margin:6px auto}.sq_block_tab{cursor:pointer}#sq_blocksearch #sq_types ul li.sq_active,.sq_block_tab.sq_active{color:#fff!important;background-color:#6200ee!important}.sq_box #sq_keyword{border:0!important;background:#f8f9fa!important;box-shadow:none!important}#sq_briefcase #sq_briefcase_bottom{background-color:#f1f1f1;height:20px;margin:2px -1px 0;border-top:1px solid #ddd}#sq_briefcase #sq_briefcase_list #sq_briefcase_keyword_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#6200ee;font-size:1.1rem;font-weight:700;color:#fff;margin:0;padding:0;border:1px solid #fff;cursor:pointer}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_used{margin:0 0 7px;padding:0}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_circles{margin:0;padding:5px 0;width:100%;height:auto;clear:both;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused{clear:both;padding:0;margin:0}#sq_briefcase #sq_briefcase_content.sq_error{margin:15px 0!important}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item{position:relative;color:#4f1440;padding:0;text-align:left;margin:0 0 0 1px;line-height:20px}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_item_percent{width:12%;white-space:nowrap;display:inline-block;padding:5px 2px 0;text-align:right;font-weight:700;font-size:.875rem;cursor:pointer}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{cursor:pointer}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_value{width:85%;max-width:275px;display:inline-block;padding:5px;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden;vertical-align:top}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item{padding:5px}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item .sq_briefcase_value{padding:0;display:block;clear:left}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_addbriefcase{position:absolute;color:#6200ee;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_optimize{position:absolute;color:#6200ee;right:5px;bottom:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover{background-color:#fbfbfb}#sq_briefcase #sq_briefcase_content .sq_briefcase_empty{font-weight:700;text-align:center;padding:5px;margin:0}#sq_briefcase #sq_briefcase_content .sq_briefcase_item_notused .sq_briefcase_empty{color:#a7a6a7}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{width:85%}#sq_briefcase .sq_briefcase_item .sq_briefcase_item_circle{display:block;float:left;width:13px;height:3px;margin:0 2px 0 0}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle{display:block;font-family:'FontAwesome',Arial,sans-serif!important;float:left;width:44px;height:10px;margin:5px 3px 0 0;cursor:pointer}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle:before{content:" ";display:block;height:100%;width:100%;margin:-2px 0 2px}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle.sq_active:before{display:block;text-align:center;margin:-2px 0 2px;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_briefcase ul li.sq_main_keyword{background-color:#f9f5fd}#sq_briefcase ul li.sq_main_keyword:after{content:"\f005";font-family:'FontAwesome',Arial,sans-serif!important;font-size:.875rem;position:absolute;margin:5px 0;right:18px}#sq_briefcase #sq_briefcase_content li .sq_briefcase_item_delete{display:none;float:right;font-family:Arial,sans-serif;right:3px;font-size:13px;font-weight:700;color:#999;height:20px;width:15px;text-align:center;padding:5px 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blockseo .sq_tasks{padding:2px 0}#sq_blockseo .sq_auto_sticky input,#sq_blockseo .sq_tasks .sq_help{display:none}#sq_blockseo .sq_tasks ul{padding:10px 0}#sq_blockseo .sq_tasks ul li{position:relative;display:block;background-color:#fff;font-weight:400;line-height:25px;padding:5px 40px 5px 5px;margin:5px;border:1px solid #e9e9e9}#sq_blockseo .sq_tasks ul li.sq_tasks_category{color:#999;background-color:transparent;padding:0;margin:5px 0 0 5px;border:0!important;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}#sq_blockseo .sq_tasks .sq_fp_title_task{color:#6200ee}#sq_blockseo .sq_tasks ul li.checked .sq_fp_title_task{color:#fff}#sq_blockseo .sq_tasks ul li.checked{background-color:#4caf50;color:#fff;text-shadow:1px 1px #777}#sq_blockseo .sq_tasks ul li .sq_seo_priority{display:none;position:absolute;height:25px;width:30px;right:23px;top:4px}#sq_blockseo .sq_tasks ul li .sq_seo_locked{display:block;position:absolute;height:20px;width:20px;right:23px;top:4px;cursor:pointer}#sq_blockseo .sq_auto_sticky label span,#sq_blockseo .sq_tasks ul li .sq_seo_priority_essential{cursor:pointer}#sq_blockseo .sq_tasks ul li .arrow:after{content:none;background-color:transparent}#sq_blockseo .sq_tasks ul li .arrow{display:block;position:absolute;right:5px;top:6px;bottom:auto;left:auto;height:16px;width:16px;overflow:visible;z-index:1;cursor:pointer}#sq_blockseo .sq_tasks ul li.checked .arrow{background-position:-121px -76px}#sq_blockseo .sq_tasks ul li .arrow:hover{background-position:-146px -76px;z-index:2}#sq_blockseo .sq_tasks ul li .arrow:hover .sq_help{display:table;position:absolute;background:#fff;font-weight:400;color:#333;right:-7px;top:22px;height:50px;width:260px;padding:10px 5px;overflow:hidden;z-index:5;border:1px solid #ccc;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;text-shadow:none}#sq_blockseo .sq_tasks ul li.sq_density_high,#sq_blockseo .sq_tasks ul li.sq_density_title_high,#sq_blockseo .sq_tasks ul li.sq_over_density_high{background-color:red!important;color:#fff!important}#sq_blockseo .sq_tasks ul li.sq_locked{color:#d3d3d3;background-color:#f8f8f8}#sq_blockseo .sq_error{padding:15px}body ul.sq_notification{position:fixed;background-color:#4caf50;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none!important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100001}body ul.sq_notification_front{z-index:100002}body ul.sq_density_high,body ul.sq_density_low,body ul.sq_density_title_high,body ul.sq_density_title_low{background-color:red!important}body ul.sq_density_high li,body ul.sq_density_low li,body ul.sq_density_title_high li,body ul.sq_density_title_low li{color:#fff!important}body ul.sq_notification li{position:relative;font-weight:400;color:#fff;text-shadow:1px 1px #777;line-height:16px;list-style:none!important;width:380px;height:auto;margin:0 auto;padding:10px 0;text-align:left}body ul.sq_notification li .arrow{position:absolute;top:8px;left:-33px;width:25px;height:25px;float:left;margin:0 10px 0 0}body ul.sq_notification li .arrow::before{content:"";display:none}body ul.sq_notification li .arrow::after{background-color:transparent!important}body ul.sq_complete,body ul.sq_complete li{list-style:none!important;height:auto;text-align:center}body ul.sq_complete{position:fixed;background-color:#4caf50;width:100%;top:28px;padding:0;margin:0;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100000003}body ul.sq_complete li{position:relative;font-weight:400;color:#fff;text-shadow:1px 1px #777;line-height:16px;margin:0 auto;padding:15px 0}#sq_blocksearch #sq_types{width:100%;height:auto;padding:5px 0;margin:0}#sq_blocksearch #sq_types ul{margin:0;padding:0;list-style:none}#sq_blocksearch #sq_types ul li{padding:8px;margin:0 12px;cursor:pointer;font-size:1.5rem}#sq_blocksearch .sq_search{overflow:hidden;padding:0!important;margin:0!important;width:100%!important;height:auto;clear:both}#sq_blocksearch .sq_search .sq_search_notrelevant{text-align:center;text-decoration:none;color:#1c3c50;width:100%;display:block;margin:0;padding:5px;line-height:30px}#sq_blocksearch .sq_search #sq_search_second{text-align:center}#sq_blocksearch .sq_search #sq_keyword_second{display:inline-block;margin:13px 0;width:80%;line-height:26px;padding:6px;font-weight:400;color:#32373c;border-radius:0}#sq_blocksearch .sq_search #sq_keyword_second_check{display:inline-block;line-height:26px;width:18%;height:39px;background-color:#6200ee!important;font-weight:700;color:#fff;margin:0;padding:0;cursor:pointer}#sq_blocksearch .sq_search ul{padding:0;margin:0 auto;list-style:none;clear:both;max-width:335px}#sq_blocksearch .sq_search ul li.sq_search_li{display:block;width:95%;font-weight:400;padding:5px;margin:7px auto;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:1px}#sq_blocksearch .sq_search .sq_attribution{clear:both;margin:0;padding:0}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li{-ms-flex:0 0 auto;flex:0 0 auto;flex-grow:1;max-width:100%;text-align:center;padding:10px;color:#fff;background-color:#6200ee!important;border-color:transparent;cursor:pointer}#sq_blocksearch .sq_search ul .sq_info{clear:both;color:#bcc4c8;padding:3px 0 0;float:right}#sq_blocksearch .sq_search .sq_info ul li{float:left;font-size:.7rem;margin-right:5px;padding-right:5px;border-right:1px solid #ccc}#sq_blocksearch .sq_search .sq_info ul li:last-child{border-right-width:0!important}#sq_blocksearch .sq_search ul li.sq_search_img_li{position:relative;float:left;background-color:#fff;width:100px;height:70px;padding:2px;margin:0 3px 6px 7px;border:1px solid #bbb;box-shadow:0 0 2px #ccc;-moz-box-shadow:0 0 2px #ccc;-webkit-box-shadow:0 0 2px #ccc;transition-property:border-color;transition-duration:.33s;-moz-transition-property:border-color;-moz-transition-duration:.33s;-webkit-transition-property:border-color;-webkit-transition-duration:.33s;cursor:pointer}#sq_blocksearch .sq_search ul li.sq_search_img_li:hover{border-color:#333}#sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(0,100px,70px,0);position:absolute;margin-top:-3px;margin-left:-3px;max-height:110px;max-width:140px;min-width:100px}#postsquirrly.sq_sticky .sq_search ul li.sq_search_img_li{margin:0 3px 6px 7px}#sq_blocksearch #sq_search_img_filter{width:100%;background-color:#fff;text-align:center;padding:10px 0;border-top:1px solid #e8e8e8}#sq_blocksearch #sq_search_img_filter #sq_search_img_nolicence{margin:0 5px}#sq_blocksearch #sq_search_img_filter label#sq_search_img_nolicence_label{position:relative;color:#1d1f24;text-shadow:1px 1px #fff}#sq_blocksearch #sq_search_img_filter label.checked span{background-color:#6200ee}.sq_zoomImg_img{width:auto;height:54px}.sq_zoomImg{position:absolute;visibility:visible}.sq_zoomImg_Inner{background-color:#fff;border:1px solid #d9d9d9;-moz-box-shadow:0 4px 16px rgba(0,0,0,.2);-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2);color:#555;padding:5px;position:relative}.sq_zoomImg_frame img{border:1px solid #d9d9d9;display:block;margin:auto;max-width:115px;max-height:115px}#sq_blocksearch .sq_search li.sq_search_img_li .sq_attribute{position:absolute;bottom:-3px;right:-3px;background:#fff;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:1;padding:0 5px}#sq_blocksearch .sq_search ul li.search_category{clear:both;color:#464646;width:100%;height:16px;border:0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_avatar{float:left;width:36px;height:36px;margin:3px 10px 0 0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_content{margin-left:46px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_author{color:#555;line-height:15px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_name{line-height:19px;margin-right:5px;color:#555;font-weight:400;text-align:left}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_text{margin-left:0}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_title{font-weight:700;color:#333;line-height:19px;margin:0 0 5px}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_text{color:#333;line-height:19px;text-align:left}#sq_blocksearch .sq_show_mgs{clear:both;display:block;padding:10px;margin-top:10px;border-top:1px dashed #d1d1d1;text-align:center}#sq_blocksearch .sq_more{clear:both;position:relative;width:100%;text-align:center;padding:0;margin:0 0 5px}#sq_blocksearch .sq_more span{display:block;width:0;height:0;border-left:12px solid transparent;border-right:12px solid transparent;border-top:10px solid #6200ee;padding:0;margin:0 auto;cursor:pointer}#sq_suggestion .sq_show_mgs{margin:20px auto 0;border-top:none;text-align:center}#sq_blog_preview{position:fixed!important;border:1px solid #e5e5e5;padding:0;margin-bottom:15px;left:15%;top:10%;width:70%;height:80%;overflow:auto;background-color:#fff;z-index:999999}#sq_blog_preview_overlay{display:block;position:absolute;background-color:#999;border:0;content:" ";left:0;top:0;width:100%;height:100%;border-radius:2px 2px 0 0;opacity:.3;z-index:999998}#sq_blog_preview #sq_blog_preview_partner{position:absolute;top:15px;right:20px}#sq_blog_preview #sq_blog_preview_partner a{background-color:#333;text-decoration:none;color:#fff;font-size:.875rem;font-weight:700;margin-left:5px;padding:0 3px;border:1px solid #333}#sq_blog_preview #sq_blog_preview_title{display:block;font-size:1.2rem;font-weight:400;line-height:30px;color:#333;border-bottom:1px dashed #d1d1d1;margin:0 0 10px;padding:10px 0 10px 10px}#sq_blog_preview #sq_blog_preview_body{display:block;font-size:.875rem;color:#333;line-height:16px;text-align:left;padding:0 0 0 10px;max-height:300px;overflow-y:auto;overflow-x:hidden}#sq_blog_preview #sq_blog_preview_body p{position:relative;background-color:transparent;line-height:24px;padding:0;margin:0 0 16px;text-align:left;white-space:normal;color:#333}#sq_blog_preview #sq_blog_preview_body .sq_mark{background-color:#ffed5f;color:#000;padding:0 3px;font-size:.875rem;line-height:20px;box-shadow:0 0 5px #fff6ac;-moz-box-shadow:0 0 5px #fff6ac;-webkit-box-shadow:0 0 5px #fff6ac}#sq_blog_preview #sq_blog_preview_body .sq_blog_option{position:absolute;display:none;background-color:#f5f5f5;bottom:0;right:5px;cursor:pointer;z-index:1}#sq_blog_preview #sq_blog_preview_body p:hover{background-color:#f5f5f5}#sq_blog_preview #sq_blog_preview_body p:hover .sq_blog_option{display:block;-webkit-animation:fadeIn .3s;-moz-animation:fadeIn .3s;animation:fadeIn .3s}#sq_blocksearch{position:relative}#sq_blocksearch .sq_search ul li.sq_search_wiki_li .sq_wiki_title{font-weight:700;color:#333;margin:5px 0}#sq_blocksearch .sq_search ul li.sq_search_local_li .sq_local_title{font-weight:700;color:#333;line-height:18px;margin:0 0 5px}#sq_blocksearch .sq_research_div{display:none;clear:both;position:relative;width:100%!important;line-height:40px;padding:0;margin:0!important;text-align:center}#sq_blocksearch .sq_research_div #sq_research_link{font-weight:700;color:#21759b;margin-top:10px;text-align:center;cursor:pointer;text-decoration:none}#sq_blog_preview #sq_blog_preview_close{position:absolute;font-weight:700;color:#999;width:10px;line-height:16px;text-align:center;padding:0 4px 2px;border-radius:10px;cursor:pointer;z-index:2;top:20px;right:20px;font-size:20px}#sq_blockseo #sq_seo_refresh{text-align:center;height:29px!important;min-height:29px!important;cursor:pointer}#sq_blockseo progress::-webkit-progress-bar{background-color:#ccc;height:5px}#sq_blockseo progress::-webkit-progress-value{background-color:#6200ee;height:5px}#sq_blockseo progress{background-color:#6200ee;height:5px;line-height:5px}#postsquirrly.sq_frontend #sq_options{display:none}#postsquirrly.sq_frontend ul,#postsquirrly.sq_frontend ul li{list-style:none!important}
1
+ @import url(https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap);@-ms-keyframes play{0%{background-position:0}to{background-position:-400px}}@-o-keyframes play{0%{background-position:0}to{background-position:-400px}}@keyframes play{0%{background-position:0}to{background-position:-400px}}.sq_minloading{position:relative;opacity:.5;min-height:40px}.sq_loading{height:60px;background:url(../img/loading.gif) no-repeat center!important}.sq_minloading:before{position:absolute!important;right:calc(50% - 10px)!important;top:calc(50% - 8px)!important;display:block!important;float:right!important;line-height:30px!important;content:""!important;padding:0!important;margin:0 0 0 5px!important;height:16px!important;width:20px!important;background:url(../img/minloading.png) no-repeat!important;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_preloading,.sq_sla_connect_notice{font-size:.875rem;line-height:24px;text-align:center}#sq_preloading{color:gray}.sq_sla_connect_notice{font-weight:600;margin:0 auto 10px}.sq_sla_connect_notice_content{text-align:center;margin:6px auto}#postsquirrly .sq_frontend_noapi a,.sq_sla_connect_notice a{text-decoration:none}#postsquirrly .sq_frontend_noapi_inner img,.sq_sla_connect_notice_content a img{width:277px}#postsquirrly *,#sq_blocksnippet *{box-sizing:border-box}#postsquirrly{color:#000}#postsquirrly a:not(.btn,.sq_button){color:#6200ee}#sq_blocksnippet.sq_sticky:not(.closed) .inside{display:block!important}#sq_blocksnippet.sq_sticky.closed .inside{display:none!important}#postsquirrly.sq_sticky{background:0 0;border:0;margin:0;-moz-box-shadow:none;-webkit-box-shadow:none}#postsquirrly:not(.sq_sticky){padding:0;border:1px solid #ddd}#postsquirrly :not(.fa,.fa-solid,.fa-brands),#sq_blog_preview *{font-family:"Noto Sans","Open Sans",Arial,sans-serif;font-size:.875rem;line-height:20px}#postsquirrly.sq_sticky .postbox-header,.edit-post-sidebar #sq_options{display:none}#postsquirrly.sq_sticky.closed .inside,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_addbriefcase,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_item_delete,#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_optimize{display:block}#postsquirrly div.inside,#postsquirrly p,#postsquirrly td,#sq_blocksearch ul,#sq_blockseo ul,#sq_options>ul{margin:0;padding:0}#postsquirrly:not(.sq_sticky) .sq_header{display:none}#postsquirrly.sq_sticky .sq_header{color:#a0a0a0;font-size:.875rem;font-weight:400;line-height:20px}#postsquirrly:not(.sq_sticky) .sq_block_tab{padding:.5em .2em!important;font-size:90%}#postsquirrly.sq_sticky .sq_header .sq_logo{width:30px!important;height:30px!important}#postsquirrly .sq_box{background-color:#fff;margin:0;padding:0;width:100%;height:100%}#normal-sortables #postsquirrly .sq_box{max-width:350px;margin:auto}#postsquirrly.sq_sticky{position:fixed!important;z-index:90000!important;left:calc(100% - 355px);bottom:0;top:auto;height:136px;width:350px!important;padding:0!important;background:#fff!important;overflow-x:auto!important;box-shadow:0 0 5px -3px #555!important}#postsquirrly.sq_sticky::-webkit-scrollbar-track{-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);background-color:#f5f5f5}#postsquirrly.sq_sticky::-webkit-scrollbar{width:7px;background-color:#f5f5f5}#postsquirrly.sq_sticky::-webkit-scrollbar-thumb{background-color:#bdafba;border:0}#postsquirrly.sq_sticky .hndle,#postsquirrly.sq_sticky.minimized #sq_briefcase_list,#postsquirrly.sq_sticky.minimized #sq_briefcase_topcontent{display:none!important}#postsquirrly.sq_sticky .handlediv,#postsquirrly:not(.sq_sticky) .hndle{padding:0 16px!important;font-size:13px!important}#postsquirrly.sq_sticky .sq_header{cursor:move}#postsquirrly .sq_box_close,#postsquirrly .sq_box_maximize,#postsquirrly .sq_box_minimize{display:block;float:right;margin:0;cursor:pointer;font-weight:300;font-size:.8rem;color:gray;padding:5px 10px 0 0;height:22px}#postsquirrly .sq_box_close{font-size:1.3rem;padding:3px 5px 0 0}#postsquirrly.sq_sticky.minimized{height:95px!important;overflow:hidden!important}#postsquirrly .inside{position:relative;height:100%}#postsquirrly .sq_box.sq_sticky{position:fixed;top:32px;z-index:99999;height:100%;max-width:291px;overflow-x:auto}#postsquirrly.sq_sticky .sq_box.sq_sticky{position:absolute;top:0;bottom:0;height:100%;margin:0}#postsquirrly .sq_box.sq_sticky>div{margin-bottom:25px}#postsquirrly .sq_box:hover:before{opacity:.8}#postsquirrly .sq_box:hover .sq_header{color:#444}#sq_blocklogin{background-color:#ffffe0}#sq_blocklogin input,#sq_blocklogin textarea{font-size:.875rem;height:30px;padding:6px}#postsquirrly .sq_button{display:block;text-decoration:none;line-height:30px;text-align:center;background-color:#6200ee!important;font-size:1.12rem;font-weight:700;color:#fff;margin:0;padding:0 15px;border:0;border-radius:0;cursor:pointer;vertical-align:top}#sq_blocklogin #sq_autologin #sq_loginimage,#sq_blocklogin #sq_login{background-color:#6200ee;color:#fff;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;cursor:pointer}#sq_blocklogin #sq_login{border:0;min-width:100px;min-height:35px}#sq_blocklogin label{margin-top:0;margin-right:2px;width:72px;display:inline-block}#sq_blocklogin ul li{position:relative;padding:4px 0 4px 5px;margin:5px 0;line-height:16px;text-shadow:1px 1px #fff}#sq_blocklogin .sq_error,#sq_blocklogin .sq_info,#sq_blocklogin ul li{font-size:.875rem;text-align:center}#sq_blocklogin .sq_error{color:red;margin:5px auto}#sq_blocklogin #sq_register{margin:5px 0;font-size:.875rem;font-weight:700}#sq_blocklogin #sq_register_wait{display:inline-block;margin-left:2px}#sq_blocklogin #sq_autologin{padding:20px 10px 5px}#sq_blocklogin #sq_autologin #sq_loginimage{display:block;height:auto;width:100px;font-size:.875rem;font-weight:700;margin:13px;padding:10px 0;text-decoration:none}#sq_blocklogin #sq_register_email{text-align:center;width:250px;height:45px;margin:14px auto 11px}#sq_blocklogin #sq_register_email #sq_email{width:160px!important;border:2px solid #6200ee}#sq_blocklogin #sq_signin{color:#6200ee;margin:5px;cursor:pointer}#sq_options{float:right;position:relative;height:40px;margin:0;padding:0;z-index:13}#side-sortables #sq_options{z-index:1003}#postsquirrly #sq_options{float:none;background:0 0;border:0;box-shadow:none}#normal-sortables #postsquirrly #sq_options{display:flex;width:280px;margin:10px auto}#postsquirrly.sq_frontend .sq_frontend_noapi{font-size:1.1rem;line-height:24px;font-weight:600;margin:0 auto 10px;text-align:center}#postsquirrly .sq_frontend_noapi_inner{text-align:center;margin:6px auto}.sq_block_tab{cursor:pointer}#sq_blocksearch #sq_types ul li.sq_active,.sq_block_tab.sq_active{color:#fff!important;background-color:#6200ee!important}.sq_box #sq_keyword{border:0!important;background:#f8f9fa!important;box-shadow:none!important}#sq_briefcase #sq_briefcase_bottom{background-color:#f1f1f1;height:20px;margin:2px -1px 0;border-top:1px solid #ddd}#sq_briefcase #sq_briefcase_list #sq_briefcase_keyword_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#6200ee;font-size:1.1rem;font-weight:700;color:#fff;margin:0;padding:0;border:1px solid #fff;cursor:pointer}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_used{margin:0 0 7px;padding:0}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_circles{margin:0;padding:5px 0;width:100%;height:auto;clear:both;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused{clear:both;padding:0;margin:0}#sq_briefcase #sq_briefcase_content.sq_error{margin:15px 0!important}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item{position:relative;color:#4f1440;padding:0;text-align:left;margin:0 0 0 1px;line-height:20px}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_item_percent{white-space:nowrap;display:inline-block;padding:5px 2px 0;text-align:right;font-weight:700;font-size:.875rem;cursor:pointer}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{width:80%;cursor:pointer}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_value{width:80%;max-width:275px;display:inline-block;padding:5px;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden;vertical-align:top}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item{padding:5px}#sq_briefcase #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item .sq_briefcase_value{padding:0;display:block;clear:left}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_addbriefcase{position:absolute;color:#6200ee;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_optimize{position:absolute;color:#6200ee;right:5px;bottom:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_briefcase #sq_briefcase_content li.sq_briefcase_item:hover{background-color:#fbfbfb}#sq_briefcase #sq_briefcase_content .sq_briefcase_empty{font-weight:700;text-align:center;padding:5px;margin:0}#sq_briefcase #sq_briefcase_content .sq_briefcase_item_notused .sq_briefcase_empty{color:#a7a6a7}#sq_briefcase .sq_briefcase_item .sq_briefcase_item_circle{display:block;float:left;width:13px;height:3px;margin:0 2px 0 0}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle{display:block;font-family:'FontAwesome',Arial,sans-serif!important;float:left;width:44px;height:10px;margin:5px 3px 0 0;cursor:pointer}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle:before{content:" ";display:block;height:100%;width:100%;margin:-2px 0 2px}#sq_briefcase .sq_briefcase_item_circles .sq_briefcase_circle.sq_active:before{display:block;text-align:center;margin:-2px 0 2px;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_briefcase ul li.sq_main_keyword{background-color:#f9f5fd}#sq_briefcase ul li.sq_main_keyword:after{content:"\f005";font-family:'FontAwesome',Arial,sans-serif!important;font-size:.875rem;position:absolute;margin:5px 0;right:18px}#sq_briefcase #sq_briefcase_content li .sq_briefcase_item_delete{display:none;float:right;font-size:13px;font-weight:700;color:#999;line-height:15px;width:15px;text-align:center;padding:5px 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blockseo .sq_tasks{padding:2px 0}#sq_blockseo .sq_auto_sticky input,#sq_blockseo .sq_tasks .sq_help,#sq_blockseo .sq_tasks ul li #sq_density_high,#sq_blockseo .sq_tasks ul li #sq_density_low,#sq_blockseo .sq_tasks ul li #sq_density_title_longtail,#sq_blockseo .sq_tasks ul li #sq_density_title_low,#sq_blockseo .sq_tasks ul li #sq_over_density_high,#sq_blockseo .sq_tasks ul li #sq_over_density_low{display:none}#sq_blockseo .sq_tasks ul{padding:10px 0}#sq_blockseo .sq_tasks ul li{position:relative;display:block;color:#000;background-color:#fff;font-weight:400;line-height:25px;padding:5px 40px 5px 5px;margin:5px;border:1px solid #e9e9e9}#sq_blockseo .sq_tasks ul li.sq_tasks_category{color:#999;background-color:transparent;padding:0;margin:5px;border:0!important;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}#sq_blockseo .sq_tasks .sq_fp_title_task{color:#6200ee}#sq_blockseo .sq_tasks ul li.checked .sq_fp_title_task{color:#fff}#sq_blockseo .sq_tasks ul li.checked{background-color:#4caf50;color:#fff;text-shadow:1px 1px #777}#sq_blockseo .sq_tasks ul li .sq_seo_priority{display:none;position:absolute;height:25px;width:30px;right:23px;top:4px}#sq_blockseo .sq_tasks ul li .sq_seo_locked{display:block;position:absolute;height:20px;width:20px;right:23px;top:4px;cursor:pointer}#sq_blockseo .sq_auto_sticky label span,#sq_blockseo .sq_tasks ul li .sq_seo_priority_essential{cursor:pointer}#sq_blockseo .sq_tasks ul li .arrow:after{content:none;background-color:transparent}#sq_blockseo .sq_tasks ul li .arrow{display:block;position:absolute;right:5px;top:6px;bottom:auto;left:auto;height:16px;width:16px;overflow:visible;z-index:1;cursor:pointer}#sq_blockseo .sq_tasks ul li.checked .arrow{background-position:-121px -76px}#sq_blockseo .sq_tasks ul li .arrow:hover{background-position:-146px -76px;z-index:2}#sq_blockseo .sq_tasks ul li .arrow:hover .sq_help{display:table;position:absolute;background:#fff;font-weight:400;color:#333;right:-7px;top:22px;height:50px;width:260px;padding:10px 5px;overflow:hidden;z-index:5;border:1px solid #ccc;border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;text-shadow:none}#sq_blockseo .sq_tasks ul li.sq_density_high,#sq_blockseo .sq_tasks ul li.sq_density_title_high,#sq_blockseo .sq_tasks ul li.sq_over_density_high{background-color:red!important;color:#fff!important}#sq_blockseo .sq_tasks ul li.sq_locked{color:#d3d3d3;background-color:#f8f8f8}#sq_blockseo .sq_error{padding:15px}body ul.sq_notification{position:fixed;background-color:#4caf50;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none!important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100001}body ul.sq_notification_front{z-index:100002}body ul.sq_density_high,body ul.sq_density_low,body ul.sq_density_title_high,body ul.sq_density_title_low{background-color:red!important}body ul.sq_density_high li,body ul.sq_density_low li,body ul.sq_density_title_high li,body ul.sq_density_title_low li{color:#fff!important}body ul.sq_notification li{position:relative;font-weight:400;color:#fff;text-shadow:1px 1px #777;line-height:16px;list-style:none!important;width:380px;height:auto;margin:0 auto;padding:10px 0;text-align:left}body ul.sq_notification li .arrow{position:absolute;top:8px;left:-33px;width:25px;height:25px;float:left;margin:0 10px 0 0}body ul.sq_notification li .arrow::before{content:"";display:none}body ul.sq_notification li .arrow::after{background-color:transparent!important}body ul.sq_complete,body ul.sq_complete li{list-style:none!important;height:auto;text-align:center}body ul.sq_complete{position:fixed;background-color:#4caf50;width:100%;top:28px;padding:0;margin:0;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100000003}body ul.sq_complete li{position:relative;font-weight:400;color:#fff;text-shadow:1px 1px #777;line-height:16px;margin:0 auto;padding:15px 0}#sq_blocksearch #sq_types{width:100%;height:auto;padding:5px 0;margin:0}#sq_blocksearch #sq_types ul{margin:0;padding:0;list-style:none}#sq_blocksearch #sq_types ul li{padding:8px;margin:0 12px;cursor:pointer;font-size:1.5rem}#postsquirrly:not(.sq_sticky) #sq_blocksearch #sq_types ul li{margin:0 6px}#postsquirrly:not(.sq_sticky) .sq_help,#postsquirrly:not(.sq_sticky) .sq_type_help{padding:0!important}#sq_blocksearch .sq_search{overflow:hidden;padding:0!important;margin:0!important;width:100%!important;height:auto;clear:both}#sq_blocksearch .sq_search .sq_search_notrelevant{text-align:center;text-decoration:none;color:#1c3c50;width:100%;display:block;margin:0;padding:5px;line-height:30px}#sq_blocksearch .sq_search #sq_search_second{text-align:center}#sq_blocksearch .sq_search #sq_keyword_second{display:inline-block;margin:13px 0;width:80%;line-height:26px;padding:6px;font-weight:400;color:#32373c;border-radius:0}#sq_blocksearch .sq_search #sq_keyword_second_check{display:inline-block;line-height:26px;width:18%;height:39px;background-color:#6200ee!important;font-weight:700;color:#fff;margin:0;padding:0;cursor:pointer}#sq_blocksearch .sq_search ul{padding:0;margin:0 auto;list-style:none;clear:both;max-width:335px}#sq_blocksearch .sq_search ul li.sq_search_li{display:block;width:95%;font-weight:400;padding:5px;margin:7px auto;background-color:#fff;border:1px solid #ddd;border-radius:0;-webkit-border-radius:0;-moz-border-radius:1px}#sq_blocksearch .sq_search .sq_attribution{clear:both;margin:0;padding:0}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li{-ms-flex:0 0 auto;flex:0 0 auto;flex-grow:1;max-width:100%;text-align:center;padding:10px;color:#fff;background-color:#6200ee!important;border-color:transparent;cursor:pointer}#sq_blocksearch .sq_search ul .sq_info{clear:both;color:#bcc4c8;padding:3px 0 0;float:right}#sq_blocksearch .sq_search .sq_info ul li{float:left;font-size:.7rem;margin-right:5px;padding-right:5px;border-right:1px solid #ccc}#sq_blocksearch .sq_search .sq_info ul li:last-child{border-right-width:0!important}#sq_blocksearch .sq_search ul li.sq_search_img_li{position:relative;float:left;background-color:#fff;width:100px;height:70px;padding:2px;margin:0 3px 6px 7px;border:1px solid #bbb;box-shadow:0 0 2px #ccc;-moz-box-shadow:0 0 2px #ccc;-webkit-box-shadow:0 0 2px #ccc;transition-property:border-color;transition-duration:.33s;-moz-transition-property:border-color;-moz-transition-duration:.33s;-webkit-transition-property:border-color;-webkit-transition-duration:.33s;cursor:pointer}#sq_blocksearch .sq_search ul li.sq_search_img_li:hover{border-color:#333}#sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(0,100px,70px,0);position:absolute;top:-3px;left:-3px;max-height:110px;max-width:140px;min-width:100px}#postsquirrly.sq_sticky .sq_search ul li.sq_search_img_li{margin:0 3px 6px 7px}#postsquirrly:not(.sq_sticky) #sq_blocksearch .sq_search ul li.sq_search_img_li{width:126px}#postsquirrly:not(.sq_sticky) #sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(0,126px,70px,0);max-width:150px;max-height:150px;min-width:126px}#postsquirrly:not(.sq_sticky) #sq_nokeyword{display:none!important}#sq_blocksearch #sq_search_img_filter{width:100%;background-color:#fff;text-align:center;padding:10px 0;border-top:1px solid #e8e8e8}#sq_blocksearch #sq_search_img_filter #sq_search_img_nolicence{margin:0 5px}#sq_blocksearch #sq_search_img_filter label#sq_search_img_nolicence_label{position:relative;color:#1d1f24;text-shadow:1px 1px #fff}#sq_blocksearch #sq_search_img_filter label.checked span{background-color:#6200ee}.sq_zoomImg_img{width:auto;height:54px}.sq_zoomImg{position:absolute;visibility:visible}.sq_zoomImg_Inner{background-color:#fff;border:1px solid #d9d9d9;-moz-box-shadow:0 4px 16px rgba(0,0,0,.2);-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2);color:#555;padding:5px;position:relative}.sq_zoomImg_frame img{border:1px solid #d9d9d9;display:block;margin:auto;max-width:115px;max-height:115px}#sq_blocksearch .sq_search li.sq_search_img_li .sq_attribute{position:absolute;bottom:-3px;right:-3px;background:#fff;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:1;padding:0 5px}#sq_blocksearch .sq_search ul li.search_category{clear:both;color:#464646;width:100%;height:16px;border:0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_avatar{float:left;width:36px;height:36px;margin:3px 10px 0 0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_content{margin-left:46px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_author{color:#555;line-height:15px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_name{line-height:19px;margin-right:5px;color:#555;font-weight:400;text-align:left}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_text{margin-left:0}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_title{font-weight:700;color:#333;line-height:19px;margin:0 0 5px}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_text{color:#333;line-height:19px;text-align:left}#sq_blocksearch .sq_show_mgs{clear:both;display:block;padding:10px;margin-top:10px;border-top:1px dashed #d1d1d1;text-align:center}#sq_blocksearch .sq_more{clear:both;position:relative;width:100%;text-align:center;padding:0;margin:0 0 5px}#sq_blocksearch .sq_more span{display:block;width:0;height:0;border-left:12px solid transparent;border-right:12px solid transparent;border-top:10px solid #6200ee;padding:0;margin:0 auto;cursor:pointer}#sq_suggestion .sq_show_mgs{margin:20px auto 0;border-top:none;text-align:center}#sq_blog_preview{position:fixed!important;border:1px solid #e5e5e5;padding:0;margin-bottom:15px;left:15%;top:10%;width:70%;height:80%;overflow:auto;background-color:#fff;z-index:999999}#sq_blog_preview_overlay{display:block;position:absolute;background-color:#999;border:0;content:" ";left:0;top:0;width:100%;height:100%;border-radius:2px 2px 0 0;opacity:.3;z-index:999998}#sq_blog_preview #sq_blog_preview_partner{position:absolute;top:15px;right:20px}#sq_blog_preview #sq_blog_preview_partner a{background-color:#333;text-decoration:none;color:#fff;font-size:.875rem;font-weight:700;margin-left:5px;padding:0 3px;border:1px solid #333}#sq_blog_preview #sq_blog_preview_title{display:block;font-size:1.2rem;font-weight:400;line-height:30px;color:#333;border-bottom:1px dashed #d1d1d1;margin:0 0 10px;padding:10px 0 10px 10px}#sq_blog_preview #sq_blog_preview_body{display:block;font-size:.875rem;color:#333;line-height:16px;text-align:left;padding:0 0 0 10px;max-height:300px;overflow-y:auto;overflow-x:hidden}#sq_blog_preview #sq_blog_preview_body p{position:relative;background-color:transparent;line-height:24px;padding:0;margin:0 0 16px;text-align:left;white-space:normal;color:#333}#sq_blog_preview #sq_blog_preview_body .sq_mark{background-color:#ffed5f;color:#000;padding:0 3px;font-size:.875rem;line-height:20px;box-shadow:0 0 5px #fff6ac;-moz-box-shadow:0 0 5px #fff6ac;-webkit-box-shadow:0 0 5px #fff6ac}#sq_blog_preview #sq_blog_preview_body .sq_blog_option{position:absolute;display:none;background-color:#f5f5f5;bottom:0;right:5px;cursor:pointer;z-index:1}#sq_blog_preview #sq_blog_preview_body p:hover{background-color:#f5f5f5}#sq_blog_preview #sq_blog_preview_body p:hover .sq_blog_option{display:block;-webkit-animation:fadeIn .3s;-moz-animation:fadeIn .3s;animation:fadeIn .3s}#sq_blocksearch{position:relative}#sq_blocksearch .sq_search ul li.sq_search_wiki_li .sq_wiki_title{font-weight:700;color:#333;margin:5px 0}#sq_blocksearch .sq_search ul li.sq_search_local_li .sq_local_title{font-weight:700;color:#333;line-height:18px;margin:0 0 5px}#sq_blocksearch .sq_research_div{display:none;clear:both;position:relative;width:100%!important;line-height:40px;padding:0;margin:0!important;text-align:center}#sq_blocksearch .sq_research_div #sq_research_link{font-weight:700;color:#21759b;margin-top:10px;text-align:center;cursor:pointer;text-decoration:none}#sq_blog_preview #sq_blog_preview_close{position:absolute;font-weight:700;color:#999;width:10px;line-height:16px;text-align:center;padding:0 4px 2px;border-radius:10px;cursor:pointer;z-index:2;top:20px;right:20px;font-size:20px}#sq_blockseo #sq_seo_refresh{text-align:center;height:29px!important;min-height:29px!important;cursor:pointer}#sq_blockseo progress::-webkit-progress-bar{background-color:#ccc;height:5px}#sq_blockseo progress::-webkit-progress-value{background-color:#6200ee;height:5px}#sq_blockseo progress{background-color:#6200ee;height:5px;line-height:5px}#postsquirrly.sq_frontend #sq_options{display:none}#postsquirrly.sq_frontend ul,#postsquirrly.sq_frontend ul li{list-style:none!important}
view/assets/css/rtl.min.css CHANGED
@@ -1 +1 @@
1
- #sq_wrap #sq_stats img{transform:scaleX(-1)}#sq_wrap a.position-absolute.float-right{left:7px;right:auto!important}#sq_wrap .card-title{text-align:right}#sq_wrap .sq_nav .sq_nav_item_icon{float:left;left:18px!important;right:auto!important}#sq_wrap .sq_help_toolbar{left:70px!important;right:auto!important}#sq_wrap .sq_icons_content{float:right!important;background-image:linear-gradient(90deg,#f8f9fa,#e6ecf1)!important}#sq_options>ul>li,.sq_offer_close{float:left!important}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item,.sq_dashboard_title{text-align:right!important}#sq_dashboard_content ul{margin:10px 20px 10px 0!important}@media (max-width:1239px){#sq_wrap .sq_nav .sq_nav_item:hover .sq_nav_item_title{right:70px}}.sq-switch.sq-switch-lg input+label::after,.sq-switch.sq-switch-sm input+label::after{right:2px;left:auto}.sq-switch.sq-switch-sm input:checked+label::after{right:calc(1.9215rem*.8);left:auto}#wpadminbar .sq-switch.sq-switch-sm input:checked+label::after{right:calc(2.9215rem*.8)}.sq-switch.sq-switch-lg input:checked+label::after{right:calc(calc(1.5rem*.8)*2);left:auto!important}#sq_wrap .fa-arrow-circle-left,#sq_wrap .fa-arrow-circle-right{-webkit-transform:rotate(180deg)!important;-moz-transform:rotate(180deg)!important;-ms-transform:rotate(180deg)!important;-o-transform:rotate(180deg)!important;transform:rotate(180deg)!important}#sq_seosettings .sq_pattern_list li.sq_nostyle,.sq-input-group .sq_pattern_list li.sq_nostyle{float:right!important;margin-right:auto!important;margin-left:10px!important}#sq_wrap .sq_col_side .sq_assistant li:not(.completed):not(.pattern) h4:after{content:""!important}#sq_wrap .sq_col_side .sq_assistant li:not(.completed):not(.pattern) h4:before{content:"\f107";display:inline;font-family:FontAwesome,Arial,sans-serif!important;font-size:16px!important;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:6px;font-weight:700;color:#cd5c5c}#sq_blockseo .sq_tasks ul li .arrow,.tooltip.bs-tooltip-right .arrow{left:0!important;right:auto!important}#sq_wrap #sq_focuspages .table.detailed tr td .sq_focuspages_lastaudited,#sq_wrap #sq_focuspages .table.detailed tr td .sq_focuspages_request{left:30px!important;right:auto!important}.sq_focuspages_content .sq_overflow_arrow_left{right:10px!important;left:auto!important}.sq_focuspages_content .sq_overflow_arrow_right{left:10px!important;right:auto!important}.sq_assistant .fa-check{margin-left:5px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label.sq_active:before,#sq_briefcase .sq_filter_label .sq_circle_label.sq_active:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label.sq_active:before{padding-right:calc(50% - 5px)!important}#sq_wrap .sq_sm_menu .sq_sm_dropdown{left:20px!important;right:auto!important}#sq_options_support .sq_options_support_popup{left:0!important;right:auto!important;text-align:right!important}#knob_checkseo{margin-right:-62px!important;margin-left:auto!important}#sq_options_feedback #sq_options_feedback_close,#sq_options_support #sq_options_close,#topcontrol{left:8px;right:auto!important}#sq_wrap .navbar .nav-link .sq_errorcount{margin:0 5px 0 -11px!important}.sq_errorcount{float:left!important}.menu-top.toplevel_page_sq_dashboard.wp-menu-open .sq_errorcount{margin:0 0 0 15px!important}#wpadminbar .sq_blocksnippet{left:5px!important;right:auto!important}#postsquirrly #sq_briefcase_icon,#postsquirrly .sq_box_close,#postsquirrly .sq_box_maximize,#postsquirrly .sq_box_minimize{padding:0 10px 0 0!important;float:left!important}#sq_blocksearch .sq_briefcase_item .sq_briefcase_item_circle,#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle{float:right!important}#sq_blockseo .sq_tasks ul li{padding:5px 5px 5px 40px}#sq_blockseo #sq_seo_refresh{float:left!important}
1
+ #sq_wrap #sq_stats img{transform:scaleX(-1)}#sq_wrap a.position-absolute.float-right{left:7px;right:auto!important}#sq_wrap .card-title{text-align:right}#sq_wrap .sq_nav .sq_nav_item_icon{float:left;left:18px!important;right:auto!important}#sq_wrap .sq_help_toolbar{left:70px!important;right:auto!important}#sq_wrap .sq_icons_content{float:right!important;background-image:linear-gradient(90deg,#f8f9fa,#e6ecf1)!important}#sq_options>ul>li,.sq_offer_close{float:left!important}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item,.sq_dashboard_title{text-align:right!important}#sq_dashboard_content ul{margin:10px 20px 10px 0!important}@media (max-width:1239px){#sq_wrap .sq_nav .sq_nav_item:hover .sq_nav_item_title{right:70px}}.div_ignore{left:100px;right:auto}.sq_logo{margin-left:4px!important}.sq-switch.sq-switch-lg input+label::after,.sq-switch.sq-switch-sm input+label::after,.sq-switch.sq-switch-xxs input+label::after{right:2px;left:auto}.sq-switch.sq-switch-sm input:checked+label::after{right:calc(1.9215rem*.7);left:auto}#wpadminbar .sq-switch.sq-switch-sm input:checked+label::after{right:calc(2.9215rem*.6)}.sq-switch.sq-switch-lg input:checked+label::after{right:calc(calc(1.5rem*.8)*2);left:auto!important}.sq-switch.sq-switch-xxs input:checked+label::after{right:calc(.9375em*.9);left:auto}#wpadminbar .sq-switch.sq-switch-xxs input:checked+label::after{right:calc(.9375em*.9)}#sq_wrap .fa-arrow-circle-left,#sq_wrap .fa-arrow-circle-right{-webkit-transform:rotate(180deg)!important;-moz-transform:rotate(180deg)!important;-ms-transform:rotate(180deg)!important;-o-transform:rotate(180deg)!important;transform:rotate(180deg)!important}#sq_seosettings .sq_pattern_list li.sq_nostyle,.sq-input-group .sq_pattern_list li.sq_nostyle{float:right!important;margin-right:auto!important;margin-left:10px!important}#sq_wrap .sq_col_side .sq_assistant li:not(.completed):not(.pattern) h4:after{content:""!important}#sq_wrap .sq_col_side .sq_assistant li:not(.completed):not(.pattern) h4:before{content:"\f107";display:inline;font-family:FontAwesome,Arial,sans-serif!important;font-size:16px!important;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin-right:6px;font-weight:700;color:#cd5c5c}.tooltip.bs-tooltip-right .arrow{left:0!important;right:auto!important}#sq_wrap #sq_focuspages .table.detailed tr td .sq_focuspages_lastaudited,#sq_wrap #sq_focuspages .table.detailed tr td .sq_focuspages_request{left:30px!important;right:auto!important}.sq_focuspages_content .sq_overflow_arrow_left{right:10px!important;left:auto!important}.sq_focuspages_content .sq_overflow_arrow_right{left:10px!important;right:auto!important}.sq_assistant .fa-check{margin-left:5px}#sq_briefcase .sq_add_keyword_dialog .sq_checkbox_label.sq_active:before,#sq_briefcase .sq_filter_label .sq_circle_label.sq_active:before,#sq_briefcase .sq_label_manage_popup .sq_checkbox_label.sq_active:before{padding-right:calc(50% - 5px)!important}#sq_wrap .sq_sm_menu .sq_sm_dropdown{left:20px!important;right:auto!important}#sq_options_support .sq_options_support_popup{left:0!important;right:auto!important;text-align:right!important}#knob_checkseo{margin-right:-62px!important;margin-left:auto!important}#sq_options_feedback #sq_options_feedback_close,#sq_options_support #sq_options_close,#topcontrol{left:8px;right:auto!important}#sq_wrap .navbar .nav-link .sq_errorcount{margin:0 5px 0 -11px!important}.sq_errorcount{margin:9px 5px 0!important}.menu-top.toplevel_page_sq_dashboard.wp-menu-open .sq_errorcount{margin:0 0 0 15px!important}#sq_blockseo .sq_tasks ul li .arrow,#wpadminbar .sq_blocksnippet{left:5px!important;right:auto!important}#postsquirrly #sq_briefcase_icon,#postsquirrly .sq_box_close,#postsquirrly .sq_box_maximize,#postsquirrly .sq_box_minimize,#sq_blockseo #sq_seo_refresh,.sq_errorcount{float:left!important}#sq_blocksearch .sq_briefcase_item .sq_briefcase_item_circle,#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle{float:right!important}#sq_blockseo .sq_tasks ul li{padding:5px 5px 5px 40px!important}#sq_wrap .sq_col_menu:not(.sq_col_menu_big) .sq_nav .sq_nav_item:hover .sq_nav_item_text{right:40px!important;padding-left:10px!important;box-shadow:none!important}.sq_back_button{left:0!important;right:auto!important}.sq_audit_score .dial,.sq_chances_ranking{margin-right:-58px!important}.sq_pattern_field .sq_pattern_icon{left:15px!important;right:auto!important}.sq_focus_visibility{float:right!important;margin:0 10px!important}
view/assets/css/slasearch.min.css DELETED
@@ -1 +0,0 @@
1
- @-webkit-keyframes play{0%{background-position:0}to{background-position:-400px}}@-moz-keyframes play{0%{background-position:0}to{background-position:-400px}}@-ms-keyframes play{0%{background-position:0}to{background-position:-400px}}@-o-keyframes play{0%{background-position:0}to{background-position:-400px}}@keyframes play{0%{background-position:0}to{background-position:-400px}}#sq_research{display:none!important}#sq_blocksearch,#sq_blocksearch input,#sq_blocksearch textarea{font-family:Arial,Helvetica,sans-serif}#sq_tinymce_inactive{padding:20px!important;font-size:16px}#sq_blocksearch ::-webkit-scrollbar{width:18px;height:15px}#sq_blocksearch ::-webkit-scrollbar-button:end:increment,#sq_blocksearch ::-webkit-scrollbar-button:start:decrement{height:1px;display:block;background-color:#eff7ff}#sq_blocksearch ::-webkit-scrollbar-track{border-left:6px solid transparent;border-right:1px solid transparent;background-clip:padding-box}#sq_blocksearch ::-webkit-scrollbar-thumb:vertical{min-height:28px;padding-top:100px;border-left:6px solid transparent;border-right:1px solid transparent;border-top:0 solid transparent;border-bottom:0 solid transparent;background-clip:padding-box;background-color:rgba(0,0,0,.2);-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07)}#sq_search_second{text-align:center}#sq_blocksearch .sq_keyword{background-color:#8684a4;position:relative;text-align:center;height:auto;width:100%;z-index:11}#side-sortables #sq_blocksearch .sq_keyword{z-index:998}#sq_blocksearch .sq_keyword #sq_keyword_help{position:absolute;background-color:brown;font-size:24px;font-weight:700;color:#fff;top:-24px;left:-238px;width:204px;height:auto;padding:20px 5px;line-height:22px;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px;box-shadow:0 0 9px 0 #000;-moz-box-shadow:0 0 9px 0 #000;-webkit-box-shadow:0 0 9px 0 #000}#sq_blocksearch .sq_keyword #sq_keyword_help span{position:absolute;right:-25px;top:34px;width:0;height:0;border-top:13px solid transparent;border-bottom:9px solid transparent;border-left:25px solid brown}#sq_blocksearch .sq_keyword #sq_keyword_help p{line-height:13px;margin-top:5px;font-size:11px;color:#d1d1d1}#sq_blocksearch #sq_keyword,#sq_blocksearch #sq_keyword_second{display:inline-block;margin:13px 2px;width:85%;line-height:26px;height:30px;padding:0 5px;font-size:15px;font-weight:400;border-radius:0;background-color:#e5f5dd;color:#32373c}#sq_blocksearch #sq_keyword::placeholder,#sq_blocksearch #sq_keyword_second::placeholder{color:rgba(120,120,120,.31);font-size:14px;font-style:italic}#sq_blocksearch #sq_keyword_check,#sq_blocksearch #sq_keyword_second_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#6200ee;font-size:15px;font-weight:700;color:#fff;margin:0;padding:0;border:1px solid #fff;cursor:pointer}#sq_blocksearch .sq_search_notrelevant{line-height:30px;width:125px}.sq_search>a{width:100%;text-align:center;margin:4px auto 0;padding:0;text-decoration:underline;font-size:14px;color:#21759b}#postsquirrly #sq_briefcase_icon{float:right;background:url(../img/logos/briefcase_92.png) no-repeat -3px -3px;background-size:32px 32px;margin:0;cursor:pointer;font-weight:700;color:brown;width:26px;height:22px}#postsquirrly .sq_briefcase_smallicon,.sq_briefcase_icon{background:url(../img/logos/briefcase_92.png) no-repeat;background-size:100%}.sq_briefcase_icon_white{background:url(../img/logos/briefcase_92w.png) no-repeat;background-size:100%}#postsquirrly .sq_briefcase_smallicon{display:block;float:left;margin:1px 7px 0 0;height:20px;width:20px}#postsquirrly #sq_briefcase_analytics{background-position:-434px -23px}#postsquirrly #sq_briefcase_help{background-position:-28px -50px}#postsquirrly #sq_briefcase_refresh{float:right;width:22px;height:22px;line-height:22px;text-align:center;font-size:12px;font-weight:700;color:#fff;margin:-1px 12px 0 4px;padding:0;border:0;cursor:pointer}#sq_blocksearch #sq_briefcase_list,#sq_blocksearch .sq_search{padding:0!important;margin:0!important;width:100%!important;clear:both}#sq_blocksearch #sq_briefcase_list{display:table;position:relative;background-color:#fff;min-height:75px;border-bottom:1px solid #aaa}#sq_blocksearch #sq_briefcase_bottom{background-color:#f1f1f1;height:20px;margin:2px -1px 0;border-top:1px solid #ddd}#sq_blocksearch #sq_briefcase_list #sq_briefcase_keyword{display:inline-block;margin:2px 4px 0;width:97%;line-height:26px;height:30px;padding:0 5px;font-size:13px;font-weight:400;background-color:#e2ffd6;border-radius:0;color:#333}#sq_blocksearch #sq_briefcase_list #sq_briefcase_keyword_check{display:inline-block;line-height:26px;width:26px;height:28px;background-color:#6200ee;font-size:15px;font-weight:700;color:#fff;margin:0;padding:0;border:1px solid #fff;cursor:pointer}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_used{margin:0 0 7px;padding:0;box-shadow:0 1px 5px -3px #999}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_circles{margin:0 0 5px 5px!important;width:100%;height:auto;clear:both;display:table}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_notused{box-shadow:0 -1px 5px -3px #999;max-height:130px;overflow:hidden;overflow-y:auto;clear:both}#sq_blocksearch #sq_briefcase_content.sq_error{margin:15px 0!important}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item{position:relative;color:#4f1440;padding:0;text-align:left;font-size:13px;margin:0 0 0 1px;line-height:20px}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_item_percent{width:12%;white-space:nowrap;display:inline-block;padding:5px 2px 0;text-align:right;font-weight:700;font-size:12px;cursor:pointer}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{cursor:pointer}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_value{width:70%;max-width:245px;display:inline-block;padding:5px;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden;vertical-align:top}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item{padding:5px}#sq_blocksearch #sq_briefcase_content ul.sq_briefcase_item_notused li.sq_briefcase_item .sq_briefcase_value{padding:0;display:block;clear:left}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_addbriefcase{font-size:10px;position:absolute;color:#8b0000;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item .sq_briefcase_optimize{font-size:10px;position:absolute;color:#8b0000;right:5px;bottom:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_addbriefcase,#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_item_delete,#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover .sq_briefcase_optimize,.sq_search>a{display:block}#sq_blocksearch #sq_briefcase_content .sq_briefcase_empty{color:green;font-weight:700;text-align:center;padding:5px;margin:0}#sq_blocksearch #sq_briefcase_content .sq_briefcase_item_notused .sq_briefcase_empty{color:#a7a6a7}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item_used .sq_briefcase_value{width:75%;max-width:190px}#sq_blocksearch li.sq_main_keyword{background-color:#fafad2}#sq_blocksearch li.sq_main_keyword:after{content:"\f005";font-family:FontAwesome,Arial,sans-serif;font-size:10px;position:absolute;margin:5px 0;right:18px}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_separator{height:3px;background-color:#fff;box-shadow:0 1px 2px -1px #333}#sq_blocksearch #sq_briefcase_content li .sq_briefcase_item_delete,#sq_blocksearch #sq_briefcase_topcontent li .sq_briefcase_item_delete{display:none;float:right;font-family:Arial,sans-serif;font-size:13px;font-weight:700;color:#999;height:20px;text-align:center;padding:5px 4px 2px;border:0;cursor:pointer;z-index:2}#sq_blocksearch #sq_briefcase_content li .sq_briefcase_item_delete{right:3px;width:15px}#sq_blocksearch #sq_briefcase_content li.sq_briefcase_item:hover,#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover{background-color:#e2ffd6}#sq_blocksearch #sq_briefcase_topcontent>ul,#sq_blocksearch #sq_types ul{margin:0;padding:0}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item{position:relative;color:#4f1440;padding:0 0 5px;text-align:left;font-size:13px;margin:0 0 0 1px;line-height:20px}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item .sq_briefcase_item_percent{width:12%;white-space:nowrap;max-width:40px;display:inline-block;margin:5px 2px 0;text-align:right;font-weight:700;font-size:12px;vertical-align:middle;cursor:pointer}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item_used .sq_briefcase_value{cursor:pointer}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover .sq_briefcase_addbriefcase,#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_separator{display:none}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item .sq_briefcase_optimize{font-size:10px;position:absolute;color:#8b0000;right:5px;top:5px;cursor:pointer;float:right;display:none;z-index:10}#sq_blocksearch #sq_briefcase_topcontent .sq_briefcase_empty{color:#2680b4;font-weight:700;text-align:center;padding:5px;margin:auto;cursor:pointer}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover .sq_briefcase_item_delete,#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item:hover .sq_briefcase_optimize,#sq_blocksearch .sq_search ul li.sq_search_li:hover .sq_attribution>ul{display:block}#sq_blocksearch #sq_briefcase_topcontent #sq_briefcase_keyword{display:inline-block;margin:0 4px;width:97%;line-height:26px;height:30px;padding:0 5px;font-size:13px;font-weight:400;background-color:#e2ffd6;color:#333}#sq_blocksearch #sq_briefcase_topcontent li.sq_briefcase_item_used .sq_briefcase_value{width:75%;display:inline-block;margin:5px 2px 0;vertical-align:middle;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#sq_blocksearch #sq_briefcase_topcontent li .sq_briefcase_item_delete{width:10px;margin-right:8px}#sq_blocksearch .sq_briefcase_item .sq_briefcase_item_circle{display:block;float:left;width:13px;height:3px;margin:0 2px 0 0}#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle{display:block;font-family:FontAwesome,Arial,sans-serif;float:left;width:20px;height:10px;margin:5px 3px 0;cursor:pointer}#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle:before{content:" ";display:block;height:100%;width:100%;margin:-2px 0 2px}#sq_blocksearch .sq_briefcase_item_circles .sq_briefcase_circle.sq_active:before{display:block;font-size:10px;line-height:14px;text-align:center;margin:-2px 0 2px;content:"\f00c";color:#fff;text-shadow:1px 0 #555}#sq_blocksearch #sq_types{display:none;height:35px;padding:5px 0;background-color:#fff;box-shadow:0 1px 3px -2px #888;-moz-box-shadow:0 1px 3px -2px #888;-webkit-box-shadow:0 1px 3px -2px #888}#sq_blocksearch #sq_types ul li{float:left;margin:0 0 0 23px;cursor:pointer;font-weight:700;color:brown;width:26px;height:25px}#sq_blocksearch #sq_types #sq_type_img{background-position:0 0}#sq_blocksearch #sq_types #sq_type_twitter{background-position:-27px 0}#sq_blocksearch #sq_types #sq_type_news{background-position:-137px 0}#sq_blocksearch #sq_types #sq_type_blog{background-position:-54px 0}#sq_blocksearch #sq_types #sq_type_wiki{background-position:-84px 0}#sq_blocksearch #sq_types #sq_type_local{background-position:-164px 0}#sq_blocksearch #sq_types #sq_type_img:hover{background-position:0 -25px}#sq_blocksearch #sq_types #sq_type_twitter:hover{background-position:-27px -25px}#sq_blocksearch #sq_types #sq_type_news:hover{background-position:-137px -24px}#sq_blocksearch #sq_types #sq_type_blog:hover{background-position:-54px -25px}#sq_blocksearch #sq_types #sq_type_wiki:hover{background-position:-84px -25px}#sq_blocksearch #sq_types #sq_type_local:hover{background-position:-164px -25px}#sq_blocksearch .sq_search{display:block;overflow-y:auto;max-height:310px;overflow-x:hidden}#sq_blocksearch .sq_search ul{padding:0;margin:0 auto;list-style:none;clear:both;max-width:260px}#sq_blocksearch .sq_search ul li.sq_search_li{display:block;width:95%;font-size:12px;font-weight:400;padding:5px;margin:7px auto;background-color:#fff;border:1px solid #ddd;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px;box-shadow:0 1px 0 #a8a8a8;-webkit-box-shadow:0 1px 0 #a8a8a8;-moz-box-shadow:0 1px 0 #a8a8a8}#sq_blocksearch .sq_search .sq_attribution{clear:both;margin:0;text-shadow:1px 1px #fff;height:25px}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul{display:none;background-color:#f1f1f1;height:20px;padding:2px;margin:0;text-align:center;text-shadow:1px 1px #fff}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li{font-size:11px;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-weight:400;color:brown;float:left;width:70px;margin-right:5px;padding-right:5px;border-right:1px solid #ccc;cursor:pointer}#sq_blocksearch .sq_search li.sq_search_li .sq_attribution>ul>li:last-child{border-right:0!important}#sq_blocksearch .sq_search ul .sq_info{clear:both;font-size:10px;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;color:#aaa;padding:3px 0 0;float:right}#sq_blocksearch .sq_search .sq_info ul li{float:left;margin-right:5px;padding-right:5px;border-right:1px solid #ccc}#sq_blocksearch .sq_search .sq_info ul li:last-child{border-right-width:0!important}#sq_blocksearch .sq_search ul li.sq_search_img_li{position:relative;float:left;background-color:#fff;width:75px;height:56px;padding:2px;margin:0 3px 6px 7px;border:1px solid #bbb;box-shadow:0 0 2px #ccc;-moz-box-shadow:0 0 2px #ccc;-webkit-box-shadow:0 0 2px #ccc;transition-property:border-color;transition-duration:.33s;-moz-transition-property:border-color;-moz-transition-duration:.33s;-webkit-transition-property:border-color;-webkit-transition-duration:.33s;cursor:pointer}#sq_blocksearch .sq_search ul li.sq_search_img_li:hover{border-color:#333}#sq_blocksearch .sq_search ul li.sq_search_img_li>img{clip:rect(3px,74px,55px,3px);position:absolute;margin-top:-4px;margin-left:-4px;max-height:90px;max-width:90px;min-width:90px}#postsquirrly.sq_sticky .sq_search ul li.sq_search_img_li{margin:0 3px 6px 7px}#sq_blocksearch #sq_search_img_filter{width:100%;background-color:#fff;text-align:center;padding:4px 0;border-top:1px solid #e8e8e8}#sq_blocksearch #sq_search_img_filter label#sq_search_img_nolicence_label{position:relative;font-size:13px;color:#333;text-shadow:1px 1px #fff}#sq_blocksearch #sq_search_img_filter label span{position:absolute;display:block;width:28px;height:25px;left:-29px;top:-4px}#sq_blocksearch #sq_search_img_filter label.checked span{background-position:-190px -47px}.sq_zoomImg_img{width:auto;height:54px}.sq_zoomImg{position:absolute;visibility:visible}.sq_zoomImg_Inner{background-color:#fff;border:1px solid #d9d9d9;-moz-box-shadow:0 4px 16px rgba(0,0,0,.2);-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2);color:#555;padding:5px;position:relative}.sq_zoomImg_frame img{border:1px solid #d9d9d9;display:block;margin:auto;max-width:115px;max-height:115px}#sq_blocksearch .sq_search li.sq_search_img_li .sq_attribute{position:absolute;font-family:Arial,sans-serif;font-size:8px;color:#999;bottom:-3px;right:-3px;background:#fff;border:gray;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:1;padding:0 5px}#sq_blocksearch .sq_search ul li.search_category{clear:both;font-size:14px;color:#464646;width:100%;height:16px;border:0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_avatar{float:left;width:36px;height:36px;margin:3px 10px 0 0}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_content{font-size:10px;margin-left:46px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_author{color:#555;font-size:12px;line-height:15px}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_author_name{line-height:17px;margin-right:5px;color:#555;font-size:12px;font-weight:400;text-align:left}#sq_blocksearch .sq_search ul li.sq_search_twitter_li .sq_quote_text{margin-left:0}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_title{font-size:12px;font-weight:700;color:#333;line-height:18px;margin:0 0 5px}#sq_blocksearch .sq_search ul li.sq_search_blog_li .sq_news_text{font-size:12px;color:#333;line-height:15px;text-align:left}#sq_blog_preview{position:fixed!important;border:1px solid #e5e5e5;padding:0;margin-bottom:15px;z-index:999999;left:0;bottom:0;width:100%;height:50%;overflow:auto;background-color:#fff}#sq_blog_preview:before{display:block;border:0;content:" ";width:100%;height:5px;border-radius:2px 2px 0 0;opacity:.3}#sq_blog_preview #sq_blog_preview_partner{position:absolute;top:15px;right:20px}#sq_blog_preview #sq_blog_preview_partner a{background-color:#333;text-decoration:none;color:#fff;font-size:22px;font-weight:700;margin-left:5px;padding:0 3px;border:1px solid #333}#sq_blog_preview #sq_blog_preview_title{display:block;font-size:18px;font-weight:400;line-height:30px;color:#333;border-bottom:1px dashed #d1d1d1;margin:0 0 10px;padding:10px 0 10px 10px}#sq_blog_preview #sq_blog_preview_body{display:block;font-size:12px;color:#333;line-height:16px;text-align:left;padding:0 0 0 10px;max-height:300px;overflow-y:auto;overflow-x:hidden}#sq_blog_preview #sq_blog_preview_body p{position:relative;background-color:transparent;font-family:"Noto Sans","Open Sans",Arial,sans-serif;font-size:14px;font-weight:400;line-height:24px;padding:0;margin:0 0 16px;text-align:left;white-space:normal;color:#333}#sq_blog_preview #sq_blog_preview_body .sq_mark{background-color:#ffed5f;color:#000;padding:0 3px;font-size:14px;line-height:20px;box-shadow:0 0 5px #fff6ac;-moz-box-shadow:0 0 5px #fff6ac;-webkit-box-shadow:0 0 5px #fff6ac}#sq_blog_preview #sq_blog_preview_body .sq_blog_option{position:absolute;display:none;background-color:#f5f5f5;font-size:11px;color:red;bottom:0;right:5px;cursor:pointer;z-index:1}#sq_blog_preview #sq_blog_preview_body p:hover{background-color:#f5f5f5}#sq_blog_preview #sq_blog_preview_body p:hover .sq_blog_option{display:block;-webkit-animation:fadeIn .3s;-moz-animation:fadeIn .3s;animation:fadeIn .3s}#sq_blocksearch{position:relative}#sq_blocksearch .sq_search ul li.sq_search_local_li .sq_local_title,#sq_blocksearch .sq_search ul li.sq_search_wiki_li .sq_wiki_title{font-size:12px;font-weight:700;color:#333;line-height:18px;margin:0 0 5px}#sq_blocksearch .sq_research_div{display:none;clear:both;position:relative;width:100%!important;line-height:40px;padding:0;margin:0!important;text-align:center}#sq_blocksearch .sq_research_div #sq_research_link{font-size:13px;font-weight:700;color:#21759b;margin-top:10px;text-align:center;cursor:pointer;text-decoration:none}#sq_blocksearch #sq_search_close{right:8px;font-size:13px;color:#999}#sq_blocksearch #sq_briefcase_close,#sq_blocksearch #sq_search_close,#sq_blog_preview #sq_blog_preview_close{position:absolute;font-family:Arial,sans-serif;font-weight:700;width:10px;line-height:16px;text-align:center;padding:0 4px 2px;border-radius:10px;cursor:pointer;z-index:2}#sq_blog_preview #sq_blog_preview_close{color:#999}#sq_blocksearch #sq_briefcase_close{right:8px;font-size:13px}#sq_blog_preview #sq_blog_preview_close{top:20px;right:20px;font-size:20px}#sq_blocksearch #sq_briefcase_close{top:6px;color:#ccc}#sq_blocksearch #sq_search_close{top:-28px}#sq_blocksearch .sq_show_mgs{clear:both;display:block;padding:7px;margin-top:10px;border-top:1px dashed #d1d1d1}#sq_suggestion .sq_show_mgs{max-width:200px;margin:20px auto 0;border-top:none}#sq_blocksearch .sq_minloading,#sq_blog_preview.sq_minloading{position:relative;opacity:.5;min-height:40px}#sq_blocksearch .sq_minloading:before,#sq_blog_preview.sq_minloading:before{position:absolute;right:calc(50% - 10px);top:calc(50% - 8px);display:block;float:right;line-height:30px;content:"";padding:0;margin:0 0 0 5px;height:16px;width:20px;background:url(../img/minloading.png) no-repeat;-webkit-animation:play 1s steps(10) infinite;-moz-animation:play 1s steps(10) infinite;-o-animation:play 1s steps(10) infinite;animation:play 1s steps(10) infinite}#sq_blocksearch .sq_more{clear:both;position:relative;width:100%;text-align:center;padding:0;margin:0 0 5px}#sq_blocksearch .sq_more span{display:block;width:0;height:0;border-left:20px solid transparent;border-right:20px solid transparent;border-top:12px solid #6200ee;padding:0;margin:0 auto;cursor:pointer}#publishing-action{float:left!important;width:100%}#sq_publish_alert{text-align:left;font-size:12px;font-weight:700;color:red;text-shadow:1px 1px #fff;margin:0 0 5px;padding:0}#sq_publish_alert #sq_publish_alert_yes{display:block;float:left;clear:both;margin:2px 0 0 8px;padding:0 35px;line-height:29px;font-size:14px;font-weight:700;color:#fff;cursor:pointer;background-color:#6200ee;text-shadow:1px 1px #777;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}#sq_publish_alert #sq_publish_alert_yes:hover{background-color:#4f8dca}#sq_subscription{font-size:13px;font-weight:700;color:red;padding:0!important;text-align:center;width:275px;margin:0 auto 15px;background-color:#fff;box-shadow:0 0 6px 0 #888;-moz-box-shadow:0 0 6px 0 #888;-webkit-box-shadow:0 0 6px 0 #888}#sq_subscription .sq_renew{padding:10px;line-height:20px}#sq_subscription .sq_renew a{display:block;font-size:16px;background-color:#6200ee;color:#fff;font-weight:700;margin:10px;padding:6px;text-decoration:none;border-radius:7px}#sq_subscription>a{display:block;margin:0;padding:0;height:300px}#sq_options_feedback .sq_options_feedback_popup li{clear:both}#sq_facebook_b{padding:6px 0;clear:both}#sq_facebook_b>span{display:block;float:left;font-weight:700;color:#006400}#sq_facebook_b .sq_facebook_title{width:100%;font-size:16px;text-align:center;margin:5px auto}#sq_facebook_b .sq_facebook_image{width:100px;margin:3px 7px 5px 24px}#sq_facebook_b .sq_facebook_image img{width:100px}#sq_facebook_b .sq_facebook_frame{margin-top:35px}#sq_coupon{position:relative;background-image:none;background-color:#f3f8fd;border:2px solid #f1f2f4;border-radius:5px;padding:0;margin:0 0 10px;height:auto;width:100%}#sq_coupon #sq_coupon_close{position:absolute;background-color:#e5d8cd;right:-6px;top:-3px;font-size:13px;font-weight:700;color:#333;line-height:16px;width:8px;height:12px;padding:0 5px 6px;border-radius:10px;border:1px solid #556b2f;cursor:pointer;z-index:2}.sq_notice.sq_fixed{position:fixed;z-index:10000}.sq_notice{top:28px;text-align:center;width:100%}.sq_notice.sq_notice>div{display:block;margin:0!important;width:100%!important;line-height:40px;background-color:#fafad2}.sq_notice.sq_notice>div.sq_success{background-color:#4caf50}
 
view/assets/css/slaseo.min.css DELETED
@@ -1 +0,0 @@
1
- @keyframes move{0%{background-position:0 0,0 0,0 0}to{background-position:-100px 0,0 0,0 0}}@-webkit-keyframes move{0%{background-position:0 0,0 0,0 0}to{background-position:-100px 0,0 0,0 0}}#sq_blockseo{position:relative;min-height:110px}#normal-sortables #sq_blockseo .sq_auto_sticky{display:none!important}#sq_blockseo .sq_auto_sticky input,#sq_blockseo .sq_tasks .sq_help{display:none}#sq_blockseo .sq_sticky_keyword{margin:9px -7px -4px;padding:7px;display:block;border-top:1px solid #ddd;background-color:#8684a4;color:#ccc}#sq_blockseo .sq_sticky_keyword span{color:#fff;font-weight:700}#sq_blockseo .sq_auto_sticky label span{display:block;height:20px;width:19px;margin:0 3px 0 0;border:0;cursor:pointer}#sq_blockseo .sq_auto_sticky input:checked+label span.sq_switch_img{background-position:-407px -76px}#sq_blockseo .sq_overlay:before{content:attr(data-title);font-size:19px;line-height:30px;position:absolute;display:block;text-align:center;width:98%;z-index:9999;color:#fff;top:calc(50% - 20px);cursor:pointer;text-shadow:1px 1px #333}#sq_blockseo .sq_overlay{position:absolute;width:100%;background-color:#333;text-align:center;margin-bottom:0;vertical-align:middle;opacity:.7;z-index:2;line-height:0;bottom:0;top:1px;text-shadow:2px 2px #000;cursor:pointer}#sq_blockseo .sq_header #sq_seo_refresh{float:right;line-height:22px;text-align:center;width:64px;height:22px;background-color:#f7681a!important;font-size:12px;font-weight:700;color:#fff;margin:-2px 0;padding:0;border:0;border-radius:2px!important;cursor:pointer}progress.sq_blockseo_progress,progress.sq_blockseo_topprogress{width:100%;height:4px;margin:0;padding:0;display:block;-webkit-appearance:none;border:0;box-shadow:none}progress.sq_blockseo_topprogress{position:fixed;top:0;z-index:100003}progress.sq_blockseo_progress::-webkit-progress-bar,progress.sq_blockseo_topprogress::-webkit-progress-bar{background:0 0;border-radius:0}progress.sq_blockseo_progress::-webkit-progress-value,progress.sq_blockseo_topprogress::-webkit-progress-value{border-radius:0;box-shadow:inset 0 1px 1px 0 rgba(255,255,255,.4);-webkit-animation:move 5s linear infinite;animation:move 5s linear infinite}progress.sq_blockseo_progress::-webkit-progress-value{background-color:#4caf50;background-size:276px;background-image:linear-gradient(90deg,red 0,orange 30%,orange 60%,#4caf50 100%)}#normal-sortables progress.sq_blockseo_progress::-webkit-progress-value{background-size:490px}progress.sq_blockseo_topprogress::-webkit-progress-value{background-color:#5ba4cf;background-size:100%}progress.sq_blockseo_100progress::-webkit-progress-value{background-color:#4caf50}#sq_blockseo,#sq_blockseo input,#sq_blockseo textarea{font-family:Arial,Helvetica,sans-serif}#sq_blockseo .sq_tasks{padding:2px 0}#sq_blockseo .sq_tasks ul{padding:10px 0}#sq_blockseo .sq_tasks ul li{position:relative;display:block;background-color:#fff;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-size:11px;font-weight:400;line-height:15px;padding:5px 40px 5px 5px;margin:5px 7px;border:1px solid #e9e9e9}#sq_blockseo .sq_tasks ul li.sq_tasks_category{color:#999;background-color:transparent;padding:0;margin:13px 0 0 5px;border:0!important;box-shadow:none!important;-moz-box-shadow:none!important;-webkit-box-shadow:none!important}#sq_blockseo .sq_tasks .sq_fp_title_task{color:#6200ee}#sq_blockseo .sq_tasks ul li.checked .sq_fp_title_task{color:#fff}#sq_blockseo .sq_tasks ul li.checked{background-color:#4caf50;color:#fff;text-shadow:1px 1px #777}#sq_blockseo .sq_tasks ul li .sq_seo_priority{display:none;position:absolute;height:25px;width:30px;right:23px;top:4px}#sq_blockseo .sq_tasks ul li .sq_seo_locked{display:block;position:absolute;height:20px;width:20px;right:23px;top:4px;cursor:pointer}#sq_blockseo .sq_tasks ul li .sq_seo_priority_essential{cursor:pointer}#sq_blockseo .sq_tasks ul li .arrow:after{content:none;background-color:transparent}#sq_blockseo .sq_tasks ul li .arrow{display:block;position:absolute;right:5px;top:6px;bottom:auto;left:auto;height:16px;width:16px;overflow:visible;z-index:1;cursor:pointer}#sq_blockseo .sq_tasks ul li.checked .arrow{background-position:-121px -76px}#sq_blockseo .sq_tasks ul li .arrow:hover{background-position:-146px -76px;z-index:2}#sq_blockseo .sq_tasks ul li .arrow:hover .sq_help{display:table;position:absolute;background:#232323;font-weight:400;font-size:12px;line-height:18px;color:#efefef;left:-240px;top:20px;height:50px;width:260px;padding:10px 5px;overflow:hidden;z-index:5;border:1px solid #ccc;border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;text-shadow:none}#sq_blockseo .sq_tasks ul li.sq_density_high,#sq_blockseo .sq_tasks ul li.sq_density_title_high,#sq_blockseo .sq_tasks ul li.sq_over_density_high{background-color:red!important;color:#fff!important}#sq_blockseo .sq_tasks ul li.sq_locked{color:#d3d3d3;background-color:#f8f8f8}#sq_blockseo .sq_error{padding:15px}body ul.sq_notification{position:fixed;background-color:#4caf50;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none!important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100001}body ul.sq_notification_front{z-index:100002}body ul.sq_density_high,body ul.sq_density_low,body ul.sq_density_title_high,body ul.sq_density_title_low{background-color:red!important}body ul.sq_density_high li,body ul.sq_density_low li,body ul.sq_density_title_high li,body ul.sq_density_title_low li{color:#fff!important}body ul.sq_complete li,body ul.sq_notification li{position:relative;font-family:"Lucida Grande",Arial,Helvetica,sans-serif;font-size:15px;font-weight:400;color:#fff;text-shadow:1px 1px #777;line-height:16px;list-style:none!important;width:380px;height:auto;margin:0 auto;padding:10px 0;text-align:left}body ul.sq_complete li span,body ul.sq_notification li .arrow{position:absolute;top:8px;left:-33px;width:25px;height:25px;float:left;margin:0 10px 0 0}body ul.sq_notification li .arrow::after{background-color:transparent!important}body ul.sq_complete{position:fixed;background-color:#4caf50;text-align:center;width:100%;height:auto;top:28px;padding:0;margin:0;list-style:none!important;box-shadow:0 4px 4px -3px #333;-moz-box-shadow:0 4px 4px -3px #333;-webkit-box-shadow:0 4px 4px -3px #333;z-index:100000003}body ul.sq_complete li{width:336px;padding:22px 0}body ul.sq_complete li span{background:url(../img/editor/complete.png) no-repeat;background-size:45px;top:0;left:-75px;width:50px;height:59px;margin:4px 5px 0 0}@media only screen and (max-width:850px){#postsquirrly .sq_box.sq_sticky{position:inherit}#sq_blocksearch .sq_search ul li.sq_search_img_li{margin:0 2px 9px 20px;padding:6px}progress.sq_blockseo_progress::-webkit-progress-value{background-size:705px}}@media only screen and (max-width:500px){progress.sq_blockseo_progress::-webkit-progress-value{background-size:460px}}.sq_request_synonyms,.sq_request_synonyms_oo{color:#f08080;text-decoration:underline;cursor:pointer}.sq_request_synonyms_oo{color:#e0ffff}
 
view/assets/css/sqbootstrap.rtl.min.css CHANGED
@@ -1 +1 @@
1
- @-webkit-keyframes sq-progress-bar-stripes{0%{background-position:1em 0}to{background-position:0 0}}@keyframes sq-progress-bar-stripes{0%{background-position:1em 0}to{background-position:0 0}}.sq-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;margin-right:-15px!important;margin-left:-15px!important}.sq-small,.sq-small *{font-size:11px!important;font-weight:400!important;line-height:20px!important}.sq-mark{padding:.2em!important;background-color:#fcf8e3!important}.sq-table{width:100%!important;max-width:100%!important;margin-bottom:1em!important;background-color:transparent!important}.sq-table td,.sq-table th{padding:.75em!important;vertical-align:top!important;border-top:1px solid #dee2e6!important}.sq-table thead th{vertical-align:bottom!important;border-bottom:2px solid #dee2e6!important}.sq-table tbody+tbody{border-top:2px solid #dee2e6!important}.sq-table .sq-table{background-color:#fff!important}.sq-table-sm td,.sq-table-sm th{padding:.3em!important}.sq-table-bordered,.sq-table-bordered td,.sq-table-bordered th{border:1px solid #dee2e6!important}.sq-table-bordered thead td,.sq-table-bordered thead th{border-bottom-width:2px!important}.sq-table-borderless tbody+tbody,.sq-table-borderless td,.sq-table-borderless th,.sq-table-borderless thead th,.sq-table-dark.sq-table-bordered{border:0!important}.sq-table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)!important}.sq-table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)!important}.sq-table-primary,.sq-table-primary>td,.sq-table-primary>th{background-color:#b8daff!important}.sq-table-hover .sq-table-primary:hover,.sq-table-hover .sq-table-primary:hover>td,.sq-table-hover .sq-table-primary:hover>th{background-color:#9fcdff!important}.sq-table-secondary,.sq-table-secondary>td,.sq-table-secondary>th{background-color:#d6d8db!important}.sq-table-hover .sq-table-secondary:hover,.sq-table-hover .sq-table-secondary:hover>td,.sq-table-hover .sq-table-secondary:hover>th{background-color:#c8cbcf!important}.sq-table-success,.sq-table-success>td,.sq-table-success>th{background-color:#c3e6cb!important}.sq-table-hover .sq-table-success:hover,.sq-table-hover .sq-table-success:hover>td,.sq-table-hover .sq-table-success:hover>th{background-color:#b1dfbb!important}.sq-table-info,.sq-table-info>td,.sq-table-info>th{background-color:#bee5eb!important}.sq-table-hover .sq-table-info:hover,.sq-table-hover .sq-table-info:hover>td,.sq-table-hover .sq-table-info:hover>th{background-color:#abdde5!important}.sq-table-warning,.sq-table-warning>td,.sq-table-warning>th{background-color:#ffeeba!important}.sq-table-hover .sq-table-warning:hover,.sq-table-hover .sq-table-warning:hover>td,.sq-table-hover .sq-table-warning:hover>th{background-color:#ffe8a1!important}.sq-table-danger,.sq-table-danger>td,.sq-table-danger>th{background-color:#f5c6cb!important}.sq-table-hover .sq-table-danger:hover,.sq-table-hover .sq-table-danger:hover>td,.sq-table-hover .sq-table-danger:hover>th{background-color:#f1b0b7!important}.sq-table-light,.sq-table-light>td,.sq-table-light>th{background-color:#fdfdfe!important}.sq-table-hover .sq-table-light:hover,.sq-table-hover .sq-table-light:hover>td,.sq-table-hover .sq-table-light:hover>th{background-color:#ececf6!important}.sq-table-dark>td,.sq-table-dark>th{background-color:#c6c8ca!important}.sq-table-hover .sq-table-dark:hover,.sq-table-hover .sq-table-dark:hover>td,.sq-table-hover .sq-table-dark:hover>th{background-color:#b9bbbe!important}.sq-table-active,.sq-table-active>td,.sq-table-active>th,.sq-table-hover .sq-table-active:hover,.sq-table-hover .sq-table-active:hover>td,.sq-table-hover .sq-table-active:hover>th{background-color:rgba(0,0,0,.075)!important}.sq-table .thead-dark th{color:#fff!important;background-color:#212529!important;border-color:#32383e!important}.sq-table .thead-light th{color:#495057!important;background-color:#e9ecef!important;border-color:#dee2e6!important}.sq-table-dark{color:#fff!important;background-color:#212529!important}.sq-table-dark td,.sq-table-dark th,.sq-table-dark thead th{border-color:#32383e!important}.sq-table-dark.sq-table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)!important}.sq-table-dark.sq-table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)!important}@media (max-width:575.98px){.sq-table-responsive-sm{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive-sm>.sq-table-bordered{border:0!important}}@media (max-width:767.98px){.sq-table-responsive-md{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive-md>.sq-table-bordered{border:0!important}}@media (max-width:991.98px){.sq-table-responsive-lg{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive-lg>.sq-table-bordered{border:0!important}}@media (max-width:1199.98px){.sq-table-responsive-xl{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive-xl>.sq-table-bordered{border:0!important}}.sq-table-responsive{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive>.sq-table-bordered{border:0!important}.sq-form-control{display:block;width:100%!important;padding:.375em .75em!important;font-size:1em!important;line-height:1.5!important;color:#495057;background-color:#fff;background-clip:padding-box!important;border:1px solid #ced4da!important;border-radius:.25em!important;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out!important}.sq-form-control::-ms-expand{background-color:transparent!important;border:0}.sq-form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0!important;box-shadow:0 0 0 .2em rgba(0,123,255,.25)!important}.sq-form-control::-webkit-input-placeholder{color:#6c757d!important;opacity:1!important}.sq-form-control::-moz-placeholder{color:#6c757d!important;opacity:1!important}.sq-form-control:-ms-input-placeholder,.sq-form-control::-ms-input-placeholder{color:#919aa2!important;opacity:1!important}.sq-form-control::placeholder{color:#919aa2!important;opacity:1!important}.sq-form-control:disabled,.sq-form-control[readonly]{background-color:#e9ecef!important;opacity:1!important}select.sq-form-control:not([size]):not([multiple]){height:calc(2.25em + 2px)!important}select.sq-form-control:focus::-ms-value{color:#495057!important;background-color:#fff!important}.sq-form-control-file,.sq-form-control-plaintext,.sq-form-control-range{display:block!important;width:100%!important}.sq-form-control-plaintext{padding-top:.375em!important;padding-bottom:.375em!important;margin-bottom:0!important;line-height:1.5!important;color:#212529!important;background-color:transparent!important;border:solid transparent!important;border-width:1px 0!important}.sq-form-control-plaintext.sq-form-control-lg,.sq-form-control-plaintext.sq-form-control-sm,.sq-input-group-lg .sq-form-control-plaintext.sq-form-control,.sq-input-group-lg>.sq-input-group-append>.sq-form-control-plaintext.sq-btn,.sq-input-group-lg>.sq-input-group-append>.sq-form-control-plaintext.sq-input-group-text,.sq-input-group-lg>.sq-input-group-prepend>.sq-form-control-plaintext.sq-btn,.sq-input-group-lg>.sq-input-group-prepend>.sq-form-control-plaintext.sq-input-group-text,.sq-input-group-sm>.sq-form-control-plaintext.sq-form-control,.sq-input-group-sm>.sq-input-group-append>.sq-form-control-plaintext.sq-btn,.sq-input-group-sm>.sq-input-group-append>.sq-form-control-plaintext.sq-input-group-text,.sq-input-group-sm>.sq-input-group-prepend>.sq-form-control-plaintext.sq-btn,.sq-input-group-sm>.sq-input-group-prepend>.sq-form-control-plaintext.sq-input-group-text{padding-right:0!important;padding-left:0!important}.sq-form-control-sm,.sq-input-group-sm>.sq-form-control,.sq-input-group-sm>.sq-input-group-append>.sq-btn,.sq-input-group-sm>.sq-input-group-append>.sq-input-group-text,.sq-input-group-sm>.sq-input-group-prepend>.sq-btn,.sq-input-group-sm>.sq-input-group-prepend>.sq-input-group-text{padding:.25em .5em!important;font-size:.875em!important;line-height:1.5!important;border-radius:.2em!important}.sq-input-group-sm>.sq-input-group-append>select.sq-btn:not([size]):not([multiple]),.sq-input-group-sm>.sq-input-group-append>select.sq-input-group-text:not([size]):not([multiple]),.sq-input-group-sm>.sq-input-group-prepend>select.sq-btn:not([size]):not([multiple]),.sq-input-group-sm>.sq-input-group-prepend>select.sq-input-group-text:not([size]):not([multiple]),.sq-input-group-sm>select.sq-form-control:not([size]):not([multiple]),select.sq-form-control-sm:not([size]):not([multiple]){height:calc(1.8125em + 2px)!important}.sq-form-control-lg,.sq-input-group-lg .sq-form-control,.sq-input-group-lg>.sq-input-group-append>.sq-btn,.sq-input-group-lg>.sq-input-group-append>.sq-input-group-text,.sq-input-group-lg>.sq-input-group-prepend>.sq-btn,.sq-input-group-lg>.sq-input-group-prepend>.sq-input-group-text{padding:.5em!important;font-size:1.05em!important;line-height:1.5!important;border-radius:.3em!important}.sq-input-group-lg>.sq-input-group-append>select.sq-btn:not([size]):not([multiple]),.sq-input-group-lg>.sq-input-group-append>select.sq-input-group-text:not([size]):not([multiple]),.sq-input-group-lg>.sq-input-group-prepend>select.sq-btn:not([size]):not([multiple]),.sq-input-group-lg>.sq-input-group-prepend>select.sq-input-group-text:not([size]):not([multiple]),.sq-input-group-lg>select.sq-form-control:not([size]):not([multiple]),select.sq-form-control-lg:not([size]):not([multiple]){height:calc(2.875em + 2px)!important}.sq-input-group>select{max-height:47px!important}.sq-form-group{margin-bottom:1em!important}.sq-form-text{display:block!important;margin-top:.25em!important}.sq-form-row{display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;margin-right:-5px!important;margin-left:-5px!important}.sq-form-row>.col,.sq-form-row>[class*=col-]{padding-right:5px!important;padding-left:5px!important}.sq-form-check{position:relative!important;display:block!important;padding-right:1.25em!important}.sq-form-check-input{position:absolute!important;margin-top:.3em!important;margin-right:-1.25em!important}.sq-form-check-input:disabled~.sq-form-check-label{color:#6c757d!important}.sq-form-check-label{margin-bottom:0!important}.sq-form-check-inline,.sq-form-inline{-ms-flex-align:center!important;align-items:center!important}.sq-form-check-inline{display:-ms-inline-flexbox!important;display:inline-flex!important;padding-right:0!important;margin-left:.75em!important}.sq-form-check-inline .sq-form-check-input{position:static!important;margin-top:0!important;margin-left:.3125em!important;margin-right:0!important}.sq-form-inline{display:-ms-flexbox!important;display:flex!important;-ms-flex-flow:row wrap!important;flex-flow:row wrap!important}.sq-form-inline .sq-form-check{width:100%!important}@media (min-width:576px){.sq-form-inline .sq-form-group,.sq-form-inline label{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:center!important;align-items:center!important;margin-bottom:0!important}.sq-form-inline label{-ms-flex-pack:center!important;justify-content:center!important}.sq-form-inline .sq-form-group{-ms-flex:0 0 auto!important;flex:0 0 auto!important;-ms-flex-flow:row wrap!important;flex-flow:row wrap!important}.sq-form-inline .sq-form-control{display:inline-block!important;width:auto!important;vertical-align:middle!important}.sq-form-inline .sq-form-control-plaintext{display:inline-block!important}.sq-form-inline .custom-select,.sq-form-inline .sq-input-group{width:auto!important}.sq-form-inline .sq-form-check{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:center!important;align-items:center!important;-ms-flex-pack:center!important;justify-content:center!important;width:auto!important;padding-right:0!important}.sq-form-inline .sq-form-check-input{position:relative!important;margin-top:0!important;margin-left:.25em!important;margin-right:0!important}.sq-offset-sm-0{margin-right:0!important}.sq-offset-sm-1{margin-right:8.333333%!important}.sq-offset-sm-2{margin-right:16.666667%!important}.sq-offset-sm-3{margin-right:25%!important}.sq-offset-sm-4{margin-right:33.333333%!important}.sq-offset-sm-5{margin-right:41.666667%!important}.sq-offset-sm-6{margin-right:50%!important}.sq-offset-sm-7{margin-right:58.333333%!important}.sq-offset-sm-8{margin-right:66.666667%!important}.sq-offset-sm-9{margin-right:75%!important}.sq-offset-sm-10{margin-right:83.333333%!important}.sq-offset-sm-11{margin-right:91.666667%!important}}.sq-input-group{position:relative!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;-ms-flex-align:stretch!important;align-items:stretch!important;width:100%!important}.sq-input-group>.sq-form-control{position:relative!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important;width:100%!important;margin-bottom:0!important}.sq-input-group>.sq-form-control:focus{z-index:3!important}.sq-input-group>.sq-form-control+.sq-form-control{margin-right:-1px!important}.sq-input-group>.sq-form-control:not(:first-child),.sq-input-group>.sq-form-control:not(:last-child){border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sq-input-group-append,.sq-input-group-prepend{display:-ms-flexbox!important;display:flex!important}.sq-input-group-append .sq-btn,.sq-input-group-prepend .sq-btn{position:relative!important;z-index:2!important}.sq-input-group-append,.sq-input-group-append .sq-btn+.sq-btn,.sq-input-group-append .sq-btn+.sq-input-group-text,.sq-input-group-append .sq-input-group-text+.sq-btn,.sq-input-group-append .sq-input-group-text+.sq-input-group-text,.sq-input-group-prepend,.sq-input-group-prepend .sq-btn+.sq-btn,.sq-input-group-prepend .sq-btn+.sq-input-group-text,.sq-input-group-prepend .sq-input-group-text+.sq-btn,.sq-input-group-prepend .sq-input-group-text+.sq-input-group-text{margin-right:-1px!important}.sq-input-group-text{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:center!important;align-items:center!important;padding:.375em .75em!important;margin-bottom:0!important;font-size:1em!important;font-weight:400!important;line-height:1.5!important;color:#495057!important;text-align:center!important;white-space:nowrap!important;background-color:#e9ecef!important;border:1px solid #ced4da!important;border-radius:.25em!important}.sq-input-group-text input[type=checkbox],.sq-input-group-text input[type=radio]{margin-top:0!important}.sq-input-group>.sq-input-group-append:last-child>.sq-btn:not(:last-child):not(.dropdown-toggle),.sq-input-group>.sq-input-group-append:last-child>.sq-input-group-text:not(:last-child),.sq-input-group>.sq-input-group-append:not(:last-child)>.sq-btn,.sq-input-group>.sq-input-group-append:not(:last-child)>.sq-input-group-text,.sq-input-group>.sq-input-group-prepend>.sq-btn,.sq-input-group>.sq-input-group-prepend>.sq-input-group-text{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sq-input-group>.sq-input-group-append>.sq-btn,.sq-input-group>.sq-input-group-append>.sq-input-group-text,.sq-input-group>.sq-input-group-prepend:first-child>.sq-btn:not(:first-child),.sq-input-group>.sq-input-group-prepend:first-child>.sq-input-group-text:not(:first-child),.sq-input-group>.sq-input-group-prepend:not(:first-child)>.sq-btn,.sq-input-group>.sq-input-group-prepend:not(:first-child)>.sq-input-group-text{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sq-nav{display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;padding-right:0!important;margin-bottom:0!important;list-style:none!important}.sq-nav-link{display:block!important;padding:.5em 1em!important}.sq-nav-link:focus,.sq-nav-link:hover{text-decoration:none!important}.sq-nav-link.disabled{color:#6c757d!important}.sq-nav-tabs{border-bottom:1px solid #dee2e6}.sq-nav-tabs .sq-nav-item{margin-bottom:-1px!important}.sq-nav-tabs .sq-nav-item a{height:auto!important;line-height:10px!important}.sq-nav-tabs .sq-nav-link{border:1px solid transparent!important;border-top-left-radius:.25em!important;border-top-right-radius:.25em!important}.sq-nav-tabs .sq-nav-link:focus,.sq-nav-tabs .sq-nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6!important}.sq-nav-tabs .sq-nav-link.disabled{color:#6c757d!important;background-color:transparent!important;border-color:transparent!important}.sq-nav-tabs .sq-nav-item.show .sq-nav-link,.sq-nav-tabs .sq-nav-link.active{color:#495057!important;background-color:#fff!important;border-color:#dee2e6 #dee2e6 #fff!important}.sq-nav-tabs .dropdown-menu{margin-top:-1px!important;border-top-left-radius:0!important;border-top-right-radius:0!important}.sq-nav-pills .sq-nav-link{border-radius:.25em!important}.sq-nav-pills .show>.sq-nav-link,.sq-nav-pills .sq-nav-link.active{color:#fff!important;background-color:#007bff!important}.sq-nav-fill .sq-nav-item{-ms-flex:1 1 auto!important;flex:1 1 auto!important;text-align:center!important}.sq-nav-justified .sq-nav-item{-ms-flex-preferred-size:0!important;flex-basis:0!important;-ms-flex-positive:1!important;flex-grow:1!important;text-align:center!important}.sq-tab-content>.sq-tab-panel{display:none!important}.sq-tab-content>.active{display:block!important}.sq-nav-tabs--vertical{border-bottom:none!important;display:flex!important;flex-flow:column nowrap!important}.sq-nav-tabs--left{margin:0!important}.sq-nav-tabs--left .sq-nav-item+.sq-nav-item{margin-top:.25em!important}.sq-nav-tabs--left .sq-nav-link{transition:border-color .125s ease-in!important;white-space:nowrap!important}.sq-nav-tabs--left .sq-nav-link:hover{background-color:#f7f7f7!important;border-color:transparent!important}.sq-nav-tabs--left .sq-nav-link.active{border-bottom-color:#ddd!important;border-right-color:#fff!important;border-bottom-left-radius:.25em!important;border-top-right-radius:0!important;margin-right:-1px!important}.sq-nav-tabs--left .sq-nav-link.active:hover{background-color:#fff!important;border-color:#0275d8 #fff #0275d8 #0275d8!important}.sq-navbar{position:relative!important;padding:.5em 1em!important}.sq-navbar,.sq-navbar>.container,.sq-navbar>.container-fluid{display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;-ms-flex-align:center!important;align-items:center!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.sq-navbar-brand{display:inline-block!important;padding-top:.3125em!important;padding-bottom:.3125em!important;margin-right:1em!important;font-size:1.25em!important;line-height:inherit!important;white-space:nowrap!important}.sq-navbar-brand:focus,.sq-navbar-brand:hover{text-decoration:none}.sq-navbar-nav{display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important;padding-right:0!important;margin-bottom:0!important;list-style:none!important}.sq-navbar-nav .nav-link{padding-right:0!important;padding-left:0!important}.sq-navbar-nav .dropdown-menu{position:static!important;float:none!important}.sq-navbar-text{display:inline-block!important;padding-top:.5em!important;padding-bottom:.5em!important}.sq-navbar-collapse{-ms-flex-preferred-size:100%!important;flex-basis:100%!important;-ms-flex-positive:1!important;flex-grow:1!important;-ms-flex-align:center!important;align-items:center!important}.sq-navbar-toggler{padding:.25em .75em!important;font-size:1.25em!important;line-height:1!important;background-color:transparent!important;border:1px solid transparent!important;border-radius:.25em!important}.sq-navbar-toggler:focus,.sq-navbar-toggler:hover{text-decoration:none!important}.sq-navbar-toggler:not(:disabled):not(.disabled){cursor:pointer!important}.sq-navbar-toggler-icon{display:inline-block!important;width:1.5em!important;height:1.5em!important;vertical-align:middle!important;content:""!important;background:no-repeat center center!important;background-size:100% 100%!important}@media (max-width:575.98px){.sq-navbar-expand-sm>.container,.sq-navbar-expand-sm>.container-fluid{padding-right:0!important;padding-left:0!important}}@media (min-width:576px){.sq-navbar-expand-sm{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand-sm .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand-sm .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand-sm .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand-sm>.container,.sq-navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand-sm .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand-sm .sq-navbar-toggler{display:none!important}}@media (max-width:767.98px){.sq-navbar-expand-md>.container,.sq-navbar-expand-md>.container-fluid{padding-right:0!important;padding-left:0!important}}@media (min-width:768px){.sq-navbar-expand-md{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand-md .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand-md .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand-md .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand-md>.container,.sq-navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand-md .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand-md .sq-navbar-toggler{display:none!important}}@media (max-width:991.98px){.sq-navbar-expand-lg>.container,.sq-navbar-expand-lg>.container-fluid{padding-right:0!important;padding-left:0!important}}@media (min-width:992px){.sq-navbar-expand-lg{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand-lg .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand-lg .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand-lg .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand-lg>.container,.sq-navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand-lg .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand-lg .sq-navbar-toggler{display:none!important}}@media (max-width:1199.98px){.sq-navbar-expand-xl>.container,.sq-navbar-expand-xl>.container-fluid{padding-right:0!important;padding-left:0!important}}@media (min-width:1200px){.sq-navbar-expand-xl{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand-xl .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand-xl .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand-xl .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand-xl>.container,.sq-navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand-xl .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand-xl .sq-navbar-toggler{display:none!important}}.sq-navbar-expand{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand>.container,.sq-navbar-expand>.container-fluid{padding-right:0!important;padding-left:0!important}.sq-navbar-expand .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand>.container,.sq-navbar-expand>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand .sq-navbar-toggler{display:none!important}.sq-navbar-light .sq-navbar-brand{color:rgba(0,0,0,.9)!important}.sq-navbar-light .sq-navbar-brand:focus,.sq-navbar-light .sq-navbar-brand:hover,.sq-navbar-light .sq-navbar-text a:focus,.sq-navbar-light .sq-navbar-text a:hover{color:rgba(0,0,0,.9)!important}.sq-navbar-light .sq-navbar-nav .nav-link{color:rgba(0,0,0,.5)!important}.sq-navbar-light .sq-navbar-nav .nav-link:focus,.sq-navbar-light .sq-navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)!important}.sq-navbar-light .sq-navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)!important}.sq-navbar-light .sq-navbar-nav .active>.nav-link,.sq-navbar-light .sq-navbar-nav .nav-link.active,.sq-navbar-light .sq-navbar-nav .nav-link.show,.sq-navbar-light .sq-navbar-nav .show>.nav-link,.sq-navbar-light .sq-navbar-text a{color:rgba(0,0,0,.9)!important}.sq-navbar-light .sq-navbar-toggler{color:rgba(0,0,0,.5)!important;border-color:rgba(0,0,0,.1)!important}.sq-navbar-light .sq-navbar-toggler-icon{background-image:url("data:image/svg+xmlcharset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.sq-navbar-light .sq-navbar-text{color:rgba(0,0,0,.5)!important}.sq-navbar-dark .sq-navbar-brand{color:#fff!important}.sq-navbar-dark .sq-navbar-brand:focus,.sq-navbar-dark .sq-navbar-brand:hover,.sq-navbar-dark .sq-navbar-text a:focus,.sq-navbar-dark .sq-navbar-text a:hover{color:#fff!important}.sq-navbar-dark .sq-navbar-nav .nav-link{color:rgba(255,255,255,.5)!important}.sq-navbar-dark .sq-navbar-nav .nav-link:focus,.sq-navbar-dark .sq-navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)!important}.sq-navbar-dark .sq-navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)!important}.sq-navbar-dark .sq-navbar-nav .active>.nav-link,.sq-navbar-dark .sq-navbar-nav .nav-link.active,.sq-navbar-dark .sq-navbar-nav .nav-link.show,.sq-navbar-dark .sq-navbar-nav .show>.nav-link,.sq-navbar-dark .sq-navbar-text a{color:#fff!important}.sq-navbar-dark .sq-navbar-toggler{color:rgba(255,255,255,.5)!important;border-color:rgba(255,255,255,.1)!important}.sq-navbar-dark .sq-navbar-toggler-icon{background-image:url("data:image/svg+xmlcharset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.sq-navbar-dark .sq-navbar-text{color:rgba(255,255,255,.5)!important}.sq-card{position:relative!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important;min-width:0!important;word-wrap:break-word!important;background-color:#fff!important;background-clip:border-box!important;border:1px solid rgba(0,0,0,.125)!important;border-radius:.25em!important}.sq-card>hr{margin-right:0!important;margin-left:0!important}.sq-card>.sq-list-group:first-child .sq-list-group-item:first-child{border-top-left-radius:.25em!important;border-top-right-radius:.25em!important}.sq-card>.sq-list-group:last-child .sq-list-group-item:last-child{border-bottom-right-radius:.25em!important;border-bottom-left-radius:.25em!important}.sq-card-body{-ms-flex:1 1 auto!important;flex:1 1 auto!important;padding:1.25em!important}.sq-card-title{margin-bottom:.75em!important}.sq-card-subtitle{margin-top:-.375em!important;margin-bottom:0!important}.sq-card-text:last-child{margin-bottom:0!important}.sq-card-link:hover{text-decoration:none!important}.sq-card-link+.sq-card-link{margin-right:1.25em!important}.sq-card-header{padding:.75em 1.25em!important;margin-bottom:0!important;background-color:rgba(0,0,0,.03)!important;border-bottom:1px solid rgba(0,0,0,.125)!important}.sq-card-header:first-child{border-radius:calc(.25em - 1px) calc(.25em - 1px) 0 0!important}.sq-card-header+.sq-list-group .sq-list-group-item:first-child{border-top:0!important}.sq-card-footer{padding:.75em 1.25em!important;background-color:rgba(0,0,0,.03)!important;border-top:1px solid rgba(0,0,0,.125)!important}.sq-card-footer:last-child{border-radius:0 0 calc(.25em - 1px) calc(.25em - 1px)!important}.sq-card-footer .sq-switch label{font-size:14px!important}.sq-card-header-tabs{margin-bottom:-.75em!important;border-bottom:0!important}.sq-card-header-pills,.sq-card-header-tabs{margin-right:-.625em!important;margin-left:-.625em!important}.sq-card-img-overlay{position:absolute!important;top:0!important;right:0!important;bottom:0!important;left:0!important;padding:1.25em!important}.sq-card-img{width:100%!important;border-radius:calc(.25em - 1px)!important}.sq-card-img-top{width:100%!important;border-top-left-radius:calc(.25em - 1px)!important;border-top-right-radius:calc(.25em - 1px)!important}.sq-card-img-bottom{width:100%!important;border-bottom-right-radius:calc(.25em - 1px)!important;border-bottom-left-radius:calc(.25em - 1px)!important}.sq-card-deck{display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important}.sq-card-deck .sq-card{margin-bottom:15px!important}@media (min-width:576px){.sq-card-deck{-ms-flex-flow:row wrap!important;flex-flow:row wrap!important;margin-right:-15px!important;margin-left:-15px!important}.sq-card-deck .sq-card{display:-ms-flexbox!important;display:flex!important;-ms-flex:1 0 0!important;flex:1 0 0!important;-ms-flex-direction:column!important;flex-direction:column!important;margin-right:15px!important;margin-bottom:0!important;margin-left:15px!important}}.sq-card-group{display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important}.sq-card-group>.sq-card{margin-bottom:15px!important}@media (min-width:576px){.sq-card-group{-ms-flex-flow:row wrap!important;flex-flow:row wrap!important}.sq-card-group>.sq-card{-ms-flex:1 0 0!important;flex:1 0 0!important;margin-bottom:0!important}.sq-card-group>.sq-card+.sq-card{margin-left:0!important;border-left:0!important}.sq-card-group>.sq-card:first-child,.sq-card-group>.sq-card:first-child .sq-card-header,.sq-card-group>.sq-card:first-child .sq-card-img-top{border-top-right-radius:0!important}.sq-card-group>.sq-card:first-child,.sq-card-group>.sq-card:first-child .sq-card-footer,.sq-card-group>.sq-card:first-child .sq-card-img-bottom{border-bottom-right-radius:0!important}.sq-card-group>.sq-card:last-child,.sq-card-group>.sq-card:last-child .sq-card-header,.sq-card-group>.sq-card:last-child .sq-card-img-top{border-top-right-radius:0!important}.sq-card-group>.sq-card:last-child,.sq-card-group>.sq-card:last-child .sq-card-footer,.sq-card-group>.sq-card:last-child .sq-card-img-bottom{border-bottom-right-radius:0!important}.sq-card-group>.sq-card:only-child{border-radius:.25em!important}.sq-card-group>.sq-card:only-child .sq-card-header,.sq-card-group>.sq-card:only-child .sq-card-img-top{border-top-left-radius:.25em!important;border-top-right-radius:.25em!important}.sq-card-group>.sq-card:only-child .sq-card-footer,.sq-card-group>.sq-card:only-child .sq-card-img-bottom{border-bottom-right-radius:.25em!important;border-bottom-left-radius:.25em!important}.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child),.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child) .sq-card-footer,.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child) .sq-card-header,.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child) .sq-card-img-bottom,.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child) .sq-card-img-top{border-radius:0!important}}.sq-card-columns .sq-card{margin-bottom:.75em!important}@media (min-width:576px){.sq-card-columns{-webkit-column-count:3!important;-moz-column-count:3!important;column-count:3!important;-webkit-column-gap:1.25em!important;-moz-column-gap:1.25em!important;column-gap:1.25em!important;orphans:1!important;widows:1!important}.sq-card-columns .sq-card{display:inline-block!important;width:100%!important}}.sq-breadcrumb,.sq-btn{border-radius:.25em!important}.sq-breadcrumb{display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;padding:.75em 1em!important;margin-bottom:1em!important;list-style:none!important;background-color:#e9ecef!important}.sq-breadcrumb-item+.sq-breadcrumb-item{padding-right:.5em!important}.sq-breadcrumb-item+.sq-breadcrumb-item::before{display:inline-block!important;padding-right:.5em!important;color:#6c757d!important;content:"/"!important}.sq-breadcrumb-item+.sq-breadcrumb-item:hover::before{text-decoration:none!important}.sq-breadcrumb-item.active{color:#6c757d!important}.sq-btn{display:inline-block!important;font-weight:400!important;text-align:center!important;white-space:nowrap!important;vertical-align:middle!important;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important;border:1px solid transparent!important;padding:.375em .75em!important;font-size:1em!important;line-height:1.5!important;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out!important}.sq-btn:focus,.sq-btn:hover{text-decoration:none!important}.sq-btn.focus,.sq-btn:focus{outline:0!important;box-shadow:0 0 0 .2em rgba(0,123,255,.25)!important}.sq-btn.disabled,.sq-btn:disabled{opacity:.65!important}.sq-btn:not(:disabled):not(.disabled){cursor:pointer!important}.sq-btn:not(:disabled):not(.disabled).active,.sq-btn:not(:disabled):not(.disabled):active{background-image:none!important}a.sq-btn.disabled,fieldset:disabled a.sq-btn{pointer-events:none!important}.sq-btn-primary{background-color:#2680b4!important;border-color:#2680b4!important}.sq-btn-primary,.sq-btn-primary:hover{color:#fff!important}.sq-btn-primary.focus,.sq-btn-primary:focus{box-shadow:0 0 0 .2em rgba(0,123,255,.5)!important}.sq-btn-primary.disabled,.sq-btn-primary:disabled{color:#fff!important;background-color:#007bff!important;border-color:#007bff!important}.show>.sq-btn-primary.dropdown-toggle,.sq-btn-primary:not(:disabled):not(.disabled).active,.sq-btn-primary:not(:disabled):not(.disabled):active{color:#fff!important;border-color:#005cbf!important}.show>.sq-btn-primary.dropdown-toggle:focus,.sq-btn-primary:not(:disabled):not(.disabled).active:focus,.sq-btn-primary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(0,123,255,.5)!important}.sq-btn-secondary{color:#fff!important;background-color:#6c757d!important;border-color:#6c757d!important}.sq-btn-secondary:hover{color:#fff!important;background-color:#5a6268!important;border-color:#545b62!important}.sq-btn-secondary.focus,.sq-btn-secondary:focus{box-shadow:0 0 0 .2em rgba(108,117,125,.5)!important}.sq-btn-secondary.disabled,.sq-btn-secondary:disabled{color:#fff!important;background-color:#6c757d!important;border-color:#6c757d!important}.show>.sq-btn-secondary.dropdown-toggle,.sq-btn-secondary:not(:disabled):not(.disabled).active,.sq-btn-secondary:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#545b62!important;border-color:#4e555b!important}.show>.sq-btn-secondary.dropdown-toggle:focus,.sq-btn-secondary:not(:disabled):not(.disabled).active:focus,.sq-btn-secondary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(108,117,125,.5)!important}.sq-btn-success{color:#fff!important;background-color:#28a745!important}.sq-btn-success:hover{color:#fff!important;border-color:#1e7e34!important}.sq-btn-success.focus,.sq-btn-success:focus{box-shadow:0 0 0 .2em rgba(40,167,69,.5)!important}.sq-btn-success.disabled,.sq-btn-success:disabled{color:#fff!important;background-color:#28a745!important;border-color:#28a745!important}.show>.sq-btn-success.dropdown-toggle,.sq-btn-success:not(:disabled):not(.disabled).active,.sq-btn-success:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#1e7e34!important;border-color:#1c7430!important}.show>.sq-btn-success.dropdown-toggle:focus,.sq-btn-success:not(:disabled):not(.disabled).active:focus,.sq-btn-success:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(40,167,69,.5)!important}.sq-btn-info,.sq-btn-info:hover{color:#fff!important;background-color:#17a2b8!important;border-color:#17a2b8!important}.sq-btn-info:hover{background-color:#138496!important;border-color:#117a8b!important}.sq-btn-info.focus,.sq-btn-info:focus{box-shadow:0 0 0 .2em rgba(23,162,184,.5)!important}.sq-btn-info.disabled,.sq-btn-info:disabled{color:#fff!important;background-color:#17a2b8!important;border-color:#17a2b8!important}.show>.sq-btn-info.dropdown-toggle,.sq-btn-info:not(:disabled):not(.disabled).active,.sq-btn-info:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#117a8b!important;border-color:#10707f!important}.show>.sq-btn-info.dropdown-toggle:focus,.sq-btn-info:not(:disabled):not(.disabled).active:focus,.sq-btn-info:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(23,162,184,.5)!important}.sq-btn-warning,.sq-btn-warning:hover{color:#212529!important}.sq-btn-warning.focus,.sq-btn-warning:focus{box-shadow:0 0 0 .2em rgba(255,193,7,.5)!important}.sq-btn-warning.disabled,.sq-btn-warning:disabled{color:#212529!important;background-color:#ffc107!important;border-color:#ffc107!important}.show>.sq-btn-warning.dropdown-toggle,.sq-btn-warning:not(:disabled):not(.disabled).active,.sq-btn-warning:not(:disabled):not(.disabled):active{color:#212529!important;background-color:#d39e00!important;border-color:#c69500!important}.show>.sq-btn-warning.dropdown-toggle:focus,.sq-btn-warning:not(:disabled):not(.disabled).active:focus,.sq-btn-warning:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(255,193,7,.5)!important}.sq-btn-danger{color:#fff!important;background-color:#dc3545!important;border-color:#dc3545!important}.sq-btn-danger:hover{color:#fff!important;background-color:#c82333!important;border-color:#bd2130!important}.sq-btn-danger.focus,.sq-btn-danger:focus{box-shadow:0 0 0 .2em rgba(220,53,69,.5)!important}.sq-btn-danger.disabled,.sq-btn-danger:disabled{color:#fff!important;background-color:#dc3545!important;border-color:#dc3545!important}.show>.sq-btn-danger.dropdown-toggle,.sq-btn-danger:not(:disabled):not(.disabled).active,.sq-btn-danger:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#bd2130!important;border-color:#b21f2d!important}.show>.sq-btn-danger.dropdown-toggle:focus,.sq-btn-danger:not(:disabled):not(.disabled).active:focus,.sq-btn-danger:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(220,53,69,.5)!important}.sq-btn-light,.sq-btn-light:hover{color:#212529!important;background-color:#f8f9fa!important;border-color:#f8f9fa!important}.sq-btn-light:hover{background-color:#e2e6ea!important;border-color:#dae0e5!important}.sq-btn-light.focus,.sq-btn-light:focus{box-shadow:0 0 0 .2em rgba(248,249,250,.5)!important}.sq-btn-light.disabled,.sq-btn-light:disabled{color:#212529!important;background-color:#f8f9fa!important;border-color:#f8f9fa!important}.show>.sq-btn-light.dropdown-toggle,.sq-btn-light:not(:disabled):not(.disabled).active,.sq-btn-light:not(:disabled):not(.disabled):active{color:#212529!important;background-color:#dae0e5!important;border-color:#d3d9df!important}.show>.sq-btn-light.dropdown-toggle:focus,.sq-btn-light:not(:disabled):not(.disabled).active:focus,.sq-btn-light:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(248,249,250,.5)!important}.sq-btn-dark,.sq-btn-dark:hover{color:#fff!important;background-color:#343a40!important;border-color:#343a40!important}.sq-btn-dark:hover{background-color:#23272b!important;border-color:#1d2124!important}.sq-btn-dark.focus,.sq-btn-dark:focus{box-shadow:0 0 0 .2em rgba(52,58,64,.5)!important}.sq-btn-dark.disabled,.sq-btn-dark:disabled{color:#fff!important;background-color:#343a40!important;border-color:#343a40!important}.show>.sq-btn-dark.dropdown-toggle,.sq-btn-dark:not(:disabled):not(.disabled).active,.sq-btn-dark:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#1d2124!important;border-color:#171a1d!important}.show>.sq-btn-dark.dropdown-toggle:focus,.sq-btn-dark:not(:disabled):not(.disabled).active:focus,.sq-btn-dark:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(52,58,64,.5)!important}.sq-btn-outline-primary{color:#007bff!important;background-color:transparent!important;background-image:none!important;border-color:#007bff!important}.sq-btn-outline-primary:hover{color:#fff!important;background-color:#007bff!important;border-color:#007bff!important}.sq-btn-outline-primary.focus,.sq-btn-outline-primary:focus{box-shadow:0 0 0 .2em rgba(0,123,255,.5)!important}.sq-btn-outline-primary.disabled,.sq-btn-outline-primary:disabled{color:#007bff!important;background-color:transparent!important}.show>.sq-btn-outline-primary.dropdown-toggle,.sq-btn-outline-primary:not(:disabled):not(.disabled).active,.sq-btn-outline-primary:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#007bff!important;border-color:#007bff!important}.show>.sq-btn-outline-primary.dropdown-toggle:focus,.sq-btn-outline-primary:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-primary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(0,123,255,.5)!important}.sq-btn-outline-secondary{color:#6c757d!important;background-color:transparent!important;background-image:none!important;border-color:#6c757d!important}.sq-btn-outline-secondary:hover{color:#fff!important;background-color:#6c757d!important;border-color:#6c757d!important}.sq-btn-outline-secondary.focus,.sq-btn-outline-secondary:focus{box-shadow:0 0 0 .2em rgba(108,117,125,.5)!important}.sq-btn-outline-secondary.disabled,.sq-btn-outline-secondary:disabled{color:#6c757d!important;background-color:transparent!important}.show>.sq-btn-outline-secondary.dropdown-toggle,.sq-btn-outline-secondary:not(:disabled):not(.disabled).active,.sq-btn-outline-secondary:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#6c757d!important;border-color:#6c757d!important}.show>.sq-btn-outline-secondary.dropdown-toggle:focus,.sq-btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-secondary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(108,117,125,.5)!important}.sq-btn-outline-success{color:#28a745!important;background-color:transparent!important;background-image:none!important;border-color:#28a745!important}.sq-btn-outline-success:hover{color:#fff!important;background-color:#28a745!important;border-color:#28a745!important}.sq-btn-outline-success.focus,.sq-btn-outline-success:focus{box-shadow:0 0 0 .2em rgba(40,167,69,.5)!important}.sq-btn-outline-success.disabled,.sq-btn-outline-success:disabled{color:#28a745!important;background-color:transparent!important}.show>.sq-btn-outline-success.dropdown-toggle,.sq-btn-outline-success:not(:disabled):not(.disabled).active,.sq-btn-outline-success:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#28a745!important;border-color:#28a745!important}.show>.sq-btn-outline-success.dropdown-toggle:focus,.sq-btn-outline-success:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-success:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(40,167,69,.5)!important}.sq-btn-outline-info{color:#17a2b8!important;background-color:transparent!important;background-image:none!important;border-color:#17a2b8!important}.sq-btn-outline-info:hover{color:#fff!important;background-color:#17a2b8!important;border-color:#17a2b8!important}.sq-btn-outline-info.focus,.sq-btn-outline-info:focus{box-shadow:0 0 0 .2em rgba(23,162,184,.5)!important}.sq-btn-outline-info.disabled,.sq-btn-outline-info:disabled{color:#17a2b8!important;background-color:transparent!important}.show>.sq-btn-outline-info.dropdown-toggle,.sq-btn-outline-info:not(:disabled):not(.disabled).active,.sq-btn-outline-info:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#17a2b8!important;border-color:#17a2b8!important}.show>.sq-btn-outline-info.dropdown-toggle:focus,.sq-btn-outline-info:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-info:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(23,162,184,.5)!important}.sq-btn-outline-warning{color:#ffc107!important;background-color:transparent!important;background-image:none!important;border-color:#ffc107!important}.sq-btn-outline-warning:hover{color:#212529!important;background-color:#ffc107!important;border-color:#ffc107!important}.sq-btn-outline-warning.focus,.sq-btn-outline-warning:focus{box-shadow:0 0 0 .2em rgba(255,193,7,.5)!important}.sq-btn-outline-warning.disabled,.sq-btn-outline-warning:disabled{color:#ffc107!important;background-color:transparent!important}.show>.sq-btn-outline-warning.dropdown-toggle,.sq-btn-outline-warning:not(:disabled):not(.disabled).active,.sq-btn-outline-warning:not(:disabled):not(.disabled):active{color:#212529!important;background-color:#ffc107!important;border-color:#ffc107!important}.show>.sq-btn-outline-warning.dropdown-toggle:focus,.sq-btn-outline-warning:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-warning:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(255,193,7,.5)!important}.sq-btn-outline-danger{color:#dc3545!important;background-color:transparent!important;background-image:none!important;border-color:#dc3545!important}.sq-btn-outline-danger:hover{color:#fff!important;background-color:#dc3545!important;border-color:#dc3545!important}.sq-btn-outline-danger.focus,.sq-btn-outline-danger:focus{box-shadow:0 0 0 .2em rgba(220,53,69,.5)!important}.sq-btn-outline-danger.disabled,.sq-btn-outline-danger:disabled{color:#dc3545!important;background-color:transparent!important}.show>.sq-btn-outline-danger.dropdown-toggle,.sq-btn-outline-danger:not(:disabled):not(.disabled).active,.sq-btn-outline-danger:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#dc3545!important;border-color:#dc3545!important}.show>.sq-btn-outline-danger.dropdown-toggle:focus,.sq-btn-outline-danger:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-danger:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(220,53,69,.5)!important}.sq-btn-outline-light{color:#f8f9fa!important;background-color:transparent!important;background-image:none!important;border-color:#f8f9fa!important}.sq-btn-outline-light:hover{color:#212529!important;background-color:#f8f9fa!important;border-color:#f8f9fa!important}.sq-btn-outline-light.focus,.sq-btn-outline-light:focus{box-shadow:0 0 0 .2em rgba(248,249,250,.5)!important}.sq-btn-outline-light.disabled,.sq-btn-outline-light:disabled{color:#f8f9fa!important;background-color:transparent!important}.show>.sq-btn-outline-light.dropdown-toggle,.sq-btn-outline-light:not(:disabled):not(.disabled).active,.sq-btn-outline-light:not(:disabled):not(.disabled):active{color:#212529!important;background-color:#f8f9fa!important;border-color:#f8f9fa!important}.show>.sq-btn-outline-light.dropdown-toggle:focus,.sq-btn-outline-light:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-light:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(248,249,250,.5)!important}.sq-btn-outline-dark{color:#343a40!important;background-color:transparent!important;background-image:none!important;border-color:#343a40!important}.sq-btn-outline-dark:hover{color:#fff!important;background-color:#343a40!important;border-color:#343a40!important}.sq-btn-outline-dark.focus,.sq-btn-outline-dark:focus{box-shadow:0 0 0 .2em rgba(52,58,64,.5)!important}.sq-btn-outline-dark.disabled,.sq-btn-outline-dark:disabled{color:#343a40!important;background-color:transparent!important}.show>.sq-btn-outline-dark.dropdown-toggle,.sq-btn-outline-dark:not(:disabled):not(.disabled).active,.sq-btn-outline-dark:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#343a40!important;border-color:#343a40!important}.show>.sq-btn-outline-dark.dropdown-toggle:focus,.sq-btn-outline-dark:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-dark:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(52,58,64,.5)!important}.sq-btn-link,.sq-btn-link:hover{background-color:transparent!important}.sq-btn-link{font-weight:400!important;color:#007bff!important}.sq-btn-link:hover{color:#0056b3!important;text-decoration:underline!important;border-color:transparent!important}.sq-btn-link.focus,.sq-btn-link:focus{text-decoration:underline!important;border-color:transparent!important;box-shadow:none!important}.sq-btn-link.disabled,.sq-btn-link:disabled{color:#6c757d!important;pointer-events:none!important}.sq-btn-group-lg>.sq-btn,.sq-btn-lg{padding:.5em 1em!important;font-size:1.25em!important;line-height:1.5!important;border-radius:.3em!important}.sq-btn-group-sm>.sq-btn,.sq-btn-sm{padding:.25em .5em!important;font-size:14px!important;line-height:1.5!important;border-radius:.2em!important}.sq-btn-block{display:block!important;width:100%!important}.sq-btn-block+.sq-btn-block{margin-top:.5em!important}.sq-btn-success{border-color:transparent!important}.sq-btn-success:hover{background-color:#4c81bd!important}.show>.sq-btn-primary.dropdown-toggle,.sq-btn-primary:not(:disabled):not(.disabled).active,.sq-btn-primary:not(:disabled):not(.disabled):active{background-color:#2777aa!important}.sq-btn-primary:hover{background-color:#2674a7!important;border-color:transparent!important}.sq-btn-warning,.sq-btn-warning:hover{background-color:#f2ca4c!important;border-color:transparent!important}.sq-btn-warning:hover{background-color:#e6be4b!important}.sq-align-baseline{vertical-align:baseline!important}.sq-align-top{vertical-align:top!important}.sq-align-middle{vertical-align:middle!important}.sq-align-bottom{vertical-align:bottom!important}.sq-align-text-bottom{vertical-align:text-bottom!important}.sq-align-text-top{vertical-align:text-top!important}.sq-bg-primary{background-color:#007bff!important}a.sq-bg-primary:focus,a.sq-bg-primary:hover,button.sq-bg-primary:focus,button.sq-bg-primary:hover{background-color:#0062cc!important}.sq-bg-secondary{background-color:#6c757d!important}a.sq-bg-secondary:focus,a.sq-bg-secondary:hover,button.sq-bg-secondary:focus,button.sq-bg-secondary:hover{background-color:#545b62!important}.sq-bg-success{background-color:#28a745!important}a.sq-bg-success:focus,a.sq-bg-success:hover,button.sq-bg-success:focus,button.sq-bg-success:hover{background-color:#1e7e34!important}.sq-bg-info{background-color:#17a2b8!important}a.sq-bg-info:focus,a.sq-bg-info:hover,button.sq-bg-info:focus,button.sq-bg-info:hover{background-color:#117a8b!important}.sq-bg-warning{background-color:#ffc107!important}a.sq-bg-warning:focus,a.sq-bg-warning:hover,button.sq-bg-warning:focus,button.sq-bg-warning:hover{background-color:#d39e00!important}.sq-bg-danger{background-color:#dc3545!important}a.sq-bg-danger:focus,a.sq-bg-danger:hover,button.sq-bg-danger:focus,button.sq-bg-danger:hover{background-color:#bd2130!important}.sq-bg-light{background-color:#f8f9fa!important}a.sq-bg-light:focus,a.sq-bg-light:hover,button.sq-bg-light:focus,button.sq-bg-light:hover{background-color:#dae0e5!important}.sq-bg-dark{background-color:#343a40!important}a.sq-bg-dark:focus,a.sq-bg-dark:hover,button.sq-bg-dark:focus,button.sq-bg-dark:hover{background-color:#1d2124!important}.sq-bg-white{background-color:#fff!important}.sq-bg-transparent{background-color:transparent!important}.sq-border{border:1px solid #dee2e6!important}.sq-border-top{border-top:1px solid #dee2e6!important}.sq-border-right{border-right:1px solid #dee2e6!important}.sq-border-bottom{border-bottom:1px solid #dee2e6!important}.sq-border-left{border-right:1px solid #dee2e6!important}.sq-border-0{border:0!important}.sq-border-top-0{border-top:0!important}.sq-border-right-0{border-right:0!important}.sq-border-bottom-0{border-bottom:0!important}.sq-border-left-0{border-right:0!important}.sq-border-primary{border-color:#007bff!important}.sq-border-secondary{border-color:#6c757d!important}.sq-border-success{border-color:#28a745!important}.sq-border-info{border-color:#17a2b8!important}.sq-border-warning{border-color:#ffc107!important}.sq-border-danger{border-color:#dc3545!important}.sq-border-light{border-color:#f8f9fa!important}.sq-border-dark{border-color:#343a40!important}.sq-border-white{border-color:#fff!important}.sq-rounded{border-radius:.25em!important}.sq-rounded-right,.sq-rounded-top{border-top-right-radius:.25em!important}.sq-rounded-top{border-top-left-radius:.25em!important}.sq-rounded-right{border-bottom-right-radius:.25em!important}.sq-rounded-bottom,.sq-rounded-left{border-bottom-left-radius:.25em!important}.sq-rounded-bottom{border-bottom-right-radius:.25em!important}.sq-rounded-left{border-top-left-radius:.25em!important}.sq-rounded-circle{border-radius:50%!important}.sq-rounded-0{border-radius:0!important}.sq-clearfix::after{display:block!important;clear:both!important;content:""}.sq-d-none{display:none!important}.sq-d-inline{display:inline!important}.sq-d-inline-block{display:inline-block!important}.sq-d-block{display:block!important}.sq-d-table{display:table!important}.sq-d-table-row{display:table-row!important}.sq-d-table-cell{display:table-cell!important}.sq-flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.sq-flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.sq-flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.sq-flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.sq-flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.sq-flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.sq-flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.sq-flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.sq-flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.sq-flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.sq-flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.sq-d-flex{display:-ms-flexbox!important;display:flex!important}.sq-d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}.sq-float-left,.sq-float-right{float:right!important}.sq-float-none{float:none!important}.sq-position-static{position:static!important}.sq-position-relative{position:relative!important}.sq-position-absolute{position:absolute!important}.sq-position-fixed{position:fixed!important}.sq-position-sticky{position:-webkit-sticky!important;position:sticky!important}.sq-fixed-bottom,.sq-fixed-top{position:fixed!important;right:0!important;left:0!important;z-index:1030}.sq-fixed-top{top:0}.sq-fixed-bottom{bottom:0!important}.sq-text-justify{text-align:justify!important}.sq-text-nowrap{white-space:nowrap!important}.sq-text-truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap}.sq-text-left{text-align:right!important}.sq-text-right{text-align:left!important}.sq-text-center{text-align:center!important}.sq-text-lowercase{text-transform:lowercase!important}.sq-text-uppercase{text-transform:uppercase!important}.sq-text-capitalize{text-transform:capitalize!important}.sq-font-weight-light{font-weight:300!important}.sq-font-weight-normal{font-weight:400!important}.sq-font-weight-bold{font-weight:700!important}.sq-font-italic{font-style:italic!important}.sq-text-white{color:#fff!important}.sq-text-primary{color:#007bff!important}a.sq-text-primary:focus,a.sq-text-primary:hover{color:#0062cc!important}.sq-text-secondary{color:#6c757d!important}a.sq-text-secondary:focus,a.sq-text-secondary:hover{color:#545b62!important}.sq-text-success{color:#28a745!important}a.sq-text-success:focus,a.sq-text-success:hover{color:#1e7e34!important}.sq-text-info{color:#17a2b8!important}a.sq-text-info:focus,a.sq-text-info:hover{color:#117a8b!important}.sq-text-warning{color:#ffc107!important}a.sq-text-warning:focus,a.sq-text-warning:hover{color:#d39e00!important}.sq-text-danger{color:#dc3545!important}a.sq-text-danger:focus,a.sq-text-danger:hover{color:#bd2130!important}.sq-text-light{color:#f8f9fa!important}a.sq-text-light:focus,a.sq-text-light:hover{color:#dae0e5!important}.sq-text-dark{color:#343a40!important}a.sq-text-dark:focus,a.sq-text-dark:hover{color:#1d2124!important}.sq-text-body{color:#212529!important}.sq-text-muted{color:#6c757d!important}.sq-text-black-50{color:rgba(0,0,0,.5)!important}.sq-text-white-50{color:rgba(255,255,255,.5)!important}.sq-text-hide{font:0/0 a!important;color:transparent!important;text-shadow:none!important;background-color:transparent!important;border:0!important}.sq-visible{visibility:visible!important}.sq-invisible{visibility:hidden!important}.sq-pagination{display:-ms-flexbox!important;display:flex!important;padding-left:0!important;list-style:none!important;border-radius:.25em!important}.page-link{position:relative!important;display:block!important;padding:.5em .75em!important;margin-left:-1px!important;line-height:1.25!important;color:#007bff!important;background-color:#fff!important;border:1px solid #dee2e6!important}.page-link:hover{z-index:2!important;color:#0056b3!important;text-decoration:none!important;background-color:#e9ecef!important;border-color:#dee2e6!important}.page-link:focus{z-index:2!important;outline:0!important;box-shadow:0 0 0 .2em rgba(0,123,255,.25)!important}.page-link:not(:disabled):not(.disabled){cursor:pointer!important}.page-item:first-child .page-link{margin-left:0!important;border-top-left-radius:.25em!important;border-bottom-left-radius:.25em!important}.page-item:last-child .page-link{border-top-right-radius:.25em!important;border-bottom-right-radius:.25em!important}.page-item.active .page-link{z-index:1!important;color:#fff!important;background-color:#007bff!important;border-color:#007bff!important}.page-item.disabled .page-link{color:#6c757d!important;pointer-events:none!important;cursor:auto!important;background-color:#fff!important;border-color:#dee2e6!important}.sq-pagination-lg .page-link{padding:.75em 1.5em!important;font-size:1.25em!important;line-height:1.5!important}.sq-pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3em!important;border-bottom-left-radius:.3em!important}.sq-pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3em!important;border-bottom-right-radius:.3em!important}.sq-pagination-sm .page-link{padding:.25em .5em!important;font-size:.875em!important;line-height:1.5!important}.sq-pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2em!important;border-bottom-left-radius:.2em!important}.sq-pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2em!important;border-bottom-right-radius:.2em!important}.sq-alert{position:relative!important;padding:.75em 1.25em!important;margin-bottom:1em!important;border:1px solid transparent!important;border-radius:.25em!important}.sq-alert-absolute{position:absolute!important;top:0!important;left:0!important;width:100%!important;border-radius:0!important;z-index:101!important}.sq-alert-heading{color:inherit!important}.sq-alert-link{font-weight:700!important}.sq-alert-dismissible{padding-right:4em!important}.sq-alert-dismissible .close{position:absolute!important;top:0!important;right:0!important;padding:.75em 1.25em!important;color:inherit!important}.sq-alert-primary{color:#004085!important;background-color:#cce5ff!important;border-color:#b8daff!important}.sq-alert-primary hr{border-top-color:#9fcdff!important}.sq-alert-primary .sq-alert-link{color:#002752!important}.sq-alert-secondary{color:#383d41!important;background-color:#e2e3e5!important;border-color:#d6d8db!important}.sq-alert-secondary hr{border-top-color:#c8cbcf!important}.sq-alert-secondary .sq-alert-link{color:#202326!important}.sq-alert-success{color:#155724!important;background-color:#d4edda!important;border-color:#c3e6cb!important}.sq-alert-success hr{border-top-color:#b1dfbb!important}.sq-alert-success .sq-alert-link{color:#0b2e13!important}.sq-alert-info{color:#0c5460!important;background-color:#d1ecf1!important;border-color:#bee5eb!important}.sq-alert-info hr{border-top-color:#abdde5!important}.sq-alert-info .sq-alert-link{color:#062c33!important}.sq-alert-warning{color:#856404!important;background-color:#fff3cd!important;border-color:#ffeeba!important}.sq-alert-warning hr{border-top-color:#ffe8a1!important}.sq-alert-warning .sq-alert-link{color:#533f03!important}.sq-alert-danger{color:#721c24!important;background-color:#f8d7da!important;border-color:#f5c6cb!important}.sq-alert-danger hr{border-top-color:#f1b0b7!important}.sq-alert-danger .sq-alert-link{color:#491217!important}.sq-alert-light{color:#818182!important;background-color:#fefefe!important;border-color:#fdfdfe!important}.sq-alert-light hr{border-top-color:#ececf6!important}.sq-alert-light .sq-alert-link{color:#686868!important}.sq-alert-dark{color:#1b1e21!important;background-color:#d6d8d9!important;border-color:#c6c8ca!important}.sq-alert-dark hr{border-top-color:#b9bbbe!important}.sq-alert-dark .sq-alert-link{color:#040505!important}.sq-tooltip,.sq-tooltip .sq-tooltip-arrow{position:absolute!important;display:block!important}.sq-tooltip{z-index:1070!important;margin:0!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"!important;font-style:normal!important;font-weight:400!important;line-height:1.5!important;text-align:left!important;text-align:start!important;text-decoration:none!important;text-shadow:none!important;text-transform:none!important;letter-spacing:normal!important;word-break:normal!important;word-spacing:normal!important;white-space:normal!important;line-break:auto!important;font-size:.875em!important;word-wrap:break-word!important;opacity:0!important}.sq-tooltip.show{opacity:.9!important}.sq-tooltip .sq-tooltip-arrow{width:.8em!important;height:.4em!important}.sq-tooltip .sq-tooltip-arrow::before{position:absolute!important;content:""!important;border-color:transparent!important;border-style:solid!important}.sq-bs-tooltip-auto[x-placement^=top],.sq-bs-tooltip-top{padding:.4em 0!important}.sq-bs-tooltip-auto[x-placement^=top] .sq-tooltip-arrow,.sq-bs-tooltip-top .sq-tooltip-arrow{bottom:0!important}.sq-bs-tooltip-auto[x-placement^=top] .sq-tooltip-arrow::before,.sq-bs-tooltip-top .sq-tooltip-arrow::before{top:0!important;border-width:.4em .4em 0!important;border-top-color:#000!important}.sq-bs-tooltip-auto[x-placement^=right],.sq-bs-tooltip-right{padding:0 .4em!important}.sq-bs-tooltip-auto[x-placement^=right] .sq-tooltip-arrow,.sq-bs-tooltip-right .sq-tooltip-arrow{left:0!important;width:.4em!important;height:.8em!important}.sq-bs-tooltip-auto[x-placement^=right] .sq-tooltip-arrow::before,.sq-bs-tooltip-right .sq-tooltip-arrow::before{right:0!important;border-width:.4em .4em .4em 0!important;border-right-color:#000!important}.sq-bs-tooltip-auto[x-placement^=bottom],.sq-bs-tooltip-bottom{padding:.4em 0!important}.sq-bs-tooltip-auto[x-placement^=bottom] .sq-tooltip-arrow,.sq-bs-tooltip-bottom .sq-tooltip-arrow{top:0!important}.sq-bs-tooltip-auto[x-placement^=bottom] .sq-tooltip-arrow::before,.sq-bs-tooltip-bottom .sq-tooltip-arrow::before{bottom:0!important;border-width:0 .4em .4em!important;border-bottom-color:#000!important}.sq-bs-tooltip-auto[x-placement^=left],.sq-bs-tooltip-left{padding:0 .4em!important}.sq-bs-tooltip-auto[x-placement^=left] .sq-tooltip-arrow,.sq-bs-tooltip-left .sq-tooltip-arrow{right:0!important;width:.4em!important;height:.8em!important}.sq-bs-tooltip-auto[x-placement^=left] .sq-tooltip-arrow::before,.sq-bs-tooltip-left .sq-tooltip-arrow::before{left:0!important;border-width:.4em 0 .4em .4em!important;border-left-color:#000!important}.sq-tooltip-inner{max-width:200px!important;padding:.25em .5em!important;color:#fff!important;text-align:center!important;background-color:#000!important;border-radius:.25em!important}.sq-progress,.sq-progress-bar{display:-ms-flexbox!important;display:flex!important}.sq-progress{height:1em!important;overflow:hidden!important;font-size:.75em!important;background-color:#e9ecef!important;border-radius:.25em!important}.sq-progress-bar{-ms-flex-direction:column!important;flex-direction:column!important;-ms-flex-pack:center!important;justify-content:center!important;color:#fff!important;text-align:center!important;white-space:nowrap!important;background-color:#007bff!important;transition:width .6s ease!important}.sq-progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)!important;background-size:1em 1em!important}.sq-progress-bar-animated{-webkit-animation:sq-progress-bar-stripes 1s linear infinite!important;animation:sq-progress-bar-stripes 1s linear infinite!important}.sq-list-group{display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important;padding-left:0!important;margin-bottom:0!important}.sq-list-group-item-action{width:100%!important;color:#495057!important;text-align:inherit!important}.sq-list-group-item-action:focus,.sq-list-group-item-action:hover{color:#495057!important;text-decoration:none!important;background-color:#f8f9fa!important}.sq-list-group-item-action:active{color:#212529!important;background-color:#e9ecef!important}.sq-list-group-item{position:relative!important;display:block!important;padding:.75em 1.25em!important;margin-bottom:-1px!important;background-color:#fff!important;border:1px solid rgba(0,0,0,.125)!important}.sq-list-group-item:first-child{border-top-left-radius:.25em!important;border-top-right-radius:.25em!important}.sq-list-group-item:last-child{margin-bottom:0!important;border-bottom-right-radius:.25em!important;border-bottom-left-radius:.25em!important}.sq-list-group-item:focus,.sq-list-group-item:hover{z-index:1!important;text-decoration:none!important}.sq-list-group-item.disabled,.sq-list-group-item:disabled{color:#6c757d!important;background-color:#fff!important}.sq-list-group-item.active{z-index:2!important;color:#fff!important;background-color:#007bff!important;border-color:#007bff!important}.sq-list-group-flush .sq-list-group-item{border-right:0!important;border-left:0!important;border-radius:0!important}.sq-list-group-flush:first-child .sq-list-group-item:first-child{border-top:0!important}.sq-list-group-flush:last-child .sq-list-group-item:last-child{border-bottom:0!important}.sq-list-group-item-primary{color:#004085!important;background-color:#b8daff!important}.sq-list-group-item-primary.sq-list-group-item-action:focus,.sq-list-group-item-primary.sq-list-group-item-action:hover{color:#004085!important;background-color:#9fcdff!important}.sq-list-group-item-primary.sq-list-group-item-action.active{color:#fff!important;background-color:#004085!important;border-color:#004085!important}.sq-list-group-item-secondary{color:#383d41!important;background-color:#d6d8db!important}.sq-list-group-item-secondary.sq-list-group-item-action:focus,.sq-list-group-item-secondary.sq-list-group-item-action:hover{color:#383d41!important;background-color:#c8cbcf!important}.sq-list-group-item-secondary.sq-list-group-item-action.active{color:#fff!important;background-color:#383d41!important;border-color:#383d41!important}.sq-list-group-item-success{color:#155724!important;background-color:#c3e6cb!important}.sq-list-group-item-success.sq-list-group-item-action:focus,.sq-list-group-item-success.sq-list-group-item-action:hover{color:#155724!important;background-color:#b1dfbb!important}.sq-list-group-item-success.sq-list-group-item-action.active{color:#fff!important;background-color:#155724!important;border-color:#155724!important}.sq-list-group-item-info{color:#0c5460!important;background-color:#bee5eb!important}.sq-list-group-item-info.sq-list-group-item-action:focus,.sq-list-group-item-info.sq-list-group-item-action:hover{color:#0c5460!important;background-color:#abdde5!important}.sq-list-group-item-info.sq-list-group-item-action.active{color:#fff!important;background-color:#0c5460!important;border-color:#0c5460!important}.sq-list-group-item-warning{color:#856404!important;background-color:#ffeeba!important}.sq-list-group-item-warning.sq-list-group-item-action:focus,.sq-list-group-item-warning.sq-list-group-item-action:hover{color:#856404!important;background-color:#ffe8a1!important}.sq-list-group-item-warning.sq-list-group-item-action.active{color:#fff!important;background-color:#856404!important;border-color:#856404!important}.sq-list-group-item-danger{color:#721c24!important;background-color:#f5c6cb!important}.sq-list-group-item-danger.sq-list-group-item-action:focus,.sq-list-group-item-danger.sq-list-group-item-action:hover{color:#721c24!important;background-color:#f1b0b7!important}.sq-list-group-item-danger.sq-list-group-item-action.active{color:#fff!important;background-color:#721c24!important;border-color:#721c24!important}.sq-list-group-item-light{color:#818182!important;background-color:#fdfdfe!important}.sq-list-group-item-light.sq-list-group-item-action:focus,.sq-list-group-item-light.sq-list-group-item-action:hover{color:#818182!important;background-color:#ececf6!important}.sq-list-group-item-light.sq-list-group-item-action.active{color:#fff!important;background-color:#818182!important;border-color:#818182!important}.sq-list-group-item-dark{color:#1b1e21!important;background-color:#c6c8ca!important}.sq-list-group-item-dark.sq-list-group-item-action:focus,.sq-list-group-item-dark.sq-list-group-item-action:hover{color:#1b1e21!important;background-color:#b9bbbe!important}.sq-list-group-item-dark.sq-list-group-item-action.active{color:#fff!important;background-color:#1b1e21!important;border-color:#1b1e21!important}.sq-close{float:right!important;font-size:1.5em!important;font-weight:700!important;line-height:1!important;color:#000!important;text-shadow:0 1px 0 #fff!important;opacity:.5!important}.sq-close-absolute{position:absolute!important;right:5px!important;top:5px!important;z-index:1!important}.sq-close:focus,.sq-close:hover{color:#000!important;text-decoration:none!important;opacity:.75!important}.sq-close:not(:disabled):not(.disabled){cursor:pointer!important}.sq-input-group>button.sq-btn,.sq-input-group>input{max-height:47px!important}.sq-shadow-sm{box-shadow:0 .125em .25em rgba(0,0,0,.075)!important}.sq-shadow{box-shadow:0 .5em 1em rgba(0,0,0,.15)!important}.sq-shadow-lg{box-shadow:0 1em 3em rgba(0,0,0,.175)!important}.sq-shadow-none{box-shadow:none!important}.sq-modal,.sq-modal-open{overflow:hidden!important}.sq-modal{position:fixed!important;top:0!important;right:0!important;bottom:0!important;left:0!important;z-index:1050!important;display:none;outline:0!important}.sq-modal-open .sq-modal{overflow-x:hidden!important;overflow-y:auto!important}.sq-modal-dialog{position:relative!important;width:auto!important;margin:.5em!important;pointer-events:none!important}.sq-modal.fade .sq-modal-dialog{transition:transform .3s ease-out!important;transition:transform .3s ease-out,-webkit-transform .3s ease-out!important;-webkit-transform:translate(0,-25%)!important;transform:translate(0,-25%)!important}.sq-modal.show .sq-modal-dialog{-webkit-transform:translate(0,0)!important;transform:translate(0,0)!important}.sq-modal-content,.sq-modal-dialog-centered{display:-ms-flexbox!important;display:flex!important}.sq-modal-dialog-centered{-ms-flex-align:center!important;align-items:center!important;min-height:calc(100% - (.5em*2))!important}.sq-modal-content{position:relative!important;-ms-flex-direction:column!important;flex-direction:column!important;width:100%!important;pointer-events:auto!important;background-color:#fff!important;background-clip:padding-box!important;border:1px solid rgba(0,0,0,.2)!important;border-radius:.3em!important;outline:0!important}.sq-modal-backdrop{position:fixed!important;top:0!important;right:0!important;bottom:0!important;left:0!important;z-index:1040!important;background-color:#000!important}.sq-modal-backdrop.fade{opacity:0!important}.sq-modal-backdrop.show{opacity:.5!important}.sq-modal-header{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:start!important;align-items:flex-start!important;-ms-flex-pack:justify!important;justify-content:space-between!important;padding:1em!important;border-bottom:1px solid #e9ecef!important;border-top-left-radius:.3em!important;border-top-right-radius:.3em!important}.sq-modal-header .close{padding:1em!important;margin:-1em -1em -1em auto!important}.sq-modal-title{margin-bottom:0!important;line-height:1.5!important}.sq-modal-body{position:relative!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important;padding:1em!important}.sq-modal-footer{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:center!important;align-items:center!important;-ms-flex-pack:end!important;justify-content:flex-end!important;padding:1em!important;border-top:1px solid #e9ecef!important}.sq-modal-footer>:not(:first-child){margin-left:.25em!important}.sq-modal-footer>:not(:last-child){margin-right:.25em!important}.sq-modal-scrollbar-measure{position:absolute!important;top:-9999px!important;width:50px!important;height:50px!important;overflow:scroll!important}@media (min-width:576px){.sq-modal-dialog{max-width:500px!important;margin:1.75em auto!important}.sq-modal-dialog-centered{min-height:calc(100% - (1.75em*2))!important}.sq-modal-sm{max-width:300px!important}}@media (min-width:992px){.sq-modal-lg{max-width:800px!important}}.sq-col-sm,.sq-col-sm-1,.sq-col-sm-10,.sq-col-sm-11,.sq-col-sm-12,.sq-col-sm-2,.sq-col-sm-3,.sq-col-sm-4,.sq-col-sm-5,.sq-col-sm-6,.sq-col-sm-7,.sq-col-sm-8,.sq-col-sm-9,.sq-col-sm-auto{position:relative!important;width:100%!important;min-height:1px!important;padding-right:15px!important;padding-left:15px}@media (min-width:576px){.sq-col-sm{-ms-flex-preferred-size:0!important;flex-basis:0!important;-ms-flex-positive:1!important;flex-grow:1!important;max-width:100%}.sq-col-sm-auto{-ms-flex:0 0 auto!important;flex:0 0 auto!important;width:auto!important;max-width:none}.sq-col-sm-1{-ms-flex:0 0 8.333333%!important;flex:0 0 8.333333%!important;max-width:8.333333%}.sq-col-sm-2{-ms-flex:0 0 16.666667%!important;flex:0 0 16.666667%!important;max-width:16.666667%}.sq-col-sm-3{-ms-flex:0 0 25%!important;flex:0 0 25%!important;max-width:25%}.sq-col-sm-4{-ms-flex:0 0 33.333333%!important;flex:0 0 33.333333%!important;max-width:33.333333%}.sq-col-sm-5{-ms-flex:0 0 41.666667%!important;flex:0 0 41.666667%!important;max-width:41.666667%}.sq-col-sm-6{-ms-flex:0 0 50%!important;flex:0 0 50%!important;max-width:50%}.sq-col-sm-7{-ms-flex:0 0 58.333333%!important;flex:0 0 58.333333%!important;max-width:58.333333%}.sq-col-sm-8{-ms-flex:0 0 66.666667%!important;flex:0 0 66.666667%!important;max-width:66.666667%}.sq-col-sm-9{-ms-flex:0 0 75%!important;flex:0 0 75%!important;max-width:75%}.sq-col-sm-10{-ms-flex:0 0 83.333333%!important;flex:0 0 83.333333%!important;max-width:83.333333%}.sq-col-sm-11{-ms-flex:0 0 91.666667%!important;flex:0 0 91.666667%!important;max-width:91.666667%}.sq-col-sm-12{-ms-flex:0 0 100%!important;flex:0 0 100%!important;max-width:100%}}.sq-m-0{margin:0!important}.sq-ml-0,.sq-mx-0{margin-right:0!important}.sq-mr-0,.sq-mx-0{margin-left:0!important}.sq-mt-0,.sq-my-0{margin-top:0!important}.sq-mb-0,.sq-my-0{margin-bottom:0!important}.sq-m-1{margin:.25em!important}.sq-ml-1,.sq-mx-1{margin-right:.25em!important}.sq-mr-1,.sq-mx-1{margin-left:.25em!important}.sq-mt-1,.sq-my-1{margin-top:.25em!important}.sq-mb-1,.sq-my-1{margin-bottom:.25em!important}.sq-m-2{margin:.5em!important}.sq-ml-2,.sq-mx-2{margin-right:.5em!important}.sq-mr-2,.sq-mx-2{margin-left:.5em!important}.sq-mt-2,.sq-my-2{margin-top:.5em!important}.sq-mb-2,.sq-my-2{margin-bottom:.5em!important}.sq-m-3{margin:1em!important}.sq-ml-3,.sq-mx-3{margin-right:1em!important}.sq-mr-3,.sq-mx-3{margin-left:1em!important}.sq-mt-3,.sq-my-3{margin-top:1em!important}.sq-mb-3,.sq-my-3{margin-bottom:1em!important}.sq-m-4{margin:1.5em!important}.sq-ml-4,.sq-mx-4{margin-right:1.5em!important}.sq-mr-4,.sq-mx-4{margin-left:1.5em!important}.sq-mt-4,.sq-my-4{margin-top:1.5em!important}.sq-mb-4,.sq-my-4{margin-bottom:1.5em!important}.sq-m-5{margin:3em!important}.sq-ml-5,.sq-mx-5{margin-right:3em!important}.sq-mr-5,.sq-mx-5{margin-left:3em!important}.sq-mt-5,.sq-my-5{margin-top:3em!important}.sq-mb-5,.sq-my-5{margin-bottom:3em!important}.sq-m-auto{margin:auto!important}.sq-mt-auto,.sq-my-auto{margin-top:auto!important}.sq-mr-auto{margin-right:auto!important}.sq-mb-auto,.sq-my-auto{margin-bottom:auto!important}.sq-ml-auto,.sq-mx-auto{margin-right:auto!important}.sq-p-0,.sq-switch input{padding:0!important}.sq-pl-0,.sq-pr-0,.sq-px-0{padding-right:0!important}.sq-pt-0,.sq-py-0{padding-top:0!important}.sq-pb-0,.sq-py-0{padding-bottom:0!important}.sq-p-1{padding:.25em!important}.sq-pl-1,.sq-pr-1,.sq-px-1{padding-right:.25em!important}.sq-pt-1,.sq-py-1{padding-top:.25em!important}.sq-pb-1,.sq-py-1{padding-bottom:.25em!important}.sq-p-2{padding:.5em!important}.sq-pl-2,.sq-pr-2,.sq-px-2{padding-right:.5em!important}.sq-pt-2,.sq-py-2{padding-top:.5em!important}.sq-pb-2,.sq-py-2{padding-bottom:.5em!important}.sq-p-3{padding:1em!important}.sq-pl-3,.sq-pr-3,.sq-px-3{padding-right:1em!important}.sq-pt-3,.sq-py-3{padding-top:1em!important}.sq-pb-3,.sq-py-3{padding-bottom:1em!important}.sq-p-4{padding:1.5em!important}.sq-pl-4,.sq-pr-4,.sq-px-4{padding-right:1.5em!important}.sq-pt-4,.sq-py-4{padding-top:1.5em!important}.sq-pb-4,.sq-py-4{padding-bottom:1.5em!important}.sq-p-5{padding:3em!important}.sq-pl-5,.sq-pr-5,.sq-px-5{padding-right:3em!important}.sq-pt-5,.sq-py-5{padding-top:3em!important}.sq-pb-5,.sq-py-5{margin-bottom:3em!important}.sq-switch{font-size:1em!important;position:relative!important;box-shadow:none!important;height:auto!important;background:inherit!important}.sq-switch input{position:absolute!important;height:1px!important;width:1px!important;background:0 0!important;border:0!important;clip:rect(0 0 0 0)!important;clip-path:inset(50%)!important;overflow:hidden!important}.sq-switch input+label{position:relative!important;min-width:calc(calc(2.375em*.8)*2)!important;border-radius:calc(2.375em*.8)!important;height:calc(2.375em*.8)!important;line-height:calc(2.375em*.8)!important;font-size:16px!important;font-weight:700!important;display:inline-block!important;cursor:pointer!important;outline:0!important;user-select:none!important;vertical-align:middle!important;text-indent:calc(calc(calc(2.375em*.8)*2) + .5em)!important}.sq-switch input+label::after,.sq-switch input+label::before{content:''!important;position:absolute!important;bottom:0!important;display:block}.sq-switch input+label::before{top:0!important;left:0!important;width:calc(calc(2.375em*.8)*2)!important;right:0!important;background-color:#dee2e6!important;border-radius:calc(2.375em*.8)!important;transition:.2s all!important}.sq-switch.redgreen input+label::before{background-color:#9c2032!important}.sq-switch input+label::after{top:2px!important;left:2px!important;width:calc(calc(2.375em*.8) - calc(2px*2))!important;height:calc(calc(2.375em*.8) - calc(2px*2))!important;border-radius:50%!important;background-color:#fff!important;transition:.2s all!important}.sq-switch input:checked+label::before{background-color:#488698!important}.sq-switch.redgreen input:checked+label::before{background-color:#4caf50!important}.sq-switch input:checked+label::after{margin-left:calc(2.375em*.8)!important}.sq-switch input:focus+label::before{outline:0!important;box-shadow:0 0 0 .2em rgba(0,136,221,.25)!important}.sq-switch input:disabled+label{color:#868e96!important;cursor:not-allowed!important}.sq-switch input:disabled+label::before{background-color:#e9ecef!important}.sq-switch.sq-switch-sm{font-size:.875em!important}.sq-switch.sq-switch-sm input+label{min-width:calc(calc(1.9375em*.8)*2)!important;height:calc(1.9375em*.8)!important;line-height:calc(1.9375em*.8)!important;text-indent:calc(calc(calc(2.1375em*.8)*2) + .5em)!important}.sq-switch.sq-switch-sm input+label::before{width:calc(calc(1.9375em*.8)*2)!important}.sq-switch.sq-switch-sm input+label::after{width:calc(calc(1.9375em*.8) - calc(2px*2))!important;height:calc(calc(1.9375em*.8) - calc(2px*2))!important}.sq-switch.sq-switch-sm input:checked+label::after{margin-left:calc(1.9375em*.8)!important}.sq-switch.sq-switch-xxs{font-size:.7em!important}.sq-switch.sq-switch-xxs input+label{min-width:calc(calc(.9375em*.8)*2)!important;height:calc(.9375em*.8)!important;line-height:calc(.9375em*.8)!important;text-indent:calc(calc(calc(1.1375em*.8)*2) + .5em)!important}.sq-switch.sq-switch-xxs input+label::before{width:calc(calc(.9375em*.8)*2)!important}.sq-switch.sq-switch-xxs input+label::after{width:calc(calc(.9375em*.8) - calc(2px*2))!important;height:calc(calc(.9375em*.8) - calc(2px*2))!important}.sq-switch.sq-switch-xxs input:checked+label::after{margin-left:calc(.9375em*.8)!important}.sq-switch.sq-switch-lg{font-size:1.25em!important}.sq-switch.sq-switch-lg input+label{min-width:calc(calc(3em*.8)*2)!important;height:calc(3em*.8)!important;line-height:calc(3em*.8)!important;text-indent:calc(calc(calc(3em*.8)*2) + .5em)!important}.sq-switch.sq-switch-lg input+label::before{width:calc(calc(3em*.8)*2)!important}.sq-switch.sq-switch-lg input+label::after{width:calc(calc(3em*.8) - calc(2px*2))!important;height:calc(calc(3em*.8) - calc(2px*2))!important}.sq-switch.sq-switch-lg input:checked+label::after{margin-left:calc(3em*.8)!important}.sq-switch+.sq-switch{margin-left:1em!important}.dropdown-menu{margin-top:.75em!important}
1
+ @-webkit-keyframes sq-progress-bar-stripes{0%{background-position:1em 0}to{background-position:0 0}}@keyframes sq-progress-bar-stripes{0%{background-position:1em 0}to{background-position:0 0}}.sq-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;margin-right:-15px!important;margin-left:-15px!important}.sq-small,.sq-small *{font-size:.83rem!important;line-height:20px!important;font-weight:400!important}.sq-mark{padding:.2em!important;background-color:#fcf8e3!important}.sq-table{width:100%!important;max-width:100%!important;margin-bottom:1em!important;background-color:transparent!important}.sq-table td,.sq-table th{padding:.75em!important;vertical-align:top!important;border-top:1px solid #dee2e6!important}.sq-table thead th{vertical-align:bottom!important;border-bottom:2px solid #dee2e6!important}.sq-table tbody+tbody{border-top:2px solid #dee2e6!important}.sq-table .sq-table{background-color:#fff!important}.sq-table-sm td,.sq-table-sm th{padding:.3em!important}.sq-table-bordered,.sq-table-bordered td,.sq-table-bordered th{border:1px solid #dee2e6!important}.sq-table-bordered thead td,.sq-table-bordered thead th{border-bottom-width:2px!important}.sq-table-borderless tbody+tbody,.sq-table-borderless td,.sq-table-borderless th,.sq-table-borderless thead th,.sq-table-dark.sq-table-bordered{border:0!important}.sq-table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)!important}.sq-table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)!important}.sq-table-primary,.sq-table-primary>td,.sq-table-primary>th{background-color:#b8daff!important}.sq-table-hover .sq-table-primary:hover,.sq-table-hover .sq-table-primary:hover>td,.sq-table-hover .sq-table-primary:hover>th{background-color:#9fcdff!important}.sq-table-secondary,.sq-table-secondary>td,.sq-table-secondary>th{background-color:#d6d8db!important}.sq-table-hover .sq-table-secondary:hover,.sq-table-hover .sq-table-secondary:hover>td,.sq-table-hover .sq-table-secondary:hover>th{background-color:#c8cbcf!important}.sq-table-success,.sq-table-success>td,.sq-table-success>th{background-color:#c3e6cb!important}.sq-table-hover .sq-table-success:hover,.sq-table-hover .sq-table-success:hover>td,.sq-table-hover .sq-table-success:hover>th{background-color:#b1dfbb!important}.sq-table-info,.sq-table-info>td,.sq-table-info>th{background-color:#bee5eb!important}.sq-table-hover .sq-table-info:hover,.sq-table-hover .sq-table-info:hover>td,.sq-table-hover .sq-table-info:hover>th{background-color:#abdde5!important}.sq-table-warning,.sq-table-warning>td,.sq-table-warning>th{background-color:#ffeeba!important}.sq-table-hover .sq-table-warning:hover,.sq-table-hover .sq-table-warning:hover>td,.sq-table-hover .sq-table-warning:hover>th{background-color:#ffe8a1!important}.sq-table-danger,.sq-table-danger>td,.sq-table-danger>th{background-color:#f5c6cb!important}.sq-table-hover .sq-table-danger:hover,.sq-table-hover .sq-table-danger:hover>td,.sq-table-hover .sq-table-danger:hover>th{background-color:#f1b0b7!important}.sq-table-light,.sq-table-light>td,.sq-table-light>th{background-color:#fdfdfe!important}.sq-table-hover .sq-table-light:hover,.sq-table-hover .sq-table-light:hover>td,.sq-table-hover .sq-table-light:hover>th{background-color:#ececf6!important}.sq-table-dark>td,.sq-table-dark>th{background-color:#c6c8ca!important}.sq-table-hover .sq-table-dark:hover,.sq-table-hover .sq-table-dark:hover>td,.sq-table-hover .sq-table-dark:hover>th{background-color:#b9bbbe!important}.sq-table-active,.sq-table-active>td,.sq-table-active>th,.sq-table-hover .sq-table-active:hover,.sq-table-hover .sq-table-active:hover>td,.sq-table-hover .sq-table-active:hover>th{background-color:rgba(0,0,0,.075)!important}.sq-table .thead-dark th{color:#fff!important;background-color:#212529!important;border-color:#32383e!important}.sq-table .thead-light th{color:#495057!important;background-color:#e9ecef!important;border-color:#dee2e6!important}.sq-table-dark{color:#fff!important;background-color:#212529!important}.sq-table-dark td,.sq-table-dark th,.sq-table-dark thead th{border-color:#32383e!important}.sq-table-dark.sq-table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)!important}.sq-table-dark.sq-table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)!important}@media (max-width:575.98px){.sq-table-responsive-sm{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive-sm>.sq-table-bordered{border:0!important}}@media (max-width:767.98px){.sq-table-responsive-md{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive-md>.sq-table-bordered{border:0!important}}@media (max-width:991.98px){.sq-table-responsive-lg{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive-lg>.sq-table-bordered{border:0!important}}@media (max-width:1199.98px){.sq-table-responsive-xl{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive-xl>.sq-table-bordered{border:0!important}}.sq-table-responsive{display:block;width:100%!important;overflow-x:auto!important;-webkit-overflow-scrolling:touch!important;-ms-overflow-style:-ms-autohiding-scrollbar!important}.sq-table-responsive>.sq-table-bordered{border:0!important}.sq-form-control{display:block;width:100%!important;padding:.375em .75em!important;font-size:1em!important;line-height:1.5!important;color:#495057;background-color:#fff;background-clip:padding-box!important;border:1px solid #ced4da!important;border-radius:.25em!important;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out!important}.sq-form-control::-ms-expand{background-color:transparent!important;border:0}.sq-form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0!important;box-shadow:0 0 0 .2em rgba(0,123,255,.25)!important}.sq-form-control::-webkit-input-placeholder{color:#6c757d!important;opacity:1!important}.sq-form-control::-moz-placeholder{color:#6c757d!important;opacity:1!important}.sq-form-control:-ms-input-placeholder{color:#919aa2!important;opacity:1!important}.sq-form-control::-ms-input-placeholder{color:#919aa2!important;opacity:1!important}.sq-form-control::placeholder{color:#919aa2!important;opacity:1!important}.sq-form-control:disabled,.sq-form-control[readonly]{background-color:#e9ecef!important;opacity:1!important}select.sq-form-control:not([size]):not([multiple]){height:calc(2.25em + 2px)!important}select.sq-form-control:focus::-ms-value{color:#495057!important;background-color:#fff!important}.sq-form-control-file,.sq-form-control-plaintext,.sq-form-control-range{display:block!important;width:100%!important}.sq-form-control-plaintext{padding-top:.375em!important;padding-bottom:.375em!important;margin-bottom:0!important;line-height:1.5!important;color:#212529!important;background-color:transparent!important;border:solid transparent!important;border-width:1px 0!important}.sq-input-group select option:checked,.sq-input-group select option:checked:hover{background-color:#6200ee;color:#fff}.sq-form-control-plaintext.sq-form-control-lg,.sq-form-control-plaintext.sq-form-control-sm,.sq-input-group-lg .sq-form-control-plaintext.sq-form-control,.sq-input-group-lg>.sq-input-group-append>.sq-form-control-plaintext.sq-btn,.sq-input-group-lg>.sq-input-group-append>.sq-form-control-plaintext.sq-input-group-text,.sq-input-group-lg>.sq-input-group-prepend>.sq-form-control-plaintext.sq-btn,.sq-input-group-lg>.sq-input-group-prepend>.sq-form-control-plaintext.sq-input-group-text,.sq-input-group-sm>.sq-form-control-plaintext.sq-form-control,.sq-input-group-sm>.sq-input-group-append>.sq-form-control-plaintext.sq-btn,.sq-input-group-sm>.sq-input-group-append>.sq-form-control-plaintext.sq-input-group-text,.sq-input-group-sm>.sq-input-group-prepend>.sq-form-control-plaintext.sq-btn,.sq-input-group-sm>.sq-input-group-prepend>.sq-form-control-plaintext.sq-input-group-text{padding-right:0!important;padding-left:0!important}.sq-form-control-sm,.sq-input-group-sm>.sq-form-control,.sq-input-group-sm>.sq-input-group-append>.sq-btn,.sq-input-group-sm>.sq-input-group-append>.sq-input-group-text,.sq-input-group-sm>.sq-input-group-prepend>.sq-btn,.sq-input-group-sm>.sq-input-group-prepend>.sq-input-group-text{padding:.25em .5em!important;font-size:.875em!important;line-height:1.5!important;border-radius:.2em!important}.sq-input-group-sm>.sq-input-group-append>select.sq-btn:not([size]):not([multiple]),.sq-input-group-sm>.sq-input-group-append>select.sq-input-group-text:not([size]):not([multiple]),.sq-input-group-sm>.sq-input-group-prepend>select.sq-btn:not([size]):not([multiple]),.sq-input-group-sm>.sq-input-group-prepend>select.sq-input-group-text:not([size]):not([multiple]),.sq-input-group-sm>select.sq-form-control:not([size]):not([multiple]),select.sq-form-control-sm:not([size]):not([multiple]){height:calc(1.8125em + 2px)!important}.sq-form-control-lg,.sq-input-group-lg .sq-form-control,.sq-input-group-lg>.sq-input-group-append>.sq-btn,.sq-input-group-lg>.sq-input-group-append>.sq-input-group-text,.sq-input-group-lg>.sq-input-group-prepend>.sq-btn,.sq-input-group-lg>.sq-input-group-prepend>.sq-input-group-text{padding:.5em!important;font-size:1.05em!important;line-height:1.5!important;border-radius:.3em!important}.sq-input-group-lg>.sq-input-group-append>select.sq-btn:not([size]):not([multiple]),.sq-input-group-lg>.sq-input-group-append>select.sq-input-group-text:not([size]):not([multiple]),.sq-input-group-lg>.sq-input-group-prepend>select.sq-btn:not([size]):not([multiple]),.sq-input-group-lg>.sq-input-group-prepend>select.sq-input-group-text:not([size]):not([multiple]),.sq-input-group-lg>select.sq-form-control:not([size]):not([multiple]),select.sq-form-control-lg:not([size]):not([multiple]){height:calc(2.875em + 2px)!important}.sq-input-group>select{max-height:47px!important}.sq-form-group{margin-bottom:1em!important}.sq-form-text{display:block!important;margin-top:.25em!important}.sq-form-row{display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;margin-right:-5px!important;margin-left:-5px!important}.sq-form-row>.col,.sq-form-row>[class*=col-]{padding-right:5px!important;padding-left:5px!important}.sq-form-check{position:relative!important;display:block!important;padding-right:1.25em!important}.sq-form-check-input{position:absolute!important;margin-top:.3em!important;margin-right:-1.25em!important}.sq-form-check-input:disabled~.sq-form-check-label{color:#6c757d!important}.sq-form-check-label{margin-bottom:0!important}.sq-form-check-inline,.sq-form-inline{-ms-flex-align:center!important;align-items:center!important}.sq-form-check-inline{display:-ms-inline-flexbox!important;display:inline-flex!important;padding-right:0!important;margin-left:.75em!important}.sq-form-check-inline .sq-form-check-input{position:static!important;margin-top:0!important;margin-left:.3125em!important;margin-right:0!important}.sq-form-inline{display:-ms-flexbox!important;display:flex!important;-ms-flex-flow:row wrap!important;flex-flow:row wrap!important}.sq-form-inline .sq-form-check{width:100%!important}@media (min-width:576px){.sq-form-inline .sq-form-group,.sq-form-inline label{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:center!important;align-items:center!important;margin-bottom:0!important}.sq-form-inline label{-ms-flex-pack:center!important;justify-content:center!important}.sq-form-inline .sq-form-group{-ms-flex:0 0 auto!important;flex:0 0 auto!important;-ms-flex-flow:row wrap!important;flex-flow:row wrap!important}.sq-form-inline .sq-form-control{display:inline-block!important;width:auto!important;vertical-align:middle!important}.sq-form-inline .sq-form-control-plaintext{display:inline-block!important}.sq-form-inline .custom-select,.sq-form-inline .sq-input-group{width:auto!important}.sq-form-inline .sq-form-check{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:center!important;align-items:center!important;-ms-flex-pack:center!important;justify-content:center!important;width:auto!important;padding-right:0!important}.sq-form-inline .sq-form-check-input{position:relative!important;margin-top:0!important;margin-left:.25em!important;margin-right:0!important}.sq-offset-sm-0{margin-right:0!important}.sq-offset-sm-1{margin-right:8.333333%!important}.sq-offset-sm-2{margin-right:16.666667%!important}.sq-offset-sm-3{margin-right:25%!important}.sq-offset-sm-4{margin-right:33.333333%!important}.sq-offset-sm-5{margin-right:41.666667%!important}.sq-offset-sm-6{margin-right:50%!important}.sq-offset-sm-7{margin-right:58.333333%!important}.sq-offset-sm-8{margin-right:66.666667%!important}.sq-offset-sm-9{margin-right:75%!important}.sq-offset-sm-10{margin-right:83.333333%!important}.sq-offset-sm-11{margin-right:91.666667%!important}}.sq-input-group{position:relative!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;-ms-flex-align:stretch!important;align-items:stretch!important;width:100%!important}.sq-input-group>.sq-form-control{position:relative!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important;width:100%!important;margin-bottom:0!important}.sq-input-group>.sq-form-control:focus{z-index:3!important}.sq-input-group>.sq-form-control+.sq-form-control{margin-right:-1px!important}.sq-input-group>.sq-form-control:not(:first-child),.sq-input-group>.sq-form-control:not(:last-child){border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sq-input-group-append,.sq-input-group-prepend{display:-ms-flexbox!important;display:flex!important}.sq-input-group-append .sq-btn,.sq-input-group-prepend .sq-btn{position:relative!important;z-index:2!important}.sq-input-group-append,.sq-input-group-append .sq-btn+.sq-btn,.sq-input-group-append .sq-btn+.sq-input-group-text,.sq-input-group-append .sq-input-group-text+.sq-btn,.sq-input-group-append .sq-input-group-text+.sq-input-group-text,.sq-input-group-prepend,.sq-input-group-prepend .sq-btn+.sq-btn,.sq-input-group-prepend .sq-btn+.sq-input-group-text,.sq-input-group-prepend .sq-input-group-text+.sq-btn,.sq-input-group-prepend .sq-input-group-text+.sq-input-group-text{margin-right:-1px!important}.sq-input-group-text{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:center!important;align-items:center!important;padding:.375em .75em!important;margin-bottom:0!important;font-size:1em!important;font-weight:400!important;line-height:1.5!important;color:#495057!important;text-align:center!important;white-space:nowrap!important;background-color:#e9ecef!important;border:1px solid #ced4da!important;border-radius:.25em!important}.sq-input-group-text input[type=checkbox],.sq-input-group-text input[type=radio]{margin-top:0!important}.sq-input-group>.sq-input-group-append:last-child>.sq-btn:not(:last-child):not(.dropdown-toggle),.sq-input-group>.sq-input-group-append:last-child>.sq-input-group-text:not(:last-child),.sq-input-group>.sq-input-group-append:not(:last-child)>.sq-btn,.sq-input-group>.sq-input-group-append:not(:last-child)>.sq-input-group-text,.sq-input-group>.sq-input-group-prepend>.sq-btn,.sq-input-group>.sq-input-group-prepend>.sq-input-group-text{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sq-input-group>.sq-input-group-append>.sq-btn,.sq-input-group>.sq-input-group-append>.sq-input-group-text,.sq-input-group>.sq-input-group-prepend:first-child>.sq-btn:not(:first-child),.sq-input-group>.sq-input-group-prepend:first-child>.sq-input-group-text:not(:first-child),.sq-input-group>.sq-input-group-prepend:not(:first-child)>.sq-btn,.sq-input-group>.sq-input-group-prepend:not(:first-child)>.sq-input-group-text{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.sq-nav{display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;padding-right:0!important;margin-bottom:0!important;list-style:none!important}.sq-nav-link{display:block!important;padding:.5em 1em!important}.sq-nav-link:focus,.sq-nav-link:hover{text-decoration:none!important}.sq-nav-link.disabled{color:#6c757d!important}.sq-nav-tabs{border-bottom:1px solid #dee2e6}.sq-nav-tabs .sq-nav-item{margin-bottom:-1px!important}.sq-nav-tabs .sq-nav-item a{height:auto!important;line-height:10px!important}.sq-nav-tabs .sq-nav-link{border:1px solid transparent!important;border-top-left-radius:.25em!important;border-top-right-radius:.25em!important}.sq-nav-tabs .sq-nav-link:focus,.sq-nav-tabs .sq-nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6!important}.sq-nav-tabs .sq-nav-link.disabled{color:#6c757d!important;background-color:transparent!important;border-color:transparent!important}.sq-nav-tabs .sq-nav-item.show .sq-nav-link,.sq-nav-tabs .sq-nav-link.active{color:#495057!important;background-color:#fff!important;border-color:#dee2e6 #dee2e6 #fff!important}.sq-nav-tabs .dropdown-menu{margin-top:-1px!important;border-top-left-radius:0!important;border-top-right-radius:0!important}.sq-nav-pills .sq-nav-link{border-radius:.25em!important}.sq-nav-pills .show>.sq-nav-link,.sq-nav-pills .sq-nav-link.active{color:#fff!important;background-color:#007bff!important}.sq-nav-fill .sq-nav-item{-ms-flex:1 1 auto!important;flex:1 1 auto!important;text-align:center!important}.sq-nav-justified .sq-nav-item{-ms-flex-preferred-size:0!important;flex-basis:0!important;-ms-flex-positive:1!important;flex-grow:1!important;text-align:center!important}.sq-tab-content>.sq-tab-panel{display:none!important}.sq-tab-content>.active{display:block!important}.sq-nav-tabs--vertical{border-bottom:none!important;display:flex!important;flex-flow:column nowrap!important}.sq-nav-tabs--left{margin:0!important}.sq-nav-tabs--left .sq-nav-item+.sq-nav-item{margin-top:.25em!important}.sq-nav-tabs--left .sq-nav-link{transition:border-color .125s ease-in!important;white-space:nowrap!important}.sq-nav-tabs--left .sq-nav-link:hover{background-color:#f7f7f7!important;border-color:transparent!important}.sq-nav-tabs--left .sq-nav-link.active{border-bottom-color:#ddd!important;border-right-color:#fff!important;border-bottom-left-radius:.25em!important;border-top-right-radius:0!important;margin-right:-1px!important}.sq-nav-tabs--left .sq-nav-link.active:hover{background-color:#fff!important;border-color:#0275d8 #fff #0275d8 #0275d8!important}.sq-navbar{position:relative!important;padding:.5em 1em!important}.sq-navbar,.sq-navbar>.container,.sq-navbar>.container-fluid{display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;-ms-flex-align:center!important;align-items:center!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.sq-navbar-brand{display:inline-block!important;padding-top:.3125em!important;padding-bottom:.3125em!important;margin-right:1em!important;font-size:1.25em!important;line-height:inherit!important;white-space:nowrap!important}.sq-navbar-brand:focus,.sq-navbar-brand:hover{text-decoration:none}.sq-navbar-nav{display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important;padding-right:0!important;margin-bottom:0!important;list-style:none!important}.sq-navbar-nav .nav-link{padding-right:0!important;padding-left:0!important}.sq-navbar-nav .dropdown-menu{position:static!important;float:none!important}.sq-navbar-text{display:inline-block!important;padding-top:.5em!important;padding-bottom:.5em!important}.sq-navbar-collapse{-ms-flex-preferred-size:100%!important;flex-basis:100%!important;-ms-flex-positive:1!important;flex-grow:1!important;-ms-flex-align:center!important;align-items:center!important}.sq-navbar-toggler{padding:.25em .75em!important;font-size:1.25em!important;line-height:1!important;background-color:transparent!important;border:1px solid transparent!important;border-radius:.25em!important}.sq-navbar-toggler:focus,.sq-navbar-toggler:hover{text-decoration:none!important}.sq-navbar-toggler:not(:disabled):not(.disabled){cursor:pointer!important}.sq-navbar-toggler-icon{display:inline-block!important;width:1.5em!important;height:1.5em!important;vertical-align:middle!important;content:""!important;background:no-repeat center center!important;background-size:100% 100%!important}@media (max-width:575.98px){.sq-navbar-expand-sm>.container,.sq-navbar-expand-sm>.container-fluid{padding-right:0!important;padding-left:0!important}}@media (min-width:576px){.sq-navbar-expand-sm{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand-sm .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand-sm .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand-sm .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand-sm>.container,.sq-navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand-sm .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand-sm .sq-navbar-toggler{display:none!important}}@media (max-width:767.98px){.sq-navbar-expand-md>.container,.sq-navbar-expand-md>.container-fluid{padding-right:0!important;padding-left:0!important}}@media (min-width:768px){.sq-navbar-expand-md{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand-md .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand-md .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand-md .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand-md>.container,.sq-navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand-md .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand-md .sq-navbar-toggler{display:none!important}}@media (max-width:991.98px){.sq-navbar-expand-lg>.container,.sq-navbar-expand-lg>.container-fluid{padding-right:0!important;padding-left:0!important}}@media (min-width:992px){.sq-navbar-expand-lg{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand-lg .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand-lg .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand-lg .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand-lg>.container,.sq-navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand-lg .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand-lg .sq-navbar-toggler{display:none!important}}@media (max-width:1199.98px){.sq-navbar-expand-xl>.container,.sq-navbar-expand-xl>.container-fluid{padding-right:0!important;padding-left:0!important}}@media (min-width:1200px){.sq-navbar-expand-xl{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand-xl .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand-xl .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand-xl .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand-xl>.container,.sq-navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand-xl .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand-xl .sq-navbar-toggler{display:none!important}}.sq-navbar-expand{-ms-flex-flow:row nowrap!important;flex-flow:row nowrap!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.sq-navbar-expand>.container,.sq-navbar-expand>.container-fluid{padding-right:0!important;padding-left:0!important}.sq-navbar-expand .sq-navbar-nav{-ms-flex-direction:row!important;flex-direction:row!important}.sq-navbar-expand .sq-navbar-nav .dropdown-menu{position:absolute!important}.sq-navbar-expand .sq-navbar-nav .nav-link{padding-right:.5em!important;padding-left:.5em!important}.sq-navbar-expand>.container,.sq-navbar-expand>.container-fluid{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-navbar-expand .sq-navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto!important;flex-basis:auto!important}.sq-navbar-expand .sq-navbar-toggler{display:none!important}.sq-navbar-light .sq-navbar-brand{color:rgba(0,0,0,.9)!important}.sq-navbar-light .sq-navbar-brand:focus,.sq-navbar-light .sq-navbar-brand:hover,.sq-navbar-light .sq-navbar-text a:focus,.sq-navbar-light .sq-navbar-text a:hover{color:rgba(0,0,0,.9)!important}.sq-navbar-light .sq-navbar-nav .nav-link{color:rgba(0,0,0,.5)!important}.sq-navbar-light .sq-navbar-nav .nav-link:focus,.sq-navbar-light .sq-navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)!important}.sq-navbar-light .sq-navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)!important}.sq-navbar-light .sq-navbar-nav .active>.nav-link,.sq-navbar-light .sq-navbar-nav .nav-link.active,.sq-navbar-light .sq-navbar-nav .nav-link.show,.sq-navbar-light .sq-navbar-nav .show>.nav-link,.sq-navbar-light .sq-navbar-text a{color:rgba(0,0,0,.9)!important}.sq-navbar-light .sq-navbar-toggler{color:rgba(0,0,0,.5)!important;border-color:rgba(0,0,0,.1)!important}.sq-navbar-light .sq-navbar-toggler-icon{background-image:url("data:image/svg+xmlcharset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.sq-navbar-light .sq-navbar-text{color:rgba(0,0,0,.5)!important}.sq-navbar-dark .sq-navbar-brand{color:#fff!important}.sq-navbar-dark .sq-navbar-brand:focus,.sq-navbar-dark .sq-navbar-brand:hover,.sq-navbar-dark .sq-navbar-text a:focus,.sq-navbar-dark .sq-navbar-text a:hover{color:#fff!important}.sq-navbar-dark .sq-navbar-nav .nav-link{color:rgba(255,255,255,.5)!important}.sq-navbar-dark .sq-navbar-nav .nav-link:focus,.sq-navbar-dark .sq-navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)!important}.sq-navbar-dark .sq-navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)!important}.sq-navbar-dark .sq-navbar-nav .active>.nav-link,.sq-navbar-dark .sq-navbar-nav .nav-link.active,.sq-navbar-dark .sq-navbar-nav .nav-link.show,.sq-navbar-dark .sq-navbar-nav .show>.nav-link,.sq-navbar-dark .sq-navbar-text a{color:#fff!important}.sq-navbar-dark .sq-navbar-toggler{color:rgba(255,255,255,.5)!important;border-color:rgba(255,255,255,.1)!important}.sq-navbar-dark .sq-navbar-toggler-icon{background-image:url("data:image/svg+xmlcharset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.sq-navbar-dark .sq-navbar-text{color:rgba(255,255,255,.5)!important}.sq-card{position:relative!important;display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important;min-width:0!important;word-wrap:break-word!important;background-color:#fff!important;background-clip:border-box!important;border:1px solid rgba(0,0,0,.125)!important;border-radius:.25em!important}.sq-card>hr{margin-right:0!important;margin-left:0!important}.sq-card>.sq-list-group:first-child .sq-list-group-item:first-child{border-top-left-radius:.25em!important;border-top-right-radius:.25em!important}.sq-card>.sq-list-group:last-child .sq-list-group-item:last-child{border-bottom-right-radius:.25em!important;border-bottom-left-radius:.25em!important}.sq-card-body{-ms-flex:1 1 auto!important;flex:1 1 auto!important;padding:1.25em!important}.sq-card-title{margin-bottom:.75em!important}.sq-card-subtitle{margin-top:-.375em!important;margin-bottom:0!important}.sq-card-text:last-child{margin-bottom:0!important}.sq-card-link:hover{text-decoration:none!important}.sq-card-link+.sq-card-link{margin-right:1.25em!important}.sq-card-header{padding:.75em 1.25em!important;margin-bottom:0!important;background-color:rgba(0,0,0,.03)!important;border-bottom:1px solid rgba(0,0,0,.125)!important}.sq-card-header:first-child{border-radius:calc(.25em - 1px) calc(.25em - 1px) 0 0!important}.sq-card-header+.sq-list-group .sq-list-group-item:first-child{border-top:0!important}.sq-card-footer{padding:.75em 1.25em!important;background-color:rgba(0,0,0,.03)!important;border-top:1px solid rgba(0,0,0,.125)!important}.sq-card-footer:last-child{border-radius:0 0 calc(.25em - 1px) calc(.25em - 1px)!important}.sq-card-footer .sq-switch label{font-size:14px!important}.sq-card-header-tabs{margin-bottom:-.75em!important;border-bottom:0!important}.sq-card-header-pills,.sq-card-header-tabs{margin-right:-.625em!important;margin-left:-.625em!important}.sq-card-img-overlay{position:absolute!important;top:0!important;right:0!important;bottom:0!important;left:0!important;padding:1.25em!important}.sq-card-img{width:100%!important;border-radius:calc(.25em - 1px)!important}.sq-card-img-top{width:100%!important;border-top-left-radius:calc(.25em - 1px)!important;border-top-right-radius:calc(.25em - 1px)!important}.sq-card-img-bottom{width:100%!important;border-bottom-right-radius:calc(.25em - 1px)!important;border-bottom-left-radius:calc(.25em - 1px)!important}.sq-card-deck{display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important}.sq-card-deck .sq-card{margin-bottom:15px!important}@media (min-width:576px){.sq-card-deck{-ms-flex-flow:row wrap!important;flex-flow:row wrap!important;margin-right:-15px!important;margin-left:-15px!important}.sq-card-deck .sq-card{display:-ms-flexbox!important;display:flex!important;-ms-flex:1 0 0%!important;flex:1 0 0%!important;-ms-flex-direction:column!important;flex-direction:column!important;margin-right:15px!important;margin-bottom:0!important;margin-left:15px!important}}.sq-card-group{display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important}.sq-card-group>.sq-card{margin-bottom:15px!important}@media (min-width:576px){.sq-card-group{-ms-flex-flow:row wrap!important;flex-flow:row wrap!important}.sq-card-group>.sq-card{-ms-flex:1 0 0%!important;flex:1 0 0%!important;margin-bottom:0!important}.sq-card-group>.sq-card+.sq-card{margin-left:0!important;border-left:0!important}.sq-card-group>.sq-card:first-child,.sq-card-group>.sq-card:first-child .sq-card-header,.sq-card-group>.sq-card:first-child .sq-card-img-top{border-top-right-radius:0!important}.sq-card-group>.sq-card:first-child,.sq-card-group>.sq-card:first-child .sq-card-footer,.sq-card-group>.sq-card:first-child .sq-card-img-bottom{border-bottom-right-radius:0!important}.sq-card-group>.sq-card:last-child,.sq-card-group>.sq-card:last-child .sq-card-header,.sq-card-group>.sq-card:last-child .sq-card-img-top{border-top-right-radius:0!important}.sq-card-group>.sq-card:last-child,.sq-card-group>.sq-card:last-child .sq-card-footer,.sq-card-group>.sq-card:last-child .sq-card-img-bottom{border-bottom-right-radius:0!important}.sq-card-group>.sq-card:only-child{border-radius:.25em!important}.sq-card-group>.sq-card:only-child .sq-card-header,.sq-card-group>.sq-card:only-child .sq-card-img-top{border-top-left-radius:.25em!important;border-top-right-radius:.25em!important}.sq-card-group>.sq-card:only-child .sq-card-footer,.sq-card-group>.sq-card:only-child .sq-card-img-bottom{border-bottom-right-radius:.25em!important;border-bottom-left-radius:.25em!important}.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child),.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child) .sq-card-footer,.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child) .sq-card-header,.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child) .sq-card-img-bottom,.sq-card-group>.sq-card:not(:first-child):not(:last-child):not(:only-child) .sq-card-img-top{border-radius:0!important}}.sq-card-columns .sq-card{margin-bottom:.75em!important}@media (min-width:576px){.sq-card-columns{-webkit-column-count:3!important;-moz-column-count:3!important;column-count:3!important;-webkit-column-gap:1.25em!important;-moz-column-gap:1.25em!important;column-gap:1.25em!important;orphans:1!important;widows:1!important}.sq-card-columns .sq-card{display:inline-block!important;width:100%!important}}.sq-breadcrumb,.sq-btn{border-radius:.25em!important}.sq-breadcrumb{display:-ms-flexbox!important;display:flex!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important;padding:.75em 1em!important;margin-bottom:1em!important;list-style:none!important;background-color:#e9ecef!important}.sq-breadcrumb-item+.sq-breadcrumb-item{padding-right:.5em!important}.sq-breadcrumb-item+.sq-breadcrumb-item::before{display:inline-block!important;padding-right:.5em!important;color:#6c757d!important;content:"/"!important}.sq-breadcrumb-item+.sq-breadcrumb-item:hover::before{text-decoration:none!important}.sq-breadcrumb-item.active{color:#6c757d!important}.sq-btn{display:inline-block!important;font-weight:400!important;text-align:center!important;white-space:nowrap!important;vertical-align:middle!important;-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important;border:1px solid transparent!important;padding:.375em .75em!important;font-size:1em!important;line-height:1.5!important;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out!important}.sq-btn:focus,.sq-btn:hover{text-decoration:none!important}.sq-btn.focus,.sq-btn:focus{outline:0!important;box-shadow:0 0 0 .2em rgba(0,123,255,.25)!important}.sq-btn.disabled,.sq-btn:disabled{opacity:.65!important}.sq-btn:not(:disabled):not(.disabled){cursor:pointer!important}.sq-btn:not(:disabled):not(.disabled).active,.sq-btn:not(:disabled):not(.disabled):active{background-image:none!important}a.sq-btn.disabled,fieldset:disabled a.sq-btn{pointer-events:none!important}.sq-btn-primary{background-color:#6200ee!important;border-color:#6200ee!important}.sq-btn-primary,.sq-btn-primary:hover{color:#fff!important}.sq-btn-primary.focus,.sq-btn-primary:focus{box-shadow:0 0 0 .2em #5900d7!important}.sq-btn-primary.disabled,.sq-btn-primary:disabled{color:#fff!important;background-color:#5900d7!important;border-color:#5900d7!important}.show>.sq-btn-primary.dropdown-toggle,.sq-btn-primary:not(:disabled):not(.disabled).active,.sq-btn-primary:not(:disabled):not(.disabled):active{color:#fff!important;border-color:#5900d7!important}.show>.sq-btn-primary.dropdown-toggle:focus,.sq-btn-primary:not(:disabled):not(.disabled).active:focus,.sq-btn-primary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em #5900d7!important}.sq-btn-secondary{color:#fff!important;background-color:#6c757d!important;border-color:#6c757d!important}.sq-btn-secondary:hover{color:#fff!important;background-color:#5a6268!important;border-color:#545b62!important}.sq-btn-secondary.focus,.sq-btn-secondary:focus{box-shadow:0 0 0 .2em rgba(108,117,125,.5)!important}.sq-btn-secondary.disabled,.sq-btn-secondary:disabled{color:#fff!important;background-color:#6c757d!important;border-color:#6c757d!important}.show>.sq-btn-secondary.dropdown-toggle,.sq-btn-secondary:not(:disabled):not(.disabled).active,.sq-btn-secondary:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#545b62!important;border-color:#4e555b!important}.show>.sq-btn-secondary.dropdown-toggle:focus,.sq-btn-secondary:not(:disabled):not(.disabled).active:focus,.sq-btn-secondary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(108,117,125,.5)!important}.sq-btn-success{color:#fff!important;background-color:#28a745!important}.sq-btn-success:hover{color:#fff!important;border-color:#1e7e34!important}.sq-btn-success.focus,.sq-btn-success:focus{box-shadow:0 0 0 .2em rgba(40,167,69,.5)!important}.sq-btn-success.disabled,.sq-btn-success:disabled{color:#fff!important;background-color:#28a745!important;border-color:#28a745!important}.show>.sq-btn-success.dropdown-toggle,.sq-btn-success:not(:disabled):not(.disabled).active,.sq-btn-success:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#1e7e34!important;border-color:#1c7430!important}.show>.sq-btn-success.dropdown-toggle:focus,.sq-btn-success:not(:disabled):not(.disabled).active:focus,.sq-btn-success:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(40,167,69,.5)!important}.sq-btn-info,.sq-btn-info:hover{color:#fff!important;background-color:#17a2b8!important;border-color:#17a2b8!important}.sq-btn-info:hover{background-color:#138496!important;border-color:#117a8b!important}.sq-btn-info.focus,.sq-btn-info:focus{box-shadow:0 0 0 .2em rgba(23,162,184,.5)!important}.sq-btn-info.disabled,.sq-btn-info:disabled{color:#fff!important;background-color:#17a2b8!important;border-color:#17a2b8!important}.show>.sq-btn-info.dropdown-toggle,.sq-btn-info:not(:disabled):not(.disabled).active,.sq-btn-info:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#117a8b!important;border-color:#10707f!important}.show>.sq-btn-info.dropdown-toggle:focus,.sq-btn-info:not(:disabled):not(.disabled).active:focus,.sq-btn-info:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(23,162,184,.5)!important}.sq-btn-warning,.sq-btn-warning:hover{color:#212529!important}.sq-btn-warning.focus,.sq-btn-warning:focus{box-shadow:0 0 0 .2em rgba(255,193,7,.5)!important}.sq-btn-warning.disabled,.sq-btn-warning:disabled{color:#212529!important;background-color:#ffc107!important;border-color:#ffc107!important}.show>.sq-btn-warning.dropdown-toggle,.sq-btn-warning:not(:disabled):not(.disabled).active,.sq-btn-warning:not(:disabled):not(.disabled):active{color:#212529!important;background-color:#d39e00!important;border-color:#c69500!important}.show>.sq-btn-warning.dropdown-toggle:focus,.sq-btn-warning:not(:disabled):not(.disabled).active:focus,.sq-btn-warning:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(255,193,7,.5)!important}.sq-btn-danger{color:#fff!important;background-color:#dc3545!important;border-color:#dc3545!important}.sq-btn-danger:hover{color:#fff!important;background-color:#c82333!important;border-color:#bd2130!important}.sq-btn-danger.focus,.sq-btn-danger:focus{box-shadow:0 0 0 .2em rgba(220,53,69,.5)!important}.sq-btn-danger.disabled,.sq-btn-danger:disabled{color:#fff!important;background-color:#dc3545!important;border-color:#dc3545!important}.show>.sq-btn-danger.dropdown-toggle,.sq-btn-danger:not(:disabled):not(.disabled).active,.sq-btn-danger:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#bd2130!important;border-color:#b21f2d!important}.show>.sq-btn-danger.dropdown-toggle:focus,.sq-btn-danger:not(:disabled):not(.disabled).active:focus,.sq-btn-danger:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(220,53,69,.5)!important}.sq-btn-light,.sq-btn-light:hover{color:#212529!important;background-color:#f8f9fa!important;border-color:#f8f9fa!important}.sq-btn-light:hover{background-color:#e2e6ea!important;border-color:#dae0e5!important}.sq-btn-light.focus,.sq-btn-light:focus{box-shadow:0 0 0 .2em rgba(248,249,250,.5)!important}.sq-btn-light.disabled,.sq-btn-light:disabled{color:#212529!important;background-color:#f8f9fa!important;border-color:#f8f9fa!important}.show>.sq-btn-light.dropdown-toggle,.sq-btn-light:not(:disabled):not(.disabled).active,.sq-btn-light:not(:disabled):not(.disabled):active{color:#212529!important;background-color:#dae0e5!important;border-color:#d3d9df!important}.show>.sq-btn-light.dropdown-toggle:focus,.sq-btn-light:not(:disabled):not(.disabled).active:focus,.sq-btn-light:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(248,249,250,.5)!important}.sq-btn-dark,.sq-btn-dark:hover{color:#fff!important;background-color:#343a40!important;border-color:#343a40!important}.sq-btn-dark:hover{background-color:#23272b!important;border-color:#1d2124!important}.sq-btn-dark.focus,.sq-btn-dark:focus{box-shadow:0 0 0 .2em rgba(52,58,64,.5)!important}.sq-btn-dark.disabled,.sq-btn-dark:disabled{color:#fff!important;background-color:#343a40!important;border-color:#343a40!important}.show>.sq-btn-dark.dropdown-toggle,.sq-btn-dark:not(:disabled):not(.disabled).active,.sq-btn-dark:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#1d2124!important;border-color:#171a1d!important}.show>.sq-btn-dark.dropdown-toggle:focus,.sq-btn-dark:not(:disabled):not(.disabled).active:focus,.sq-btn-dark:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(52,58,64,.5)!important}.sq-btn-outline-primary{color:#007bff!important;background-color:transparent!important;background-image:none!important;border-color:#007bff!important}.sq-btn-outline-primary:hover{color:#fff!important;background-color:#007bff!important;border-color:#007bff!important}.sq-btn-outline-primary.focus,.sq-btn-outline-primary:focus{box-shadow:0 0 0 .2em rgba(0,123,255,.5)!important}.sq-btn-outline-primary.disabled,.sq-btn-outline-primary:disabled{color:#007bff!important;background-color:transparent!important}.show>.sq-btn-outline-primary.dropdown-toggle,.sq-btn-outline-primary:not(:disabled):not(.disabled).active,.sq-btn-outline-primary:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#007bff!important;border-color:#007bff!important}.show>.sq-btn-outline-primary.dropdown-toggle:focus,.sq-btn-outline-primary:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-primary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(0,123,255,.5)!important}.sq-btn-outline-secondary{color:#6c757d!important;background-color:transparent!important;background-image:none!important;border-color:#6c757d!important}.sq-btn-outline-secondary:hover{color:#fff!important;background-color:#6c757d!important;border-color:#6c757d!important}.sq-btn-outline-secondary.focus,.sq-btn-outline-secondary:focus{box-shadow:0 0 0 .2em rgba(108,117,125,.5)!important}.sq-btn-outline-secondary.disabled,.sq-btn-outline-secondary:disabled{color:#6c757d!important;background-color:transparent!important}.show>.sq-btn-outline-secondary.dropdown-toggle,.sq-btn-outline-secondary:not(:disabled):not(.disabled).active,.sq-btn-outline-secondary:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#6c757d!important;border-color:#6c757d!important}.show>.sq-btn-outline-secondary.dropdown-toggle:focus,.sq-btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-secondary:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(108,117,125,.5)!important}.sq-btn-outline-success{color:#28a745!important;background-color:transparent!important;background-image:none!important;border-color:#28a745!important}.sq-btn-outline-success:hover{color:#fff!important;background-color:#28a745!important;border-color:#28a745!important}.sq-btn-outline-success.focus,.sq-btn-outline-success:focus{box-shadow:0 0 0 .2em rgba(40,167,69,.5)!important}.sq-btn-outline-success.disabled,.sq-btn-outline-success:disabled{color:#28a745!important;background-color:transparent!important}.show>.sq-btn-outline-success.dropdown-toggle,.sq-btn-outline-success:not(:disabled):not(.disabled).active,.sq-btn-outline-success:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#28a745!important;border-color:#28a745!important}.show>.sq-btn-outline-success.dropdown-toggle:focus,.sq-btn-outline-success:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-success:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(40,167,69,.5)!important}.sq-btn-outline-info{color:#17a2b8!important;background-color:transparent!important;background-image:none!important;border-color:#17a2b8!important}.sq-btn-outline-info:hover{color:#fff!important;background-color:#17a2b8!important;border-color:#17a2b8!important}.sq-btn-outline-info.focus,.sq-btn-outline-info:focus{box-shadow:0 0 0 .2em rgba(23,162,184,.5)!important}.sq-btn-outline-info.disabled,.sq-btn-outline-info:disabled{color:#17a2b8!important;background-color:transparent!important}.show>.sq-btn-outline-info.dropdown-toggle,.sq-btn-outline-info:not(:disabled):not(.disabled).active,.sq-btn-outline-info:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#17a2b8!important;border-color:#17a2b8!important}.show>.sq-btn-outline-info.dropdown-toggle:focus,.sq-btn-outline-info:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-info:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(23,162,184,.5)!important}.sq-btn-outline-warning{color:#ffc107!important;background-color:transparent!important;background-image:none!important;border-color:#ffc107!important}.sq-btn-outline-warning:hover{color:#212529!important;background-color:#ffc107!important;border-color:#ffc107!important}.sq-btn-outline-warning.focus,.sq-btn-outline-warning:focus{box-shadow:0 0 0 .2em rgba(255,193,7,.5)!important}.sq-btn-outline-warning.disabled,.sq-btn-outline-warning:disabled{color:#ffc107!important;background-color:transparent!important}.show>.sq-btn-outline-warning.dropdown-toggle,.sq-btn-outline-warning:not(:disabled):not(.disabled).active,.sq-btn-outline-warning:not(:disabled):not(.disabled):active{color:#212529!important;background-color:#ffc107!important;border-color:#ffc107!important}.show>.sq-btn-outline-warning.dropdown-toggle:focus,.sq-btn-outline-warning:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-warning:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(255,193,7,.5)!important}.sq-btn-outline-danger{color:#dc3545!important;background-color:transparent!important;background-image:none!important;border-color:#dc3545!important}.sq-btn-outline-danger:hover{color:#fff!important;background-color:#dc3545!important;border-color:#dc3545!important}.sq-btn-outline-danger.focus,.sq-btn-outline-danger:focus{box-shadow:0 0 0 .2em rgba(220,53,69,.5)!important}.sq-btn-outline-danger.disabled,.sq-btn-outline-danger:disabled{color:#dc3545!important;background-color:transparent!important}.show>.sq-btn-outline-danger.dropdown-toggle,.sq-btn-outline-danger:not(:disabled):not(.disabled).active,.sq-btn-outline-danger:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#dc3545!important;border-color:#dc3545!important}.show>.sq-btn-outline-danger.dropdown-toggle:focus,.sq-btn-outline-danger:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-danger:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(220,53,69,.5)!important}.sq-btn-outline-light{color:#f8f9fa!important;background-color:transparent!important;background-image:none!important;border-color:#f8f9fa!important}.sq-btn-outline-light:hover{color:#212529!important;background-color:#f8f9fa!important;border-color:#f8f9fa!important}.sq-btn-outline-light.focus,.sq-btn-outline-light:focus{box-shadow:0 0 0 .2em rgba(248,249,250,.5)!important}.sq-btn-outline-light.disabled,.sq-btn-outline-light:disabled{color:#f8f9fa!important;background-color:transparent!important}.show>.sq-btn-outline-light.dropdown-toggle,.sq-btn-outline-light:not(:disabled):not(.disabled).active,.sq-btn-outline-light:not(:disabled):not(.disabled):active{color:#212529!important;background-color:#f8f9fa!important;border-color:#f8f9fa!important}.show>.sq-btn-outline-light.dropdown-toggle:focus,.sq-btn-outline-light:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-light:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(248,249,250,.5)!important}.sq-btn-outline-dark{color:#343a40!important;background-color:transparent!important;background-image:none!important;border-color:#343a40!important}.sq-btn-outline-dark:hover{color:#fff!important;background-color:#343a40!important;border-color:#343a40!important}.sq-btn-outline-dark.focus,.sq-btn-outline-dark:focus{box-shadow:0 0 0 .2em rgba(52,58,64,.5)!important}.sq-btn-outline-dark.disabled,.sq-btn-outline-dark:disabled{color:#343a40!important;background-color:transparent!important}.show>.sq-btn-outline-dark.dropdown-toggle,.sq-btn-outline-dark:not(:disabled):not(.disabled).active,.sq-btn-outline-dark:not(:disabled):not(.disabled):active{color:#fff!important;background-color:#343a40!important;border-color:#343a40!important}.show>.sq-btn-outline-dark.dropdown-toggle:focus,.sq-btn-outline-dark:not(:disabled):not(.disabled).active:focus,.sq-btn-outline-dark:not(:disabled):not(.disabled):active:focus{box-shadow:0 0 0 .2em rgba(52,58,64,.5)!important}.sq-btn-link,.sq-btn-link:hover{background-color:transparent!important}.sq-btn-link{font-weight:400!important;color:#6200ee!important}.sq-btn-link:hover{color:#5e03e1!important;text-decoration:underline!important;border-color:transparent!important}.sq-btn-link.focus,.sq-btn-link:focus{text-decoration:underline!important;border-color:transparent!important;box-shadow:none!important}.sq-btn-link.disabled,.sq-btn-link:disabled{color:#6c757d!important;pointer-events:none!important}.sq-btn-group-lg>.sq-btn,.sq-btn-lg{padding:.5em 1em!important;font-size:1.25em!important;line-height:1.5!important;border-radius:.3em!important}.sq-btn-group-sm>.sq-btn,.sq-btn-sm{padding:.25em .5em!important;font-size:14px!important;line-height:1.5!important;border-radius:.2em!important}.sq-btn-block{display:block!important;width:100%!important}.sq-btn-block+.sq-btn-block{margin-top:.5em!important}.sq-btn-success{border-color:transparent!important}.sq-btn-success:hover{background-color:#6200ee!important}.show>.sq-btn-primary.dropdown-toggle,.sq-btn-primary:not(:disabled):not(.disabled).active,.sq-btn-primary:not(:disabled):not(.disabled):active{background-color:#6200ee!important}.sq-btn-primary:hover{background-color:#6200ee!important;border-color:transparent!important}.sq-btn-warning,.sq-btn-warning:hover{background-color:#f2ca4c!important;border-color:transparent!important}.sq-btn-warning:hover{background-color:#e6be4b!important}.sq-align-baseline{vertical-align:baseline!important}.sq-align-top{vertical-align:top!important}.sq-align-middle{vertical-align:middle!important}.sq-align-bottom{vertical-align:bottom!important}.sq-align-text-bottom{vertical-align:text-bottom!important}.sq-align-text-top{vertical-align:text-top!important}.sq-bg-primary{background-color:#6200ee!important}a.sq-bg-primary:focus,a.sq-bg-primary:hover,button.sq-bg-primary:focus,button.sq-bg-primary:hover{background-color:#5f04e1!important}.sq-bg-secondary{background-color:#6c757d!important}a.sq-bg-secondary:focus,a.sq-bg-secondary:hover,button.sq-bg-secondary:focus,button.sq-bg-secondary:hover{background-color:#545b62!important}.sq-bg-success{background-color:#28a745!important}a.sq-bg-success:focus,a.sq-bg-success:hover,button.sq-bg-success:focus,button.sq-bg-success:hover{background-color:#1e7e34!important}.sq-bg-info{background-color:#17a2b8!important}a.sq-bg-info:focus,a.sq-bg-info:hover,button.sq-bg-info:focus,button.sq-bg-info:hover{background-color:#117a8b!important}.sq-bg-warning{background-color:#ffc107!important}a.sq-bg-warning:focus,a.sq-bg-warning:hover,button.sq-bg-warning:focus,button.sq-bg-warning:hover{background-color:#d39e00!important}.sq-bg-danger{background-color:#dc3545!important}a.sq-bg-danger:focus,a.sq-bg-danger:hover,button.sq-bg-danger:focus,button.sq-bg-danger:hover{background-color:#bd2130!important}.sq-bg-light{background-color:#f8f9fa!important}a.sq-bg-light:focus,a.sq-bg-light:hover,button.sq-bg-light:focus,button.sq-bg-light:hover{background-color:#dae0e5!important}.sq-bg-dark{background-color:#343a40!important}a.sq-bg-dark:focus,a.sq-bg-dark:hover,button.sq-bg-dark:focus,button.sq-bg-dark:hover{background-color:#1d2124!important}.sq-bg-white{background-color:#fff!important}.sq-bg-transparent{background-color:transparent!important}.sq-border{border:1px solid #dee2e6!important}.sq-border-top{border-top:1px solid #dee2e6!important}.sq-border-right{border-right:1px solid #dee2e6!important}.sq-border-bottom{border-bottom:1px solid #dee2e6!important}.sq-border-left{border-right:1px solid #dee2e6!important}.sq-border-0{border:0!important}.sq-border-top-0{border-top:0!important}.sq-border-right-0{border-right:0!important}.sq-border-bottom-0{border-bottom:0!important}.sq-border-left-0{border-right:0!important}.sq-border-primary{border-color:#007bff!important}.sq-border-secondary{border-color:#6c757d!important}.sq-border-success{border-color:#28a745!important}.sq-border-info{border-color:#17a2b8!important}.sq-border-warning{border-color:#ffc107!important}.sq-border-danger{border-color:#dc3545!important}.sq-border-light{border-color:#f8f9fa!important}.sq-border-dark{border-color:#343a40!important}.sq-border-white{border-color:#fff!important}.sq-rounded{border-radius:.25em!important}.sq-rounded-right,.sq-rounded-top{border-top-right-radius:.25em!important}.sq-rounded-top{border-top-left-radius:.25em!important}.sq-rounded-right{border-bottom-right-radius:.25em!important}.sq-rounded-bottom,.sq-rounded-left{border-bottom-left-radius:.25em!important}.sq-rounded-bottom{border-bottom-right-radius:.25em!important}.sq-rounded-left{border-top-left-radius:.25em!important}.sq-rounded-circle{border-radius:50%!important}.sq-rounded-0{border-radius:0!important}.sq-clearfix::after{display:block!important;clear:both!important;content:""}.sq-d-none{display:none!important}.sq-d-inline{display:inline!important}.sq-d-inline-block{display:inline-block!important}.sq-d-block{display:block!important}.sq-d-table{display:table!important}.sq-d-table-row{display:table-row!important}.sq-d-table-cell{display:table-cell!important}.sq-flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.sq-flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.sq-flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.sq-flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.sq-flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.sq-flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.sq-flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.sq-flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.sq-flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.sq-flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.sq-flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.sq-flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.sq-d-flex{display:-ms-flexbox!important;display:flex!important}.sq-d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}.sq-float-left,.sq-float-right{float:right!important}.sq-float-none{float:none!important}.sq-position-static{position:static!important}.sq-position-relative{position:relative!important}.sq-position-absolute{position:absolute!important}.sq-position-fixed{position:fixed!important}.sq-position-sticky{position:-webkit-sticky!important;position:sticky!important}.sq-fixed-bottom,.sq-fixed-top{position:fixed!important;right:0!important;left:0!important;z-index:1030}.sq-fixed-top{top:0}.sq-fixed-bottom{bottom:0!important}.sq-text-justify{text-align:justify!important}.sq-text-nowrap{white-space:nowrap!important}.sq-text-truncate{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap}.sq-text-left{text-align:right!important}.sq-text-right{text-align:left!important}.sq-text-center{text-align:center!important}.sq-text-lowercase{text-transform:lowercase!important}.sq-text-uppercase{text-transform:uppercase!important}.sq-text-capitalize{text-transform:capitalize!important}.sq-font-weight-light{font-weight:300!important}.sq-font-weight-normal{font-weight:400!important}.sq-font-weight-bold{font-weight:700!important}.sq-font-italic{font-style:italic!important}.sq-text-white{color:#fff!important}.sq-text-primary{color:#6200ee!important}a.sq-text-primary:focus,a.sq-text-primary:hover{color:#5a03d9!important}.sq-text-secondary{color:#6c757d!important}a.sq-text-secondary:focus,a.sq-text-secondary:hover{color:#545b62!important}.sq-text-success{color:#28a745!important}a.sq-text-success:focus,a.sq-text-success:hover{color:#1e7e34!important}.sq-text-info{color:#17a2b8!important}a.sq-text-info:focus,a.sq-text-info:hover{color:#117a8b!important}.sq-text-warning{color:#ffc107!important}a.sq-text-warning:focus,a.sq-text-warning:hover{color:#d39e00!important}.sq-text-danger{color:#dc3545!important}a.sq-text-danger:focus,a.sq-text-danger:hover{color:#bd2130!important}.sq-text-light{color:#f8f9fa!important}a.sq-text-light:focus,a.sq-text-light:hover{color:#dae0e5!important}.sq-text-dark{color:#343a40!important}a.sq-text-dark:focus,a.sq-text-dark:hover{color:#1d2124!important}.sq-text-body{color:#212529!important}.sq-text-muted{color:#6c757d!important}.sq-text-black-50{color:rgba(0,0,0,.5)!important}.sq-text-white-50{color:rgba(255,255,255,.5)!important}.sq-text-hide{font:0/0 a!important;color:transparent!important;text-shadow:none!important;background-color:transparent!important;border:0!important}.sq-visible{visibility:visible!important}.sq-invisible{visibility:hidden!important}.sq-pagination{display:-ms-flexbox!important;display:flex!important;padding-left:0!important;list-style:none!important;border-radius:.25em!important}.page-link{position:relative!important;display:block!important;padding:.5em .75em!important;margin-left:-1px!important;line-height:1.25!important;color:#007bff!important;background-color:#fff!important;border:1px solid #dee2e6!important}.page-link:hover{z-index:2!important;color:#0056b3!important;text-decoration:none!important;background-color:#e9ecef!important;border-color:#dee2e6!important}.page-link:focus{z-index:2!important;outline:0!important;box-shadow:0 0 0 .2em rgba(0,123,255,.25)!important}.page-link:not(:disabled):not(.disabled){cursor:pointer!important}.page-item:first-child .page-link{margin-left:0!important;border-top-left-radius:.25em!important;border-bottom-left-radius:.25em!important}.page-item:last-child .page-link{border-top-right-radius:.25em!important;border-bottom-right-radius:.25em!important}.page-item.active .page-link{z-index:1!important;color:#fff!important;background-color:#007bff!important;border-color:#007bff!important}.page-item.disabled .page-link{color:#6c757d!important;pointer-events:none!important;cursor:auto!important;background-color:#fff!important;border-color:#dee2e6!important}.sq-pagination-lg .page-link{padding:.75em 1.5em!important;font-size:1.25em!important;line-height:1.5!important}.sq-pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3em!important;border-bottom-left-radius:.3em!important}.sq-pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3em!important;border-bottom-right-radius:.3em!important}.sq-pagination-sm .page-link{padding:.25em .5em!important;font-size:.875em!important;line-height:1.5!important}.sq-pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2em!important;border-bottom-left-radius:.2em!important}.sq-pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2em!important;border-bottom-right-radius:.2em!important}.sq-alert{position:relative!important;padding:.75em 1.25em!important;margin-bottom:1em!important;border:1px solid transparent!important;border-radius:.25em!important}.sq-alert-absolute{position:absolute!important;top:0!important;left:0!important;width:100%!important;border-radius:0!important;z-index:101!important}.sq-alert-heading{color:inherit!important}.sq-alert-link{font-weight:700!important}.sq-alert-dismissible{padding-right:4em!important}.sq-alert-dismissible .close{position:absolute!important;top:0!important;right:0!important;padding:.75em 1.25em!important;color:inherit!important}.sq-alert-primary{color:#004085!important;background-color:#cce5ff!important;border-color:#b8daff!important}.sq-alert-primary hr{border-top-color:#9fcdff!important}.sq-alert-primary .sq-alert-link{color:#002752!important}.sq-alert-secondary{color:#383d41!important;background-color:#e2e3e5!important;border-color:#d6d8db!important}.sq-alert-secondary hr{border-top-color:#c8cbcf!important}.sq-alert-secondary .sq-alert-link{color:#202326!important}.sq-alert-success{color:#155724!important;background-color:#d4edda!important;border-color:#c3e6cb!important}.sq-alert-success hr{border-top-color:#b1dfbb!important}.sq-alert-success .sq-alert-link{color:#0b2e13!important}.sq-alert-info{color:#0c5460!important;background-color:#d1ecf1!important;border-color:#bee5eb!important}.sq-alert-info hr{border-top-color:#abdde5!important}.sq-alert-info .sq-alert-link{color:#062c33!important}.sq-alert-warning{color:#856404!important;background-color:#fff3cd!important;border-color:#ffeeba!important}.sq-alert-warning hr{border-top-color:#ffe8a1!important}.sq-alert-warning .sq-alert-link{color:#533f03!important}.sq-alert-danger{color:#721c24!important;background-color:#f8d7da!important;border-color:#f5c6cb!important}.sq-alert-danger hr{border-top-color:#f1b0b7!important}.sq-alert-danger .sq-alert-link{color:#491217!important}.sq-alert-light{color:#818182!important;background-color:#fefefe!important;border-color:#fdfdfe!important}.sq-alert-light hr{border-top-color:#ececf6!important}.sq-alert-light .sq-alert-link{color:#686868!important}.sq-alert-dark{color:#1b1e21!important;background-color:#d6d8d9!important;border-color:#c6c8ca!important}.sq-alert-dark hr{border-top-color:#b9bbbe!important}.sq-alert-dark .sq-alert-link{color:#040505!important}.sq-tooltip{z-index:1070!important;margin:0!important;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"!important;font-style:normal!important;font-weight:400!important;line-height:1.5!important;text-align:left!important;text-align:start!important;text-decoration:none!important;text-shadow:none!important;text-transform:none!important;letter-spacing:normal!important;word-break:normal!important;word-spacing:normal!important;white-space:normal!important;line-break:auto!important;font-size:.875em!important;word-wrap:break-word!important;opacity:0!important}.sq-tooltip.show{opacity:.9!important}.sq-tooltip,.sq-tooltip .sq-tooltip-arrow{position:absolute!important;display:block!important}.sq-tooltip .sq-tooltip-arrow{width:.8em!important;height:.4em!important}.sq-tooltip .sq-tooltip-arrow::before{position:absolute!important;content:""!important;border-color:transparent!important;border-style:solid!important}.sq-bs-tooltip-auto[x-placement^=top],.sq-bs-tooltip-top{padding:.4em 0!important}.sq-bs-tooltip-auto[x-placement^=top] .sq-tooltip-arrow,.sq-bs-tooltip-top .sq-tooltip-arrow{bottom:0!important}.sq-bs-tooltip-auto[x-placement^=top] .sq-tooltip-arrow::before,.sq-bs-tooltip-top .sq-tooltip-arrow::before{top:0!important;border-width:.4em .4em 0!important;border-top-color:#000!important}.sq-bs-tooltip-auto[x-placement^=right],.sq-bs-tooltip-right{padding:0 .4em!important}.sq-bs-tooltip-auto[x-placement^=right] .sq-tooltip-arrow,.sq-bs-tooltip-right .sq-tooltip-arrow{left:0!important;width:.4em!important;height:.8em!important}.sq-bs-tooltip-auto[x-placement^=right] .sq-tooltip-arrow::before,.sq-bs-tooltip-right .sq-tooltip-arrow::before{right:0!important;border-width:.4em .4em .4em 0!important;border-right-color:#000!important}.sq-bs-tooltip-auto[x-placement^=bottom],.sq-bs-tooltip-bottom{padding:.4em 0!important}.sq-bs-tooltip-auto[x-placement^=bottom] .sq-tooltip-arrow,.sq-bs-tooltip-bottom .sq-tooltip-arrow{top:0!important}.sq-bs-tooltip-auto[x-placement^=bottom] .sq-tooltip-arrow::before,.sq-bs-tooltip-bottom .sq-tooltip-arrow::before{bottom:0!important;border-width:0 .4em .4em!important;border-bottom-color:#000!important}.sq-bs-tooltip-auto[x-placement^=left],.sq-bs-tooltip-left{padding:0 .4em!important}.sq-bs-tooltip-auto[x-placement^=left] .sq-tooltip-arrow,.sq-bs-tooltip-left .sq-tooltip-arrow{right:0!important;width:.4em!important;height:.8em!important}.sq-bs-tooltip-auto[x-placement^=left] .sq-tooltip-arrow::before,.sq-bs-tooltip-left .sq-tooltip-arrow::before{left:0!important;border-width:.4em 0 .4em .4em!important;border-left-color:#000!important}.sq-tooltip-inner{max-width:200px!important;padding:.25em .5em!important;color:#fff!important;text-align:center!important;background-color:#000!important;border-radius:.25em!important}.sq-progress,.sq-progress-bar{display:-ms-flexbox!important;display:flex!important}.sq-progress{height:1em!important;overflow:hidden!important;font-size:.75em!important;background-color:#e9ecef!important;border-radius:.25em!important}.sq-progress-bar{-ms-flex-direction:column!important;flex-direction:column!important;-ms-flex-pack:center!important;justify-content:center!important;color:#fff!important;text-align:center!important;white-space:nowrap!important;background-color:#007bff!important;transition:width .6s ease!important}.sq-progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)!important;background-size:1em 1em!important}.sq-progress-bar-animated{-webkit-animation:sq-progress-bar-stripes 1s linear infinite!important;animation:sq-progress-bar-stripes 1s linear infinite!important}.sq-list-group{display:-ms-flexbox!important;display:flex!important;-ms-flex-direction:column!important;flex-direction:column!important;padding-left:0!important;margin-bottom:0!important}.sq-list-group-item-action{width:100%!important;color:#495057!important;text-align:inherit!important}.sq-list-group-item-action:focus,.sq-list-group-item-action:hover{color:#495057!important;text-decoration:none!important;background-color:#f8f9fa!important}.sq-list-group-item-action:active{color:#212529!important;background-color:#e9ecef!important}.sq-list-group-item{position:relative!important;display:block!important;padding:.75em 1.25em!important;margin-bottom:-1px!important;background-color:#fff!important;border:1px solid rgba(0,0,0,.125)!important}.sq-list-group-item:first-child{border-top-left-radius:.25em!important;border-top-right-radius:.25em!important}.sq-list-group-item:last-child{margin-bottom:0!important;border-bottom-right-radius:.25em!important;border-bottom-left-radius:.25em!important}.sq-list-group-item:focus,.sq-list-group-item:hover{z-index:1!important;text-decoration:none!important}.sq-list-group-item.disabled,.sq-list-group-item:disabled{color:#6c757d!important;background-color:#fff!important}.sq-list-group-item.active{z-index:2!important;color:#fff!important;background-color:#007bff!important;border-color:#007bff!important}.sq-list-group-flush .sq-list-group-item{border-right:0!important;border-left:0!important;border-radius:0!important}.sq-list-group-flush:first-child .sq-list-group-item:first-child{border-top:0!important}.sq-list-group-flush:last-child .sq-list-group-item:last-child{border-bottom:0!important}.sq-list-group-item-primary{color:#004085!important;background-color:#b8daff!important}.sq-list-group-item-primary.sq-list-group-item-action:focus,.sq-list-group-item-primary.sq-list-group-item-action:hover{color:#004085!important;background-color:#9fcdff!important}.sq-list-group-item-primary.sq-list-group-item-action.active{color:#fff!important;background-color:#004085!important;border-color:#004085!important}.sq-list-group-item-secondary{color:#383d41!important;background-color:#d6d8db!important}.sq-list-group-item-secondary.sq-list-group-item-action:focus,.sq-list-group-item-secondary.sq-list-group-item-action:hover{color:#383d41!important;background-color:#c8cbcf!important}.sq-list-group-item-secondary.sq-list-group-item-action.active{color:#fff!important;background-color:#383d41!important;border-color:#383d41!important}.sq-list-group-item-success{color:#155724!important;background-color:#c3e6cb!important}.sq-list-group-item-success.sq-list-group-item-action:focus,.sq-list-group-item-success.sq-list-group-item-action:hover{color:#155724!important;background-color:#b1dfbb!important}.sq-list-group-item-success.sq-list-group-item-action.active{color:#fff!important;background-color:#155724!important;border-color:#155724!important}.sq-list-group-item-info{color:#0c5460!important;background-color:#bee5eb!important}.sq-list-group-item-info.sq-list-group-item-action:focus,.sq-list-group-item-info.sq-list-group-item-action:hover{color:#0c5460!important;background-color:#abdde5!important}.sq-list-group-item-info.sq-list-group-item-action.active{color:#fff!important;background-color:#0c5460!important;border-color:#0c5460!important}.sq-list-group-item-warning{color:#856404!important;background-color:#ffeeba!important}.sq-list-group-item-warning.sq-list-group-item-action:focus,.sq-list-group-item-warning.sq-list-group-item-action:hover{color:#856404!important;background-color:#ffe8a1!important}.sq-list-group-item-warning.sq-list-group-item-action.active{color:#fff!important;background-color:#856404!important;border-color:#856404!important}.sq-list-group-item-danger{color:#721c24!important;background-color:#f5c6cb!important}.sq-list-group-item-danger.sq-list-group-item-action:focus,.sq-list-group-item-danger.sq-list-group-item-action:hover{color:#721c24!important;background-color:#f1b0b7!important}.sq-list-group-item-danger.sq-list-group-item-action.active{color:#fff!important;background-color:#721c24!important;border-color:#721c24!important}.sq-list-group-item-light{color:#818182!important;background-color:#fdfdfe!important}.sq-list-group-item-light.sq-list-group-item-action:focus,.sq-list-group-item-light.sq-list-group-item-action:hover{color:#818182!important;background-color:#ececf6!important}.sq-list-group-item-light.sq-list-group-item-action.active{color:#fff!important;background-color:#818182!important;border-color:#818182!important}.sq-list-group-item-dark{color:#1b1e21!important;background-color:#c6c8ca!important}.sq-list-group-item-dark.sq-list-group-item-action:focus,.sq-list-group-item-dark.sq-list-group-item-action:hover{color:#1b1e21!important;background-color:#b9bbbe!important}.sq-list-group-item-dark.sq-list-group-item-action.active{color:#fff!important;background-color:#1b1e21!important;border-color:#1b1e21!important}.sq-close{float:right!important;font-size:1.5em!important;font-weight:700!important;line-height:1!important;color:#000!important;text-shadow:0 1px 0 #fff!important;opacity:.5!important}.sq-close-absolute{position:absolute!important;right:5px!important;top:5px!important;z-index:1!important}.sq-close:focus,.sq-close:hover{color:#000!important;text-decoration:none!important;opacity:.75!important}.sq-close:not(:disabled):not(.disabled){cursor:pointer!important}.sq-input-group>button.sq-btn,.sq-input-group>input{max-height:47px!important}.sq-shadow-sm{box-shadow:0 .125em .25em rgba(0,0,0,.075)!important}.sq-shadow{box-shadow:0 .5em 1em rgba(0,0,0,.15)!important}.sq-shadow-lg{box-shadow:0 1em 3em rgba(0,0,0,.175)!important}.sq-shadow-none{box-shadow:none!important}.sq-modal,.sq-modal-open{overflow:hidden!important}.sq-modal{position:fixed!important;top:0!important;right:0!important;bottom:0!important;left:0!important;z-index:1050!important;display:none;outline:0!important}.sq-modal-open .sq-modal{overflow-x:hidden!important;overflow-y:auto!important}.sq-modal-dialog{position:relative!important;width:auto!important;margin:.5em!important;pointer-events:none!important}.sq-modal.fade .sq-modal-dialog{transition:transform .3s ease-out!important;transition:transform .3s ease-out,-webkit-transform .3s ease-out!important;-webkit-transform:translate(0,-25%)!important;transform:translate(0,-25%)!important}.sq-modal.show .sq-modal-dialog{-webkit-transform:translate(0,0)!important;transform:translate(0,0)!important}.sq-modal-content,.sq-modal-dialog-centered{display:-ms-flexbox!important;display:flex!important}.sq-modal-dialog-centered{-ms-flex-align:center!important;align-items:center!important;min-height:calc(100% - (.5em*2))!important}.sq-modal-content{position:relative!important;-ms-flex-direction:column!important;flex-direction:column!important;width:100%!important;pointer-events:auto!important;background-color:#fff!important;background-clip:padding-box!important;border:1px solid rgba(0,0,0,.2)!important;border-radius:.3em!important;outline:0!important}.sq-modal-backdrop{position:fixed!important;top:0!important;right:0!important;bottom:0!important;left:0!important;z-index:1040!important;background-color:#000!important}.sq-modal-backdrop.fade{opacity:0!important}.sq-modal-backdrop.show{opacity:.5!important}.sq-modal-header{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:start!important;align-items:flex-start!important;-ms-flex-pack:justify!important;justify-content:space-between!important;padding:1em!important;border-bottom:1px solid #e9ecef!important;border-top-left-radius:.3em!important;border-top-right-radius:.3em!important}.sq-modal-header .close{padding:1em!important;margin:-1em -1em -1em auto!important}.sq-modal-title{margin-bottom:0!important;line-height:1.5!important}.sq-modal-body{position:relative!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important;padding:1em!important}.sq-modal-footer{display:-ms-flexbox!important;display:flex!important;-ms-flex-align:center!important;align-items:center!important;-ms-flex-pack:end!important;justify-content:flex-end!important;padding:1em!important;border-top:1px solid #e9ecef!important}.sq-modal-footer>:not(:first-child){margin-left:.25em!important}.sq-modal-footer>:not(:last-child){margin-right:.25em!important}.sq-modal-scrollbar-measure{position:absolute!important;top:-9999px!important;width:50px!important;height:50px!important;overflow:scroll!important}@media (min-width:576px){.sq-modal-dialog{max-width:500px!important;margin:1.75em auto!important}.sq-modal-dialog-centered{min-height:calc(100% - (1.75em*2))!important}.sq-modal-sm{max-width:300px!important}}@media (min-width:992px){.sq-modal-lg{max-width:800px!important}}.sq-col-1,.sq-col-10,.sq-col-11,.sq-col-12,.sq-col-2,.sq-col-3,.sq-col-4,.sq-col-5,.sq-col-6,.sq-col-7,.sq-col-8,.sq-col-9{position:relative!important;width:100%!important;min-height:1px!important;padding-right:15px!important;padding-left:15px}.sq-col-auto{position:relative!important;min-height:1px!important;padding-right:15px!important;padding-left:15px}.sq-col,.sq-col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.sq-col-sm{-ms-flex-preferred-size:0!important;flex-basis:0!important;-ms-flex-positive:1!important;flex-grow:1!important}.sq-col-auto{-ms-flex:0 0 auto!important;flex:0 0 auto!important;width:auto!important;max-width:none}.sq-col-1{-ms-flex:0 0 8.333333%!important;flex:0 0 8.333333%!important;max-width:8.333333%}.sq-col-2{-ms-flex:0 0 16.666667%!important;flex:0 0 16.666667%!important;max-width:16.666667%}.sq-col-3{-ms-flex:0 0 25%!important;flex:0 0 25%!important;max-width:25%}.sq-col-4{-ms-flex:0 0 33.333333%!important;flex:0 0 33.333333%!important;max-width:33.333333%}.sq-col-5{-ms-flex:0 0 41.666667%!important;flex:0 0 41.666667%!important;max-width:41.666667%}.sq-col-6{-ms-flex:0 0 50%!important;flex:0 0 50%!important;max-width:50%}.sq-col-7{-ms-flex:0 0 58.333333%!important;flex:0 0 58.333333%!important;max-width:58.333333%}.sq-col-8{-ms-flex:0 0 66.666667%!important;flex:0 0 66.666667%!important;max-width:66.666667%}.sq-col-9{-ms-flex:0 0 75%!important;flex:0 0 75%!important;max-width:75%}.sq-col-10{-ms-flex:0 0 83.333333%!important;flex:0 0 83.333333%!important;max-width:83.333333%}.sq-col-11{-ms-flex:0 0 91.666667%!important;flex:0 0 91.666667%!important;max-width:91.666667%}.sq-col-12{-ms-flex:0 0 100%!important;flex:0 0 100%!important;max-width:100%}.sq-m-0{margin:0!important}.sq-ml-0,.sq-mx-0{margin-right:0!important}.sq-mr-0,.sq-mx-0{margin-left:0!important}.sq-mt-0,.sq-my-0{margin-top:0!important}.sq-mb-0,.sq-my-0{margin-bottom:0!important}.sq-m-1{margin:.25em!important}.sq-ml-1,.sq-mx-1{margin-right:.25em!important}.sq-mr-1,.sq-mx-1{margin-left:.25em!important}.sq-mt-1,.sq-my-1{margin-top:.25em!important}.sq-mb-1,.sq-my-1{margin-bottom:.25em!important}.sq-m-2{margin:.5em!important}.sq-ml-2,.sq-mx-2{margin-right:.5em!important}.sq-mr-2,.sq-mx-2{margin-left:.5em!important}.sq-mt-2,.sq-my-2{margin-top:.5em!important}.sq-mb-2,.sq-my-2{margin-bottom:.5em!important}.sq-m-3{margin:1em!important}.sq-ml-3,.sq-mx-3{margin-right:1em!important}.sq-mr-3,.sq-mx-3{margin-left:1em!important}.sq-mt-3,.sq-my-3{margin-top:1em!important}.sq-mb-3,.sq-my-3{margin-bottom:1em!important}.sq-m-4{margin:1.5em!important}.sq-ml-4,.sq-mx-4{margin-right:1.5em!important}.sq-mr-4,.sq-mx-4{margin-left:1.5em!important}.sq-mt-4,.sq-my-4{margin-top:1.5em!important}.sq-mb-4,.sq-my-4{margin-bottom:1.5em!important}.sq-m-5{margin:3em!important}.sq-ml-5,.sq-mx-5{margin-right:3em!important}.sq-mr-5,.sq-mx-5{margin-left:3em!important}.sq-mt-5,.sq-my-5{margin-top:3em!important}.sq-mb-5,.sq-my-5{margin-bottom:3em!important}.sq-m-auto{margin:auto!important}.sq-mt-auto,.sq-my-auto{margin-top:auto!important}.sq-mr-auto{margin-right:auto!important}.sq-mb-auto,.sq-my-auto{margin-bottom:auto!important}.sq-ml-auto,.sq-mx-auto{margin-right:auto!important}.sq-p-0,.sq-switch input{padding:0!important}.sq-pl-0,.sq-pr-0,.sq-px-0{padding-right:0!important}.sq-pt-0,.sq-py-0{padding-top:0!important}.sq-pb-0,.sq-py-0{padding-bottom:0!important}.sq-p-1{padding:.25em!important}.sq-pl-1,.sq-pr-1,.sq-px-1{padding-right:.25em!important}.sq-pt-1,.sq-py-1{padding-top:.25em!important}.sq-pb-1,.sq-py-1{padding-bottom:.25em!important}.sq-p-2{padding:.5em!important}.sq-pl-2,.sq-pr-2,.sq-px-2{padding-right:.5em!important}.sq-pt-2,.sq-py-2{padding-top:.5em!important}.sq-pb-2,.sq-py-2{padding-bottom:.5em!important}.sq-p-3{padding:1em!important}.sq-pl-3,.sq-pr-3,.sq-px-3{padding-right:1em!important}.sq-pt-3,.sq-py-3{padding-top:1em!important}.sq-pb-3,.sq-py-3{padding-bottom:1em!important}.sq-p-4{padding:1.5em!important}.sq-pl-4,.sq-pr-4,.sq-px-4{padding-right:1.5em!important}.sq-pt-4,.sq-py-4{padding-top:1.5em!important}.sq-pb-4,.sq-py-4{padding-bottom:1.5em!important}.sq-p-5{padding:3em!important}.sq-pl-5,.sq-pr-5,.sq-px-5{padding-right:3em!important}.sq-pt-5,.sq-py-5{padding-top:3em!important}.sq-pb-5,.sq-py-5{margin-bottom:3em!important}.sq-switch{font-size:1em!important;position:relative!important;box-shadow:none!important;height:auto!important;background:inherit!important}.sq-switch input{position:absolute!important;height:1px!important;width:1px!important;background:0 0!important;border:0!important;clip:rect(0 0 0 0)!important;clip-path:inset(50%)!important;overflow:hidden!important}.sq-switch input+label{position:relative!important;min-width:calc(calc(2.375em*.8)*2)!important;border-radius:calc(2.375em*.8)!important;height:calc(2.375em*.8)!important;line-height:calc(2.375em*.8)!important;font-size:16px!important;font-weight:700!important;display:inline-block!important;cursor:pointer!important;outline:0!important;user-select:none!important;vertical-align:middle!important;text-indent:calc(calc(calc(2.375em*.8)*2) + .5em)!important}.sq-switch input+label::after,.sq-switch input+label::before{content:''!important;position:absolute!important;bottom:0!important;display:block}.sq-switch input+label::before{top:0!important;left:0!important;width:calc(calc(2.375em*.8)*2)!important;right:0!important;background-color:#dee2e6!important;border-radius:calc(2.375em*.8)!important;transition:.2s all!important}.sq-switch.redgreen input+label::before{background-color:#9c2032!important}.sq-switch input+label::after{top:2px!important;left:2px!important;width:calc(calc(2.375em*.8) - calc(2px*2))!important;height:calc(calc(2.375em*.8) - calc(2px*2))!important;border-radius:50%!important;background-color:#fff!important;transition:.2s all!important}.sq-switch input:checked+label::before,.sq-switch.redblue input:checked+label::before{background-color:#6200ee!important}.sq-switch input:checked+label::after{margin-left:calc(2.375em*.8)!important}.sq-switch input:focus+label::before{outline:0!important;box-shadow:0 0 0 .2em rgba(0,136,221,.25)!important}.sq-switch input:disabled+label{color:#868e96!important;cursor:not-allowed!important}.sq-switch input:disabled+label::before{background-color:#e9ecef!important}.sq-switch.sq-switch-sm{font-size:.875em!important}.sq-switch.sq-switch-sm input+label{min-width:calc(calc(1.9375em*.8)*2)!important;height:calc(1.9375em*.8)!important;line-height:calc(1.9375em*.8)!important;text-indent:calc(calc(calc(2.1375em*.8)*2) + .5em)!important}.sq-switch.sq-switch-sm input+label::before{width:calc(calc(1.9375em*.8)*2)!important}.sq-switch.sq-switch-sm input+label::after{width:calc(calc(1.9375em*.8) - calc(2px*2))!important;height:calc(calc(1.9375em*.8) - calc(2px*2))!important}.sq-switch.sq-switch-sm input:checked+label::after{margin-left:calc(1.9375em*.8)!important}.sq-switch.sq-switch-xxs{font-size:.7em!important}.sq-switch.sq-switch-xxs input+label{min-width:calc(calc(.9375em*.8)*2)!important;height:calc(.9375em*.8)!important;line-height:calc(.9375em*.8)!important;text-indent:calc(calc(calc(1.1375em*.8)*2) + .5em)!important}.sq-switch.sq-switch-xxs input+label::before{width:calc(calc(.9375em*.8)*2)!important}.sq-switch.sq-switch-xxs input+label::after{width:calc(calc(.9375em*.8) - calc(2px*2))!important;height:calc(calc(.9375em*.8) - calc(2px*2))!important}.sq-switch.sq-switch-xxs input:checked+label::after{margin-left:calc(.9375em*.8)!important}.sq-switch.sq-switch-lg{font-size:1.25em!important}.sq-switch.sq-switch-lg input+label{min-width:calc(calc(3em*.8)*2)!important;height:calc(3em*.8)!important;line-height:calc(3em*.8)!important;text-indent:calc(calc(calc(3em*.8)*2) + .5em)!important}.sq-switch.sq-switch-lg input+label::before{width:calc(calc(3em*.8)*2)!important}.sq-switch.sq-switch-lg input+label::after{width:calc(calc(3em*.8) - calc(2px*2))!important;height:calc(calc(3em*.8) - calc(2px*2))!important}.sq-switch.sq-switch-lg input:checked+label::after{margin-left:calc(3em*.8)!important}.sq-switch+.sq-switch{margin-left:1em!important}.dropdown-menu{margin-top:.75em!important}
view/assets/js/assistant/squirrly.min.js CHANGED
@@ -1 +1 @@
1
- if(typeof SQ_DEBUG==="undefined"){var SQ_DEBUG=false}(function($){"use strict";$.sq_initialized=false;if(!$.sq_initialized){$.sq_config=$.extend({div:$("#postsquirrly"),editor:false,editor_type:false,active_editor:false,token:"",url_token:"",sq_apiurl:"//api.squirrly.co/v2/",sq_version:"",is_gutenberg:0,referer:"",keyword:"",lsi:[],language:"en-US",subscription_active:1,subscription_paid:0,sq_keywordtag:"",postID:0,prevNonce:"",user_url:"http://"+document.domain,research_language:"us",timeout_seo:null,timeout_search:null,timeout_research:null,sq_windowerror:false,interval_seo:null,calltimeout:5e3,delay_seo:500,cookie_expires:60*24*2,nrb:8,after_insert:'<div><br style="clear:both" /></div>',firsttime:false,manual:false,silent:false,briefcase:false,sq_cache:[],__noconnection:"To load Squirrly Live Assistant and optimize this page, click to connect to Squirrly Data Cloud.",__date:"date",__keyword:"Keyword",__sq_snippet:"Snippet",__saved:"Saved!",__readit:"Read it!",__insertit:"Insert it!",__reference:"Reference",__insertasbox:"Insert as box",__addlink:"Insert Link",__notrelevant:"Not relevant?",__insertparagraph:"Insert in your article",__ajaxerror:"An error occurred while processing your request. Please try again",__whitelist:"Make sure your site can access our API: https://api.squirrly.co",__nofound:"No results found!",__no_results:"No results found!",__sq_photo_copyright:"[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]",__has_attributes:"Has creative commons attributes",__no_attributes:"No known copyright restrictions",__noopt:"You haven`t used Squirrly SEO to optimize your article. Do you want to optimize for a keyword before publishing?",__error:"No results found!",__subscription_expired:"Your Subscription has Expired..",__usekeyword:"Select",__upgrade_account:"Upgrade your account",__no_briefcase:"There are no keywords saved in briefcase yet",__fulloptimized:"Congratulations! Your article is 100% optimized!",__toomanytimes:"appears too many times. Try to remove %s of them",__writemorewords:"write %s more words",__keywordinintroduction:"Add the keyword in the %s of your article",__clicktohighlight:"Click to keep the highlight on",__introduction:"introduction",__morewordsafter:"Write more words after the %s keyword",__orusesynonyms:"or use synonyms",__addmorewords:"add %s more word(s)",__removewords:"or remove %s word(s)",__addmorekeywords:"add %s more keyword(s)",__addminimumwords:"write %s more words to start calculating",__new_post_title:"Auto Draft",__frontend_optimized:"You’ve already used the Live Assistant to optimize this post when creating it in your Page Builder. Please go back and resume your optimization work there.",__enter_keyword:"Enter keyword above and press ENTER",__add_keyword:"Add Keywords from Briefcase",__maintenance:"Unfortunately Squirrly Cloud is down for a bit of maintenance right now. But we'll be back in a minute."},$.sq_config);$.sq_params=$.extend({low_density:1,high_density:2.5,high_density_title:35,low_density_title:2.5,min_length_title:10,max_length_title:75,min_length_body:80,max_length_body:0,min_length_description:20,max_length_description:160,begin_last_max_chars:400,max_word_density:3,beginning_length:255,ending_length:255,min_words_between_keywords:70,min_chars_between_keywords:200,max_keywords:5},$.sq_params);$.sq_setfields=function(){$.sq_fields=$.extend({wp_title:$("#titlediv"),wp_input_title:$("#title"),wp_postimagediv:$("#postimagediv"),wp_content_wrap:$(".wp-editor-wrap"),wp_content:$(".wp-editor-area"),wp_publish:$("#publish"),wp_postarea:$(".postarea"),wp_thumbnail_alt:$("#attachment_alt"),wp_thumbnail:$(".wp_attachment_image"),content_html:$("#content-html"),content_tmce:$("#content-tmce"),content_html_wp3:$("#edButtonHTML"),content_tmce_wp3:$("#edButtonPreview"),sq_box:$.sq_config.div.find(".sq_box"),sq_preloading:$.sq_config.div.find("#sq_preloading"),sq_preloading_keyword:$.sq_config.div.find("#sq_preloading_keyword"),sq_errorloading:$.sq_config.div.find("#sq_errorloading"),div_blocksearch:$.sq_config.div.find("#sq_blocksearch"),div_blockseo:$.sq_config.div.find("#sq_blockseo"),div_blockbriefacse:$("#sq_briefcase"),div_blocksnippet:$("#sq_blocksnippet"),sq_blocktabs:$.sq_config.div.find("#sq_block_tabs"),sq_blocksteps:$.sq_config.div.find(".sq_block_steps"),sq_search:$.sq_config.div.find(".sq_search"),sq_search_img_filter:$.sq_config.div.find("#sq_search_img_filter"),sq_search_second:$.sq_config.div.find("#sq_search_second"),sq_keyword_second:$.sq_config.div.find("#sq_keyword_second"),sq_keyword_second_check:$.sq_config.div.find("#sq_keyword_second_check"),sq_briefcase_icon:$.sq_config.div.find("#sq_briefcase_icon"),sq_briefcase_list:$.sq_config.div.find("#sq_briefcase_list"),sq_research_link:$.sq_config.div.find("#sq_research_link"),sq_selectit:$.sq_config.div.find("#sq_selectit"),sq_types:$.sq_config.div.find("#sq_types"),sq_type_img:$.sq_config.div.find("#sq_type_img"),sq_type_twitter:$.sq_config.div.find("#sq_type_twitter"),sq_type_news:$.sq_config.div.find("#sq_type_news"),sq_type_blog:$.sq_config.div.find("#sq_type_blog"),sq_type_wiki:$.sq_config.div.find("#sq_type_wiki"),sq_type_local:$.sq_config.div.find("#sq_type_local"),sq_research:$("#sq_research"),sq_blog_preview:$('<div id="sq_blog_preview"><div id="sq_blog_preview_close" >x</div><div id="sq_blog_preview_title"></div><div id="sq_blog_preview_body"></div></div><div id="sq_blog_preview_overlay"></div>'),sq_search_img_nolicence:$("#sq_search_img_nolicence"),sq_keyword:$.sq_config.div.find("#sq_keyword"),sq_keyword_score:$.sq_config.div.find("#sq_keyword_score"),sq_keyword_check:$.sq_config.div.find("#sq_keyword_check"),sq_keywords_research:$("#sq_keywords_research"),sq_keywords_research_add:$(".sq_keywords_research_add"),sq_keywords_research_submit:$(".sq_keywords_research_submit"),sq_keywords_research_clear:$(".sq_keywords_research_clear"),sq_research_close:$("#sq_research_close")},$.sq_fields)};$.isDom=function(inp){return inp&&inp.tagName&&inp.nodeName&&inp.ownerDocument&&inp.removeAttribute};$.sq_isGutenberg=function(){if(typeof wp!=="undefined"&&typeof wp.data!=="undefined"&&typeof wp.data.select("core/editor")!=="undefined"&&typeof wp.blocks!=="undefined"){if(wp.data.select("core/editor")&&$.isFunction(wp.data.select("core/editor").getEditedPostAttribute)&&$(".block-editor").length>0){return true}}return false};$.sq_isDiviBuilder=function(){if($("#et_pb_layout:visible").length>0){return true}return false};$.sq_getBuilderEditorContainer=function(object){if($.sq_isGutenberg()){if($(".block-editor-block-list__layout.is-root-container").length>0){return $(".block-editor-block-list__layout.is-root-container")}}if($("#wpb_visual_composer .metabox-composer-content").length>0){return $("#wpb_visual_composer .metabox-composer-content")}if($("#elementor-preview-iframe").length>0){var $elementor=$("#elementor-preview-iframe").contents()[0];if($($elementor).find(".elementor-container").length>0){return $($elementor).find(".elementor-container")}if($($elementor).find(".elementor-inner").length>0){return $($elementor).find(".elementor-inner")}}if(typeof object!==false){return object}return $("<div></div>")};$.sq_isFrontend=function(){if($.sq_config.div.length>0&&$.sq_config.div.hasClass("sq_frontend")){return true}return false};$.sq_getDomain=function(url,ret,separator){var domainName="";if(typeof ret==="undefined"){var ret=[8,10]}if(typeof separator==="undefined"){var separator=""}url=url.split(/([a-z0-9_\-]{1,5}:\/\/)?(([a-z0-9_\-]{1,}):([a-z0-9_\-]{1,})\@)?((www\.)|([a-z0-9_\-]{1,}\.)+)?([a-z0-9_\-]{3,})((\.[a-z]{2,4})(:(\d{1,5}))?)(\/([a-z0-9_\-]{1,}\/)+)?([a-z0-9_\-]{1,})?(\.[a-z]{2,})?(\?)?(((\&)?[a-z0-9_\-]{1,}(\=[a-z0-9_\-]{1,})?)+)?/g);$.each(ret,function(key,val){if(typeof url[val]!=="undefined"){domainName=domainName+(domainName!==""?separator:"")+url[val]}});return domainName};if(!$.sq_showMessage)$.sq_showMessage=function(text,time){$(".sq_notice").hide();var $div=$('<div class="sq_notice sq_fixed" ><div>'+text+"</div></div>");$("body").prepend($div);if(typeof time==="undefined"){time=2e3}setTimeout(function(){$div.remove()},time);return $div.find("div")};if(!$.sq_getHashParam)$.sq_getHashParam=function(key){if(location.href.indexOf("#")!==-1&&location.href.indexOf("#"+key)!==-1&&window.location.href.split("#")[1]!==""){var results=new RegExp("[\\?&#]"+key+"=([^&#]*)").exec(window.location.href);if(results){return results[1]||0}else{var results=new RegExp("[\\?&#]"+key+"[^&#]*").exec(window.location.href);if(results){return"1"}}}return false};if(!$.sq_setHashParam)$.sq_setHashParam=function(key){var separator="";if(!$.sq_getHashParam(key)){if(location.href.indexOf("#")!==-1){if(location.href.split("#")[1]!=="")separator="&"}else{separator="#"}window.location.href=window.location.href+separator+key}return false};if(!$.sq_deleteHashParam)$.sq_deleteHashParam=function(key){if($.sq_getHashParam(key)){window.location.href=window.location.href.replace("&"+key,"")}if($.sq_getHashParam(key)){window.location.href=window.location.href.replace(key,"")}return false};$.sq_formatNumber=function(number){var x,x1,x2;number+="";x=number.split(".");x1=x[0];x2=x.length>1?"."+x[1]:"";var rgx=/(\d+)(\d{3})/;while(rgx.test(x1)){x1=x1.replace(rgx,"$1"+","+"$2")}return x1+x2};$.sq_clearText=function(str){if(typeof str!=="undefined"&&str.length>0){str=$.sq_clearDiacritics(str);str=$.sq_stripTags(str)}return str};$.sq_umlautsText=function(str){str=str.replace("ä","ae");str=str.replace("ö","oe");str=str.replace("ß","ss");str=str.replace("ü","ue");str=str.replace("æ","ae");str=str.replace("ø","oe");str=str.replace("å","aa");str=str.replace("é","e");str=str.replace("è","e");return str};$.sq_stripTags=function(str){if(typeof str!=="undefined"&&str.length>0){str=$("<div />").html(str).text()}return str};$.sq_stripShortcode=function(str){if(typeof str!=="undefined"&&str.length>0){str=str.replace(/\\[[^\\]]+\\]/g,"")}return str};$.sq_stripChars=function(str){if(typeof str!=="undefined"&&str.length>0){str=str.replace(/[-.\/]+/g," ");var pattern=$.sq_regex("[^\\p{L}\\d\\s]");if(pattern){str=str.replace(pattern,"")}str=str.replace(/\s{2,}/g," ");str=str.trim()}return str};$.sq_clearDiacritics=function(str){if(typeof sqDiacritics!=="undefined"&&typeof str=="string"){return sqDiacritics.clear(str)}return str};$.sq_getCookie=function(name){var nameEQ=name+"=";var ca=document.cookie.split(";");for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==" ")c=c.substring(1,c.length);if(c.indexOf(nameEQ)==0)return decodeURIComponent(c.substring(nameEQ.length,c.length))}return null};$.sq_setCookie=function(name,value){value=value.replace(new RegExp("\\\\","g"),"");document.cookie=name+"="+encodeURIComponent(value)+"; expires="+$.sq_config.cookie_expires+"; path=/"};$.sq_uriEncode=function(url){return url.replace(/'/g,"%27").replace(/\(/g,"%28").replace(/\)/g,"%29")};$.sq_getCache=function(name){if(typeof $.sq_config.sq_cache!=="undefined")if(typeof $.sq_config.sq_cache[name]!=="undefined")return $.sq_config.sq_cache[name];return""};$.sq_setCache=function(name,value){$.sq_config.sq_cache[name]=value};$.sq_isArray=function(input){return typeof input==="object"&&input instanceof Array};$.sq_regex=function(striptag){if(typeof XRegExp!=="undefined"){return XRegExp(striptag,"gi")}return false};$.fn.sq_loading=function(name){var $this=this;if(typeof name==="undefined"){$this.sq_classname="sq_minloading"}else{$this.sq_classname=name}clearTimeout($.sq_loadprocess);$this.addClass($this.sq_classname);$this.frame=function(){$this.html('<span class="sq_error_message">'+$.sq_config.__ajaxerror+"</span>");$this.addClass("sq_error");$this.sq_doneloading()};$.sq_loadprocess=setTimeout($this.frame,1e4);return $this};$.fn.sq_doneloading=function(name){var $this=this;if(typeof name==="undefined"){name="sq_minloading"}clearTimeout($.sq_loadprocess);$this.removeClass(name);$this.find(".sq_error_message").remove();return $this};$.sq_checkin=function(){return $.getJSON($.sq_config.sq_apiurl+"api/user/checkin?callback=?",{user_url:$.sq_config.user_url,language:$.sq_config.language||"en-US",token:$.sq_config.token,url_token:$.sq_config.url_token,versq:$.sq_config.sq_version}).done(function(response){$.sq_fields.sq_box.show();$.sq_fields.sq_preloading.hide();$.sq_fields.sq_preloading_keyword.show();if(typeof response.error!=="undefined"){if(response.error==="invalid_token"){var $message=$('<div class="sq_error_message" style="opacity: 1;z-index: 1111;position: absolute;height: calc(100% - 34px);width: 100%;background-color: white;text-align: center;padding: 5px 10px;top: 35px;"><a href="admin.php?page=sq_dashboard" style="color: #df3434;font-size: 13px;font-weight: 500;">'+$.sq_config.__noconnection+"</a></div>");$.sq_fields.sq_box.prepend($message);if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}}else if(response.error==="maintenance"){var $message=$('<div class="sq_error_message" style="opacity: 1;z-index: 1111;position: absolute;height: calc(100% - 40px);width: 100%;background-color: white;text-align: center;padding: 10px 30px;top: 40px;color: #df3434;font-size: 14px;font-weight: 500;">'+$.sq_config.__maintenance+"</div>");$.sq_fields.sq_box.prepend($message);if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}}}if(typeof response.data!=="undefined"){$.sq_config.subscription_paid=response.data.subscription_paid;$.sq_config.subscription_onetime=response.data.subscription_onetime;if(typeof response.data.subscription_status!=="undefined"){if(response.data.subscription_status==="expired"||response.data.subscription_status==="suspended"){$.sq_config.subscription_active=false;if(typeof response.data.subscription_error!=="undefined"){$.sq_fields.sq_box.prepend(response.data.subscription_error);return}}}var triggerLoadInterval=setInterval(function(){if($.sq_triggerLoad("seo.loaded")){clearInterval(triggerLoadInterval)}},500)}}).fail(function(){$.sq_fields.sq_box.show();$.sq_fields.sq_preloading.hide();$.sq_fields.sq_errorloading.show()})};$.sq_triggerLoad=function(message){if(typeof $.sq_blockbriefcase!=="undefined"&&typeof $.sq_blockseo!=="undefined"&&typeof $.sq_blocksearch!=="undefined"){$.sq_blockbriefcase.trigger(message);$.sq_blockseo.trigger(message);$.sq_blocksearch.trigger(message);$.sq_config.div.trigger(message);return true}else{return false}};$.sq_savePost=function(){var $sq_seo=[];$.sq_config.div.find('input[name="sq_seo[]"]').each(function(){$sq_seo.push(this.value)});if($.sq_blockbriefcase){$.sq_blockbriefcase.trigger("briefcase.save")}$.post(sqQuery.ajaxurl,{action:"sq_ajax_save_post",post_id:$.sq_config.postID,sq_keyword:$.sq_config.keyword,referer:"backend",sq_seo:$sq_seo,sq_nonce:sqQuery.nonce})};$.sq_editor={getIframeEditor:function(element){var $this=$("#wpcontent");if(typeof element==="undefined"){element="#tinymce"}if($.sq_isGutenberg()){if($this.find("#editor").find("div.edit-post-visual-editor").length>0){return $this.find("#editor").find("div.edit-post-visual-editor")}if($this.find("#editor").find("div.edit-post-text-editor__body").length>0){return $this.find("#editor").find("div.edit-post-text-editor__body")}}if($this.find("#post").length>0&&$this.find("#post").find("iframe").length>0){if($this.find(".mce-container").find("iframe").contents().find(element+".has-focus").length>0){return $(".mce-container").find("iframe").contents().find(element+".has-focus")}if($this.find(".mce-container").find("iframe").contents().find(element).length>0){return $this.find(".mce-container").find("iframe").contents().find(element)}if($this.find("#content_ifr").contents().find(element).length>0){return $this.find("#content_ifr").contents().find(element)}if($this.find(".cke_contents").find("iframe").contents().find("body").length>0){return $this.find(".cke_contents").find("iframe").contents().find("body")}if($this.find("#cke_wysiwyg_frame").contents().find("body").length>0){return $this.find("#cke_wysiwyg_frame").contents().find("body")}}return false},getTinymceEditor:function(ed){var editor;if(typeof ed!=="undefined"&&typeof ed==="object"){editor=ed;if(typeof editor.activeEditor==="object")editor=editor.activeEditor}else{if(typeof tinyMCE==="object"){editor=tinyMCE;if(typeof tinyMCE.get("content")!=="undefined"){editor=tinyMCE.get("content")}else{if(typeof tinyMCE.activeEditor==="object"&&tinyMCE.activeEditor!==null){editor=tinyMCE.activeEditor}else{if(document.getElementById("content")!==null){editor=new tinymce.Editor("content");editor.contentCSS=["/wp-content/plugins/squirrly-seo/themes/default/css/sq_frontend.css"]}}}}}return editor},getBlockEditor:function(action){if($.sq_isGutenberg()){if(action==="select"){var ed=window.wp.data.select("core/editor")}else{var ed=window.wp.data.dispatch("core/editor")}return ed}return false},getFrontendEditor:function(action){if($.sq_isFrontend()){if(typeof window.sq_editor!=="undefined"){return window.sq_editor}}return false},createEditorButton:function(name){if($.sq_isFrontend()&&$("."+name).length==0){$("body").append('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="'+name+'"><i class="sq_logo" ></i></button>')}else if($.sq_isGutenberg()){if($(".edit-post-more-menu").length>0){$(".edit-post-more-menu").before('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="components-button components-icon-button '+name+'"><i class="sq_logo" ></i></button>')}}else if($(".page-title-action").length>0){$(".page-title-action").after('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="components-button components-icon-button '+name+'" style="float: right; border: none; background: none; cursor: pointer;"><i class="sq_logo" ></i></button>')}},listenHtml:function(e){if(e.originalEvent.dataTransfer===null)return;var img=e.originalEvent.dataTransfer.getData("text");if($("#"+$(img).attr("id")).parent("li").attr("class")==="sq_search_img_li"){$.sq_fields.wp_content.val($.sq_fields.wp_content.val()+$.sq_blocksearch.packimg($(img).attr("id"),$("#"+$(img).attr("id")).parent("li").attr("src"),$("#"+$(img).attr("id")).parent("li")))}},listen:function(e){if($("#"+e.target.id).parent("li").attr("class")==="sq_search_img_li"){if($.sq_editor.lastimage!==$("#"+e.target.id).parent("li").attr("src")){$.sq_editor.insert($.sq_blocksearch.packimg(e.target.id,$("#"+e.target.id).parent("li").attr("src"),$("#"+e.target.id).parent("li")))}}$.sq_editor.lastimage=$("#"+e.target.id).parent("li").attr("src")},setContent:function(content,ed){if($.sq_config.editor_type==="tinymce"){var editor=$.sq_editor.getTinymceEditor(ed);if(typeof editor!=="undefined"){editor.setContent(content)}}},insert:function(content,ed){if($.sq_isDiviBuilder()||$.sq_isFrontend()){var input=document.createElement("textarea");document.body.prepend(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("We've copied the code and you can paste it in the Page Builder.")}catch(e){alert("You can copy the box and paste it in the Page Builder")}input.remove();if($(".edit-post-layout__content").length>0){$(".edit-post-layout__content").animate({scrollTop:$(".edit-post-layout__content").scrollTop()+$("#et_pb_layout").offset().top-50},"slow")}else{$("html,body").animate({scrollTop:$("#et_pb_layout").offset().top-50},"slow")}}else if($("#wpb_visual_composer:visible").length>0){var input=document.createElement("textarea");document.body.prepend(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Visual Composer detected. We've copied the code and you can paste it in Visual Composer Editor.")}catch(e){alert("Visual Composer detected. You can copy the box and paste it in Visual Composer")}input.remove();if($(".edit-post-layout__content").length>0){$(".edit-post-layout__content").animate({scrollTop:$(".edit-post-layout__content").scrollTop()+$("#wpb_visual_composer").offset().top-50},"slow")}else{$("html,body").animate({scrollTop:$("#wpb_visual_composer").offset().top-50},"slow")}}else if($("#elementor-switch-mode-input").length>0&&$("#elementor-switch-mode-input").val()=="builder"){var input=document.createElement("textarea");document.body.appendChild(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Elementor is detected. We've copied the code and you can paste it in Elementor Text Editor.")}catch(e){alert("Elementor detected. You can copy the box and paste it in Elementor Text Editor")}input.remove()}else if($("div.wp-editor-container").find("div.cs-editor-container.pro").length>0){var input=document.createElement("textarea");document.body.appendChild(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Themeco PRO is detected. We've copied the code and you can paste it in Themeco PRO Text Editor.")}catch(e){alert("Themeco PRO detected. You can copy the box and paste it in Themeco PRO Text Editor")}input.remove()}else if($.sq_config.editor_type==="tinymce"){if(typeof tinyMCE==="object"){var editor=tinyMCE;if(typeof editor.activeEditor==="object"){editor=editor.activeEditor}}if(typeof editor!=="undefined"&&editor!==null){if(typeof editor.selection!=="undefined"){editor.selection.setContent(content)}else{editor.setContent(content)}$.sq_blockseo.callback()}}else{$.sq_fields.wp_content.val($.sq_fields.wp_content.val().substr(0,$.sq_fields.wp_content[0].selectionStart)+content+$.sq_fields.wp_content.val().substr($.sq_fields.wp_content[0].selectionEnd));$.sq_blockseo.callback()}}};$.sq_tinymce={callback:function(ed){if(ed.id!=="content")return false;var editor=$.sq_editor.getTinymceEditor(ed);if(typeof editor!=="undefined"&&typeof $.sq_blockseo==="object"){if($.sq_config.editor_type==="tinymce"){$.sq_blockseo.callback()}}},setup:function(ed){},addEvents:function(ed,dom){if(typeof $.sq_blockseo!=="undefined"&&typeof $.sq_editor==="object"&&!$.isDom($.sq_editor)){if($.sq_config.active_editor=$.sq_editor.getIframeEditor()){$.sq_blockseo.callback()}}}};$.fn.sq_main=function(){var $this=this;$this.load=function(){$.sq_setfields();$.sq_initialize();$.sq_loadtabs();$.sq_highlight=function(element,text,params){var options=$.extend({element:"mark","acrossElements ":1,ignoreJoiners:1,diacritics:0,separateWordSearch:0,caseSensitive:0,accuracy:{value:"exactly",limiters:["`","~","!","@","#","$","%","^","&","*","(",")","-","_","=","+","{","}","[","]","\\","|",":",";","'",'"',",",".","<",">","/","?","“","”"]},ignorePunctuation:[" ",",","`","~","!","@","#","$","%","^","*","(",")","-","_","=","+","{","}","[","]","\\","|",":",";","'",'"',"<",">","/","?"],counter:1},params);if(typeof element!=="undefined"&&$.isFunction(element.sq_unmark)){if(typeof options.range!=="undefined"){element.sq_unmark({done:function(){element.sq_markRanges(options.range,options)}})}else{element.sq_unmark({done:function(){element.sq_mark(text,options)}})}}};$.sq_removeHighlight=function(element){if(typeof element!=="undefined"&&$.isFunction(element.sq_unmark)&&!$.sq_isDiviBuilder()){element.sq_unmark()}};if($.sq_config.div.length>0&&$.isFunction($.sq_fields.sq_briefcase_list.sq_briefcase)){$.sq_blockbriefcase=$.sq_fields.sq_briefcase_list.sq_briefcase([])}if($.sq_config.div.length>0&&$.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([])}if($.sq_config.div.length>0&&$.isFunction($.sq_config.div.sq_frontend)){$.sq_frontend=$.sq_config.div.sq_frontend([])}if($.sq_fields.div_blockseo.length>0&&$.isFunction($.sq_fields.div_blockseo.sq_blockseo)){$.sq_blockseo=$.sq_fields.div_blockseo.sq_blockseo([])}if($.sq_fields.div_blocksearch.length>0&&$.isFunction($.sq_fields.div_blocksearch.sq_blocksearch)){$.sq_blocksearch=$.sq_fields.div_blocksearch.sq_blocksearch([])}$.sq_floating.init();$.sq_checkin()};return $this};$.sq_initialize=function(){$.sq_config.__no_results='<span class="sq_show_mgs">'+$.sq_config.__nofound+"</span>";$.sq_initialized=true};$.sq_loadtabs=function(){$.sq_fields.sq_blocktabs.find("div").on("click",function(){$.sq_fields.sq_selectit.trigger("click");$.sq_fields.sq_blocktabs.find("div").removeClass("sq_active");$(this).addClass("sq_active");$(".sq_block_steps").hide();$($(this).data("target")).show()});$.sq_fields.sq_blocksteps.find(".sq_nextstep").on("click",function(){$('.sq_block_tab[data-target="'+$(this).data("target")+'"]').trigger("click")})}}$(document).ready(function(){if(!$.sq_initialized){if($.sq_config.div.length>0){$.sq_config.div.sq_main().load()}}});if($.sq_config.sq_windowerror){if(!$.sq_initialized){if($.sq_config.div.length>0){$.sq_config.div.sq_main().load()}}}window.onerror=function(){$.sq_config.sq_windowerror=true}})(jQuery);
1
+ if(typeof SQ_DEBUG==="undefined"){var SQ_DEBUG=false}(function($){"use strict";$.sq_initialized=false;if(!$.sq_initialized){$.sq_config=$.extend({div:$("#postsquirrly"),editor:false,editor_type:false,active_editor:false,token:"",url_token:"",sq_apiurl:"//api.squirrly.co/v2/",sq_version:"",is_gutenberg:0,referer:"",keyword:"",lsi:[],language:"en-US",subscription_active:1,subscription_paid:0,sq_keywordtag:"",postID:0,prevNonce:"",user_url:"http://"+document.domain,research_language:"us",timeout_seo:null,timeout_search:null,timeout_research:null,sq_windowerror:false,interval_seo:null,calltimeout:5e3,delay_seo:500,cookie_expires:60*24*2,nrb:8,after_insert:'<div><br style="clear:both" /></div>',firsttime:false,manual:false,silent:false,briefcase:false,sq_cache:[],__noconnection:"To load Squirrly Live Assistant and optimize this page, click to connect to Squirrly Data Cloud.",__date:"date",__keyword:"Keyword",__sq_snippet:"Snippet",__saved:"Saved!",__readit:"Read it!",__insertit:"Insert it!",__reference:"Reference",__insertasbox:"Insert as box",__addlink:"Insert Link",__notrelevant:"Not relevant?",__insertparagraph:"Insert in your article",__ajaxerror:"An error occurred while processing your request. Please try again",__whitelist:"Make sure your site can access our API: https://api.squirrly.co",__nofound:"No results found!",__no_results:"No results found!",__sq_photo_copyright:"[ ATTRIBUTE: Please check: %s to find out how to attribute this image ]",__has_attributes:"Has creative commons attributes",__no_attributes:"No known copyright restrictions",__noopt:"You haven`t used Squirrly SEO to optimize your article. Do you want to optimize for a keyword before publishing?",__error:"No results found!",__subscription_expired:"Your Subscription has Expired..",__usekeyword:"Select",__upgrade_account:"Upgrade your account",__no_briefcase:"There are no keywords saved in briefcase yet",__fulloptimized:"Congratulations! Your article is 100% optimized!",__toomanytimes:"appears too many times. Try to remove %s of them",__writemorewords:"write %s more words",__keywordinintroduction:"Add the keyword in the %s of your article",__clicktohighlight:"Click to keep the highlight on",__introduction:"introduction",__morewordsafter:"Write more words after the %s keyword",__orusesynonyms:"or use synonyms",__addmorewords:"add %s more word(s)",__removewords:"or remove %s word(s)",__addmorekeywords:"add %s more keyword(s)",__addminimumwords:"write %s more words to start calculating",__new_post_title:"Auto Draft",__frontend_optimized:"You’ve already used the Live Assistant to optimize this post when creating it in your Page Builder. Please go back and resume your optimization work there.",__enter_keyword:"Enter keyword above and press ENTER",__add_keyword:"Add Keywords from Briefcase",__maintenance:"Unfortunately Squirrly Cloud is down for a bit of maintenance right now. But we'll be back in a minute."},$.sq_config);$.sq_params=$.extend({low_density:1,high_density:2.5,high_density_title:35,low_density_title:2.5,min_length_title:10,max_length_title:75,min_length_body:80,max_length_body:0,min_length_description:20,max_length_description:160,begin_last_max_chars:400,max_word_density:3,beginning_length:255,ending_length:255,min_words_between_keywords:70,min_chars_between_keywords:200,max_keywords:5},$.sq_params);$.sq_setfields=function(){$.sq_fields=$.extend({wp_title:$("#titlediv"),wp_input_title:$("#title"),wp_postimagediv:$("#postimagediv"),wp_content_wrap:$(".wp-editor-wrap"),wp_content:$(".wp-editor-area"),wp_publish:$("#publish"),wp_postarea:$(".postarea"),wp_thumbnail_alt:$("#attachment_alt"),wp_thumbnail:$(".wp_attachment_image"),content_html:$("#content-html"),content_tmce:$("#content-tmce"),content_html_wp3:$("#edButtonHTML"),content_tmce_wp3:$("#edButtonPreview"),sq_box:$.sq_config.div.find(".sq_box"),sq_preloading:$.sq_config.div.find("#sq_preloading"),sq_preloading_keyword:$.sq_config.div.find("#sq_preloading_keyword"),sq_errorloading:$.sq_config.div.find("#sq_errorloading"),div_blocksearch:$.sq_config.div.find("#sq_blocksearch"),div_blockseo:$.sq_config.div.find("#sq_blockseo"),div_blockbriefacse:$("#sq_briefcase"),div_blocksnippet:$("#sq_blocksnippet"),sq_blocktabs:$.sq_config.div.find("#sq_block_tabs"),sq_blocksteps:$.sq_config.div.find(".sq_block_steps"),sq_search:$.sq_config.div.find(".sq_search"),sq_search_img_filter:$.sq_config.div.find("#sq_search_img_filter"),sq_search_second:$.sq_config.div.find("#sq_search_second"),sq_keyword_second:$.sq_config.div.find("#sq_keyword_second"),sq_keyword_second_check:$.sq_config.div.find("#sq_keyword_second_check"),sq_briefcase_icon:$.sq_config.div.find("#sq_briefcase_icon"),sq_briefcase_list:$.sq_config.div.find("#sq_briefcase_list"),sq_research_link:$.sq_config.div.find("#sq_research_link"),sq_selectit:$.sq_config.div.find("#sq_selectit"),sq_types:$.sq_config.div.find("#sq_types"),sq_type_img:$.sq_config.div.find("#sq_type_img"),sq_type_twitter:$.sq_config.div.find("#sq_type_twitter"),sq_type_news:$.sq_config.div.find("#sq_type_news"),sq_type_blog:$.sq_config.div.find("#sq_type_blog"),sq_type_wiki:$.sq_config.div.find("#sq_type_wiki"),sq_type_local:$.sq_config.div.find("#sq_type_local"),sq_research:$("#sq_research"),sq_blog_preview:$('<div id="sq_blog_preview"><div id="sq_blog_preview_close" >x</div><div id="sq_blog_preview_title"></div><div id="sq_blog_preview_body"></div></div><div id="sq_blog_preview_overlay"></div>'),sq_search_img_nolicence:$("#sq_search_img_nolicence"),sq_keyword:$.sq_config.div.find("#sq_keyword"),sq_keyword_score:$.sq_config.div.find("#sq_keyword_score"),sq_keyword_check:$.sq_config.div.find("#sq_keyword_check"),sq_keywords_research:$("#sq_keywords_research"),sq_keywords_research_add:$(".sq_keywords_research_add"),sq_keywords_research_submit:$(".sq_keywords_research_submit"),sq_keywords_research_clear:$(".sq_keywords_research_clear"),sq_research_close:$("#sq_research_close")},$.sq_fields)};$.isDom=function(inp){return inp&&inp.tagName&&inp.nodeName&&inp.ownerDocument&&inp.removeAttribute};$.sq_isGutenberg=function(){if(typeof wp!=="undefined"&&typeof wp.data!=="undefined"&&typeof wp.data.select("core/editor")!=="undefined"&&typeof wp.blocks!=="undefined"){if(wp.data.select("core/editor")&&$.isFunction(wp.data.select("core/editor").getEditedPostAttribute)&&$(".block-editor").length>0){return true}}return false};$.sq_isDiviBuilder=function(){if($("#et_pb_layout:visible").length>0){return true}return false};$.sq_getBuilderEditorContainer=function(object){if($.sq_isGutenberg()){if($(".block-editor-block-list__layout.is-root-container").length>0){return $(".block-editor-block-list__layout.is-root-container")}}if($("#wpb_visual_composer .metabox-composer-content").length>0){return $("#wpb_visual_composer .metabox-composer-content")}if($("#elementor-preview-iframe").length>0){var $elementor=$("#elementor-preview-iframe").contents()[0];if($($elementor).find(".elementor-container").length>0){return $($elementor).find(".elementor-container")}if($($elementor).find(".elementor-inner").length>0){return $($elementor).find(".elementor-inner")}}if(typeof object!==false){return object}return $("<div></div>")};$.sq_isFrontend=function(){if($.sq_config.div.length>0&&$.sq_config.div.hasClass("sq_frontend")){return true}return false};$.sq_getDomain=function(url,ret,separator){var domainName="";if(typeof ret==="undefined"){var ret=[8,10]}if(typeof separator==="undefined"){var separator=""}url=url.split(/([a-z0-9_\-]{1,5}:\/\/)?(([a-z0-9_\-]{1,}):([a-z0-9_\-]{1,})\@)?((www\.)|([a-z0-9_\-]{1,}\.)+)?([a-z0-9_\-]{3,})((\.[a-z]{2,4})(:(\d{1,5}))?)(\/([a-z0-9_\-]{1,}\/)+)?([a-z0-9_\-]{1,})?(\.[a-z]{2,})?(\?)?(((\&)?[a-z0-9_\-]{1,}(\=[a-z0-9_\-]{1,})?)+)?/g);$.each(ret,function(key,val){if(typeof url[val]!=="undefined"){domainName=domainName+(domainName!==""?separator:"")+url[val]}});return domainName};if(!$.sq_showMessage)$.sq_showMessage=function(text,time){$(".sq_notice").hide();var $div=$('<div class="sq_notice sq_fixed" ><div>'+text+"</div></div>");$("body").prepend($div);if(typeof time==="undefined"){time=2e3}setTimeout(function(){$div.remove()},time);return $div.find("div")};if(!$.sq_getHashParam)$.sq_getHashParam=function(key){if(location.href.indexOf("#")!==-1&&location.href.indexOf("#"+key)!==-1&&window.location.href.split("#")[1]!==""){var results=new RegExp("[\\?&#]"+key+"=([^&#]*)").exec(window.location.href);if(results){return results[1]||0}else{var results=new RegExp("[\\?&#]"+key+"[^&#]*").exec(window.location.href);if(results){return"1"}}}return false};if(!$.sq_setHashParam)$.sq_setHashParam=function(key){var separator="";if(!$.sq_getHashParam(key)){if(location.href.indexOf("#")!==-1){if(location.href.split("#")[1]!=="")separator="&"}else{separator="#"}window.location.href=window.location.href+separator+key}return false};if(!$.sq_deleteHashParam)$.sq_deleteHashParam=function(key){if($.sq_getHashParam(key)){window.location.href=window.location.href.replace("&"+key,"")}if($.sq_getHashParam(key)){window.location.href=window.location.href.replace(key,"")}return false};$.sq_formatNumber=function(number){var x,x1,x2;number+="";x=number.split(".");x1=x[0];x2=x.length>1?"."+x[1]:"";var rgx=/(\d+)(\d{3})/;while(rgx.test(x1)){x1=x1.replace(rgx,"$1"+","+"$2")}return x1+x2};$.sq_clearText=function(str){if(typeof str!=="undefined"&&str.length>0){str=$.sq_clearDiacritics(str);str=$.sq_stripTags(str)}return str};$.sq_umlautsText=function(str){str=str.replace("ä","ae");str=str.replace("ö","oe");str=str.replace("ß","ss");str=str.replace("ü","ue");str=str.replace("æ","ae");str=str.replace("ø","oe");str=str.replace("å","aa");str=str.replace("é","e");str=str.replace("è","e");return str};$.sq_stripTags=function(str){if(typeof str!=="undefined"&&str.length>0){str=$("<div />").html(str).text()}return str};$.sq_stripShortcode=function(str){if(typeof str!=="undefined"&&str.length>0){str=str.replace(/\\[[^\\]]+\\]/g,"")}return str};$.sq_stripChars=function(str){if(typeof str!=="undefined"&&str.length>0){str=str.replace(/[-.\/]+/g," ");var pattern=$.sq_regex("[^\\p{L}\\d\\s]");if(pattern){str=str.replace(pattern,"")}str=str.replace(/\s{2,}/g," ");str=str.trim()}return str};$.sq_clearDiacritics=function(str){if(typeof sqDiacritics!=="undefined"&&typeof str=="string"){return sqDiacritics.clear(str)}return str};$.sq_getCookie=function(name){var nameEQ=name+"=";var ca=document.cookie.split(";");for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==" ")c=c.substring(1,c.length);if(c.indexOf(nameEQ)==0)return decodeURIComponent(c.substring(nameEQ.length,c.length))}return null};$.sq_setCookie=function(name,value){value=value.replace(new RegExp("\\\\","g"),"");document.cookie=name+"="+encodeURIComponent(value)+"; expires="+$.sq_config.cookie_expires+"; path=/"};$.sq_uriEncode=function(url){return url.replace(/'/g,"%27").replace(/\(/g,"%28").replace(/\)/g,"%29")};$.sq_getCache=function(name){if(typeof $.sq_config.sq_cache!=="undefined")if(typeof $.sq_config.sq_cache[name]!=="undefined")return $.sq_config.sq_cache[name];return""};$.sq_setCache=function(name,value){$.sq_config.sq_cache[name]=value};$.sq_isArray=function(input){return typeof input==="object"&&input instanceof Array};$.sq_regex=function(striptag){if(typeof XRegExp!=="undefined"){return XRegExp(striptag,"gi")}return false};$.fn.sq_loading=function(name){var $this=this;if(typeof name==="undefined"){$this.sq_classname="sq_minloading"}else{$this.sq_classname=name}clearTimeout($.sq_loadprocess);$this.addClass($this.sq_classname);$this.frame=function(){$this.html('<span class="sq_error_message">'+$.sq_config.__ajaxerror+"</span>");$this.addClass("sq_error");$this.sq_doneloading()};$.sq_loadprocess=setTimeout($this.frame,1e4);return $this};$.fn.sq_doneloading=function(name){var $this=this;if(typeof name==="undefined"){name="sq_minloading"}clearTimeout($.sq_loadprocess);$this.removeClass(name);$this.find(".sq_error_message").remove();return $this};$.sq_checkin=function(){return $.getJSON($.sq_config.sq_apiurl+"api/user/checkin?callback=?",{user_url:$.sq_config.user_url,language:$.sq_config.language||"en-US",token:$.sq_config.token,url_token:$.sq_config.url_token,versq:$.sq_config.sq_version}).done(function(response){$.sq_fields.sq_box.show();$.sq_fields.sq_preloading.hide();$.sq_fields.sq_preloading_keyword.show();if(typeof response.error!=="undefined"){if(response.error==="invalid_token"){var $message=$('<div class="sq_error_message" style="opacity: 1;z-index: 1111;position: absolute;height: calc(100% - 34px);width: 100%;background-color: white;text-align: center;padding: 5px 10px;top: 35px;"><a href="admin.php?page=sq_dashboard" style="color: #df3434;font-size: 13px;font-weight: 500;">'+$.sq_config.__noconnection+"</a></div>");$.sq_fields.sq_box.prepend($message);if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}}else if(response.error==="maintenance"){var $message=$('<div class="sq_error_message" style="opacity: 1;z-index: 1111;position: absolute;height: calc(100% - 40px);width: 100%;background-color: white;text-align: center;padding: 10px 30px;top: 40px;color: #df3434;font-size: 14px;font-weight: 500;">'+$.sq_config.__maintenance+"</div>");$.sq_fields.sq_box.prepend($message);if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}}}if(typeof response.data!=="undefined"){$.sq_config.subscription_paid=response.data.subscription_paid;$.sq_config.subscription_onetime=response.data.subscription_onetime;if(typeof response.data.subscription_status!=="undefined"){if(response.data.subscription_status==="expired"||response.data.subscription_status==="suspended"){$.sq_config.subscription_active=false;if(typeof response.data.subscription_error!=="undefined"){$.sq_fields.sq_box.prepend(response.data.subscription_error);return}}}var triggerLoadInterval=setInterval(function(){if($.sq_triggerLoad("seo.loaded")){clearInterval(triggerLoadInterval)}},500)}}).fail(function(){$.sq_fields.sq_box.show();$.sq_fields.sq_preloading.hide();$.sq_fields.sq_errorloading.show()})};$.sq_triggerLoad=function(message){if(typeof $.sq_blockbriefcase!=="undefined"&&typeof $.sq_blockseo!=="undefined"&&typeof $.sq_blocksearch!=="undefined"){$.sq_blockbriefcase.trigger(message);$.sq_blockseo.trigger(message);$.sq_blocksearch.trigger(message);$.sq_config.div.trigger(message);return true}else{return false}};$.sq_savePost=function(){var $sq_seo=[];$.sq_config.div.find('input[name="sq_seo[]"]').each(function(){$sq_seo.push(this.value)});if($.sq_blockbriefcase){$.sq_blockbriefcase.trigger("briefcase.save")}$.post(sqQuery.ajaxurl,{action:"sq_ajax_save_post",post_id:$.sq_config.postID,sq_keyword:$.sq_config.keyword,referer:"backend",sq_seo:$sq_seo,sq_nonce:sqQuery.nonce})};$.sq_editor={getIframeEditor:function(element){var $this=$("#wpcontent");if(typeof element==="undefined"){element="#tinymce"}if($.sq_isGutenberg()){if($this.find("#editor").find("div.edit-post-visual-editor").length>0){return $this.find("#editor").find("div.edit-post-visual-editor")}if($this.find("#editor").find("div.edit-post-text-editor__body").length>0){return $this.find("#editor").find("div.edit-post-text-editor__body")}}if($this.find("#post").length>0&&$this.find("#post").find("iframe").length>0){if($this.find(".mce-container").find("iframe").contents().find(element+".has-focus").length>0){return $(".mce-container").find("iframe").contents().find(element+".has-focus")}if($this.find(".mce-container").find("iframe").contents().find(element).length>0){return $this.find(".mce-container").find("iframe").contents().find(element)}if($this.find("#content_ifr").contents().find(element).length>0){return $this.find("#content_ifr").contents().find(element)}if($this.find(".cke_contents").find("iframe").contents().find("body").length>0){return $this.find(".cke_contents").find("iframe").contents().find("body")}if($this.find("#cke_wysiwyg_frame").contents().find("body").length>0){return $this.find("#cke_wysiwyg_frame").contents().find("body")}}return false},getTinymceEditor:function(ed){var editor;if(typeof ed!=="undefined"&&typeof ed==="object"){editor=ed;if(typeof editor.activeEditor==="object")editor=editor.activeEditor}else{if(typeof tinyMCE==="object"){editor=tinyMCE;if(typeof tinyMCE.get("content")!=="undefined"){editor=tinyMCE.get("content")}else{if(typeof tinyMCE.activeEditor==="object"&&tinyMCE.activeEditor!==null){editor=tinyMCE.activeEditor}else{if(document.getElementById("content")!==null){editor=new tinymce.Editor("content");editor.contentCSS=["/wp-content/plugins/squirrly-seo/themes/default/css/sq_frontend.css"]}}}}}return editor},getBlockEditor:function(action){if($.sq_isGutenberg()){if(action==="select"){var ed=window.wp.data.select("core/editor")}else{var ed=window.wp.data.dispatch("core/editor")}return ed}return false},getFrontendEditor:function(action){if($.sq_isFrontend()){if(typeof window.sq_editor!=="undefined"){return window.sq_editor}}return false},createEditorButton:function(name){if($.sq_isFrontend()&&$("."+name).length==0){$("body").append('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="'+name+'"><i class="sq_logo" ></i></button>')}else if($.sq_isGutenberg()){if($(".edit-post-more-menu").length>0){$(".edit-post-more-menu").before('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="components-button components-icon-button '+name+'"><i class="sq_logo" ></i></button>')}else if($(".interface-pinned-items").length>0){$(".interface-pinned-items").after('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="sq-ml-2 components-button components-icon-button '+name+'"><i class="sq_logo" ></i></button>')}else if($(".edit-post-header__settings").length>0){$(".edit-post-header__settings").append('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="components-button components-icon-button '+name+'"><i class="sq_logo" ></i></button>')}}else if($(".page-title-action").length>0){$(".page-title-action").after('<button type="button" aria-label="Squirrly SEO" aria-expanded="false" class="components-button components-icon-button '+name+'" style="float: right; border: none; background: none; cursor: pointer;"><i class="sq_logo" ></i></button>')}},listenHtml:function(e){if(e.originalEvent.dataTransfer===null)return;var img=e.originalEvent.dataTransfer.getData("text");if($("#"+$(img).attr("id")).parent("li").attr("class")==="sq_search_img_li"){$.sq_fields.wp_content.val($.sq_fields.wp_content.val()+$.sq_blocksearch.packimg($(img).attr("id"),$("#"+$(img).attr("id")).parent("li").attr("src"),$("#"+$(img).attr("id")).parent("li")))}},listen:function(e){if($("#"+e.target.id).parent("li").attr("class")==="sq_search_img_li"){if($.sq_editor.lastimage!==$("#"+e.target.id).parent("li").attr("src")){$.sq_editor.insert($.sq_blocksearch.packimg(e.target.id,$("#"+e.target.id).parent("li").attr("src"),$("#"+e.target.id).parent("li")))}}$.sq_editor.lastimage=$("#"+e.target.id).parent("li").attr("src")},setContent:function(content,ed){if($.sq_config.editor_type==="tinymce"){var editor=$.sq_editor.getTinymceEditor(ed);if(typeof editor!=="undefined"){editor.setContent(content)}}},insert:function(content,ed){if($.sq_isDiviBuilder()||$.sq_isFrontend()){var input=document.createElement("textarea");document.body.prepend(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("We've copied the code and you can paste it in the Page Builder.")}catch(e){alert("You can copy the box and paste it in the Page Builder")}input.remove();if($(".edit-post-layout__content").length>0){$(".edit-post-layout__content").animate({scrollTop:$(".edit-post-layout__content").scrollTop()+$("#et_pb_layout").offset().top-50},"slow")}else{$("html,body").animate({scrollTop:$("#et_pb_layout").offset().top-50},"slow")}}else if($("#wpb_visual_composer:visible").length>0){var input=document.createElement("textarea");document.body.prepend(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Visual Composer detected. We've copied the code and you can paste it in Visual Composer Editor.")}catch(e){alert("Visual Composer detected. You can copy the box and paste it in Visual Composer")}input.remove();if($(".edit-post-layout__content").length>0){$(".edit-post-layout__content").animate({scrollTop:$(".edit-post-layout__content").scrollTop()+$("#wpb_visual_composer").offset().top-50},"slow")}else{$("html,body").animate({scrollTop:$("#wpb_visual_composer").offset().top-50},"slow")}}else if($("#elementor-switch-mode-input").length>0&&$("#elementor-switch-mode-input").val()=="builder"){var input=document.createElement("textarea");document.body.appendChild(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Elementor is detected. We've copied the code and you can paste it in Elementor Text Editor.")}catch(e){alert("Elementor detected. You can copy the box and paste it in Elementor Text Editor")}input.remove()}else if($("div.wp-editor-container").find("div.cs-editor-container.pro").length>0){var input=document.createElement("textarea");document.body.appendChild(input);input.value=content;input.focus();input.select();try{document.execCommand("copy");alert("Themeco PRO is detected. We've copied the code and you can paste it in Themeco PRO Text Editor.")}catch(e){alert("Themeco PRO detected. You can copy the box and paste it in Themeco PRO Text Editor")}input.remove()}else if($.sq_config.editor_type==="tinymce"){if(typeof tinyMCE==="object"){var editor=tinyMCE;if(typeof editor.activeEditor==="object"){editor=editor.activeEditor}}if(typeof editor!=="undefined"&&editor!==null){if(typeof editor.selection!=="undefined"){editor.selection.setContent(content)}else{editor.setContent(content)}$.sq_blockseo.callback()}}else{$.sq_fields.wp_content.val($.sq_fields.wp_content.val().substr(0,$.sq_fields.wp_content[0].selectionStart)+content+$.sq_fields.wp_content.val().substr($.sq_fields.wp_content[0].selectionEnd));$.sq_blockseo.callback()}}};$.sq_tinymce={callback:function(ed){if(ed.id!=="content")return false;var editor=$.sq_editor.getTinymceEditor(ed);if(typeof editor!=="undefined"&&typeof $.sq_blockseo==="object"){if($.sq_config.editor_type==="tinymce"){$.sq_blockseo.callback()}}},setup:function(ed){},addEvents:function(ed,dom){if(typeof $.sq_blockseo!=="undefined"&&typeof $.sq_editor==="object"&&!$.isDom($.sq_editor)){if($.sq_config.active_editor=$.sq_editor.getIframeEditor()){$.sq_blockseo.callback()}}}};$.fn.sq_main=function(){var $this=this;$this.load=function(){$.sq_setfields();$.sq_initialize();$.sq_loadtabs();$.sq_highlight=function(element,text,params){var options=$.extend({element:"mark","acrossElements ":1,ignoreJoiners:1,diacritics:0,separateWordSearch:0,caseSensitive:0,accuracy:{value:"exactly",limiters:["`","~","!","@","#","$","%","^","&","*","(",")","-","_","=","+","{","}","[","]","\\","|",":",";","'",'"',",",".","<",">","/","?","“","”"]},ignorePunctuation:[" ",",","`","~","!","@","#","$","%","^","*","(",")","-","_","=","+","{","}","[","]","\\","|",":",";","'",'"',"<",">","/","?"],counter:1},params);if(typeof element!=="undefined"&&$.isFunction(element.sq_unmark)){if(typeof options.range!=="undefined"){element.sq_unmark({done:function(){element.sq_markRanges(options.range,options)}})}else{element.sq_unmark({done:function(){element.sq_mark(text,options)}})}}};$.sq_removeHighlight=function(element){if(typeof element!=="undefined"&&$.isFunction(element.sq_unmark)&&!$.sq_isDiviBuilder()){element.sq_unmark()}};if($.sq_config.div.length>0){if($.isFunction($.sq_fields.sq_briefcase_list.sq_briefcase)){$.sq_blockbriefcase=$.sq_fields.sq_briefcase_list.sq_briefcase([])}if($.isFunction($.sq_config.div.sq_frontend)){$.sq_frontend=$.sq_config.div.sq_frontend([])}if($.sq_fields.div_blockseo.length>0&&$.isFunction($.sq_fields.div_blockseo.sq_blockseo)){$.sq_blockseo=$.sq_fields.div_blockseo.sq_blockseo([])}if($.sq_fields.div_blocksearch.length>0&&$.isFunction($.sq_fields.div_blocksearch.sq_blocksearch)){$.sq_blocksearch=$.sq_fields.div_blocksearch.sq_blocksearch([])}if($.isFunction($.sq_config.div.sq_floating)){$.sq_floating=$.sq_config.div.sq_floating([]);$.sq_floating.init()}else{$.sq_config.div.show()}}$.sq_checkin()};return $this};$.sq_initialize=function(){$.sq_config.__no_results='<span class="sq_show_mgs">'+$.sq_config.__nofound+"</span>";$.sq_initialized=true};$.sq_loadtabs=function(){$.sq_fields.sq_blocktabs.find("div").on("click",function(){$.sq_fields.sq_selectit.trigger("click");$.sq_fields.sq_blocktabs.find("div").removeClass("sq_active");$(this).addClass("sq_active");$(".sq_block_steps").hide();$($(this).data("target")).show()});$.sq_fields.sq_blocksteps.find(".sq_nextstep").on("click",function(){$('.sq_block_tab[data-target="'+$(this).data("target")+'"]').trigger("click")})}}$(document).ready(function(){if(!$.sq_initialized){if($.sq_config.div.length>0){$.sq_config.div.sq_main().load()}}});if($.sq_config.sq_windowerror){if(!$.sq_initialized){if($.sq_config.div.length>0){$.sq_config.div.sq_main().load()}}}window.onerror=function(){$.sq_config.sq_windowerror=true}})(jQuery);
view/assets/js/slaseo.min.js DELETED
@@ -1 +0,0 @@
1
- (function($){"use strict";$.fn.sq_stickyListen=function(){var $this=this;var $sticky=$this.find(".sq_auto_sticky");$sticky.find("input").on("click",function(){var $input=$(this);if($input.is(":checked")){$this.trigger("sq_sticky",[true])}else{$this.trigger("sq_sticky",[false])}$.post(sqQuery.ajaxurl,{action:"sq_ajax_sla_sticky",sq_auto_sticky:$input.is(":checked")?1:0,sq_nonce:sqQuery.nonce})});$this.on("sq_task_loaded",function(){if($sticky.find("input").is(":checked")){$this.trigger("sq_sticky",[true])}})};$(document).ready(function(){$("#sq_blockseo").sq_stickyListen()})})(jQuery);