WordPress Social Sharing Plugin – Sassy Social Share - Version 3.3.26

Version Description

[12 November 2021] = * [Improvement] Extra CSS files will not be loaded anymore if you change the logo color of icons * [Improvement] Updated the Facebook JS SDK being used throughout the plugin to the latest version 12.0 * [Improvement] Improved HTML of the social share and social media follow icons meeting the W3C standards * [Bugfix] Yoolink social share was not working * [Bugfix] Whatsapp share was not triggering the app in the mobile device * [Bugfix] Selecting "Floating" type in the Follow Icons widget was not triggering the relevant extra options * [Security] Fixed XSS vulnerability

Download this release

Release Info

Developer Heateor
Plugin Icon 128x128 WordPress Social Sharing Plugin – Sassy Social Share
Version 3.3.26
Comparing to
See all releases

Code changes from version 3.3.25 to 3.3.26

admin/class-sassy-social-share-admin.php CHANGED
@@ -3,14 +3,14 @@
3
  /**
4
  * Contains functions responsible for functionality at admin side
5
  *
6
- * @since 1.0.0
7
  *
8
  */
9
 
10
  /**
11
  * This class defines all code necessary for functionality at admin side
12
  *
13
- * @since 1.0.0
14
  *
15
  */
16
  class Sassy_Social_Share_Admin {
@@ -18,28 +18,28 @@ class Sassy_Social_Share_Admin {
18
  /**
19
  * Options saved in database
20
  *
21
- * @since 1.0.0
22
  */
23
  private $options;
24
 
25
  /**
26
  * Current version of the plugin
27
  *
28
- * @since 1.0.0
29
  */
30
  private $version;
31
 
32
  /**
33
  * Flag to check if BuddyPress is active
34
  *
35
- * @since 1.0.0
36
  */
37
  private $is_bp_active = false;
38
 
39
  /**
40
  * Get saved options
41
  *
42
- * @since 1.0.0
43
  * @param array $options Plugin options saved in database
44
  */
45
  public function __construct( $options, $version ) {
@@ -52,7 +52,7 @@ class Sassy_Social_Share_Admin {
52
  /**
53
  * Creates plugin menu in admin area
54
  *
55
- * @since 1.0.0
56
  */
57
  public function create_admin_menu() {
58
 
@@ -144,7 +144,7 @@ class Sassy_Social_Share_Admin {
144
  /**
145
  * Register plugin settings and its sanitization callback.
146
  *
147
- * @since 1.0.0
148
  */
149
  public function options_init() {
150
 
@@ -166,7 +166,7 @@ class Sassy_Social_Share_Admin {
166
  /**
167
  * Update options in all the old blogs.
168
  *
169
- * @since 1.0.0
170
  */
171
  public function update_old_blogs( $old_config ) {
172
 
@@ -185,7 +185,7 @@ class Sassy_Social_Share_Admin {
185
  /**
186
  * Replicate the options to the new blog created.
187
  *
188
- * @since 1.0.0
189
  */
190
  public function replicate_settings( $blog_id ) {
191
 
@@ -196,7 +196,7 @@ class Sassy_Social_Share_Admin {
196
  /**
197
  * Show sharing meta options
198
  *
199
- * @since 1.0.0
200
  */
201
  public function sharing_meta_setup() {
202
 
@@ -263,7 +263,7 @@ class Sassy_Social_Share_Admin {
263
  /**
264
  * Save sharing meta fields.
265
  *
266
- * @since 1.0.0
267
  */
268
  public function save_sharing_meta( $post_id ) {
269
 
@@ -296,7 +296,7 @@ class Sassy_Social_Share_Admin {
296
  *
297
  * IMPROVEMENT: complexity can be reduced (this function is called on each option page validation and "if ( $k == 'providers' ) {"
298
  * condition is being checked every time)
299
- * @since 1.0.0
300
  */
301
  public function validate_options( $heateorSssOptions ) {
302
 
@@ -312,7 +312,7 @@ class Sassy_Social_Share_Admin {
312
  /**
313
  * Include Javascript at plugin options page in admin area
314
  *
315
- * @since 1.0.0
316
  */
317
  public function admin_options_scripts() {
318
 
@@ -329,7 +329,7 @@ class Sassy_Social_Share_Admin {
329
  /**
330
  * Include Javascript SDK in admin.
331
  *
332
- * @since 1.0.0
333
  */
334
  public function fb_sdk_script() {
335
 
@@ -340,7 +340,7 @@ class Sassy_Social_Share_Admin {
340
  /**
341
  * Include CSS files in admin.
342
  *
343
- * @since 1.0.0
344
  */
345
  public function admin_style() {
346
 
@@ -351,34 +351,18 @@ class Sassy_Social_Share_Admin {
351
  /**
352
  * Include CSS files at plugin options page in admin area
353
  *
354
- * @since 1.0.0
355
  */
356
  public function admin_options_style() {
357
 
358
  wp_enqueue_style( 'heateor_sss_admin_svg', plugins_url( 'css/sassy-social-share-svg.css', __FILE__ ), false, $this->version );
359
- if ( $this->options['horizontal_font_color_default'] != '' ) {
360
- $updated = $this->update_css( 'horizontal_sharing_replace_color', 'horizontal_font_color_default', 'sassy-social-share-default-svg-horizontal' );
361
- wp_enqueue_style( 'heateor_sss_admin_svg_horizontal', plugins_url( 'css/sassy-social-share-default-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
362
- }
363
- if ( $this->options['horizontal_font_color_hover'] != '' ) {
364
- $updated = $this->update_css( 'horizontal_sharing_replace_color_hover', 'horizontal_font_color_hover', 'sassy-social-share-hover-svg-horizontal' );
365
- wp_enqueue_style( 'heateor_sss_admin_svg_horizontal_hover', plugins_url( 'css/sassy-social-share-hover-svg-horizontal.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
366
- }
367
- if ( $this->options['vertical_font_color_default'] != '' ) {
368
- $updated = $this->update_css( 'vertical_sharing_replace_color', 'vertical_font_color_default', 'sassy-social-share-default-svg-vertical' );
369
- wp_enqueue_style( 'heateor_sss_admin_svg_vertical', plugins_url( 'css/sassy-social-share-default-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
370
- }
371
- if ( $this->options['vertical_font_color_hover'] != '' ) {
372
- $updated = $this->update_css( 'vertical_sharing_replace_color_hover', 'vertical_font_color_hover', 'sassy-social-share-hover-svg-vertical' );
373
- wp_enqueue_style( 'heateor_sss_admin_svg_vertical_hover', plugins_url( 'css/sassy-social-share-hover-svg-vertical.css', __FILE__ ), false, ( $updated === true ? rand() : $this->version ) );
374
- }
375
 
376
  }
377
 
378
  /**
379
  * Update CSS file
380
  *
381
- * @since 1.0.0
382
  */
383
  private function update_css( $replace_color_option, $logo_color_option, $css_file ) {
384
 
@@ -407,7 +391,7 @@ class Sassy_Social_Share_Admin {
407
  /**
408
  * Include javascript files in admin.
409
  *
410
- * @since 1.0.0
411
  */
412
  public function admin_scripts() {
413
 
@@ -469,7 +453,7 @@ class Sassy_Social_Share_Admin {
469
  /**
470
  * Renders options page
471
  *
472
- * @since 1.0.0
473
  */
474
  public function options_page() {
475
 
@@ -486,14 +470,13 @@ class Sassy_Social_Share_Admin {
486
  /**
487
  * Display notification message when plugin options are saved
488
  *
489
- * @since 1.0.0
490
  * @return string Notification after saving options
491
  */
492
  private function settings_saved_notification() {
493
 
494
  if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] == 'true' ) {
495
- return '<div id="setting-error-settings_updated" class="updated settings-error notice is-dismissible below-h2">
496
- <p><strong>' . __( 'Settings saved', 'sassy-social-share' ) . '</strong></p><button type="button" class="notice-dismiss"><span class="screen-reader-text">' . __( 'Dismiss this notice', 'sassy-social-share' ) . '</span></button></div>';
497
  }
498
 
499
  }
@@ -501,16 +484,18 @@ class Sassy_Social_Share_Admin {
501
  /**
502
  * Check if plugin is active
503
  *
504
- * @since 1.0.0
505
  */
506
  private function is_plugin_active( $plugin_file ) {
 
507
  return in_array( $plugin_file, apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) );
 
508
  }
509
 
510
  /**
511
  * Set BuddyPress active flag to true
512
  *
513
- * @since 1.0.0
514
  */
515
  public function is_bp_loaded() {
516
 
@@ -624,11 +609,20 @@ class Sassy_Social_Share_Admin {
624
  delete_transient( 'heateor-sss-admin-notice-on-activation' );
625
  }
626
 
627
- if ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && version_compare( '1.3.3', HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION ) > 0 ) {
628
  ?>
629
  <div class="error notice">
630
  <h3>Social Share - myCRED Integration</h3>
631
- <p><?php _e( 'Update "Social Share myCRED Integration" add-on for maximum compatibility with current version of Sassy Social Share', 'sassy-social-share' ) ?></p>
 
 
 
 
 
 
 
 
 
632
  </div>
633
  <?php
634
  }
3
  /**
4
  * Contains functions responsible for functionality at admin side
5
  *
6
+ * @since 1.0
7
  *
8
  */
9
 
10
  /**
11
  * This class defines all code necessary for functionality at admin side
12
  *
13
+ * @since 1.0
14
  *
15
  */
16
  class Sassy_Social_Share_Admin {
18
  /**
19
  * Options saved in database
20
  *
21
+ * @since 1.0
22
  */
23
  private $options;
24
 
25
  /**
26
  * Current version of the plugin
27
  *
28
+ * @since 1.0
29
  */
30
  private $version;
31
 
32
  /**
33
  * Flag to check if BuddyPress is active
34
  *
35
+ * @since 1.0
36
  */
37
  private $is_bp_active = false;
38
 
39
  /**
40
  * Get saved options
41
  *
42
+ * @since 1.0
43
  * @param array $options Plugin options saved in database
44
  */
45
  public function __construct( $options, $version ) {
52
  /**
53
  * Creates plugin menu in admin area
54
  *
55
+ * @since 1.0
56
  */
57
  public function create_admin_menu() {
58
 
144
  /**
145
  * Register plugin settings and its sanitization callback.
146
  *
147
+ * @since 1.0
148
  */
149
  public function options_init() {
150
 
166
  /**
167
  * Update options in all the old blogs.
168
  *
169
+ * @since 1.0
170
  */
171
  public function update_old_blogs( $old_config ) {
172
 
185
  /**
186
  * Replicate the options to the new blog created.
187
  *
188
+ * @since 1.0
189
  */
190
  public function replicate_settings( $blog_id ) {
191
 
196
  /**
197
  * Show sharing meta options
198
  *
199
+ * @since 1.0
200
  */
201
  public function sharing_meta_setup() {
202
 
263
  /**
264
  * Save sharing meta fields.
265
  *
266
+ * @since 1.0
267
  */
268
  public function save_sharing_meta( $post_id ) {
269
 
296
  *
297
  * IMPROVEMENT: complexity can be reduced (this function is called on each option page validation and "if ( $k == 'providers' ) {"
298
  * condition is being checked every time)
299
+ * @since 1.0
300
  */
301
  public function validate_options( $heateorSssOptions ) {
302
 
312
  /**
313
  * Include Javascript at plugin options page in admin area
314
  *
315
+ * @since 1.0
316
  */
317
  public function admin_options_scripts() {
318
 
329
  /**
330
  * Include Javascript SDK in admin.
331
  *
332
+ * @since 1.0
333
  */
334
  public function fb_sdk_script() {
335
 
340
  /**
341
  * Include CSS files in admin.
342
  *
343
+ * @since 1.0
344
  */
345
  public function admin_style() {
346
 
351
  /**
352
  * Include CSS files at plugin options page in admin area
353
  *
354
+ * @since 1.0
355
  */
356
  public function admin_options_style() {
357
 
358
  wp_enqueue_style( 'heateor_sss_admin_svg', plugins_url( 'css/sassy-social-share-svg.css', __FILE__ ), false, $this->version );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359
 
360
  }
361
 
362
  /**
363
  * Update CSS file
364
  *
365
+ * @since 1.0
366
  */
367
  private function update_css( $replace_color_option, $logo_color_option, $css_file ) {
368
 
391
  /**
392
  * Include javascript files in admin.
393
  *
394
+ * @since 1.0
395
  */
396
  public function admin_scripts() {
397
 
453
  /**
454
  * Renders options page
455
  *
456
+ * @since 1.0
457
  */
458
  public function options_page() {
459
 
470
  /**
471
  * Display notification message when plugin options are saved
472
  *
473
+ * @since 1.0
474
  * @return string Notification after saving options
475
  */
476
  private function settings_saved_notification() {
477
 
478
  if ( isset( $_GET['settings-updated'] ) && $_GET['settings-updated'] == 'true' ) {
479
+ return '<div class="notice notice-success is-dismissible"><p><strong>' . __( 'Settings saved', 'sassy-social-share' ) . '</strong></p></div>';
 
480
  }
481
 
482
  }
484
  /**
485
  * Check if plugin is active
486
  *
487
+ * @since 1.0
488
  */
489
  private function is_plugin_active( $plugin_file ) {
490
+
491
  return in_array( $plugin_file, apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) );
492
+
493
  }
494
 
495
  /**
496
  * Set BuddyPress active flag to true
497
  *
498
+ * @since 1.0
499
  */
500
  public function is_bp_loaded() {
501
 
609
  delete_transient( 'heateor-sss-admin-notice-on-activation' );
610
  }
611
 
612
+ if ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && version_compare( '1.3.12', HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION ) > 0 ) {
613
  ?>
614
  <div class="error notice">
615
  <h3>Social Share - myCRED Integration</h3>
616
+ <p><?php _e( 'Update "Social Share myCRED Integration" add-on for compatibility with the current version of Sassy Social Share', 'sassy-social-share' ) ?></p>
617
+ </div>
618
+ <?php
619
+ }
620
+
621
+ if ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) && version_compare( '1.1.7', HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION ) > 0 ) {
622
+ ?>
623
+ <div class="error notice">
624
+ <h3>Social Sharing Analytics</h3>
625
+ <p><?php _e( 'Update "Social Sharing Analytics" add-on for compatibility with the current version of Sassy Social Share', 'sassy-social-share' ) ?></p>
626
  </div>
627
  <?php
628
  }
admin/css/sassy-social-share-admin.css CHANGED
@@ -1 +1 @@
1
- .clr,.heateor_sss_clear{clear:both}#heateor_sss_sl_curl{color:#900}h2.nav-tab-wrapper>ul>li{float:left;margin-left:5px;margin-bottom:0!important}li.ui-tabs-active{border-bottom-color:#f1f1f1;border-bottom-style:solid;border-bottom-width:5px}li.ui-tabs-active a.nav-tab{background:0 0}.submit a{margin-left:20px}div.menu_containt_div>.stuffbox{width:763px}div.inside td,div.inside th{padding:7px}div.stuffbox h3{border-bottom:1px solid #eee}.heateorSssHorizontalSharingProviderContainer input,.heateorSssVerticalSharingProviderContainer input{margin-top:0;float:left}.heateorSssHorizontalSharingProviderContainer label,.heateorSssVerticalSharingProviderContainer label{float:left;margin:0 1px}.heateorSssHorizontalSharingProviderContainer,.heateorSssVerticalSharingProviderContainer{font-size:11px;width:158px;float:left;margin-bottom:4px}.heateor_sss_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.heateorSssYoutubeBackground{background-color:red}.heateor_sss_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.heateor_sss_help_bubble{cursor:help;vertical-align:middle}#heateor_sss_rearrange li,#heateor_sss_vertical_rearrange li{cursor:move;float:left;display:block;margin:2px}#heateor_sss_rearrange,#heateor_sss_sc_rearrange,#heateor_sss_sc_vertical_rearrange,#heateor_sss_vertical_rearrange{margin:0}#heateor_sss_sc_rearrange li,#heateor_sss_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0}#heateor_sss_sc_rearrange label,#heateor_sss_sc_vertical_rearrange label{cursor:move}.heateor_sss_left_column{float:left;width:75%!important}.heateor_sss_right_column{float:left;width:23.5%;margin-left:10px}.heateor_sss_right_column a:focus{outline:0!important;border:none!important}.heateor_sss_right_column td{display:block;width:120px!important;margin:0}.heateor_sss_error{background-color:#ffffe0;border:1px solid #e6db55;padding:5px;margin:10px}input[type=text]{width:90%}.heateorSssLoginButton{background:url(../../images/social_icons.png) no-repeat;cursor:pointer;display:block;float:left;margin-right:10px}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px}.heateorSssWordpressButton{background-position:0 -96px;width:32px;height:32px}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px}.heateorSssSharingButton{display:block;background:url(../../images/sharing/sharing.png) no-repeat}.heateorSssHorizontalSharingButton,.heateorSssVerticalSharingButton{display:block}.heateorSssSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.heateorSssSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.heateorSssSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.heateorSssSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.heateorSssSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.heateorSssSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.heateorSssSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.heateorSssSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.heateorSssSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.heateorSssSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.heateorSssSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.heateorSssSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.heateorSssSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.heateorSssSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.heateorSssSharingXingButton{background-position:0 -128px;width:32px;height:32px}.heateorSssSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#heateor_sss_troubleshoot_notification{color:red}.heateorSssYummlyBackground{background-color:#e16120}.heateorSssThreemaBackground{background-color:#2a2a2a}.heateorSssGoodreadsBackground{background-color:#c67336}.heateorSssFacebookBackground{background-color:#3c589a}.heateorSssBufferBackground{background-color:#000}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649a3f}.heateorSssFloatitBackground{background-color:#53beee}.heateorSssLinkedinBackground{background-color:#0077b5}.heateorSssMoreBackground{background-color:#ee8e2d}.heateorSssPinterestBackground{background-color:#cc2329}.heateorSssPrintBackground{background-color:#fd6500}.heateorSssRedditBackground{background-color:#ff5700}.heateorSssMeWeBackground{background-color:#007da1}.heateorSssMixBackground{background-color:#ff8226}.heateorSssTumblrBackground{background-color:#29435d}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssParlerBackground{background-color:#C63240}.heateorSssGabBackground{background-color:#25CC80}.heateorSssVkontakteBackground{background-color:#5e84ac}.heateorSssYahooBackground{background-color:#8f03cc}.heateorSssXingBackground{background-color:#00797d}.heateorSssDeliciousBackground{background-color:#53beee}.heateorSssWhatsappBackground{background-color:#55eb4c}.heateorSssLinkedinshareBackground{width:66px!important}.heateorSssFacebookrecommendBackground{width:95px!important}.heateorSssFacebookshareBackground{width:60px!important}.heateorSssFacebooklikeBackground{width:50px!important}.heateorSssTwittertweetBackground{width:57px!important}.heateorSssPinterestpinBackground{width:44px!important}.heateorSssBuffershareBackground{width:58px!important}.heateorSssXingshareBackground{width:63px!important}.heateorSssRedditbadgeBackground{width:124px!important}.heateorSssSharingSvg{width:100%;height:100%}.ss_demo{background:linear-gradient(#ec1b23,#d43116);padding:8px 0 10px;font-size:18px;border:0;color:#fff;border-radius:8px;margin:0 auto;font-weight:bolder;width:100%;cursor:pointer;border-bottom-style:groove;border-bottom-width:5px;border-bottom-color:rgb(0,0,0,.2)}.ss_demo:hover{background:linear-gradient(#d43116,#ec1b23)}.heateorSssLinkedinshareSvg{background:url(../../images/sharing/linkedin_share.png) left no-repeat;border-radius:0!important}.heateorSssFacebookshareSvg{background:url(../../images/sharing/facebook_share.png) left no-repeat;border-radius:0!important}.heateorSssFacebooklikeSvg{background:url(../../images/sharing/facebook_like.png) left no-repeat;border-radius:0!important}.heateorSssRedditbadgeSvg{background:url(../../images/sharing/reddit_badge.png) left no-repeat;border-radius:0!important}.heateorSssYummlyshareSvg{background:url(../../images/sharing/yummly_share.png) left no-repeat;border-radius:0!important}.heateorSssBuffershareSvg{background:url(../../images/sharing/buffer_share.png) left no-repeat;border-radius:0!important}.heateorSssXingshareSvg{background:url(../../images/sharing/xing_share.png) left no-repeat;border-radius:0!important}.heateorSssPinterestpinSvg{background:url(../../images/sharing/pinterest_pin.png) left no-repeat;border-radius:0!important}.heateorSssTwittertweetSvg{background:url(../../images/sharing/twitter_tweet.png) left no-repeat;border-radius:0!important}.heateorSssFacebookrecommendSvg{background:url(../../images/sharing/facebook_recommend.png) left no-repeat;border-radius:0!important}.heateorSssAIMBackground{background-color:#10ff00}.heateorSssAmazonWishListBackground{background-color:#ffe000}.heateorSssAOLMailBackground{background-color:#2a2a2a}.heateorSssAppnetBackground{background-color:#5d5d5d}.heateorSssBaiduBackground{background-color:#2319dc}.heateorSssBalatarinBackground{background-color:#fff}.heateorSssBibSonomyBackground{background-color:#000}.heateorSssBittyBrowserBackground{background-color:#efefef}.heateorSssBlinklistBackground{background-color:#3d3c3b}.heateorSssBloggerPostBackground{background-color:#fda352}.heateorSssBlogMarksBackground{background-color:#535353}.heateorSssBookmarksfrBackground{background-color:#e8ead4}.heateorSssBoxnetBackground{background-color:#1a74b0}.heateorSssBuddyMarksBackground{background-color:#ffd400}.heateorSssCare2NewsBackground{background-color:#6eb43f}.heateorSssCommentBackground{background-color:#444}.heateorSssCopyLinkBackground{background-color:#ffc112}.heateorSssDiaryRuBackground{background-color:#e8d8c6}.heateorSssDiHITTBackground{background-color:#ff6300}.heateorSssDiasporaBackground{background-color:#0166ff}.heateorSssDiigoBackground{background-color:#4a8bca}.heateorSssDoubanBackground{background-color:#497700}.heateorSssDraugiemBackground{background-color:#ffad66}.heateorSssEvernoteBackground{background-color:#8be056}.heateorSssFacebookMessengerBackground{background-color:#0084ff}.heateorSssFarkBackground{background-color:#555}.heateorSssFintelBackground{background-color:#087515}.heateorSssFlipboardBackground{background-color:#c00}.heateorSssFolkdBackground{background-color:#0f70b2}.heateorSssGoogleClassroomBackground{background-color:#ffc112}.heateorSssGoogleBookmarksBackground{background-color:#cb0909}.heateorSssGoogleGmailBackground{background-color:#e5e5e5}.heateorSssHackerNewsBackground{background-color:#f60}.heateorSssHatenaBackground{background-color:#00a6db}.heateorSssInstapaperBackground{background-color:#ededed}.heateorSssJamespotBackground{background-color:#ff9e2c}.heateorSssKakaoBackground{background-color:#fcb700}.heateorSssKindleItBackground{background-color:#2a2a2a}.heateorSssKikBackground{background-color:#2a2a2a}.heateorSssKnownBackground{background-color:#fff101}.heateorSssLineBackground{background-color:#00c300}.heateorSssLiveJournalBackground{background-color:#ededed}.heateorSssMailRuBackground{background-color:#356fac}.heateorSssMendeleyBackground{background-color:#a70805}.heateorSssMeneameBackground{background-color:#ff7d12}.heateorSssMixiBackground{background-color:#ededed}.heateorSssMySpaceBackground{background-color:#2a2a2a}.heateorSssNetlogBackground{background-color:#2a2a2a}.heateorSssNetvouzBackground{background-color:#c0ff00}.heateorSssNewsVineBackground{background-color:#055d00}.heateorSssNUjijBackground{background-color:#d40000}.heateorSssOdnoklassnikiBackground{background-color:#f2720c}.heateorSssOknotizieBackground{background-color:#fdff88}.heateorSssOutlookcomBackground{background-color:#0072c6}.heateorSssPapalyBackground{background-color:#3ac0f6}.heateorSssPinboardBackground{background-color:#1341de}.heateorSssPlurkBackground{background-color:#cf682f}.heateorSssPocketBackground{background-color:#f0f0f0}.heateorSssPolyvoreBackground{background-color:#2a2a2a}.heateorSssPrintFriendlyBackground{background-color:#61d1d5}.heateorSssProtopageBookmarksBackground{background-color:#413fff}.heateorSssPushaBackground{background-color:#0072b8}.heateorSssQzoneBackground{background-color:#2b82d9}.heateorSssRefindBackground{background-color:#1492ef}.heateorSssRediffMyPageBackground{background-color:#d20000}.heateorSssRenrenBackground{background-color:#005eac}.heateorSssSegnaloBackground{background-color:#fdff88}.heateorSssSinaWeiboBackground{background-color:#ff0}.heateorSssSiteJotBackground{background-color:#ffc800}.heateorSssSkypeBackground{background-color:#00aff0}.heateorSssSMSBackground{background-color:#6ebe45}.heateorSssSlashdotBackground{background-color:#004242}.heateorSssStockTwitsBackground{background-color:#40576f}.heateorSssStumpediaBackground{background-color:#ededed}.heateorSssSvejoBackground{background-color:#fa7aa3}.heateorSssSymbalooFeedsBackground{background-color:#6da8f7}.heateorSssTelegramBackground{background-color:#3da5f1}.heateorSssTrelloBackground{background-color:#1189ce}.heateorSssTuentiBackground{background-color:#0075c9}.heateorSssTwiddlaBackground{background-color:#ededed}.heateorSssTypePadPostBackground{background-color:#2a2a2a}.heateorSssViadeoBackground{background-color:#2a2a2a}.heateorSssViberBackground{background-color:#8b628f}.heateorSssWebnewsBackground{background-color:#cc2512}.heateorSssWordPressBackground{background-color:#464646}.heateorSssWykopBackground{background-color:#367da9}.heateorSssYahooMailBackground{background-color:#400090}.heateorSssYahooMessengerBackground{background-color:#400090}.heateorSssYoolinkBackground{background-color:#a2c538}.heateorSssYouMobBackground{background-color:#3b599d}.heateorSssYummlyshareBackground{width:43px!important}.faq a{text-decoration:none}.heateorSssCounterPreviewLeft,.heateorSssCounterPreviewRight,.heateorSssCounterVerticalPreviewLeft,.heateorSssCounterVerticalPreviewRight{float:left;text-align:center;font-family:sans-serif;width:30px;visibility:hidden}.heateorSssCounterPreviewBottom,.heateorSssCounterPreviewTop,.heateorSssCounterVerticalPreviewBottom,.heateorSssCounterVerticalPreviewTop{text-align:center;line-height:30px;height:30px;visibility:hidden;clear:both}.heateorSssCounterPreviewInnerleft,.heateorSssCounterPreviewInnerright,.heateorSssCounterVerticalPreviewInnerleft,.heateorSssCounterVerticalPreviewInnerright{float:left;display:none;height:100%;width:50%;text-align:center}.heateorSssChristmasBanner{width:60%;height:100px}.heateorSssCounterPreviewInnerbottom,.heateorSssCounterPreviewInnertop,.heateorSssCounterVerticalPreviewInnerbottom,.heateorSssCounterVerticalPreviewInnertop{clear:both;text-align:center;display:none;width:100%;height:30%}h2.nav-tab-wrapper{border-bottom:1px solid #ccc;padding-bottom:0;padding-left:0;padding-top:0!important}select{height:24px!important;line-height:24px!important;vertical-align:top!important}.heateorSssGentleReaderBackground{background-color:#46aecf}div#tabs .stuffbox h3{padding-left:7px}div.heateor_sss_left_column div.stuffbox{padding:0 4px 5px 6px}div.heateor_sss_left_column div.stuffbox h3{padding-left:7px}div.heateor_sss_right_column div.stuffbox{padding:0 4px 10px 9px}div#tabs div.heateor_sss_right_column div.stuffbox h3{padding-left:0}div.heateor_sss_right_column div.stuffbox h3{padding-left:1px}@media screen and (max-width:783px){.heateor_sss_left_column{width:99%!important}.heateor_sss_right_column{width:99%;margin-left:0}.form-table input[type=radio]{margin:3px 0!important}}
1
+ .clr,.heateor_sss_clear{clear:both}#heateor_sss_sl_curl{color:#900}h2.nav-tab-wrapper>ul>li{float:left;margin-left:5px;margin-bottom:0!important}li.ui-tabs-active{border-bottom-color:#f1f1f1;border-bottom-style:solid;border-bottom-width:5px}li.ui-tabs-active a.nav-tab{background:0 0}.submit a{margin-left:20px}div.menu_containt_div>.stuffbox{width:763px}div.inside td,div.inside th{padding:7px}div.stuffbox h3{border-bottom:1px solid #eee}.heateorSssHorizontalSharingProviderContainer input,.heateorSssVerticalSharingProviderContainer input{margin-top:0;float:left}.heateorSssHorizontalSharingProviderContainer label,.heateorSssVerticalSharingProviderContainer label{float:left;margin:0 1px}.heateorSssHorizontalSharingProviderContainer,.heateorSssVerticalSharingProviderContainer{font-size:11px;width:158px;float:left;margin-bottom:4px}.heateor_sss_help_content{display:none;font-size:12px;color:#797979;line-height:15px;font-style:italic}.heateorSssYoutubeBackground{background-color:red}.heateor_sss_help_content img{box-shadow:4px 4px 4px 4px #888;margin:8px 0}.heateor_sss_help_bubble{cursor:help;vertical-align:middle}#heateor_sss_rearrange li,#heateor_sss_vertical_rearrange li{cursor:move;float:left;display:block;margin:2px}#heateor_sss_rearrange,#heateor_sss_sc_rearrange,#heateor_sss_sc_vertical_rearrange,#heateor_sss_vertical_rearrange{margin:0}#heateor_sss_sc_rearrange li,#heateor_sss_sc_vertical_rearrange li{cursor:move;float:left;display:block;width:175px;margin:0}#heateor_sss_sc_rearrange label,#heateor_sss_sc_vertical_rearrange label{cursor:move}.heateor_sss_left_column{float:left;width:75%!important}.heateor_sss_right_column{float:left;width:23.5%;margin-left:10px}.heateor_sss_right_column a:focus{outline:0!important;border:none!important}.heateor_sss_right_column td{display:block;width:120px!important;margin:0}.heateor_sss_error{background-color:#ffffe0;border:1px solid #e6db55;padding:5px;margin:10px}input[type=text]{width:90%}.heateorSssLoginButton{background:url(../../images/social_icons.png) no-repeat;cursor:pointer;display:block;float:left;margin-right:10px}.heateorSssFacebookButton{background-position:0 0;width:32px;height:32px}.heateorSssWordpressButton{background-position:0 -96px;width:32px;height:32px}.heateorSssLinkedinButton{background-position:-32px -32px;width:32px;height:32px}.heateorSssTwitterButton{background-position:0 -64px;width:32px;height:32px}.heateorSssSharingButton{display:block;background:url(../../images/sharing/sharing.png) no-repeat}.heateorSssHorizontalSharingButton,.heateorSssVerticalSharingButton{display:block}.heateorSssSharingDeliciousButton{background-position:0 0;width:32px;height:32px}.heateorSssSharingDiggButton{background-position:-32px 0;width:32px;height:32px}.heateorSssSharingEmailButton{background-position:-64px 0;width:32px;height:32px}.heateorSssSharingFacebookButton{background-position:-96px 0;width:32px;height:32px}.heateorSssSharingFloatitButton{background-position:0 -32px;width:32px;height:32px}.heateorSssSharingLinkedinButton{background-position:-64px -32px;width:32px;height:32px}.heateorSssSharingPinterestButton{background-position:0 -64px;width:32px;height:32px}.heateorSssSharingPrintButton{background-position:-32px -64px;width:32px;height:32px}.heateorSssSharingRedditButton{background-position:-64px -64px;width:32px;height:32px}.heateorSssSharingStumbleuponButton{background-position:-96px -64px;width:32px;height:32px}.heateorSssSharingTumblrButton{background-position:0 -96px;width:32px;height:32px}.heateorSssSharingTwitterButton{background-position:-32px -96px;width:32px;height:32px}.heateorSssSharingVkontakteButton{background-position:-64px -96px;width:32px;height:32px}.heateorSssSharingYahooButton{background-position:-96px -96px;width:32px;height:32px}.heateorSssSharingXingButton{background-position:0 -128px;width:32px;height:32px}.heateorSssSharingWhatsappButton{background-position:-32px -128px;width:32px;height:32px}#heateor_sss_troubleshoot_notification{color:red}.heateorSssYummlyBackground{background-color:#e16120}.heateorSssThreemaBackground{background-color:#2a2a2a}.heateorSssFacebookBackground{background-color:#3c589a}.heateorSssBufferBackground{background-color:#000}.heateorSssDiggBackground{background-color:#006094}.heateorSssEmailBackground{background-color:#649a3f}.heateorSssFloatitBackground{background-color:#53beee}.heateorSssLinkedinBackground{background-color:#0077b5}.heateorSssMoreBackground{background-color:#ee8e2d}.heateorSssPinterestBackground{background-color:#cc2329}.heateorSssPrintBackground{background-color:#fd6500}.heateorSssRedditBackground{background-color:#ff5700}.heateorSssMeWeBackground{background-color:#007da1}.heateorSssMixBackground{background-color:#ff8226}.heateorSssTumblrBackground{background-color:#29435d}.heateorSssTwitterBackground{background-color:#55acee}.heateorSssParlerBackground{background-color:#C63240}.heateorSssGettrBackground{background-color:#E50000}.heateorSssGabBackground{background-color:#25CC80}.heateorSssVkontakteBackground{background-color:#5e84ac}.heateorSssYahooBackground{background-color:#8f03cc}.heateorSssXingBackground{background-color:#00797d}.heateorSssDeliciousBackground{background-color:#53beee}.heateorSssWhatsappBackground{background-color:#55eb4c}.heateorSssLinkedinshareBackground{width:66px!important}.heateorSssFacebookrecommendBackground{width:95px!important}.heateorSssFacebookshareBackground{width:60px!important}.heateorSssFacebooklikeBackground{width:50px!important}.heateorSssTwittertweetBackground{width:57px!important}.heateorSssPinterestpinBackground{width:44px!important}.heateorSssBuffershareBackground{width:58px!important}.heateorSssXingshareBackground{width:63px!important}.heateorSssRedditbadgeBackground{width:124px!important}.heateorSssSharingSvg{width:100%;height:100%}.ss_demo{background:linear-gradient(#ec1b23,#d43116);padding:8px 0 10px;font-size:18px;border:0;color:#fff;border-radius:8px;margin:0 auto;font-weight:bolder;width:100%;cursor:pointer;border-bottom-style:groove;border-bottom-width:5px;border-bottom-color:rgb(0,0,0,.2)}.ss_demo:hover{background:linear-gradient(#d43116,#ec1b23)}.heateorSssLinkedinshareSvg{background:url(../../images/sharing/linkedin_share.png) left no-repeat;border-radius:0!important}.heateorSssFacebookshareSvg{background:url(../../images/sharing/facebook_share.png) left no-repeat;border-radius:0!important}.heateorSssFacebooklikeSvg{background:url(../../images/sharing/facebook_like.png) left no-repeat;border-radius:0!important}.heateorSssRedditbadgeSvg{background:url(../../images/sharing/reddit_badge.png) left no-repeat;border-radius:0!important}.heateorSssYummlyshareSvg{background:url(../../images/sharing/yummly_share.png) left no-repeat;border-radius:0!important}.heateorSssBuffershareSvg{background:url(../../images/sharing/buffer_share.png) left no-repeat;border-radius:0!important}.heateorSssXingshareSvg{background:url(../../images/sharing/xing_share.png) left no-repeat;border-radius:0!important}.heateorSssPinterestpinSvg{background:url(../../images/sharing/pinterest_pin.png) left no-repeat;border-radius:0!important}.heateorSssTwittertweetSvg{background:url(../../images/sharing/twitter_tweet.png) left no-repeat;border-radius:0!important}.heateorSssFacebookrecommendSvg{background:url(../../images/sharing/facebook_recommend.png) left no-repeat;border-radius:0!important}.heateorSssAIMBackground{background-color:#10ff00}.heateorSssAmazonWishListBackground{background-color:#ffe000}.heateorSssAOLMailBackground{background-color:#2a2a2a}.heateorSssAppnetBackground{background-color:#5d5d5d}.heateorSssBalatarinBackground{background-color:#fff}.heateorSssBibSonomyBackground{background-color:#000}.heateorSssBittyBrowserBackground{background-color:#efefef}.heateorSssBlinklistBackground{background-color:#3d3c3b}.heateorSssBloggerPostBackground{background-color:#fda352}.heateorSssBlogMarksBackground{background-color:#535353}.heateorSssBookmarksfrBackground{background-color:#e8ead4}.heateorSssBoxnetBackground{background-color:#1a74b0}.heateorSssBuddyMarksBackground{background-color:#ffd400}.heateorSssCare2NewsBackground{background-color:#6eb43f}.heateorSssCommentBackground{background-color:#444}.heateorSssCopyLinkBackground{background-color:#ffc112}.heateorSssDiaryRuBackground{background-color:#e8d8c6}.heateorSssDiHITTBackground{background-color:#ff6300}.heateorSssDiasporaBackground{background-color:#0166ff}.heateorSssDiigoBackground{background-color:#4a8bca}.heateorSssDoubanBackground{background-color:#497700}.heateorSssDraugiemBackground{background-color:#ffad66}.heateorSssEvernoteBackground{background-color:#8be056}.heateorSssFacebookMessengerBackground{background-color:#0084ff}.heateorSssFarkBackground{background-color:#555}.heateorSssFintelBackground{background-color:#087515}.heateorSssFlipboardBackground{background-color:#c00}.heateorSssFolkdBackground{background-color:#0f70b2}.heateorSssGoogleClassroomBackground{background-color:#ffc112}.heateorSssGoogleBookmarksBackground{background-color:#cb0909}.heateorSssGoogleGmailBackground{background-color:#e5e5e5}.heateorSssHackerNewsBackground{background-color:#f60}.heateorSssHatenaBackground{background-color:#00a6db}.heateorSssInstapaperBackground{background-color:#ededed}.heateorSssJamespotBackground{background-color:#ff9e2c}.heateorSssKakaoBackground{background-color:#fcb700}.heateorSssKindleItBackground{background-color:#2a2a2a}.heateorSssKikBackground{background-color:#2a2a2a}.heateorSssKnownBackground{background-color:#fff101}.heateorSssLineBackground{background-color:#00c300}.heateorSssLiveJournalBackground{background-color:#ededed}.heateorSssMailRuBackground{background-color:#356fac}.heateorSssMendeleyBackground{background-color:#a70805}.heateorSssMeneameBackground{background-color:#ff7d12}.heateorSssMixiBackground{background-color:#ededed}.heateorSssMySpaceBackground{background-color:#2a2a2a}.heateorSssNetlogBackground{background-color:#2a2a2a}.heateorSssNetvouzBackground{background-color:#c0ff00}.heateorSssNewsVineBackground{background-color:#055d00}.heateorSssNUjijBackground{background-color:#d40000}.heateorSssOdnoklassnikiBackground{background-color:#f2720c}.heateorSssOknotizieBackground{background-color:#fdff88}.heateorSssOutlookcomBackground{background-color:#0072c6}.heateorSssPapalyBackground{background-color:#3ac0f6}.heateorSssPinboardBackground{background-color:#1341de}.heateorSssPlurkBackground{background-color:#cf682f}.heateorSssPocketBackground{background-color:#f0f0f0}.heateorSssPolyvoreBackground{background-color:#2a2a2a}.heateorSssPrintFriendlyBackground{background-color:#61d1d5}.heateorSssProtopageBookmarksBackground{background-color:#413fff}.heateorSssPushaBackground{background-color:#0072b8}.heateorSssQzoneBackground{background-color:#2b82d9}.heateorSssRefindBackground{background-color:#1492ef}.heateorSssRediffMyPageBackground{background-color:#d20000}.heateorSssRenrenBackground{background-color:#005eac}.heateorSssSegnaloBackground{background-color:#fdff88}.heateorSssSinaWeiboBackground{background-color:#ff0}.heateorSssSiteJotBackground{background-color:#ffc800}.heateorSssSkypeBackground{background-color:#00aff0}.heateorSssSMSBackground{background-color:#6ebe45}.heateorSssSlashdotBackground{background-color:#004242}.heateorSssStockTwitsBackground{background-color:#40576f}.heateorSssStumpediaBackground{background-color:#ededed}.heateorSssSvejoBackground{background-color:#fa7aa3}.heateorSssSymbalooFeedsBackground{background-color:#6da8f7}.heateorSssTelegramBackground{background-color:#3da5f1}.heateorSssTrelloBackground{background-color:#1189ce}.heateorSssTuentiBackground{background-color:#0075c9}.heateorSssTwiddlaBackground{background-color:#ededed}.heateorSssTypePadPostBackground{background-color:#2a2a2a}.heateorSssViadeoBackground{background-color:#2a2a2a}.heateorSssViberBackground{background-color:#8b628f}.heateorSssWebnewsBackground{background-color:#cc2512}.heateorSssWordPressBackground{background-color:#464646}.heateorSssWykopBackground{background-color:#367da9}.heateorSssYahooMailBackground{background-color:#400090}.heateorSssYahooMessengerBackground{background-color:#400090}.heateorSssYoolinkBackground{background-color:#a2c538}.heateorSssYouMobBackground{background-color:#3b599d}.heateorSssYummlyshareBackground{width:43px!important}.faq a{text-decoration:none}.heateorSssCounterPreviewLeft,.heateorSssCounterPreviewRight,.heateorSssCounterVerticalPreviewLeft,.heateorSssCounterVerticalPreviewRight{float:left;text-align:center;font-family:sans-serif;width:30px;visibility:hidden}.heateorSssCounterPreviewBottom,.heateorSssCounterPreviewTop,.heateorSssCounterVerticalPreviewBottom,.heateorSssCounterVerticalPreviewTop{text-align:center;line-height:30px;height:30px;visibility:hidden;clear:both}.heateorSssCounterPreviewInnerleft,.heateorSssCounterPreviewInnerright,.heateorSssCounterVerticalPreviewInnerleft,.heateorSssCounterVerticalPreviewInnerright{float:left;display:none;height:100%;width:50%;text-align:center}.heateorSssChristmasBanner{width:60%;height:100px}.heateorSssCounterPreviewInnerbottom,.heateorSssCounterPreviewInnertop,.heateorSssCounterVerticalPreviewInnerbottom,.heateorSssCounterVerticalPreviewInnertop{clear:both;text-align:center;display:none;width:100%;height:30%}h2.nav-tab-wrapper{border-bottom:1px solid #ccc;padding-bottom:0;padding-left:0;padding-top:0!important}select{height:24px!important;line-height:24px!important;vertical-align:top!important}.heateorSssGentleReaderBackground{background-color:#46aecf}div#tabs .stuffbox h3{padding-left:7px}div.heateor_sss_left_column div.stuffbox{padding:0 4px 5px 6px}div.heateor_sss_left_column div.stuffbox h3{padding-left:7px}div.heateor_sss_right_column div.stuffbox{padding:0 4px 10px 9px}div#tabs div.heateor_sss_right_column div.stuffbox h3{padding-left:0}div.heateor_sss_right_column div.stuffbox h3{padding-left:1px}@media screen and (max-width:783px){.heateor_sss_left_column{width:99%!important}.heateor_sss_right_column{width:99%;margin-left:0}.form-table input[type=radio]{margin:3px 0!important}}
admin/css/sassy-social-share-default-svg-horizontal.css DELETED
@@ -1 +0,0 @@
1
- .heateor_sss_standard_follow_icons_container .heateorSssYummlySvg,.heateor_sss_horizontal_sharing .heateorSssYummlySvg,#heateor_sss_rearrange .heateorSssYummlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBufferSvg,.heateor_sss_horizontal_sharing .heateorSssBufferSvg,#heateor_sss_rearrange .heateorSssBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFacebookSvg,.heateor_sss_horizontal_sharing .heateorSssFacebookSvg,#heateor_sss_rearrange .heateorSssFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDiggSvg,.heateor_sss_horizontal_sharing .heateorSssDiggSvg,#heateor_sss_rearrange .heateorSssDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssEmailSvg,.heateor_sss_horizontal_sharing .heateorSssEmailSvg,#heateor_sss_rearrange .heateorSssEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFloatitSvg,.heateor_sss_horizontal_sharing .heateorSssFloatitSvg,#heateor_sss_rearrange .heateorSssFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssLinkedinSvg,.heateor_sss_horizontal_sharing .heateorSssLinkedinSvg,#heateor_sss_rearrange .heateorSssLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMoreSvg,.heateor_sss_horizontal_sharing .heateorSssMoreSvg,#heateor_sss_rearrange .heateorSssMoreSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPinterestSvg,.heateor_sss_horizontal_sharing .heateorSssPinterestSvg,#heateor_sss_rearrange .heateorSssPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPrintSvg,.heateor_sss_horizontal_sharing .heateorSssPrintSvg,#heateor_sss_rearrange .heateorSssPrintSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssRedditSvg,.heateor_sss_horizontal_sharing .heateorSssRedditSvg,#heateor_sss_rearrange .heateorSssRedditSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2039%2039%22%3E%3Cpath%20d%3D%22M28.543%2015.774a2.953%202.953%200%200%200-2.951-2.949%202.882%202.882%200%200%200-1.9.713%2014.075%2014.075%200%200%200-6.85-2.044l1.38-4.349%203.768.884a2.452%202.452%200%201%200%20.24-1.176l-4.274-1a.6.6%200%200%200-.709.4l-1.659%205.224a14.314%2014.314%200%200%200-7.316%202.029%202.908%202.908%200%200%200-1.872-.681%202.942%202.942%200%200%200-1.618%205.4%205.109%205.109%200%200%200-.062.765c0%204.158%205.037%207.541%2011.229%207.541s11.22-3.383%2011.22-7.541a5.2%205.2%200%200%200-.053-.706%202.963%202.963%200%200%200%201.427-2.51zm-18.008%201.88a1.753%201.753%200%200%201%201.73-1.74%201.73%201.73%200%200%201%201.709%201.74%201.709%201.709%200%200%201-1.709%201.711%201.733%201.733%200%200%201-1.73-1.711zm9.565%204.968a5.573%205.573%200%200%201-4.081%201.272h-.032a5.576%205.576%200%200%201-4.087-1.272.6.6%200%200%201%20.844-.854%204.5%204.5%200%200%200%203.238.927h.032a4.5%204.5%200%200%200%203.237-.927.6.6%200%201%201%20.844.854zm-.331-3.256a1.726%201.726%200%201%201%201.709-1.712%201.717%201.717%200%200%201-1.712%201.712z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTumblrSvg,.heateor_sss_horizontal_sharing .heateorSssTumblrSvg,#heateor_sss_rearrange .heateorSssTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTwitterSvg,.heateor_sss_horizontal_sharing .heateorSssTwitterSvg,#heateor_sss_rearrange .heateorSssTwitterSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2039%2039%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssVkontakteSvg,.heateor_sss_horizontal_sharing .heateorSssVkontakteSvg,#heateor_sss_rearrange .heateorSssVkontakteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-0.75%20-1.5%2034%2034%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssXingSvg,.heateor_sss_horizontal_sharing .heateorSssXingSvg,#heateor_sss_rearrange .heateorSssXingSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssWhatsappSvg,.heateor_sss_horizontal_sharing .heateorSssWhatsappSvg,#heateor_sss_rearrange .heateorSssWhatsappSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5.5%20-4.5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssAIMSvg,.heateor_sss_horizontal_sharing .heateorSssAIMSvg,#heateor_sss_rearrange .heateorSssAIMSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssAmazonWishListSvg,.heateor_sss_horizontal_sharing .heateorSssAmazonWishListSvg,#heateor_sss_rearrange .heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssAOLMailSvg,.heateor_sss_horizontal_sharing .heateorSssAOLMailSvg,#heateor_sss_rearrange .heateorSssAOLMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssAppnetSvg,.heateor_sss_horizontal_sharing .heateorSssAppnetSvg,#heateor_sss_rearrange .heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBalatarinSvg,.heateor_sss_horizontal_sharing .heateorSssBalatarinSvg,#heateor_sss_rearrange .heateorSssBalatarinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%2022h8v2h-8z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBibSonomySvg,.heateor_sss_horizontal_sharing .heateorSssBibSonomySvg,#heateor_sss_rearrange .heateorSssBibSonomySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-7%20-7%2046%2046%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.058%2025.892c-.25%200-.484.065-.694.17l-5.907-8.2a1.548%201.548%200%200%200%20.344-1.68l4.28-2.573c.288.333.71.552%201.187.552.862%200%201.56-.7%201.56-1.56%200-.776-.567-1.415-1.31-1.535V6.11a1.556%201.556%200%200%200-.25-3.095c-.862%200-1.56.7-1.56%201.56%200%20.196.04.383.106.556l-4.256%202.477a1.548%201.548%200%200%200-1.2-.574c-.862%200-1.56.7-1.56%201.56%200%20.778.567%201.417%201.31%201.537v5.1c-.218.035-.42.112-.598.23L9.93%208.204c.213-.268.345-.6.345-.97a1.56%201.56%200%201%200-.712%201.309l6.575%207.25c-.213.267-.345.6-.345.968%200%20.23.054.45.144.647L8.08%2022.66a1.547%201.547%200%200%200-1.138-.5%201.56%201.56%200%201%200%201.56%201.56c0-.23-.053-.45-.144-.646l7.857-5.25c.07.076.147.144.23.204l-1.95%203.927a1.536%201.536%200%200%200-.457-.076c-.862%200-1.56.695-1.56%201.56a1.56%201.56%200%201%200%202.468-1.27l1.95-3.926c.146.045.297.076.458.076.25%200%20.484-.064.694-.17l5.907%208.2a1.56%201.56%200%201%200%201.103-.459zM18.914%208.59c0-.197-.04-.383-.106-.556l4.257-2.473c.236.29.567.49.95.55v4.96a1.558%201.558%200%200%200-1.197%202.115l-4.278%202.573a1.542%201.542%200%200%200-.935-.53v-5.102a1.555%201.555%200%200%200%201.31-1.534z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBittyBrowserSvg,.heateor_sss_horizontal_sharing .heateorSssBittyBrowserSvg,#heateor_sss_rearrange .heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBlinklistSvg,.heateor_sss_horizontal_sharing .heateorSssBlinklistSvg,#heateor_sss_rearrange .heateorSssBlinklistSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBloggerPostSvg,.heateor_sss_horizontal_sharing .heateorSssBloggerPostSvg,#heateor_sss_rearrange .heateorSssBloggerPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.5%22%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBlogMarksSvg,.heateor_sss_horizontal_sharing .heateorSssBlogMarksSvg,#heateor_sss_rearrange .heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBoxnetSvg,.heateor_sss_horizontal_sharing .heateorSssBoxnetSvg,#heateor_sss_rearrange .heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBookmarksfrSvg,.heateor_sss_horizontal_sharing .heateorSssBookmarksfrSvg,#heateor_sss_rearrange .heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBuddyMarksSvg,.heateor_sss_horizontal_sharing .heateorSssBuddyMarksSvg,#heateor_sss_rearrange .heateorSssBuddyMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssCare2NewsSvg,.heateor_sss_horizontal_sharing .heateorSssCare2NewsSvg,#heateor_sss_rearrange .heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssCommentSvg,.heateor_sss_horizontal_sharing .heateorSssCommentSvg,#heateor_sss_rearrange .heateorSssCommentSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-150%20-150%20791%20791%22%3E%3Cg%3E%3Cpath%20d%3D%22M477.364%2C127.481c-22.839-28.072-53.864-50.248-93.072-66.522c-39.208-16.274-82.036-24.41-128.479-24.41%20c-46.442%2C0-89.269%2C8.136-128.478%2C24.41c-39.209%2C16.274-70.233%2C38.446-93.074%2C66.522C11.419%2C155.555%2C0%2C186.15%2C0%2C219.269%20c0%2C28.549%2C8.61%2C55.299%2C25.837%2C80.232c17.227%2C24.934%2C40.778%2C45.874%2C70.664%2C62.813c-2.096%2C7.611-4.57%2C14.842-7.426%2C21.7%20c-2.855%2C6.851-5.424%2C12.467-7.708%2C16.847c-2.286%2C4.374-5.376%2C9.23-9.281%2C14.555c-3.899%2C5.332-6.849%2C9.093-8.848%2C11.283%20c-1.997%2C2.19-5.28%2C5.801-9.851%2C10.848c-4.565%2C5.041-7.517%2C8.33-8.848%2C9.853c-0.193%2C0.097-0.953%2C0.948-2.285%2C2.574%20c-1.331%2C1.615-1.999%2C2.419-1.999%2C2.419l-1.713%2C2.57c-0.953%2C1.42-1.381%2C2.327-1.287%2C2.703c0.096%2C0.384-0.094%2C1.335-0.57%2C2.854%20c-0.477%2C1.526-0.428%2C2.669%2C0.142%2C3.429v0.287c0.762%2C3.234%2C2.283%2C5.853%2C4.567%2C7.851c2.284%2C1.992%2C4.858%2C2.991%2C7.71%2C2.991h1.429%20c12.375-1.526%2C23.223-3.613%2C32.548-6.279c49.87-12.751%2C93.649-35.782%2C131.334-69.094c14.274%2C1.523%2C28.074%2C2.283%2C41.396%2C2.283%20c46.442%2C0%2C89.271-8.135%2C128.479-24.414c39.208-16.276%2C70.233-38.444%2C93.072-66.517c22.843-28.072%2C34.263-58.67%2C34.263-91.789%20C511.626%2C186.154%2C500.207%2C155.555%2C477.364%2C127.481z%20M445.244%2C292.075c-19.896%2C22.456-46.733%2C40.303-80.517%2C53.529%20c-33.784%2C13.223-70.093%2C19.842-108.921%2C19.842c-11.609%2C0-23.98-0.76-37.113-2.286l-16.274-1.708l-12.277%2C10.852%20c-23.408%2C20.558-49.582%2C36.829-78.513%2C48.821c8.754-15.414%2C15.416-31.785%2C19.986-49.102l7.708-27.412l-24.838-14.27%20c-24.744-14.093-43.918-30.793-57.53-50.114c-13.61-19.315-20.412-39.638-20.412-60.954c0-26.077%2C9.945-50.343%2C29.834-72.803%20c19.895-22.458%2C46.729-40.303%2C80.515-53.531c33.786-13.229%2C70.089-19.849%2C108.92-19.849c38.828%2C0%2C75.13%2C6.617%2C108.914%2C19.845%20c33.783%2C13.229%2C60.62%2C31.073%2C80.517%2C53.531c19.89%2C22.46%2C29.834%2C46.727%2C29.834%2C72.802S465.133%2C269.615%2C445.244%2C292.075z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssCopyLinkSvg,.heateor_sss_horizontal_sharing .heateorSssCopyLinkSvg,#heateor_sss_rearrange .heateorSssCopyLinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.412%2021.177c0-.36-.126-.665-.377-.917l-2.804-2.804a1.235%201.235%200%200%200-.913-.378c-.377%200-.7.144-.97.43.026.028.11.11.255.25.144.14.24.236.29.29s.117.14.2.256c.087.117.146.232.177.344.03.112.046.236.046.37%200%20.36-.126.666-.377.918a1.25%201.25%200%200%201-.918.377%201.4%201.4%200%200%201-.373-.047%201.062%201.062%200%200%201-.345-.175%202.268%202.268%200%200%201-.256-.2%206.815%206.815%200%200%201-.29-.29c-.14-.142-.223-.23-.25-.254-.297.28-.445.607-.445.984%200%20.36.126.664.377.916l2.778%202.79c.243.243.548.364.917.364.36%200%20.665-.118.917-.35l1.982-1.97c.252-.25.378-.55.378-.9zm-9.477-9.504c0-.36-.126-.665-.377-.917l-2.777-2.79a1.235%201.235%200%200%200-.913-.378c-.35%200-.656.12-.917.364L7.967%209.92c-.254.252-.38.553-.38.903%200%20.36.126.665.38.917l2.802%202.804c.242.243.547.364.916.364.377%200%20.7-.14.97-.418-.026-.027-.11-.11-.255-.25s-.24-.235-.29-.29a2.675%202.675%200%200%201-.2-.255%201.052%201.052%200%200%201-.176-.344%201.396%201.396%200%200%201-.047-.37c0-.36.126-.662.377-.914.252-.252.557-.377.917-.377.136%200%20.26.015.37.046.114.03.23.09.346.175.117.085.202.153.256.2.054.05.15.148.29.29.14.146.222.23.25.258.294-.278.442-.606.442-.983zM27%2021.177c0%201.078-.382%201.99-1.146%202.736l-1.982%201.968c-.745.75-1.658%201.12-2.736%201.12-1.087%200-2.004-.38-2.75-1.143l-2.777-2.79c-.75-.747-1.12-1.66-1.12-2.737%200-1.106.392-2.046%201.183-2.818l-1.186-1.185c-.774.79-1.708%201.186-2.805%201.186-1.078%200-1.995-.376-2.75-1.13l-2.803-2.81C5.377%2012.82%205%2011.903%205%2010.826c0-1.08.382-1.993%201.146-2.738L8.128%206.12C8.873%205.372%209.785%205%2010.864%205c1.087%200%202.004.382%202.75%201.146l2.777%202.79c.75.747%201.12%201.66%201.12%202.737%200%201.105-.392%202.045-1.183%202.817l1.186%201.186c.774-.79%201.708-1.186%202.805-1.186%201.078%200%201.995.377%202.75%201.132l2.804%202.804c.754.755%201.13%201.672%201.13%202.75z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDiaryRuSvg,.heateor_sss_horizontal_sharing .heateorSssDiaryRuSvg,#heateor_sss_rearrange .heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDiasporaSvg,.heateor_sss_horizontal_sharing .heateorSssDiasporaSvg,#heateor_sss_rearrange .heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-1%2034%2034%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.44l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDiigoSvg,.heateor_sss_horizontal_sharing .heateorSssDiigoSvg,#heateor_sss_rearrange .heateorSssDiigoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDraugiemSvg,.heateor_sss_horizontal_sharing .heateorSssDraugiemSvg,#heateor_sss_rearrange .heateorSssDraugiemSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.55%2011.33c4.656.062%207.374%202.92%204.294%206.828-1.415%201.798-3.812%203.575-7.003%204.725-.15.056-.303.105-.46.16-.3.098-.595.188-.89.28a24.866%2024.866%200%200%201-4.05.814c-.464.043-.91.078-1.35.085-2.97.077-5.205-.74-5.93-2.474-.88-2.077.9-4.976%204.454-7.178-2.627%201.06-7.408%203.546-7.61%207.12v.454c.02.362.09.725.21%201.108.76%202.41%204.333%203.533%208.884%203.13.446-.036.892-.092%201.352-.16.66-.1%201.337-.23%202.027-.39a35.76%2035.76%200%200%200%202.02-.558c.154-.056.3-.098.454-.153.31-.094.608-.2.9-.31%203.945-1.436%206.87-3.34%208.58-5.526.975-1.253%201.476-2.424%201.574-3.448v-.787c-.28-2.61-3.317-4.135-7.45-3.717zm-3.024-1.29c.11%200%20.21-.014.307-.035.662-.167.983-.87%201.01-1.7.028-.885-.286-1.624-1.01-1.728-.063-.014-.125-.014-.195-.014-.578%200-.955.348-1.157.857-.094.265-.16.564-.163.885-.014.383.034.745.167%201.038.196.418.53.697%201.046.697zm-.014.292c-.293%200-.544.028-.76.084l.063.084.11.202.092.21.077.215.056.223.035.223.02.23.008.223v.237l-.014.23-.018.23-.028.23-.028.23-.043.23-.042.23-.04.223-.056.223-.042.212-.056.21-.057.2-.057.196-.042.19-.04.18-.02.11-.03.125-.028.132-.02.14-.03.152-.02.124v.03l-.028.166-.056.21-.02.172-.03.18-.02.182-.03.18-.02.19-.03.18-.02.188-.02.188-.02.19v.007c.04.537.082.997.103%201.26.02.3.085.517.18.663.14.215.378.292.706.32.28-.028.487-.084.647-.23.153-.14.237-.376.3-.753.118-.774.467-3.31.767-4.397.425-1.568%201.456-4.418-1.066-4.634-.122-.024-.226-.024-.338-.024zm-3.06-.8h.015c.976-.008%201.436-.9%201.436-1.994s-.46-1.993-1.436-2h-.014c-.99%200-1.45.9-1.45%202s.46%201.993%201.45%201.993zm-2.013%204.626c.09.383.18.732.254%201.052.307%201.254.606%204.16.718%205.038.105.885.418%201.073%201.052%201.136.62-.063.94-.25%201.045-1.136.105-.878.41-3.79.71-5.038.08-.314.175-.67.266-1.052.28-1.15.502-2.495%200-3.366-.32-.557-.94-.92-2.02-.92-1.088%200-1.708.37-2.03.92-.5.864-.27%202.216%200%203.366zm-1.35-4.153c.1.02.196.035.308.035.516%200%20.857-.28%201.045-.704.118-.293.174-.655.167-1.038a2.96%202.96%200%200%200-.167-.885c-.202-.51-.585-.857-1.157-.857-.07%200-.134%200-.197.014-.725.105-1.045.843-1.01%201.728.02.836.35%201.54%201.01%201.707zm-.3%209.373c.057.376.154.606.3.753.16.157.37.206.65.23.33-.024.557-.1.704-.32.09-.14.153-.36.18-.66.022-.264.064-.72.106-1.253v-.014l-.02-.187-.02-.188-.03-.188-.02-.18-.02-.19-.03-.18-.02-.18-.03-.183-.025-.174-.02-.166-.03-.167v-.02l-.02-.133-.028-.153-.028-.14-.024-.13-.028-.125-.03-.11-.034-.184-.056-.188-.04-.196-.058-.203-.056-.21-.056-.215-.04-.223-.057-.225-.04-.23-.033-.23-.028-.23-.03-.23-.02-.23-.008-.237v-.23l.007-.223.02-.23.034-.223.056-.222.07-.216.1-.21.11-.2.065-.085a3.128%203.128%200%200%200-.76-.083c-.11%200-.216%200-.32.014-2.524.216-1.492%203.066-1.067%204.634.262%201.054.603%203.59.728%204.364z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDoubanSvg,.heateor_sss_horizontal_sharing .heateorSssDoubanSvg,#heateor_sss_rearrange .heateorSssDoubanSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M5.755%205.505h20.55v2.59H5.755v-2.59zm14.99%2018.47l1.93-4.29h2.21v-9.97h-18v9.98h2.04l1.93%204.29h-5.78v2.51h21.85v-2.51l-6.18-.01zm-10.74-6.95v-4.88h11.68v4.88h-11.68zm7.99%206.95h-4.37l-1.93-4.29h8.24l-1.94%204.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssEvernoteSvg,.heateor_sss_horizontal_sharing .heateorSssEvernoteSvg,#heateor_sss_rearrange .heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFacebookMessengerSvg,.heateor_sss_horizontal_sharing .heateorSssFacebookMessengerSvg,#heateor_sss_rearrange .heateorSssFacebookMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%205C9.986%205%205.11%209.56%205.11%2015.182c0%203.2%201.58%206.054%204.046%207.92V27l3.716-2.06c.99.276%202.04.425%203.128.425%206.014%200%2010.89-4.56%2010.89-10.183S22.013%205%2016%205zm1.147%2013.655L14.33%2015.73l-5.423%203%205.946-6.31%202.816%202.925%205.42-3-5.946%206.31z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFarkSvg,.heateor_sss_horizontal_sharing .heateorSssFarkSvg,#heateor_sss_rearrange .heateorSssFarkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFlipboardSvg,.heateor_sss_horizontal_sharing .heateorSssFlipboardSvg,#heateor_sss_rearrange .heateorSssFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19%2019H7V7h12v12z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25%2013H7V7h18v6z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2025H7V7h6v18z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFolkdSvg,.heateor_sss_horizontal_sharing .heateorSssFolkdSvg,#heateor_sss_rearrange .heateorSssFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGoogleClassroomSvg,.heateor_sss_horizontal_sharing .heateorSssGoogleClassroomSvg,#heateor_sss_rearrange .heateorSssGoogleClassroomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%202%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M22.667%2016.667a1.667%201.667%200%201%200%200-3.334%201.667%201.667%200%200%200%200%203.334zM22.333%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117zm-13-1.333a1.668%201.668%200%201%200-.002-3.336%201.668%201.668%200%200%200%20.002%203.336zM9.667%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117z%22%2F%3E%3Cpath%20d%3D%22M15.335%2015.333A2.332%202.332%200%201%200%2013%2013a2.333%202.333%200%200%200%202.335%202.333zm.332%201.334c-2.572%200-5.333%201.392-5.333%203.11v1.557H21v-1.556c0-1.72-2.762-3.11-5.333-3.11zm3%2010.666h8v2h-8v-2z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGoogleBookmarksSvg,.heateor_sss_horizontal_sharing .heateorSssGoogleBookmarksSvg,#heateor_sss_rearrange .heateorSssGoogleBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGoogleGmailSvg,.heateor_sss_horizontal_sharing .heateorSssGoogleGmailSvg,#heateor_sss_rearrange .heateorSssGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssHackerNewsSvg,.heateor_sss_horizontal_sharing .heateorSssHackerNewsSvg,#heateor_sss_rearrange .heateorSssHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssHatenaSvg,.heateor_sss_horizontal_sharing .heateorSssHatenaSvg,#heateor_sss_rearrange .heateorSssHatenaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssInstapaperSvg,.heateor_sss_horizontal_sharing .heateorSssInstapaperSvg,#heateor_sss_rearrange .heateorSssInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssJamespotSvg,.heateor_sss_horizontal_sharing .heateorSssJamespotSvg,#heateor_sss_rearrange .heateorSssJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssKakaoSvg,.heateor_sss_horizontal_sharing .heateorSssKakaoSvg,#heateor_sss_rearrange .heateorSssKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssKikSvg,.heateor_sss_horizontal_sharing .heateorSssKikSvg,#heateor_sss_rearrange .heateorSssKikSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M23.436%2020.74a2.511%202.511%200%200%200%20.109-5.019h-.11a2.516%202.516%200%200%200-2.507%202.515%202.509%202.509%200%200%200%202.508%202.508zm-7.946-3.09l2.89-2.89c.93-.93.93-2.434%200-3.363a2.374%202.374%200%200%200-3.362%200l-4.262%204.263V7.267A2.378%202.378%200%200%200%206%207.263V24.7a2.378%202.378%200%200%200%204.756.002v-2.316l1.335-1.335%203.76%205.07a2.378%202.378%200%200%200%203.866-2.771c-.016-.02-.03-.04-.047-.06l-4.177-5.638v-.002z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssKindleItSvg,.heateor_sss_horizontal_sharing .heateorSssKindleItSvg,#heateor_sss_rearrange .heateorSssKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssKnownSvg,.heateor_sss_horizontal_sharing .heateorSssKnownSvg,#heateor_sss_rearrange .heateorSssKnownSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssLineSvg,.heateor_sss_horizontal_sharing .heateorSssLineSvg,#heateor_sss_rearrange .heateorSssLineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssLiveJournalSvg,.heateor_sss_horizontal_sharing .heateorSssLiveJournalSvg,#heateor_sss_rearrange .heateorSssLiveJournalSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMailRuSvg,.heateor_sss_horizontal_sharing .heateorSssMailRuSvg,#heateor_sss_rearrange .heateorSssMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMendeleySvg,.heateor_sss_horizontal_sharing .heateorSssMendeleySvg,#heateor_sss_rearrange .heateorSssMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMeneameSvg,.heateor_sss_horizontal_sharing .heateorSssMeneameSvg,#heateor_sss_rearrange .heateorSssMeneameSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMixiSvg,.heateor_sss_horizontal_sharing .heateorSssMixiSvg,#heateor_sss_rearrange .heateorSssMixiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMySpaceSvg,.heateor_sss_horizontal_sharing .heateorSssMySpaceSvg,#heateor_sss_rearrange .heateorSssMySpaceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssNetvouzSvg,.heateor_sss_horizontal_sharing .heateorSssNetvouzSvg,#heateor_sss_rearrange .heateorSssNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssOdnoklassnikiSvg,.heateor_sss_horizontal_sharing .heateorSssOdnoklassnikiSvg,#heateor_sss_rearrange .heateorSssOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssOutlookcomSvg,.heateor_sss_horizontal_sharing .heateorSssOutlookcomSvg,#heateor_sss_rearrange .heateorSssOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPapalySvg,.heateor_sss_horizontal_sharing .heateorSssPapalySvg,#heateor_sss_rearrange .heateorSssPapalySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2038%2038%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.744%208.217c1.112%200%202.296.519%203.106%201.329l.185.185c1.361%201.361%201.402%204.432.042%205.792l-3.103%202.787L16%2022.777l-4.974-4.467-3.103-2.787c-1.361-1.361-1.319-4.432.042-5.792l.185-.185c.81-.81%201.994-1.329%203.106-1.329.756%200%201.48.24%202.03.79L16%2012.291l2.714-3.284c.55-.55%201.274-.79%202.03-.79m0-2.921c-1.58%200-3.035.585-4.096%201.646l-.098.098-.088.107-.462.558-.462-.559-.088-.106-.098-.098c-1.061-1.061-2.516-1.646-4.096-1.646-1.871%200-3.804.816-5.172%202.184l-.185.185c-2.515%202.515-2.535%207.43-.042%209.924l.055.055.058.052%203.103%202.787%204.974%204.467L16%2026.704l1.952-1.753%204.974-4.467%203.103-2.787.058-.052.055-.055c2.494-2.494%202.473-7.409-.042-9.924l-.184-.186c-1.368-1.368-3.301-2.184-5.172-2.184z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPinboardSvg,.heateor_sss_horizontal_sharing .heateorSssPinboardSvg,#heateor_sss_rearrange .heateorSssPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPlurkSvg,.heateor_sss_horizontal_sharing .heateorSssPlurkSvg,#heateor_sss_rearrange .heateorSssPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPocketSvg,.heateor_sss_horizontal_sharing .heateorSssPocketSvg,#heateor_sss_rearrange .heateorSssPocketSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%20-1%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPrintFriendlySvg,.heateor_sss_horizontal_sharing .heateorSssPrintFriendlySvg,#heateor_sss_rearrange .heateorSssPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssProtopageSvg,.heateor_sss_horizontal_sharing .heateorSssProtopageBookmarksSvg,#heateor_sss_rearrange .heateorSssProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPushaSvg,.heateor_sss_horizontal_sharing .heateorSssPushaSvg,#heateor_sss_rearrange .heateorSssPushaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssQzoneSvg,.heateor_sss_horizontal_sharing .heateorSssQzoneSvg,#heateor_sss_rearrange .heateorSssQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssRediffMyPageSvg,.heateor_sss_horizontal_sharing .heateorSssRediffMyPageSvg,#heateor_sss_rearrange .heateorSssRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssRefindSvg,.heateor_sss_horizontal_sharing .heateorSssRefindSvg,#heateor_sss_rearrange .heateorSssRefindSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%2021.256c-2.891%200-5.256-2.365-5.256-5.255%200-2.891%202.365-5.255%205.255-5.255%202.891%200%205.255%202.365%205.255%205.255.002%202.89-2.363%205.255-5.254%205.255z%22%2F%3E%3Cpath%20d%3D%22M20.664%2023.676A8.91%208.91%200%200%201%2016%2025c-4.95%200-9-4.05-9-9s4.05-9%209-9%209%204.05%209%209a8.912%208.912%200%200%201-1.302%204.628l2.293%201.991A11.908%2011.908%200%200%200%2028%2016c0-6.6-5.4-12-12-12S4%209.4%204%2016s5.4%2012%2012%2012c2.456%200%204.745-.75%206.652-2.029l-1.988-2.295z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssRenrenSvg,.heateor_sss_horizontal_sharing .heateorSssRenrenSvg,#heateor_sss_rearrange .heateorSssRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSinaWeiboSvg,.heateor_sss_horizontal_sharing .heateorSssSinaWeiboSvg,#heateor_sss_rearrange .heateorSssSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSiteJotSvg,.heateor_sss_horizontal_sharing .heateorSssSiteJotSvg,#heateor_sss_rearrange .heateorSssSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSkypeSvg,.heateor_sss_horizontal_sharing .heateorSssSkypeSvg,#heateor_sss_rearrange .heateorSssSkypeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.15%2018c-.007.04-.012.084-.02.126l-.04-.24.06.113c.124-.678.19-1.37.19-2.06%200-1.53-.3-3.013-.892-4.41a11.273%2011.273%200%200%200-2.43-3.602%2011.288%2011.288%200%200%200-8.012-3.32c-.72%200-1.443.068-2.146.203h-.005c.04.023.08.04.118.063l-.238-.037c.04-.01.08-.018.12-.026a6.717%206.717%200%200%200-3.146-.787%206.67%206.67%200%200%200-4.748%201.965A6.7%206.7%200%200%200%204%2010.738c0%201.14.293%202.262.844%203.253.007-.04.012-.08.02-.12l.04.238-.06-.114c-.112.643-.17%201.3-.17%201.954a11.285%2011.285%200%200%200%203.32%208.012c1.04%201.04%202.25%201.86%203.602%202.43%201.397.592%202.882.89%204.412.89.666%200%201.334-.06%201.985-.175-.038-.02-.077-.04-.116-.063l.242.04c-.046.01-.088.015-.13.02a6.68%206.68%200%200%200%203.3.87%206.661%206.661%200%200%200%204.743-1.963A6.666%206.666%200%200%200%2028%2021.26c0-1.145-.295-2.27-.85-3.264zm-11.098%204.885c-4.027%200-5.828-1.98-5.828-3.463%200-.76.562-1.294%201.336-1.294%201.723%200%201.277%202.474%204.49%202.474%201.647%200%202.556-.893%202.556-1.808%200-.55-.27-1.16-1.355-1.426l-3.58-.895c-2.88-.723-3.405-2.282-3.405-3.748%200-3.043%202.865-4.186%205.556-4.186%202.478%200%205.4%201.37%205.4%203.192%200%20.783-.677%201.237-1.45%201.237-1.472%200-1.2-2.035-4.163-2.035-1.47%200-2.285.666-2.285%201.618%200%20.95%201.16%201.254%202.17%201.484l2.65.587c2.905.647%203.64%202.342%203.64%203.94%200%202.47-1.895%204.318-5.726%204.318z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSMSSvg,.heateor_sss_horizontal_sharing .heateorSssSMSSvg,#heateor_sss_rearrange .heateorSssSMSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-140%20-170%20770%20770%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cg%3E%3Cpath%20d%3D%22M87.412%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997c0-4.888-2.93-7.22-14.037-10.927%20c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.806-31.198c11.122%200%2021.078%202.526%2026.923%205.456%20l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803c0%204.485%203.707%206.832%2015.412%2010.927%20c18.133%206.234%2025.741%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809c-12.482%200-23.604-2.721-30.809-6.622%20L87.412%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M172.23%20166.856c0-11.884-0.389-22.034-0.777-30.42h24.964l1.36%2012.871h0.583c4.096-6.039%2012.482-15.008%2028.866-15.008%20c12.288%200%2022.034%206.233%2026.13%2016.174h0.389c3.513-4.873%207.803-8.775%2012.288-11.495c5.277-3.124%2011.122-4.679%2018.148-4.679%20c18.327%200%2032.184%2012.871%2032.184%2041.333v56.177h-28.866v-51.872c0-13.857-4.5-21.855-14.052-21.855%20c-6.817%200-11.705%204.679-13.648%2010.344c-0.777%202.138-1.166%205.262-1.166%207.609v55.773h-28.866v-53.441%20c0-12.093-4.29-20.285-13.663-20.285c-7.594%200-12.093%205.86-13.842%2010.733c-0.972%202.332-1.166%205.068-1.166%207.415v55.579H172.23%20V166.856z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M339.729%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997%20c0-4.888-2.93-7.22-14.037-10.927c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.807-31.198%20c11.122%200%2021.063%202.526%2026.922%205.456l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803%20c0%204.485%203.707%206.832%2015.412%2010.927c18.133%206.234%2025.742%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809%20c-12.482%200-23.604-2.721-30.809-6.622L339.729%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M383.947%20490L230.694%20364.252H50.713c-27.924%200-50.631-23.111-50.631-51.528V51.528C0.082%2023.111%2022.789%200%2050.713%200%20h388.574c27.924%200%2050.631%2023.111%2050.631%2051.528v261.197c0%2028.417-22.707%2051.528-50.631%2051.528h-55.34V490z%20M50.713%2030.615%20c-11.032%200-20.016%209.388-20.016%2020.913v261.197c0%2011.525%208.984%2020.913%2020.016%2020.913h190.923l111.696%2091.635v-91.635h85.954%20c11.032%200%2020.016-9.388%2020.016-20.913V51.528c0-11.525-8.984-20.913-20.016-20.913H50.713z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSlashdotSvg,.heateor_sss_horizontal_sharing .heateorSssSlashdotSvg,#heateor_sss_rearrange .heateorSssSlashdotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSvejoSvg,.heateor_sss_horizontal_sharing .heateorSssSvejoSvg,#heateor_sss_rearrange .heateorSssSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSymbalooFeedsSvg,.heateor_sss_horizontal_sharing .heateorSssSymbalooFeedsSvg,#heateor_sss_rearrange .heateorSssSymbalooFeedsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTelegramSvg,.heateor_sss_horizontal_sharing .heateorSssTelegramSvg,#heateor_sss_rearrange .heateorSssTelegramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssThreemaSvg,.heateor_sss_horizontal_sharing .heateorSssThreemaSvg,#heateor_sss_rearrange .heateorSssThreemaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.4%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M24.067%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M17.733%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M16.082%208.716h-.262c-.886%200-1.507.682-1.507%201.568v2.015h3.372v-2.015c.001-.886-.718-1.568-1.603-1.568z%22%2F%3E%3Cpath%20d%3D%22M16%204.325c-6.075%200-11%203.752-11%208.381%200%201.924.851%203.697%202.283%205.111.49.484.607%201.231.283%201.839l-1.479%202.776%204.39-1.384a6.183%206.183%200%200%201%201.863-.284c.383%200%20.766.034%201.145.102.807.144%201.649.22%202.514.22%206.075%200%2011-3.752%2011-8.381S22.075%204.325%2016%204.325zm3.793%2012.432c0%20.368-.409.6-.777.6H12.85c-.368%200-.643-.231-.643-.6v-3.733c0-.368.275-.725.643-.725h.2v-2.015c0-1.585%201.187-2.832%202.771-2.832h.262c1.583%200%202.868%201.247%202.868%202.832v2.015h.066c.368%200%20.777.357.777.725v3.733z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTrelloSvg,.heateor_sss_horizontal_sharing .heateorSssTrelloSvg,#heateor_sss_rearrange .heateorSssTrelloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.5%204h-21A1.5%201.5%200%200%200%204%205.5v21A1.5%201.5%200%200%200%205.5%2028h21a1.5%201.5%200%200%200%201.5-1.5v-21A1.5%201.5%200%200%200%2026.5%204zM14.44%2022.12c0%20.825-.675%201.5-1.5%201.5H8.62c-.825%200-1.5-.675-1.5-1.5V8.62c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v13.5zm10.44-6c0%20.825-.675%201.5-1.5%201.5h-4.32c-.825%200-1.5-.675-1.5-1.5v-7.5c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v7.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTuentiSvg,.heateor_sss_horizontal_sharing .heateorSssTuentiSvg,#heateor_sss_rearrange .heateorSssTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTwiddlaSvg,.heateor_sss_horizontal_sharing .heateorSssTwiddlaSvg,#heateor_sss_rearrange .heateorSssTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssViadeoSvg,.heateor_sss_horizontal_sharing .heateorSssViadeoSvg,#heateor_sss_rearrange .heateorSssViadeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssViberSvg,.heateor_sss_horizontal_sharing .heateorSssViberSvg,#heateor_sss_rearrange .heateorSssViberSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M22.57%2027.22a7.39%207.39%200%200%201-1.14-.32%2029%2029%200%200%201-16-16.12c-1-2.55%200-4.7%202.66-5.58a2%202%200%200%201%201.39%200c1.12.41%203.94%204.3%204%205.46a2%202%200%200%201-1.16%201.78%202%202%200%200%200-.66%202.84A10.3%2010.3%200%200%200%2017%2020.55%201.67%201.67%200%200%200%2019.35%2020c1.07-1.62%202.38-1.54%203.82-.54.72.51%201.45%201%202.14%201.55.93.75%202.1%201.37%201.55%202.94A5.21%205.21%200%200%201%2022.57%2027.22Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M17.06%204.79A10.42%2010.42%200%200%201%2026.79%2015c0%20.51.18%201.27-.58%201.25s-.54-.78-.6-1.29c-.7-5.52-3.23-8.13-8.71-9-.45-.07-1.15%200-1.11-.57C15.84%204.52%2016.66%204.85%2017.06%204.79Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M24.09%2014.06c-.05.38.17%201-.45%201.13-.83.13-.67-.64-.75-1.13-.56-3.36-1.74-4.59-5.12-5.35-.5-.11-1.27%200-1.15-.8s.82-.48%201.35-.42A6.9%206.9%200%200%201%2024.09%2014.06Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M21.52%2013.45c0%20.43%200%20.87-.53.93s-.6-.26-.64-.64a2.47%202.47%200%200%200-2.26-2.43c-.42-.07-.82-.2-.63-.76.13-.38.47-.41.83-.42A3.66%203.66%200%200%201%2021.52%2013.45Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTypePadPostSvg,.heateor_sss_horizontal_sharing .heateorSssTypePadPostSvg,#heateor_sss_rearrange .heateorSssTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssWebnewsSvg,.heateor_sss_horizontal_sharing .heateorSssWebnewsSvg,#heateor_sss_rearrange .heateorSssWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssWordPressSvg,.heateor_sss_horizontal_sharing .heateorSssWordPressSvg,#heateor_sss_rearrange .heateorSssWordPressSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cg%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssWykopSvg,.heateor_sss_horizontal_sharing .heateorSssWykopSvg,#heateor_sss_rearrange .heateorSssWykopSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssYahooMailSvg,.heateor_sss_horizontal_sharing .heateorSssYahooMailSvg,#heateor_sss_rearrange .heateorSssYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssYoolinkSvg,.heateor_sss_horizontal_sharing .heateorSssYoolinkSvg,#heateor_sss_rearrange .heateorSssYoolinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%3E%3C%2Fcircle%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssInstagramSvg,.heateor_sss_horizontal_sharing .heateorSssInstagramSvg, #heateor_sss_rearrange .heateorSssInstagramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssStockTwitsSvg,.heateor_sss_horizontal_sharing .heateorSssStockTwitsSvg, #heateor_sss_rearrange .heateorSssStockTwitsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.328%2014.309l-1.793-.736c-1.303-.536-1.955-1.244-1.955-2.123%200-.637.249-1.166.746-1.587.498-.427%201.123-.642%201.878-.642.614%200%201.115.125%201.504.373.373.218.766.684%201.178%201.399l2.204-1.306c-1.166-2.024-2.788-3.037-4.863-3.037-1.539%200-2.828.459-3.866%201.376-1.039.909-1.559%202.039-1.559%203.391%200%202.005%201.232%203.528%203.698%204.569l1.738.722c.451.194.84.399%201.167.612.326.214.593.443.799.687.206.245.358.513.455.805.097.291.146.612.146.961%200%20.871-.28%201.59-.84%202.156-.56.568-1.263.851-2.111.851-1.073%200-1.889-.389-2.449-1.166-.311-.405-.529-1.135-.653-2.193L4%2020.028c.249%201.679.875%202.986%201.878%203.92%201.018.936%202.309%201.403%203.872%201.403%201.648%200%203.028-.544%204.139-1.634%201.102-1.082%201.653-2.451%201.653-4.109%200-1.237-.338-2.281-1.012-3.134-.676-.852-1.743-1.573-3.202-2.165zM28%207.023H17.037v2.571h4.14v15.425h2.695V9.594H28z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssYoutubeSvg,.heateor_sss_horizontal_sharing .heateorSssYoutubeSvg, #heateor_sss_rearrange .heateorSssYoutubeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGentleReaderSvg,.heateor_sss_horizontal_sharing .heateorSssGentleReaderSvg, #heateor_sss_rearrange .heateorSssGentleReaderSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-80%20-80.014%201200.014%201200%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M819.664%2C291.684C572.661-7.32%2C155.656%2C203.683%2C169.656%2C527.687%20c38%2C489.007%2C727.009%2C448.006%2C683.009-28H562.661v98h177.002c-54.721%2C270.685-443.659%2C218.617-464.179-77.827%20c-0.48-6.934%2C1.493-36.96%2C3.053-44.641c44.28-217.95%2C300.377-317.791%2C467.126-110.535L819.664%2C291.684z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMixSvg,.heateor_sss_horizontal_sharing .heateorSssMixSvg, #heateor_sss_rearrange .heateorSssMixSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-7%20-8%2045%2045%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M27.87%204.125c-5.224%200-9.467%204.159-9.467%209.291v2.89c0-1.306%201.074-2.362%202.399-2.362s2.399%201.056%202.399%202.362v1.204c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V4.134c-.036-.009-.082-.009-.129-.009%22%2F%3E%3Cpath%20d%3D%22M4%204.125v12.94c2.566%200%204.668-1.973%204.807-4.465v-2.214c0-.065%200-.12.009-.176.093-1.213%201.13-2.177%202.39-2.177%201.325%200%202.399%201.056%202.399%202.362v9.226c0%201.306%201.074%202.353%202.399%202.353s2.399-1.056%202.399-2.353v-6.206c0-5.132%204.233-9.291%209.467-9.291H4z%22%2F%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M4%2017.074v8.438c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V12.61C8.659%2015.102%206.566%2017.074%204%2017.074%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMeWeSvg,.heateor_sss_horizontal_sharing .heateorSssMeWeSvg, #heateor_sss_rearrange .heateorSssMeWeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFintelSvg,.heateor_sss_horizontal_sharing .heateorSssFintelSvg,#heateor_sss_rearrange .heateorSssFintelSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20version%3D%221.1%22%20style%3D%22shape-rendering%3AgeometricPrecision%3B%20text-rendering%3AgeometricPrecision%3B%20image-rendering%3AoptimizeQuality%3B%20fill-rule%3Aevenodd%3B%20clip-rule%3Aevenodd%22%0AviewBox%3D%22-110%20-120%20428%20494%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%3C!%5BCDATA%5B.fil0%20%7Bfill%3A%23fff%7D.fil1%20%7Bfill%3A%23fff%7D%5D%5D%3E%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22Layer_x0020_1%22%3E%3Cmetadata%20id%3D%22CorelCorpID_0Corel-Layer%22%2F%3E%3Cpolygon%20class%3D%22fil0%22%20points%3D%22108%2C274%2048%2C274%2048%2C152%200%2C152%200%2C95%2048%2C95%2048%2C0%20208%2C0%20208%2C56%20108%2C56%20108%2C95%20180%2C95%20180%2C151%20108%2C151%20%22%2F%3E%3Cpolygon%20class%3D%22fil1%22%20points%3D%2299%2C272%20103%2C272%20103%2C147%20175%2C147%20175%2C100%20103%2C100%20103%2C52%20203%2C52%20203%2C7%20199%2C7%20199%2C48%2098%2C48%2098%2C104%20171%2C104%20171%2C142%2099%2C142%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssParlerSvg,.heateor_sss_horizontal_sharing .heateorSssParlerSvg,#heateor_sss_rearrange .heateorSssParlerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20height%3D%27100%25%27%20width%3D%27100%25%27%20viewBox%3D%27-24%20-30%20140%20160%27%3E%3Cg%20fill%3D%27%23fff%27%3E%3Cpath%20d%3D%27M58.34%2083.31h-25v-8.49c0-4.5%203.64-8.14%208.14-8.14h16.87c13.8%200%2025.02-11.19%2025.02-24.94%200-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0%207.45%207.45%200%2016.63%200h36.41l5.44.17C81.39.24%20100%2018.86%20100%2041.74c0%2022.92-18.69%2041.57-41.66%2041.57z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M16.65%20100C7.46%20100%20.02%2092.55.02%2083.37V49.49c0-8.92%207.23-16.16%2016.16-16.16h42.19a8.32%208.32%200%20010%2016.64h-33.5c-4.53%200-8.21%203.67-8.21%208.21V100z%27%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGabSvg,.heateor_sss_horizontal_sharing .heateorSssGabSvg,#heateor_sss_rearrange .heateorSssGabSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-14.5%205.5%2046%2026%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.8%2C7.6h-2.4v0.7V9l-0.4-0.3C10.2%2C7.8%2C9%2C7.2%2C7.7%2C7.2c-0.2%2C0-0.4%2C0-0.4%2C0c-0.1%2C0-0.3%2C0-0.5%2C0%0Ac-5.6%2C0.3-8.7%2C7.2-5.4%2C12.1c2.3%2C3.4%2C7.1%2C4.1%2C9.7%2C1.5l0.3-0.3l0%2C0.7c0%2C1-0.1%2C1.5-0.4%2C2.2c-1%2C2.4-4.1%2C3-6.8%2C1.3%0Ac-0.2-0.1-0.4-0.2-0.4-0.2c-0.1%2C0.1-1.9%2C3.5-1.9%2C3.6c0%2C0.1%2C0.5%2C0.4%2C0.8%2C0.6c2.2%2C1.4%2C5.6%2C1.7%2C8.3%2C0.8c2.7-0.9%2C4.5-3.2%2C5-6.4%0Ac0.2-1.1%2C0.2-0.8%2C0.2-8.4l0-7.1H13.8z%20M9.7%2C17.6c-2.2%2C1.2-4.9-0.4-4.9-2.9C4.8%2C12.6%2C7%2C11%2C9%2C11.6C11.8%2C12.4%2C12.3%2C16.1%2C9.7%2C17.6z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}
 
admin/css/sassy-social-share-default-svg-vertical.css DELETED
@@ -1 +0,0 @@
1
- .heateor_sss_floating_follow_icons_container .heateorSssYummlySvg,.heateor_sss_vertical_sharing .heateorSssYummlySvg,#heateor_sss_vertical_rearrange .heateorSssYummlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBufferSvg,.heateor_sss_vertical_sharing .heateorSssBufferSvg,#heateor_sss_vertical_rearrange .heateorSssBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFacebookSvg,.heateor_sss_vertical_sharing .heateorSssFacebookSvg,#heateor_sss_vertical_rearrange .heateorSssFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDiggSvg,.heateor_sss_vertical_sharing .heateorSssDiggSvg,#heateor_sss_vertical_rearrange .heateorSssDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssEmailSvg,.heateor_sss_vertical_sharing .heateorSssEmailSvg,#heateor_sss_vertical_rearrange .heateorSssEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFloatitSvg,.heateor_sss_vertical_sharing .heateorSssFloatitSvg,#heateor_sss_vertical_rearrange .heateorSssFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssLinkedinSvg,.heateor_sss_vertical_sharing .heateorSssLinkedinSvg,#heateor_sss_vertical_rearrange .heateorSssLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMoreSvg,.heateor_sss_vertical_sharing .heateorSssMoreSvg,#heateor_sss_vertical_rearrange .heateorSssMoreSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPinterestSvg,.heateor_sss_vertical_sharing .heateorSssPinterestSvg,#heateor_sss_vertical_rearrange .heateorSssPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPrintSvg,.heateor_sss_vertical_sharing .heateorSssPrintSvg,#heateor_sss_vertical_rearrange .heateorSssPrintSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssRedditSvg,.heateor_sss_vertical_sharing .heateorSssRedditSvg,#heateor_sss_vertical_rearrange .heateorSssRedditSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2039%2039%22%3E%3Cpath%20d%3D%22M28.543%2015.774a2.953%202.953%200%200%200-2.951-2.949%202.882%202.882%200%200%200-1.9.713%2014.075%2014.075%200%200%200-6.85-2.044l1.38-4.349%203.768.884a2.452%202.452%200%201%200%20.24-1.176l-4.274-1a.6.6%200%200%200-.709.4l-1.659%205.224a14.314%2014.314%200%200%200-7.316%202.029%202.908%202.908%200%200%200-1.872-.681%202.942%202.942%200%200%200-1.618%205.4%205.109%205.109%200%200%200-.062.765c0%204.158%205.037%207.541%2011.229%207.541s11.22-3.383%2011.22-7.541a5.2%205.2%200%200%200-.053-.706%202.963%202.963%200%200%200%201.427-2.51zm-18.008%201.88a1.753%201.753%200%200%201%201.73-1.74%201.73%201.73%200%200%201%201.709%201.74%201.709%201.709%200%200%201-1.709%201.711%201.733%201.733%200%200%201-1.73-1.711zm9.565%204.968a5.573%205.573%200%200%201-4.081%201.272h-.032a5.576%205.576%200%200%201-4.087-1.272.6.6%200%200%201%20.844-.854%204.5%204.5%200%200%200%203.238.927h.032a4.5%204.5%200%200%200%203.237-.927.6.6%200%201%201%20.844.854zm-.331-3.256a1.726%201.726%200%201%201%201.709-1.712%201.717%201.717%200%200%201-1.712%201.712z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTumblrSvg,.heateor_sss_vertical_sharing .heateorSssTumblrSvg,#heateor_sss_vertical_rearrange .heateorSssTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTwitterSvg,.heateor_sss_vertical_sharing .heateorSssTwitterSvg,#heateor_sss_vertical_rearrange .heateorSssTwitterSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2039%2039%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssVkontakteSvg,.heateor_sss_vertical_sharing .heateorSssVkontakteSvg,#heateor_sss_vertical_rearrange .heateorSssVkontakteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-0.75%20-1.5%2034%2034%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssXingSvg,.heateor_sss_vertical_sharing .heateorSssXingSvg,#heateor_sss_vertical_rearrange .heateorSssXingSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssWhatsappSvg,.heateor_sss_vertical_sharing .heateorSssWhatsappSvg,#heateor_sss_vertical_rearrange .heateorSssWhatsappSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5.5%20-4.5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssAIMSvg,.heateor_sss_vertical_sharing .heateorSssAIMSvg,#heateor_sss_vertical_rearrange .heateorSssAIMSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssAmazonWishListSvg,.heateor_sss_vertical_sharing .heateorSssAmazonWishListSvg,#heateor_sss_vertical_rearrange .heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssAOLMailSvg,.heateor_sss_vertical_sharing .heateorSssAOLMailSvg,#heateor_sss_vertical_rearrange .heateorSssAOLMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssAppnetSvg,.heateor_sss_vertical_sharing .heateorSssAppnetSvg,#heateor_sss_vertical_rearrange .heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBalatarinSvg,.heateor_sss_vertical_sharing .heateorSssBalatarinSvg,#heateor_sss_vertical_rearrange .heateorSssBalatarinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%2022h8v2h-8z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBibSonomySvg,.heateor_sss_vertical_sharing .heateorSssBibSonomySvg,#heateor_sss_vertical_rearrange .heateorSssBibSonomySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-7%20-7%2046%2046%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.058%2025.892c-.25%200-.484.065-.694.17l-5.907-8.2a1.548%201.548%200%200%200%20.344-1.68l4.28-2.573c.288.333.71.552%201.187.552.862%200%201.56-.7%201.56-1.56%200-.776-.567-1.415-1.31-1.535V6.11a1.556%201.556%200%200%200-.25-3.095c-.862%200-1.56.7-1.56%201.56%200%20.196.04.383.106.556l-4.256%202.477a1.548%201.548%200%200%200-1.2-.574c-.862%200-1.56.7-1.56%201.56%200%20.778.567%201.417%201.31%201.537v5.1c-.218.035-.42.112-.598.23L9.93%208.204c.213-.268.345-.6.345-.97a1.56%201.56%200%201%200-.712%201.309l6.575%207.25c-.213.267-.345.6-.345.968%200%20.23.054.45.144.647L8.08%2022.66a1.547%201.547%200%200%200-1.138-.5%201.56%201.56%200%201%200%201.56%201.56c0-.23-.053-.45-.144-.646l7.857-5.25c.07.076.147.144.23.204l-1.95%203.927a1.536%201.536%200%200%200-.457-.076c-.862%200-1.56.695-1.56%201.56a1.56%201.56%200%201%200%202.468-1.27l1.95-3.926c.146.045.297.076.458.076.25%200%20.484-.064.694-.17l5.907%208.2a1.56%201.56%200%201%200%201.103-.459zM18.914%208.59c0-.197-.04-.383-.106-.556l4.257-2.473c.236.29.567.49.95.55v4.96a1.558%201.558%200%200%200-1.197%202.115l-4.278%202.573a1.542%201.542%200%200%200-.935-.53v-5.102a1.555%201.555%200%200%200%201.31-1.534z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBittyBrowserSvg,.heateor_sss_vertical_sharing .heateorSssBittyBrowserSvg,#heateor_sss_vertical_rearrange .heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBlinklistSvg,.heateor_sss_vertical_sharing .heateorSssBlinklistSvg,#heateor_sss_vertical_rearrange .heateorSssBlinklistSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBloggerPostSvg,.heateor_sss_vertical_sharing .heateorSssBloggerPostSvg,#heateor_sss_vertical_rearrange .heateorSssBloggerPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.5%22%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBlogMarksSvg,.heateor_sss_vertical_sharing .heateorSssBlogMarksSvg,#heateor_sss_vertical_rearrange .heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBoxnetSvg,.heateor_sss_vertical_sharing .heateorSssBoxnetSvg,#heateor_sss_vertical_rearrange .heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBookmarksfrSvg,.heateor_sss_vertical_sharing .heateorSssBookmarksfrSvg,#heateor_sss_vertical_rearrange .heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBuddyMarksSvg,.heateor_sss_vertical_sharing .heateorSssBuddyMarksSvg,#heateor_sss_vertical_rearrange .heateorSssBuddyMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssCare2NewsSvg,.heateor_sss_vertical_sharing .heateorSssCare2NewsSvg,#heateor_sss_vertical_rearrange .heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssCommentSvg,.heateor_sss_vertical_sharing .heateorSssCommentSvg,#heateor_sss_vertical_rearrange .heateorSssCommentSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-150%20-150%20791%20791%22%3E%3Cg%3E%3Cpath%20d%3D%22M477.364%2C127.481c-22.839-28.072-53.864-50.248-93.072-66.522c-39.208-16.274-82.036-24.41-128.479-24.41%20c-46.442%2C0-89.269%2C8.136-128.478%2C24.41c-39.209%2C16.274-70.233%2C38.446-93.074%2C66.522C11.419%2C155.555%2C0%2C186.15%2C0%2C219.269%20c0%2C28.549%2C8.61%2C55.299%2C25.837%2C80.232c17.227%2C24.934%2C40.778%2C45.874%2C70.664%2C62.813c-2.096%2C7.611-4.57%2C14.842-7.426%2C21.7%20c-2.855%2C6.851-5.424%2C12.467-7.708%2C16.847c-2.286%2C4.374-5.376%2C9.23-9.281%2C14.555c-3.899%2C5.332-6.849%2C9.093-8.848%2C11.283%20c-1.997%2C2.19-5.28%2C5.801-9.851%2C10.848c-4.565%2C5.041-7.517%2C8.33-8.848%2C9.853c-0.193%2C0.097-0.953%2C0.948-2.285%2C2.574%20c-1.331%2C1.615-1.999%2C2.419-1.999%2C2.419l-1.713%2C2.57c-0.953%2C1.42-1.381%2C2.327-1.287%2C2.703c0.096%2C0.384-0.094%2C1.335-0.57%2C2.854%20c-0.477%2C1.526-0.428%2C2.669%2C0.142%2C3.429v0.287c0.762%2C3.234%2C2.283%2C5.853%2C4.567%2C7.851c2.284%2C1.992%2C4.858%2C2.991%2C7.71%2C2.991h1.429%20c12.375-1.526%2C23.223-3.613%2C32.548-6.279c49.87-12.751%2C93.649-35.782%2C131.334-69.094c14.274%2C1.523%2C28.074%2C2.283%2C41.396%2C2.283%20c46.442%2C0%2C89.271-8.135%2C128.479-24.414c39.208-16.276%2C70.233-38.444%2C93.072-66.517c22.843-28.072%2C34.263-58.67%2C34.263-91.789%20C511.626%2C186.154%2C500.207%2C155.555%2C477.364%2C127.481z%20M445.244%2C292.075c-19.896%2C22.456-46.733%2C40.303-80.517%2C53.529%20c-33.784%2C13.223-70.093%2C19.842-108.921%2C19.842c-11.609%2C0-23.98-0.76-37.113-2.286l-16.274-1.708l-12.277%2C10.852%20c-23.408%2C20.558-49.582%2C36.829-78.513%2C48.821c8.754-15.414%2C15.416-31.785%2C19.986-49.102l7.708-27.412l-24.838-14.27%20c-24.744-14.093-43.918-30.793-57.53-50.114c-13.61-19.315-20.412-39.638-20.412-60.954c0-26.077%2C9.945-50.343%2C29.834-72.803%20c19.895-22.458%2C46.729-40.303%2C80.515-53.531c33.786-13.229%2C70.089-19.849%2C108.92-19.849c38.828%2C0%2C75.13%2C6.617%2C108.914%2C19.845%20c33.783%2C13.229%2C60.62%2C31.073%2C80.517%2C53.531c19.89%2C22.46%2C29.834%2C46.727%2C29.834%2C72.802S465.133%2C269.615%2C445.244%2C292.075z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssCopyLinkSvg,.heateor_sss_vertical_sharing .heateorSssCopyLinkSvg,#heateor_sss_vertical_rearrange .heateorSssCopyLinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.412%2021.177c0-.36-.126-.665-.377-.917l-2.804-2.804a1.235%201.235%200%200%200-.913-.378c-.377%200-.7.144-.97.43.026.028.11.11.255.25.144.14.24.236.29.29s.117.14.2.256c.087.117.146.232.177.344.03.112.046.236.046.37%200%20.36-.126.666-.377.918a1.25%201.25%200%200%201-.918.377%201.4%201.4%200%200%201-.373-.047%201.062%201.062%200%200%201-.345-.175%202.268%202.268%200%200%201-.256-.2%206.815%206.815%200%200%201-.29-.29c-.14-.142-.223-.23-.25-.254-.297.28-.445.607-.445.984%200%20.36.126.664.377.916l2.778%202.79c.243.243.548.364.917.364.36%200%20.665-.118.917-.35l1.982-1.97c.252-.25.378-.55.378-.9zm-9.477-9.504c0-.36-.126-.665-.377-.917l-2.777-2.79a1.235%201.235%200%200%200-.913-.378c-.35%200-.656.12-.917.364L7.967%209.92c-.254.252-.38.553-.38.903%200%20.36.126.665.38.917l2.802%202.804c.242.243.547.364.916.364.377%200%20.7-.14.97-.418-.026-.027-.11-.11-.255-.25s-.24-.235-.29-.29a2.675%202.675%200%200%201-.2-.255%201.052%201.052%200%200%201-.176-.344%201.396%201.396%200%200%201-.047-.37c0-.36.126-.662.377-.914.252-.252.557-.377.917-.377.136%200%20.26.015.37.046.114.03.23.09.346.175.117.085.202.153.256.2.054.05.15.148.29.29.14.146.222.23.25.258.294-.278.442-.606.442-.983zM27%2021.177c0%201.078-.382%201.99-1.146%202.736l-1.982%201.968c-.745.75-1.658%201.12-2.736%201.12-1.087%200-2.004-.38-2.75-1.143l-2.777-2.79c-.75-.747-1.12-1.66-1.12-2.737%200-1.106.392-2.046%201.183-2.818l-1.186-1.185c-.774.79-1.708%201.186-2.805%201.186-1.078%200-1.995-.376-2.75-1.13l-2.803-2.81C5.377%2012.82%205%2011.903%205%2010.826c0-1.08.382-1.993%201.146-2.738L8.128%206.12C8.873%205.372%209.785%205%2010.864%205c1.087%200%202.004.382%202.75%201.146l2.777%202.79c.75.747%201.12%201.66%201.12%202.737%200%201.105-.392%202.045-1.183%202.817l1.186%201.186c.774-.79%201.708-1.186%202.805-1.186%201.078%200%201.995.377%202.75%201.132l2.804%202.804c.754.755%201.13%201.672%201.13%202.75z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDiaryRuSvg,.heateor_sss_vertical_sharing .heateorSssDiaryRuSvg,#heateor_sss_vertical_rearrange .heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDiasporaSvg,.heateor_sss_vertical_sharing .heateorSssDiasporaSvg,#heateor_sss_vertical_rearrange .heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-1%2034%2034%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.44l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDiigoSvg,.heateor_sss_vertical_sharing .heateorSssDiigoSvg,#heateor_sss_vertical_rearrange .heateorSssDiigoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDraugiemSvg,.heateor_sss_vertical_sharing .heateorSssDraugiemSvg,#heateor_sss_vertical_rearrange .heateorSssDraugiemSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.55%2011.33c4.656.062%207.374%202.92%204.294%206.828-1.415%201.798-3.812%203.575-7.003%204.725-.15.056-.303.105-.46.16-.3.098-.595.188-.89.28a24.866%2024.866%200%200%201-4.05.814c-.464.043-.91.078-1.35.085-2.97.077-5.205-.74-5.93-2.474-.88-2.077.9-4.976%204.454-7.178-2.627%201.06-7.408%203.546-7.61%207.12v.454c.02.362.09.725.21%201.108.76%202.41%204.333%203.533%208.884%203.13.446-.036.892-.092%201.352-.16.66-.1%201.337-.23%202.027-.39a35.76%2035.76%200%200%200%202.02-.558c.154-.056.3-.098.454-.153.31-.094.608-.2.9-.31%203.945-1.436%206.87-3.34%208.58-5.526.975-1.253%201.476-2.424%201.574-3.448v-.787c-.28-2.61-3.317-4.135-7.45-3.717zm-3.024-1.29c.11%200%20.21-.014.307-.035.662-.167.983-.87%201.01-1.7.028-.885-.286-1.624-1.01-1.728-.063-.014-.125-.014-.195-.014-.578%200-.955.348-1.157.857-.094.265-.16.564-.163.885-.014.383.034.745.167%201.038.196.418.53.697%201.046.697zm-.014.292c-.293%200-.544.028-.76.084l.063.084.11.202.092.21.077.215.056.223.035.223.02.23.008.223v.237l-.014.23-.018.23-.028.23-.028.23-.043.23-.042.23-.04.223-.056.223-.042.212-.056.21-.057.2-.057.196-.042.19-.04.18-.02.11-.03.125-.028.132-.02.14-.03.152-.02.124v.03l-.028.166-.056.21-.02.172-.03.18-.02.182-.03.18-.02.19-.03.18-.02.188-.02.188-.02.19v.007c.04.537.082.997.103%201.26.02.3.085.517.18.663.14.215.378.292.706.32.28-.028.487-.084.647-.23.153-.14.237-.376.3-.753.118-.774.467-3.31.767-4.397.425-1.568%201.456-4.418-1.066-4.634-.122-.024-.226-.024-.338-.024zm-3.06-.8h.015c.976-.008%201.436-.9%201.436-1.994s-.46-1.993-1.436-2h-.014c-.99%200-1.45.9-1.45%202s.46%201.993%201.45%201.993zm-2.013%204.626c.09.383.18.732.254%201.052.307%201.254.606%204.16.718%205.038.105.885.418%201.073%201.052%201.136.62-.063.94-.25%201.045-1.136.105-.878.41-3.79.71-5.038.08-.314.175-.67.266-1.052.28-1.15.502-2.495%200-3.366-.32-.557-.94-.92-2.02-.92-1.088%200-1.708.37-2.03.92-.5.864-.27%202.216%200%203.366zm-1.35-4.153c.1.02.196.035.308.035.516%200%20.857-.28%201.045-.704.118-.293.174-.655.167-1.038a2.96%202.96%200%200%200-.167-.885c-.202-.51-.585-.857-1.157-.857-.07%200-.134%200-.197.014-.725.105-1.045.843-1.01%201.728.02.836.35%201.54%201.01%201.707zm-.3%209.373c.057.376.154.606.3.753.16.157.37.206.65.23.33-.024.557-.1.704-.32.09-.14.153-.36.18-.66.022-.264.064-.72.106-1.253v-.014l-.02-.187-.02-.188-.03-.188-.02-.18-.02-.19-.03-.18-.02-.18-.03-.183-.025-.174-.02-.166-.03-.167v-.02l-.02-.133-.028-.153-.028-.14-.024-.13-.028-.125-.03-.11-.034-.184-.056-.188-.04-.196-.058-.203-.056-.21-.056-.215-.04-.223-.057-.225-.04-.23-.033-.23-.028-.23-.03-.23-.02-.23-.008-.237v-.23l.007-.223.02-.23.034-.223.056-.222.07-.216.1-.21.11-.2.065-.085a3.128%203.128%200%200%200-.76-.083c-.11%200-.216%200-.32.014-2.524.216-1.492%203.066-1.067%204.634.262%201.054.603%203.59.728%204.364z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDoubanSvg,.heateor_sss_vertical_sharing .heateorSssDoubanSvg,#heateor_sss_vertical_rearrange .heateorSssDoubanSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M5.755%205.505h20.55v2.59H5.755v-2.59zm14.99%2018.47l1.93-4.29h2.21v-9.97h-18v9.98h2.04l1.93%204.29h-5.78v2.51h21.85v-2.51l-6.18-.01zm-10.74-6.95v-4.88h11.68v4.88h-11.68zm7.99%206.95h-4.37l-1.93-4.29h8.24l-1.94%204.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssEvernoteSvg,.heateor_sss_vertical_sharing .heateorSssEvernoteSvg,#heateor_sss_vertical_rearrange .heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFacebookMessengerSvg,.heateor_sss_vertical_sharing .heateorSssFacebookMessengerSvg,#heateor_sss_vertical_rearrange .heateorSssFacebookMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%205C9.986%205%205.11%209.56%205.11%2015.182c0%203.2%201.58%206.054%204.046%207.92V27l3.716-2.06c.99.276%202.04.425%203.128.425%206.014%200%2010.89-4.56%2010.89-10.183S22.013%205%2016%205zm1.147%2013.655L14.33%2015.73l-5.423%203%205.946-6.31%202.816%202.925%205.42-3-5.946%206.31z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFarkSvg,.heateor_sss_vertical_sharing .heateorSssFarkSvg,#heateor_sss_vertical_rearrange .heateorSssFarkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFlipboardSvg,.heateor_sss_vertical_sharing .heateorSssFlipboardSvg,#heateor_sss_vertical_rearrange .heateorSssFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19%2019H7V7h12v12z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25%2013H7V7h18v6z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2025H7V7h6v18z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFolkdSvg,.heateor_sss_vertical_sharing .heateorSssFolkdSvg,#heateor_sss_vertical_rearrange .heateorSssFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGoogleClassroomSvg,.heateor_sss_vertical_sharing .heateorSssGoogleClassroomSvg,#heateor_sss_vertical_rearrange .heateorSssGoogleClassroomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%202%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M22.667%2016.667a1.667%201.667%200%201%200%200-3.334%201.667%201.667%200%200%200%200%203.334zM22.333%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117zm-13-1.333a1.668%201.668%200%201%200-.002-3.336%201.668%201.668%200%200%200%20.002%203.336zM9.667%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117z%22%2F%3E%3Cpath%20d%3D%22M15.335%2015.333A2.332%202.332%200%201%200%2013%2013a2.333%202.333%200%200%200%202.335%202.333zm.332%201.334c-2.572%200-5.333%201.392-5.333%203.11v1.557H21v-1.556c0-1.72-2.762-3.11-5.333-3.11zm3%2010.666h8v2h-8v-2z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGoogleBookmarksSvg,.heateor_sss_vertical_sharing .heateorSssGoogleBookmarksSvg,#heateor_sss_vertical_rearrange .heateorSssGoogleBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGoogleGmailSvg,.heateor_sss_vertical_sharing .heateorSssGoogleGmailSvg,#heateor_sss_vertical_rearrange .heateorSssGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssHackerNewsSvg,.heateor_sss_vertical_sharing .heateorSssHackerNewsSvg,#heateor_sss_vertical_rearrange .heateorSssHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssHatenaSvg,.heateor_sss_vertical_sharing .heateorSssHatenaSvg,#heateor_sss_vertical_rearrange .heateorSssHatenaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssInstapaperSvg,.heateor_sss_vertical_sharing .heateorSssInstapaperSvg,#heateor_sss_vertical_rearrange .heateorSssInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssJamespotSvg,.heateor_sss_vertical_sharing .heateorSssJamespotSvg,#heateor_sss_vertical_rearrange .heateorSssJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssKakaoSvg,.heateor_sss_vertical_sharing .heateorSssKakaoSvg,#heateor_sss_vertical_rearrange .heateorSssKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssKikSvg,.heateor_sss_vertical_sharing .heateorSssKikSvg,#heateor_sss_vertical_rearrange .heateorSssKikSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M23.436%2020.74a2.511%202.511%200%200%200%20.109-5.019h-.11a2.516%202.516%200%200%200-2.507%202.515%202.509%202.509%200%200%200%202.508%202.508zm-7.946-3.09l2.89-2.89c.93-.93.93-2.434%200-3.363a2.374%202.374%200%200%200-3.362%200l-4.262%204.263V7.267A2.378%202.378%200%200%200%206%207.263V24.7a2.378%202.378%200%200%200%204.756.002v-2.316l1.335-1.335%203.76%205.07a2.378%202.378%200%200%200%203.866-2.771c-.016-.02-.03-.04-.047-.06l-4.177-5.638v-.002z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssKindleItSvg,.heateor_sss_vertical_sharing .heateorSssKindleItSvg,#heateor_sss_vertical_rearrange .heateorSssKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssKnownSvg,.heateor_sss_vertical_sharing .heateorSssKnownSvg,#heateor_sss_vertical_rearrange .heateorSssKnownSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssLineSvg,.heateor_sss_vertical_sharing .heateorSssLineSvg,#heateor_sss_vertical_rearrange .heateorSssLineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssLiveJournalSvg,.heateor_sss_vertical_sharing .heateorSssLiveJournalSvg,#heateor_sss_vertical_rearrange .heateorSssLiveJournalSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMailRuSvg,.heateor_sss_vertical_sharing .heateorSssMailRuSvg,#heateor_sss_vertical_rearrange .heateorSssMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMendeleySvg,.heateor_sss_vertical_sharing .heateorSssMendeleySvg,#heateor_sss_vertical_rearrange .heateorSssMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMeneameSvg,.heateor_sss_vertical_sharing .heateorSssMeneameSvg,#heateor_sss_vertical_rearrange .heateorSssMeneameSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMixiSvg,.heateor_sss_vertical_sharing .heateorSssMixiSvg,#heateor_sss_vertical_rearrange .heateorSssMixiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMySpaceSvg,.heateor_sss_vertical_sharing .heateorSssMySpaceSvg,#heateor_sss_vertical_rearrange .heateorSssMySpaceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssNetvouzSvg,.heateor_sss_vertical_sharing .heateorSssNetvouzSvg,#heateor_sss_vertical_rearrange .heateorSssNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssOdnoklassnikiSvg,.heateor_sss_vertical_sharing .heateorSssOdnoklassnikiSvg,#heateor_sss_vertical_rearrange .heateorSssOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssOutlookcomSvg,.heateor_sss_vertical_sharing .heateorSssOutlookcomSvg,#heateor_sss_vertical_rearrange .heateorSssOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPapalySvg,.heateor_sss_vertical_sharing .heateorSssPapalySvg,#heateor_sss_vertical_rearrange .heateorSssPapalySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2038%2038%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.744%208.217c1.112%200%202.296.519%203.106%201.329l.185.185c1.361%201.361%201.402%204.432.042%205.792l-3.103%202.787L16%2022.777l-4.974-4.467-3.103-2.787c-1.361-1.361-1.319-4.432.042-5.792l.185-.185c.81-.81%201.994-1.329%203.106-1.329.756%200%201.48.24%202.03.79L16%2012.291l2.714-3.284c.55-.55%201.274-.79%202.03-.79m0-2.921c-1.58%200-3.035.585-4.096%201.646l-.098.098-.088.107-.462.558-.462-.559-.088-.106-.098-.098c-1.061-1.061-2.516-1.646-4.096-1.646-1.871%200-3.804.816-5.172%202.184l-.185.185c-2.515%202.515-2.535%207.43-.042%209.924l.055.055.058.052%203.103%202.787%204.974%204.467L16%2026.704l1.952-1.753%204.974-4.467%203.103-2.787.058-.052.055-.055c2.494-2.494%202.473-7.409-.042-9.924l-.184-.186c-1.368-1.368-3.301-2.184-5.172-2.184z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPinboardSvg,.heateor_sss_vertical_sharing .heateorSssPinboardSvg,#heateor_sss_vertical_rearrange .heateorSssPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPlurkSvg,.heateor_sss_vertical_sharing .heateorSssPlurkSvg,#heateor_sss_vertical_rearrange .heateorSssPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPocketSvg,.heateor_sss_vertical_sharing .heateorSssPocketSvg,#heateor_sss_vertical_rearrange .heateorSssPocketSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%20-1%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPrintFriendlySvg,.heateor_sss_vertical_sharing .heateorSssPrintFriendlySvg,#heateor_sss_vertical_rearrange .heateorSssPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssProtopageSvg,.heateor_sss_vertical_sharing .heateorSssProtopageBookmarksSvg,#heateor_sss_vertical_rearrange .heateorSssProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPushaSvg,.heateor_sss_vertical_sharing .heateorSssPushaSvg,#heateor_sss_vertical_rearrange .heateorSssPushaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssQzoneSvg,.heateor_sss_vertical_sharing .heateorSssQzoneSvg,#heateor_sss_vertical_rearrange .heateorSssQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssRediffMyPageSvg,.heateor_sss_vertical_sharing .heateorSssRediffMyPageSvg,#heateor_sss_vertical_rearrange .heateorSssRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssRefindSvg,.heateor_sss_vertical_sharing .heateorSssRefindSvg,#heateor_sss_vertical_rearrange .heateorSssRefindSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%2021.256c-2.891%200-5.256-2.365-5.256-5.255%200-2.891%202.365-5.255%205.255-5.255%202.891%200%205.255%202.365%205.255%205.255.002%202.89-2.363%205.255-5.254%205.255z%22%2F%3E%3Cpath%20d%3D%22M20.664%2023.676A8.91%208.91%200%200%201%2016%2025c-4.95%200-9-4.05-9-9s4.05-9%209-9%209%204.05%209%209a8.912%208.912%200%200%201-1.302%204.628l2.293%201.991A11.908%2011.908%200%200%200%2028%2016c0-6.6-5.4-12-12-12S4%209.4%204%2016s5.4%2012%2012%2012c2.456%200%204.745-.75%206.652-2.029l-1.988-2.295z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssRenrenSvg,.heateor_sss_vertical_sharing .heateorSssRenrenSvg,#heateor_sss_vertical_rearrange .heateorSssRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSinaWeiboSvg,.heateor_sss_vertical_sharing .heateorSssSinaWeiboSvg,#heateor_sss_vertical_rearrange .heateorSssSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSiteJotSvg,.heateor_sss_vertical_sharing .heateorSssSiteJotSvg,#heateor_sss_vertical_rearrange .heateorSssSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSkypeSvg,.heateor_sss_vertical_sharing .heateorSssSkypeSvg,#heateor_sss_vertical_rearrange .heateorSssSkypeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.15%2018c-.007.04-.012.084-.02.126l-.04-.24.06.113c.124-.678.19-1.37.19-2.06%200-1.53-.3-3.013-.892-4.41a11.273%2011.273%200%200%200-2.43-3.602%2011.288%2011.288%200%200%200-8.012-3.32c-.72%200-1.443.068-2.146.203h-.005c.04.023.08.04.118.063l-.238-.037c.04-.01.08-.018.12-.026a6.717%206.717%200%200%200-3.146-.787%206.67%206.67%200%200%200-4.748%201.965A6.7%206.7%200%200%200%204%2010.738c0%201.14.293%202.262.844%203.253.007-.04.012-.08.02-.12l.04.238-.06-.114c-.112.643-.17%201.3-.17%201.954a11.285%2011.285%200%200%200%203.32%208.012c1.04%201.04%202.25%201.86%203.602%202.43%201.397.592%202.882.89%204.412.89.666%200%201.334-.06%201.985-.175-.038-.02-.077-.04-.116-.063l.242.04c-.046.01-.088.015-.13.02a6.68%206.68%200%200%200%203.3.87%206.661%206.661%200%200%200%204.743-1.963A6.666%206.666%200%200%200%2028%2021.26c0-1.145-.295-2.27-.85-3.264zm-11.098%204.885c-4.027%200-5.828-1.98-5.828-3.463%200-.76.562-1.294%201.336-1.294%201.723%200%201.277%202.474%204.49%202.474%201.647%200%202.556-.893%202.556-1.808%200-.55-.27-1.16-1.355-1.426l-3.58-.895c-2.88-.723-3.405-2.282-3.405-3.748%200-3.043%202.865-4.186%205.556-4.186%202.478%200%205.4%201.37%205.4%203.192%200%20.783-.677%201.237-1.45%201.237-1.472%200-1.2-2.035-4.163-2.035-1.47%200-2.285.666-2.285%201.618%200%20.95%201.16%201.254%202.17%201.484l2.65.587c2.905.647%203.64%202.342%203.64%203.94%200%202.47-1.895%204.318-5.726%204.318z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSMSSvg,.heateor_sss_vertical_sharing .heateorSssSMSSvg,#heateor_sss_vertical_rearrange .heateorSssSMSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-140%20-170%20770%20770%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cg%3E%3Cpath%20d%3D%22M87.412%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997c0-4.888-2.93-7.22-14.037-10.927%20c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.806-31.198c11.122%200%2021.078%202.526%2026.923%205.456%20l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803c0%204.485%203.707%206.832%2015.412%2010.927%20c18.133%206.234%2025.741%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809c-12.482%200-23.604-2.721-30.809-6.622%20L87.412%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M172.23%20166.856c0-11.884-0.389-22.034-0.777-30.42h24.964l1.36%2012.871h0.583c4.096-6.039%2012.482-15.008%2028.866-15.008%20c12.288%200%2022.034%206.233%2026.13%2016.174h0.389c3.513-4.873%207.803-8.775%2012.288-11.495c5.277-3.124%2011.122-4.679%2018.148-4.679%20c18.327%200%2032.184%2012.871%2032.184%2041.333v56.177h-28.866v-51.872c0-13.857-4.5-21.855-14.052-21.855%20c-6.817%200-11.705%204.679-13.648%2010.344c-0.777%202.138-1.166%205.262-1.166%207.609v55.773h-28.866v-53.441%20c0-12.093-4.29-20.285-13.663-20.285c-7.594%200-12.093%205.86-13.842%2010.733c-0.972%202.332-1.166%205.068-1.166%207.415v55.579H172.23%20V166.856z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M339.729%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997%20c0-4.888-2.93-7.22-14.037-10.927c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.807-31.198%20c11.122%200%2021.063%202.526%2026.922%205.456l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803%20c0%204.485%203.707%206.832%2015.412%2010.927c18.133%206.234%2025.742%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809%20c-12.482%200-23.604-2.721-30.809-6.622L339.729%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M383.947%20490L230.694%20364.252H50.713c-27.924%200-50.631-23.111-50.631-51.528V51.528C0.082%2023.111%2022.789%200%2050.713%200%20h388.574c27.924%200%2050.631%2023.111%2050.631%2051.528v261.197c0%2028.417-22.707%2051.528-50.631%2051.528h-55.34V490z%20M50.713%2030.615%20c-11.032%200-20.016%209.388-20.016%2020.913v261.197c0%2011.525%208.984%2020.913%2020.016%2020.913h190.923l111.696%2091.635v-91.635h85.954%20c11.032%200%2020.016-9.388%2020.016-20.913V51.528c0-11.525-8.984-20.913-20.016-20.913H50.713z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSlashdotSvg,.heateor_sss_vertical_sharing .heateorSssSlashdotSvg,#heateor_sss_vertical_rearrange .heateorSssSlashdotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSvejoSvg,.heateor_sss_vertical_sharing .heateorSssSvejoSvg,#heateor_sss_vertical_rearrange .heateorSssSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSymbalooFeedsSvg,.heateor_sss_vertical_sharing .heateorSssSymbalooFeedsSvg,#heateor_sss_vertical_rearrange .heateorSssSymbalooFeedsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTelegramSvg,.heateor_sss_vertical_sharing .heateorSssTelegramSvg,#heateor_sss_vertical_rearrange .heateorSssTelegramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssThreemaSvg,.heateor_sss_vertical_sharing .heateorSssThreemaSvg,#heateor_sss_vertical_rearrange .heateorSssThreemaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.4%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M24.067%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M17.733%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M16.082%208.716h-.262c-.886%200-1.507.682-1.507%201.568v2.015h3.372v-2.015c.001-.886-.718-1.568-1.603-1.568z%22%2F%3E%3Cpath%20d%3D%22M16%204.325c-6.075%200-11%203.752-11%208.381%200%201.924.851%203.697%202.283%205.111.49.484.607%201.231.283%201.839l-1.479%202.776%204.39-1.384a6.183%206.183%200%200%201%201.863-.284c.383%200%20.766.034%201.145.102.807.144%201.649.22%202.514.22%206.075%200%2011-3.752%2011-8.381S22.075%204.325%2016%204.325zm3.793%2012.432c0%20.368-.409.6-.777.6H12.85c-.368%200-.643-.231-.643-.6v-3.733c0-.368.275-.725.643-.725h.2v-2.015c0-1.585%201.187-2.832%202.771-2.832h.262c1.583%200%202.868%201.247%202.868%202.832v2.015h.066c.368%200%20.777.357.777.725v3.733z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTrelloSvg,.heateor_sss_vertical_sharing .heateorSssTrelloSvg,#heateor_sss_vertical_rearrange .heateorSssTrelloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.5%204h-21A1.5%201.5%200%200%200%204%205.5v21A1.5%201.5%200%200%200%205.5%2028h21a1.5%201.5%200%200%200%201.5-1.5v-21A1.5%201.5%200%200%200%2026.5%204zM14.44%2022.12c0%20.825-.675%201.5-1.5%201.5H8.62c-.825%200-1.5-.675-1.5-1.5V8.62c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v13.5zm10.44-6c0%20.825-.675%201.5-1.5%201.5h-4.32c-.825%200-1.5-.675-1.5-1.5v-7.5c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v7.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTuentiSvg,.heateor_sss_vertical_sharing .heateorSssTuentiSvg,#heateor_sss_vertical_rearrange .heateorSssTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTwiddlaSvg,.heateor_sss_vertical_sharing .heateorSssTwiddlaSvg,#heateor_sss_vertical_rearrange .heateorSssTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssViadeoSvg,.heateor_sss_vertical_sharing .heateorSssViadeoSvg,#heateor_sss_vertical_rearrange .heateorSssViadeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssViberSvg,.heateor_sss_vertical_sharing .heateorSssViberSvg,#heateor_sss_vertical_rearrange .heateorSssViberSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M22.57%2027.22a7.39%207.39%200%200%201-1.14-.32%2029%2029%200%200%201-16-16.12c-1-2.55%200-4.7%202.66-5.58a2%202%200%200%201%201.39%200c1.12.41%203.94%204.3%204%205.46a2%202%200%200%201-1.16%201.78%202%202%200%200%200-.66%202.84A10.3%2010.3%200%200%200%2017%2020.55%201.67%201.67%200%200%200%2019.35%2020c1.07-1.62%202.38-1.54%203.82-.54.72.51%201.45%201%202.14%201.55.93.75%202.1%201.37%201.55%202.94A5.21%205.21%200%200%201%2022.57%2027.22Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M17.06%204.79A10.42%2010.42%200%200%201%2026.79%2015c0%20.51.18%201.27-.58%201.25s-.54-.78-.6-1.29c-.7-5.52-3.23-8.13-8.71-9-.45-.07-1.15%200-1.11-.57C15.84%204.52%2016.66%204.85%2017.06%204.79Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M24.09%2014.06c-.05.38.17%201-.45%201.13-.83.13-.67-.64-.75-1.13-.56-3.36-1.74-4.59-5.12-5.35-.5-.11-1.27%200-1.15-.8s.82-.48%201.35-.42A6.9%206.9%200%200%201%2024.09%2014.06Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M21.52%2013.45c0%20.43%200%20.87-.53.93s-.6-.26-.64-.64a2.47%202.47%200%200%200-2.26-2.43c-.42-.07-.82-.2-.63-.76.13-.38.47-.41.83-.42A3.66%203.66%200%200%201%2021.52%2013.45Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTypePadPostSvg,.heateor_sss_vertical_sharing .heateorSssTypePadPostSvg,#heateor_sss_vertical_rearrange .heateorSssTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssWebnewsSvg,.heateor_sss_vertical_sharing .heateorSssWebnewsSvg,#heateor_sss_vertical_rearrange .heateorSssWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssWordPressSvg,.heateor_sss_vertical_sharing .heateorSssWordPressSvg,#heateor_sss_vertical_rearrange .heateorSssWordPressSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cg%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssWykopSvg,.heateor_sss_vertical_sharing .heateorSssWykopSvg,#heateor_sss_vertical_rearrange .heateorSssWykopSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssYahooMailSvg,.heateor_sss_vertical_sharing .heateorSssYahooMailSvg,#heateor_sss_vertical_rearrange .heateorSssYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssYoolinkSvg,.heateor_sss_vertical_sharing .heateorSssYoolinkSvg,#heateor_sss_vertical_rearrange .heateorSssYoolinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%3E%3C%2Fcircle%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssInstagramSvg,.heateor_sss_vertical_sharing .heateorSssInstagramSvg, #heateor_sss_vertical_rearrange .heateorSssInstagramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssStockTwitsSvg,.heateor_sss_vertical_sharing .heateorSssStockTwitsSvg, #heateor_sss_vertical_rearrange .heateorSssStockTwitsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.328%2014.309l-1.793-.736c-1.303-.536-1.955-1.244-1.955-2.123%200-.637.249-1.166.746-1.587.498-.427%201.123-.642%201.878-.642.614%200%201.115.125%201.504.373.373.218.766.684%201.178%201.399l2.204-1.306c-1.166-2.024-2.788-3.037-4.863-3.037-1.539%200-2.828.459-3.866%201.376-1.039.909-1.559%202.039-1.559%203.391%200%202.005%201.232%203.528%203.698%204.569l1.738.722c.451.194.84.399%201.167.612.326.214.593.443.799.687.206.245.358.513.455.805.097.291.146.612.146.961%200%20.871-.28%201.59-.84%202.156-.56.568-1.263.851-2.111.851-1.073%200-1.889-.389-2.449-1.166-.311-.405-.529-1.135-.653-2.193L4%2020.028c.249%201.679.875%202.986%201.878%203.92%201.018.936%202.309%201.403%203.872%201.403%201.648%200%203.028-.544%204.139-1.634%201.102-1.082%201.653-2.451%201.653-4.109%200-1.237-.338-2.281-1.012-3.134-.676-.852-1.743-1.573-3.202-2.165zM28%207.023H17.037v2.571h4.14v15.425h2.695V9.594H28z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssYoutubeSvg,.heateor_sss_vertical_sharing .heateorSssYoutubeSvg, #heateor_sss_vertical_rearrange .heateorSssYoutubeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGentleReaderSvg,.heateor_sss_vertical_sharing .heateorSssGentleReaderSvg, #heateor_sss_vertical_rearrange .heateorSssGentleReaderSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-80%20-80.014%201200.014%201200%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M819.664%2C291.684C572.661-7.32%2C155.656%2C203.683%2C169.656%2C527.687%20c38%2C489.007%2C727.009%2C448.006%2C683.009-28H562.661v98h177.002c-54.721%2C270.685-443.659%2C218.617-464.179-77.827%20c-0.48-6.934%2C1.493-36.96%2C3.053-44.641c44.28-217.95%2C300.377-317.791%2C467.126-110.535L819.664%2C291.684z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMixSvg,.heateor_sss_vertical_sharing .heateorSssMixSvg, #heateor_sss_vertical_rearrange .heateorSssMixSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-7%20-8%2045%2045%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M27.87%204.125c-5.224%200-9.467%204.159-9.467%209.291v2.89c0-1.306%201.074-2.362%202.399-2.362s2.399%201.056%202.399%202.362v1.204c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V4.134c-.036-.009-.082-.009-.129-.009%22%2F%3E%3Cpath%20d%3D%22M4%204.125v12.94c2.566%200%204.668-1.973%204.807-4.465v-2.214c0-.065%200-.12.009-.176.093-1.213%201.13-2.177%202.39-2.177%201.325%200%202.399%201.056%202.399%202.362v9.226c0%201.306%201.074%202.353%202.399%202.353s2.399-1.056%202.399-2.353v-6.206c0-5.132%204.233-9.291%209.467-9.291H4z%22%2F%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M4%2017.074v8.438c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V12.61C8.659%2015.102%206.566%2017.074%204%2017.074%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMeWeSvg,.heateor_sss_vertical_sharing .heateorSssMeWeSvg, #heateor_sss_vertical_rearrange .heateorSssMeWeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFintelSvg,.heateor_sss_vertical_sharing .heateorSssFintelSvg,#heateor_sss_vertical_rearrange .heateorSssFintelSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20version%3D%221.1%22%20style%3D%22shape-rendering%3AgeometricPrecision%3B%20text-rendering%3AgeometricPrecision%3B%20image-rendering%3AoptimizeQuality%3B%20fill-rule%3Aevenodd%3B%20clip-rule%3Aevenodd%22%0AviewBox%3D%22-110%20-120%20428%20494%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%3C!%5BCDATA%5B.fil0%20%7Bfill%3A%23fff%7D.fil1%20%7Bfill%3A%23fff%7D%5D%5D%3E%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22Layer_x0020_1%22%3E%3Cmetadata%20id%3D%22CorelCorpID_0Corel-Layer%22%2F%3E%3Cpolygon%20class%3D%22fil0%22%20points%3D%22108%2C274%2048%2C274%2048%2C152%200%2C152%200%2C95%2048%2C95%2048%2C0%20208%2C0%20208%2C56%20108%2C56%20108%2C95%20180%2C95%20180%2C151%20108%2C151%20%22%2F%3E%3Cpolygon%20class%3D%22fil1%22%20points%3D%2299%2C272%20103%2C272%20103%2C147%20175%2C147%20175%2C100%20103%2C100%20103%2C52%20203%2C52%20203%2C7%20199%2C7%20199%2C48%2098%2C48%2098%2C104%20171%2C104%20171%2C142%2099%2C142%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssParlerSvg,.heateor_sss_vertical_sharing .heateorSssParlerSvg,#heateor_sss_vertical_rearrange .heateorSssParlerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20height%3D%27100%25%27%20width%3D%27100%25%27%20viewBox%3D%27-24%20-30%20140%20160%27%3E%3Cg%20fill%3D%27%23fff%27%3E%3Cpath%20d%3D%27M58.34%2083.31h-25v-8.49c0-4.5%203.64-8.14%208.14-8.14h16.87c13.8%200%2025.02-11.19%2025.02-24.94%200-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0%207.45%207.45%200%2016.63%200h36.41l5.44.17C81.39.24%20100%2018.86%20100%2041.74c0%2022.92-18.69%2041.57-41.66%2041.57z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M16.65%20100C7.46%20100%20.02%2092.55.02%2083.37V49.49c0-8.92%207.23-16.16%2016.16-16.16h42.19a8.32%208.32%200%20010%2016.64h-33.5c-4.53%200-8.21%203.67-8.21%208.21V100z%27%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGabSvg,.heateor_sss_vertical_sharing .heateorSssGabSvg,#heateor_sss_vertical_rearrange .heateorSssGabSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-14.5%205.5%2046%2026%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.8%2C7.6h-2.4v0.7V9l-0.4-0.3C10.2%2C7.8%2C9%2C7.2%2C7.7%2C7.2c-0.2%2C0-0.4%2C0-0.4%2C0c-0.1%2C0-0.3%2C0-0.5%2C0%0Ac-5.6%2C0.3-8.7%2C7.2-5.4%2C12.1c2.3%2C3.4%2C7.1%2C4.1%2C9.7%2C1.5l0.3-0.3l0%2C0.7c0%2C1-0.1%2C1.5-0.4%2C2.2c-1%2C2.4-4.1%2C3-6.8%2C1.3%0Ac-0.2-0.1-0.4-0.2-0.4-0.2c-0.1%2C0.1-1.9%2C3.5-1.9%2C3.6c0%2C0.1%2C0.5%2C0.4%2C0.8%2C0.6c2.2%2C1.4%2C5.6%2C1.7%2C8.3%2C0.8c2.7-0.9%2C4.5-3.2%2C5-6.4%0Ac0.2-1.1%2C0.2-0.8%2C0.2-8.4l0-7.1H13.8z%20M9.7%2C17.6c-2.2%2C1.2-4.9-0.4-4.9-2.9C4.8%2C12.6%2C7%2C11%2C9%2C11.6C11.8%2C12.4%2C12.3%2C16.1%2C9.7%2C17.6z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}
 
admin/css/sassy-social-share-hover-svg-horizontal.css DELETED
@@ -1 +0,0 @@
1
- .heateor_sss_standard_follow_icons_container .heateorSssYummlySvg:hover,.heateor_sss_horizontal_sharing .heateorSssYummlySvg:hover,#heateor_sss_rearrange .heateorSssYummlySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBufferSvg:hover,.heateor_sss_horizontal_sharing .heateorSssBufferSvg:hover,#heateor_sss_rearrange .heateorSssBufferSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFacebookSvg:hover,.heateor_sss_horizontal_sharing .heateorSssFacebookSvg:hover,#heateor_sss_rearrange .heateorSssFacebookSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDiggSvg:hover,.heateor_sss_horizontal_sharing .heateorSssDiggSvg:hover,#heateor_sss_rearrange .heateorSssDiggSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssEmailSvg:hover,.heateor_sss_horizontal_sharing .heateorSssEmailSvg:hover,#heateor_sss_rearrange .heateorSssEmailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFloatitSvg:hover,.heateor_sss_horizontal_sharing .heateorSssFloatitSvg:hover,#heateor_sss_rearrange .heateorSssFloatitSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssLinkedinSvg:hover,.heateor_sss_horizontal_sharing .heateorSssLinkedinSvg:hover,#heateor_sss_rearrange .heateorSssLinkedinSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMoreSvg:hover,.heateor_sss_horizontal_sharing .heateorSssMoreSvg:hover,#heateor_sss_rearrange .heateorSssMoreSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPinterestSvg:hover,.heateor_sss_horizontal_sharing .heateorSssPinterestSvg:hover,#heateor_sss_rearrange .heateorSssPinterestSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPrintSvg:hover,.heateor_sss_horizontal_sharing .heateorSssPrintSvg:hover,#heateor_sss_rearrange .heateorSssPrintSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssRedditSvg:hover,.heateor_sss_horizontal_sharing .heateorSssRedditSvg:hover,#heateor_sss_rearrange .heateorSssRedditSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2039%2039%22%3E%3Cpath%20d%3D%22M28.543%2015.774a2.953%202.953%200%200%200-2.951-2.949%202.882%202.882%200%200%200-1.9.713%2014.075%2014.075%200%200%200-6.85-2.044l1.38-4.349%203.768.884a2.452%202.452%200%201%200%20.24-1.176l-4.274-1a.6.6%200%200%200-.709.4l-1.659%205.224a14.314%2014.314%200%200%200-7.316%202.029%202.908%202.908%200%200%200-1.872-.681%202.942%202.942%200%200%200-1.618%205.4%205.109%205.109%200%200%200-.062.765c0%204.158%205.037%207.541%2011.229%207.541s11.22-3.383%2011.22-7.541a5.2%205.2%200%200%200-.053-.706%202.963%202.963%200%200%200%201.427-2.51zm-18.008%201.88a1.753%201.753%200%200%201%201.73-1.74%201.73%201.73%200%200%201%201.709%201.74%201.709%201.709%200%200%201-1.709%201.711%201.733%201.733%200%200%201-1.73-1.711zm9.565%204.968a5.573%205.573%200%200%201-4.081%201.272h-.032a5.576%205.576%200%200%201-4.087-1.272.6.6%200%200%201%20.844-.854%204.5%204.5%200%200%200%203.238.927h.032a4.5%204.5%200%200%200%203.237-.927.6.6%200%201%201%20.844.854zm-.331-3.256a1.726%201.726%200%201%201%201.709-1.712%201.717%201.717%200%200%201-1.712%201.712z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTumblrSvg:hover,.heateor_sss_horizontal_sharing .heateorSssTumblrSvg:hover,#heateor_sss_rearrange .heateorSssTumblrSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTwitterSvg:hover,.heateor_sss_horizontal_sharing .heateorSssTwitterSvg:hover,#heateor_sss_rearrange .heateorSssTwitterSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2039%2039%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssVkontakteSvg:hover,.heateor_sss_horizontal_sharing .heateorSssVkontakteSvg:hover,#heateor_sss_rearrange .heateorSssVkontakteSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-0.75%20-1.5%2034%2034%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssXingSvg:hover,.heateor_sss_horizontal_sharing .heateorSssXingSvg:hover,#heateor_sss_rearrange .heateorSssXingSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssWhatsappSvg:hover,.heateor_sss_horizontal_sharing .heateorSssWhatsappSvg:hover,#heateor_sss_rearrange .heateorSssWhatsappSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5.5%20-4.5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssAIMSvg:hover,.heateor_sss_horizontal_sharing .heateorSssAIMSvg:hover,#heateor_sss_rearrange .heateorSssAIMSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssAmazonWishListSvg:hover,.heateor_sss_horizontal_sharing .heateorSssAmazonWishListSvg:hover,#heateor_sss_rearrange .heateorSssAmazonWishListSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssAOLMailSvg:hover,.heateor_sss_horizontal_sharing .heateorSssAOLMailSvg:hover,#heateor_sss_rearrange .heateorSssAOLMailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssAppnetSvg:hover,.heateor_sss_horizontal_sharing .heateorSssAppnetSvg:hover,#heateor_sss_rearrange .heateorSssAppnetSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBalatarinSvg:hover,.heateor_sss_horizontal_sharing .heateorSssBalatarinSvg:hover,#heateor_sss_rearrange .heateorSssBalatarinSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%2022h8v2h-8z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBibSonomySvg:hover,.heateor_sss_horizontal_sharing .heateorSssBibSonomySvg:hover,#heateor_sss_rearrange .heateorSssBibSonomySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-7%20-7%2046%2046%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.058%2025.892c-.25%200-.484.065-.694.17l-5.907-8.2a1.548%201.548%200%200%200%20.344-1.68l4.28-2.573c.288.333.71.552%201.187.552.862%200%201.56-.7%201.56-1.56%200-.776-.567-1.415-1.31-1.535V6.11a1.556%201.556%200%200%200-.25-3.095c-.862%200-1.56.7-1.56%201.56%200%20.196.04.383.106.556l-4.256%202.477a1.548%201.548%200%200%200-1.2-.574c-.862%200-1.56.7-1.56%201.56%200%20.778.567%201.417%201.31%201.537v5.1c-.218.035-.42.112-.598.23L9.93%208.204c.213-.268.345-.6.345-.97a1.56%201.56%200%201%200-.712%201.309l6.575%207.25c-.213.267-.345.6-.345.968%200%20.23.054.45.144.647L8.08%2022.66a1.547%201.547%200%200%200-1.138-.5%201.56%201.56%200%201%200%201.56%201.56c0-.23-.053-.45-.144-.646l7.857-5.25c.07.076.147.144.23.204l-1.95%203.927a1.536%201.536%200%200%200-.457-.076c-.862%200-1.56.695-1.56%201.56a1.56%201.56%200%201%200%202.468-1.27l1.95-3.926c.146.045.297.076.458.076.25%200%20.484-.064.694-.17l5.907%208.2a1.56%201.56%200%201%200%201.103-.459zM18.914%208.59c0-.197-.04-.383-.106-.556l4.257-2.473c.236.29.567.49.95.55v4.96a1.558%201.558%200%200%200-1.197%202.115l-4.278%202.573a1.542%201.542%200%200%200-.935-.53v-5.102a1.555%201.555%200%200%200%201.31-1.534z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBittyBrowserSvg:hover,.heateor_sss_horizontal_sharing .heateorSssBittyBrowserSvg:hover,#heateor_sss_rearrange .heateorSssBittyBrowserSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBlinklistSvg:hover,.heateor_sss_horizontal_sharing .heateorSssBlinklistSvg:hover,#heateor_sss_rearrange .heateorSssBlinklistSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBloggerPostSvg:hover,.heateor_sss_horizontal_sharing .heateorSssBloggerPostSvg:hover,#heateor_sss_rearrange .heateorSssBloggerPostSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.5%22%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBlogMarksSvg:hover,.heateor_sss_horizontal_sharing .heateorSssBlogMarksSvg:hover,#heateor_sss_rearrange .heateorSssBlogMarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBoxnetSvg:hover,.heateor_sss_horizontal_sharing .heateorSssBoxnetSvg:hover,#heateor_sss_rearrange .heateorSssBoxnetSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBookmarksfrSvg:hover,.heateor_sss_horizontal_sharing .heateorSssBookmarksfrSvg:hover,#heateor_sss_rearrange .heateorSssBookmarksfrSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssBuddyMarksSvg:hover,.heateor_sss_horizontal_sharing .heateorSssBuddyMarksSvg:hover,#heateor_sss_rearrange .heateorSssBuddyMarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssCare2NewsSvg:hover,.heateor_sss_horizontal_sharing .heateorSssCare2NewsSvg:hover,#heateor_sss_rearrange .heateorSssCare2NewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssCommentSvg:hover,.heateor_sss_horizontal_sharing .heateorSssCommentSvg:hover,#heateor_sss_rearrange .heateorSssCommentSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-150%20-150%20791%20791%22%3E%3Cg%3E%3Cpath%20d%3D%22M477.364%2C127.481c-22.839-28.072-53.864-50.248-93.072-66.522c-39.208-16.274-82.036-24.41-128.479-24.41%20c-46.442%2C0-89.269%2C8.136-128.478%2C24.41c-39.209%2C16.274-70.233%2C38.446-93.074%2C66.522C11.419%2C155.555%2C0%2C186.15%2C0%2C219.269%20c0%2C28.549%2C8.61%2C55.299%2C25.837%2C80.232c17.227%2C24.934%2C40.778%2C45.874%2C70.664%2C62.813c-2.096%2C7.611-4.57%2C14.842-7.426%2C21.7%20c-2.855%2C6.851-5.424%2C12.467-7.708%2C16.847c-2.286%2C4.374-5.376%2C9.23-9.281%2C14.555c-3.899%2C5.332-6.849%2C9.093-8.848%2C11.283%20c-1.997%2C2.19-5.28%2C5.801-9.851%2C10.848c-4.565%2C5.041-7.517%2C8.33-8.848%2C9.853c-0.193%2C0.097-0.953%2C0.948-2.285%2C2.574%20c-1.331%2C1.615-1.999%2C2.419-1.999%2C2.419l-1.713%2C2.57c-0.953%2C1.42-1.381%2C2.327-1.287%2C2.703c0.096%2C0.384-0.094%2C1.335-0.57%2C2.854%20c-0.477%2C1.526-0.428%2C2.669%2C0.142%2C3.429v0.287c0.762%2C3.234%2C2.283%2C5.853%2C4.567%2C7.851c2.284%2C1.992%2C4.858%2C2.991%2C7.71%2C2.991h1.429%20c12.375-1.526%2C23.223-3.613%2C32.548-6.279c49.87-12.751%2C93.649-35.782%2C131.334-69.094c14.274%2C1.523%2C28.074%2C2.283%2C41.396%2C2.283%20c46.442%2C0%2C89.271-8.135%2C128.479-24.414c39.208-16.276%2C70.233-38.444%2C93.072-66.517c22.843-28.072%2C34.263-58.67%2C34.263-91.789%20C511.626%2C186.154%2C500.207%2C155.555%2C477.364%2C127.481z%20M445.244%2C292.075c-19.896%2C22.456-46.733%2C40.303-80.517%2C53.529%20c-33.784%2C13.223-70.093%2C19.842-108.921%2C19.842c-11.609%2C0-23.98-0.76-37.113-2.286l-16.274-1.708l-12.277%2C10.852%20c-23.408%2C20.558-49.582%2C36.829-78.513%2C48.821c8.754-15.414%2C15.416-31.785%2C19.986-49.102l7.708-27.412l-24.838-14.27%20c-24.744-14.093-43.918-30.793-57.53-50.114c-13.61-19.315-20.412-39.638-20.412-60.954c0-26.077%2C9.945-50.343%2C29.834-72.803%20c19.895-22.458%2C46.729-40.303%2C80.515-53.531c33.786-13.229%2C70.089-19.849%2C108.92-19.849c38.828%2C0%2C75.13%2C6.617%2C108.914%2C19.845%20c33.783%2C13.229%2C60.62%2C31.073%2C80.517%2C53.531c19.89%2C22.46%2C29.834%2C46.727%2C29.834%2C72.802S465.133%2C269.615%2C445.244%2C292.075z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssCopyLinkSvg:hover,.heateor_sss_horizontal_sharing .heateorSssCopyLinkSvg:hover,#heateor_sss_rearrange .heateorSssCopyLinkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.412%2021.177c0-.36-.126-.665-.377-.917l-2.804-2.804a1.235%201.235%200%200%200-.913-.378c-.377%200-.7.144-.97.43.026.028.11.11.255.25.144.14.24.236.29.29s.117.14.2.256c.087.117.146.232.177.344.03.112.046.236.046.37%200%20.36-.126.666-.377.918a1.25%201.25%200%200%201-.918.377%201.4%201.4%200%200%201-.373-.047%201.062%201.062%200%200%201-.345-.175%202.268%202.268%200%200%201-.256-.2%206.815%206.815%200%200%201-.29-.29c-.14-.142-.223-.23-.25-.254-.297.28-.445.607-.445.984%200%20.36.126.664.377.916l2.778%202.79c.243.243.548.364.917.364.36%200%20.665-.118.917-.35l1.982-1.97c.252-.25.378-.55.378-.9zm-9.477-9.504c0-.36-.126-.665-.377-.917l-2.777-2.79a1.235%201.235%200%200%200-.913-.378c-.35%200-.656.12-.917.364L7.967%209.92c-.254.252-.38.553-.38.903%200%20.36.126.665.38.917l2.802%202.804c.242.243.547.364.916.364.377%200%20.7-.14.97-.418-.026-.027-.11-.11-.255-.25s-.24-.235-.29-.29a2.675%202.675%200%200%201-.2-.255%201.052%201.052%200%200%201-.176-.344%201.396%201.396%200%200%201-.047-.37c0-.36.126-.662.377-.914.252-.252.557-.377.917-.377.136%200%20.26.015.37.046.114.03.23.09.346.175.117.085.202.153.256.2.054.05.15.148.29.29.14.146.222.23.25.258.294-.278.442-.606.442-.983zM27%2021.177c0%201.078-.382%201.99-1.146%202.736l-1.982%201.968c-.745.75-1.658%201.12-2.736%201.12-1.087%200-2.004-.38-2.75-1.143l-2.777-2.79c-.75-.747-1.12-1.66-1.12-2.737%200-1.106.392-2.046%201.183-2.818l-1.186-1.185c-.774.79-1.708%201.186-2.805%201.186-1.078%200-1.995-.376-2.75-1.13l-2.803-2.81C5.377%2012.82%205%2011.903%205%2010.826c0-1.08.382-1.993%201.146-2.738L8.128%206.12C8.873%205.372%209.785%205%2010.864%205c1.087%200%202.004.382%202.75%201.146l2.777%202.79c.75.747%201.12%201.66%201.12%202.737%200%201.105-.392%202.045-1.183%202.817l1.186%201.186c.774-.79%201.708-1.186%202.805-1.186%201.078%200%201.995.377%202.75%201.132l2.804%202.804c.754.755%201.13%201.672%201.13%202.75z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDiaryRuSvg:hover,.heateor_sss_horizontal_sharing .heateorSssDiaryRuSvg:hover,#heateor_sss_rearrange .heateorSssDiaryRuSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDiasporaSvg:hover,.heateor_sss_horizontal_sharing .heateorSssDiasporaSvg:hover,#heateor_sss_rearrange .heateorSssDiasporaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-1%2034%2034%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.44l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDiigoSvg:hover,.heateor_sss_horizontal_sharing .heateorSssDiigoSvg:hover,#heateor_sss_rearrange .heateorSssDiigoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDraugiemSvg:hover,.heateor_sss_horizontal_sharing .heateorSssDraugiemSvg:hover,#heateor_sss_rearrange .heateorSssDraugiemSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.55%2011.33c4.656.062%207.374%202.92%204.294%206.828-1.415%201.798-3.812%203.575-7.003%204.725-.15.056-.303.105-.46.16-.3.098-.595.188-.89.28a24.866%2024.866%200%200%201-4.05.814c-.464.043-.91.078-1.35.085-2.97.077-5.205-.74-5.93-2.474-.88-2.077.9-4.976%204.454-7.178-2.627%201.06-7.408%203.546-7.61%207.12v.454c.02.362.09.725.21%201.108.76%202.41%204.333%203.533%208.884%203.13.446-.036.892-.092%201.352-.16.66-.1%201.337-.23%202.027-.39a35.76%2035.76%200%200%200%202.02-.558c.154-.056.3-.098.454-.153.31-.094.608-.2.9-.31%203.945-1.436%206.87-3.34%208.58-5.526.975-1.253%201.476-2.424%201.574-3.448v-.787c-.28-2.61-3.317-4.135-7.45-3.717zm-3.024-1.29c.11%200%20.21-.014.307-.035.662-.167.983-.87%201.01-1.7.028-.885-.286-1.624-1.01-1.728-.063-.014-.125-.014-.195-.014-.578%200-.955.348-1.157.857-.094.265-.16.564-.163.885-.014.383.034.745.167%201.038.196.418.53.697%201.046.697zm-.014.292c-.293%200-.544.028-.76.084l.063.084.11.202.092.21.077.215.056.223.035.223.02.23.008.223v.237l-.014.23-.018.23-.028.23-.028.23-.043.23-.042.23-.04.223-.056.223-.042.212-.056.21-.057.2-.057.196-.042.19-.04.18-.02.11-.03.125-.028.132-.02.14-.03.152-.02.124v.03l-.028.166-.056.21-.02.172-.03.18-.02.182-.03.18-.02.19-.03.18-.02.188-.02.188-.02.19v.007c.04.537.082.997.103%201.26.02.3.085.517.18.663.14.215.378.292.706.32.28-.028.487-.084.647-.23.153-.14.237-.376.3-.753.118-.774.467-3.31.767-4.397.425-1.568%201.456-4.418-1.066-4.634-.122-.024-.226-.024-.338-.024zm-3.06-.8h.015c.976-.008%201.436-.9%201.436-1.994s-.46-1.993-1.436-2h-.014c-.99%200-1.45.9-1.45%202s.46%201.993%201.45%201.993zm-2.013%204.626c.09.383.18.732.254%201.052.307%201.254.606%204.16.718%205.038.105.885.418%201.073%201.052%201.136.62-.063.94-.25%201.045-1.136.105-.878.41-3.79.71-5.038.08-.314.175-.67.266-1.052.28-1.15.502-2.495%200-3.366-.32-.557-.94-.92-2.02-.92-1.088%200-1.708.37-2.03.92-.5.864-.27%202.216%200%203.366zm-1.35-4.153c.1.02.196.035.308.035.516%200%20.857-.28%201.045-.704.118-.293.174-.655.167-1.038a2.96%202.96%200%200%200-.167-.885c-.202-.51-.585-.857-1.157-.857-.07%200-.134%200-.197.014-.725.105-1.045.843-1.01%201.728.02.836.35%201.54%201.01%201.707zm-.3%209.373c.057.376.154.606.3.753.16.157.37.206.65.23.33-.024.557-.1.704-.32.09-.14.153-.36.18-.66.022-.264.064-.72.106-1.253v-.014l-.02-.187-.02-.188-.03-.188-.02-.18-.02-.19-.03-.18-.02-.18-.03-.183-.025-.174-.02-.166-.03-.167v-.02l-.02-.133-.028-.153-.028-.14-.024-.13-.028-.125-.03-.11-.034-.184-.056-.188-.04-.196-.058-.203-.056-.21-.056-.215-.04-.223-.057-.225-.04-.23-.033-.23-.028-.23-.03-.23-.02-.23-.008-.237v-.23l.007-.223.02-.23.034-.223.056-.222.07-.216.1-.21.11-.2.065-.085a3.128%203.128%200%200%200-.76-.083c-.11%200-.216%200-.32.014-2.524.216-1.492%203.066-1.067%204.634.262%201.054.603%203.59.728%204.364z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssDoubanSvg:hover,.heateor_sss_horizontal_sharing .heateorSssDoubanSvg:hover,#heateor_sss_rearrange .heateorSssDoubanSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M5.755%205.505h20.55v2.59H5.755v-2.59zm14.99%2018.47l1.93-4.29h2.21v-9.97h-18v9.98h2.04l1.93%204.29h-5.78v2.51h21.85v-2.51l-6.18-.01zm-10.74-6.95v-4.88h11.68v4.88h-11.68zm7.99%206.95h-4.37l-1.93-4.29h8.24l-1.94%204.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssEvernoteSvg:hover,.heateor_sss_horizontal_sharing .heateorSssEvernoteSvg:hover,#heateor_sss_rearrange .heateorSssEvernoteSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFacebookMessengerSvg:hover,.heateor_sss_horizontal_sharing .heateorSssFacebookMessengerSvg:hover,#heateor_sss_rearrange .heateorSssFacebookMessengerSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%205C9.986%205%205.11%209.56%205.11%2015.182c0%203.2%201.58%206.054%204.046%207.92V27l3.716-2.06c.99.276%202.04.425%203.128.425%206.014%200%2010.89-4.56%2010.89-10.183S22.013%205%2016%205zm1.147%2013.655L14.33%2015.73l-5.423%203%205.946-6.31%202.816%202.925%205.42-3-5.946%206.31z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFarkSvg:hover,.heateor_sss_horizontal_sharing .heateorSssFarkSvg:hover,#heateor_sss_rearrange .heateorSssFarkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFlipboardSvg:hover,.heateor_sss_horizontal_sharing .heateorSssFlipboardSvg:hover,#heateor_sss_rearrange .heateorSssFlipboardSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19%2019H7V7h12v12z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25%2013H7V7h18v6z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2025H7V7h6v18z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFolkdSvg:hover,.heateor_sss_horizontal_sharing .heateorSssFolkdSvg:hover,#heateor_sss_rearrange .heateorSssFolkdSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGoogleClassroomSvg:hover,.heateor_sss_horizontal_sharing .heateorSssGoogleClassroomSvg:hover,#heateor_sss_rearrange .heateorSssGoogleClassroomSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%202%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M22.667%2016.667a1.667%201.667%200%201%200%200-3.334%201.667%201.667%200%200%200%200%203.334zM22.333%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117zm-13-1.333a1.668%201.668%200%201%200-.002-3.336%201.668%201.668%200%200%200%20.002%203.336zM9.667%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117z%22%2F%3E%3Cpath%20d%3D%22M15.335%2015.333A2.332%202.332%200%201%200%2013%2013a2.333%202.333%200%200%200%202.335%202.333zm.332%201.334c-2.572%200-5.333%201.392-5.333%203.11v1.557H21v-1.556c0-1.72-2.762-3.11-5.333-3.11zm3%2010.666h8v2h-8v-2z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGoogleBookmarksSvg:hover,.heateor_sss_horizontal_sharing .heateorSssGoogleBookmarksSvg:hover,#heateor_sss_rearrange .heateorSssGoogleBookmarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGoogleGmailSvg:hover,.heateor_sss_horizontal_sharing .heateorSssGoogleGmailSvg:hover,#heateor_sss_rearrange .heateorSssGoogleGmailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssHackerNewsSvg:hover,.heateor_sss_horizontal_sharing .heateorSssHackerNewsSvg:hover,#heateor_sss_rearrange .heateorSssHackerNewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssHatenaSvg:hover,.heateor_sss_horizontal_sharing .heateorSssHatenaSvg:hover,#heateor_sss_rearrange .heateorSssHatenaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssInstapaperSvg:hover,.heateor_sss_horizontal_sharing .heateorSssInstapaperSvg:hover,#heateor_sss_rearrange .heateorSssInstapaperSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssJamespotSvg:hover,.heateor_sss_horizontal_sharing .heateorSssJamespotSvg:hover,#heateor_sss_rearrange .heateorSssJamespotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssKakaoSvg:hover,.heateor_sss_horizontal_sharing .heateorSssKakaoSvg:hover,#heateor_sss_rearrange .heateorSssKakaoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssKikSvg:hover,.heateor_sss_horizontal_sharing .heateorSssKikSvg:hover,#heateor_sss_rearrange .heateorSssKikSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M23.436%2020.74a2.511%202.511%200%200%200%20.109-5.019h-.11a2.516%202.516%200%200%200-2.507%202.515%202.509%202.509%200%200%200%202.508%202.508zm-7.946-3.09l2.89-2.89c.93-.93.93-2.434%200-3.363a2.374%202.374%200%200%200-3.362%200l-4.262%204.263V7.267A2.378%202.378%200%200%200%206%207.263V24.7a2.378%202.378%200%200%200%204.756.002v-2.316l1.335-1.335%203.76%205.07a2.378%202.378%200%200%200%203.866-2.771c-.016-.02-.03-.04-.047-.06l-4.177-5.638v-.002z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssKindleItSvg:hover,.heateor_sss_horizontal_sharing .heateorSssKindleItSvg:hover,#heateor_sss_rearrange .heateorSssKindleItSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssKnownSvg:hover,.heateor_sss_horizontal_sharing .heateorSssKnownSvg:hover,#heateor_sss_rearrange .heateorSssKnownSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssLineSvg:hover,.heateor_sss_horizontal_sharing .heateorSssLineSvg:hover,#heateor_sss_rearrange .heateorSssLineSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssLiveJournalSvg:hover,.heateor_sss_horizontal_sharing .heateorSssLiveJournalSvg:hover,#heateor_sss_rearrange .heateorSssLiveJournalSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMailRuSvg:hover,.heateor_sss_horizontal_sharing .heateorSssMailRuSvg:hover,#heateor_sss_rearrange .heateorSssMailRuSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMendeleySvg:hover,.heateor_sss_horizontal_sharing .heateorSssMendeleySvg:hover,#heateor_sss_rearrange .heateorSssMendeleySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMeneameSvg:hover,.heateor_sss_horizontal_sharing .heateorSssMeneameSvg:hover,#heateor_sss_rearrange .heateorSssMeneameSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMixiSvg:hover,.heateor_sss_horizontal_sharing .heateorSssMixiSvg:hover,#heateor_sss_rearrange .heateorSssMixiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMySpaceSvg:hover,.heateor_sss_horizontal_sharing .heateorSssMySpaceSvg:hover,#heateor_sss_rearrange .heateorSssMySpaceSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssNetvouzSvg:hover,.heateor_sss_horizontal_sharing .heateorSssNetvouzSvg:hover,#heateor_sss_rearrange .heateorSssNetvouzSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssOdnoklassnikiSvg:hover,.heateor_sss_horizontal_sharing .heateorSssOdnoklassnikiSvg:hover,#heateor_sss_rearrange .heateorSssOdnoklassnikiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssOutlookcomSvg:hover,.heateor_sss_horizontal_sharing .heateorSssOutlookcomSvg:hover,#heateor_sss_rearrange .heateorSssOutlookcomSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPapalySvg:hover,.heateor_sss_horizontal_sharing .heateorSssPapalySvg:hover,#heateor_sss_rearrange .heateorSssPapalySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2038%2038%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.744%208.217c1.112%200%202.296.519%203.106%201.329l.185.185c1.361%201.361%201.402%204.432.042%205.792l-3.103%202.787L16%2022.777l-4.974-4.467-3.103-2.787c-1.361-1.361-1.319-4.432.042-5.792l.185-.185c.81-.81%201.994-1.329%203.106-1.329.756%200%201.48.24%202.03.79L16%2012.291l2.714-3.284c.55-.55%201.274-.79%202.03-.79m0-2.921c-1.58%200-3.035.585-4.096%201.646l-.098.098-.088.107-.462.558-.462-.559-.088-.106-.098-.098c-1.061-1.061-2.516-1.646-4.096-1.646-1.871%200-3.804.816-5.172%202.184l-.185.185c-2.515%202.515-2.535%207.43-.042%209.924l.055.055.058.052%203.103%202.787%204.974%204.467L16%2026.704l1.952-1.753%204.974-4.467%203.103-2.787.058-.052.055-.055c2.494-2.494%202.473-7.409-.042-9.924l-.184-.186c-1.368-1.368-3.301-2.184-5.172-2.184z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPinboardSvg:hover,.heateor_sss_horizontal_sharing .heateorSssPinboardSvg:hover,#heateor_sss_rearrange .heateorSssPinboardSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPlurkSvg:hover,.heateor_sss_horizontal_sharing .heateorSssPlurkSvg:hover,#heateor_sss_rearrange .heateorSssPlurkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPocketSvg:hover,.heateor_sss_horizontal_sharing .heateorSssPocketSvg:hover,#heateor_sss_rearrange .heateorSssPocketSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%20-1%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPrintFriendlySvg:hover,.heateor_sss_horizontal_sharing .heateorSssPrintFriendlySvg:hover,#heateor_sss_rearrange .heateorSssPrintFriendlySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssProtopageSvg:hover,.heateor_sss_horizontal_sharing .heateorSssProtopageBookmarksSvg:hover,#heateor_sss_rearrange .heateorSssProtopageBookmarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssPushaSvg:hover,.heateor_sss_horizontal_sharing .heateorSssPushaSvg:hover,#heateor_sss_rearrange .heateorSssPushaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssQzoneSvg:hover,.heateor_sss_horizontal_sharing .heateorSssQzoneSvg:hover,#heateor_sss_rearrange .heateorSssQzoneSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssRediffMyPageSvg:hover,.heateor_sss_horizontal_sharing .heateorSssRediffMyPageSvg:hover,#heateor_sss_rearrange .heateorSssRediffMyPageSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssRefindSvg:hover,.heateor_sss_horizontal_sharing .heateorSssRefindSvg:hover,#heateor_sss_rearrange .heateorSssRefindSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%2021.256c-2.891%200-5.256-2.365-5.256-5.255%200-2.891%202.365-5.255%205.255-5.255%202.891%200%205.255%202.365%205.255%205.255.002%202.89-2.363%205.255-5.254%205.255z%22%2F%3E%3Cpath%20d%3D%22M20.664%2023.676A8.91%208.91%200%200%201%2016%2025c-4.95%200-9-4.05-9-9s4.05-9%209-9%209%204.05%209%209a8.912%208.912%200%200%201-1.302%204.628l2.293%201.991A11.908%2011.908%200%200%200%2028%2016c0-6.6-5.4-12-12-12S4%209.4%204%2016s5.4%2012%2012%2012c2.456%200%204.745-.75%206.652-2.029l-1.988-2.295z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssRenrenSvg:hover,.heateor_sss_horizontal_sharing .heateorSssRenrenSvg:hover,#heateor_sss_rearrange .heateorSssRenrenSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSinaWeiboSvg:hover,.heateor_sss_horizontal_sharing .heateorSssSinaWeiboSvg:hover,#heateor_sss_rearrange .heateorSssSinaWeiboSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSiteJotSvg:hover,.heateor_sss_horizontal_sharing .heateorSssSiteJotSvg:hover,#heateor_sss_rearrange .heateorSssSiteJotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSkypeSvg:hover,.heateor_sss_horizontal_sharing .heateorSssSkypeSvg:hover,#heateor_sss_rearrange .heateorSssSkypeSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.15%2018c-.007.04-.012.084-.02.126l-.04-.24.06.113c.124-.678.19-1.37.19-2.06%200-1.53-.3-3.013-.892-4.41a11.273%2011.273%200%200%200-2.43-3.602%2011.288%2011.288%200%200%200-8.012-3.32c-.72%200-1.443.068-2.146.203h-.005c.04.023.08.04.118.063l-.238-.037c.04-.01.08-.018.12-.026a6.717%206.717%200%200%200-3.146-.787%206.67%206.67%200%200%200-4.748%201.965A6.7%206.7%200%200%200%204%2010.738c0%201.14.293%202.262.844%203.253.007-.04.012-.08.02-.12l.04.238-.06-.114c-.112.643-.17%201.3-.17%201.954a11.285%2011.285%200%200%200%203.32%208.012c1.04%201.04%202.25%201.86%203.602%202.43%201.397.592%202.882.89%204.412.89.666%200%201.334-.06%201.985-.175-.038-.02-.077-.04-.116-.063l.242.04c-.046.01-.088.015-.13.02a6.68%206.68%200%200%200%203.3.87%206.661%206.661%200%200%200%204.743-1.963A6.666%206.666%200%200%200%2028%2021.26c0-1.145-.295-2.27-.85-3.264zm-11.098%204.885c-4.027%200-5.828-1.98-5.828-3.463%200-.76.562-1.294%201.336-1.294%201.723%200%201.277%202.474%204.49%202.474%201.647%200%202.556-.893%202.556-1.808%200-.55-.27-1.16-1.355-1.426l-3.58-.895c-2.88-.723-3.405-2.282-3.405-3.748%200-3.043%202.865-4.186%205.556-4.186%202.478%200%205.4%201.37%205.4%203.192%200%20.783-.677%201.237-1.45%201.237-1.472%200-1.2-2.035-4.163-2.035-1.47%200-2.285.666-2.285%201.618%200%20.95%201.16%201.254%202.17%201.484l2.65.587c2.905.647%203.64%202.342%203.64%203.94%200%202.47-1.895%204.318-5.726%204.318z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSMSSvg:hover,.heateor_sss_horizontal_sharing .heateorSssSMSSvg:hover,#heateor_sss_rearrange .heateorSssSMSSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-140%20-170%20770%20770%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cg%3E%3Cpath%20d%3D%22M87.412%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997c0-4.888-2.93-7.22-14.037-10.927%20c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.806-31.198c11.122%200%2021.078%202.526%2026.923%205.456%20l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803c0%204.485%203.707%206.832%2015.412%2010.927%20c18.133%206.234%2025.741%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809c-12.482%200-23.604-2.721-30.809-6.622%20L87.412%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M172.23%20166.856c0-11.884-0.389-22.034-0.777-30.42h24.964l1.36%2012.871h0.583c4.096-6.039%2012.482-15.008%2028.866-15.008%20c12.288%200%2022.034%206.233%2026.13%2016.174h0.389c3.513-4.873%207.803-8.775%2012.288-11.495c5.277-3.124%2011.122-4.679%2018.148-4.679%20c18.327%200%2032.184%2012.871%2032.184%2041.333v56.177h-28.866v-51.872c0-13.857-4.5-21.855-14.052-21.855%20c-6.817%200-11.705%204.679-13.648%2010.344c-0.777%202.138-1.166%205.262-1.166%207.609v55.773h-28.866v-53.441%20c0-12.093-4.29-20.285-13.663-20.285c-7.594%200-12.093%205.86-13.842%2010.733c-0.972%202.332-1.166%205.068-1.166%207.415v55.579H172.23%20V166.856z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M339.729%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997%20c0-4.888-2.93-7.22-14.037-10.927c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.807-31.198%20c11.122%200%2021.063%202.526%2026.922%205.456l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803%20c0%204.485%203.707%206.832%2015.412%2010.927c18.133%206.234%2025.742%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809%20c-12.482%200-23.604-2.721-30.809-6.622L339.729%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M383.947%20490L230.694%20364.252H50.713c-27.924%200-50.631-23.111-50.631-51.528V51.528C0.082%2023.111%2022.789%200%2050.713%200%20h388.574c27.924%200%2050.631%2023.111%2050.631%2051.528v261.197c0%2028.417-22.707%2051.528-50.631%2051.528h-55.34V490z%20M50.713%2030.615%20c-11.032%200-20.016%209.388-20.016%2020.913v261.197c0%2011.525%208.984%2020.913%2020.016%2020.913h190.923l111.696%2091.635v-91.635h85.954%20c11.032%200%2020.016-9.388%2020.016-20.913V51.528c0-11.525-8.984-20.913-20.016-20.913H50.713z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSlashdotSvg:hover,.heateor_sss_horizontal_sharing .heateorSssSlashdotSvg:hover,#heateor_sss_rearrange .heateorSssSlashdotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSvejoSvg:hover,.heateor_sss_horizontal_sharing .heateorSssSvejoSvg:hover,#heateor_sss_rearrange .heateorSssSvejoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssSymbalooFeedsSvg:hover,.heateor_sss_horizontal_sharing .heateorSssSymbalooFeedsSvg:hover,#heateor_sss_rearrange .heateorSssSymbalooFeedsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTelegramSvg:hover,.heateor_sss_horizontal_sharing .heateorSssTelegramSvg:hover,#heateor_sss_rearrange .heateorSssTelegramSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssThreemaSvg:hover,.heateor_sss_horizontal_sharing .heateorSssThreemaSvg:hover,#heateor_sss_rearrange .heateorSssThreemaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.4%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M24.067%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M17.733%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M16.082%208.716h-.262c-.886%200-1.507.682-1.507%201.568v2.015h3.372v-2.015c.001-.886-.718-1.568-1.603-1.568z%22%2F%3E%3Cpath%20d%3D%22M16%204.325c-6.075%200-11%203.752-11%208.381%200%201.924.851%203.697%202.283%205.111.49.484.607%201.231.283%201.839l-1.479%202.776%204.39-1.384a6.183%206.183%200%200%201%201.863-.284c.383%200%20.766.034%201.145.102.807.144%201.649.22%202.514.22%206.075%200%2011-3.752%2011-8.381S22.075%204.325%2016%204.325zm3.793%2012.432c0%20.368-.409.6-.777.6H12.85c-.368%200-.643-.231-.643-.6v-3.733c0-.368.275-.725.643-.725h.2v-2.015c0-1.585%201.187-2.832%202.771-2.832h.262c1.583%200%202.868%201.247%202.868%202.832v2.015h.066c.368%200%20.777.357.777.725v3.733z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTrelloSvg:hover,.heateor_sss_horizontal_sharing .heateorSssTrelloSvg:hover,#heateor_sss_rearrange .heateorSssTrelloSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.5%204h-21A1.5%201.5%200%200%200%204%205.5v21A1.5%201.5%200%200%200%205.5%2028h21a1.5%201.5%200%200%200%201.5-1.5v-21A1.5%201.5%200%200%200%2026.5%204zM14.44%2022.12c0%20.825-.675%201.5-1.5%201.5H8.62c-.825%200-1.5-.675-1.5-1.5V8.62c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v13.5zm10.44-6c0%20.825-.675%201.5-1.5%201.5h-4.32c-.825%200-1.5-.675-1.5-1.5v-7.5c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v7.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTuentiSvg:hover,.heateor_sss_horizontal_sharing .heateorSssTuentiSvg:hover,#heateor_sss_rearrange .heateorSssTuentiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTwiddlaSvg:hover,.heateor_sss_horizontal_sharing .heateorSssTwiddlaSvg:hover,#heateor_sss_rearrange .heateorSssTwiddlaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssViadeoSvg:hover,.heateor_sss_horizontal_sharing .heateorSssViadeoSvg:hover,#heateor_sss_rearrange .heateorSssViadeoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssViberSvg:hover,.heateor_sss_horizontal_sharing .heateorSssViberSvg:hover,#heateor_sss_rearrange .heateorSssViberSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M22.57%2027.22a7.39%207.39%200%200%201-1.14-.32%2029%2029%200%200%201-16-16.12c-1-2.55%200-4.7%202.66-5.58a2%202%200%200%201%201.39%200c1.12.41%203.94%204.3%204%205.46a2%202%200%200%201-1.16%201.78%202%202%200%200%200-.66%202.84A10.3%2010.3%200%200%200%2017%2020.55%201.67%201.67%200%200%200%2019.35%2020c1.07-1.62%202.38-1.54%203.82-.54.72.51%201.45%201%202.14%201.55.93.75%202.1%201.37%201.55%202.94A5.21%205.21%200%200%201%2022.57%2027.22Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M17.06%204.79A10.42%2010.42%200%200%201%2026.79%2015c0%20.51.18%201.27-.58%201.25s-.54-.78-.6-1.29c-.7-5.52-3.23-8.13-8.71-9-.45-.07-1.15%200-1.11-.57C15.84%204.52%2016.66%204.85%2017.06%204.79Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M24.09%2014.06c-.05.38.17%201-.45%201.13-.83.13-.67-.64-.75-1.13-.56-3.36-1.74-4.59-5.12-5.35-.5-.11-1.27%200-1.15-.8s.82-.48%201.35-.42A6.9%206.9%200%200%201%2024.09%2014.06Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M21.52%2013.45c0%20.43%200%20.87-.53.93s-.6-.26-.64-.64a2.47%202.47%200%200%200-2.26-2.43c-.42-.07-.82-.2-.63-.76.13-.38.47-.41.83-.42A3.66%203.66%200%200%201%2021.52%2013.45Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssTypePadPostSvg:hover,.heateor_sss_horizontal_sharing .heateorSssTypePadPostSvg:hover,#heateor_sss_rearrange .heateorSssTypePadPostSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssWebnewsSvg:hover,.heateor_sss_horizontal_sharing .heateorSssWebnewsSvg:hover,#heateor_sss_rearrange .heateorSssWebnewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssWordPressSvg:hover,.heateor_sss_horizontal_sharing .heateorSssWordPressSvg:hover,#heateor_sss_rearrange .heateorSssWordPressSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cg%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssWykopSvg:hover,.heateor_sss_horizontal_sharing .heateorSssWykopSvg:hover,#heateor_sss_rearrange .heateorSssWykopSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssYahooMailSvg:hover,.heateor_sss_horizontal_sharing .heateorSssYahooMailSvg:hover,#heateor_sss_rearrange .heateorSssYahooMailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssYoolinkSvg:hover,.heateor_sss_horizontal_sharing .heateorSssYoolinkSvg:hover,#heateor_sss_rearrange .heateorSssYoolinkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%3E%3C%2Fcircle%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssInstagramSvg:hover,.heateor_sss_horizontal_sharing .heateorSssInstagramSvg:hover, #heateor_sss_rearrange .heateorSssInstagramSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssStockTwitsSvg:hover,.heateor_sss_horizontal_sharing .heateorSssStockTwitsSvg:hover, #heateor_sss_rearrange .heateorSssStockTwitsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.328%2014.309l-1.793-.736c-1.303-.536-1.955-1.244-1.955-2.123%200-.637.249-1.166.746-1.587.498-.427%201.123-.642%201.878-.642.614%200%201.115.125%201.504.373.373.218.766.684%201.178%201.399l2.204-1.306c-1.166-2.024-2.788-3.037-4.863-3.037-1.539%200-2.828.459-3.866%201.376-1.039.909-1.559%202.039-1.559%203.391%200%202.005%201.232%203.528%203.698%204.569l1.738.722c.451.194.84.399%201.167.612.326.214.593.443.799.687.206.245.358.513.455.805.097.291.146.612.146.961%200%20.871-.28%201.59-.84%202.156-.56.568-1.263.851-2.111.851-1.073%200-1.889-.389-2.449-1.166-.311-.405-.529-1.135-.653-2.193L4%2020.028c.249%201.679.875%202.986%201.878%203.92%201.018.936%202.309%201.403%203.872%201.403%201.648%200%203.028-.544%204.139-1.634%201.102-1.082%201.653-2.451%201.653-4.109%200-1.237-.338-2.281-1.012-3.134-.676-.852-1.743-1.573-3.202-2.165zM28%207.023H17.037v2.571h4.14v15.425h2.695V9.594H28z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssYoutubeSvg:hover,.heateor_sss_horizontal_sharing .heateorSssYoutubeSvg:hover, #heateor_sss_rearrange .heateorSssYoutubeSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGentleReaderSvg:hover,.heateor_sss_horizontal_sharing .heateorSssGentleReaderSvg:hover, #heateor_sss_rearrange .heateorSssGentleReaderSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-80%20-80.014%201200.014%201200%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M819.664%2C291.684C572.661-7.32%2C155.656%2C203.683%2C169.656%2C527.687%20c38%2C489.007%2C727.009%2C448.006%2C683.009-28H562.661v98h177.002c-54.721%2C270.685-443.659%2C218.617-464.179-77.827%20c-0.48-6.934%2C1.493-36.96%2C3.053-44.641c44.28-217.95%2C300.377-317.791%2C467.126-110.535L819.664%2C291.684z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMixSvg:hover,.heateor_sss_horizontal_sharing .heateorSssMixSvg:hover, #heateor_sss_rearrange .heateorSssMixSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-7%20-8%2045%2045%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M27.87%204.125c-5.224%200-9.467%204.159-9.467%209.291v2.89c0-1.306%201.074-2.362%202.399-2.362s2.399%201.056%202.399%202.362v1.204c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V4.134c-.036-.009-.082-.009-.129-.009%22%2F%3E%3Cpath%20d%3D%22M4%204.125v12.94c2.566%200%204.668-1.973%204.807-4.465v-2.214c0-.065%200-.12.009-.176.093-1.213%201.13-2.177%202.39-2.177%201.325%200%202.399%201.056%202.399%202.362v9.226c0%201.306%201.074%202.353%202.399%202.353s2.399-1.056%202.399-2.353v-6.206c0-5.132%204.233-9.291%209.467-9.291H4z%22%2F%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M4%2017.074v8.438c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V12.61C8.659%2015.102%206.566%2017.074%204%2017.074%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssMeWeSvg:hover,.heateor_sss_horizontal_sharing .heateorSssMeWeSvg:hover, #heateor_sss_rearrange .heateorSssMeWeSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssFintelSvg:hover,.heateor_sss_horizontal_sharing .heateorSssFintelSvg:hover,#heateor_sss_rearrange .heateorSssFintelSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20version%3D%221.1%22%20style%3D%22shape-rendering%3AgeometricPrecision%3B%20text-rendering%3AgeometricPrecision%3B%20image-rendering%3AoptimizeQuality%3B%20fill-rule%3Aevenodd%3B%20clip-rule%3Aevenodd%22%0AviewBox%3D%22-110%20-120%20428%20494%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%3C!%5BCDATA%5B.fil0%20%7Bfill%3A%23fff%7D.fil1%20%7Bfill%3A%23fff%7D%5D%5D%3E%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22Layer_x0020_1%22%3E%3Cmetadata%20id%3D%22CorelCorpID_0Corel-Layer%22%2F%3E%3Cpolygon%20class%3D%22fil0%22%20points%3D%22108%2C274%2048%2C274%2048%2C152%200%2C152%200%2C95%2048%2C95%2048%2C0%20208%2C0%20208%2C56%20108%2C56%20108%2C95%20180%2C95%20180%2C151%20108%2C151%20%22%2F%3E%3Cpolygon%20class%3D%22fil1%22%20points%3D%2299%2C272%20103%2C272%20103%2C147%20175%2C147%20175%2C100%20103%2C100%20103%2C52%20203%2C52%20203%2C7%20199%2C7%20199%2C48%2098%2C48%2098%2C104%20171%2C104%20171%2C142%2099%2C142%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssParlerSvg:hover,.heateor_sss_horizontal_sharing .heateorSssParlerSvg:hover,#heateor_sss_rearrange .heateorSssParlerSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20height%3D%27100%25%27%20width%3D%27100%25%27%20viewBox%3D%27-24%20-30%20140%20160%27%3E%3Cg%20fill%3D%27%23fff%27%3E%3Cpath%20d%3D%27M58.34%2083.31h-25v-8.49c0-4.5%203.64-8.14%208.14-8.14h16.87c13.8%200%2025.02-11.19%2025.02-24.94%200-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0%207.45%207.45%200%2016.63%200h36.41l5.44.17C81.39.24%20100%2018.86%20100%2041.74c0%2022.92-18.69%2041.57-41.66%2041.57z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M16.65%20100C7.46%20100%20.02%2092.55.02%2083.37V49.49c0-8.92%207.23-16.16%2016.16-16.16h42.19a8.32%208.32%200%20010%2016.64h-33.5c-4.53%200-8.21%203.67-8.21%208.21V100z%27%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_standard_follow_icons_container .heateorSssGabSvg:hover,.heateor_sss_horizontal_sharing .heateorSssGabSvg:hover,#heateor_sss_rearrange .heateorSssGabSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-14.5%205.5%2046%2026%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.8%2C7.6h-2.4v0.7V9l-0.4-0.3C10.2%2C7.8%2C9%2C7.2%2C7.7%2C7.2c-0.2%2C0-0.4%2C0-0.4%2C0c-0.1%2C0-0.3%2C0-0.5%2C0%0Ac-5.6%2C0.3-8.7%2C7.2-5.4%2C12.1c2.3%2C3.4%2C7.1%2C4.1%2C9.7%2C1.5l0.3-0.3l0%2C0.7c0%2C1-0.1%2C1.5-0.4%2C2.2c-1%2C2.4-4.1%2C3-6.8%2C1.3%0Ac-0.2-0.1-0.4-0.2-0.4-0.2c-0.1%2C0.1-1.9%2C3.5-1.9%2C3.6c0%2C0.1%2C0.5%2C0.4%2C0.8%2C0.6c2.2%2C1.4%2C5.6%2C1.7%2C8.3%2C0.8c2.7-0.9%2C4.5-3.2%2C5-6.4%0Ac0.2-1.1%2C0.2-0.8%2C0.2-8.4l0-7.1H13.8z%20M9.7%2C17.6c-2.2%2C1.2-4.9-0.4-4.9-2.9C4.8%2C12.6%2C7%2C11%2C9%2C11.6C11.8%2C12.4%2C12.3%2C16.1%2C9.7%2C17.6z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}
 
admin/css/sassy-social-share-hover-svg-vertical.css DELETED
@@ -1 +0,0 @@
1
- .heateor_sss_floating_follow_icons_container .heateorSssYummlySvg:hover,.heateor_sss_vertical_sharing .heateorSssYummlySvg:hover,#heateor_sss_vertical_rearrange .heateorSssYummlySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBufferSvg:hover,.heateor_sss_vertical_sharing .heateorSssBufferSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBufferSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFacebookSvg:hover,.heateor_sss_vertical_sharing .heateorSssFacebookSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFacebookSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDiggSvg:hover,.heateor_sss_vertical_sharing .heateorSssDiggSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiggSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssEmailSvg:hover,.heateor_sss_vertical_sharing .heateorSssEmailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssEmailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFloatitSvg:hover,.heateor_sss_vertical_sharing .heateorSssFloatitSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFloatitSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssLinkedinSvg:hover,.heateor_sss_vertical_sharing .heateorSssLinkedinSvg:hover,#heateor_sss_vertical_rearrange .heateorSssLinkedinSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMoreSvg:hover,.heateor_sss_vertical_sharing .heateorSssMoreSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMoreSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPinterestSvg:hover,.heateor_sss_vertical_sharing .heateorSssPinterestSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPinterestSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPrintSvg:hover,.heateor_sss_vertical_sharing .heateorSssPrintSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPrintSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssRedditSvg:hover,.heateor_sss_vertical_sharing .heateorSssRedditSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRedditSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2039%2039%22%3E%3Cpath%20d%3D%22M28.543%2015.774a2.953%202.953%200%200%200-2.951-2.949%202.882%202.882%200%200%200-1.9.713%2014.075%2014.075%200%200%200-6.85-2.044l1.38-4.349%203.768.884a2.452%202.452%200%201%200%20.24-1.176l-4.274-1a.6.6%200%200%200-.709.4l-1.659%205.224a14.314%2014.314%200%200%200-7.316%202.029%202.908%202.908%200%200%200-1.872-.681%202.942%202.942%200%200%200-1.618%205.4%205.109%205.109%200%200%200-.062.765c0%204.158%205.037%207.541%2011.229%207.541s11.22-3.383%2011.22-7.541a5.2%205.2%200%200%200-.053-.706%202.963%202.963%200%200%200%201.427-2.51zm-18.008%201.88a1.753%201.753%200%200%201%201.73-1.74%201.73%201.73%200%200%201%201.709%201.74%201.709%201.709%200%200%201-1.709%201.711%201.733%201.733%200%200%201-1.73-1.711zm9.565%204.968a5.573%205.573%200%200%201-4.081%201.272h-.032a5.576%205.576%200%200%201-4.087-1.272.6.6%200%200%201%20.844-.854%204.5%204.5%200%200%200%203.238.927h.032a4.5%204.5%200%200%200%203.237-.927.6.6%200%201%201%20.844.854zm-.331-3.256a1.726%201.726%200%201%201%201.709-1.712%201.717%201.717%200%200%201-1.712%201.712z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTumblrSvg:hover,.heateor_sss_vertical_sharing .heateorSssTumblrSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTumblrSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTwitterSvg:hover,.heateor_sss_vertical_sharing .heateorSssTwitterSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTwitterSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2039%2039%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssVkontakteSvg:hover,.heateor_sss_vertical_sharing .heateorSssVkontakteSvg:hover,#heateor_sss_vertical_rearrange .heateorSssVkontakteSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-0.75%20-1.5%2034%2034%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssXingSvg:hover,.heateor_sss_vertical_sharing .heateorSssXingSvg:hover,#heateor_sss_vertical_rearrange .heateorSssXingSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssWhatsappSvg:hover,.heateor_sss_vertical_sharing .heateorSssWhatsappSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWhatsappSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5.5%20-4.5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssAIMSvg:hover,.heateor_sss_vertical_sharing .heateorSssAIMSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAIMSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssAmazonWishListSvg:hover,.heateor_sss_vertical_sharing .heateorSssAmazonWishListSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAmazonWishListSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssAOLMailSvg:hover,.heateor_sss_vertical_sharing .heateorSssAOLMailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAOLMailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssAppnetSvg:hover,.heateor_sss_vertical_sharing .heateorSssAppnetSvg:hover,#heateor_sss_vertical_rearrange .heateorSssAppnetSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBalatarinSvg:hover,.heateor_sss_vertical_sharing .heateorSssBalatarinSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBalatarinSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%2022h8v2h-8z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBibSonomySvg:hover,.heateor_sss_vertical_sharing .heateorSssBibSonomySvg:hover,#heateor_sss_vertical_rearrange .heateorSssBibSonomySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-7%20-7%2046%2046%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.058%2025.892c-.25%200-.484.065-.694.17l-5.907-8.2a1.548%201.548%200%200%200%20.344-1.68l4.28-2.573c.288.333.71.552%201.187.552.862%200%201.56-.7%201.56-1.56%200-.776-.567-1.415-1.31-1.535V6.11a1.556%201.556%200%200%200-.25-3.095c-.862%200-1.56.7-1.56%201.56%200%20.196.04.383.106.556l-4.256%202.477a1.548%201.548%200%200%200-1.2-.574c-.862%200-1.56.7-1.56%201.56%200%20.778.567%201.417%201.31%201.537v5.1c-.218.035-.42.112-.598.23L9.93%208.204c.213-.268.345-.6.345-.97a1.56%201.56%200%201%200-.712%201.309l6.575%207.25c-.213.267-.345.6-.345.968%200%20.23.054.45.144.647L8.08%2022.66a1.547%201.547%200%200%200-1.138-.5%201.56%201.56%200%201%200%201.56%201.56c0-.23-.053-.45-.144-.646l7.857-5.25c.07.076.147.144.23.204l-1.95%203.927a1.536%201.536%200%200%200-.457-.076c-.862%200-1.56.695-1.56%201.56a1.56%201.56%200%201%200%202.468-1.27l1.95-3.926c.146.045.297.076.458.076.25%200%20.484-.064.694-.17l5.907%208.2a1.56%201.56%200%201%200%201.103-.459zM18.914%208.59c0-.197-.04-.383-.106-.556l4.257-2.473c.236.29.567.49.95.55v4.96a1.558%201.558%200%200%200-1.197%202.115l-4.278%202.573a1.542%201.542%200%200%200-.935-.53v-5.102a1.555%201.555%200%200%200%201.31-1.534z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBittyBrowserSvg:hover,.heateor_sss_vertical_sharing .heateorSssBittyBrowserSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBittyBrowserSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBlinklistSvg:hover,.heateor_sss_vertical_sharing .heateorSssBlinklistSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBlinklistSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBloggerPostSvg:hover,.heateor_sss_vertical_sharing .heateorSssBloggerPostSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBloggerPostSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221.5%22%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBlogMarksSvg:hover,.heateor_sss_vertical_sharing .heateorSssBlogMarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBlogMarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBoxnetSvg:hover,.heateor_sss_vertical_sharing .heateorSssBoxnetSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBoxnetSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBookmarksfrSvg:hover,.heateor_sss_vertical_sharing .heateorSssBookmarksfrSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBookmarksfrSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssBuddyMarksSvg:hover,.heateor_sss_vertical_sharing .heateorSssBuddyMarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssBuddyMarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssCare2NewsSvg:hover,.heateor_sss_vertical_sharing .heateorSssCare2NewsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssCare2NewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssCommentSvg:hover,.heateor_sss_vertical_sharing .heateorSssCommentSvg:hover,#heateor_sss_vertical_rearrange .heateorSssCommentSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-150%20-150%20791%20791%22%3E%3Cg%3E%3Cpath%20d%3D%22M477.364%2C127.481c-22.839-28.072-53.864-50.248-93.072-66.522c-39.208-16.274-82.036-24.41-128.479-24.41%20c-46.442%2C0-89.269%2C8.136-128.478%2C24.41c-39.209%2C16.274-70.233%2C38.446-93.074%2C66.522C11.419%2C155.555%2C0%2C186.15%2C0%2C219.269%20c0%2C28.549%2C8.61%2C55.299%2C25.837%2C80.232c17.227%2C24.934%2C40.778%2C45.874%2C70.664%2C62.813c-2.096%2C7.611-4.57%2C14.842-7.426%2C21.7%20c-2.855%2C6.851-5.424%2C12.467-7.708%2C16.847c-2.286%2C4.374-5.376%2C9.23-9.281%2C14.555c-3.899%2C5.332-6.849%2C9.093-8.848%2C11.283%20c-1.997%2C2.19-5.28%2C5.801-9.851%2C10.848c-4.565%2C5.041-7.517%2C8.33-8.848%2C9.853c-0.193%2C0.097-0.953%2C0.948-2.285%2C2.574%20c-1.331%2C1.615-1.999%2C2.419-1.999%2C2.419l-1.713%2C2.57c-0.953%2C1.42-1.381%2C2.327-1.287%2C2.703c0.096%2C0.384-0.094%2C1.335-0.57%2C2.854%20c-0.477%2C1.526-0.428%2C2.669%2C0.142%2C3.429v0.287c0.762%2C3.234%2C2.283%2C5.853%2C4.567%2C7.851c2.284%2C1.992%2C4.858%2C2.991%2C7.71%2C2.991h1.429%20c12.375-1.526%2C23.223-3.613%2C32.548-6.279c49.87-12.751%2C93.649-35.782%2C131.334-69.094c14.274%2C1.523%2C28.074%2C2.283%2C41.396%2C2.283%20c46.442%2C0%2C89.271-8.135%2C128.479-24.414c39.208-16.276%2C70.233-38.444%2C93.072-66.517c22.843-28.072%2C34.263-58.67%2C34.263-91.789%20C511.626%2C186.154%2C500.207%2C155.555%2C477.364%2C127.481z%20M445.244%2C292.075c-19.896%2C22.456-46.733%2C40.303-80.517%2C53.529%20c-33.784%2C13.223-70.093%2C19.842-108.921%2C19.842c-11.609%2C0-23.98-0.76-37.113-2.286l-16.274-1.708l-12.277%2C10.852%20c-23.408%2C20.558-49.582%2C36.829-78.513%2C48.821c8.754-15.414%2C15.416-31.785%2C19.986-49.102l7.708-27.412l-24.838-14.27%20c-24.744-14.093-43.918-30.793-57.53-50.114c-13.61-19.315-20.412-39.638-20.412-60.954c0-26.077%2C9.945-50.343%2C29.834-72.803%20c19.895-22.458%2C46.729-40.303%2C80.515-53.531c33.786-13.229%2C70.089-19.849%2C108.92-19.849c38.828%2C0%2C75.13%2C6.617%2C108.914%2C19.845%20c33.783%2C13.229%2C60.62%2C31.073%2C80.517%2C53.531c19.89%2C22.46%2C29.834%2C46.727%2C29.834%2C72.802S465.133%2C269.615%2C445.244%2C292.075z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssCopyLinkSvg:hover,.heateor_sss_vertical_sharing .heateorSssCopyLinkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssCopyLinkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.412%2021.177c0-.36-.126-.665-.377-.917l-2.804-2.804a1.235%201.235%200%200%200-.913-.378c-.377%200-.7.144-.97.43.026.028.11.11.255.25.144.14.24.236.29.29s.117.14.2.256c.087.117.146.232.177.344.03.112.046.236.046.37%200%20.36-.126.666-.377.918a1.25%201.25%200%200%201-.918.377%201.4%201.4%200%200%201-.373-.047%201.062%201.062%200%200%201-.345-.175%202.268%202.268%200%200%201-.256-.2%206.815%206.815%200%200%201-.29-.29c-.14-.142-.223-.23-.25-.254-.297.28-.445.607-.445.984%200%20.36.126.664.377.916l2.778%202.79c.243.243.548.364.917.364.36%200%20.665-.118.917-.35l1.982-1.97c.252-.25.378-.55.378-.9zm-9.477-9.504c0-.36-.126-.665-.377-.917l-2.777-2.79a1.235%201.235%200%200%200-.913-.378c-.35%200-.656.12-.917.364L7.967%209.92c-.254.252-.38.553-.38.903%200%20.36.126.665.38.917l2.802%202.804c.242.243.547.364.916.364.377%200%20.7-.14.97-.418-.026-.027-.11-.11-.255-.25s-.24-.235-.29-.29a2.675%202.675%200%200%201-.2-.255%201.052%201.052%200%200%201-.176-.344%201.396%201.396%200%200%201-.047-.37c0-.36.126-.662.377-.914.252-.252.557-.377.917-.377.136%200%20.26.015.37.046.114.03.23.09.346.175.117.085.202.153.256.2.054.05.15.148.29.29.14.146.222.23.25.258.294-.278.442-.606.442-.983zM27%2021.177c0%201.078-.382%201.99-1.146%202.736l-1.982%201.968c-.745.75-1.658%201.12-2.736%201.12-1.087%200-2.004-.38-2.75-1.143l-2.777-2.79c-.75-.747-1.12-1.66-1.12-2.737%200-1.106.392-2.046%201.183-2.818l-1.186-1.185c-.774.79-1.708%201.186-2.805%201.186-1.078%200-1.995-.376-2.75-1.13l-2.803-2.81C5.377%2012.82%205%2011.903%205%2010.826c0-1.08.382-1.993%201.146-2.738L8.128%206.12C8.873%205.372%209.785%205%2010.864%205c1.087%200%202.004.382%202.75%201.146l2.777%202.79c.75.747%201.12%201.66%201.12%202.737%200%201.105-.392%202.045-1.183%202.817l1.186%201.186c.774-.79%201.708-1.186%202.805-1.186%201.078%200%201.995.377%202.75%201.132l2.804%202.804c.754.755%201.13%201.672%201.13%202.75z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDiaryRuSvg:hover,.heateor_sss_vertical_sharing .heateorSssDiaryRuSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiaryRuSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDiasporaSvg:hover,.heateor_sss_vertical_sharing .heateorSssDiasporaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiasporaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-1%2034%2034%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.44l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDiigoSvg:hover,.heateor_sss_vertical_sharing .heateorSssDiigoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDiigoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDraugiemSvg:hover,.heateor_sss_vertical_sharing .heateorSssDraugiemSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDraugiemSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.55%2011.33c4.656.062%207.374%202.92%204.294%206.828-1.415%201.798-3.812%203.575-7.003%204.725-.15.056-.303.105-.46.16-.3.098-.595.188-.89.28a24.866%2024.866%200%200%201-4.05.814c-.464.043-.91.078-1.35.085-2.97.077-5.205-.74-5.93-2.474-.88-2.077.9-4.976%204.454-7.178-2.627%201.06-7.408%203.546-7.61%207.12v.454c.02.362.09.725.21%201.108.76%202.41%204.333%203.533%208.884%203.13.446-.036.892-.092%201.352-.16.66-.1%201.337-.23%202.027-.39a35.76%2035.76%200%200%200%202.02-.558c.154-.056.3-.098.454-.153.31-.094.608-.2.9-.31%203.945-1.436%206.87-3.34%208.58-5.526.975-1.253%201.476-2.424%201.574-3.448v-.787c-.28-2.61-3.317-4.135-7.45-3.717zm-3.024-1.29c.11%200%20.21-.014.307-.035.662-.167.983-.87%201.01-1.7.028-.885-.286-1.624-1.01-1.728-.063-.014-.125-.014-.195-.014-.578%200-.955.348-1.157.857-.094.265-.16.564-.163.885-.014.383.034.745.167%201.038.196.418.53.697%201.046.697zm-.014.292c-.293%200-.544.028-.76.084l.063.084.11.202.092.21.077.215.056.223.035.223.02.23.008.223v.237l-.014.23-.018.23-.028.23-.028.23-.043.23-.042.23-.04.223-.056.223-.042.212-.056.21-.057.2-.057.196-.042.19-.04.18-.02.11-.03.125-.028.132-.02.14-.03.152-.02.124v.03l-.028.166-.056.21-.02.172-.03.18-.02.182-.03.18-.02.19-.03.18-.02.188-.02.188-.02.19v.007c.04.537.082.997.103%201.26.02.3.085.517.18.663.14.215.378.292.706.32.28-.028.487-.084.647-.23.153-.14.237-.376.3-.753.118-.774.467-3.31.767-4.397.425-1.568%201.456-4.418-1.066-4.634-.122-.024-.226-.024-.338-.024zm-3.06-.8h.015c.976-.008%201.436-.9%201.436-1.994s-.46-1.993-1.436-2h-.014c-.99%200-1.45.9-1.45%202s.46%201.993%201.45%201.993zm-2.013%204.626c.09.383.18.732.254%201.052.307%201.254.606%204.16.718%205.038.105.885.418%201.073%201.052%201.136.62-.063.94-.25%201.045-1.136.105-.878.41-3.79.71-5.038.08-.314.175-.67.266-1.052.28-1.15.502-2.495%200-3.366-.32-.557-.94-.92-2.02-.92-1.088%200-1.708.37-2.03.92-.5.864-.27%202.216%200%203.366zm-1.35-4.153c.1.02.196.035.308.035.516%200%20.857-.28%201.045-.704.118-.293.174-.655.167-1.038a2.96%202.96%200%200%200-.167-.885c-.202-.51-.585-.857-1.157-.857-.07%200-.134%200-.197.014-.725.105-1.045.843-1.01%201.728.02.836.35%201.54%201.01%201.707zm-.3%209.373c.057.376.154.606.3.753.16.157.37.206.65.23.33-.024.557-.1.704-.32.09-.14.153-.36.18-.66.022-.264.064-.72.106-1.253v-.014l-.02-.187-.02-.188-.03-.188-.02-.18-.02-.19-.03-.18-.02-.18-.03-.183-.025-.174-.02-.166-.03-.167v-.02l-.02-.133-.028-.153-.028-.14-.024-.13-.028-.125-.03-.11-.034-.184-.056-.188-.04-.196-.058-.203-.056-.21-.056-.215-.04-.223-.057-.225-.04-.23-.033-.23-.028-.23-.03-.23-.02-.23-.008-.237v-.23l.007-.223.02-.23.034-.223.056-.222.07-.216.1-.21.11-.2.065-.085a3.128%203.128%200%200%200-.76-.083c-.11%200-.216%200-.32.014-2.524.216-1.492%203.066-1.067%204.634.262%201.054.603%203.59.728%204.364z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssDoubanSvg:hover,.heateor_sss_vertical_sharing .heateorSssDoubanSvg:hover,#heateor_sss_vertical_rearrange .heateorSssDoubanSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M5.755%205.505h20.55v2.59H5.755v-2.59zm14.99%2018.47l1.93-4.29h2.21v-9.97h-18v9.98h2.04l1.93%204.29h-5.78v2.51h21.85v-2.51l-6.18-.01zm-10.74-6.95v-4.88h11.68v4.88h-11.68zm7.99%206.95h-4.37l-1.93-4.29h8.24l-1.94%204.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssEvernoteSvg:hover,.heateor_sss_vertical_sharing .heateorSssEvernoteSvg:hover,#heateor_sss_vertical_rearrange .heateorSssEvernoteSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFacebookMessengerSvg:hover,.heateor_sss_vertical_sharing .heateorSssFacebookMessengerSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFacebookMessengerSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%205C9.986%205%205.11%209.56%205.11%2015.182c0%203.2%201.58%206.054%204.046%207.92V27l3.716-2.06c.99.276%202.04.425%203.128.425%206.014%200%2010.89-4.56%2010.89-10.183S22.013%205%2016%205zm1.147%2013.655L14.33%2015.73l-5.423%203%205.946-6.31%202.816%202.925%205.42-3-5.946%206.31z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFarkSvg:hover,.heateor_sss_vertical_sharing .heateorSssFarkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFarkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFlipboardSvg:hover,.heateor_sss_vertical_sharing .heateorSssFlipboardSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFlipboardSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19%2019H7V7h12v12z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25%2013H7V7h18v6z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2025H7V7h6v18z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFolkdSvg:hover,.heateor_sss_vertical_sharing .heateorSssFolkdSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFolkdSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGoogleClassroomSvg:hover,.heateor_sss_vertical_sharing .heateorSssGoogleClassroomSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGoogleClassroomSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%202%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M22.667%2016.667a1.667%201.667%200%201%200%200-3.334%201.667%201.667%200%200%200%200%203.334zM22.333%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117zm-13-1.333a1.668%201.668%200%201%200-.002-3.336%201.668%201.668%200%200%200%20.002%203.336zM9.667%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117z%22%2F%3E%3Cpath%20d%3D%22M15.335%2015.333A2.332%202.332%200%201%200%2013%2013a2.333%202.333%200%200%200%202.335%202.333zm.332%201.334c-2.572%200-5.333%201.392-5.333%203.11v1.557H21v-1.556c0-1.72-2.762-3.11-5.333-3.11zm3%2010.666h8v2h-8v-2z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGoogleBookmarksSvg:hover,.heateor_sss_vertical_sharing .heateorSssGoogleBookmarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGoogleBookmarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGoogleGmailSvg:hover,.heateor_sss_vertical_sharing .heateorSssGoogleGmailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGoogleGmailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssHackerNewsSvg:hover,.heateor_sss_vertical_sharing .heateorSssHackerNewsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssHackerNewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssHatenaSvg:hover,.heateor_sss_vertical_sharing .heateorSssHatenaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssHatenaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssInstapaperSvg:hover,.heateor_sss_vertical_sharing .heateorSssInstapaperSvg:hover,#heateor_sss_vertical_rearrange .heateorSssInstapaperSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssJamespotSvg:hover,.heateor_sss_vertical_sharing .heateorSssJamespotSvg:hover,#heateor_sss_vertical_rearrange .heateorSssJamespotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssKakaoSvg:hover,.heateor_sss_vertical_sharing .heateorSssKakaoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKakaoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssKikSvg:hover,.heateor_sss_vertical_sharing .heateorSssKikSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKikSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M23.436%2020.74a2.511%202.511%200%200%200%20.109-5.019h-.11a2.516%202.516%200%200%200-2.507%202.515%202.509%202.509%200%200%200%202.508%202.508zm-7.946-3.09l2.89-2.89c.93-.93.93-2.434%200-3.363a2.374%202.374%200%200%200-3.362%200l-4.262%204.263V7.267A2.378%202.378%200%200%200%206%207.263V24.7a2.378%202.378%200%200%200%204.756.002v-2.316l1.335-1.335%203.76%205.07a2.378%202.378%200%200%200%203.866-2.771c-.016-.02-.03-.04-.047-.06l-4.177-5.638v-.002z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssKindleItSvg:hover,.heateor_sss_vertical_sharing .heateorSssKindleItSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKindleItSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssKnownSvg:hover,.heateor_sss_vertical_sharing .heateorSssKnownSvg:hover,#heateor_sss_vertical_rearrange .heateorSssKnownSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssLineSvg:hover,.heateor_sss_vertical_sharing .heateorSssLineSvg:hover,#heateor_sss_vertical_rearrange .heateorSssLineSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssLiveJournalSvg:hover,.heateor_sss_vertical_sharing .heateorSssLiveJournalSvg:hover,#heateor_sss_vertical_rearrange .heateorSssLiveJournalSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMailRuSvg:hover,.heateor_sss_vertical_sharing .heateorSssMailRuSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMailRuSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMendeleySvg:hover,.heateor_sss_vertical_sharing .heateorSssMendeleySvg:hover,#heateor_sss_vertical_rearrange .heateorSssMendeleySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMeneameSvg:hover,.heateor_sss_vertical_sharing .heateorSssMeneameSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMeneameSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMixiSvg:hover,.heateor_sss_vertical_sharing .heateorSssMixiSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMixiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMySpaceSvg:hover,.heateor_sss_vertical_sharing .heateorSssMySpaceSvg:hover,#heateor_sss_vertical_rearrange .heateorSssMySpaceSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssNetvouzSvg:hover,.heateor_sss_vertical_sharing .heateorSssNetvouzSvg:hover,#heateor_sss_vertical_rearrange .heateorSssNetvouzSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssOdnoklassnikiSvg:hover,.heateor_sss_vertical_sharing .heateorSssOdnoklassnikiSvg:hover,#heateor_sss_vertical_rearrange .heateorSssOdnoklassnikiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssOutlookcomSvg:hover,.heateor_sss_vertical_sharing .heateorSssOutlookcomSvg:hover,#heateor_sss_vertical_rearrange .heateorSssOutlookcomSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%3E%3C%2Fpath%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPapalySvg:hover,.heateor_sss_vertical_sharing .heateorSssPapalySvg:hover,#heateor_sss_vertical_rearrange .heateorSssPapalySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2038%2038%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.744%208.217c1.112%200%202.296.519%203.106%201.329l.185.185c1.361%201.361%201.402%204.432.042%205.792l-3.103%202.787L16%2022.777l-4.974-4.467-3.103-2.787c-1.361-1.361-1.319-4.432.042-5.792l.185-.185c.81-.81%201.994-1.329%203.106-1.329.756%200%201.48.24%202.03.79L16%2012.291l2.714-3.284c.55-.55%201.274-.79%202.03-.79m0-2.921c-1.58%200-3.035.585-4.096%201.646l-.098.098-.088.107-.462.558-.462-.559-.088-.106-.098-.098c-1.061-1.061-2.516-1.646-4.096-1.646-1.871%200-3.804.816-5.172%202.184l-.185.185c-2.515%202.515-2.535%207.43-.042%209.924l.055.055.058.052%203.103%202.787%204.974%204.467L16%2026.704l1.952-1.753%204.974-4.467%203.103-2.787.058-.052.055-.055c2.494-2.494%202.473-7.409-.042-9.924l-.184-.186c-1.368-1.368-3.301-2.184-5.172-2.184z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPinboardSvg:hover,.heateor_sss_vertical_sharing .heateorSssPinboardSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPinboardSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPlurkSvg:hover,.heateor_sss_vertical_sharing .heateorSssPlurkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPlurkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPocketSvg:hover,.heateor_sss_vertical_sharing .heateorSssPocketSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPocketSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%20-1%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPrintFriendlySvg:hover,.heateor_sss_vertical_sharing .heateorSssPrintFriendlySvg:hover,#heateor_sss_vertical_rearrange .heateorSssPrintFriendlySvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssProtopageSvg:hover,.heateor_sss_vertical_sharing .heateorSssProtopageBookmarksSvg:hover,#heateor_sss_vertical_rearrange .heateorSssProtopageBookmarksSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssPushaSvg:hover,.heateor_sss_vertical_sharing .heateorSssPushaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssPushaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssQzoneSvg:hover,.heateor_sss_vertical_sharing .heateorSssQzoneSvg:hover,#heateor_sss_vertical_rearrange .heateorSssQzoneSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssRediffMyPageSvg:hover,.heateor_sss_vertical_sharing .heateorSssRediffMyPageSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRediffMyPageSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssRefindSvg:hover,.heateor_sss_vertical_sharing .heateorSssRefindSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRefindSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%2021.256c-2.891%200-5.256-2.365-5.256-5.255%200-2.891%202.365-5.255%205.255-5.255%202.891%200%205.255%202.365%205.255%205.255.002%202.89-2.363%205.255-5.254%205.255z%22%2F%3E%3Cpath%20d%3D%22M20.664%2023.676A8.91%208.91%200%200%201%2016%2025c-4.95%200-9-4.05-9-9s4.05-9%209-9%209%204.05%209%209a8.912%208.912%200%200%201-1.302%204.628l2.293%201.991A11.908%2011.908%200%200%200%2028%2016c0-6.6-5.4-12-12-12S4%209.4%204%2016s5.4%2012%2012%2012c2.456%200%204.745-.75%206.652-2.029l-1.988-2.295z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssRenrenSvg:hover,.heateor_sss_vertical_sharing .heateorSssRenrenSvg:hover,#heateor_sss_vertical_rearrange .heateorSssRenrenSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSinaWeiboSvg:hover,.heateor_sss_vertical_sharing .heateorSssSinaWeiboSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSinaWeiboSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSiteJotSvg:hover,.heateor_sss_vertical_sharing .heateorSssSiteJotSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSiteJotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSkypeSvg:hover,.heateor_sss_vertical_sharing .heateorSssSkypeSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSkypeSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.15%2018c-.007.04-.012.084-.02.126l-.04-.24.06.113c.124-.678.19-1.37.19-2.06%200-1.53-.3-3.013-.892-4.41a11.273%2011.273%200%200%200-2.43-3.602%2011.288%2011.288%200%200%200-8.012-3.32c-.72%200-1.443.068-2.146.203h-.005c.04.023.08.04.118.063l-.238-.037c.04-.01.08-.018.12-.026a6.717%206.717%200%200%200-3.146-.787%206.67%206.67%200%200%200-4.748%201.965A6.7%206.7%200%200%200%204%2010.738c0%201.14.293%202.262.844%203.253.007-.04.012-.08.02-.12l.04.238-.06-.114c-.112.643-.17%201.3-.17%201.954a11.285%2011.285%200%200%200%203.32%208.012c1.04%201.04%202.25%201.86%203.602%202.43%201.397.592%202.882.89%204.412.89.666%200%201.334-.06%201.985-.175-.038-.02-.077-.04-.116-.063l.242.04c-.046.01-.088.015-.13.02a6.68%206.68%200%200%200%203.3.87%206.661%206.661%200%200%200%204.743-1.963A6.666%206.666%200%200%200%2028%2021.26c0-1.145-.295-2.27-.85-3.264zm-11.098%204.885c-4.027%200-5.828-1.98-5.828-3.463%200-.76.562-1.294%201.336-1.294%201.723%200%201.277%202.474%204.49%202.474%201.647%200%202.556-.893%202.556-1.808%200-.55-.27-1.16-1.355-1.426l-3.58-.895c-2.88-.723-3.405-2.282-3.405-3.748%200-3.043%202.865-4.186%205.556-4.186%202.478%200%205.4%201.37%205.4%203.192%200%20.783-.677%201.237-1.45%201.237-1.472%200-1.2-2.035-4.163-2.035-1.47%200-2.285.666-2.285%201.618%200%20.95%201.16%201.254%202.17%201.484l2.65.587c2.905.647%203.64%202.342%203.64%203.94%200%202.47-1.895%204.318-5.726%204.318z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSMSSvg:hover,.heateor_sss_vertical_sharing .heateorSssSMSSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSMSSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-140%20-170%20770%20770%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cg%3E%3Cpath%20d%3D%22M87.412%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997c0-4.888-2.93-7.22-14.037-10.927%20c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.806-31.198c11.122%200%2021.078%202.526%2026.923%205.456%20l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803c0%204.485%203.707%206.832%2015.412%2010.927%20c18.133%206.234%2025.741%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809c-12.482%200-23.604-2.721-30.809-6.622%20L87.412%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M172.23%20166.856c0-11.884-0.389-22.034-0.777-30.42h24.964l1.36%2012.871h0.583c4.096-6.039%2012.482-15.008%2028.866-15.008%20c12.288%200%2022.034%206.233%2026.13%2016.174h0.389c3.513-4.873%207.803-8.775%2012.288-11.495c5.277-3.124%2011.122-4.679%2018.148-4.679%20c18.327%200%2032.184%2012.871%2032.184%2041.333v56.177h-28.866v-51.872c0-13.857-4.5-21.855-14.052-21.855%20c-6.817%200-11.705%204.679-13.648%2010.344c-0.777%202.138-1.166%205.262-1.166%207.609v55.773h-28.866v-53.441%20c0-12.093-4.29-20.285-13.663-20.285c-7.594%200-12.093%205.86-13.842%2010.733c-0.972%202.332-1.166%205.068-1.166%207.415v55.579H172.23%20V166.856z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M339.729%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997%20c0-4.888-2.93-7.22-14.037-10.927c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.807-31.198%20c11.122%200%2021.063%202.526%2026.922%205.456l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803%20c0%204.485%203.707%206.832%2015.412%2010.927c18.133%206.234%2025.742%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809%20c-12.482%200-23.604-2.721-30.809-6.622L339.729%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M383.947%20490L230.694%20364.252H50.713c-27.924%200-50.631-23.111-50.631-51.528V51.528C0.082%2023.111%2022.789%200%2050.713%200%20h388.574c27.924%200%2050.631%2023.111%2050.631%2051.528v261.197c0%2028.417-22.707%2051.528-50.631%2051.528h-55.34V490z%20M50.713%2030.615%20c-11.032%200-20.016%209.388-20.016%2020.913v261.197c0%2011.525%208.984%2020.913%2020.016%2020.913h190.923l111.696%2091.635v-91.635h85.954%20c11.032%200%2020.016-9.388%2020.016-20.913V51.528c0-11.525-8.984-20.913-20.016-20.913H50.713z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSlashdotSvg:hover,.heateor_sss_vertical_sharing .heateorSssSlashdotSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSlashdotSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSvejoSvg:hover,.heateor_sss_vertical_sharing .heateorSssSvejoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSvejoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssSymbalooFeedsSvg:hover,.heateor_sss_vertical_sharing .heateorSssSymbalooFeedsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssSymbalooFeedsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTelegramSvg:hover,.heateor_sss_vertical_sharing .heateorSssTelegramSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTelegramSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssThreemaSvg:hover,.heateor_sss_vertical_sharing .heateorSssThreemaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssThreemaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.4%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M24.067%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M17.733%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M16.082%208.716h-.262c-.886%200-1.507.682-1.507%201.568v2.015h3.372v-2.015c.001-.886-.718-1.568-1.603-1.568z%22%2F%3E%3Cpath%20d%3D%22M16%204.325c-6.075%200-11%203.752-11%208.381%200%201.924.851%203.697%202.283%205.111.49.484.607%201.231.283%201.839l-1.479%202.776%204.39-1.384a6.183%206.183%200%200%201%201.863-.284c.383%200%20.766.034%201.145.102.807.144%201.649.22%202.514.22%206.075%200%2011-3.752%2011-8.381S22.075%204.325%2016%204.325zm3.793%2012.432c0%20.368-.409.6-.777.6H12.85c-.368%200-.643-.231-.643-.6v-3.733c0-.368.275-.725.643-.725h.2v-2.015c0-1.585%201.187-2.832%202.771-2.832h.262c1.583%200%202.868%201.247%202.868%202.832v2.015h.066c.368%200%20.777.357.777.725v3.733z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTrelloSvg:hover,.heateor_sss_vertical_sharing .heateorSssTrelloSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTrelloSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.5%204h-21A1.5%201.5%200%200%200%204%205.5v21A1.5%201.5%200%200%200%205.5%2028h21a1.5%201.5%200%200%200%201.5-1.5v-21A1.5%201.5%200%200%200%2026.5%204zM14.44%2022.12c0%20.825-.675%201.5-1.5%201.5H8.62c-.825%200-1.5-.675-1.5-1.5V8.62c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v13.5zm10.44-6c0%20.825-.675%201.5-1.5%201.5h-4.32c-.825%200-1.5-.675-1.5-1.5v-7.5c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v7.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTuentiSvg:hover,.heateor_sss_vertical_sharing .heateorSssTuentiSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTuentiSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTwiddlaSvg:hover,.heateor_sss_vertical_sharing .heateorSssTwiddlaSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTwiddlaSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssViadeoSvg:hover,.heateor_sss_vertical_sharing .heateorSssViadeoSvg:hover,#heateor_sss_vertical_rearrange .heateorSssViadeoSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssViberSvg:hover,.heateor_sss_vertical_sharing .heateorSssViberSvg:hover,#heateor_sss_vertical_rearrange .heateorSssViberSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M22.57%2027.22a7.39%207.39%200%200%201-1.14-.32%2029%2029%200%200%201-16-16.12c-1-2.55%200-4.7%202.66-5.58a2%202%200%200%201%201.39%200c1.12.41%203.94%204.3%204%205.46a2%202%200%200%201-1.16%201.78%202%202%200%200%200-.66%202.84A10.3%2010.3%200%200%200%2017%2020.55%201.67%201.67%200%200%200%2019.35%2020c1.07-1.62%202.38-1.54%203.82-.54.72.51%201.45%201%202.14%201.55.93.75%202.1%201.37%201.55%202.94A5.21%205.21%200%200%201%2022.57%2027.22Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M17.06%204.79A10.42%2010.42%200%200%201%2026.79%2015c0%20.51.18%201.27-.58%201.25s-.54-.78-.6-1.29c-.7-5.52-3.23-8.13-8.71-9-.45-.07-1.15%200-1.11-.57C15.84%204.52%2016.66%204.85%2017.06%204.79Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M24.09%2014.06c-.05.38.17%201-.45%201.13-.83.13-.67-.64-.75-1.13-.56-3.36-1.74-4.59-5.12-5.35-.5-.11-1.27%200-1.15-.8s.82-.48%201.35-.42A6.9%206.9%200%200%201%2024.09%2014.06Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M21.52%2013.45c0%20.43%200%20.87-.53.93s-.6-.26-.64-.64a2.47%202.47%200%200%200-2.26-2.43c-.42-.07-.82-.2-.63-.76.13-.38.47-.41.83-.42A3.66%203.66%200%200%201%2021.52%2013.45Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssTypePadPostSvg:hover,.heateor_sss_vertical_sharing .heateorSssTypePadPostSvg:hover,#heateor_sss_vertical_rearrange .heateorSssTypePadPostSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssWebnewsSvg:hover,.heateor_sss_vertical_sharing .heateorSssWebnewsSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWebnewsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssWordPressSvg:hover,.heateor_sss_vertical_sharing .heateorSssWordPressSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWordPressSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fcircle%3E%3Cg%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%20stroke%3D%22%23fff%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssWykopSvg:hover,.heateor_sss_vertical_sharing .heateorSssWykopSvg:hover,#heateor_sss_vertical_rearrange .heateorSssWykopSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssYahooMailSvg:hover,.heateor_sss_vertical_sharing .heateorSssYahooMailSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYahooMailSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssYoolinkSvg:hover,.heateor_sss_vertical_sharing .heateorSssYoolinkSvg:hover,#heateor_sss_vertical_rearrange .heateorSssYoolinkSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%3E%3C%2Fcircle%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssInstagramSvg:hover,.heateor_sss_vertical_sharing .heateorSssInstagramSvg:hover, #heateor_sss_vertical_rearrange .heateorSssInstagramSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssStockTwitsSvg:hover,.heateor_sss_vertical_sharing .heateorSssStockTwitsSvg:hover, #heateor_sss_vertical_rearrange .heateorSssStockTwitsSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.328%2014.309l-1.793-.736c-1.303-.536-1.955-1.244-1.955-2.123%200-.637.249-1.166.746-1.587.498-.427%201.123-.642%201.878-.642.614%200%201.115.125%201.504.373.373.218.766.684%201.178%201.399l2.204-1.306c-1.166-2.024-2.788-3.037-4.863-3.037-1.539%200-2.828.459-3.866%201.376-1.039.909-1.559%202.039-1.559%203.391%200%202.005%201.232%203.528%203.698%204.569l1.738.722c.451.194.84.399%201.167.612.326.214.593.443.799.687.206.245.358.513.455.805.097.291.146.612.146.961%200%20.871-.28%201.59-.84%202.156-.56.568-1.263.851-2.111.851-1.073%200-1.889-.389-2.449-1.166-.311-.405-.529-1.135-.653-2.193L4%2020.028c.249%201.679.875%202.986%201.878%203.92%201.018.936%202.309%201.403%203.872%201.403%201.648%200%203.028-.544%204.139-1.634%201.102-1.082%201.653-2.451%201.653-4.109%200-1.237-.338-2.281-1.012-3.134-.676-.852-1.743-1.573-3.202-2.165zM28%207.023H17.037v2.571h4.14v15.425h2.695V9.594H28z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssYoutubeSvg:hover,.heateor_sss_vertical_sharing .heateorSssYoutubeSvg:hover, #heateor_sss_vertical_rearrange .heateorSssYoutubeSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGentleReaderSvg:hover,.heateor_sss_vertical_sharing .heateorSssGentleReaderSvg:hover, #heateor_sss_vertical_rearrange .heateorSssGentleReaderSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-80%20-80.014%201200.014%201200%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M819.664%2C291.684C572.661-7.32%2C155.656%2C203.683%2C169.656%2C527.687%20c38%2C489.007%2C727.009%2C448.006%2C683.009-28H562.661v98h177.002c-54.721%2C270.685-443.659%2C218.617-464.179-77.827%20c-0.48-6.934%2C1.493-36.96%2C3.053-44.641c44.28-217.95%2C300.377-317.791%2C467.126-110.535L819.664%2C291.684z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMixSvg:hover,.heateor_sss_vertical_sharing .heateorSssMixSvg:hover, #heateor_sss_vertical_rearrange .heateorSssMixSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-7%20-8%2045%2045%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M27.87%204.125c-5.224%200-9.467%204.159-9.467%209.291v2.89c0-1.306%201.074-2.362%202.399-2.362s2.399%201.056%202.399%202.362v1.204c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V4.134c-.036-.009-.082-.009-.129-.009%22%2F%3E%3Cpath%20d%3D%22M4%204.125v12.94c2.566%200%204.668-1.973%204.807-4.465v-2.214c0-.065%200-.12.009-.176.093-1.213%201.13-2.177%202.39-2.177%201.325%200%202.399%201.056%202.399%202.362v9.226c0%201.306%201.074%202.353%202.399%202.353s2.399-1.056%202.399-2.353v-6.206c0-5.132%204.233-9.291%209.467-9.291H4z%22%2F%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M4%2017.074v8.438c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V12.61C8.659%2015.102%206.566%2017.074%204%2017.074%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssMeWeSvg:hover,.heateor_sss_vertical_sharing .heateorSssMeWeSvg:hover, #heateor_sss_vertical_rearrange .heateorSssMeWeSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssFintelSvg:hover,.heateor_sss_vertical_sharing .heateorSssFintelSvg:hover,#heateor_sss_vertical_rearrange .heateorSssFintelSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20version%3D%221.1%22%20style%3D%22shape-rendering%3AgeometricPrecision%3B%20text-rendering%3AgeometricPrecision%3B%20image-rendering%3AoptimizeQuality%3B%20fill-rule%3Aevenodd%3B%20clip-rule%3Aevenodd%22%0AviewBox%3D%22-110%20-120%20428%20494%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%3C!%5BCDATA%5B.fil0%20%7Bfill%3A%23fff%7D.fil1%20%7Bfill%3A%23fff%7D%5D%5D%3E%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22Layer_x0020_1%22%3E%3Cmetadata%20id%3D%22CorelCorpID_0Corel-Layer%22%2F%3E%3Cpolygon%20class%3D%22fil0%22%20points%3D%22108%2C274%2048%2C274%2048%2C152%200%2C152%200%2C95%2048%2C95%2048%2C0%20208%2C0%20208%2C56%20108%2C56%20108%2C95%20180%2C95%20180%2C151%20108%2C151%20%22%2F%3E%3Cpolygon%20class%3D%22fil1%22%20points%3D%2299%2C272%20103%2C272%20103%2C147%20175%2C147%20175%2C100%20103%2C100%20103%2C52%20203%2C52%20203%2C7%20199%2C7%20199%2C48%2098%2C48%2098%2C104%20171%2C104%20171%2C142%2099%2C142%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssParlerSvg:hover,.heateor_sss_vertical_sharing .heateorSssParlerSvg:hover,#heateor_sss_vertical_rearrange .heateorSssParlerSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20height%3D%27100%25%27%20width%3D%27100%25%27%20viewBox%3D%27-24%20-30%20140%20160%27%3E%3Cg%20fill%3D%27%23fff%27%3E%3Cpath%20d%3D%27M58.34%2083.31h-25v-8.49c0-4.5%203.64-8.14%208.14-8.14h16.87c13.8%200%2025.02-11.19%2025.02-24.94%200-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0%207.45%207.45%200%2016.63%200h36.41l5.44.17C81.39.24%20100%2018.86%20100%2041.74c0%2022.92-18.69%2041.57-41.66%2041.57z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M16.65%20100C7.46%20100%20.02%2092.55.02%2083.37V49.49c0-8.92%207.23-16.16%2016.16-16.16h42.19a8.32%208.32%200%20010%2016.64h-33.5c-4.53%200-8.21%203.67-8.21%208.21V100z%27%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateor_sss_floating_follow_icons_container .heateorSssGabSvg:hover,.heateor_sss_vertical_sharing .heateorSssGabSvg:hover,#heateor_sss_vertical_rearrange .heateorSssGabSvg:hover{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-14.5%205.5%2046%2026%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.8%2C7.6h-2.4v0.7V9l-0.4-0.3C10.2%2C7.8%2C9%2C7.2%2C7.7%2C7.2c-0.2%2C0-0.4%2C0-0.4%2C0c-0.1%2C0-0.3%2C0-0.5%2C0%0Ac-5.6%2C0.3-8.7%2C7.2-5.4%2C12.1c2.3%2C3.4%2C7.1%2C4.1%2C9.7%2C1.5l0.3-0.3l0%2C0.7c0%2C1-0.1%2C1.5-0.4%2C2.2c-1%2C2.4-4.1%2C3-6.8%2C1.3%0Ac-0.2-0.1-0.4-0.2-0.4-0.2c-0.1%2C0.1-1.9%2C3.5-1.9%2C3.6c0%2C0.1%2C0.5%2C0.4%2C0.8%2C0.6c2.2%2C1.4%2C5.6%2C1.7%2C8.3%2C0.8c2.7-0.9%2C4.5-3.2%2C5-6.4%0Ac0.2-1.1%2C0.2-0.8%2C0.2-8.4l0-7.1H13.8z%20M9.7%2C17.6c-2.2%2C1.2-4.9-0.4-4.9-2.9C4.8%2C12.6%2C7%2C11%2C9%2C11.6C11.8%2C12.4%2C12.3%2C16.1%2C9.7%2C17.6z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}
 
admin/css/sassy-social-share-svg.css CHANGED
@@ -1 +1 @@
1
- .heateorSssYummlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMoreSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPrintSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRedditSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2039%2039%22%3E%3Cpath%20d%3D%22M28.543%2015.774a2.953%202.953%200%200%200-2.951-2.949%202.882%202.882%200%200%200-1.9.713%2014.075%2014.075%200%200%200-6.85-2.044l1.38-4.349%203.768.884a2.452%202.452%200%201%200%20.24-1.176l-4.274-1a.6.6%200%200%200-.709.4l-1.659%205.224a14.314%2014.314%200%200%200-7.316%202.029%202.908%202.908%200%200%200-1.872-.681%202.942%202.942%200%200%200-1.618%205.4%205.109%205.109%200%200%200-.062.765c0%204.158%205.037%207.541%2011.229%207.541s11.22-3.383%2011.22-7.541a5.2%205.2%200%200%200-.053-.706%202.963%202.963%200%200%200%201.427-2.51zm-18.008%201.88a1.753%201.753%200%200%201%201.73-1.74%201.73%201.73%200%200%201%201.709%201.74%201.709%201.709%200%200%201-1.709%201.711%201.733%201.733%200%200%201-1.73-1.711zm9.565%204.968a5.573%205.573%200%200%201-4.081%201.272h-.032a5.576%205.576%200%200%201-4.087-1.272.6.6%200%200%201%20.844-.854%204.5%204.5%200%200%200%203.238.927h.032a4.5%204.5%200%200%200%203.237-.927.6.6%200%201%201%20.844.854zm-.331-3.256a1.726%201.726%200%201%201%201.709-1.712%201.717%201.717%200%200%201-1.712%201.712z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTwitterSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2039%2039%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateorSssVkontakteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-0.75%20-1.5%2034%2034%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssXingSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateorSssWhatsappSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5.5%20-4.5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssAIMSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%2F%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssAOLMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBalatarinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23B90E10%22%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12%2022h8v2h-8z%22%2F%3E%3Cpath%20fill%3D%22%23079948%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%2F%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%2F%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBibSonomySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-7%20-7%2046%2046%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.058%2025.892c-.25%200-.484.065-.694.17l-5.907-8.2a1.548%201.548%200%200%200%20.344-1.68l4.28-2.573c.288.333.71.552%201.187.552.862%200%201.56-.7%201.56-1.56%200-.776-.567-1.415-1.31-1.535V6.11a1.556%201.556%200%200%200-.25-3.095c-.862%200-1.56.7-1.56%201.56%200%20.196.04.383.106.556l-4.256%202.477a1.548%201.548%200%200%200-1.2-.574c-.862%200-1.56.7-1.56%201.56%200%20.778.567%201.417%201.31%201.537v5.1c-.218.035-.42.112-.598.23L9.93%208.204c.213-.268.345-.6.345-.97a1.56%201.56%200%201%200-.712%201.309l6.575%207.25c-.213.267-.345.6-.345.968%200%20.23.054.45.144.647L8.08%2022.66a1.547%201.547%200%200%200-1.138-.5%201.56%201.56%200%201%200%201.56%201.56c0-.23-.053-.45-.144-.646l7.857-5.25c.07.076.147.144.23.204l-1.95%203.927a1.536%201.536%200%200%200-.457-.076c-.862%200-1.56.695-1.56%201.56a1.56%201.56%200%201%200%202.468-1.27l1.95-3.926c.146.045.297.076.458.076.25%200%20.484-.064.694-.17l5.907%208.2a1.56%201.56%200%201%200%201.103-.459zM18.914%208.59c0-.197-.04-.383-.106-.556l4.257-2.473c.236.29.567.49.95.55v4.96a1.558%201.558%200%200%200-1.197%202.115l-4.278%202.573a1.542%201.542%200%200%200-.935-.53v-5.102a1.555%201.555%200%200%200%201.31-1.534z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBlinklistSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%2F%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%2F%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBloggerPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20stroke%3D%22%23FFF%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23FFF%22%20stroke-width%3D%221.5%22%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23A3DE38%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23CC3467%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%2F%3E%3Cpath%20fill%3D%22%2396C044%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%2F%3E%3Cpath%20fill%3D%22%23CC3467%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%2F%3E%3Cpath%20fill%3D%22%2396C044%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%2F%3E%3Cpath%20fill%3D%22%23CC3467%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%2F%3E%3Cpath%20fill%3D%22%2396C044%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBuddyMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%238B0102%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%2F%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23BA3628%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%2F%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssCommentSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-150%20-150%20791%20791%22%3E%3Cg%3E%3Cpath%20d%3D%22M477.364%2C127.481c-22.839-28.072-53.864-50.248-93.072-66.522c-39.208-16.274-82.036-24.41-128.479-24.41%20c-46.442%2C0-89.269%2C8.136-128.478%2C24.41c-39.209%2C16.274-70.233%2C38.446-93.074%2C66.522C11.419%2C155.555%2C0%2C186.15%2C0%2C219.269%20c0%2C28.549%2C8.61%2C55.299%2C25.837%2C80.232c17.227%2C24.934%2C40.778%2C45.874%2C70.664%2C62.813c-2.096%2C7.611-4.57%2C14.842-7.426%2C21.7%20c-2.855%2C6.851-5.424%2C12.467-7.708%2C16.847c-2.286%2C4.374-5.376%2C9.23-9.281%2C14.555c-3.899%2C5.332-6.849%2C9.093-8.848%2C11.283%20c-1.997%2C2.19-5.28%2C5.801-9.851%2C10.848c-4.565%2C5.041-7.517%2C8.33-8.848%2C9.853c-0.193%2C0.097-0.953%2C0.948-2.285%2C2.574%20c-1.331%2C1.615-1.999%2C2.419-1.999%2C2.419l-1.713%2C2.57c-0.953%2C1.42-1.381%2C2.327-1.287%2C2.703c0.096%2C0.384-0.094%2C1.335-0.57%2C2.854%20c-0.477%2C1.526-0.428%2C2.669%2C0.142%2C3.429v0.287c0.762%2C3.234%2C2.283%2C5.853%2C4.567%2C7.851c2.284%2C1.992%2C4.858%2C2.991%2C7.71%2C2.991h1.429%20c12.375-1.526%2C23.223-3.613%2C32.548-6.279c49.87-12.751%2C93.649-35.782%2C131.334-69.094c14.274%2C1.523%2C28.074%2C2.283%2C41.396%2C2.283%20c46.442%2C0%2C89.271-8.135%2C128.479-24.414c39.208-16.276%2C70.233-38.444%2C93.072-66.517c22.843-28.072%2C34.263-58.67%2C34.263-91.789%20C511.626%2C186.154%2C500.207%2C155.555%2C477.364%2C127.481z%20M445.244%2C292.075c-19.896%2C22.456-46.733%2C40.303-80.517%2C53.529%20c-33.784%2C13.223-70.093%2C19.842-108.921%2C19.842c-11.609%2C0-23.98-0.76-37.113-2.286l-16.274-1.708l-12.277%2C10.852%20c-23.408%2C20.558-49.582%2C36.829-78.513%2C48.821c8.754-15.414%2C15.416-31.785%2C19.986-49.102l7.708-27.412l-24.838-14.27%20c-24.744-14.093-43.918-30.793-57.53-50.114c-13.61-19.315-20.412-39.638-20.412-60.954c0-26.077%2C9.945-50.343%2C29.834-72.803%20c19.895-22.458%2C46.729-40.303%2C80.515-53.531c33.786-13.229%2C70.089-19.849%2C108.92-19.849c38.828%2C0%2C75.13%2C6.617%2C108.914%2C19.845%20c33.783%2C13.229%2C60.62%2C31.073%2C80.517%2C53.531c19.89%2C22.46%2C29.834%2C46.727%2C29.834%2C72.802S465.133%2C269.615%2C445.244%2C292.075z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssCopyLinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.412%2021.177c0-.36-.126-.665-.377-.917l-2.804-2.804a1.235%201.235%200%200%200-.913-.378c-.377%200-.7.144-.97.43.026.028.11.11.255.25.144.14.24.236.29.29s.117.14.2.256c.087.117.146.232.177.344.03.112.046.236.046.37%200%20.36-.126.666-.377.918a1.25%201.25%200%200%201-.918.377%201.4%201.4%200%200%201-.373-.047%201.062%201.062%200%200%201-.345-.175%202.268%202.268%200%200%201-.256-.2%206.815%206.815%200%200%201-.29-.29c-.14-.142-.223-.23-.25-.254-.297.28-.445.607-.445.984%200%20.36.126.664.377.916l2.778%202.79c.243.243.548.364.917.364.36%200%20.665-.118.917-.35l1.982-1.97c.252-.25.378-.55.378-.9zm-9.477-9.504c0-.36-.126-.665-.377-.917l-2.777-2.79a1.235%201.235%200%200%200-.913-.378c-.35%200-.656.12-.917.364L7.967%209.92c-.254.252-.38.553-.38.903%200%20.36.126.665.38.917l2.802%202.804c.242.243.547.364.916.364.377%200%20.7-.14.97-.418-.026-.027-.11-.11-.255-.25s-.24-.235-.29-.29a2.675%202.675%200%200%201-.2-.255%201.052%201.052%200%200%201-.176-.344%201.396%201.396%200%200%201-.047-.37c0-.36.126-.662.377-.914.252-.252.557-.377.917-.377.136%200%20.26.015.37.046.114.03.23.09.346.175.117.085.202.153.256.2.054.05.15.148.29.29.14.146.222.23.25.258.294-.278.442-.606.442-.983zM27%2021.177c0%201.078-.382%201.99-1.146%202.736l-1.982%201.968c-.745.75-1.658%201.12-2.736%201.12-1.087%200-2.004-.38-2.75-1.143l-2.777-2.79c-.75-.747-1.12-1.66-1.12-2.737%200-1.106.392-2.046%201.183-2.818l-1.186-1.185c-.774.79-1.708%201.186-2.805%201.186-1.078%200-1.995-.376-2.75-1.13l-2.803-2.81C5.377%2012.82%205%2011.903%205%2010.826c0-1.08.382-1.993%201.146-2.738L8.128%206.12C8.873%205.372%209.785%205%2010.864%205c1.087%200%202.004.382%202.75%201.146l2.777%202.79c.75.747%201.12%201.66%201.12%202.737%200%201.105-.392%202.045-1.183%202.817l1.186%201.186c.774-.79%201.708-1.186%202.805-1.186%201.078%200%201.995.377%202.75%201.132l2.804%202.804c.754.755%201.13%201.672%201.13%202.75z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23912D31%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-1%2034%2034%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.44l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDiigoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23FFF%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDraugiemSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.55%2011.33c4.656.062%207.374%202.92%204.294%206.828-1.415%201.798-3.812%203.575-7.003%204.725-.15.056-.303.105-.46.16-.3.098-.595.188-.89.28a24.866%2024.866%200%200%201-4.05.814c-.464.043-.91.078-1.35.085-2.97.077-5.205-.74-5.93-2.474-.88-2.077.9-4.976%204.454-7.178-2.627%201.06-7.408%203.546-7.61%207.12v.454c.02.362.09.725.21%201.108.76%202.41%204.333%203.533%208.884%203.13.446-.036.892-.092%201.352-.16.66-.1%201.337-.23%202.027-.39a35.76%2035.76%200%200%200%202.02-.558c.154-.056.3-.098.454-.153.31-.094.608-.2.9-.31%203.945-1.436%206.87-3.34%208.58-5.526.975-1.253%201.476-2.424%201.574-3.448v-.787c-.28-2.61-3.317-4.135-7.45-3.717zm-3.024-1.29c.11%200%20.21-.014.307-.035.662-.167.983-.87%201.01-1.7.028-.885-.286-1.624-1.01-1.728-.063-.014-.125-.014-.195-.014-.578%200-.955.348-1.157.857-.094.265-.16.564-.163.885-.014.383.034.745.167%201.038.196.418.53.697%201.046.697zm-.014.292c-.293%200-.544.028-.76.084l.063.084.11.202.092.21.077.215.056.223.035.223.02.23.008.223v.237l-.014.23-.018.23-.028.23-.028.23-.043.23-.042.23-.04.223-.056.223-.042.212-.056.21-.057.2-.057.196-.042.19-.04.18-.02.11-.03.125-.028.132-.02.14-.03.152-.02.124v.03l-.028.166-.056.21-.02.172-.03.18-.02.182-.03.18-.02.19-.03.18-.02.188-.02.188-.02.19v.007c.04.537.082.997.103%201.26.02.3.085.517.18.663.14.215.378.292.706.32.28-.028.487-.084.647-.23.153-.14.237-.376.3-.753.118-.774.467-3.31.767-4.397.425-1.568%201.456-4.418-1.066-4.634-.122-.024-.226-.024-.338-.024zm-3.06-.8h.015c.976-.008%201.436-.9%201.436-1.994s-.46-1.993-1.436-2h-.014c-.99%200-1.45.9-1.45%202s.46%201.993%201.45%201.993zm-2.013%204.626c.09.383.18.732.254%201.052.307%201.254.606%204.16.718%205.038.105.885.418%201.073%201.052%201.136.62-.063.94-.25%201.045-1.136.105-.878.41-3.79.71-5.038.08-.314.175-.67.266-1.052.28-1.15.502-2.495%200-3.366-.32-.557-.94-.92-2.02-.92-1.088%200-1.708.37-2.03.92-.5.864-.27%202.216%200%203.366zm-1.35-4.153c.1.02.196.035.308.035.516%200%20.857-.28%201.045-.704.118-.293.174-.655.167-1.038a2.96%202.96%200%200%200-.167-.885c-.202-.51-.585-.857-1.157-.857-.07%200-.134%200-.197.014-.725.105-1.045.843-1.01%201.728.02.836.35%201.54%201.01%201.707zm-.3%209.373c.057.376.154.606.3.753.16.157.37.206.65.23.33-.024.557-.1.704-.32.09-.14.153-.36.18-.66.022-.264.064-.72.106-1.253v-.014l-.02-.187-.02-.188-.03-.188-.02-.18-.02-.19-.03-.18-.02-.18-.03-.183-.025-.174-.02-.166-.03-.167v-.02l-.02-.133-.028-.153-.028-.14-.024-.13-.028-.125-.03-.11-.034-.184-.056-.188-.04-.196-.058-.203-.056-.21-.056-.215-.04-.223-.057-.225-.04-.23-.033-.23-.028-.23-.03-.23-.02-.23-.008-.237v-.23l.007-.223.02-.23.034-.223.056-.222.07-.216.1-.21.11-.2.065-.085a3.128%203.128%200%200%200-.76-.083c-.11%200-.216%200-.32.014-2.524.216-1.492%203.066-1.067%204.634.262%201.054.603%203.59.728%204.364z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDoubanSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M5.755%205.505h20.55v2.59H5.755v-2.59zm14.99%2018.47l1.93-4.29h2.21v-9.97h-18v9.98h2.04l1.93%204.29h-5.78v2.51h21.85v-2.51l-6.18-.01zm-10.74-6.95v-4.88h11.68v4.88h-11.68zm7.99%206.95h-4.37l-1.93-4.29h8.24l-1.94%204.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFacebookMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16%205C9.986%205%205.11%209.56%205.11%2015.182c0%203.2%201.58%206.054%204.046%207.92V27l3.716-2.06c.99.276%202.04.425%203.128.425%206.014%200%2010.89-4.56%2010.89-10.183S22.013%205%2016%205zm1.147%2013.655L14.33%2015.73l-5.423%203%205.946-6.31%202.816%202.925%205.42-3-5.946%206.31z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFarkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFintelSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20version%3D%221.1%22%20style%3D%22shape-rendering%3AgeometricPrecision%3B%20text-rendering%3AgeometricPrecision%3B%20image-rendering%3AoptimizeQuality%3B%20fill-rule%3Aevenodd%3B%20clip-rule%3Aevenodd%22%0AviewBox%3D%22-110%20-120%20428%20494%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%3C!%5BCDATA%5B.fil0%20%7Bfill%3A%23fff%7D.fil1%20%7Bfill%3A%23fff%7D%5D%5D%3E%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22Layer_x0020_1%22%3E%3Cmetadata%20id%3D%22CorelCorpID_0Corel-Layer%22%2F%3E%3Cpolygon%20class%3D%22fil0%22%20points%3D%22108%2C274%2048%2C274%2048%2C152%200%2C152%200%2C95%2048%2C95%2048%2C0%20208%2C0%20208%2C56%20108%2C56%20108%2C95%20180%2C95%20180%2C151%20108%2C151%20%22%2F%3E%3Cpolygon%20class%3D%22fil1%22%20points%3D%2299%2C272%20103%2C272%20103%2C147%20175%2C147%20175%2C100%20103%2C100%20103%2C52%20203%2C52%20203%2C7%20199%2C7%20199%2C48%2098%2C48%2098%2C104%20171%2C104%20171%2C142%2099%2C142%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23F5CCCC%22%20d%3D%22M19%2019H7V7h12v12z%22%2F%3E%3Cpath%20fill%3D%22%23FAE5E5%22%20d%3D%22M25%2013H7V7h18v6z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M13%2025H7V7h6v18z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGoogleClassroomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%202%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M22.667%2016.667a1.667%201.667%200%201%200%200-3.334%201.667%201.667%200%200%200%200%203.334zM22.333%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117zm-13-1.333a1.668%201.668%200%201%200-.002-3.336%201.668%201.668%200%200%200%20.002%203.336zM9.667%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117z%22%2F%3E%3Cpath%20d%3D%22M15.335%2015.333A2.332%202.332%200%201%200%2013%2013a2.333%202.333%200%200%200%202.335%202.333zm.332%201.334c-2.572%200-5.333%201.392-5.333%203.11v1.557H21v-1.556c0-1.72-2.762-3.11-5.333-3.11zm3%2010.666h8v2h-8v-2z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGoogleBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M2.902%206.223h26.195v19.554H2.902z%22%2F%3E%3Cpath%20fill%3D%22%23E14C41%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssHatenaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23111%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssKikSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M23.436%2020.74a2.511%202.511%200%200%200%20.109-5.019h-.11a2.516%202.516%200%200%200-2.507%202.515%202.509%202.509%200%200%200%202.508%202.508zm-7.946-3.09l2.89-2.89c.93-.93.93-2.434%200-3.363a2.374%202.374%200%200%200-3.362%200l-4.262%204.263V7.267A2.378%202.378%200%200%200%206%207.263V24.7a2.378%202.378%200%200%200%204.756.002v-2.316l1.335-1.335%203.76%205.07a2.378%202.378%200%200%200%203.866-2.771c-.016-.02-.03-.04-.047-.06l-4.177-5.638v-.002z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFA036%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssKnownSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssLineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssLiveJournalSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%2F%3E%3Cpath%20fill%3D%22%23FFC805%22%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%2F%3E%3Cpath%20fill%3D%22%239291AD%22%20d%3D%22M13.285%2010.666c-1.22.873-2.197%201.915-2.84%202.987l-1.898-2.735c.557-1.043%201.654-2.108%202.875-2.944l1.863%202.692z%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M7.215%2010.283c1.35-3.24%204.182-4.8%207.568-5.527l.55-.026.38.397.314.322%201.14%201.817-1.835.243h-.012c-.242.038-.512.108-.8.212h-.003c-.3.1-.613.238-.957.406-1.69.837-3.4%202.216-3.898%203.306l-.928%201.746-1.252-1.66-.166-.285-.25-.453.15-.5z%22%2F%3E%3Cpath%20fill%3D%22%23F5A8AA%22%20d%3D%22M8.33%2010.597c.95-2.725%203.1-4.214%206.504-4.615l.314.322c-2.3.35-5.756%202.777-6.598%204.62l-.22-.327z%22%2F%3E%3Cpath%20fill%3D%22%23485E85%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M16.41%2021.274c.053-.062.113-.133.176-.197.635-.712%201.287-1.447%201.43-2.695l-4.875-7.02c-.436.35-.832.706-1.176%201.062-.363.382-.674.775-.924%201.168l5.37%207.682zm.93.483c-.203.222-.398.445-.572.665l-.416.54-.402-.566-5.94-8.49-.183-.265.166-.282c.318-.558.73-1.097%201.236-1.63.494-.526%201.076-1.027%201.726-1.5l.424-.305.296.425%205.27%207.6.103.15-.014.17c-.113%201.718-.92%202.615-1.697%203.49z%22%2F%3E%3Cpath%20fill%3D%22%236A9AC2%22%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M22.125%2017.31c-.09.026-.168.062-.248.093-.89.35-1.81.71-3.027.396l-4.87-7.02c.48-.29.95-.53%201.405-.73.486-.208.96-.36%201.42-.464l5.32%207.724zm.12%201.037c.28-.11.563-.22.823-.294l.658-.21-.39-.568-5.888-8.532-.18-.267-.32.052c-.635.105-1.287.3-1.967.59-.66.286-1.67.887-2.342%201.33l5.893%208.313c1.647.49%202.627.014%203.717-.412z%22%2F%3E%3Cpath%20fill%3D%22%23A1BBD6%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23F89C0E%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMeneameSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMixiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23D1AD5A%22%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMySpaceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%236C3%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%2F%3E%3Cpath%20fill%3D%22%2309C%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%2F%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%2F%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPapalySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2038%2038%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.744%208.217c1.112%200%202.296.519%203.106%201.329l.185.185c1.361%201.361%201.402%204.432.042%205.792l-3.103%202.787L16%2022.777l-4.974-4.467-3.103-2.787c-1.361-1.361-1.319-4.432.042-5.792l.185-.185c.81-.81%201.994-1.329%203.106-1.329.756%200%201.48.24%202.03.79L16%2012.291l2.714-3.284c.55-.55%201.274-.79%202.03-.79m0-2.921c-1.58%200-3.035.585-4.096%201.646l-.098.098-.088.107-.462.558-.462-.559-.088-.106-.098-.098c-1.061-1.061-2.516-1.646-4.096-1.646-1.871%200-3.804.816-5.172%202.184l-.185.185c-2.515%202.515-2.535%207.43-.042%209.924l.055.055.058.052%203.103%202.787%204.974%204.467L16%2026.704l1.952-1.753%204.974-4.467%203.103-2.787.058-.052.055-.055c2.494-2.494%202.473-7.409-.042-9.924l-.184-.186c-1.368-1.368-3.301-2.184-5.172-2.184z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPocketSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%20-1%2032%2032%22%3E%3Cpath%20fill%3D%22%23EE4056%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23A9A9A9%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%2F%3E%3Cpath%20fill%3D%22%23DCDCDC%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%2F%3E%3Cpath%20d%3D%22M9.19%208.118h13.467v6.106H9.19z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%2F%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPushaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFC820%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRefindSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%2021.256c-2.891%200-5.256-2.365-5.256-5.255%200-2.891%202.365-5.255%205.255-5.255%202.891%200%205.255%202.365%205.255%205.255.002%202.89-2.363%205.255-5.254%205.255z%22%2F%3E%3Cpath%20d%3D%22M20.664%2023.676A8.91%208.91%200%200%201%2016%2025c-4.95%200-9-4.05-9-9s4.05-9%209-9%209%204.05%209%209a8.912%208.912%200%200%201-1.302%204.628l2.293%201.991A11.908%2011.908%200%200%200%2028%2016c0-6.6-5.4-12-12-12S4%209.4%204%2016s5.4%2012%2012%2012c2.456%200%204.745-.75%206.652-2.029l-1.988-2.295z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%2F%3E%3Cpath%20fill%3D%22%23E6162D%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%2F%3E%3Cpath%20fill%3D%22%23F93%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%2F%3E%3Cpath%20d%3D%22M14.16%2019.87c-.15.26-.484.383-.746.275-.256-.104-.335-.393-.19-.646.15-.253.47-.376.725-.274.26.094.35.386.21.644m-1.373%201.762c-.417.665-1.308.956-1.98.65-.66-.303-.855-1.073-.44-1.722.413-.644%201.274-.932%201.94-.652.673.287.888%201.054.48%201.724m1.564-4.7c-2.046-.533-4.363.488-5.253%202.293-.904%201.84-.028%203.884%202.04%204.552%202.144.69%204.67-.368%205.55-2.354.865-1.944-.216-3.944-2.336-4.49%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23CA0805%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSkypeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.15%2018c-.007.04-.012.084-.02.126l-.04-.24.06.113c.124-.678.19-1.37.19-2.06%200-1.53-.3-3.013-.892-4.41a11.273%2011.273%200%200%200-2.43-3.602%2011.288%2011.288%200%200%200-8.012-3.32c-.72%200-1.443.068-2.146.203h-.005c.04.023.08.04.118.063l-.238-.037c.04-.01.08-.018.12-.026a6.717%206.717%200%200%200-3.146-.787%206.67%206.67%200%200%200-4.748%201.965A6.7%206.7%200%200%200%204%2010.738c0%201.14.293%202.262.844%203.253.007-.04.012-.08.02-.12l.04.238-.06-.114c-.112.643-.17%201.3-.17%201.954a11.285%2011.285%200%200%200%203.32%208.012c1.04%201.04%202.25%201.86%203.602%202.43%201.397.592%202.882.89%204.412.89.666%200%201.334-.06%201.985-.175-.038-.02-.077-.04-.116-.063l.242.04c-.046.01-.088.015-.13.02a6.68%206.68%200%200%200%203.3.87%206.661%206.661%200%200%200%204.743-1.963A6.666%206.666%200%200%200%2028%2021.26c0-1.145-.295-2.27-.85-3.264zm-11.098%204.885c-4.027%200-5.828-1.98-5.828-3.463%200-.76.562-1.294%201.336-1.294%201.723%200%201.277%202.474%204.49%202.474%201.647%200%202.556-.893%202.556-1.808%200-.55-.27-1.16-1.355-1.426l-3.58-.895c-2.88-.723-3.405-2.282-3.405-3.748%200-3.043%202.865-4.186%205.556-4.186%202.478%200%205.4%201.37%205.4%203.192%200%20.783-.677%201.237-1.45%201.237-1.472%200-1.2-2.035-4.163-2.035-1.47%200-2.285.666-2.285%201.618%200%20.95%201.16%201.254%202.17%201.484l2.65.587c2.905.647%203.64%202.342%203.64%203.94%200%202.47-1.895%204.318-5.726%204.318z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSMSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-140%20-170%20770%20770%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cg%3E%3Cpath%20d%3D%22M87.412%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997c0-4.888-2.93-7.22-14.037-10.927%20c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.806-31.198c11.122%200%2021.078%202.526%2026.923%205.456%20l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803c0%204.485%203.707%206.832%2015.412%2010.927%20c18.133%206.234%2025.741%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809c-12.482%200-23.604-2.721-30.809-6.622%20L87.412%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M172.23%20166.856c0-11.884-0.389-22.034-0.777-30.42h24.964l1.36%2012.871h0.583c4.096-6.039%2012.482-15.008%2028.866-15.008%20c12.288%200%2022.034%206.233%2026.13%2016.174h0.389c3.513-4.873%207.803-8.775%2012.288-11.495c5.277-3.124%2011.122-4.679%2018.148-4.679%20c18.327%200%2032.184%2012.871%2032.184%2041.333v56.177h-28.866v-51.872c0-13.857-4.5-21.855-14.052-21.855%20c-6.817%200-11.705%204.679-13.648%2010.344c-0.777%202.138-1.166%205.262-1.166%207.609v55.773h-28.866v-53.441%20c0-12.093-4.29-20.285-13.663-20.285c-7.594%200-12.093%205.86-13.842%2010.733c-0.972%202.332-1.166%205.068-1.166%207.415v55.579H172.23%20V166.856z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M339.729%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997%20c0-4.888-2.93-7.22-14.037-10.927c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.807-31.198%20c11.122%200%2021.063%202.526%2026.922%205.456l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803%20c0%204.485%203.707%206.832%2015.412%2010.927c18.133%206.234%2025.742%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809%20c-12.482%200-23.604-2.721-30.809-6.622L339.729%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M383.947%20490L230.694%20364.252H50.713c-27.924%200-50.631-23.111-50.631-51.528V51.528C0.082%2023.111%2022.789%200%2050.713%200%20h388.574c27.924%200%2050.631%2023.111%2050.631%2051.528v261.197c0%2028.417-22.707%2051.528-50.631%2051.528h-55.34V490z%20M50.713%2030.615%20c-11.032%200-20.016%209.388-20.016%2020.913v261.197c0%2011.525%208.984%2020.913%2020.016%2020.913h190.923l111.696%2091.635v-91.635h85.954%20c11.032%200%2020.016-9.388%2020.016-20.913V51.528c0-11.525-8.984-20.913-20.016-20.913H50.713z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSlashdotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%235BD428%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%2F%3E%3Cpath%20fill%3D%22%2337AD29%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%2F%3E%3Cpath%20fill%3D%22%23FDAA09%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%2F%3E%3Cpath%20fill%3D%22%23FEE70A%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSymbalooFeedsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTelegramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssThreemaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.4%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M24.067%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M17.733%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M16.082%208.716h-.262c-.886%200-1.507.682-1.507%201.568v2.015h3.372v-2.015c.001-.886-.718-1.568-1.603-1.568z%22%2F%3E%3Cpath%20d%3D%22M16%204.325c-6.075%200-11%203.752-11%208.381%200%201.924.851%203.697%202.283%205.111.49.484.607%201.231.283%201.839l-1.479%202.776%204.39-1.384a6.183%206.183%200%200%201%201.863-.284c.383%200%20.766.034%201.145.102.807.144%201.649.22%202.514.22%206.075%200%2011-3.752%2011-8.381S22.075%204.325%2016%204.325zm3.793%2012.432c0%20.368-.409.6-.777.6H12.85c-.368%200-.643-.231-.643-.6v-3.733c0-.368.275-.725.643-.725h.2v-2.015c0-1.585%201.187-2.832%202.771-2.832h.262c1.583%200%202.868%201.247%202.868%202.832v2.015h.066c.368%200%20.777.357.777.725v3.733z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTrelloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.5%204h-21A1.5%201.5%200%200%200%204%205.5v21A1.5%201.5%200%200%200%205.5%2028h21a1.5%201.5%200%200%200%201.5-1.5v-21A1.5%201.5%200%200%200%2026.5%204zM14.44%2022.12c0%20.825-.675%201.5-1.5%201.5H8.62c-.825%200-1.5-.675-1.5-1.5V8.62c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v13.5zm10.44-6c0%20.825-.675%201.5-1.5%201.5h-4.32c-.825%200-1.5-.675-1.5-1.5v-7.5c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v7.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssViadeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23F79A30%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%2F%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssViberSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M22.57%2027.22a7.39%207.39%200%200%201-1.14-.32%2029%2029%200%200%201-16-16.12c-1-2.55%200-4.7%202.66-5.58a2%202%200%200%201%201.39%200c1.12.41%203.94%204.3%204%205.46a2%202%200%200%201-1.16%201.78%202%202%200%200%200-.66%202.84A10.3%2010.3%200%200%200%2017%2020.55%201.67%201.67%200%200%200%2019.35%2020c1.07-1.62%202.38-1.54%203.82-.54.72.51%201.45%201%202.14%201.55.93.75%202.1%201.37%201.55%202.94A5.21%205.21%200%200%201%2022.57%2027.22Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M17.06%204.79A10.42%2010.42%200%200%201%2026.79%2015c0%20.51.18%201.27-.58%201.25s-.54-.78-.6-1.29c-.7-5.52-3.23-8.13-8.71-9-.45-.07-1.15%200-1.11-.57C15.84%204.52%2016.66%204.85%2017.06%204.79Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M24.09%2014.06c-.05.38.17%201-.45%201.13-.83.13-.67-.64-.75-1.13-.56-3.36-1.74-4.59-5.12-5.35-.5-.11-1.27%200-1.15-.8s.82-.48%201.35-.42A6.9%206.9%200%200%201%2024.09%2014.06Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M21.52%2013.45c0%20.43%200%20.87-.53.93s-.6-.26-.64-.64a2.47%202.47%200%200%200-2.26-2.43c-.42-.07-.82-.2-.63-.76.13-.38.47-.41.83-.42A3.66%203.66%200%200%201%2021.52%2013.45Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23D2DE61%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssWordPressSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22%23FFF%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%2F%3E%3Cg%20fill%3D%22%23464646%22%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%2F%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssWykopSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%2F%3E%3Cpath%20fill%3D%22%23F58237%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssYoolinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22%232E6EB5%22%20stroke%3D%22%23FFF%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssInstagramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssStockTwitsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.328%2014.309l-1.793-.736c-1.303-.536-1.955-1.244-1.955-2.123%200-.637.249-1.166.746-1.587.498-.427%201.123-.642%201.878-.642.614%200%201.115.125%201.504.373.373.218.766.684%201.178%201.399l2.204-1.306c-1.166-2.024-2.788-3.037-4.863-3.037-1.539%200-2.828.459-3.866%201.376-1.039.909-1.559%202.039-1.559%203.391%200%202.005%201.232%203.528%203.698%204.569l1.738.722c.451.194.84.399%201.167.612.326.214.593.443.799.687.206.245.358.513.455.805.097.291.146.612.146.961%200%20.871-.28%201.59-.84%202.156-.56.568-1.263.851-2.111.851-1.073%200-1.889-.389-2.449-1.166-.311-.405-.529-1.135-.653-2.193L4%2020.028c.249%201.679.875%202.986%201.878%203.92%201.018.936%202.309%201.403%203.872%201.403%201.648%200%203.028-.544%204.139-1.634%201.102-1.082%201.653-2.451%201.653-4.109%200-1.237-.338-2.281-1.012-3.134-.676-.852-1.743-1.573-3.202-2.165zM28%207.023H17.037v2.571h4.14v15.425h2.695V9.594H28z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBehanceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M3.862%208.136h5.66c1.377%200%203.19%200%204.13.566a3.705%203.705%200%200%201%201.837%203.26c0%201.66-.88%202.905-2.32%203.494v.042c1.924.397%202.97%201.838%202.97%203.76%200%202.297-1.636%204.483-4.743%204.483H3.86V8.14zm2.078%206.71h4.152c2.36%200%203.322-.856%203.322-2.493%200-2.16-1.53-2.468-3.322-2.468H5.94v4.96zm0%207.144h5.2c1.792%200%202.93-1.09%202.93-2.797%200-2.03-1.64-2.598-3.388-2.598H5.94v5.395zm22.017-1.833C27.453%2022.65%2025.663%2024%2023.127%2024c-3.607%200-5.31-2.49-5.422-5.944%200-3.386%202.23-5.878%205.31-5.878%204%200%205.225%203.74%205.116%206.47h-8.455c-.067%201.966%201.05%203.716%203.52%203.716%201.53%200%202.6-.742%202.928-2.206h1.838zm-1.793-3.15c-.088-1.77-1.42-3.19-3.256-3.19-1.946%200-3.106%201.466-3.236%203.19h6.492zM20.614%208h4.935v1.68h-4.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFlickrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%229%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFoursquareSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.516%203H7.586C5.66%203%205%204.358%205%205.383v21.995c0%201.097.65%201.407.958%201.53.31.126%201.105.206%201.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79%200%201.81-1.45%201.997-2.206.157-.63%201.946-9.57%202.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2%209.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108%201.032v.665c0%20.61.5%201.24%201.108%201.24h4.607c.43%200%20.794.276.7.737-.093.46-.573%202.82-.627%203.07-.052.254-.282.764-.716.764h-3.62c-.682%200-1.36-.008-1.816.56-.458.573-4.534%205.293-4.534%205.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834%201L20.2%209.68z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGithubSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203.32c-7.182%200-13%205.82-13%2013%200%205.754%203.72%2010.612%208.89%2012.335.65.114.893-.276.893-.617%200-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86%201.024-.017%201.755.942%202%201.332%201.17%201.966%203.038%201.414%203.785%201.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418%200-1.414.504-2.584%201.333-3.494-.13-.325-.59-1.657.13-3.445%200%200%201.085-.34%203.57%201.337%201.04-.293%202.146-.44%203.25-.44s2.21.147%203.25.44c2.49-1.69%203.58-1.337%203.58-1.337.714%201.79.26%203.12.13%203.446.828.91%201.332%202.064%201.332%203.494%200%204.99-3.04%206.094-5.93%206.42.47.405.876%201.185.876%202.404%200%201.74-.016%203.136-.016%203.575%200%20.34.244.743.894.613C25.28%2026.933%2029%2022.053%2029%2016.32c0-7.182-5.817-13-13-13z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSnapchatSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.177%2020.978c-2.867-.473-4.157-3.414-4.21-3.54l-.01-.02c-.153-.31-.187-.57-.1-.772.164-.39.774-.583%201.177-.71.113-.037.22-.07.306-.105.715-.28%201.073-.625%201.066-1.03-.006-.312-.252-.593-.642-.732a1.168%201.168%200%200%200-.44-.084.975.975%200%200%200-.405.083c-.34.16-.65.246-.91.258a.789.789%200%200%201-.357-.087l.027-.45.005-.062c.09-1.432.203-3.215-.266-4.264C20.03%206.34%2017.073%206.1%2016.2%206.1h-.052l-.363.003c-.87%200-3.818.243-5.208%203.36-.47%201.05-.357%202.833-.268%204.264l.03.513a.83.83%200%200%201-.41.09c-.276%200-.6-.087-.97-.26a.795.795%200%200%200-.335-.067c-.43%200-.946.282-1.026.704-.06.305.077.748%201.054%201.134.087.036.193.07.305.105.403.128%201.012.322%201.18.71.084.203.05.463-.103.773l-.01.022c-.054.125-1.344%203.068-4.21%203.54a.437.437%200%200%200-.366.455.6.6%200%200%200%20.048.196c.216.504%201.123.87%202.775%201.13.055.075.113.34.148.5.036.16.07.32.12.494.05.17.18.374.514.374.133%200%20.292-.03.475-.067.275-.053.652-.127%201.124-.127.26%200%20.532.022.805.067.532.09.985.41%201.51.78.75.53%201.6%201.132%202.894%201.132.034%200%20.07%200%20.105-.005.04.002.095.004.153.004%201.29%200%202.142-.6%202.892-1.132.526-.37.978-.69%201.51-.78.274-.045.545-.068.807-.068.45%200%20.805.056%201.123.12.2.037.36.057.476.057h.024c.246%200%20.42-.13.488-.365.05-.17.086-.327.12-.49.037-.16.094-.422.15-.496%201.65-.256%202.56-.624%202.773-1.125a.568.568%200%200%200%20.047-.196.433.433%200%200%200-.363-.458z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssVimeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.926%2010.627c-.103%202.25-1.675%205.332-4.716%209.245C19.066%2023.957%2016.406%2026%2014.23%2026c-1.348%200-2.49-1.244-3.42-3.732l-1.867-6.844C8.25%2012.937%207.51%2011.69%206.715%2011.69c-.173%200-.778.365-1.815%201.09l-1.088-1.4a300.012%20300.012%200%200%200%203.374-3.01c1.522-1.315%202.666-2.007%203.427-2.076%201.8-.173%202.907%201.057%203.322%203.69.45%202.84.76%204.608.935%205.3.52%202.356%201.09%203.534%201.713%203.534.483%200%201.21-.764%202.18-2.294.97-1.528%201.488-2.692%201.558-3.49.14-1.32-.38-1.98-1.553-1.98-.554%200-1.125.126-1.712.378%201.137-3.722%203.308-5.53%206.513-5.426%202.378.068%203.498%201.61%203.36%204.62z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRSSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cellipse%20cx%3D%227.952%22%20cy%3D%2224.056%22%20rx%3D%222.952%22%20ry%3D%222.944%22%3E%3C%2Fellipse%3E%3Cpath%20d%3D%22M5.153%2016.625c2.73%200%205.295%201.064%207.22%202.996a10.2%2010.2%200%200%201%202.996%207.255h4.2c0-7.962-6.47-14.44-14.42-14.44v4.193zm.007-7.432c9.724%200%2017.636%207.932%2017.636%2017.682H27C27%2014.812%2017.203%205%205.16%205v4.193z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssYoutubeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGentleReaderSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-80%20-80.014%201200.014%201200%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23ffffff%22%20d%3D%22M819.664%2C291.684C572.661-7.32%2C155.656%2C203.683%2C169.656%2C527.687%20c38%2C489.007%2C727.009%2C448.006%2C683.009-28H562.661v98h177.002c-54.721%2C270.685-443.659%2C218.617-464.179-77.827%20c-0.48-6.934%2C1.493-36.96%2C3.053-44.641c44.28-217.95%2C300.377-317.791%2C467.126-110.535L819.664%2C291.684z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGoodreadsSvg{background: url('data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%22100%25%22%20version%3D%221.1%22%20viewBox%3D%220%200%2060%2060%22%20width%3D%22100%25%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20id%3D%22black%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%3E%3Cg%20id%3D%22slice%22%20transform%3D%22translate(-500.000000%2C%20-400.000000)%22%2F%3E%3Cg%20fill%3D%22%23fff%22%20id%3D%22goodreads%22%20transform%3D%22translate(19.000000%2C%2012.000000)%22%3E%3Cpath%20d%3D%22M10.8990615%2C25.0028068%20C14.9449077%2C24.9716533%2017.8218615%2C23.0982126%2019.5286769%2C19.3821%20L19.6184%2C19.3821%20L19.6184%2C25.0493448%20C19.6184%2C25.4716478%2019.5884923%2C26.1266405%2019.5286769%2C27.0166306%20C19.4069692%2C27.9381588%2019.0821385%2C28.9293016%2018.5546%2C29.9912129%20C18.0258154%2C30.9904326%2017.1722%2C31.841577%2015.9954154%2C32.5438769%20C14.8319231%2C33.309253%2013.2086%2C33.7069409%2011.1246154%2C33.738479%20C9.11623077%2C33.738479%207.41813846%2C33.2542536%206.02826154%2C32.2861874%20C4.60806154%2C31.3338903%203.77770769%2C29.7877536%203.5372%2C27.6493159%20L1.77056923%2C27.6493159%20C1.95167692%2C30.4281311%202.90955385%2C32.411186%204.64627692%2C33.5977113%20C6.33689231%2C34.7369294%208.48152308%2C35.3076923%2011.0793385%2C35.3076923%20C13.646%2C35.3076923%2015.6473231%2C34.8626973%2017.0816462%2C33.9723225%20C18.5006%2C33.1138705%2019.5191231%2C32.0438824%2020.1392923%2C30.7638966%20C20.7582154%2C29.4835263%2021.1279077%2C28.2654629%2021.2483692%2C27.1104757%20C21.3397538%2C25.9551039%2021.3846154%2C25.1278054%2021.3846154%2C24.627811%20L21.3846154%2C1.25460914%20L19.6175692%2C1.25460914%20L19.6175692%2C6.40685958%20L19.5278462%2C6.40685958%20C18.8482769%2C4.51803442%2017.7234154%2C3.08958875%2016.1524308%2C2.12113797%20C14.5673231%2C1.16884086%2012.8152308%2C0.692307692%2010.8982308%2C0.692307692%20C7.55978462%2C0.754999303%205.02344615%2C1.9492168%203.28796923%2C4.27572941%20C1.50555385%2C6.58608836%200.615384615%2C9.43605669%200.615384615%2C12.824096%20C0.615384615%2C16.3059804%201.46027692%2C19.186333%203.15130769%2C21.465923%20C4.85936923%2C23.7932049%207.44056923%2C24.9720379%2010.8990615%2C25.0028068%20L10.8990615%2C25.0028068%20Z%20M4.51169231%2C5.54109997%20C5.89990769%2C3.43304647%208.02916923%2C2.3403663%2010.8990615%2C2.26229025%20C13.8433077%2C2.34075091%2016.0244923%2C3.40227758%2017.4446923%2C5.44763947%20C18.8636462%2C7.49338597%2019.5739538%2C9.9522048%2019.5739538%2C12.8252498%20C19.5739538%2C15.6982948%2018.8636462%2C18.1413446%2017.4446923%2C20.155553%20C16.0244923%2C22.29476%2013.8433077%2C23.3874401%2010.8990615%2C23.4339781%20C8.12055385%2C23.3870555%206.00583077%2C22.3255289%204.55655385%2C20.2490135%20C3.09149231%2C18.2351897%202.35958462%2C15.7602172%202.35958462%2C12.8252498%20C2.35958462%2C10.0768188%203.07695385%2C7.64876886%204.51169231%2C5.54109997%20L4.51169231%2C5.54109997%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMixSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-7%20-8%2045%2045%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M27.87%204.125c-5.224%200-9.467%204.159-9.467%209.291v2.89c0-1.306%201.074-2.362%202.399-2.362s2.399%201.056%202.399%202.362v1.204c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V4.134c-.036-.009-.082-.009-.129-.009%22%2F%3E%3Cpath%20d%3D%22M4%204.125v12.94c2.566%200%204.668-1.973%204.807-4.465v-2.214c0-.065%200-.12.009-.176.093-1.213%201.13-2.177%202.39-2.177%201.325%200%202.399%201.056%202.399%202.362v9.226c0%201.306%201.074%202.353%202.399%202.353s2.399-1.056%202.399-2.353v-6.206c0-5.132%204.233-9.291%209.467-9.291H4z%22%2F%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M4%2017.074v8.438c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V12.61C8.659%2015.102%206.566%2017.074%204%2017.074%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMeWeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssParlerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20height%3D%27100%25%27%20width%3D%27100%25%27%20viewBox%3D%27-24%20-30%20140%20160%27%3E%3Cg%20fill%3D%27%23fff%27%3E%3Cpath%20d%3D%27M58.34%2083.31h-25v-8.49c0-4.5%203.64-8.14%208.14-8.14h16.87c13.8%200%2025.02-11.19%2025.02-24.94%200-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0%207.45%207.45%200%2016.63%200h36.41l5.44.17C81.39.24%20100%2018.86%20100%2041.74c0%2022.92-18.69%2041.57-41.66%2041.57z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M16.65%20100C7.46%20100%20.02%2092.55.02%2083.37V49.49c0-8.92%207.23-16.16%2016.16-16.16h42.19a8.32%208.32%200%20010%2016.64h-33.5c-4.53%200-8.21%203.67-8.21%208.21V100z%27%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGabSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-14.5%205.5%2046%2026%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.8%2C7.6h-2.4v0.7V9l-0.4-0.3C10.2%2C7.8%2C9%2C7.2%2C7.7%2C7.2c-0.2%2C0-0.4%2C0-0.4%2C0c-0.1%2C0-0.3%2C0-0.5%2C0%0Ac-5.6%2C0.3-8.7%2C7.2-5.4%2C12.1c2.3%2C3.4%2C7.1%2C4.1%2C9.7%2C1.5l0.3-0.3l0%2C0.7c0%2C1-0.1%2C1.5-0.4%2C2.2c-1%2C2.4-4.1%2C3-6.8%2C1.3%0Ac-0.2-0.1-0.4-0.2-0.4-0.2c-0.1%2C0.1-1.9%2C3.5-1.9%2C3.6c0%2C0.1%2C0.5%2C0.4%2C0.8%2C0.6c2.2%2C1.4%2C5.6%2C1.7%2C8.3%2C0.8c2.7-0.9%2C4.5-3.2%2C5-6.4%0Ac0.2-1.1%2C0.2-0.8%2C0.2-8.4l0-7.1H13.8z%20M9.7%2C17.6c-2.2%2C1.2-4.9-0.4-4.9-2.9C4.8%2C12.6%2C7%2C11%2C9%2C11.6C11.8%2C12.4%2C12.3%2C16.1%2C9.7%2C17.6z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}
1
+ .heateorSssYummlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2010.5%2010%20q%204%20-2%202.5%201%20l%20-1%204%20q%200%202%205%200%20l%201%20-6.5%20m%20-1%206.5%20l%20-1%204%20c%20-3%206%20-6%20-1%200%20-1%20q%201%20-1%205%201%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBufferSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2039%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%2015%206%20l%20-10%205%20l%2010%205%20l%2010%20-5%20z%22%20stroke-width%3D%220%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%205.5%2014.5%20l%209.5%205%20l%209.5%20-5%20m%20-19%204%20l%209.5%205%20l%209.5%20-5%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFacebookSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDiggSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2049%2049%22%3E%3Cpath%20d%3D%22M%206%2020%20h%2010%20c%200%20-14%20-9%20-14%20-9%200%20m%205%200%20v%207%20m%20-1%200%20v%20-7%20m%204%20-7%20h%204.5%20v%20-5%20h%208%20v%208%20h%20-8%20v%20-3%20m%208%200%20h%204%20v%205.5%20h%20-3%20v%2012%20h%20-4%20v%20-8%20m%200%208%20h%20-6.5%20v%20-12%20h%20-2%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cellipse%20cx%3D%2211.5%22%20cy%3D%2228.5%22%20rx%3D%224%22%20ry%3D%222%22%20style%3D%22fill%3A%23fff%3B%22%3E%3C%2Fellipse%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssEmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2043%2043%22%3E%3Cpath%20d%3D%22M%205.5%2011%20h%2023%20v%201%20l%20-11%206%20l%20-11%20-6%20v%20-1%20m%200%202%20l%2011%206%20l%2011%20-6%20v%2011%20h%20-22%20v%20-11%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFloatitSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%203C8.814%203%203%208.814%203%2016s5.814%2013%2013%2013%2013-5.814%2013-13S23.187%203%2016%203zm0%2025.152c-6.712%200-12.153-5.44-12.153-12.152C3.847%209.288%209.287%203.848%2016%203.848S28.152%209.288%2028.152%2016c0%206.712-5.44%2012.152-12.152%2012.152z%22%2F%3E%3Cpath%20d%3D%22M22.406%2016A6.402%206.402%200%200%200%2016%209.593%206.402%206.402%200%200%200%209.593%2016%206.4%206.4%200%200%200%2016%2022.406%206.4%206.4%200%200%200%2022.406%2016zM16%2021.39A5.392%205.392%200%200%201%2010.61%2016%205.403%205.403%200%200%201%2016%2010.61%205.393%205.393%200%200%201%2021.39%2016%205.382%205.382%200%200%201%2016%2021.39z%22%2F%3E%3Cpath%20d%3D%22M13.763%209.187V4.864c-4.475.9-8%204.424-8.898%208.898h4.322a7.226%207.226%200%200%201%204.576-4.575zm9.05%204.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224%207.224%200%200%201%204.575%204.576zm-4.576%209.052v4.322c4.475-.9%208-4.424%208.897-8.9h-4.322a7.232%207.232%200%200%201-4.575%204.578zm-9.05-4.578H4.863c.898%204.475%204.424%208%208.898%208.9v-4.323a7.233%207.233%200%200%201-4.574-4.577z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssLinkedinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMoreSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2038%2038%22%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2215%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2210%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%2220%22%20cy%3D%2220%22%20r%3D%223%22%20fill%3D%22%23fff%22%3E%3C%2Fcircle%3E%3Cpath%20d%3D%22M%2010%2015%20L%2020%2010%20m%200%2010%20L%2010%2015%22%20stroke-width%3D%222%22%20stroke%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPinterestSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPrintSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-6%2038%2038%22%3E%3Cpath%20stroke%3D%22%23fff%22%20d%3D%22M%207%2010%20h%202%20v%203%20h%2012%20v%20-3%20h%202%20v%207%20h%20-2%20v%20-3%20h%20-12%20v%203%20h%20-2%20z%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221.8%22%20height%3D%227%22%20width%3D%2210%22%20x%3D%2210%22%20y%3D%225%22%20fill%3D%22none%22%3E%3C%2Frect%3E%3Crect%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%20height%3D%225%22%20width%3D%228%22%20x%3D%2211%22%20y%3D%2216%22%20fill%3D%22%23fff%22%3E%3C%2Frect%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRedditSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2039%2039%22%3E%3Cpath%20d%3D%22M28.543%2015.774a2.953%202.953%200%200%200-2.951-2.949%202.882%202.882%200%200%200-1.9.713%2014.075%2014.075%200%200%200-6.85-2.044l1.38-4.349%203.768.884a2.452%202.452%200%201%200%20.24-1.176l-4.274-1a.6.6%200%200%200-.709.4l-1.659%205.224a14.314%2014.314%200%200%200-7.316%202.029%202.908%202.908%200%200%200-1.872-.681%202.942%202.942%200%200%200-1.618%205.4%205.109%205.109%200%200%200-.062.765c0%204.158%205.037%207.541%2011.229%207.541s11.22-3.383%2011.22-7.541a5.2%205.2%200%200%200-.053-.706%202.963%202.963%200%200%200%201.427-2.51zm-18.008%201.88a1.753%201.753%200%200%201%201.73-1.74%201.73%201.73%200%200%201%201.709%201.74%201.709%201.709%200%200%201-1.709%201.711%201.733%201.733%200%200%201-1.73-1.711zm9.565%204.968a5.573%205.573%200%200%201-4.081%201.272h-.032a5.576%205.576%200%200%201-4.087-1.272.6.6%200%200%201%20.844-.854%204.5%204.5%200%200%200%203.238.927h.032a4.5%204.5%200%200%200%203.237-.927.6.6%200%201%201%20.844.854zm-.331-3.256a1.726%201.726%200%201%201%201.709-1.712%201.717%201.717%200%200%201-1.712%201.712z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTumblrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTwitterSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2039%2039%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateorSssVkontakteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-0.75%20-1.5%2034%2034%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssXingSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center}.heateorSssWhatsappSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5.5%20-4.5%2040%2040%22%3E%3Cpath%20id%3D%22arc1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M%2011.579798566743314%2024.396926207859085%20A%2010%2010%200%201%200%206.808479557110079%2020.73576436351046%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%207%2019%20l%20-1%206%20l%206%20-1%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M%2010%2010%20q%20-1%208%208%2011%20c%205%20-1%200%20-6%20-1%20-3%20q%20-4%20-3%20-5%20-5%20c%204%20-2%20-1%20-5%20-1%20-4%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssAIMSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.75%2016.548c-.24.558-.465%201.08-.707%201.646%202.756%201.873%205.48%203.752%207.615%206.453l-2.11%201.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527%201.862-3.26%203.49-5.476%204.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226%201.827-.433%203.38-1.246%204.62-2.62.74-.822%201.166-1.716%201.26-2.856.17-2.103.628-4.15%201.828-5.95.534-.797%201.768-.98%202.493-.37.062.046.11.126.13.2.48%201.81%202.08%202.005%203.58%201.63.573-.146%201.118-.404%201.73-.63l1.07%201.483c-1.903%201.718-4.075%201.73-6.444%201.145zm.842-12.054c1.78.02%203.254%201.57%203.22%203.386-.032%201.734-1.62%203.284-3.325%203.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8%201.555-3.236%203.39-3.214z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssAmazonWishListSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.998%2023.842c-.127%200-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72%201.102-5.573%201.748-8.215%201.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156%200-.313.058-.43.164-.114.106-.183.266-.182.426%200%20.207.112.395.267.52%203.21%202.786%206.73%205.376%2011.46%205.378.094%200%20.188-.002.28-.004%203.01-.07%206.415-1.085%209.058-2.745l.016-.01c.346-.207.69-.44%201.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437%200-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027%200%20.055%200%20.078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066%201.04-.066.225%200%20.43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266%201.25-.152.487-.338.974-.46%201.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176%201.236-1.112%201.666-2.888%201.684-3.888l-.003-.16z%22%2F%3E%3Cpath%20d%3D%22M17.355%2010.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467%202.627-3.467%205.254%200%203.3%202.124%204.98%204.81%204.98.894%200%201.622-.114%202.29-.28%201.064-.336%201.958-.95%203.02-2.07.614.838.782%201.23%201.844%202.125.278.114.558.114.78-.052.673-.56%201.85-1.568%202.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868%201.395-6.54%204.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23%201.284-1.845%202.4-1.96h.227c.67%200%201.397.28%201.79.84.447.67.39%201.568.39%202.35v.446zm-.613%206.65c-.393.782-1.063%201.286-1.79%201.456-.112%200-.28.055-.448.055-1.228%200-1.956-.95-1.956-2.35%200-1.788%201.06-2.627%202.402-3.018.727-.167%201.567-.225%202.405-.225v.672c0%201.287.057%202.292-.613%203.41z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssAOLMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M17.334%2013.26c-2.315%200-4.067%201.8-4.067%204.027%200%202.35%201.824%204.03%204.067%204.03%202.243%200%204.062-1.68%204.062-4.03%200-2.228-1.744-4.027-4.062-4.027zm0%202.127c1-.007%201.82.847%201.82%201.9%200%201.048-.82%201.9-1.82%201.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9%201.818-1.9zm11.59%204.518c0%20.778-.63%201.412-1.41%201.412-.778%200-1.41-.634-1.41-1.412%200-.778.632-1.408%201.41-1.408.78%200%201.41.63%201.41%201.408zm-4.104%201.418h-2.216v-10.28h2.216v10.28zM9.33%2011.04s2.585%206.79%203.862%2010.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2%200-.1%200-.142.03-.173.13-.127.405-.26.81-.39%201.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016%200-.036-.005-.07-.012.023-.06.04-.116.064-.17%201.286-3.307%203.91-10.086%203.91-10.086H9.33zm-.023%206.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017%203.4h2.067z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssAppnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16%207.158L4.156%2025h2.422l2.695-4h13.453l2.695%204h2.425L16%207.158zM10.82%2019L16%2011.2l5.178%207.8H10.82z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBalatarinSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23B90E10%22%20d%3D%22M29%2017H3v10c0%201.1.9%202%202%202h22c1.1%200%202-.9%202-2V17z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12%2022h8v2h-8z%22%2F%3E%3Cpath%20fill%3D%22%23079948%22%20d%3D%22M29%2015H3V5c0-1.1.9-2%202-2h22c1.1%200%202%20.9%202%202v10z%22%2F%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M15%205h2v8h-2z%22%2F%3E%3Cpath%20d%3D%22M12%208h8v2h-8z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBibSonomySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-7%20-7%2046%2046%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.058%2025.892c-.25%200-.484.065-.694.17l-5.907-8.2a1.548%201.548%200%200%200%20.344-1.68l4.28-2.573c.288.333.71.552%201.187.552.862%200%201.56-.7%201.56-1.56%200-.776-.567-1.415-1.31-1.535V6.11a1.556%201.556%200%200%200-.25-3.095c-.862%200-1.56.7-1.56%201.56%200%20.196.04.383.106.556l-4.256%202.477a1.548%201.548%200%200%200-1.2-.574c-.862%200-1.56.7-1.56%201.56%200%20.778.567%201.417%201.31%201.537v5.1c-.218.035-.42.112-.598.23L9.93%208.204c.213-.268.345-.6.345-.97a1.56%201.56%200%201%200-.712%201.309l6.575%207.25c-.213.267-.345.6-.345.968%200%20.23.054.45.144.647L8.08%2022.66a1.547%201.547%200%200%200-1.138-.5%201.56%201.56%200%201%200%201.56%201.56c0-.23-.053-.45-.144-.646l7.857-5.25c.07.076.147.144.23.204l-1.95%203.927a1.536%201.536%200%200%200-.457-.076c-.862%200-1.56.695-1.56%201.56a1.56%201.56%200%201%200%202.468-1.27l1.95-3.926c.146.045.297.076.458.076.25%200%20.484-.064.694-.17l5.907%208.2a1.56%201.56%200%201%200%201.103-.459zM18.914%208.59c0-.197-.04-.383-.106-.556l4.257-2.473c.236.29.567.49.95.55v4.96a1.558%201.558%200%200%200-1.197%202.115l-4.278%202.573a1.542%201.542%200%200%200-.935-.53v-5.102a1.555%201.555%200%200%200%201.31-1.534z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBittyBrowserSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M4%204h12v12H4z%22%2F%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M20%204v16H4v8h24V4%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBlinklistSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M3%2010.35v11.3l8.977-5.418%22%2F%3E%3Cpath%20d%3D%22M17.55%2027.454c-4.397%200-8.314-2.39-10.205-6.36l1.675-1.04c1.558%203.274%204.906%205.388%208.53%205.388%205.204%200%209.438-4.235%209.438-9.44%200-5.208-4.233-9.443-9.44-9.443-3.804%200-7.22%202.26-8.7%205.763l-1.733-1.057c1.798-4.25%205.82-6.72%2010.434-6.72C23.86%204.546%2029%209.683%2029%2015.996c0%206.317-5.136%2011.457-11.45%2011.457z%22%2F%3E%3Cpath%20d%3D%22M11.425%2018.623c1.02%202.406%203.403%204.09%206.18%204.09%203.71%200%206.715-3.006%206.715-6.712%200-3.71-3.005-6.712-6.714-6.712-2.887%200-5.35%201.823-6.295%204.38l3.958%202.566-3.84%202.39z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBloggerPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20stroke%3D%22%23FFF%22%20stroke-width%3D%222%22%20fill%3D%22none%22%20d%3D%22M12.393%206.112h4.367c1.61.19%203.96%201.572%204.824%203.41.238.515.363.594.56%202.12.106.786.16%201.367.51%201.69.495.45%202.333.147%202.696.43l.277.22.166.343.06.277-.04%205.048c-.02%203.43-2.81%206.238-6.244%206.238h-7.177c-3.436%200-6.244-2.81-6.244-6.238v-7.29c-.003-3.434%202.806-6.248%206.242-6.248z%22%2F%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23FFF%22%20stroke-width%3D%221.5%22%20d%3D%22M12.47%2011.22h3.464c.66%200%201.195.534%201.195%201.188%200%20.653-.538%201.195-1.198%201.195H12.47c-.66%200-1.194-.542-1.194-1.195%200-.654.535-1.19%201.195-1.19zm0%207.15h7.038c.654%200%201.19.534%201.19%201.188%200%20.646-.535%201.188-1.19%201.188H12.47c-.66%200-1.194-.54-1.194-1.188%200-.654.535-1.19%201.195-1.19z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBlogMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23A3DE38%22%20d%3D%22M22.762%2018.917L17.646%2016l-8.408-4.795V29l13.524-7.71%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.762%2010.71L9.238%203v8.204l8.408%204.794%205.116-2.915%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBoxnetSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16.49%2011.36c-1.653%200-3.18.524-4.434%201.41V6.543c0-.893-.725-1.616-1.617-1.616-.895%200-1.617.723-1.617%201.616v11.903c-.017.2.002%201.37.055%201.7.53%203.73%203.73%206.604%207.61%206.604%204.25%200%207.692-3.446%207.692-7.696.003-4.25-3.444-7.695-7.694-7.695zm0%2012.126c-2.45%200-4.434-1.984-4.434-4.432%200-2.45%201.983-4.434%204.433-4.434%202.445%200%204.43%201.984%204.43%204.434%200%202.448-1.984%204.432-4.433%204.432z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBookmarksfrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23CC3467%22%20d%3D%22M27.256%209.5c-2.188-3.79-6.36-.54-7.83%202.205%201.073.86%201.802%202.112%202.006%203.475%203.103.094%208.023-1.873%205.824-5.68-.7-1.212.515.894%200%200z%22%2F%3E%3Cpath%20fill%3D%22%2396C044%22%20d%3D%22M15.998%203c-4.368%200-3.664%205.23-2.013%207.886%201.283-.505%202.74-.505%204.023%200C19.66%208.23%2020.366%203%2015.998%203z%22%2F%3E%3Cpath%20fill%3D%22%23CC3467%22%20d%3D%22M9.255%208.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79%202.268-1.617%203.538.352%202.564%204.32%203.468%206.416%203.405.204-1.363.934-2.618%202.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41%201.422.82%200%200z%22%2F%3E%3Cpath%20fill%3D%22%2396C044%22%20d%3D%22M11.426%2019.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768%201.608-6.056%205.24%202.023%204.292%206.448%201.248%208.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47%200%200z%22%2F%3E%3Cpath%20fill%3D%22%23CC3467%22%20d%3D%22M18.202%2021.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02%200C12.338%2023.766%2011.624%2029%2016%2029c4.218%200%203.67-4.848%202.204-7.542-.064-.12.678%201.243%200%200z%22%2F%3E%3Cpath%20fill%3D%22%2396C044%22%20d%3D%22M27.83%2020.088c-.478-2.46-4.326-3.33-6.398-3.27-.204%201.364-.933%202.617-2.007%203.476.934%201.744%202.858%203.73%204.913%204.006%202.043.276%203.853-2.332%203.49-4.212-.153-.8.137.706%200%200z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBuddyMarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%238B0102%22%3E%3Ccircle%20cx%3D%2219.587%22%20cy%3D%227.172%22%20r%3D%224.209%22%2F%3E%3Cpath%20d%3D%22M21.374%2011.668h-3.572c-.085%200-.168.01-.253.013.32.68.51%201.437.51%202.236%200%201.476-.62%202.807-1.61%203.756%202.314.69%204.084%202.656%204.486%205.08%203.414-.15%205.382-1.114%205.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z%22%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%22%23BA3628%22%3E%3Ccircle%20cx%3D%2212.413%22%20cy%3D%2213.439%22%20r%3D%224.209%22%2F%3E%3Cpath%20d%3D%22M14.198%2017.937h-3.57c-2.973%200-5.39%202.417-5.39%205.388v4.37l.01.067.303.095c2.838.885%205.3%201.18%207.33%201.18%203.96%200%206.257-1.13%206.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssCare2NewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.56%2021.21c1.558.926%203.202%201.637%204.95%202.122.746.207%201.255.03%201.596-.673.102-.21.25-.404.4-.586%202.322-2.812%201.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85%202.082-2.9%204.576-3.644%207.22-.372%201.33-.7%202.676-1.077%204.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84%201.48-.432%203.147-.23%203.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08%200-.143.063-.143.14%200%20.08.062.142.142.142h.28c.023%200%20.043-.007.062-.017%201.54.254%202.51%201.48%202.884%202.046-.38.265.127.786.08%201.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19%201.34.153.222.347.434.566.585%202.44%201.678%204.303%203.93%206.212%206.145.446.517.896%201.027%201.665%201.065.25.012.455.132.445.446v.123c.047.827.25%201.5.774%202.28%201.365%201.67%203.08%202.88%205.054%203.7.4.167.73.25%201.01.25.685%200%201.018-.517%201.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssCommentSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-150%20-150%20791%20791%22%3E%3Cg%3E%3Cpath%20d%3D%22M477.364%2C127.481c-22.839-28.072-53.864-50.248-93.072-66.522c-39.208-16.274-82.036-24.41-128.479-24.41%20c-46.442%2C0-89.269%2C8.136-128.478%2C24.41c-39.209%2C16.274-70.233%2C38.446-93.074%2C66.522C11.419%2C155.555%2C0%2C186.15%2C0%2C219.269%20c0%2C28.549%2C8.61%2C55.299%2C25.837%2C80.232c17.227%2C24.934%2C40.778%2C45.874%2C70.664%2C62.813c-2.096%2C7.611-4.57%2C14.842-7.426%2C21.7%20c-2.855%2C6.851-5.424%2C12.467-7.708%2C16.847c-2.286%2C4.374-5.376%2C9.23-9.281%2C14.555c-3.899%2C5.332-6.849%2C9.093-8.848%2C11.283%20c-1.997%2C2.19-5.28%2C5.801-9.851%2C10.848c-4.565%2C5.041-7.517%2C8.33-8.848%2C9.853c-0.193%2C0.097-0.953%2C0.948-2.285%2C2.574%20c-1.331%2C1.615-1.999%2C2.419-1.999%2C2.419l-1.713%2C2.57c-0.953%2C1.42-1.381%2C2.327-1.287%2C2.703c0.096%2C0.384-0.094%2C1.335-0.57%2C2.854%20c-0.477%2C1.526-0.428%2C2.669%2C0.142%2C3.429v0.287c0.762%2C3.234%2C2.283%2C5.853%2C4.567%2C7.851c2.284%2C1.992%2C4.858%2C2.991%2C7.71%2C2.991h1.429%20c12.375-1.526%2C23.223-3.613%2C32.548-6.279c49.87-12.751%2C93.649-35.782%2C131.334-69.094c14.274%2C1.523%2C28.074%2C2.283%2C41.396%2C2.283%20c46.442%2C0%2C89.271-8.135%2C128.479-24.414c39.208-16.276%2C70.233-38.444%2C93.072-66.517c22.843-28.072%2C34.263-58.67%2C34.263-91.789%20C511.626%2C186.154%2C500.207%2C155.555%2C477.364%2C127.481z%20M445.244%2C292.075c-19.896%2C22.456-46.733%2C40.303-80.517%2C53.529%20c-33.784%2C13.223-70.093%2C19.842-108.921%2C19.842c-11.609%2C0-23.98-0.76-37.113-2.286l-16.274-1.708l-12.277%2C10.852%20c-23.408%2C20.558-49.582%2C36.829-78.513%2C48.821c8.754-15.414%2C15.416-31.785%2C19.986-49.102l7.708-27.412l-24.838-14.27%20c-24.744-14.093-43.918-30.793-57.53-50.114c-13.61-19.315-20.412-39.638-20.412-60.954c0-26.077%2C9.945-50.343%2C29.834-72.803%20c19.895-22.458%2C46.729-40.303%2C80.515-53.531c33.786-13.229%2C70.089-19.849%2C108.92-19.849c38.828%2C0%2C75.13%2C6.617%2C108.914%2C19.845%20c33.783%2C13.229%2C60.62%2C31.073%2C80.517%2C53.531c19.89%2C22.46%2C29.834%2C46.727%2C29.834%2C72.802S465.133%2C269.615%2C445.244%2C292.075z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssCopyLinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M24.412%2021.177c0-.36-.126-.665-.377-.917l-2.804-2.804a1.235%201.235%200%200%200-.913-.378c-.377%200-.7.144-.97.43.026.028.11.11.255.25.144.14.24.236.29.29s.117.14.2.256c.087.117.146.232.177.344.03.112.046.236.046.37%200%20.36-.126.666-.377.918a1.25%201.25%200%200%201-.918.377%201.4%201.4%200%200%201-.373-.047%201.062%201.062%200%200%201-.345-.175%202.268%202.268%200%200%201-.256-.2%206.815%206.815%200%200%201-.29-.29c-.14-.142-.223-.23-.25-.254-.297.28-.445.607-.445.984%200%20.36.126.664.377.916l2.778%202.79c.243.243.548.364.917.364.36%200%20.665-.118.917-.35l1.982-1.97c.252-.25.378-.55.378-.9zm-9.477-9.504c0-.36-.126-.665-.377-.917l-2.777-2.79a1.235%201.235%200%200%200-.913-.378c-.35%200-.656.12-.917.364L7.967%209.92c-.254.252-.38.553-.38.903%200%20.36.126.665.38.917l2.802%202.804c.242.243.547.364.916.364.377%200%20.7-.14.97-.418-.026-.027-.11-.11-.255-.25s-.24-.235-.29-.29a2.675%202.675%200%200%201-.2-.255%201.052%201.052%200%200%201-.176-.344%201.396%201.396%200%200%201-.047-.37c0-.36.126-.662.377-.914.252-.252.557-.377.917-.377.136%200%20.26.015.37.046.114.03.23.09.346.175.117.085.202.153.256.2.054.05.15.148.29.29.14.146.222.23.25.258.294-.278.442-.606.442-.983zM27%2021.177c0%201.078-.382%201.99-1.146%202.736l-1.982%201.968c-.745.75-1.658%201.12-2.736%201.12-1.087%200-2.004-.38-2.75-1.143l-2.777-2.79c-.75-.747-1.12-1.66-1.12-2.737%200-1.106.392-2.046%201.183-2.818l-1.186-1.185c-.774.79-1.708%201.186-2.805%201.186-1.078%200-1.995-.376-2.75-1.13l-2.803-2.81C5.377%2012.82%205%2011.903%205%2010.826c0-1.08.382-1.993%201.146-2.738L8.128%206.12C8.873%205.372%209.785%205%2010.864%205c1.087%200%202.004.382%202.75%201.146l2.777%202.79c.75.747%201.12%201.66%201.12%202.737%200%201.105-.392%202.045-1.183%202.817l1.186%201.186c.774-.79%201.708-1.186%202.805-1.186%201.078%200%201.995.377%202.75%201.132l2.804%202.804c.754.755%201.13%201.672%201.13%202.75z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDiaryRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23912D31%22%20d%3D%22M16%203C8.82%203%203%208.82%203%2016s5.82%2013%2013%2013%2013-5.82%2013-13S23.18%203%2016%203zm0%2024.807C9.48%2027.807%204.192%2022.522%204.192%2016%204.192%209.48%209.48%204.193%2016%204.193c3.92%200%207.392%201.91%209.54%204.85h-8.308s-2.863.397-3.18%202.544c-.34%202.293-1.988%202.465-1.988%202.465h-4.69v1.51h9.74c.206-1.086%201.16-1.907%202.305-1.907%201.143%200%202.096.82%202.302%201.908h1.632v.874h-1.632c-.206%201.087-1.16%201.91-2.305%201.91-1.147%200-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67%200%201.988%202.464c.304%202.356%203.18%202.548%203.18%202.548h8.25c-2.15%202.895-5.596%204.77-9.48%204.77z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDiasporaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-1%2034%2034%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.498%206.49v6.258l-5.953-1.933L6%2015.57l5.95%201.934-3.677%205.063%204.046%202.942L16%2020.44l3.68%205.064%204.047-2.943L20.05%2017.5%2026%2015.57l-1.545-4.755-5.953%201.933V6.49h-5.004z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDiigoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23FFF%22%20d%3D%22M23.81%204.5c.012.198.035.396.035.593%200%204.807.026%209.615-.01%2014.422-.02%203.248-1.5%205.678-4.393%207.158-4.66%202.385-10.495-.64-11.212-5.836-.76-5.517%203.747-9.56%208.682-9.018%201.114.12%202.16.5%203.134%201.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914%2019.97c2.608.068%204.82-2.025%204.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867%202-4.973%204.71-.107%202.72%202.13%205.008%204.746%204.988z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDraugiemSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.55%2011.33c4.656.062%207.374%202.92%204.294%206.828-1.415%201.798-3.812%203.575-7.003%204.725-.15.056-.303.105-.46.16-.3.098-.595.188-.89.28a24.866%2024.866%200%200%201-4.05.814c-.464.043-.91.078-1.35.085-2.97.077-5.205-.74-5.93-2.474-.88-2.077.9-4.976%204.454-7.178-2.627%201.06-7.408%203.546-7.61%207.12v.454c.02.362.09.725.21%201.108.76%202.41%204.333%203.533%208.884%203.13.446-.036.892-.092%201.352-.16.66-.1%201.337-.23%202.027-.39a35.76%2035.76%200%200%200%202.02-.558c.154-.056.3-.098.454-.153.31-.094.608-.2.9-.31%203.945-1.436%206.87-3.34%208.58-5.526.975-1.253%201.476-2.424%201.574-3.448v-.787c-.28-2.61-3.317-4.135-7.45-3.717zm-3.024-1.29c.11%200%20.21-.014.307-.035.662-.167.983-.87%201.01-1.7.028-.885-.286-1.624-1.01-1.728-.063-.014-.125-.014-.195-.014-.578%200-.955.348-1.157.857-.094.265-.16.564-.163.885-.014.383.034.745.167%201.038.196.418.53.697%201.046.697zm-.014.292c-.293%200-.544.028-.76.084l.063.084.11.202.092.21.077.215.056.223.035.223.02.23.008.223v.237l-.014.23-.018.23-.028.23-.028.23-.043.23-.042.23-.04.223-.056.223-.042.212-.056.21-.057.2-.057.196-.042.19-.04.18-.02.11-.03.125-.028.132-.02.14-.03.152-.02.124v.03l-.028.166-.056.21-.02.172-.03.18-.02.182-.03.18-.02.19-.03.18-.02.188-.02.188-.02.19v.007c.04.537.082.997.103%201.26.02.3.085.517.18.663.14.215.378.292.706.32.28-.028.487-.084.647-.23.153-.14.237-.376.3-.753.118-.774.467-3.31.767-4.397.425-1.568%201.456-4.418-1.066-4.634-.122-.024-.226-.024-.338-.024zm-3.06-.8h.015c.976-.008%201.436-.9%201.436-1.994s-.46-1.993-1.436-2h-.014c-.99%200-1.45.9-1.45%202s.46%201.993%201.45%201.993zm-2.013%204.626c.09.383.18.732.254%201.052.307%201.254.606%204.16.718%205.038.105.885.418%201.073%201.052%201.136.62-.063.94-.25%201.045-1.136.105-.878.41-3.79.71-5.038.08-.314.175-.67.266-1.052.28-1.15.502-2.495%200-3.366-.32-.557-.94-.92-2.02-.92-1.088%200-1.708.37-2.03.92-.5.864-.27%202.216%200%203.366zm-1.35-4.153c.1.02.196.035.308.035.516%200%20.857-.28%201.045-.704.118-.293.174-.655.167-1.038a2.96%202.96%200%200%200-.167-.885c-.202-.51-.585-.857-1.157-.857-.07%200-.134%200-.197.014-.725.105-1.045.843-1.01%201.728.02.836.35%201.54%201.01%201.707zm-.3%209.373c.057.376.154.606.3.753.16.157.37.206.65.23.33-.024.557-.1.704-.32.09-.14.153-.36.18-.66.022-.264.064-.72.106-1.253v-.014l-.02-.187-.02-.188-.03-.188-.02-.18-.02-.19-.03-.18-.02-.18-.03-.183-.025-.174-.02-.166-.03-.167v-.02l-.02-.133-.028-.153-.028-.14-.024-.13-.028-.125-.03-.11-.034-.184-.056-.188-.04-.196-.058-.203-.056-.21-.056-.215-.04-.223-.057-.225-.04-.23-.033-.23-.028-.23-.03-.23-.02-.23-.008-.237v-.23l.007-.223.02-.23.034-.223.056-.222.07-.216.1-.21.11-.2.065-.085a3.128%203.128%200%200%200-.76-.083c-.11%200-.216%200-.32.014-2.524.216-1.492%203.066-1.067%204.634.262%201.054.603%203.59.728%204.364z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssDoubanSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M5.755%205.505h20.55v2.59H5.755v-2.59zm14.99%2018.47l1.93-4.29h2.21v-9.97h-18v9.98h2.04l1.93%204.29h-5.78v2.51h21.85v-2.51l-6.18-.01zm-10.74-6.95v-4.88h11.68v4.88h-11.68zm7.99%206.95h-4.37l-1.93-4.29h8.24l-1.94%204.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssEvernoteSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M7.884%208.573h2.276c.13%200%20.236-.106.236-.235%200%200-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007%200-.017.005-.025.014l-4.42%204.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27%201.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302%201.062%200%20.265.007.886.015%201.44l.014%201.054c0%20.494-.4.896-.896.897H7.99c-.485%200-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355%201.426%200%200%200%20.416.102%201.23.084.63.767%205.02%201.414%206.356.25.522.42.736.912.966%201.1.47%203.61.994%204.787%201.146%201.174.15%201.912.466%202.35-.457.002%200%20.088-.227.208-.56.382-1.156.435-2.18.435-2.924%200-.076.11-.078.11%200%200%20.524-.1%202.38%201.303%202.875.554.197%201.7.373%202.864.51%201.055.12%201.82.537%201.82%203.24%200%201.645-.346%201.87-2.152%201.87-1.464%200-2.02.038-2.02-1.125%200-.938.93-.842%201.616-.842.31%200%20.086-.23.086-.81%200-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786%202.978%200%202.706%201.036%203.208%204.418%203.208%202.65%200%203.588-.086%204.682-3.483.22-.67.742-2.718%201.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622%207.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488%201.332-1.453%201.08.033%201.23%201.056%201.237%201.75-.457-.205-1.02-.335-1.635-.357z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFacebookMessengerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M16%205C9.986%205%205.11%209.56%205.11%2015.182c0%203.2%201.58%206.054%204.046%207.92V27l3.716-2.06c.99.276%202.04.425%203.128.425%206.014%200%2010.89-4.56%2010.89-10.183S22.013%205%2016%205zm1.147%2013.655L14.33%2015.73l-5.423%203%205.946-6.31%202.816%202.925%205.42-3-5.946%206.31z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFarkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.925%209.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFintelSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xml%3Aspace%3D%22preserve%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20version%3D%221.1%22%20style%3D%22shape-rendering%3AgeometricPrecision%3B%20text-rendering%3AgeometricPrecision%3B%20image-rendering%3AoptimizeQuality%3B%20fill-rule%3Aevenodd%3B%20clip-rule%3Aevenodd%22%0AviewBox%3D%22-110%20-120%20428%20494%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cdefs%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%3C!%5BCDATA%5B.fil0%20%7Bfill%3A%23fff%7D.fil1%20%7Bfill%3A%23fff%7D%5D%5D%3E%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22Layer_x0020_1%22%3E%3Cmetadata%20id%3D%22CorelCorpID_0Corel-Layer%22%2F%3E%3Cpolygon%20class%3D%22fil0%22%20points%3D%22108%2C274%2048%2C274%2048%2C152%200%2C152%200%2C95%2048%2C95%2048%2C0%20208%2C0%20208%2C56%20108%2C56%20108%2C95%20180%2C95%20180%2C151%20108%2C151%20%22%2F%3E%3Cpolygon%20class%3D%22fil1%22%20points%3D%2299%2C272%20103%2C272%20103%2C147%20175%2C147%20175%2C100%20103%2C100%20103%2C52%20203%2C52%20203%2C7%20199%2C7%20199%2C48%2098%2C48%2098%2C104%20171%2C104%20171%2C142%2099%2C142%20%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFlipboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23F5CCCC%22%20d%3D%22M19%2019H7V7h12v12z%22%2F%3E%3Cpath%20fill%3D%22%23FAE5E5%22%20d%3D%22M25%2013H7V7h18v6z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M13%2025H7V7h6v18z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFolkdSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.956%2010.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496%201.85.406%202.405.972%201.197-.444.245-1.354.99-2.085%201.134-.14%201.386.588%201.697%201.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724%201.133%201.39%201.454-.376%202.954-.71%204.526-.973.41-.43.317-1.356.99-1.53%201.104.213%201.46%201.16%201.556%202.363-.586%201.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1%201.263-.144%201.81.926.625%201.29-.49%202.122-.42.48.503.495%202.374-.566%202.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97%201.083-1.695%201.39.094%201.236%201.462.38%202.12.974-.057%201.01-.8%201.345-1.838%201.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17%201.165-.21%201.415.278-.01%201.075-1.473%201.828-2.264%201.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24%201.26-1.777%201.455-2.12.555-.03-.86%201.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615%201.49-.076%201.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843%201.323-5.8%201.947-.187.467-.196%201.107-.566%201.39-.59.148-.625.036-1.273%200-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557%202.016-.472%203.78-1.195%205.8-1.667-.433-2.485%203.206-4.233-.85-3.893-.396-1.225.373-2.164%201.13-2.085%201.273.132.285%201.725%201.273%202.224.908-.498%201.543-1.263%202.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426%201.663-.355%201.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37%202.268-.273%203.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48%202.125-.633%202.12.416zm1.132%206.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885%202.7-.424%202.64zm-6.224%201.53c1.3.173%203.114-1.23%202.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44%203.98.99%204.17z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGoogleClassroomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%202%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M22.667%2016.667a1.667%201.667%200%201%200%200-3.334%201.667%201.667%200%200%200%200%203.334zM22.333%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117zm-13-1.333a1.668%201.668%200%201%200-.002-3.336%201.668%201.668%200%200%200%20.002%203.336zM9.667%2018c-1.928%200-4%20.946-4%202.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117z%22%2F%3E%3Cpath%20d%3D%22M15.335%2015.333A2.332%202.332%200%201%200%2013%2013a2.333%202.333%200%200%200%202.335%202.333zm.332%201.334c-2.572%200-5.333%201.392-5.333%203.11v1.557H21v-1.556c0-1.72-2.762-3.11-5.333-3.11zm3%2010.666h8v2h-8v-2z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGoogleBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-12%200%20100%20100%22%3E%3Cpath%20d%3D%22M%2051.22877660575707%2038.19080770219705%20A%2017%2017%200%201%200%2056%2050.00000000000001%20h%20-17%22%20stroke%3D%22%23fff%22%20stroke-width%3D%228%22%20fill%3D%22none%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGoogleGmailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M2.902%206.223h26.195v19.554H2.902z%22%2F%3E%3Cpath%20fill%3D%22%23E14C41%22%20d%3D%22M2.902%2025.777h26.195V6.223H2.902v19.554zm22.44-4.007v3.806H6.955v-3.6h.032l.093-.034%206.9-5.558%202.09%201.77%201.854-1.63%207.42%205.246zm0-.672l-7.027-4.917%207.028-6.09V21.1zm-1.17-14.67l-.947.905c-2.356%202.284-4.693%204.75-7.17%206.876l-.078.06L8.062%206.39l16.11.033zm-10.597%209.61l-6.62%205.294.016-10.914%206.607%205.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssHackerNewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M17.275%2017.834v7.13h-2.602v-7.182L9%207.035h3.07l2.967%206.115c.365.755.702%201.51.988%202.316.312-.728.65-1.483%201.042-2.29l3.018-6.142H23l-5.725%2010.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssHatenaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M6.96%208.33h7.328c1.247%200%202.206.366%202.875%201.098.666.733%201.002%201.64%201.002%202.72%200%20.91-.24%201.688-.715%202.336-.318.433-.784.773-1.396%201.023.928.266%201.614.72%202.05%201.367.44.645.66%201.457.66%202.432%200%20.795-.157%201.512-.468%202.146-.314.635-.74%201.14-1.28%201.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877%206.017h1.74c.623%200%201.058-.13%201.302-.382.24-.255.364-.623.364-1.104%200-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0%206.027h2.038c.69%200%201.176-.145%201.458-.434.282-.29.425-.68.425-1.168%200-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213%208.52h3.584v9.58h-3.584z%22%2F%3E%3Ccircle%20cx%3D%2223.005%22%20cy%3D%2221.635%22%20r%3D%222.036%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssInstapaperSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23111%22%20d%3D%22M11.98%205.5h8.04v1.265h-.62c-.582%200-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182%201.732v13.53c0%20.683.064%201.167.195%201.453.13.286.313.494.55.625.234.13.658.196%201.27.196h.618V26.5H11.98v-1.265h.662c.592%200%201.012-.067%201.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssJamespotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12.427%2024.073c.677.4%201.633.708%202.927.708%201.848%200%202.587-.83%202.587-2.71V5h2.436v17.13c0%202.745-1.478%204.87-5.176%204.87-1.664%200-2.99-.4-3.573-.678l.8-2.25z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssKakaoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.345%206h-8.688c-.583%200-1.06.45-1.06%201.005v8.814c0%20.553.477%201.003%201.06%201.003h4.007c-.03.98-.445%202.056-1.077%202.996-.612.904-1.613%201.796-2.156%202.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022%202.774%202.975s.137.137.247.163c.126.03.27.032.368-.042%204.84-3.56%205.537-8.023%205.66-10.44V7.004C21.403%206.45%2020.93%206%2020.346%206%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssKikSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M23.436%2020.74a2.511%202.511%200%200%200%20.109-5.019h-.11a2.516%202.516%200%200%200-2.507%202.515%202.509%202.509%200%200%200%202.508%202.508zm-7.946-3.09l2.89-2.89c.93-.93.93-2.434%200-3.363a2.374%202.374%200%200%200-3.362%200l-4.262%204.263V7.267A2.378%202.378%200%200%200%206%207.263V24.7a2.378%202.378%200%200%200%204.756.002v-2.316l1.335-1.335%203.76%205.07a2.378%202.378%200%200%200%203.866-2.771c-.016-.02-.03-.04-.047-.06l-4.177-5.638v-.002z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssKindleItSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFA036%22%20d%3D%22M12.927%2027H10V5h2.927v11.754l5.15-5.47h3.683l-5.814%206.067L22%2027h-3.407l-4.704-7.763-.964%201.037V27z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssKnownSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.38%202.65c-7.45%200-13.5%206.048-13.5%2013.5s6.05%2013.5%2013.5%2013.5%2013.5-6.048%2013.5-13.5-6.04-13.5-13.5-13.5zm.078%2025.203c-6.387%200-11.57-5.184-11.57-11.572%200-6.385%205.183-11.57%2011.57-11.57%206.387%200%2011.57%205.185%2011.57%2011.57.002%206.39-5.175%2011.574-11.57%2011.574z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M23.856%2021.758c-.393%200-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964%203.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31%200%20.494.023.57.077.078.054.117.13.117.23%200%20.055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257%204.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34%200%20.58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0%20.478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363%200-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013%202.4%203.842c.2.332.3.54.3.625%200%20.077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssLineSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28%2014.304c0-5.37-5.384-9.738-12-9.738S4%208.936%204%2014.304c0%204.814%204.27%208.846%2010.035%209.608.39.084.923.258%201.058.592.122.303.08.778.04%201.084l-.172%201.028c-.05.303-.24%201.187%201.04.647s6.91-4.07%209.43-6.968c1.737-1.905%202.57-3.842%202.57-5.99zM11.302%2017.5H8.918c-.347%200-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348%200%20.63.283.63.63v4.14h1.754c.35%200%20.63.28.63.628%200%20.347-.282.63-.63.63zm2.467-.63c0%20.347-.284.628-.63.628-.348%200-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm5.74%200c0%20.27-.175.51-.433.596-.065.02-.132.032-.2.032-.195%200-.384-.094-.502-.25l-2.443-3.33v2.95c0%20.35-.282.63-.63.63-.347%200-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197%200%20.386.094.503.252l2.444%203.328V12.1c0-.347.282-.63.63-.63.346%200%20.63.284.63.63v4.77zm3.855-3.014c.348%200%20.63.282.63.63%200%20.346-.282.628-.63.628H21.61v1.126h1.755c.348%200%20.63.282.63.63%200%20.347-.282.628-.63.628H20.98c-.345%200-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348%200%20.63.283.63.63%200%20.346-.282.628-.63.628h-1.754v1.126h1.754z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssLiveJournalSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M7.08%209.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06%201.493-1.683%203.524-2.692%206.08-3.015l.733-.097.426.61%208.426%2012.14.188.27.027.328.608%207.65.164%202.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79%2011.235%205.05%202.13-.427-5.32-7.79-11.226c-1.603.326-2.884%201.032-3.84%202.102-.227.252-.428.514-.602.775z%22%2F%3E%3Cpath%20fill%3D%22%23FFC805%22%20d%3D%22M8.186%2010.4c1.283-2.66%203.488-4.192%206.62-4.594l8.423%2012.14.61%207.648-7.23-3.057L8.186%2010.4z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M15.158%206.316l1.89%202.717c-2.597.352-5.354%202.552-6.603%204.62l-1.898-2.735c1.115-2.09%204.27-4.18%206.61-4.602z%22%2F%3E%3Cpath%20fill%3D%22%239291AD%22%20d%3D%22M13.285%2010.666c-1.22.873-2.197%201.915-2.84%202.987l-1.898-2.735c.557-1.043%201.654-2.108%202.875-2.944l1.863%202.692z%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M7.215%2010.283c1.35-3.24%204.182-4.8%207.568-5.527l.55-.026.38.397.314.322%201.14%201.817-1.835.243h-.012c-.242.038-.512.108-.8.212h-.003c-.3.1-.613.238-.957.406-1.69.837-3.4%202.216-3.898%203.306l-.928%201.746-1.252-1.66-.166-.285-.25-.453.15-.5z%22%2F%3E%3Cpath%20fill%3D%22%23F5A8AA%22%20d%3D%22M8.33%2010.597c.95-2.725%203.1-4.214%206.504-4.615l.314.322c-2.3.35-5.756%202.777-6.598%204.62l-.22-.327z%22%2F%3E%3Cpath%20fill%3D%22%23485E85%22%20d%3D%22M23.69%2022.727l.283%203.084-2.924-1.235%201.224-1.202%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M16.41%2021.274c.053-.062.113-.133.176-.197.635-.712%201.287-1.447%201.43-2.695l-4.875-7.02c-.436.35-.832.706-1.176%201.062-.363.382-.674.775-.924%201.168l5.37%207.682zm.93.483c-.203.222-.398.445-.572.665l-.416.54-.402-.566-5.94-8.49-.183-.265.166-.282c.318-.558.73-1.097%201.236-1.63.494-.526%201.076-1.027%201.726-1.5l.424-.305.296.425%205.27%207.6.103.15-.014.17c-.113%201.718-.92%202.615-1.697%203.49z%22%2F%3E%3Cpath%20fill%3D%22%236A9AC2%22%20d%3D%22M16.367%2022.11c.846-1.09%202.03-1.903%202.164-3.868l-5.273-7.602c-1.27.914-2.227%201.933-2.83%202.97l5.94%208.5z%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M22.125%2017.31c-.09.026-.168.062-.248.093-.89.35-1.81.71-3.027.396l-4.87-7.02c.48-.29.95-.53%201.405-.73.486-.208.96-.36%201.42-.464l5.32%207.724zm.12%201.037c.28-.11.563-.22.823-.294l.658-.21-.39-.568-5.888-8.532-.18-.267-.32.052c-.635.105-1.287.3-1.967.59-.66.286-1.67.887-2.342%201.33l5.893%208.313c1.647.49%202.627.014%203.717-.412z%22%2F%3E%3Cpath%20fill%3D%22%23A1BBD6%22%20d%3D%22M22.896%2017.537c-1.312.41-2.498%201.232-4.383.67l-5.272-7.6c1.303-.87%202.59-1.412%203.77-1.605l5.887%208.535z%22%2F%3E%3Cpath%20fill%3D%22%23203468%22%20d%3D%22M18.248%208.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46%202.964-5.784%205.454l-.68-1.004c.604-.86%202.52-5.224%208.484-5.94.27.258.415.692.636%201.04z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMailRuSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23F89C0E%22%20d%3D%22M19.975%2015.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63%200-4.09%202.068-4.09%204.417%200%202.633%201.765%204.296%204.077%204.296%202.58%200%204.275-1.89%204.4-4.127l-.003-.515zm-4.37-6.346c1.755%200%203.407.776%204.62%201.993v.006c0-.584.395-1.024.94-1.024h.14c.85%200%201.025.808%201.025%201.063l.005%209.08c-.06.595.613.9.988.52%201.457-1.497%203.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904%202.003-4.764%206.438-2.958%2010.603%201.968%204.543%207.6%205.896%2010.947%204.546%201.696-.684%202.48%201.607.72%202.355-2.66%201.132-10.066%201.02-13.525-4.972-2.338-4.046-2.212-11.163%203.987-14.85%204.74-2.822%2010.99-2.042%2014.762%201.895%203.937%204.117%203.705%2011.82-.137%2014.818-1.742%201.36-4.326.035-4.312-1.947l-.02-.647c-1.21%201.203-2.824%201.905-4.58%201.905-3.475%200-6.53-3.056-6.53-6.528%200-3.508%203.057-6.6%206.533-6.6%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMendeleySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M26.596%2018.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102%201.15-2.322%202.646-2.616%202.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37%202.237-2.15%203.954.08.625.278%201.235.377%201.863.338%202.122-.105%202.7-2.226%203.147-1.066.228-1.913.786-2.05%201.99-.137%201.22.17%202.39%201.404%202.75.77.226%201.853.084%202.55-.32.96-.553%201.064-1.64.733-2.74-.62-2.05-.027-3.04%202.115-3.34.836-.117%201.766-.022%202.568.235%201.302.41%201.692%201.373%201.175%202.65-.45%201.1-.443%202.09.39%202.984.84.9%202.417%201.08%203.518.435%201.12-.657%201.497-1.807%201.042-3.164-.608-1.814-.085-2.783%201.807-3.123.7-.126%201.463-.113%202.16.025%201.834.367%202.377%201.377%201.84%203.188-.504%201.698.196%203.09%201.72%203.43%201.332.295%202.624-.607%202.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46%201.148-2.567%202.61-2.54%201.467.026%202.57%201.177%202.523%202.627-.05%201.43-1.255%202.545-2.687%202.483z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMeneameSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M25.514%2010.435c-1.582%201.605-4.438%201.56-5.502%203.726-.906%202.57%201.23%206.677%202.12%209.02.603%201.21-4.716%202.378-4.065%202.677%203.754-.043%205.354-1.412%204.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938%202.222-2.533%203.618-3.322%201.622-.727%203.14-2.35%202.72-4.25-.018-.672-1.187-2.907-.71-1.175.26%201.278.385%202.856-.706%203.802z%22%2F%3E%3Cpath%20d%3D%22M20.632%207.546C18.59%206.492%2016.32%205.854%2013.946%206.41c-1.277.236-2.78.933-3.637%202.1-1.123%201.34-1.166%203.288-.43%204.82.57%201.18%201.44%202.492%202.85%202.688%201.21.182%202.54.018%203.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7%202.705-2.178%204.62-2.262%202.55-.11%204.995%201.345%205.934%201.7.903.285%202.2.645%202.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543%201.943-1.524%201.66-.736-.17-1.41-.523-2.104-.81zM6.94%2015.156c-1.183%201.865-2.264%204.05-1.85%206.322.38%202.375%202.678%204.05%204.963%204.35%202.348.273%204.69.205%207.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814%201.782-3.568%202.903-5.084-.876.727-1.683%201.27-2.456%202.376z%22%2F%3E%3Cpath%20d%3D%22M12.787%2021.02c1.386.107%203.688-.032%204.768.724.387.582-.332%203.802-.084%204.174.553.162%201.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMixiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23D1AD5A%22%20d%3D%22M16.09%205.246C9.617%205.246%204%209.216%204%2016.63c0%206.93%207.707%2010.193%2012.758%209.01v2.374S28%2025.054%2028%2015.034c0-6.11-4.505-9.788-11.91-9.788z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.92%2020.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9%200-2.525.374-2.525%202.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15%200-2.727.807-2.727%202.403v4.94H9.605v-9.01h1.657v1.03c.656-.546%201.564-1.03%202.727-1.03%201.222%200%202.09.434%202.604%201.282.73-.677%201.777-1.202%203.082-1.202%201.97%200%203.24%201.788%203.24%203.202v5.73z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMySpaceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M24%2017.716c-2.21%200-4%201.79-4%204v1.712h8v-1.713c0-2.21-1.79-4-4-4z%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212.571%22%20r%3D%223.999%22%2F%3E%3Cpath%20d%3D%22M15.147%2018.31c-2.054%200-3.72%201.66-3.72%203.71v1.408h7.437c.002-.615.002-1.148.002-1.408%200-2.05-1.664-3.71-3.72-3.71z%22%2F%3E%3Cellipse%20cx%3D%2215.147%22%20cy%3D%2213.446%22%20rx%3D%223.719%22%20ry%3D%223.71%22%2F%3E%3Cpath%20d%3D%22M7.148%2018.875C5.41%2018.875%204%2020.277%204%2022.008v1.42h6.295c.002-.636.002-1.178.002-1.42%200-1.73-1.41-3.133-3.15-3.133z%22%2F%3E%3Cellipse%20cx%3D%227.148%22%20cy%3D%2214.58%22%20rx%3D%223.148%22%20ry%3D%223.133%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssNetvouzSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%236C3%22%20d%3D%22M10.25%208.72v17.184H5.5V6.096h8.396l5.605%205.77v6.43%22%2F%3E%3Cpath%20fill%3D%22%2309C%22%20d%3D%22M21.75%2023.28V6.095h4.75v19.808h-8.396L12.5%2020.13v-6.427%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssOdnoklassnikiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssOutlookcomSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%208.29v5.5l1.92%201.208c.053.016.163.016.212%200l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M19.52%2015.84l1.755%201.204c.246.183.543%200%20.543%200-.297.183%208.104-5.397%208.104-5.397V21.75c0%201.102-.704%201.562-1.496%201.562H19.52V15.84z%22%2F%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.445%2013.305c-.6%200-1.073.282-1.426.842-.355.56-.53%201.305-.53%202.23%200%20.936.175%201.677.53%202.22.347.546.813.82%201.38.82.59%200%201.055-.266%201.4-.795.344-.53.517-1.266.517-2.206%200-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z%22%2F%3E%3Cpath%20d%3D%22M2.123%205.5v21.51l16.362%203.428V2.33L2.123%205.5zm10.95%2014.387c-.693.91-1.594%201.367-2.706%201.367-1.082%200-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448%200-1.496.343-2.707%201.037-3.63.693-.926%201.614-1.388%202.754-1.388%201.08%200%201.955.438%202.62%201.324.667.885%201%202.05%201%203.495.004%201.496-.345%202.695-1.034%203.604z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPapalySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3.5%20-3.5%2038%2038%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.744%208.217c1.112%200%202.296.519%203.106%201.329l.185.185c1.361%201.361%201.402%204.432.042%205.792l-3.103%202.787L16%2022.777l-4.974-4.467-3.103-2.787c-1.361-1.361-1.319-4.432.042-5.792l.185-.185c.81-.81%201.994-1.329%203.106-1.329.756%200%201.48.24%202.03.79L16%2012.291l2.714-3.284c.55-.55%201.274-.79%202.03-.79m0-2.921c-1.58%200-3.035.585-4.096%201.646l-.098.098-.088.107-.462.558-.462-.559-.088-.106-.098-.098c-1.061-1.061-2.516-1.646-4.096-1.646-1.871%200-3.804.816-5.172%202.184l-.185.185c-2.515%202.515-2.535%207.43-.042%209.924l.055.055.058.052%203.103%202.787%204.974%204.467L16%2026.704l1.952-1.753%204.974-4.467%203.103-2.787.058-.052.055-.055c2.494-2.494%202.473-7.409-.042-9.924l-.184-.186c-1.368-1.368-3.301-2.184-5.172-2.184z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPinboardSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M17.357%2018.913l-5.01%205.014.88-4.5-6.588-8.075-3.48.044%204.316-4.313%204.035-4.04V6.85l7.796%206.403%204.502-.786-4.876%204.87%209.907%2011.62%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPlurkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.215%2016.016h-8.43V9.7h8.43v6.316zm4.2%204.2V5.5H7.585v21h4.2v-6.285h12.63z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPocketSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%20-1%2032%2032%22%3E%3Cpath%20fill%3D%22%23EE4056%22%20d%3D%22M16.005%206.244c2.927%200%205.854-.002%208.782%200%201.396.002%202.195.78%202.188%202.165-.015%202.485.116%204.987-.11%207.456-.75%208.204-10.027%2012.607-16.91%208.064-3.086-2.036-4.82-4.925-4.917-8.672-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98%202.056-1.983%202.975-.01%205.952-.004%208.93-.006zm-5.037%205.483c-.867.093-1.365.396-1.62%201.025-.27.67-.078%201.256.417%201.732%201.688%201.62%203.378%203.238%205.09%204.838.745.695%201.537.687%202.278-.01%201.654-1.55%203.298-3.112%204.93-4.686.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097%201.04-2.215%202.06-3.266%203.143-.485.494-.77.434-1.227-.025-1.1-1.107-2.234-2.18-3.39-3.225-.325-.29-.77-.447-1.017-.583z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPrintFriendlySvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23A9A9A9%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M4.467%2014.305h23.065v6.498H4.467v-6.498z%22%2F%3E%3Cpath%20fill%3D%22%23DCDCDC%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M5.228%2012.83H26.77l.745%201.39H4.485l.743-1.39z%22%2F%3E%3Cpath%20d%3D%22M9.19%208.118h13.467v6.106H9.19z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M9.844%206.516h12.312v7.31H9.844z%22%2F%3E%3Cpath%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M8.602%2017.37h14.574v3.396H8.602z%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.1%22%20d%3D%22M10.152%2017.97h11.27l2.233%207.515H7.92l2.232-7.514z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssProtopageBookmarksSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20stroke%3D%22%23fff%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M17.866%2014.47l7.626-1.048.574%203.078-7.68%201.038%203.54%207.058-2.804%201.418-3.614-7.23-5.873%205.557-2.144-2.29%205.74-5.42-6.86-3.602%201.593-2.697%206.808%203.595%201.3-7.375%203.1.546-1.303%207.374z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssPushaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M29.27%2022.188V8.068L17.208%2014.92l3.838%202.33C15.716%2024.144%205.898%2029.306%200%2031.964V32h19.635c3.682-4.865%207.03-11.46%207.03-11.46l2.605%201.648z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssQzoneSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFC820%22%20d%3D%22M27.996%2012.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.043c-.29-.598-.765-.598-1.055%200l-3.384%207.04c-.23.393-.337.48-.896.534l-7.188.808c-.66.064-.808.493-.327.952l5.64%205.185c.265.25.27.355.194.697l-1.447%207.61c-.122.65.25.914.823.58l6.44-3.716c.45-.284.868-.293%201.31-.018l6.47%203.734c.575.333.948.07.826-.582L22.83%2021.2c.663-.226%201.306-.5%201.69-.81l-.155.03c-2.29.547-5.437.872-8.355.872-1.08%200-2.126-.038-3.128-.11l-.006.005c-.88-.063-1.727-.15-2.53-.26-.3-.05.026-.242.026-.242l7.758-5.513s.202-.126.002-.153c-3.188-.5-6.723-.625-10.042-.625h-.23c2.245-.51%205.07-.815%208.14-.815%201.81%200%203.538.106%205.11.297-.003.003.887.124%201.31.193.33.05.024.24.024.24l-7.77%205.385s-.18.106.015.135c2.39.338%205.333.458%207.98.492l-.12-.652c-.057-.378%200-.51.286-.78l5.478-5.12c.484-.454.34-.88-.32-.944z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRediffMyPageSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M22.506%206.004c-.336%200-.64%200-.92-.002L20.926%206c-1.742%200-2.418.07-3.738.923-.744.457-1.38%201.034-1.85%201.517V6.188c0-.102-.08-.184-.182-.184h-5.71c-.1%200-.183.082-.183.184v19.62c0%20.115.115.23.232.18h5.71c.1%200%20.18-.08.18-.18V14.933c0-2.584%201.85-2.916%203.464-2.916h3.703c.1%200%20.182-.08.182-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRefindSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M16%2021.256c-2.891%200-5.256-2.365-5.256-5.255%200-2.891%202.365-5.255%205.255-5.255%202.891%200%205.255%202.365%205.255%205.255.002%202.89-2.363%205.255-5.254%205.255z%22%2F%3E%3Cpath%20d%3D%22M20.664%2023.676A8.91%208.91%200%200%201%2016%2025c-4.95%200-9-4.05-9-9s4.05-9%209-9%209%204.05%209%209a8.912%208.912%200%200%201-1.302%204.628l2.293%201.991A11.908%2011.908%200%200%200%2028%2016c0-6.6-5.4-12-12-12S4%209.4%204%2016s5.4%2012%2012%2012c2.456%200%204.745-.75%206.652-2.029l-1.988-2.295z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRenrenSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M18.74%203.266C17.833%203.088%2016.924%203%2016.013%203c-.934%200-1.843.088-2.753.266%200%208.96-.07%2016.176-9.26%2021.662C5.138%2026.566%206.616%2027.96%208.322%2029c3.595-2.168%205.687-4.736%207.69-8.275%202%203.54%204.07%206.107%207.688%208.275%201.706-1.04%203.184-2.434%204.3-4.072-9.19-5.487-9.26-12.7-9.26-21.662z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSinaWeiboSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M4.91%2019.953c0%203.028%203.943%205.484%208.807%205.484%204.862%200%208.806-2.456%208.806-5.484%200-3.027-3.943-5.482-8.806-5.482-4.863%200-8.807%202.457-8.807%205.484%22%2F%3E%3Cpath%20fill%3D%22%23E6162D%22%20d%3D%22M13.92%2024.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827%202.987-5.463%207.292-5.888%204.304-.426%208.018%201.52%208.297%204.345.276%202.83-2.985%205.466-7.29%205.89m8.612-9.38c-.367-.11-.62-.186-.428-.665.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03%200-.004-.834.362-.62-.297.406-1.31.345-2.406-.29-3.04-1.435-1.436-5.255.056-8.53%203.33C4.424%2014.77%203%2017.37%203%2019.618c0%204.3%205.513%206.913%2010.907%206.913%207.07%200%2011.776-4.106%2011.776-7.37%200-1.97-1.66-3.09-3.15-3.55%22%2F%3E%3Cpath%20fill%3D%22%23F93%22%20d%3D%22M27.226%207.74C25.52%205.848%2023%205.127%2020.676%205.62h-.002c-.536.115-.88.644-.765%201.182.112.536.642.882%201.18.765%201.653-.35%203.442.164%204.66%201.508%201.212%201.346%201.542%203.18%201.02%204.787-.17.525.118%201.085.64%201.255.524.168%201.088-.118%201.256-.64v-.004c.728-2.262.268-4.84-1.44-6.732m-2.622%202.367c-.832-.922-2.058-1.272-3.192-1.03-.462.098-.756.552-.656%201.017.097.46.553.758%201.016.657v.003c.552-.117%201.15.053%201.562.502.406.453.514%201.066.338%201.606h.004c-.147.45.102.935.55%201.08.45.144.936-.102%201.08-.552.356-1.1.135-2.357-.7-3.28%22%2F%3E%3Cpath%20d%3D%22M14.16%2019.87c-.15.26-.484.383-.746.275-.256-.104-.335-.393-.19-.646.15-.253.47-.376.725-.274.26.094.35.386.21.644m-1.373%201.762c-.417.665-1.308.956-1.98.65-.66-.303-.855-1.073-.44-1.722.413-.644%201.274-.932%201.94-.652.673.287.888%201.054.48%201.724m1.564-4.7c-2.046-.533-4.363.488-5.253%202.293-.904%201.84-.028%203.884%202.04%204.552%202.144.69%204.67-.368%205.55-2.354.865-1.944-.216-3.944-2.336-4.49%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSiteJotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23CA0805%22%20d%3D%22M23.506%208.08c.645%200%201.3.073%201.967.225.547.12.937.285%201.173.495.236.21.354.5.354.868%200%20.232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.302-.094%201.482-.134%203.54-.018%201.99-.033%203.185-.048%203.583-.015.398-.05.785-.107%201.16-.167%201.098-.504%201.958-1.01%202.582-.414.51-.946.912-1.596%201.205-.65.294-1.335.44-2.054.44-.64%200-1.278-.108-1.92-.325-.64-.22-1.197-.518-1.67-.902-.39-.315-.7-.74-.93-1.278-.23-.538-.347-1.11-.347-1.72%200-.75.184-1.37.546-1.863.362-.492.816-.738%201.363-.738.534%200%20.99.207%201.362.62.375.42.56.938.56%201.555%200%20.155-.033.42-.102.787-.012.075-.018.157-.018.247%200%20.24.066.436.2.586.13.15.307.227.524.227.386%200%20.696-.226.933-.677.234-.45.352-1.043.352-1.78l-.01-1.024-.017-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.246-.23-.29-.065-.046-.245-.117-.538-.215-.138-.038-.256-.144-.353-.315-.098-.174-.147-.357-.147-.554%200-.405.122-.73.366-.975.245-.242.644-.44%201.196-.59.62-.17%201.254-.25%201.91-.25z%22%2F%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M10.202%208c.593%200%201.37.19%202.33.574.114.046.207.068.275.068.058%200%20.23-.068.518-.203.093-.047.19-.07.294-.07.383%200%20.79.4%201.22%201.195.43.797.642%201.555.642%202.275%200%20.422-.097.776-.29%201.066-.19.288-.426.434-.702.434-.23%200-.416-.06-.56-.18-.144-.12-.46-.478-.95-1.07-.69-.842-1.368-1.263-2.035-1.263-.322%200-.58.102-.772.305-.192.203-.29.47-.29.8%200%20.653.44%201.146%201.32%201.476%201.192.46%201.954.793%202.287%201.003%201.467.934%202.2%202.305%202.2%204.114%200%201.6-.5%202.907-1.5%203.922C13.163%2023.48%2011.826%2024%2010.176%2024c-.736%200-1.513-.115-2.33-.344-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.764-.745-1.57-.22-.81-.33-1.596-.33-2.363%200-.367.058-.646.173-.833.143-.24.324-.36.543-.36.22%200%20.43.146.63.438.12.165.405.695.855%201.59.215.42.553.768%201.016%201.048.463.278.94.417%201.437.417.426%200%20.77-.104%201.035-.31.265-.207.396-.472.396-.794%200-.3-.103-.56-.31-.777-.208-.22-.544-.422-1.01-.61-.823-.337-1.45-.648-1.88-.93-.433-.28-.835-.636-1.21-1.063-.908-1.053-1.362-2.246-1.362-3.583%200-.66.12-1.306.355-1.933.236-.627.57-1.17%201-1.628C7.633%208.53%208.812%208%2010.203%208z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSkypeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M27.15%2018c-.007.04-.012.084-.02.126l-.04-.24.06.113c.124-.678.19-1.37.19-2.06%200-1.53-.3-3.013-.892-4.41a11.273%2011.273%200%200%200-2.43-3.602%2011.288%2011.288%200%200%200-8.012-3.32c-.72%200-1.443.068-2.146.203h-.005c.04.023.08.04.118.063l-.238-.037c.04-.01.08-.018.12-.026a6.717%206.717%200%200%200-3.146-.787%206.67%206.67%200%200%200-4.748%201.965A6.7%206.7%200%200%200%204%2010.738c0%201.14.293%202.262.844%203.253.007-.04.012-.08.02-.12l.04.238-.06-.114c-.112.643-.17%201.3-.17%201.954a11.285%2011.285%200%200%200%203.32%208.012c1.04%201.04%202.25%201.86%203.602%202.43%201.397.592%202.882.89%204.412.89.666%200%201.334-.06%201.985-.175-.038-.02-.077-.04-.116-.063l.242.04c-.046.01-.088.015-.13.02a6.68%206.68%200%200%200%203.3.87%206.661%206.661%200%200%200%204.743-1.963A6.666%206.666%200%200%200%2028%2021.26c0-1.145-.295-2.27-.85-3.264zm-11.098%204.885c-4.027%200-5.828-1.98-5.828-3.463%200-.76.562-1.294%201.336-1.294%201.723%200%201.277%202.474%204.49%202.474%201.647%200%202.556-.893%202.556-1.808%200-.55-.27-1.16-1.355-1.426l-3.58-.895c-2.88-.723-3.405-2.282-3.405-3.748%200-3.043%202.865-4.186%205.556-4.186%202.478%200%205.4%201.37%205.4%203.192%200%20.783-.677%201.237-1.45%201.237-1.472%200-1.2-2.035-4.163-2.035-1.47%200-2.285.666-2.285%201.618%200%20.95%201.16%201.254%202.17%201.484l2.65.587c2.905.647%203.64%202.342%203.64%203.94%200%202.47-1.895%204.318-5.726%204.318z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSMSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-140%20-170%20770%20770%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cg%3E%3Cpath%20d%3D%22M87.412%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997c0-4.888-2.93-7.22-14.037-10.927%20c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.806-31.198c11.122%200%2021.078%202.526%2026.923%205.456%20l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803c0%204.485%203.707%206.832%2015.412%2010.927%20c18.133%206.234%2025.741%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809c-12.482%200-23.604-2.721-30.809-6.622%20L87.412%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M172.23%20166.856c0-11.884-0.389-22.034-0.777-30.42h24.964l1.36%2012.871h0.583c4.096-6.039%2012.482-15.008%2028.866-15.008%20c12.288%200%2022.034%206.233%2026.13%2016.174h0.389c3.513-4.873%207.803-8.775%2012.288-11.495c5.277-3.124%2011.122-4.679%2018.148-4.679%20c18.327%200%2032.184%2012.871%2032.184%2041.333v56.177h-28.866v-51.872c0-13.857-4.5-21.855-14.052-21.855%20c-6.817%200-11.705%204.679-13.648%2010.344c-0.777%202.138-1.166%205.262-1.166%207.609v55.773h-28.866v-53.441%20c0-12.093-4.29-20.285-13.663-20.285c-7.594%200-12.093%205.86-13.842%2010.733c-0.972%202.332-1.166%205.068-1.166%207.415v55.579H172.23%20V166.856z%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M339.729%20205.872c5.456%203.318%2016.772%207.22%2025.547%207.22c8.969%200%2012.676-3.124%2012.676-7.997%20c0-4.888-2.93-7.22-14.037-10.927c-19.702-6.637-27.311-17.355-27.117-28.671c0-17.744%2015.218-31.198%2038.807-31.198%20c11.122%200%2021.063%202.526%2026.922%205.456l-5.262%2020.48c-4.29-2.347-12.482-5.471-20.674-5.471c-7.22%200-11.316%202.93-11.316%207.803%20c0%204.485%203.707%206.832%2015.412%2010.927c18.133%206.234%2025.742%2015.412%2025.936%2029.449c0%2017.744-14.037%2030.809-41.348%2030.809%20c-12.482%200-23.604-2.721-30.809-6.622L339.729%20205.872z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M383.947%20490L230.694%20364.252H50.713c-27.924%200-50.631-23.111-50.631-51.528V51.528C0.082%2023.111%2022.789%200%2050.713%200%20h388.574c27.924%200%2050.631%2023.111%2050.631%2051.528v261.197c0%2028.417-22.707%2051.528-50.631%2051.528h-55.34V490z%20M50.713%2030.615%20c-11.032%200-20.016%209.388-20.016%2020.913v261.197c0%2011.525%208.984%2020.913%2020.016%2020.913h190.923l111.696%2091.635v-91.635h85.954%20c11.032%200%2020.016-9.388%2020.016-20.913V51.528c0-11.525-8.984-20.913-20.016-20.913H50.713z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSlashdotSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23FFF%22%3E%3Cpath%20d%3D%22M20.89%206h-5L8.61%2026h5%22%2F%3E%3Ccircle%20cx%3D%2220.89%22%20cy%3D%2223.5%22%20r%3D%222.5%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSvejoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%235BD428%22%20d%3D%22M19.865%2010.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147%202.21-1.387%203.04.26.11.51.24.76.38%202.13%201.19%202.83%202.92%203.04%203.72z%22%2F%3E%3Cpath%20fill%3D%22%2337AD29%22%20d%3D%22M19.865%2010.524c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0%202.92%203.08%204.95c.48-.17%201-.31%201.57-.42%201.81-.32%203.19.19%203.88.54z%22%2F%3E%3Cpath%20fill%3D%22%23FDAA09%22%20d%3D%22M10.796%2013.244c-.93%201.82%202.15%206.7%204.75%209.37%201.29%201.33%201.93%202.48%202.19%203.052%202.1.5%203.278-.29%203.42-.4l.068-.12c.932-1.94-1.46-4.818-3.19-7.068-2.138-2.78-2.698-4.832-2.698-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z%22%2F%3E%3Cpath%20fill%3D%22%23FEE70A%22%20d%3D%22M21.176%2025.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6%201.19-.67%204.5.7%206.44%200%200-.38%201.28.62%202.37.67.73%202.22%201.06%203.06.76l.17-.07s1.73%201.302%204.37.813c2.64-.49%204.33-1.73%205.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83%201.542-3.51%202.66l-.1.17s1.02-1.59%204.53-.01c.84.382%201.83.94%202.98%201.75%202.41%201.692%204.03%203.432%205.2%205.53.3.53.98.57%201.37-.198.61-1.2.68-4.512-.69-6.45z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssSymbalooFeedsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M7%207h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2013.75h4.5v4.5H7zm6.75%200h4.5v4.5h-4.5zm6.75%200H25v4.5h-4.5zM7%2020.5h4.5V25H7zm6.75%200h4.5V25h-4.5zm6.75%200H25V25h-4.5z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTelegramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssThreemaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.4%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M24.067%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200M17.733%2025.941a1.734%201.734%200%201%201-3.467%200%201.734%201.734%200%200%201%203.467%200%22%2F%3E%3Cg%3E%3Cpath%20d%3D%22M16.082%208.716h-.262c-.886%200-1.507.682-1.507%201.568v2.015h3.372v-2.015c.001-.886-.718-1.568-1.603-1.568z%22%2F%3E%3Cpath%20d%3D%22M16%204.325c-6.075%200-11%203.752-11%208.381%200%201.924.851%203.697%202.283%205.111.49.484.607%201.231.283%201.839l-1.479%202.776%204.39-1.384a6.183%206.183%200%200%201%201.863-.284c.383%200%20.766.034%201.145.102.807.144%201.649.22%202.514.22%206.075%200%2011-3.752%2011-8.381S22.075%204.325%2016%204.325zm3.793%2012.432c0%20.368-.409.6-.777.6H12.85c-.368%200-.643-.231-.643-.6v-3.733c0-.368.275-.725.643-.725h.2v-2.015c0-1.585%201.187-2.832%202.771-2.832h.262c1.583%200%202.868%201.247%202.868%202.832v2.015h.066c.368%200%20.777.357.777.725v3.733z%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTrelloSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.5%204h-21A1.5%201.5%200%200%200%204%205.5v21A1.5%201.5%200%200%200%205.5%2028h21a1.5%201.5%200%200%200%201.5-1.5v-21A1.5%201.5%200%200%200%2026.5%204zM14.44%2022.12c0%20.825-.675%201.5-1.5%201.5H8.62c-.825%200-1.5-.675-1.5-1.5V8.62c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v13.5zm10.44-6c0%20.825-.675%201.5-1.5%201.5h-4.32c-.825%200-1.5-.675-1.5-1.5v-7.5c0-.825.675-1.5%201.5-1.5h4.32c.825%200%201.5.675%201.5%201.5v7.5z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTuentiSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M13.907%2019.803l-2.463%205.062c-.316.655-.974%201.035-1.656%201.035-.272%200-.545-.062-.807-.188-.914-.445-1.293-1.55-.846-2.465l2.46-5.062c.446-.914%201.55-1.293%202.464-.848.917.447%201.295%201.552.85%202.466zm-.053-7.497c-.445.444-1.055.698-1.682.698-.625%200-1.236-.254-1.678-.698-.445-.444-.7-1.054-.7-1.68%200-.626.255-1.236.7-1.68.885-.888%202.478-.888%203.36%200%20.442.444.696%201.054.696%201.68%200%20.626-.254%201.235-.696%201.68zm9.834%207.17c-.443%202.075-1.266%204.003-2.445%205.73-.35.517-.922.794-1.502.794-.35%200-.705-.103-1.02-.316-.826-.564-1.04-1.695-.476-2.52.912-1.34%201.55-2.835%201.896-4.448.378-1.775.378-3.654-.003-5.432-.344-1.61-.982-3.107-1.895-4.445-.564-.83-.35-1.96.48-2.525.827-.564%201.958-.35%202.522.48%201.178%201.727%202%203.655%202.443%205.73.49%202.272.49%204.675%200%206.95z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTwiddlaSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%232A2A2A%22%20d%3D%22M10.5%205.688l1.375%201.375-4.812%204.812L5.688%2010.5C5.256%209.926%205%209.21%205%208.438%205%206.538%206.54%205%208.438%205c.773%200%201.488.256%202.062.688zm2.406%202.406l-4.812%204.812%2012.72%2012.72L27%2027l-1.375-6.188-12.72-12.718zm-.095%203.533l9.627%209.625-1.186%201.183-9.624-9.625%201.186-1.183z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssViadeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%20fill%3D%22%23F79A30%22%3E%3Cpath%20d%3D%22M15.107%204s2.838%201.88%203.326%207.05c0%200%20.957%2012.423-5.47%2014.858%200%200%20.577.106%201.224.076%200%200%207.947-5.012%204.3-14.742%200%200-1.09-3.396-3.38-7.242zm4.15%208.483s-1.48-2.29.397-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%2F%3E%3Cpath%20d%3D%22M19.256%2012.483s-1.48-2.29.398-4.18c0%200%20.658-.725%202.537-1.202%200%200%201.88-.4%202.895-2.555%200%200%202.105%202.94.81%206.807%200%200-.64%201.742-1.976%202.538-1.01.6-2.536.787-4.134-.777%200%200%204.83-2.644%205.01-4.884%200%200-1.483%203.334-5.54%204.256z%22%2F%3E%3C%2Fg%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M20.486%2019.434c0%201.19-.283%202.3-.85%203.33-.57%201.03-1.34%201.824-2.306%202.383-.967.56-2.03.84-3.186.84-1.156%200-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383-.568-1.03-.853-2.14-.853-3.33%200-1.847.625-3.42%201.87-4.723%201.247-1.3%202.74-1.95%204.474-1.95.824%200%201.596.15%202.313.448.072-.754.336-1.456.63-2.03-.903-.326-1.88-.49-2.936-.49-2.506%200-4.582.92-6.223%202.77-1.494%201.675-2.24%203.65-2.24%205.933%200%202.3.79%204.31%202.367%206.03C9.63%2027.14%2011.664%2028%2014.15%2028c2.48%200%204.508-.86%206.086-2.58%201.578-1.72%202.367-3.73%202.367-6.03%200-1.233-.22-2.374-.65-3.427-.725.445-1.412.678-1.982.797.345.816.517%201.707.517%202.674z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssViberSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20d%3D%22M22.57%2027.22a7.39%207.39%200%200%201-1.14-.32%2029%2029%200%200%201-16-16.12c-1-2.55%200-4.7%202.66-5.58a2%202%200%200%201%201.39%200c1.12.41%203.94%204.3%204%205.46a2%202%200%200%201-1.16%201.78%202%202%200%200%200-.66%202.84A10.3%2010.3%200%200%200%2017%2020.55%201.67%201.67%200%200%200%2019.35%2020c1.07-1.62%202.38-1.54%203.82-.54.72.51%201.45%201%202.14%201.55.93.75%202.1%201.37%201.55%202.94A5.21%205.21%200%200%201%2022.57%2027.22Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M17.06%204.79A10.42%2010.42%200%200%201%2026.79%2015c0%20.51.18%201.27-.58%201.25s-.54-.78-.6-1.29c-.7-5.52-3.23-8.13-8.71-9-.45-.07-1.15%200-1.11-.57C15.84%204.52%2016.66%204.85%2017.06%204.79Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M24.09%2014.06c-.05.38.17%201-.45%201.13-.83.13-.67-.64-.75-1.13-.56-3.36-1.74-4.59-5.12-5.35-.5-.11-1.27%200-1.15-.8s.82-.48%201.35-.42A6.9%206.9%200%200%201%2024.09%2014.06Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3Cpath%20d%3D%22M21.52%2013.45c0%20.43%200%20.87-.53.93s-.6-.26-.64-.64a2.47%202.47%200%200%200-2.26-2.43c-.42-.07-.82-.2-.63-.76.13-.38.47-.41.83-.42A3.66%203.66%200%200%201%2021.52%2013.45Z%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssTypePadPostSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23D2DE61%22%20d%3D%22M16%208.875c-6.627%200-12%203.225-12%207.202%200%20.844.342%202.21.787%202.407.447.196%201.67.683%2012.523-3.836%200%200-9.096%204.09-9.83%205.85-.253.605%202.154%202.627%208.52%202.627%206.626%200%2012-3.148%2012-7.125s-5.374-7.125-12-7.125z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssWebnewsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M6%206h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssWordPressSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22%23FFF%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2214.75%22%2F%3E%3Cg%20fill%3D%22%23464646%22%3E%3Cpath%20d%3D%22M3.176%2016c0%205.076%202.95%209.462%207.226%2011.54L4.287%2010.78c-.712%201.595-1.11%203.36-1.11%205.22zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008%200-1.18.897-2.278%202.156-2.278.057%200%20.11.008.166.01-2.28-2.09-5.32-3.367-8.658-3.367-4.48%200-8.422%202.3-10.715%205.78.302.01.585.017.826.017%201.343%200%203.418-.164%203.418-.164.69-.042.774.974.084%201.056%200%200-.694.08-1.466.12l4.668%2013.892%202.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058%200%200%202.116.164%203.38.164%201.34%200%203.416-.163%203.416-.163.69-.04.77.976.08%201.058%200%200-.694.08-1.467.12l4.634%2013.785%201.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43%201.766l-3.85%2011.18c1.15.34%202.365.523%203.624.523%201.492%200%202.925-.26%204.26-.728-.035-.056-.066-.113-.093-.177L16.225%2017.12zM27.25%209.848c.055.408.086.848.086%201.318%200%201.3-.242%202.764-.975%204.594l-3.916%2011.324C26.26%2024.86%2028.822%2020.73%2028.822%2016c0-2.23-.568-4.326-1.57-6.152z%22%2F%3E%3Cpath%20d%3D%22M16%201.052C7.757%201.052%201.052%207.757%201.052%2016c0%208.242%206.705%2014.948%2014.948%2014.948%208.242%200%2014.948-6.706%2014.948-14.95%200-8.24-6.706-14.946-14.948-14.946zm0%2029.212c-7.865%200-14.264-6.4-14.264-14.265S8.136%201.734%2016%201.734c7.863%200%2014.264%206.398%2014.264%2014.263%200%207.863-6.4%2014.264-14.264%2014.264z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssWykopSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M28.5%2023.54c0%202.74-2.22%204.96-4.96%204.96H8.46c-2.74%200-4.96-2.22-4.96-4.96V8.46c0-2.74%202.22-4.96%204.96-4.96h15.08c2.74%200%204.96%202.22%204.96%204.96v15.08z%22%2F%3E%3Cpath%20fill%3D%22%23F58237%22%20d%3D%22M17.052%207.997l4.942%2010.043-2.01.99-4.94-10.044-4.018%201.977%204.943%2010.043-2.01.988L9.016%2011.95%205%2013.93l5.93%2012.05L27%2018.073l-5.93-12.05%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssYahooMailSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M21.495%206.097c1.09.31%202.213.28%203.304%200l-7.418%2012.09v9.91c-.468-.155-.935-.22-1.37-.22-.47%200-.937.065-1.404.22v-9.91L7.19%206.097c1.09.28%202.213.31%203.304%200l5.516%208.788%205.483-8.787z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssYoolinkSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Ccircle%20fill%3D%22%232E6EB5%22%20stroke%3D%22%23FFF%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2216%22%20cy%3D%2216%22%20r%3D%2212%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M14.47%2023.09v-4.908l-3.604-5.856c-.315-.528-.538-.94-.67-1.235-.13-.294-.196-.552-.196-.77%200-.36.132-.67.398-.93.264-.26.59-.39.98-.39.41%200%20.72.12.933.365.213.243.53.727.953%201.45l2.758%204.697%202.79-4.696c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376%200%20.688.13.94.385.252.258.378.554.378.892%200%20.273-.064.55-.19.82-.127.275-.345.655-.654%201.14l-3.694%205.94v4.91c0%20.64-.14%201.118-.422%201.436-.282.317-.642.475-1.08.475-.44%200-.8-.156-1.076-.47-.275-.312-.412-.793-.412-1.44z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssInstagramSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssStockTwitsSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M11.328%2014.309l-1.793-.736c-1.303-.536-1.955-1.244-1.955-2.123%200-.637.249-1.166.746-1.587.498-.427%201.123-.642%201.878-.642.614%200%201.115.125%201.504.373.373.218.766.684%201.178%201.399l2.204-1.306c-1.166-2.024-2.788-3.037-4.863-3.037-1.539%200-2.828.459-3.866%201.376-1.039.909-1.559%202.039-1.559%203.391%200%202.005%201.232%203.528%203.698%204.569l1.738.722c.451.194.84.399%201.167.612.326.214.593.443.799.687.206.245.358.513.455.805.097.291.146.612.146.961%200%20.871-.28%201.59-.84%202.156-.56.568-1.263.851-2.111.851-1.073%200-1.889-.389-2.449-1.166-.311-.405-.529-1.135-.653-2.193L4%2020.028c.249%201.679.875%202.986%201.878%203.92%201.018.936%202.309%201.403%203.872%201.403%201.648%200%203.028-.544%204.139-1.634%201.102-1.082%201.653-2.451%201.653-4.109%200-1.237-.338-2.281-1.012-3.134-.676-.852-1.743-1.573-3.202-2.165zM28%207.023H17.037v2.571h4.14v15.425h2.695V9.594H28z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssBehanceSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M3.862%208.136h5.66c1.377%200%203.19%200%204.13.566a3.705%203.705%200%200%201%201.837%203.26c0%201.66-.88%202.905-2.32%203.494v.042c1.924.397%202.97%201.838%202.97%203.76%200%202.297-1.636%204.483-4.743%204.483H3.86V8.14zm2.078%206.71h4.152c2.36%200%203.322-.856%203.322-2.493%200-2.16-1.53-2.468-3.322-2.468H5.94v4.96zm0%207.144h5.2c1.792%200%202.93-1.09%202.93-2.797%200-2.03-1.64-2.598-3.388-2.598H5.94v5.395zm22.017-1.833C27.453%2022.65%2025.663%2024%2023.127%2024c-3.607%200-5.31-2.49-5.422-5.944%200-3.386%202.23-5.878%205.31-5.878%204%200%205.225%203.74%205.116%206.47h-8.455c-.067%201.966%201.05%203.716%203.52%203.716%201.53%200%202.6-.742%202.928-2.206h1.838zm-1.793-3.15c-.088-1.77-1.42-3.19-3.256-3.19-1.946%200-3.106%201.466-3.236%203.19h6.492zM20.614%208h4.935v1.68h-4.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFlickrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%229%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssFoursquareSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.516%203H7.586C5.66%203%205%204.358%205%205.383v21.995c0%201.097.65%201.407.958%201.53.31.126%201.105.206%201.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79%200%201.81-1.45%201.997-2.206.157-.63%201.946-9.57%202.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2%209.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108%201.032v.665c0%20.61.5%201.24%201.108%201.24h4.607c.43%200%20.794.276.7.737-.093.46-.573%202.82-.627%203.07-.052.254-.282.764-.716.764h-3.62c-.682%200-1.36-.008-1.816.56-.458.573-4.534%205.293-4.534%205.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834%201L20.2%209.68z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGithubSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203.32c-7.182%200-13%205.82-13%2013%200%205.754%203.72%2010.612%208.89%2012.335.65.114.893-.276.893-.617%200-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86%201.024-.017%201.755.942%202%201.332%201.17%201.966%203.038%201.414%203.785%201.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418%200-1.414.504-2.584%201.333-3.494-.13-.325-.59-1.657.13-3.445%200%200%201.085-.34%203.57%201.337%201.04-.293%202.146-.44%203.25-.44s2.21.147%203.25.44c2.49-1.69%203.58-1.337%203.58-1.337.714%201.79.26%203.12.13%203.446.828.91%201.332%202.064%201.332%203.494%200%204.99-3.04%206.094-5.93%206.42.47.405.876%201.185.876%202.404%200%201.74-.016%203.136-.016%203.575%200%20.34.244.743.894.613C25.28%2026.933%2029%2022.053%2029%2016.32c0-7.182-5.817-13-13-13z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssVimeoSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.926%2010.627c-.103%202.25-1.675%205.332-4.716%209.245C19.066%2023.957%2016.406%2026%2014.23%2026c-1.348%200-2.49-1.244-3.42-3.732l-1.867-6.844C8.25%2012.937%207.51%2011.69%206.715%2011.69c-.173%200-.778.365-1.815%201.09l-1.088-1.4a300.012%20300.012%200%200%200%203.374-3.01c1.522-1.315%202.666-2.007%203.427-2.076%201.8-.173%202.907%201.057%203.322%203.69.45%202.84.76%204.608.935%205.3.52%202.356%201.09%203.534%201.713%203.534.483%200%201.21-.764%202.18-2.294.97-1.528%201.488-2.692%201.558-3.49.14-1.32-.38-1.98-1.553-1.98-.554%200-1.125.126-1.712.378%201.137-3.722%203.308-5.53%206.513-5.426%202.378.068%203.498%201.61%203.36%204.62z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssRSSSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cellipse%20cx%3D%227.952%22%20cy%3D%2224.056%22%20rx%3D%222.952%22%20ry%3D%222.944%22%3E%3C%2Fellipse%3E%3Cpath%20d%3D%22M5.153%2016.625c2.73%200%205.295%201.064%207.22%202.996a10.2%2010.2%200%200%201%202.996%207.255h4.2c0-7.962-6.47-14.44-14.42-14.44v4.193zm.007-7.432c9.724%200%2017.636%207.932%2017.636%2017.682H27C27%2014.812%2017.203%205%205.16%205v4.193z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssYoutubeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGentleReaderSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-80%20-80.014%201200.014%201200%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23ffffff%22%20d%3D%22M819.664%2C291.684C572.661-7.32%2C155.656%2C203.683%2C169.656%2C527.687%20c38%2C489.007%2C727.009%2C448.006%2C683.009-28H562.661v98h177.002c-54.721%2C270.685-443.659%2C218.617-464.179-77.827%20c-0.48-6.934%2C1.493-36.96%2C3.053-44.641c44.28-217.95%2C300.377-317.791%2C467.126-110.535L819.664%2C291.684z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMixSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-7%20-8%2045%2045%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M27.87%204.125c-5.224%200-9.467%204.159-9.467%209.291v2.89c0-1.306%201.074-2.362%202.399-2.362s2.399%201.056%202.399%202.362v1.204c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V4.134c-.036-.009-.082-.009-.129-.009%22%2F%3E%3Cpath%20d%3D%22M4%204.125v12.94c2.566%200%204.668-1.973%204.807-4.465v-2.214c0-.065%200-.12.009-.176.093-1.213%201.13-2.177%202.39-2.177%201.325%200%202.399%201.056%202.399%202.362v9.226c0%201.306%201.074%202.353%202.399%202.353s2.399-1.056%202.399-2.353v-6.206c0-5.132%204.233-9.291%209.467-9.291H4z%22%2F%3E%3Cpath%20opacity%3D%22.8%22%20d%3D%22M4%2017.074v8.438c0%201.306%201.074%202.362%202.399%202.362s2.399-1.056%202.399-2.362V12.61C8.659%2015.102%206.566%2017.074%204%2017.074%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssMeWeSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssParlerSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20height%3D%27100%25%27%20width%3D%27100%25%27%20viewBox%3D%27-24%20-30%20140%20160%27%3E%3Cg%20fill%3D%27%23fff%27%3E%3Cpath%20d%3D%27M58.34%2083.31h-25v-8.49c0-4.5%203.64-8.14%208.14-8.14h16.87c13.8%200%2025.02-11.19%2025.02-24.94%200-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0%207.45%207.45%200%2016.63%200h36.41l5.44.17C81.39.24%20100%2018.86%20100%2041.74c0%2022.92-18.69%2041.57-41.66%2041.57z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M16.65%20100C7.46%20100%20.02%2092.55.02%2083.37V49.49c0-8.92%207.23-16.16%2016.16-16.16h42.19a8.32%208.32%200%20010%2016.64h-33.5c-4.53%200-8.21%203.67-8.21%208.21V100z%27%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGabSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-14.5%205.5%2046%2026%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.8%2C7.6h-2.4v0.7V9l-0.4-0.3C10.2%2C7.8%2C9%2C7.2%2C7.7%2C7.2c-0.2%2C0-0.4%2C0-0.4%2C0c-0.1%2C0-0.3%2C0-0.5%2C0%0Ac-5.6%2C0.3-8.7%2C7.2-5.4%2C12.1c2.3%2C3.4%2C7.1%2C4.1%2C9.7%2C1.5l0.3-0.3l0%2C0.7c0%2C1-0.1%2C1.5-0.4%2C2.2c-1%2C2.4-4.1%2C3-6.8%2C1.3%0Ac-0.2-0.1-0.4-0.2-0.4-0.2c-0.1%2C0.1-1.9%2C3.5-1.9%2C3.6c0%2C0.1%2C0.5%2C0.4%2C0.8%2C0.6c2.2%2C1.4%2C5.6%2C1.7%2C8.3%2C0.8c2.7-0.9%2C4.5-3.2%2C5-6.4%0Ac0.2-1.1%2C0.2-0.8%2C0.2-8.4l0-7.1H13.8z%20M9.7%2C17.6c-2.2%2C1.2-4.9-0.4-4.9-2.9C4.8%2C12.6%2C7%2C11%2C9%2C11.6C11.8%2C12.4%2C12.3%2C16.1%2C9.7%2C17.6z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center}.heateorSssGettrSvg{background:url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%200%2040%2040%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M16%2032C24.8366%2032%2032%2024.8366%2032%2016C32%207.16344%2024.8366%200%2016%200C7.16344%200%200%207.16344%200%2016C0%2024.8366%207.16344%2032%2016%2032Z%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M24.528%207.9125C24.1467%208.22187%2023.7874%208.3875%2023.2655%208.39688C23.7249%207.94688%2024.1405%207.43125%2024.478%206.875C24.8155%206.31875%2025.0717%205.71875%2025.2624%205.09375C23.6436%206.32187%2021.1561%206.64062%2018.9186%207.55312C16.753%208.42812%2014.8186%209.85312%2014.5655%2011.7312C14.3874%2013.0781%2015.0686%2014.6531%2016.0249%2016.0063C16.1311%2015.6469%2016.303%2015.2781%2016.553%2015.0125C17.0467%2014.4906%2017.853%2014.3594%2018.628%2014.2344C19.7999%2014.0469%2020.8936%2013.875%2021.8561%2013.3156C22.5342%2012.9219%2023.1436%2012.3313%2023.528%2011.6281C23.7467%2011.2344%2023.8936%2010.8031%2023.9811%2010.3656C23.7311%2010.6%2023.3405%2010.7531%2023.0155%2010.6844C23.8186%209.9%2024.3374%209.00625%2024.528%207.9125Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M16.0221%2017.6094H8.7002V18.2969C8.7002%2018.2969%2012.1314%2018.4781%2012.6877%2021.0938H16.0189H19.3502C19.9064%2018.4781%2023.3377%2018.2969%2023.3377%2018.2969V17.6094H16.0221Z%22%20fill%3D%22white%22%2F%3E%3Cpath%20d%3D%22M19.2221%2021.6846C19.0033%2021.6439%2018.8002%2021.7658%2018.7627%2021.9596L18.3689%2024.4533C18.3658%2024.4721%2018.3627%2024.4908%2018.3627%2024.5096H17.6346L17.9564%2022.0721C17.9752%2021.8752%2017.8127%2021.7033%2017.5971%2021.6814C17.3783%2021.6596%2017.1846%2021.8033%2017.1689%2021.9971L17.0189%2024.5064C17.0189%2024.5096%2017.0189%2024.5096%2017.0189%2024.5127H16.3314L16.4221%2022.0377C16.4221%2021.8533%2016.2627%2021.7002%2016.0658%2021.6846C16.0533%2021.6846%2016.0408%2021.6814%2016.0252%2021.6814C16.0127%2021.6814%2015.9971%2021.6814%2015.9846%2021.6846C15.8377%2021.6971%2015.7127%2021.7814%2015.6596%2021.9033C15.6377%2021.9471%2015.6283%2021.9939%2015.6283%2022.0439L15.7189%2024.5189H15.0314C15.0314%2024.5158%2015.0314%2024.5158%2015.0314%2024.5127L14.8752%2022.0002C14.8564%2021.8033%2014.6658%2021.6627%2014.4471%2021.6846C14.2283%2021.7064%2014.0658%2021.8814%2014.0877%2022.0752L14.4096%2024.5127H13.6814C13.6783%2024.4939%2013.6752%2024.4752%2013.6752%2024.4564L13.2814%2021.9627C13.2439%2021.7689%2013.0377%2021.6471%2012.8221%2021.6877C12.6033%2021.7283%2012.4627%2021.9221%2012.5002%2022.1158L13.0564%2024.5158H13.3846C13.4814%2025.0502%2013.5439%2025.4252%2013.5783%2025.6283H14.1283C14.2314%2026.6533%2015.2189%2036.1221%2015.2189%2036.1221C15.2189%2036.1221%2015.2846%2036.9252%2016.0221%2036.9252C16.7564%2036.9252%2016.8252%2036.1221%2016.8252%2036.1221C16.9908%2034.7971%2017.8064%2026.5814%2017.9158%2025.6283H18.4689C18.5033%2025.4252%2018.5658%2025.0502%2018.6627%2024.5158H18.9908L19.5471%2022.1158C19.5814%2021.9189%2019.4377%2021.7252%2019.2221%2021.6846Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E') no-repeat center center}
admin/js/sassy-social-share-fb-sdk.js CHANGED
@@ -1 +1 @@
1
- !function(e,n,t){var o,c=e.getElementsByTagName(n)[0];e.getElementById(t)||(o=e.createElement(n),o.id=t,o.src="//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v11.0",c.parentNode.insertBefore(o,c))}(document,"script","facebook-jssdk");
1
+ !function(e,n,t){var o,c=e.getElementsByTagName(n)[0];e.getElementById(t)||(o=e.createElement(n),o.id=t,o.src="//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v12.0",c.parentNode.insertBefore(o,c))}(document,"script","facebook-jssdk");
admin/partials/sassy-social-share-options-page.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Options page
4
  *
5
- * @since 1.0.0
6
  */
7
  defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
8
  ?>
@@ -358,7 +358,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
358
  <tr>
359
  <td colspan="2">
360
  <div>
361
- <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/responsive-icons.png', __FILE__ ) ?>" /></a>
362
  </div>
363
  </td>
364
  </tr>
@@ -833,12 +833,12 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
833
  </tbody>
834
  <?php
835
  $like_buttons = array( 'facebook_share', 'facebook_like', 'facebook_recommend', 'twitter_tweet', 'linkedin_share', 'pinterest_pin', 'buffer_share', 'xing_share', 'yummly_share', 'reddit_badge' );
836
- $sharing_networks = array( 'facebook', 'gab', 'twitter', 'linkedin', 'print', 'email', 'reddit', 'digg', 'float_it', 'tumblr', 'vkontakte', 'pinterest', 'xing', 'whatsapp', 'instagram', 'yummly', 'buffer', 'parler', 'AIM', 'Amazon_Wish_List', 'AOL_Mail', 'App.net', 'Balatarin', 'BibSonomy', 'Bitty_Browser', 'Blinklist', 'Blogger_Post', 'BlogMarks', 'Bookmarks.fr', 'Box.net', 'BuddyMarks', 'Care2_News', 'Comment', 'Copy_Link', 'Diary.Ru', 'Diaspora', 'Diigo', 'Douban', 'Draugiem', 'Evernote', 'Facebook_Messenger', 'Fark', 'Fintel', 'Flipboard', 'Folkd', 'GentleReader', 'Goodreads', 'Google_Bookmarks', 'Google_Classroom', 'Google_Gmail', 'Hacker_News', 'Hatena', 'Instapaper', 'Jamespot', 'Kakao', 'Kik', 'Kindle_It', 'Known', 'Line', 'LiveJournal', 'Mail.Ru', 'Mendeley', 'Meneame', 'MeWe', 'mix', 'Mixi', 'MySpace', 'Netvouz', 'Odnoklassniki', 'Outlook.com', 'Papaly', 'Pinboard', 'Plurk', 'Pocket', 'PrintFriendly', 'Protopage_Bookmarks', 'Pusha', 'Qzone', 'Rediff MyPage', 'Refind', 'Renren', 'Sina Weibo', 'SiteJot', 'Skype', 'Slashdot', 'SMS', 'StockTwits', 'Svejo', 'Symbaloo_Feeds', 'Telegram', 'Threema', 'Trello', 'Tuenti', 'Twiddla', 'TypePad_Post', 'Viadeo', 'Viber', 'Webnews', 'WordPress', 'Wykop', 'Yahoo_Mail', 'Yoolink', 'youtube' );
837
  ?>
838
 
839
  <tr>
840
  <td colspan="2">
841
- <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/multiple-instances.png', __FILE__ ) ?>" /></a>
842
  </td>
843
  </tr>
844
 
@@ -851,6 +851,8 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
851
 
852
  <tr>
853
  <td colspan="2">
 
 
854
  <script>
855
  // facebook app id and secret options toggle variables
856
  var heateorSssHorizontalShares = <?php echo isset( $options['horizontal_counts'] ) ? 'true' : 'false' ?>, heateorSssHorizontalTotalShares = <?php echo isset( $options['horizontal_total_shares'] ) ? 'true' : 'false' ?>, heateorSssVerticalShares = <?php echo isset( $options['vertical_counts'] ) ? 'true' : 'false' ?>, heateorSssVerticalTotalShares = <?php echo isset( $options['vertical_total_shares'] ) ? 'true' : 'false' ?>, heateorSssHorizontalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['horizontal_re_providers'] ) ? 'true' : 'false'; ?>, heateorSssVerticalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['vertical_re_providers'] ) ? 'true' : 'false'; ?>;
@@ -951,11 +953,9 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
951
  foreach( $sharing_networks as $sharing_network ) {
952
  ?>
953
  <div class="heateorSssHorizontalSharingProviderContainer">
954
- <?php echo $sharing_network == 'Goodreads' ? '<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank">' : ''; ?>
955
- <input id="heateor_sss_<?php echo $sharing_network ?>" type="checkbox" <?php echo $sharing_network == 'Goodreads' ? 'disabled ' : ''; ?><?php echo isset( $options['horizontal_re_providers'] ) && in_array( $sharing_network, $options['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharing_network ?>" />
956
- <label <?php echo $sharing_network != 'Goodreads' ? 'for="heateor_sss_' . $sharing_network . '"' : ''; ?>><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace( array( '_', '.', ' ' ), '', ucfirst( $sharing_network ) ) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Svg"></ss></i></label>
957
- <label class="lblSocialNetwork" <?php echo $sharing_network != 'Goodreads' ? 'for="heateor_sss_' . $sharing_network . '"' : ''; ?>><?php echo str_replace( '_', ' ', ucfirst( $sharing_network ) ) ?></label>
958
- <?php echo $sharing_network == 'Goodreads' ? '</a>' : ''; ?>
959
  </div>
960
  <?php
961
  }
@@ -1009,7 +1009,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
1009
  <tr>
1010
  <td colspan="2">
1011
  <div>
1012
- <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/social-share-popup.png', __FILE__ ) ?>" /></a>
1013
  </div>
1014
  </td>
1015
  </tr>
@@ -1152,7 +1152,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
1152
  <tr>
1153
  <td colspan="2">
1154
  <div>
1155
- <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/hide-standard-share-bar.png', __FILE__ ) ?>" /></a>
1156
  </div>
1157
  </td>
1158
  </tr>
@@ -1284,6 +1284,8 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
1284
 
1285
  <tr>
1286
  <td colspan="2">
 
 
1287
  <script>
1288
  <?php
1289
  $verticalSharingStyle = 'width:' . ( $options['vertical_sharing_shape'] != 'rectangle' ? $options['vertical_sharing_size'] : $options['vertical_sharing_width'] ) . 'px;height:' . $vertical_line_height . 'px;';
@@ -1382,11 +1384,9 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
1382
  foreach( $sharing_networks as $sharing_network) {
1383
  ?>
1384
  <div class="heateorSssVerticalSharingProviderContainer">
1385
- <?php echo $sharing_network == 'Goodreads' ? '<a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank">' : ''; ?>
1386
- <input id="heateor_sss_vertical_sharing_<?php echo $sharing_network ?>" type="checkbox" <?php echo $sharing_network == 'Goodreads' ? 'disabled ' : ''; ?><?php echo isset( $options['vertical_re_providers'] ) && in_array( $sharing_network, $options['vertical_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharing_network ?>" />
1387
  <label for="heateor_sss_vertical_sharing_<?php echo $sharing_network ?>"><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Svg"></ss></i></label>
1388
- <label class="lblSocialNetwork" <?php echo $sharing_network != 'Goodreads' ? 'for="heateor_sss_' . $sharing_network . '"' : ''; ?>><?php echo str_replace( '_', ' ', ucfirst( $sharing_network ) ) ?></label>
1389
- <?php echo $sharing_network == 'Goodreads' ? '</a>' : ''; ?>
1390
  </div>
1391
  <?php
1392
  }
@@ -1697,7 +1697,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
1697
  <div class="heateor_sss_left_column">
1698
 
1699
  <div>
1700
- <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="margin-bottom:19px;" src="<?php echo plugins_url( '../../images/unlock/track-shares.png', __FILE__ ) ?>" /></a>
1701
  </div>
1702
 
1703
  <div class="stuffbox">
@@ -2087,7 +2087,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
2087
  </div>
2088
 
2089
  <div>
2090
- <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/custom-icon-url.png', __FILE__ ) ?>" /></a>
2091
  </div>
2092
 
2093
  </div>
@@ -2131,7 +2131,7 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
2131
  <div class="inside" style="padding-left:7px">
2132
  <p><a style="text-decoration:none" href="http://support.heateor.com/sassy-social-share-shortcode-and-widget" target="_blank"><?php _e( 'Social Share Shortcode & Widget', 'sassy-social-share' ) ?></a></p>
2133
  <p><a style="text-decoration:none" href="http://support.heateor.com/sassy-follow-icons-shortcode" target="_blank"><?php _e( 'Follow Icons Shortcode & Widget', 'sassy-social-share' ) ?></a></p>
2134
- <p><a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img src="<?php echo plugins_url( '../../images/unlock/click-to-tweet-shortcode.png', __FILE__ ) ?>" /></a></p>
2135
  </div>
2136
  </div>
2137
  </div>
@@ -2177,7 +2177,6 @@ defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
2177
  </p>
2178
  <p><a href="https://www.heateor.com/recover-social-share-counts/" target="_blank"><?php _e('How to restore Social Share counts lost after moving my website to SSL/Https?', 'sassy-social-share' ) ?></a></p>
2179
  <p><a href="http://support.heateor.com/how-to-integrate-google-analytics-with-sharing" target="_blank"><?php _e( 'How to integrate Google Analytics with sharing?', 'sassy-social-share' ) ?></a></p>
2180
- <p><a href="http://support.heateor.com/color-share-icons-not-being-updated" target="_blank"><?php _e( 'Why the color of share icons is not being updated?', 'sassy-social-share' ) ?></a></p>
2181
  <p><a style="text-decoration:none" href="https://www.heateor.com/facebook-comments-moderation" target="_blank"><?php _e( 'How to show recent Facebook Comments from all over the website in a widget?', 'sassy-social-share' ) ?></a></p>
2182
  <p><a style="text-decoration:none" href="http://support.heateor.com/recover-facebook-comments-wordpress-moving-to-https-ssl/" target="_blank"><?php _e( 'How to recover the Facebook Comments lost after moving my website to SSL/Https?', 'sassy-social-share' ) ?></a></p>
2183
  <p><a href="http://support.heateor.com/place-title-social-share-icons-row/" target="_blank"><?php _e( 'How to Place Title and Social Share Icons in the Same Row?', 'sassy-social-share' ) ?></a></p>
2
  /**
3
  * Options page
4
  *
5
+ * @since 1.0
6
  */
7
  defined( 'ABSPATH' ) or die( "Cheating........Uh!!" );
8
  ?>
358
  <tr>
359
  <td colspan="2">
360
  <div>
361
+ <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="width:100%" src="<?php echo plugins_url( '../../images/unlock/responsive-icons.png', __FILE__ ) ?>" /></a>
362
  </div>
363
  </td>
364
  </tr>
833
  </tbody>
834
  <?php
835
  $like_buttons = array( 'facebook_share', 'facebook_like', 'facebook_recommend', 'twitter_tweet', 'linkedin_share', 'pinterest_pin', 'buffer_share', 'xing_share', 'yummly_share', 'reddit_badge' );
836
+ $sharing_networks = array( 'facebook','gettr', 'gab', 'twitter', 'linkedin', 'print', 'email', 'reddit', 'digg', 'float_it', 'tumblr', 'vkontakte', 'pinterest', 'xing', 'whatsapp', 'instagram', 'yummly', 'buffer', 'parler', 'AIM', 'Amazon_Wish_List', 'AOL_Mail', 'App.net', 'Balatarin', 'BibSonomy', 'Bitty_Browser', 'Blinklist', 'Blogger_Post', 'BlogMarks', 'Bookmarks.fr', 'Box.net', 'BuddyMarks', 'Care2_News', 'Comment', 'Copy_Link', 'Diary.Ru', 'Diaspora', 'Diigo', 'Douban', 'Draugiem', 'Evernote', 'Facebook_Messenger', 'Fark', 'Fintel', 'Flipboard', 'Folkd', 'GentleReader', 'Google_Bookmarks', 'Google_Classroom', 'Google_Gmail', 'Hacker_News', 'Hatena', 'Instapaper', 'Jamespot', 'Kakao', 'Kik', 'Kindle_It', 'Known', 'Line', 'LiveJournal', 'Mail.Ru', 'Mendeley', 'Meneame', 'MeWe', 'mix', 'Mixi', 'MySpace', 'Netvouz', 'Odnoklassniki', 'Outlook.com', 'Papaly', 'Pinboard', 'Plurk', 'Pocket', 'PrintFriendly', 'Protopage_Bookmarks', 'Pusha', 'Qzone', 'Rediff MyPage', 'Refind', 'Renren', 'Sina Weibo', 'SiteJot', 'Skype', 'Slashdot', 'SMS', 'StockTwits', 'Svejo', 'Symbaloo_Feeds', 'Telegram', 'Threema', 'Trello', 'Tuenti', 'Twiddla', 'TypePad_Post', 'Viadeo', 'Viber', 'Webnews', 'WordPress', 'Wykop', 'Yahoo_Mail', 'Yoolink', 'youtube' );
837
  ?>
838
 
839
  <tr>
840
  <td colspan="2">
841
+ <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="width:100%" src="<?php echo plugins_url( '../../images/unlock/multiple-instances.png', __FILE__ ) ?>" /></a>
842
  </td>
843
  </tr>
844
 
851
 
852
  <tr>
853
  <td colspan="2">
854
+ <?php _e( '(Logo color of the icons here will always be white, even if you have saved any other Logo Color in the Theme Selection section. However, at the front-end of the website, icons will be of the color that you have saved in the Theme Selection section.', 'sassy-social-share' );
855
+ ?>
856
  <script>
857
  // facebook app id and secret options toggle variables
858
  var heateorSssHorizontalShares = <?php echo isset( $options['horizontal_counts'] ) ? 'true' : 'false' ?>, heateorSssHorizontalTotalShares = <?php echo isset( $options['horizontal_total_shares'] ) ? 'true' : 'false' ?>, heateorSssVerticalShares = <?php echo isset( $options['vertical_counts'] ) ? 'true' : 'false' ?>, heateorSssVerticalTotalShares = <?php echo isset( $options['vertical_total_shares'] ) ? 'true' : 'false' ?>, heateorSssHorizontalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['horizontal_re_providers'] ) ? 'true' : 'false'; ?>, heateorSssVerticalFacebookShareEnabled = <?php echo in_array( 'facebook', $options['vertical_re_providers'] ) ? 'true' : 'false'; ?>;
953
  foreach( $sharing_networks as $sharing_network ) {
954
  ?>
955
  <div class="heateorSssHorizontalSharingProviderContainer">
956
+ <input id="heateor_sss_<?php echo $sharing_network ?>" type="checkbox" <?php echo isset( $options['horizontal_re_providers'] ) && in_array( $sharing_network, $options['horizontal_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharing_network ?>" />
957
+ <label for="heateor_sss_' . $sharing_network . '"><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace( array( '_', '.', ' ' ), '', ucfirst( $sharing_network ) ) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Svg"></ss></i></label>
958
+ <label class="lblSocialNetwork" for="heateor_sss_' . $sharing_network . '"><?php echo str_replace( '_', ' ', ucfirst( $sharing_network ) ) ?></label>
 
 
959
  </div>
960
  <?php
961
  }
1009
  <tr>
1010
  <td colspan="2">
1011
  <div>
1012
+ <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="width:100%" src="<?php echo plugins_url( '../../images/unlock/social-share-popup.png', __FILE__ ) ?>" /></a>
1013
  </div>
1014
  </td>
1015
  </tr>
1152
  <tr>
1153
  <td colspan="2">
1154
  <div>
1155
+ <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="width:100%" src="<?php echo plugins_url( '../../images/unlock/hide-standard-share-bar.png', __FILE__ ) ?>" /></a>
1156
  </div>
1157
  </td>
1158
  </tr>
1284
 
1285
  <tr>
1286
  <td colspan="2">
1287
+ <?php _e( '(Logo color of the icons here will always be white, even if you have saved any other Logo Color in the Theme Selection section. However, at the front-end of the website, icons will be of the color that you have saved in the Theme Selection section.', 'sassy-social-share' );
1288
+ ?>
1289
  <script>
1290
  <?php
1291
  $verticalSharingStyle = 'width:' . ( $options['vertical_sharing_shape'] != 'rectangle' ? $options['vertical_sharing_size'] : $options['vertical_sharing_width'] ) . 'px;height:' . $vertical_line_height . 'px;';
1384
  foreach( $sharing_networks as $sharing_network) {
1385
  ?>
1386
  <div class="heateorSssVerticalSharingProviderContainer">
1387
+ <input id="heateor_sss_vertical_sharing_<?php echo $sharing_network ?>" type="checkbox" <?php echo isset( $options['vertical_re_providers'] ) && in_array( $sharing_network, $options['vertical_re_providers'] ) ? 'checked = "checked"' : '';?> value="<?php echo $sharing_network ?>" />
 
1388
  <label for="heateor_sss_vertical_sharing_<?php echo $sharing_network ?>"><i style="display:block;width:18px;height:18px;" class="heateorSssSharing heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Background"><ss style="display:block;" class="heateorSssSharingSvg heateorSss<?php echo str_replace(array( '_', '.', ' ' ), '', ucfirst( $sharing_network) ) ?>Svg"></ss></i></label>
1389
+ <label class="lblSocialNetwork" for="heateor_sss_' . $sharing_network . '"><?php echo str_replace( '_', ' ', ucfirst( $sharing_network ) ) ?></label>
 
1390
  </div>
1391
  <?php
1392
  }
1697
  <div class="heateor_sss_left_column">
1698
 
1699
  <div>
1700
+ <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="margin-bottom:19px;width:100%" src="<?php echo plugins_url( '../../images/unlock/track-shares.png', __FILE__ ) ?>" /></a>
1701
  </div>
1702
 
1703
  <div class="stuffbox">
2087
  </div>
2088
 
2089
  <div>
2090
+ <a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="width:100%" src="<?php echo plugins_url( '../../images/unlock/custom-icon-url.png', __FILE__ ) ?>" /></a>
2091
  </div>
2092
 
2093
  </div>
2131
  <div class="inside" style="padding-left:7px">
2132
  <p><a style="text-decoration:none" href="http://support.heateor.com/sassy-social-share-shortcode-and-widget" target="_blank"><?php _e( 'Social Share Shortcode & Widget', 'sassy-social-share' ) ?></a></p>
2133
  <p><a style="text-decoration:none" href="http://support.heateor.com/sassy-follow-icons-shortcode" target="_blank"><?php _e( 'Follow Icons Shortcode & Widget', 'sassy-social-share' ) ?></a></p>
2134
+ <p><a href="https://www.heateor.com/comparison-between-sassy-social-share-pro-and-premium/" target="_blank"><img style="width:100%" src="<?php echo plugins_url( '../../images/unlock/click-to-tweet-shortcode.png', __FILE__ ) ?>" /></a></p>
2135
  </div>
2136
  </div>
2137
  </div>
2177
  </p>
2178
  <p><a href="https://www.heateor.com/recover-social-share-counts/" target="_blank"><?php _e('How to restore Social Share counts lost after moving my website to SSL/Https?', 'sassy-social-share' ) ?></a></p>
2179
  <p><a href="http://support.heateor.com/how-to-integrate-google-analytics-with-sharing" target="_blank"><?php _e( 'How to integrate Google Analytics with sharing?', 'sassy-social-share' ) ?></a></p>
 
2180
  <p><a style="text-decoration:none" href="https://www.heateor.com/facebook-comments-moderation" target="_blank"><?php _e( 'How to show recent Facebook Comments from all over the website in a widget?', 'sassy-social-share' ) ?></a></p>
2181
  <p><a style="text-decoration:none" href="http://support.heateor.com/recover-facebook-comments-wordpress-moving-to-https-ssl/" target="_blank"><?php _e( 'How to recover the Facebook Comments lost after moving my website to SSL/Https?', 'sassy-social-share' ) ?></a></p>
2182
  <p><a href="http://support.heateor.com/place-title-social-share-icons-row/" target="_blank"><?php _e( 'How to Place Title and Social Share Icons in the Same Row?', 'sassy-social-share' ) ?></a></p>
images/amp/buddymarks.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#CC3467" d="M27.256 9.5c-2.188-3.79-6.36-.54-7.83 2.205 1.073.86 1.802 2.112 2.006 3.475 3.103.094 8.023-1.873 5.824-5.68-.7-1.212.515.894 0 0z"></path><path fill="#96C044" d="M15.998 3c-4.368 0-3.664 5.23-2.013 7.886 1.283-.505 2.74-.505 4.023 0C19.66 8.23 20.366 3 15.998 3z"></path><path fill="#CC3467" d="M9.255 8.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79 2.268-1.617 3.538.352 2.564 4.32 3.468 6.416 3.405.204-1.363.934-2.618 2.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41 1.422.82 0 0z"></path><path fill="#96C044" d="M11.426 19.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768 1.608-6.056 5.24 2.023 4.292 6.448 1.248 8.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47 0 0z"></path><path fill="#CC3467" d="M18.202 21.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02 0C12.338 23.766 11.624 29 16 29c4.218 0 3.67-4.848 2.204-7.542-.064-.12.678 1.243 0 0z"></path><path fill="#96C044" d="M27.83 20.088c-.478-2.46-4.326-3.33-6.398-3.27-.204 1.364-.933 2.617-2.007 3.476.934 1.744 2.858 3.73 4.913 4.006 2.043.276 3.853-2.332 3.49-4.212-.153-.8.137.706 0 0z"></path></svg>
1
+ <svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="#fff"><circle cx="19.587" cy="7.172" r="4.209"/><path d="M21.374 11.668h-3.572c-.085 0-.168.01-.253.013.32.68.51 1.437.51 2.236 0 1.476-.62 2.807-1.61 3.756 2.314.69 4.084 2.656 4.486 5.08 3.414-.15 5.382-1.114 5.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z"/></g><g fill="#fff"><circle cx="12.413" cy="13.439" r="4.209"/><path d="M14.198 17.937h-3.57c-2.973 0-5.39 2.417-5.39 5.388v4.37l.01.067.303.095c2.838.885 5.3 1.18 7.33 1.18 3.96 0 6.257-1.13 6.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z"/></g></svg>
images/amp/fintel.svg CHANGED
@@ -1,2 +1,2 @@
1
  <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="100%" height="100%" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
2
- viewBox="-110 -120 428 494" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"><![CDATA[.fil0 {fill:#fff}.fil1 {fill:#fff}]]></style></defs><g id="Layer_x0020_1"><metadata id="CorelCorpID_0Corel-Layer"/><polygon class="fil0" points="108,274 48,274 48,152 0,152 0,95 48,95 48,0 208,0 208,56 108,56 108,95 180,95 180,151 108,151 "/><polygon class="fil1" points="99,272 103,272 103,147 175,147 175,100 103,100 103,52 203,52 203,7 199,7 199,48 98,48 98,104 171,104 171,142 99,142 "/></g></svg>
1
  <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="100%" height="100%" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
2
+ viewBox="-110 -120 428 494" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><style type="text/css"><![CDATA[.fil0 {fill:#fff}.fil1 {fill:#fff}]]></style></defs><g><polygon class="fil0" points="108,274 48,274 48,152 0,152 0,95 48,95 48,0 208,0 208,56 108,56 108,95 180,95 180,151 108,151 "/><polygon class="fil1" points="99,272 103,272 103,147 175,147 175,100 103,100 103,52 203,52 203,7 199,7 199,48 98,48 98,104 171,104 171,142 99,142 "/></g></svg>
images/amp/gentlereader.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-80 -80.014 1200.014 1200"><path fill-rule="evenodd" clip-rule="evenodd" fill="#fff" d="M819.664,291.684C572.661-7.32,155.656,203.683,169.656,527.687 c38,489.007,727.009,448.006,683.009-28H562.661v98h177.002c-54.721,270.685-443.659,218.617-464.179-77.827 c-0.48-6.934,1.493-36.96,3.053-44.641c44.28-217.95,300.377-317.791,467.126-110.535L819.664,291.684z"></path></svg>
images/amp/gettr.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg width="100%" height="100%" viewBox="-8 -5 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M24.528 7.9125C24.1467 8.22187 23.7874 8.3875 23.2655 8.39688C23.7249 7.94688 24.1405 7.43125 24.478 6.875C24.8155 6.31875 25.0717 5.71875 25.2624 5.09375C23.6436 6.32187 21.1561 6.64062 18.9186 7.55312C16.753 8.42812 14.8186 9.85312 14.5655 11.7312C14.3874 13.0781 15.0686 14.6531 16.0249 16.0063C16.1311 15.6469 16.303 15.2781 16.553 15.0125C17.0467 14.4906 17.853 14.3594 18.628 14.2344C19.7999 14.0469 20.8936 13.875 21.8561 13.3156C22.5342 12.9219 23.1436 12.3313 23.528 11.6281C23.7467 11.2344 23.8936 10.8031 23.9811 10.3656C23.7311 10.6 23.3405 10.7531 23.0155 10.6844C23.8186 9.9 24.3374 9.00625 24.528 7.9125Z" fill="#fff"/><path d="M16.0221 17.6094H8.7002V18.2969C8.7002 18.2969 12.1314 18.4781 12.6877 21.0938H16.0189H19.3502C19.9064 18.4781 23.3377 18.2969 23.3377 18.2969V17.6094H16.0221Z" fill="#fff"/><path d="M19.2221 21.6846C19.0033 21.6439 18.8002 21.7658 18.7627 21.9596L18.3689 24.4533C18.3658 24.4721 18.3627 24.4908 18.3627 24.5096H17.6346L17.9564 22.0721C17.9752 21.8752 17.8127 21.7033 17.5971 21.6814C17.3783 21.6596 17.1846 21.8033 17.1689 21.9971L17.0189 24.5064C17.0189 24.5096 17.0189 24.5096 17.0189 24.5127H16.3314L16.4221 22.0377C16.4221 21.8533 16.2627 21.7002 16.0658 21.6846C16.0533 21.6846 16.0408 21.6814 16.0252 21.6814C16.0127 21.6814 15.9971 21.6814 15.9846 21.6846C15.8377 21.6971 15.7127 21.7814 15.6596 21.9033C15.6377 21.9471 15.6283 21.9939 15.6283 22.0439L15.7189 24.5189H15.0314C15.0314 24.5158 15.0314 24.5158 15.0314 24.5127L14.8752 22.0002C14.8564 21.8033 14.6658 21.6627 14.4471 21.6846C14.2283 21.7064 14.0658 21.8814 14.0877 22.0752L14.4096 24.5127H13.6814C13.6783 24.4939 13.6752 24.4752 13.6752 24.4564L13.2814 21.9627C13.2439 21.7689 13.0377 21.6471 12.8221 21.6877C12.6033 21.7283 12.4627 21.9221 12.5002 22.1158L13.0564 24.5158H13.3846C13.4814 25.0502 13.5439 25.4252 13.5783 25.6283H14.1283C14.2314 26.6533 15.2189 36.1221 15.2189 36.1221C15.2189 36.1221 15.2846 36.9252 16.0221 36.9252C16.7564 36.9252 16.8252 36.1221 16.8252 36.1221C16.9908 34.7971 17.8064 26.5814 17.9158 25.6283H18.4689C18.5033 25.4252 18.5658 25.0502 18.6627 24.5158H18.9908L19.5471 22.1158C19.5814 21.9189 19.4377 21.7252 19.2221 21.6846Z" fill="#fff"/></svg>
images/amp/instagram.svg CHANGED
@@ -1 +1 @@
1
- <svg id="Layer_1" version="1.1" viewBox="-10 -10 148 148" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><g><path d="M86,112H42c-14.336,0-26-11.663-26-26V42c0-14.337,11.664-26,26-26h44c14.337,0,26,11.663,26,26v44 C112,100.337,100.337,112,86,112z M42,24c-9.925,0-18,8.074-18,18v44c0,9.925,8.075,18,18,18h44c9.926,0,18-8.075,18-18V42 c0-9.926-8.074-18-18-18H42z" fill="#fff"></path></g><g><path d="M64,88c-13.234,0-24-10.767-24-24c0-13.234,10.766-24,24-24s24,10.766,24,24C88,77.233,77.234,88,64,88z M64,48c-8.822,0-16,7.178-16,16s7.178,16,16,16c8.822,0,16-7.178,16-16S72.822,48,64,48z" fill="#fff"></path></g><g><circle cx="89.5" cy="38.5" fill="#fff" r="5.5"></circle></g></g></svg>
1
+ <svg version="1.1" viewBox="-10 -10 148 148" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><g><path d="M86,112H42c-14.336,0-26-11.663-26-26V42c0-14.337,11.664-26,26-26h44c14.337,0,26,11.663,26,26v44 C112,100.337,100.337,112,86,112z M42,24c-9.925,0-18,8.074-18,18v44c0,9.925,8.075,18,18,18h44c9.926,0,18-8.075,18-18V42 c0-9.926-8.074-18-18-18H42z" fill="#fff"></path></g><g><path d="M64,88c-13.234,0-24-10.767-24-24c0-13.234,10.766-24,24-24s24,10.766,24,24C88,77.233,77.234,88,64,88z M64,48c-8.822,0-16,7.178-16,16s7.178,16,16,16c8.822,0,16-7.178,16-16S72.822,48,64,48z" fill="#fff"></path></g><g><circle cx="89.5" cy="38.5" fill="#fff" r="5.5"></circle></g></g></svg>
images/amp/mewe.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="-3 -3 38 38"><g fill="#fff"><path d="M9.636 10.427a1.22 1.22 0 1 1-2.44 0 1.22 1.22 0 1 1 2.44 0zM15.574 10.431a1.22 1.22 0 0 1-2.438 0 1.22 1.22 0 1 1 2.438 0zM22.592 10.431a1.221 1.221 0 1 1-2.443 0 1.221 1.221 0 0 1 2.443 0zM29.605 10.431a1.221 1.221 0 1 1-2.442 0 1.221 1.221 0 0 1 2.442 0zM3.605 13.772c0-.471.374-.859.859-.859h.18c.374 0 .624.194.789.457l2.935 4.597 2.95-4.611c.18-.291.43-.443.774-.443h.18c.485 0 .859.387.859.859v8.113a.843.843 0 0 1-.859.845.857.857 0 0 1-.845-.845V16.07l-2.366 3.559c-.18.276-.402.443-.72.443-.304 0-.526-.167-.706-.443l-2.354-3.53V21.9c0 .471-.374.83-.845.83a.815.815 0 0 1-.83-.83v-8.128h-.001zM14.396 14.055a.9.9 0 0 1-.069-.333c0-.471.402-.83.872-.83.415 0 .735.263.845.624l2.23 6.66 2.187-6.632c.139-.402.428-.678.859-.678h.124c.428 0 .735.278.859.678l2.187 6.632 2.23-6.675c.126-.346.415-.609.83-.609.457 0 .845.361.845.817a.96.96 0 0 1-.083.346l-2.867 8.032c-.152.43-.471.706-.887.706h-.165c-.415 0-.721-.263-.872-.706l-2.161-6.328-2.16 6.328c-.152.443-.47.706-.887.706h-.165c-.415 0-.72-.263-.887-.706l-2.865-8.032z"></path></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 -3 38 38"><g fill="#fff"><path d="M9.636 10.427a1.22 1.22 0 1 1-2.44 0 1.22 1.22 0 1 1 2.44 0zM15.574 10.431a1.22 1.22 0 0 1-2.438 0 1.22 1.22 0 1 1 2.438 0zM22.592 10.431a1.221 1.221 0 1 1-2.443 0 1.221 1.221 0 0 1 2.443 0zM29.605 10.431a1.221 1.221 0 1 1-2.442 0 1.221 1.221 0 0 1 2.442 0zM3.605 13.772c0-.471.374-.859.859-.859h.18c.374 0 .624.194.789.457l2.935 4.597 2.95-4.611c.18-.291.43-.443.774-.443h.18c.485 0 .859.387.859.859v8.113a.843.843 0 0 1-.859.845.857.857 0 0 1-.845-.845V16.07l-2.366 3.559c-.18.276-.402.443-.72.443-.304 0-.526-.167-.706-.443l-2.354-3.53V21.9c0 .471-.374.83-.845.83a.815.815 0 0 1-.83-.83v-8.128h-.001zM14.396 14.055a.9.9 0 0 1-.069-.333c0-.471.402-.83.872-.83.415 0 .735.263.845.624l2.23 6.66 2.187-6.632c.139-.402.428-.678.859-.678h.124c.428 0 .735.278.859.678l2.187 6.632 2.23-6.675c.126-.346.415-.609.83-.609.457 0 .845.361.845.817a.96.96 0 0 1-.083.346l-2.867 8.032c-.152.43-.471.706-.887.706h-.165c-.415 0-.721-.263-.872-.706l-2.161-6.328-2.16 6.328c-.152.443-.47.706-.887.706h-.165c-.415 0-.72-.263-.887-.706l-2.865-8.032z"></path></g></svg>
images/amp/outlook_com.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#fff" d="M19.52 8.29v5.5l1.92 1.208c.053.016.163.016.212 0l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z"/><path fill="#fff" d="M19.52 15.84l1.755 1.204c.246.183.543 0 .543 0-.297.183 8.104-5.397 8.104-5.397V21.75c0 1.102-.704 1.562-1.496 1.562H19.52V15.84z"/><g fill="#fff"><path d="M10.445 13.305c-.6 0-1.073.282-1.426.842-.355.56-.53 1.305-.53 2.23 0 .936.175 1.677.53 2.22.347.546.813.82 1.38.82.59 0 1.055-.266 1.4-.795.344-.53.517-1.266.517-2.206 0-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z"/><path d="M2.123 5.5v21.51l16.362 3.428V2.33L2.123 5.5zm10.95 14.387c-.693.91-1.594 1.367-2.706 1.367-1.082 0-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448 0-1.496.343-2.707 1.037-3.63.693-.926 1.614-1.388 2.754-1.388 1.08 0 1.955.438 2.62 1.324.667.885 1 2.05 1 3.495.004 1.496-.345 2.695-1.034 3.604z"/></g></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 -3.5 40 40"><path fill="#fff" d="M19.52 8.29v5.5l1.92 1.208c.053.016.163.016.212 0l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z"/><path fill="#fff" d="M19.52 15.84l1.755 1.204c.246.183.543 0 .543 0-.297.183 8.104-5.397 8.104-5.397V21.75c0 1.102-.704 1.562-1.496 1.562H19.52V15.84z"/><g fill="#fff"><path d="M10.445 13.305c-.6 0-1.073.282-1.426.842-.355.56-.53 1.305-.53 2.23 0 .936.175 1.677.53 2.22.347.546.813.82 1.38.82.59 0 1.055-.266 1.4-.795.344-.53.517-1.266.517-2.206 0-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z"/><path d="M2.123 5.5v21.51l16.362 3.428V2.33L2.123 5.5zm10.95 14.387c-.693.91-1.594 1.367-2.706 1.367-1.082 0-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448 0-1.496.343-2.707 1.037-3.63.693-.926 1.614-1.388 2.754-1.388 1.08 0 1.955.438 2.62 1.324.667.885 1 2.05 1 3.495.004 1.496-.345 2.695-1.034 3.604z"/></g></svg>
images/amp/snapchat.svg ADDED
@@ -0,0 +1 @@
 
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#fff" d="M26.177 20.978c-2.867-.473-4.157-3.414-4.21-3.54l-.01-.02c-.153-.31-.187-.57-.1-.772.164-.39.774-.583 1.177-.71.113-.037.22-.07.306-.105.715-.28 1.073-.625 1.066-1.03-.006-.312-.252-.593-.642-.732a1.168 1.168 0 0 0-.44-.084.975.975 0 0 0-.405.083c-.34.16-.65.246-.91.258a.789.789 0 0 1-.357-.087l.027-.45.005-.062c.09-1.432.203-3.215-.266-4.264C20.03 6.34 17.073 6.1 16.2 6.1h-.052l-.363.003c-.87 0-3.818.243-5.208 3.36-.47 1.05-.357 2.833-.268 4.264l.03.513a.83.83 0 0 1-.41.09c-.276 0-.6-.087-.97-.26a.795.795 0 0 0-.335-.067c-.43 0-.946.282-1.026.704-.06.305.077.748 1.054 1.134.087.036.193.07.305.105.403.128 1.012.322 1.18.71.084.203.05.463-.103.773l-.01.022c-.054.125-1.344 3.068-4.21 3.54a.437.437 0 0 0-.366.455.6.6 0 0 0 .048.196c.216.504 1.123.87 2.775 1.13.055.075.113.34.148.5.036.16.07.32.12.494.05.17.18.374.514.374.133 0 .292-.03.475-.067.275-.053.652-.127 1.124-.127.26 0 .532.022.805.067.532.09.985.41 1.51.78.75.53 1.6 1.132 2.894 1.132.034 0 .07 0 .105-.005.04.002.095.004.153.004 1.29 0 2.142-.6 2.892-1.132.526-.37.978-.69 1.51-.78.274-.045.545-.068.807-.068.45 0 .805.056 1.123.12.2.037.36.057.476.057h.024c.246 0 .42-.13.488-.365.05-.17.086-.327.12-.49.037-.16.094-.422.15-.496 1.65-.256 2.56-.624 2.773-1.125a.568.568 0 0 0 .047-.196.433.433 0 0 0-.363-.458z"></path></svg>
includes/class-sassy-social-share-sharing-networks.php CHANGED
@@ -1,16 +1,15 @@
1
  <?php
2
-
3
  /**
4
  * The file contains the class defining sharing networks and their sharer urls
5
  *
6
- * @since 1.0.0
7
  *
8
  */
9
 
10
  /**
11
  * This class defines sharing networks and their sharer urls
12
  *
13
- * @since 1.0.0
14
  *
15
  */
16
  class Sassy_Social_Share_Sharing_Networks {
@@ -24,7 +23,7 @@ class Sassy_Social_Share_Sharing_Networks {
24
  /**
25
  * Constructor
26
  *
27
- * @since 1.0.0
28
  */
29
  public function __construct( $options ) {
30
 
@@ -35,124 +34,121 @@ class Sassy_Social_Share_Sharing_Networks {
35
  /**
36
  * Supported Social sharing networks
37
  *
38
- * @since 1.0.0
39
  */
40
  private $sharing_networks = array(
41
- 'facebook_share' => '<li style="padding:%padding%px 0!important" class="heateor_sss_%network%">%like_count_container%<div class="fb-share-button" data-href="%post_url%" data-layout="button_count"></div></li>',
42
- 'facebook_like' => '<li style="padding:%padding%px 0!important" class="heateor_sss_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div></li>',
43
- 'facebook_recommend' => '<li style="padding:%padding%px 0!important" class="heateor_sss_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button_count" data-action="recommend" data-show-faces="false" data-share="false"></div></li>',
44
- 'twitter_tweet' => '<li style="padding:%padding%px 0!important" class="heateor_sss_%network%" heateor-sss-data-href="%post_url%">%like_count_container%<a href="https://twitter.com/share" class="twitter-share-button" data-url="%post_url%" data-counturl="%post_url%" data-text="%decoded_post_title%" data-via="%twitter_username%" data-lang="%language%" >Tweet</a><script>!function(d,s,id) {var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?"http":"https";if ( !d.getElementById(id) ) {js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document, "script", "twitter-wjs");</script></li>',
45
- 'linkedin_share' => '<li style="padding:7.35px 0!important;margin-top:-2px!important;" class="heateor_sss_%network%">%like_count_container%<script src="//platform.linkedin.com/in.js" type="text/javascript">lang: %language%</script><script type="IN/Share" data-url="%post_url%" data-counter="right"></script></li>',
46
- 'pinterest_pin' => '<li style="padding:%padding%px 0!important;margin-top:-1px!important" class="heateor_sss_%network%">%like_count_container%<a data-pin-lang="%language%" href="//www.pinterest.com/pin/create/button/?url=%post_url%" data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></li>',
47
- 'buffer_share' => '<li style="padding:%padding%px 0!important" class="heateor_sss_%network%">%like_count_container%<a href="http://bufferapp.com/add" class="buffer-add-button" data-text="%post_title%" data-url="%post_url%" data-count="horizontal" data-via="%buffer_username%" ></a><script type="text/javascript" src="https://d389zggrogs7qo.cloudfront.net/js/button.js"></script></li>',
48
- 'xing_share' => '<li style="padding:%padding%px 0 !important" class="heateor_sss_xing">%like_count_container%<div data-type="XING/Share" data-counter="right" data-url="%post_url%" data-lang="%language%"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></li>',
49
- 'yummly_share' => '<li style="padding:%padding%px 0!important" class="heateor_sss_yummly">%like_count_container%<a href="//yummly.com" class="YUMMLY-YUM-BUTTON">Yum</a><script src="https://www.yummly.com/js/widget.js?general"></script></li>',
50
- 'parler' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://parler.com/new-post?message=%post_title%&url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
51
- 'gab' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://gab.com/compose?url=%encoded_post_url%&text=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
52
- 'reddit_badge' => '<li style="padding:%padding%px 0!important" class="heateor_sss_reddit">%like_count_container%<script type="text/javascript" src="//www.reddit.com/static/button/button1.js"></script></li>',
53
- 'facebook' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.facebook.com/sharer/sharer.php?u=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
54
- 'twitter' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://twitter.com/intent/tweet?%via_twitter_username%text=%wpseo_post_title%&url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
55
- 'linkedin' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.linkedin.com/shareArticle?mini=true&url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
56
- 'print' => '<li class="%li_class%"><i %style% alt="%title%" Title="Print" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'window.print()\'><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
57
- 'email' => '<li class="%li_class%"><i %style% alt="%title%" Title="Email" class="heateorSssSharing heateorSss%ucfirst_network%Background" %amp_email% onclick="window.open(\'mailto:?subject=\' + decodeURIComponent(\'%post_title%\' ).replace(\'&\', \'%26\') + \'&body=\' + decodeURIComponent(\'%encoded_post_url%\' ), \'_blank\')"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
58
- 'reddit' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://reddit.com/submit?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
59
- 'digg' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://digg.com/submit?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
60
- 'float_it' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.designfloat.com/submit.php?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
61
- 'tumblr' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.tumblr.com/widgets/share/tool?posttype=link&canonicalUrl=%encoded_post_url%&title=%post_title%&caption=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
62
- 'vkontakte' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://vkontakte.ru/share.php?&url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
63
- 'pinterest' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick="javascript:void( (function() {var e=document.createElement(\'script\' );e.setAttribute(\'type\',\'text/javascript\' );e.setAttribute(\'charset\',\'UTF-8\' );e.setAttribute(\'src\',\'//assets.pinterest.com/js/pinmarklet.js?r=\'+Math.random()*99999999);document.body.appendChild(e)})());"><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
64
- 'xing' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.xing.com/spi/shares/new?cb=0&url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
65
- 'instagram' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><a href="https://www.instagram.com/%instagram_username%" rel="nofollow noopener" target="_blank"><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></a></i></li>',
66
- 'yummly' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.yummly.com/urb/verify?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
67
- 'buffer' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://buffer.com/add?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
68
- 'AIM' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://lifestream.aol.com/?url=%%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
69
- 'Amazon_Wish_List' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.amazon.com/wishlist/add?u=%encoded_post_url%&t=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
70
- 'AOL_Mail' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://webmail.aol.com/25045/aol/en-us/Mail/compose-message.aspx?subject=%post_title%&body=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
71
- 'App.net' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://account.app.net/login/")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
72
- 'Balatarin' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.balatarin.com/login")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
73
- 'BibSonomy' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.bibsonomy.org/login")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
74
- 'Bitty_Browser' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.bitty.com/manual/?contenttype=&contentvalue=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
75
- 'Blinklist' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://blinklist.com/blink?t=%post_title%&d=&u=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
76
- 'Blogger_Post' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.blogger.com/blog_this.pyra?t&u=%encoded_post_url%&l&n=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
77
- 'BlogMarks' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://blogmarks.net/my/new.php?mini=1&simple=1&title=%post_title%&url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
78
- 'Bookmarks.fr' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.bookmarks.fr/Connexion/?action=add&address=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
79
- 'Box.net' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.box.com/api/1.0/import?url=%encoded_post_url%&name=%post_title%&description=&import_as=link")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
80
- 'BuddyMarks' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://buddymarks.com/login.php?bookmark_title=%post_title%&bookmark_url=%encoded_post_url%&bookmark_desc=&bookmark_tags=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
81
- 'Care2_News' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.care2.com/passport/login.html?promoID=10&pg=http://www.care2.com/news/compose?sharehint=news&share[share_type]news&bookmarklet=Y&share[title]=%post_title%&share[link_url]=%encoded_post_url%&share[content]=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
82
- 'Comment' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><a href="%post_url%#%comment_container_id%" rel="nofollow"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></a></i></li>',
83
- 'Copy_Link' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
84
- 'Diary.Ru' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.diary.ru/?newpost&title=%post_title%&text=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
85
- 'Diaspora' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://joindiaspora.com/bookmarklet?url=%encoded_post_url%&title=%post_title%&v=1&")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
86
- 'Diigo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.diigo.com/post?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
87
- 'Draugiem' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.draugiem.lv/say/ext/add.php?link=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
88
- 'Douban' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.douban.com/share/service?name=%post_title%&href=%encoded_post_url%&image=&updated=&bm=&url=%encoded_post_url%&title=%post_title%&sel=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
89
- 'Evernote' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.evernote.com/clip.action?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
90
- 'Fark' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.fark.com/submit?new_url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
91
- 'Fintel' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://fintel.io/submit?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
92
- 'Flipboard' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://share.flipboard.com/bookmarklet/popout?v=2&url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
93
- 'Folkd' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.folkd.com/page/social-bookmarking.html?addurl=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
94
- 'GentleReader' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://app.gentlereader.com/bookmark?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
95
- 'Google_Bookmarks' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.google.com/bookmarks/mark?op=edit&bkmk=%encoded_post_url%&title=%post_title%&annotation=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
96
- 'Google_Classroom' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://classroom.google.com/u/0/share?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
97
- 'Google_Gmail' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&su=%post_title%&body=Link:%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
98
- 'Hacker_News' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://news.ycombinator.com/submitlink?u=%encoded_post_url%&t=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
99
- 'Hatena' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://b.hatena.ne.jp/bookmarklet?url=%encoded_post_url%&btitle=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
100
- 'Instapaper' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.instapaper.com/edit?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
101
- 'Jamespot' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//my.jamespot.com/")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
102
- 'Kakao' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://story.kakao.com/share?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
103
- 'Kik' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.kik.com/send/article/?app_name=Share&text=&title=%post_title%&url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
104
- 'Kindle_It' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//fivefilters.org/kindle-it/send.php?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
105
- 'Known' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://withknown.com/share/?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
106
- 'Line' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><a href="https://social-plugins.line.me/lineit/share?url=%encoded_post_url%"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></a></i></li>',
107
- 'LiveJournal' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.livejournal.com/update.bml?subject=%post_title%&event=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
108
- 'Mail.Ru' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://connect.mail.ru/share?share_url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
109
- 'Mendeley' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.mendeley.com/sign-in/")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
110
- 'Meneame' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.meneame.net/submit.php?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
111
- 'MeWe' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://mewe.com/share?link=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
112
- 'mix' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://mix.com/mixit?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
113
- 'Mixi' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://mixi.jp/share.pl?mode=login&u=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
114
- 'MySpace' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'var heateorSssMyspaceShareUrl = "https://myspace.com/post?u=" + encodeURIComponent("%encoded_post_url%") + "&t=%post_title%&l=3&c=%post_title%";heateorSssPopup(heateorSssMyspaceShareUrl)\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
115
- 'Netvouz' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.netvouz.com/action/submitBookmark?url=%encoded_post_url%&title=%post_title%&popup=no&description=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
116
- 'NewsVine' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.newsvine.com/_tools/seed?popoff=0&u=%encoded_post_url%&h=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
117
- 'NUjij' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.nujij.nl/nieuw-bericht.2051051.lynkx?title=%post_title%&url=%encoded_post_url%&bericht=&topic=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
118
- 'Odnoklassniki' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://connect.ok.ru/dk?cmd=WidgetSharePreview&st.cmd=WidgetSharePreview&st.shareUrl=%encoded_post_url%&st.client_id=-1")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
119
- 'Outlook.com' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://mail.live.com/default.aspx?rru=compose?subject=%post_title%&body=%encoded_post_url%&lc=1033&id=64855&mkt=en-us&cbcxt=mai")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
120
- 'Papaly' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://papaly.com/api/share.html?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
121
- 'Pinboard' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://pinboard.in/popup_login/?url=%encoded_post_url%&title=%post_title%&later=&description=&next=same")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
122
- 'Plurk' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.plurk.com/m?content=%encoded_post_url%&qualifier=shares")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
123
- 'Pocket' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://readitlaterlist.com/save?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
124
- 'PrintFriendly' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.printfriendly.com/print?url=%encoded_post_url%&partner=a2a")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
125
- 'Protopage_Bookmarks' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.protopage.com/add-button-site?url=%encoded_post_url%&label=&type=page")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
126
- 'Pusha' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.pusha.se/posta?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
127
- 'Qzone' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
128
- 'Rediff MyPage' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//share.rediff.com/bookmark/addbookmark?bookmarkurl=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
129
- 'Refind' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://refind.com/?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
130
- 'Renren' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.connect.renren.com/share/sharer?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
131
- 'Segnalo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://segnalo.virgilio.it/post.html.php?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
132
- 'Sina Weibo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://service.weibo.com/share/share.php?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
133
- 'SiteJot' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("http://www.sitejot.com/loginform.php?iSiteAdd=&iSiteDes=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
134
- 'Skype' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://web.skype.com/share?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
135
- 'Slashdot' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//slashdot.org/submission?url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
136
- 'SMS' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><a href="sms:?&body=%post_title% %encoded_post_url%" rel="nofollow"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></a></i></li>',
137
- 'StockTwits' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://stocktwits.com/widgets/share?body=%post_title%%20%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
138
- 'Stumpedia' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.stumpedia.com/submit?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
139
- 'Svejo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://svejo.net/story/submit_by_url?url=%encoded_post_url%&title=%post_title%&summary=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
140
- 'Symbaloo_Feeds' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.symbaloo.com/")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
141
- 'Telegram' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://telegram.me/share/url?url=%encoded_post_url%&text=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
142
- 'Threema' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><a href="threema://compose?text=%post_title% %encoded_post_url%" rel="nofollow"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></a></i></li>',
143
- 'Trello' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://trello.com/add-card?mode=popup&url=%encoded_post_url%&name=%post_title%&desc=")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
144
- 'Tuenti' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.tuenti.com/share?p=b5dd6602&url=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
145
- 'Twiddla' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.twiddla.com/New.aspx?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
146
- 'TypePad_Post' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://www.typepad.com/services/quickpost/post?v=2&qp_show=ac&qp_title=%post_title%&qp_href=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
147
- 'Viadeo' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.viadeo.com/shareit/share/?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
148
- 'Viber' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><a href="viber://forward?text=%post_title% %encoded_post_url%" rel="nofollow"><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></a></i></li>',
149
- 'Webnews' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.webnews.de/login")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
150
- 'WordPress' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.addtoany.com/ext/wordpress/press_this?linkurl=%encoded_post_url%&linkname=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
151
- 'Wykop' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//www.wykop.pl/dodaj?url=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
152
- 'Yahoo_Mail' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//compose.mail.yahoo.com/?Subject=%post_title%&body=Link:%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
153
- 'Yoolink' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//yoolink.to/addorshare?url_value=%encoded_post_url%&title=%post_title%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
154
- 'YouMob' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("//youmob.com/startmob.aspx?cookietest=true&mob=%encoded_post_url%")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>',
155
- 'youtube' => '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background"><a href="%youtube_username%" rel="nofollow noopener" target="_blank"><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></a></i></li>'
156
  );
157
 
158
 
@@ -162,7 +158,6 @@ class Sassy_Social_Share_Sharing_Networks {
162
  * @since 3.1.7
163
  */
164
  private $amp_sharing_networks = array(
165
- 'Copy_Link' => '',
166
  'facebook_share' => '',
167
  'facebook_like' => '',
168
  'facebook_recommend' => '',
@@ -172,19 +167,23 @@ class Sassy_Social_Share_Sharing_Networks {
172
  'buffer_share' => '',
173
  'xing_share' => '',
174
  'yummly_share' => '',
 
175
  'facebook' => '<a class="heateor_sss_amp heateor_sss_amp_facebook" href="https://www.facebook.com/sharer/sharer.php?u=%encoded_post_url%" title="Facebook" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/facebook.svg" width="%width%" height="%height%" alt="Facebook" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
 
176
  'twitter' => '<a class="heateor_sss_amp heateor_sss_amp_twitter" href="http://twitter.com/intent/tweet?%via_twitter_username%text=%wpseo_post_title%&url=%encoded_post_url%" title="Twitter" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/twitter.svg" width="%width%" height="%height%" alt="Twitter" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
177
- 'parler' => '<a class="heateor_sss_amp heateor_sss_amp_twitter" href="https://parler.com/new-post?message=%post_title%&url=%encoded_post_url%" title="Parler" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/parler.svg" width="%width%" height="%height%" alt="Parler" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
178
- 'gab' => '<a class="heateor_sss_amp heateor_sss_amp_twitter" href="https://gab.com/compose?url=%encoded_post_url%&text=%post_title%" title="Gab" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/gab.svg" width="%width%" height="%height%" alt="Gab" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
179
  'linkedin' => '<a class="heateor_sss_amp heateor_sss_amp_linkedin" href="http://www.linkedin.com/shareArticle?mini=true&url=%encoded_post_url%&title=%post_title%" title="Linkedin" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/linkedin.svg" width="%width%" height="%height%" alt="Linkedin" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
180
  'print' => '<a class="heateor_sss_amp heateor_sss_amp_print" href="javascript:void(0)" onclick="window.print()" title="Print" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/print.svg" width="%width%" height="%height%" alt="Print" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
181
- 'email' => '<a class="heateor_sss_amp heateor_sss_amp_email" href="mailto:?subject=%post_title%&body=%encoded_post_url%" title="Email" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/email.svg" width="%width%" height="%height%" alt="Email" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
 
 
182
  'reddit' => '<a class="heateor_sss_amp heateor_sss_amp_reddit" href="http://reddit.com/submit?url=%encoded_post_url%&title=%post_title%" title="Reddit" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/reddit.svg" width="%width%" height="%height%" alt="Reddit" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
183
  'digg' => '<a class="heateor_sss_amp heateor_sss_amp_digg" href="http://digg.com/submit?url=%encoded_post_url%&title=%post_title%" title="Digg" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/digg.svg" width="%width%" height="%height%" alt="Digg" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
184
  'float_it' => '<a class="heateor_sss_amp heateor_sss_amp_float_it" href="http://www.designfloat.com/submit.php?url=%encoded_post_url%&title=%post_title%" title="Float it" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/float_it.svg" width="%width%" height="%height%" alt="Float it" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
185
  'tumblr' => '<a class="heateor_sss_amp heateor_sss_amp_tumblr" href="https://www.tumblr.com/widgets/share/tool?posttype=link&canonicalUrl=%encoded_post_url%&title=%post_title%&caption=" title="Tumblr" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/tumblr.svg" width="%width%" height="%height%" alt="Tumblr" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
186
  'vkontakte' => '<a class="heateor_sss_amp heateor_sss_amp_vkontakte" href="http://vkontakte.ru/share.php?&url=%encoded_post_url%" title="Vkontakte" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/vkontakte.svg" width="%width%" height="%height%" alt="Vkontakte" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
187
- 'pinterest' => '<a class="heateor_sss_amp heateor_sss_amp_pinterest" href="javascript:void( (function() {var e=document.createElement(\'script\' );e.setAttribute(\'type\',\'text/javascript\' );e.setAttribute(\'charset\',\'UTF-8\' );e.setAttribute(\'src\',\'//assets.pinterest.com/js/pinmarklet.js?r=\'+Math.random()*99999999);document.body.appendChild(e)})());" title="Pinterest" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/pinterest.svg" width="%width%" height="%height%" alt="Pinterest" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
 
 
188
  'xing' => '<a class="heateor_sss_amp heateor_sss_amp_xing" href="https://www.xing.com/spi/shares/new?cb=0&url=%encoded_post_url%" title="Xing" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/xing.svg" width="%width%" height="%height%" alt="Xing" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
189
  'whatsapp' => '<a class="heateor_sss_amp heateor_sss_amp_whatsapp" href="https://api.whatsapp.com/send?text=%post_title% %encoded_post_url%" title="Whatsapp" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/whatsapp.svg" width="%width%" height="%height%" alt="Whatsapp" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
190
  'instagram' => '<a class="heateor_sss_amp heateor_sss_amp_instagram" href="https://www.instagram.com/%instagram_username%" title="Instagram" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/instagram.svg" width="%width%" height="%height%" alt="Instagram" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
@@ -271,11 +270,10 @@ class Sassy_Social_Share_Sharing_Networks {
271
  'Viadeo' => '<a class="heateor_sss_amp heateor_sss_amp_viadeo" href="//www.viadeo.com/shareit/share/?url=%encoded_post_url%&title=%post_title%" title="Viadeo" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/viadeo.svg" width="%width%" height="%height%" alt="Viadeo" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
272
  'Viber' => '<a class="heateor_sss_amp heateor_sss_amp_viber" href="viber://forward?text=%post_title% %encoded_post_url%" title="Viber" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/viber.svg" width="%width%" height="%height%" alt="Viber" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
273
  'Webnews' => '<a class="heateor_sss_amp heateor_sss_amp_webnews" href="//www.webnews.de/login" title="Webnews" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/webnews.svg" width="%width%" height="%height%" alt="Webnews" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
274
- 'WordPress' => '<a class="heateor_sss_amp heateor_sss_amp_wordpress" href="//www.addtoany.com/ext/wordpress/press_this?linkurl=%encoded_post_url%&linkname=%post_title%" title="WordPress" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/wordpress.svg" width="%width%" height="%height%" alt="WordPress" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
275
  'Wykop' => '<a class="heateor_sss_amp heateor_sss_amp_wykop" href="//www.wykop.pl/dodaj?url=%encoded_post_url%&title=%post_title%" title="Wykop" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/wykop.svg" width="%width%" height="%height%" alt="Wykop" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
276
  'Yahoo_Mail' => '<a class="heateor_sss_amp heateor_sss_amp_yahoo_mail" href="//compose.mail.yahoo.com/?Subject=%post_title%&body=Link:%encoded_post_url%" title="Yahoo Mail" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/yahoo_mail.svg" width="%width%" height="%height%" alt="Yahoo Mail" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
277
  'Yahoo_Messenger' => '<a class="heateor_sss_amp heateor_sss_amp_yahoo_messenger" href="ymsgr:sendim?m=%encoded_post_url%" title="Yahoo Messenger" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/yahoo_messenger.svg" width="%width%" height="%height%" alt="Yahoo Messenger" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
278
- 'Yoolink' => '<a class="heateor_sss_amp heateor_sss_amp_yoolink" href="//yoolink.to/addorshare?url_value=%encoded_post_url%&title=%post_title%" title="Yoolink" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/yoolink.svg" width="%width%" height="%height%" alt="Yoolink" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
279
  'YouMob' => '<a class="heateor_sss_amp heateor_sss_amp_youmob" href="//youmob.com/startmob.aspx?cookietest=true&mob=%encoded_post_url%" title="YouMob" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/youmob.svg" width="%width%" height="%height%" alt="YouMob" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
280
  'youtube' => '<a class="heateor_sss_amp heateor_sss_amp_youtube" href="%youtube_username%" title="Youtube" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/youtube.svg" width="%width%" height="%height%" alt="Youtube" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>'
281
  );
@@ -283,22 +281,23 @@ class Sassy_Social_Share_Sharing_Networks {
283
  /**
284
  * Fetch social share networks
285
  *
286
- * @since 1.0.0
287
  */
288
  public function fetch_sharing_networks( $sharing_type ) {
289
 
 
290
  $this->sharing_networks['instagram'] = str_replace( '%instagram_username%', $this->options['instagram_username'] != '' ? $this->options['instagram_username'] : $this->options['vertical_instagram_username'], $this->sharing_networks['instagram'] );
291
  $this->sharing_networks['youtube'] = str_replace( '%youtube_username%', $this->options['youtube_username'] != '' ? $this->options['youtube_username'] : $this->options['vertical_youtube_username'], $this->sharing_networks['youtube'] );
292
- $this->sharing_networks['Comment'] = str_replace( '%comment_container_id%', $this->options['comment_container_id'] != '' ? $this->options['comment_container_id'] : $this->options['vertical_comment_container_id'], $this->sharing_networks['Comment'] );
293
- $this->sharing_networks['facebook_share'] = '<li style="padding:%padding%px 0 !important" class="heateor_sss_%network%">%like_count_container%<div class="fb-share-button" data-href="%post_url%" data-layout="button' . ( isset( $this->options[$sharing_type . '_counts'] ) ? '_count' : '' ) . '"></div></li>';
294
- $this->sharing_networks['facebook_like'] = '<li style="padding:%padding%px 0 !important" class="heateor_sss_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button' . ( isset( $this->options[$sharing_type . '_counts'] ) ? '_count' : '' ) . '" data-action="like" data-show-faces="false" data-share="false"></div></li>';
295
- $this->sharing_networks['facebook_recommend'] = '<li style="padding:%padding%px 0 !important" class="heateor_sss_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button' . ( isset( $this->options[$sharing_type . '_counts'] ) ? '_count' : '' ) . '" data-action="recommend" data-show-faces="false" data-share="false"></div></li>';
296
- $this->sharing_networks['pinterest_pin'] = '<li style="padding:%padding%px 0!important;margin-top:-1px!important" class="heateor_sss_%network%">%like_count_container%<a data-pin-lang="%language%" href="//www.pinterest.com/pin/create/button/?url=%post_url%" ' . ( isset( $this->options[$sharing_type . '_counts'] ) ? 'data-pin-count="true"' : 'data-pin-count="false"' ) . ' data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></li>';
297
- $this->sharing_networks['xing_share'] = '<li style="padding:%padding%px 0 !important" class="heateor_sss_xing">%like_count_container%<div data-type="XING/Share" ' . ( isset( $this->options[$sharing_type . '_counts'] ) ? 'data-counter="right" ' : '' ) . 'data-url="%post_url%" data-lang="%language%"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></li>';
298
  $fb_key = '1904103319867886';
299
- $this->sharing_networks['Facebook_Messenger'] = '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("' . ( $this->check_if_mobile() ? 'fb-messenger://share/?link=%encoded_post_url%' : 'https://www.facebook.com/dialog/send?app_id='. $fb_key .'&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%' ) . '")\'><ss style="%inner_style%" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>';
300
- $whatsapp_share_url = $this->whatsapp_share_api();
301
- $this->sharing_networks['whatsapp'] = '<li class="%li_class%"><i %style% alt="%title%" Title="%title%" class="heateorSssSharing heateorSss%ucfirst_network%Background" onclick=\'heateorSssPopup("https://' . $whatsapp_share_url . '.whatsapp.com/send?text=%post_title% %encoded_post_url%")\'><ss style="display:block" class="heateorSssSharingSvg heateorSss%ucfirst_network%Svg"></ss></i></li>';
302
 
303
  return $this->sharing_networks;
304
 
@@ -332,25 +331,12 @@ class Sassy_Social_Share_Sharing_Networks {
332
  $fb_key = '1904103319867886';
333
  $this->amp_sharing_networks['Facebook_Messenger'] = '<a class="heateor_sss_amp heateor_sss_amp_facebook_messenger" href="' . ( $this->check_if_mobile() ? 'fb-messenger://share/?link=%encoded_post_url%' : 'https://www.facebook.com/dialog/send?app_id=' . $fb_key . '&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%' ) . '" title="Facebook Messenger" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/facebook_messenger.svg" width="%width%" height="%height%" alt="Facebook Messenger" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>';
334
  $this->amp_sharing_networks['pinterest'] = '<a class="heateor_sss_amp heateor_sss_amp_pinterest" href="' . $pinterest_share_url . '" title="Pinterest" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/pinterest.svg" width="%width%" height="%height%" alt="Pinterest" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>';
 
335
 
336
  return $this->amp_sharing_networks;
337
 
338
  }
339
 
340
- /**
341
- * Determine which Whatsapp share url to use
342
- *
343
- * @since 3.2.13
344
- */
345
- private function whatsapp_share_api() {
346
-
347
- if ( $this->check_if_mobile() ) {
348
- return 'api';
349
- }
350
- return 'web';
351
-
352
- }
353
-
354
  /**
355
  * Check if webpage is being visited in a mobile device
356
  *
1
  <?php
 
2
  /**
3
  * The file contains the class defining sharing networks and their sharer urls
4
  *
5
+ * @since 1.0
6
  *
7
  */
8
 
9
  /**
10
  * This class defines sharing networks and their sharer urls
11
  *
12
+ * @since 1.0
13
  *
14
  */
15
  class Sassy_Social_Share_Sharing_Networks {
23
  /**
24
  * Constructor
25
  *
26
+ * @since 1.0
27
  */
28
  public function __construct( $options ) {
29
 
34
  /**
35
  * Supported Social sharing networks
36
  *
37
+ * @since 1.0
38
  */
39
  private $sharing_networks = array(
40
+ 'facebook_share' => '<a style="padding:%padding%px 0!important" class="heateor_sss_%network%">%like_count_container%<div class="fb-share-button" data-href="%post_url%" data-layout="button_count"></div></a>',
41
+ 'facebook_like' => '<a style="padding:%padding%px 0!important" class="heateor_sss_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button_count" data-action="like" data-show-faces="false" data-share="false"></div></a>',
42
+ 'facebook_recommend' => '<a style="padding:%padding%px 0!important" class="heateor_sss_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button_count" data-action="recommend" data-show-faces="false" data-share="false"></div></a>',
43
+ 'twitter_tweet' => '<a style="padding:%padding%px 0!important" class="heateor_sss_%network%" data-heateor-sss-href="%post_url%">%like_count_container%<a href="https://twitter.com/share" class="twitter-share-button" data-url="%post_url%" data-counturl="%post_url%" data-text="%decoded_post_title%" data-via="%twitter_username%" data-lang="%language%" >Tweet</a><script>!function(d,s,id) {var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?"http":"https";if ( !d.getElementById(id) ) {js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document, "script", "twitter-wjs");</script></a>',
44
+ 'linkedin_share' => '<a style="padding:7.35px 0!important;margin-top:-2px!important;" class="heateor_sss_%network%">%like_count_container%<script src="//platform.linkedin.com/in.js" type="text/javascript">lang: %language%</script><script type="IN/Share" data-url="%post_url%" data-counter="right"></script></a>',
45
+ 'pinterest_pin' => '<a style="padding:%padding%px 0!important;margin-top:-1px!important" class="heateor_sss_%network%">%like_count_container%<a data-pin-lang="%language%" href="//www.pinterest.com/pin/create/button/?url=%post_url%" data-pin-do="buttonPin" data-pin-config="beside"><img src="//assets.pinterest.com/images/pidgets/pinit_fg_en_rect_gray_20.png" /></a><script type="text/javascript" async src="//assets.pinterest.com/js/pinit.js"></script></a>',
46
+ 'buffer_share' => '<a style="padding:%padding%px 0!important" class="heateor_sss_%network%">%like_count_container%<a href="http://bufferapp.com/add" class="buffer-add-button" data-text="%post_title%" data-url="%post_url%" data-count="horizontal" data-via="%buffer_username%" ></a><script type="text/javascript" src="https://d389zggrogs7qo.cloudfront.net/js/button.js"></script></a>',
47
+ 'xing_share' => '<a style="padding:%padding%px 0 !important" class="heateor_sss_xing">%like_count_container%<div data-type="XING/Share" data-counter="right" data-url="%post_url%" data-lang="%language%"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></a>',
48
+ 'yummly_share' => '<a style="padding:%padding%px 0!important" class="heateor_sss_yummly">%like_count_container%<a href="//yummly.com" class="YUMMLY-YUM-BUTTON">Yum</a><script src="https://www.yummly.com/js/widget.js?general"></script></a>',
49
+ 'reddit_badge' => '<a style="padding:%padding%px 0!important" class="heateor_sss_reddit">%like_count_container%<script type="text/javascript" src="//www.reddit.com/static/button/button1.js"></script></a>',
50
+ 'MeWe' => '<a class="heateor_sss_MeWe" href="https://mewe.com/share?link=%encoded_post_url%" title="MeWe" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#007da1;%span_style%"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-4 -3 38 38"><g fill="%logo_color%"><path d="M9.636 10.427a1.22 1.22 0 1 1-2.44 0 1.22 1.22 0 1 1 2.44 0zM15.574 10.431a1.22 1.22 0 0 1-2.438 0 1.22 1.22 0 1 1 2.438 0zM22.592 10.431a1.221 1.221 0 1 1-2.443 0 1.221 1.221 0 0 1 2.443 0zM29.605 10.431a1.221 1.221 0 1 1-2.442 0 1.221 1.221 0 0 1 2.442 0zM3.605 13.772c0-.471.374-.859.859-.859h.18c.374 0 .624.194.789.457l2.935 4.597 2.95-4.611c.18-.291.43-.443.774-.443h.18c.485 0 .859.387.859.859v8.113a.843.843 0 0 1-.859.845.857.857 0 0 1-.845-.845V16.07l-2.366 3.559c-.18.276-.402.443-.72.443-.304 0-.526-.167-.706-.443l-2.354-3.53V21.9c0 .471-.374.83-.845.83a.815.815 0 0 1-.83-.83v-8.128h-.001zM14.396 14.055a.9.9 0 0 1-.069-.333c0-.471.402-.83.872-.83.415 0 .735.263.845.624l2.23 6.66 2.187-6.632c.139-.402.428-.678.859-.678h.124c.428 0 .735.278.859.678l2.187 6.632 2.23-6.675c.126-.346.415-.609.83-.609.457 0 .845.361.845.817a.96.96 0 0 1-.083.346l-2.867 8.032c-.152.43-.471.706-.887.706h-.165c-.415 0-.721-.263-.872-.706l-2.161-6.328-2.16 6.328c-.152.443-.47.706-.887.706h-.165c-.415 0-.72-.263-.887-.706l-2.865-8.032z"></path></g></svg></span></a>',
51
+ 'facebook' => '<a class="heateor_sss_facebook" href="https://www.facebook.com/sharer/sharer.php?u=%encoded_post_url%" title="Facebook" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#3c589a;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-5 -5 42 42"><path d="M17.78 27.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99 2.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123 0-5.26 1.905-5.26 5.405v3.016h-3.53v4.09h3.53V27.5h4.223z" fill="%logo_color%"></path></svg></span></a>',
52
+ 'gettr' => '<a class="heateor_sss_gettr" href="https://gettr.com/share?url=%encoded_post_url%" title="Gettr" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#E50000;%span_style%"><svg width="100%" height="100%" viewBox="-8 -5 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M24.528 7.9125C24.1467 8.22187 23.7874 8.3875 23.2655 8.39688C23.7249 7.94688 24.1405 7.43125 24.478 6.875C24.8155 6.31875 25.0717 5.71875 25.2624 5.09375C23.6436 6.32187 21.1561 6.64062 18.9186 7.55312C16.753 8.42812 14.8186 9.85312 14.5655 11.7312C14.3874 13.0781 15.0686 14.6531 16.0249 16.0063C16.1311 15.6469 16.303 15.2781 16.553 15.0125C17.0467 14.4906 17.853 14.3594 18.628 14.2344C19.7999 14.0469 20.8936 13.875 21.8561 13.3156C22.5342 12.9219 23.1436 12.3313 23.528 11.6281C23.7467 11.2344 23.8936 10.8031 23.9811 10.3656C23.7311 10.6 23.3405 10.7531 23.0155 10.6844C23.8186 9.9 24.3374 9.00625 24.528 7.9125Z" fill="%logo_color%"/><path d="M16.0221 17.6094H8.7002V18.2969C8.7002 18.2969 12.1314 18.4781 12.6877 21.0938H16.0189H19.3502C19.9064 18.4781 23.3377 18.2969 23.3377 18.2969V17.6094H16.0221Z" fill="%logo_color%"/><path d="M19.2221 21.6846C19.0033 21.6439 18.8002 21.7658 18.7627 21.9596L18.3689 24.4533C18.3658 24.4721 18.3627 24.4908 18.3627 24.5096H17.6346L17.9564 22.0721C17.9752 21.8752 17.8127 21.7033 17.5971 21.6814C17.3783 21.6596 17.1846 21.8033 17.1689 21.9971L17.0189 24.5064C17.0189 24.5096 17.0189 24.5096 17.0189 24.5127H16.3314L16.4221 22.0377C16.4221 21.8533 16.2627 21.7002 16.0658 21.6846C16.0533 21.6846 16.0408 21.6814 16.0252 21.6814C16.0127 21.6814 15.9971 21.6814 15.9846 21.6846C15.8377 21.6971 15.7127 21.7814 15.6596 21.9033C15.6377 21.9471 15.6283 21.9939 15.6283 22.0439L15.7189 24.5189H15.0314C15.0314 24.5158 15.0314 24.5158 15.0314 24.5127L14.8752 22.0002C14.8564 21.8033 14.6658 21.6627 14.4471 21.6846C14.2283 21.7064 14.0658 21.8814 14.0877 22.0752L14.4096 24.5127H13.6814C13.6783 24.4939 13.6752 24.4752 13.6752 24.4564L13.2814 21.9627C13.2439 21.7689 13.0377 21.6471 12.8221 21.6877C12.6033 21.7283 12.4627 21.9221 12.5002 22.1158L13.0564 24.5158H13.3846C13.4814 25.0502 13.5439 25.4252 13.5783 25.6283H14.1283C14.2314 26.6533 15.2189 36.1221 15.2189 36.1221C15.2189 36.1221 15.2846 36.9252 16.0221 36.9252C16.7564 36.9252 16.8252 36.1221 16.8252 36.1221C16.9908 34.7971 17.8064 26.5814 17.9158 25.6283H18.4689C18.5033 25.4252 18.5658 25.0502 18.6627 24.5158H18.9908L19.5471 22.1158C19.5814 21.9189 19.4377 21.7252 19.2221 21.6846Z" fill="%logo_color%"/></svg></span></a>',
53
+ 'parler' => '<a class="heateor_sss_parler" href="https://parler.com/new-post?message=%post_title%&url=%encoded_post_url%" title="Parler" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#C63240;%span_style%"><svg xmlns="http://www.w3.org/2000/svg" height="100%" width="100%" viewBox="-24 -30 140 160"><g fill="%logo_color%"><path d="M58.34 83.31h-25v-8.49c0-4.5 3.64-8.14 8.14-8.14h16.87c13.8 0 25.02-11.19 25.02-24.94 0-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0 7.45 7.45 0 16.63 0h36.41l5.44.17C81.39.24 100 18.86 100 41.74c0 22.92-18.69 41.57-41.66 41.57z"></path><path d="M16.65 100C7.46 100 .02 92.55.02 83.37V49.49c0-8.92 7.23-16.16 16.16-16.16h42.19a8.32 8.32 0 010 16.64h-33.5c-4.53 0-8.21 3.67-8.21 8.21V100z"></path></g></svg></span></a>',
54
+ 'gab' => '<a class="heateor_sss_gab" href="https://gab.com/compose?url=%encoded_post_url%&text=%post_title%" title="Gab" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#25CC80;%span_style%"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-14.5 3.5 46 30" xml:space="preserve"><g><path fill="%logo_color%" d="M13.8,7.6h-2.4v0.7V9l-0.4-0.3C10.2,7.8,9,7.2,7.7,7.2c-0.2,0-0.4,0-0.4,0c-0.1,0-0.3,0-0.5,0 c-5.6,0.3-8.7,7.2-5.4,12.1c2.3,3.4,7.1,4.1,9.7,1.5l0.3-0.3l0,0.7c0,1-0.1,1.5-0.4,2.2c-1,2.4-4.1,3-6.8,1.3 c-0.2-0.1-0.4-0.2-0.4-0.2c-0.1,0.1-1.9,3.5-1.9,3.6c0,0.1,0.5,0.4,0.8,0.6c2.2,1.4,5.6,1.7,8.3,0.8c2.7-0.9,4.5-3.2,5-6.4 c0.2-1.1,0.2-0.8,0.2-8.4l0-7.1H13.8z M9.7,17.6c-2.2,1.2-4.9-0.4-4.9-2.9C4.8,12.6,7,11,9,11.6C11.8,12.4,12.3,16.1,9.7,17.6z"></path></g></svg></span></a>',
55
+ 'twitter' => '<a class="heateor_sss_button_twitter" href="http://twitter.com/intent/tweet?%via_twitter_username%text=%wpseo_post_title%&url=%encoded_post_url%" title="Twitter" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_twitter" style="background-color:#55acee;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-4 -4 39 39"><path d="M28 8.557a9.913 9.913 0 0 1-2.828.775 4.93 4.93 0 0 0 2.166-2.725 9.738 9.738 0 0 1-3.13 1.194 4.92 4.92 0 0 0-3.593-1.55 4.924 4.924 0 0 0-4.794 6.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942 4.942 0 0 0-.665 2.477c0 1.71.87 3.214 2.19 4.1a4.968 4.968 0 0 1-2.23-.616v.06c0 2.39 1.7 4.38 3.952 4.83-.414.115-.85.174-1.297.174-.318 0-.626-.03-.928-.086a4.935 4.935 0 0 0 4.6 3.42 9.893 9.893 0 0 1-6.114 2.107c-.398 0-.79-.023-1.175-.068a13.953 13.953 0 0 0 7.55 2.213c9.056 0 14.01-7.507 14.01-14.013 0-.213-.005-.426-.015-.637.96-.695 1.795-1.56 2.455-2.55z" fill="%logo_color%"></path></svg></span></a>',
56
+ 'linkedin' => '<a class="heateor_sss_button_linkedin" href="http://www.linkedin.com/shareArticle?mini=true&url=%encoded_post_url%&title=%post_title%" title="LinkedIn" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_linkedin" style="background-color:#0077b5;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path d="M6.227 12.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43 2.43 0 0 1 0 4.86c-1.344 0-2.428-1.09-2.428-2.43s1.084-2.43 2.428-2.43m4.72 6.7h4.02v1.84h.058c.56-1.058 1.927-2.176 3.965-2.176 4.238 0 5.02 2.792 5.02 6.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18 0-2.514 1.7-2.514 3.46v6.668h-4.187V12.61z" fill="%logo_color%"></path></svg></span></a>',
57
+ 'print' => '<a class="heateor_sss_button_print" href="javascript:void(0)" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_print" style="background-color:#fd6500;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" stroke="%logo_color%" stroke-width=".1" d="M4.467 14.305h23.065v6.498H4.467v-6.498z"/><path fill="#DCDCDC" stroke="%logo_color%" stroke-width=".1" d="M5.228 12.83H26.77l.745 1.39H4.485l.743-1.39z"/><path d="M9.19 8.118h13.467v6.106H9.19z"/><path fill="%logo_color%" stroke="%logo_color%" stroke-width=".1" d="M9.844 6.516h12.312v7.31H9.844z"/><path stroke="%logo_color%" stroke-width=".1" d="M8.602 17.37h14.574v3.396H8.602z"/><path fill="%logo_color%" stroke="%logo_color%" stroke-width=".1" d="M10.152 17.97h11.27l2.233 7.515H7.92l2.232-7.514z"/></svg></span></a>',
58
+ 'email' => '<a class="heateor_sss_email" onclick="window.open(\'mailto:?subject=\' + decodeURIComponent(\'%post_title%\' ).replace(\'&\', \'%26\') + \'&body=\' + decodeURIComponent(\'%encoded_post_url%\' ), \'_blank\')" href="javascript:void(0)" title="Email" rel="nofollow noopener" %anchor_style%><span class="heateor_sss_svg" style="background-color:#53beee;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-4 -4 43 43"><path d="M 5.5 11 h 23 v 1 l -11 6 l -11 -6 v -1 m 0 2 l 11 6 l 11 -6 v 11 h -22 v -11" stroke-width="1" fill="%logo_color%"></path></svg></span></a>',
59
+ 'reddit' => '<a class="heateor_sss_button_reddit" href="http://reddit.com/submit?url=%encoded_post_url%&title=%post_title%" title="Reddit" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_reddit" style="background-color:#ff5700;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-3.5 -3.5 39 39"><path d="M28.543 15.774a2.953 2.953 0 0 0-2.951-2.949 2.882 2.882 0 0 0-1.9.713 14.075 14.075 0 0 0-6.85-2.044l1.38-4.349 3.768.884a2.452 2.452 0 1 0 .24-1.176l-4.274-1a.6.6 0 0 0-.709.4l-1.659 5.224a14.314 14.314 0 0 0-7.316 2.029 2.908 2.908 0 0 0-1.872-.681 2.942 2.942 0 0 0-1.618 5.4 5.109 5.109 0 0 0-.062.765c0 4.158 5.037 7.541 11.229 7.541s11.22-3.383 11.22-7.541a5.2 5.2 0 0 0-.053-.706 2.963 2.963 0 0 0 1.427-2.51zm-18.008 1.88a1.753 1.753 0 0 1 1.73-1.74 1.73 1.73 0 0 1 1.709 1.74 1.709 1.709 0 0 1-1.709 1.711 1.733 1.733 0 0 1-1.73-1.711zm9.565 4.968a5.573 5.573 0 0 1-4.081 1.272h-.032a5.576 5.576 0 0 1-4.087-1.272.6.6 0 0 1 .844-.854 4.5 4.5 0 0 0 3.238.927h.032a4.5 4.5 0 0 0 3.237-.927.6.6 0 1 1 .844.854zm-.331-3.256a1.726 1.726 0 1 1 1.709-1.712 1.717 1.717 0 0 1-1.712 1.712z" fill="%logo_color%"/></svg></span></a>',
60
+ 'digg' => '<a class="heateor_sss_button_digg" href="http://digg.com/submit?url=%encoded_post_url%&title=%post_title%" title="Digg" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_digg" style="background-color:#006094;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-5 -5 49 49"><path class="heateor_sss_svg_stroke heateor_sss_not_fill" d="M 6 20 h 10 c 0 -14 -9 -14 -9 0 m 5 0 v 7 m -1 0 v -7 m 4 -7 h 4.5 v -5 h 8 v 8 h -8 v -3 m 8 0 h 4 v 5.5 h -3 v 12 h -4 v -8 m 0 8 h -6.5 v -12 h -2" stroke-width="2" stroke="%logo_color%" fill="none"></path><ellipse cx="11.5" cy="28.5" rx="4" ry="2" fill="%logo_color%"></ellipse></svg></span></a>',
61
+ 'float_it' => '<a class="heateor_sss_button_float_it" href="http://www.designfloat.com/submit.php?url=%encoded_post_url%&title=%post_title%" title="Float It" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg aheateor_sss_s__default heateor_sss_s_float_it" style="background-color:#29435d;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-3 -3 38 38"><g fill="%logo_color%"><path d="M16 3C8.814 3 3 8.814 3 16s5.814 13 13 13 13-5.814 13-13S23.187 3 16 3zm0 25.152c-6.712 0-12.153-5.44-12.153-12.152C3.847 9.288 9.287 3.848 16 3.848S28.152 9.288 28.152 16c0 6.712-5.44 12.152-12.152 12.152z"/><path d="M22.406 16A6.402 6.402 0 0 0 16 9.593 6.402 6.402 0 0 0 9.593 16 6.4 6.4 0 0 0 16 22.406 6.4 6.4 0 0 0 22.406 16zM16 21.39A5.392 5.392 0 0 1 10.61 16 5.403 5.403 0 0 1 16 10.61 5.393 5.393 0 0 1 21.39 16 5.382 5.382 0 0 1 16 21.39z"/><path d="M13.763 9.187V4.864c-4.475.9-8 4.424-8.898 8.898h4.322a7.226 7.226 0 0 1 4.576-4.575zm9.05 4.576h4.32c-.896-4.475-4.422-8-8.896-8.898v4.322a7.224 7.224 0 0 1 4.575 4.576zm-4.576 9.052v4.322c4.475-.9 8-4.424 8.897-8.9h-4.322a7.232 7.232 0 0 1-4.575 4.578zm-9.05-4.578H4.863c.898 4.475 4.424 8 8.898 8.9v-4.323a7.233 7.233 0 0 1-4.574-4.577z"/></g></svg></span></a>',
62
+ 'tumblr' => '<a class="heateor_sss_button_tumblr" href="https://www.tumblr.com/widgets/share/tool?posttype=link&canonicalUrl=%encoded_post_url%&title=%post_title%&caption=" title="Tumblr" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg aheateor_sss_s__default heateor_sss_s_tumblr" style="background-color:#29435d;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-2 -2 36 36"><path fill="%logo_color%" d="M20.775 21.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17 1.556-.895 4.287-3.923 5.378v2.578h2.02v6.522c0 2.232 1.647 5.404 5.994 5.33 1.467-.025 3.096-.64 3.456-1.17l-.96-2.846z"/></svg></span></a>',
63
+ 'vkontakte' => '<a class="heateor_sss_button_vkontakte" href="http://vkontakte.ru/share.php?&url=%encoded_post_url%" title="Vkontakte" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_vkontakte" style="background-color:#cc2329;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-1 -2 34 34"><path fill-rule="evenodd" clip-rule="evenodd" fill="%logo_color%" d="M15.764 22.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255 1.844 1.705 2.942 2.46.832.57 1.464.445 1.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39 1.353-1.804 1.893-2.902 1.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522 1.394-1.223 2.58c-1.47 2.5-2.06 2.633-2.3 2.476-.563-.36-.42-1.454-.42-2.23 0-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33 1.496.33 1.496s.193 2.852-.46 3.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46 5.757 5.245 8.657c2.553 2.66 5.454 2.485 5.454 2.485z"/></svg></span></a>',
64
+ 'pinterest' => '<a class="heateor_sss_button_pinterest" href="/#pinterest" title="Pinterest" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_pinterest" style="background-color:#cc2329;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-2 -2 35 35"><path fill="%logo_color%" d="M16.539 4.5c-6.277 0-9.442 4.5-9.442 8.253 0 2.272.86 4.293 2.705 5.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591 0-3.338 2.498-6.327 6.505-6.327 3.548 0 5.497 2.168 5.497 5.062 0 3.81-1.686 7.025-4.188 7.025-1.382 0-2.416-1.142-2.085-2.545.397-1.674 1.166-3.48 1.166-4.689 0-1.081-.581-1.983-1.782-1.983-1.413 0-2.548 1.462-2.548 3.419 0 1.247.421 2.091.421 2.091l-1.699 7.199c-.505 2.137-.076 4.755-.039 5.019.021.158.223.196.314.077.13-.17 1.813-2.247 2.384-4.324.162-.587.929-3.631.929-3.631.46.876 1.801 1.646 3.227 1.646 4.247 0 7.128-3.871 7.128-9.053.003-3.918-3.317-7.568-8.361-7.568z"/></svg></span></a>',
65
+ 'xing' => '<a class="heateor_sss_button_xing" href="https://www.xing.com/spi/shares/new?cb=0&url=%encoded_post_url%" title="xing" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_xing" style="background-color:#00797d;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-6 -6 42 42"><path d="M 6 9 h 5 l 4 4 l -5 7 h -5 l 5 -7 z m 15 -4 h 5 l -9 13 l 4 8 h -5 l -4 -8 z" fill="%logo_color%"></path> </svg></span></a>',
66
+ 'instagram' => '<a class="heateor_sss_button_instagram" href="https://www.instagram.com/%instagram_username%" title="Instagram" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#53beee;%span_style%"><svg style="%inner_style%" version="1.1" viewBox="-10 -10 148 148" width="100%" height="100%" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><g><path d="M86,112H42c-14.336,0-26-11.663-26-26V42c0-14.337,11.664-26,26-26h44c14.337,0,26,11.663,26,26v44 C112,100.337,100.337,112,86,112z M42,24c-9.925,0-18,8.074-18,18v44c0,9.925,8.075,18,18,18h44c9.926,0,18-8.075,18-18V42 c0-9.926-8.074-18-18-18H42z" fill="%logo_color%"></path></g><g><path d="M64,88c-13.234,0-24-10.767-24-24c0-13.234,10.766-24,24-24s24,10.766,24,24C88,77.233,77.234,88,64,88z M64,48c-8.822,0-16,7.178-16,16s7.178,16,16,16c8.822,0,16-7.178,16-16S72.822,48,64,48z" fill="%logo_color%"></path></g><g><circle cx="89.5" cy="38.5" fill="%logo_color%" r="5.5"></circle></g></g></svg></span></a>',
67
+ 'yummly' => '<a class="heateor_sss_yummly" href="http://www.yummly.com/urb/verify?url=%encoded_post_url%&title=%post_title%" title="Yummly" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#53beee;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 30 30"><path stroke="%logo_color%" class="heateor_sss_svg_stroke heateor_sss_not_fill" d="M 10.5 10 q 4 -2 2.5 1 l -1 4 q 0 2 5 0 l 1 -6.5 m -1 6.5 l -1 4 c -3 6 -6 -1 0 -1 q 1 -1 5 1" stroke-width="2" fill="none"></path></svg></span></a>',
68
+ 'buffer' => '<a class="heateor_sss_button_buffer" href="https://buffer.com/add?url=%encoded_post_url%&title=%post_title%" title="Buffer" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_buffer" style="background-color:#000;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-4 -4 38 39"><path stroke="%logo_color%" class="heateor_sss_svg_stroke" d="M 15 6 l -10 5 l 10 5 l 10 -5 z" stroke-width="0" fill="%logo_color%"></path><path class="heateor_sss_svg_stroke heateor_sss_not_fill" stroke="%logo_color%" d="M 5.5 14.5 l 9.5 5 l 9.5 -5 m -19 4 l 9.5 5 l 9.5 -5" stroke-width="2" fill="none"></path></svg></span></a>',
69
+ 'AIM' => '<a class="heateor_sss_button_aim" href="http://lifestream.aol.com/?url=%encoded_post_url%&title=%post_title%" title="AIM" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_aim" style="background-color:#10ff00;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16.75 16.548c-.24.558-.465 1.08-.707 1.646 2.756 1.873 5.48 3.752 7.615 6.453l-2.11 1.43c-.708-.768-1.364-1.59-2.132-2.29-1.047-.958-2.156-1.85-3.557-2.285-.585-.183-.98-.086-1.39.41-1.527 1.862-3.26 3.49-5.476 4.522-1.368.64-1.368.642-1.972-.695-.178-.39-.346-.785-.54-1.226 1.827-.433 3.38-1.246 4.62-2.62.74-.822 1.166-1.716 1.26-2.856.17-2.103.628-4.15 1.828-5.95.534-.797 1.768-.98 2.493-.37.062.046.11.126.13.2.48 1.81 2.08 2.005 3.58 1.63.573-.146 1.118-.404 1.73-.63l1.07 1.483c-1.903 1.718-4.075 1.73-6.444 1.145zm.842-12.054c1.78.02 3.254 1.57 3.22 3.386-.032 1.734-1.62 3.284-3.325 3.246-1.822-.04-3.326-1.604-3.284-3.418.038-1.8 1.555-3.236 3.39-3.214z"></path></svg></span></a>',
70
+ 'Amazon_Wish_List' => '<a class="heateor_sss_button_amazon_wish_list" href="http://www.amazon.com/wishlist/add?u=%encoded_post_url%&t=%post_title%" title="Amazon Wish List" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_amazon_wish_list" style="background-color:#ffe000;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M24.998 23.842c-.127 0-.256.03-.377.086-.132.055-.27.117-.4.172l-.194.08-.25.1v.005c-2.72 1.102-5.573 1.748-8.215 1.805-.097.004-.193.004-.29.004-4.153.003-7.544-1.926-10.964-3.823-.12-.06-.24-.094-.36-.094-.156 0-.313.058-.43.164-.114.106-.183.266-.182.426 0 .207.112.395.267.52 3.21 2.786 6.73 5.376 11.46 5.378.094 0 .188-.002.28-.004 3.01-.07 6.415-1.085 9.058-2.745l.016-.01c.346-.207.69-.44 1.018-.703.205-.15.346-.385.344-.63-.01-.435-.377-.73-.775-.73zm3.666-1.54c-.012-.265-.068-.466-.178-.632l-.01-.016-.015-.02c-.11-.12-.216-.167-.333-.218-.347-.133-.853-.205-1.46-.207-.437 0-.92.04-1.4.143l-.002-.03-.486.16-.01.006-.276.09v.012c-.322.136-.615.302-.89.498-.167.13-.31.297-.317.556-.004.14.066.3.185.395.12.097.257.13.378.13.027 0 .055 0 .078-.005l.023-.002.018-.003c.238-.053.586-.085.992-.144.347-.037.72-.066 1.04-.066.225 0 .43.014.57.045.07.016.12.032.15.05.01.003.016.007.02.01.006.02.016.067.014.14.004.268-.11.767-.266 1.25-.152.487-.338.974-.46 1.298-.03.075-.048.157-.048.247-.003.13.05.287.16.393.11.104.255.145.374.145h.006c.18-.002.332-.07.463-.176 1.236-1.112 1.666-2.888 1.684-3.888l-.003-.16z"/><path d="M17.355 10.384c-.728.055-1.565.11-2.404.222-1.282.17-2.57.39-3.63.896-2.07.838-3.467 2.627-3.467 5.254 0 3.3 2.124 4.98 4.81 4.98.894 0 1.622-.114 2.29-.28 1.064-.336 1.958-.95 3.02-2.07.614.838.782 1.23 1.844 2.125.278.114.558.114.78-.052.673-.56 1.85-1.568 2.462-2.125.28-.224.224-.56.056-.837-.613-.783-1.23-1.455-1.23-2.965V10.5c0-2.125.167-4.082-1.397-5.534-1.285-1.173-3.3-1.62-4.864-1.62h-.672c-2.85.164-5.868 1.395-6.54 4.918-.11.447.226.613.45.67l3.13.39c.336-.055.502-.336.56-.613.278-1.23 1.284-1.845 2.4-1.96h.227c.67 0 1.397.28 1.79.84.447.67.39 1.568.39 2.35v.446zm-.613 6.65c-.393.782-1.063 1.286-1.79 1.456-.112 0-.28.055-.448.055-1.228 0-1.956-.95-1.956-2.35 0-1.788 1.06-2.627 2.402-3.018.727-.167 1.567-.225 2.405-.225v.672c0 1.287.057 2.292-.613 3.41z" fill="%logo_color%"/></svg></span></a>',
71
+ 'AOL_Mail' => '<a class="heateor_sss_button_aoL_mail" href="http://webmail.aol.com/25045/aol/en-us/Mail/compose-message.aspx?subject=%post_title%&body=%encoded_post_url%" title="AOL Mail" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_aoL_mail" style="background-color:#2a2a2a;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path d="M17.334 13.26c-2.315 0-4.067 1.8-4.067 4.027 0 2.35 1.824 4.03 4.067 4.03 2.243 0 4.062-1.68 4.062-4.03 0-2.228-1.744-4.027-4.062-4.027zm0 2.127c1-.007 1.82.847 1.82 1.9 0 1.048-.82 1.9-1.82 1.9s-1.818-.853-1.818-1.9c0-1.053.817-1.9 1.818-1.9zm11.59 4.518c0 .778-.63 1.412-1.41 1.412-.778 0-1.41-.634-1.41-1.412 0-.778.632-1.408 1.41-1.408.78 0 1.41.63 1.41 1.408zm-4.104 1.418h-2.216v-10.28h2.216v10.28zM9.33 11.04s2.585 6.79 3.862 10.13c.015.037.028.078.047.132-.06.006-.105.01-.15.01-.83.002-1.664-.003-2.497.004-.12.002-.17-.04-.204-.156-.116-.385-.247-.766-.365-1.147-.032-.11-.074-.153-.193-.153-1.066.006-2.132.006-3.2 0-.1 0-.142.03-.173.13-.127.405-.26.81-.39 1.21-.02.076-.05.117-.136.117-.874-.006-1.75-.004-2.624-.004-.016 0-.036-.005-.07-.012.023-.06.04-.116.064-.17 1.286-3.307 3.91-10.086 3.91-10.086H9.33zm-.023 6.674c-.343-1.147-.68-2.274-1.02-3.4h-.03l-1.017 3.4h2.067z" fill="%logo_color%"/></svg></span></a>',
72
+ 'App.net' => '<a class="heateor_sss_button_app_net" href="https://account.app.net/login/" title="App.net" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_app_net" style="background-color:#5d5d5d;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16 7.158L4.156 25h2.422l2.695-4h13.453l2.695 4h2.425L16 7.158zM10.82 19L16 11.2l5.178 7.8H10.82z"/></svg></span></a>',
73
+ 'Balatarin' => '<a class="heateor_sss_button_balatarin" href="https://www.balatarin.com/login" title="Balatarin" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_balatarin" style="background-color:#fff;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="#B90E10" class="heateor_sss_not_fill" d="M29 17H3v10c0 1.1.9 2 2 2h22c1.1 0 2-.9 2-2V17z"/><path fill="%logo_color%" d="M12 22h8v2h-8z"/><path fill="#079948" class="heateor_sss_not_fill" d="M29 15H3V5c0-1.1.9-2 2-2h22c1.1 0 2 .9 2 2v10z"/><g fill="%logo_color%"><path d="M15 5h2v8h-2z"/><path d="M12 8h8v2h-8z"/></g></svg></span></a>',
74
+ 'BibSonomy' => '<a class="heateor_sss_button_bibsonomy" href="http://www.bibsonomy.org/login" title="BibSonomy" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_bibsonomy" style="background-color:#000;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-7 -7 46 46"><path fill="%logo_color%" d="M25.058 25.892c-.25 0-.484.065-.694.17l-5.907-8.2a1.548 1.548 0 0 0 .344-1.68l4.28-2.573c.288.333.71.552 1.187.552.862 0 1.56-.7 1.56-1.56 0-.776-.567-1.415-1.31-1.535V6.11a1.556 1.556 0 0 0-.25-3.095c-.862 0-1.56.7-1.56 1.56 0 .196.04.383.106.556l-4.256 2.477a1.548 1.548 0 0 0-1.2-.574c-.862 0-1.56.7-1.56 1.56 0 .778.567 1.417 1.31 1.537v5.1c-.218.035-.42.112-.598.23L9.93 8.204c.213-.268.345-.6.345-.97a1.56 1.56 0 1 0-.712 1.309l6.575 7.25c-.213.267-.345.6-.345.968 0 .23.054.45.144.647L8.08 22.66a1.547 1.547 0 0 0-1.138-.5 1.56 1.56 0 1 0 1.56 1.56c0-.23-.053-.45-.144-.646l7.857-5.25c.07.076.147.144.23.204l-1.95 3.927a1.536 1.536 0 0 0-.457-.076c-.862 0-1.56.695-1.56 1.56a1.56 1.56 0 1 0 2.468-1.27l1.95-3.926c.146.045.297.076.458.076.25 0 .484-.064.694-.17l5.907 8.2a1.56 1.56 0 1 0 1.103-.459zM18.914 8.59c0-.197-.04-.383-.106-.556l4.257-2.473c.236.29.567.49.95.55v4.96a1.558 1.558 0 0 0-1.197 2.115l-4.278 2.573a1.542 1.542 0 0 0-.935-.53v-5.102a1.555 1.555 0 0 0 1.31-1.534z"/></svg></span></a>',
75
+ 'Bitty_Browser' => '<a class="heateor_sss_button_bitty_browser" href="http://www.bitty.com/manual/?contenttype=&contentvalue=%encoded_post_url%" title="Bitty Browser" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Bitty_Browser" style="background-color:#3d3c3b;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M4 4h12v12H4z"/><path fill="%logo_color%" d="M20 4v16H4v8h24V4"/></svg></span></a>',
76
+ 'Blinklist' => '<a class="heateor_sss_button_blinklist" href="http://blinklist.com/blink?t=%post_title%&d=&u=%encoded_post_url%" title="Blinklist" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_blinklist" style="background-color:#3d3c3b;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M3 10.35v11.3l8.977-5.418"/><path d="M17.55 27.454c-4.397 0-8.314-2.39-10.205-6.36l1.675-1.04c1.558 3.274 4.906 5.388 8.53 5.388 5.204 0 9.438-4.235 9.438-9.44 0-5.208-4.233-9.443-9.44-9.443-3.804 0-7.22 2.26-8.7 5.763l-1.733-1.057c1.798-4.25 5.82-6.72 10.434-6.72C23.86 4.546 29 9.683 29 15.996c0 6.317-5.136 11.457-11.45 11.457z"/><path d="M11.425 18.623c1.02 2.406 3.403 4.09 6.18 4.09 3.71 0 6.715-3.006 6.715-6.712 0-3.71-3.005-6.712-6.714-6.712-2.887 0-5.35 1.823-6.295 4.38l3.958 2.566-3.84 2.39z"/></g></svg></span></a>',
77
+ 'Blogger_Post' => '<a class="heateor_sss_button_blogger_post" href="https://www.blogger.com/blog_this.pyra?t&u=%encoded_post_url%&l&n=%post_title%" title="Blogger Post" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Blogger_Post" style="background-color:#535353;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path stroke="%logo_color%" class="heateor_sss_svg_stroke heateor_sss_not_fill" stroke-width="2" fill="none" d="M12.393 6.112h4.367c1.61.19 3.96 1.572 4.824 3.41.238.515.363.594.56 2.12.106.786.16 1.367.51 1.69.495.45 2.333.147 2.696.43l.277.22.166.343.06.277-.04 5.048c-.02 3.43-2.81 6.238-6.244 6.238h-7.177c-3.436 0-6.244-2.81-6.244-6.238v-7.29c-.003-3.434 2.806-6.248 6.242-6.248z"/><path fill="none" stroke="%logo_color%" class="heateor_sss_svg_stroke heateor_sss_not_fill" stroke-width="1.5" d="M12.47 11.22h3.464c.66 0 1.195.534 1.195 1.188 0 .653-.538 1.195-1.198 1.195H12.47c-.66 0-1.194-.542-1.194-1.195 0-.654.535-1.19 1.195-1.19zm0 7.15h7.038c.654 0 1.19.534 1.19 1.188 0 .646-.535 1.188-1.19 1.188H12.47c-.66 0-1.194-.54-1.194-1.188 0-.654.535-1.19 1.195-1.19z"/></svg></span></a>',
78
+ 'BlogMarks' => '<a class="heateor_sss_button_blogmarks" href="http://blogmarks.net/my/new.php?mini=1&simple=1&title=%post_title%&url=%encoded_post_url%" title="BlogMarks" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_blogmarks" style="background-color:#535353;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="#A3DE38" d="M22.762 18.917L17.646 16l-8.408-4.795V29l13.524-7.71"/><path fill="%logo_color%" d="M22.762 10.71L9.238 3v8.204l8.408 4.794 5.116-2.915"/></svg></span></a>',
79
+ 'Bookmarks.fr' => '<a class="heateor_sss_button_bookmarks_fr" href="http://www.bookmarks.fr/Connexion/?action=add&address=%encoded_post_url%&title=%post_title%" title="Bookmarks.fr" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_bookmarks_fr" style="background-color:#e8ead4;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="#CC3467" d="M27.256 9.5c-2.188-3.79-6.36-.54-7.83 2.205 1.073.86 1.802 2.112 2.006 3.475 3.103.094 8.023-1.873 5.824-5.68-.7-1.212.515.894 0 0z"/><path fill="#96C044" d="M15.998 3c-4.368 0-3.664 5.23-2.013 7.886 1.283-.505 2.74-.505 4.023 0C19.66 8.23 20.366 3 15.998 3z"/><path fill="#CC3467" d="M9.255 8.294c-1.108-.64-2.42-.918-3.49-.053-.96.78-1.79 2.268-1.617 3.538.352 2.564 4.32 3.468 6.416 3.405.204-1.363.934-2.618 2.01-3.477-.67-1.256-1.898-2.59-3.32-3.41-.71-.41 1.422.82 0 0z"/><path fill="#96C044" d="M11.426 19.05c-.447-.67-.744-1.435-.862-2.23-2.785-.084-7.768 1.608-6.056 5.24 2.023 4.292 6.448 1.248 8.063-1.765-.44-.354-.83-.773-1.142-1.246-.132-.198.314.47 0 0z"/><path fill="#CC3467" d="M18.202 21.458c-.064-.12-.13-.232-.198-.342-1.28.503-2.737.503-4.02 0C12.338 23.766 11.624 29 16 29c4.218 0 3.67-4.848 2.204-7.542-.064-.12.678 1.243 0 0z"/><path fill="#96C044" d="M27.83 20.088c-.478-2.46-4.326-3.33-6.398-3.27-.204 1.364-.933 2.617-2.007 3.476.934 1.744 2.858 3.73 4.913 4.006 2.043.276 3.853-2.332 3.49-4.212-.153-.8.137.706 0 0z"/></svg></span></a>',
80
+ 'Box.net' => '<a class="heateor_sss_button_box_net" href="https://www.box.com/api/1.0/import?url=%encoded_post_url%&name=%post_title%&description=&import_as=link" title="Box.net" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_box" style="background-color:#1a74b0;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16.49 11.36c-1.653 0-3.18.524-4.434 1.41V6.543a1.617 1.617 0 0 0-3.235 0v11.903c-.017.2.002 1.37.055 1.7.53 3.73 3.73 6.604 7.61 6.604a7.693 7.693 0 0 0 7.692-7.696 7.694 7.694 0 0 0-7.695-7.695zm0 12.126a4.432 4.432 0 0 1-4.434-4.432 4.432 4.432 0 1 1 8.863 0 4.433 4.433 0 0 1-4.434 4.432z"></path></svg></span></a>',
81
+ 'BuddyMarks' => '<a class="heateor_sss_BuddyMarks" href="http://buddymarks.com/login.php?bookmark_title=%post_title%&bookmark_url=%encoded_post_url%&bookmark_desc=&bookmark_tags=" title="BuddyMarks" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#ffd400;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><circle cx="19.587" cy="7.172" r="4.209"/><path d="M21.374 11.668h-3.572c-.085 0-.168.01-.253.013.32.68.51 1.437.51 2.236 0 1.476-.62 2.807-1.61 3.756 2.314.69 4.084 2.656 4.486 5.08 3.414-.15 5.382-1.114 5.513-1.18l.282-.145h.03V17.06c0-2.97-2.418-5.39-5.39-5.39z"/></g><g fill="%logo_color%"><circle cx="12.413" cy="13.439" r="4.209"/><path d="M14.198 17.937h-3.57c-2.973 0-5.39 2.417-5.39 5.388v4.37l.01.067.303.095c2.838.885 5.3 1.18 7.33 1.18 3.96 0 6.257-1.13 6.398-1.2l.282-.142h.027v-4.37c0-2.97-2.416-5.388-5.388-5.388z"/></g></svg></span></a>',
82
+ 'Care2_News' => '<a class="heateor_sss_button_Care2_News" href="http://www.care2.com/passport/login.html?promoID=10&pg=http://www.care2.com/news/compose?sharehint=news&share[share_type]news&bookmarklet=Y&share[title]=%post_title%&share[link_url]=%encoded_post_url%&share[content]=" title="Care2 News" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Care2_News" style="background-color:#e8d8c6;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M20.56 21.21c1.558.926 3.202 1.637 4.95 2.122.746.207 1.255.03 1.596-.673.102-.21.25-.404.4-.586 2.322-2.812 1.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85 2.082-2.9 4.576-3.644 7.22-.372 1.33-.7 2.676-1.077 4.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84 1.48-.432 3.147-.23 3.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08 0-.143.063-.143.14 0 .08.062.142.142.142h.28c.023 0 .043-.007.062-.017 1.54.254 2.51 1.48 2.884 2.046-.38.265.127.786.08 1.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19 1.34.153.222.347.434.566.585 2.44 1.678 4.303 3.93 6.212 6.145.446.517.896 1.027 1.665 1.065.25.012.455.132.445.446v.123c.047.827.25 1.5.774 2.28 1.365 1.67 3.08 2.88 5.054 3.7.4.167.73.25 1.01.25.685 0 1.018-.517 1.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z"/></svg></span></a>',
83
+ 'Comment' => '<a class="heateor_sss_button_Comment" href="%post_url%#%comment_container_id%" title="comment" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Comment" style="background-color:#e8d8c6;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-150 -150 791 791"><g><path d="M477.364,127.481c-22.839-28.072-53.864-50.248-93.072-66.522c-39.208-16.274-82.036-24.41-128.479-24.41 c-46.442,0-89.269,8.136-128.478,24.41c-39.209,16.274-70.233,38.446-93.074,66.522C11.419,155.555,0,186.15,0,219.269 c0,28.549,8.61,55.299,25.837,80.232c17.227,24.934,40.778,45.874,70.664,62.813c-2.096,7.611-4.57,14.842-7.426,21.7 c-2.855,6.851-5.424,12.467-7.708,16.847c-2.286,4.374-5.376,9.23-9.281,14.555c-3.899,5.332-6.849,9.093-8.848,11.283 c-1.997,2.19-5.28,5.801-9.851,10.848c-4.565,5.041-7.517,8.33-8.848,9.853c-0.193,0.097-0.953,0.948-2.285,2.574 c-1.331,1.615-1.999,2.419-1.999,2.419l-1.713,2.57c-0.953,1.42-1.381,2.327-1.287,2.703c0.096,0.384-0.094,1.335-0.57,2.854 c-0.477,1.526-0.428,2.669,0.142,3.429v0.287c0.762,3.234,2.283,5.853,4.567,7.851c2.284,1.992,4.858,2.991,7.71,2.991h1.429 c12.375-1.526,23.223-3.613,32.548-6.279c49.87-12.751,93.649-35.782,131.334-69.094c14.274,1.523,28.074,2.283,41.396,2.283 c46.442,0,89.271-8.135,128.479-24.414c39.208-16.276,70.233-38.444,93.072-66.517c22.843-28.072,34.263-58.67,34.263-91.789 C511.626,186.154,500.207,155.555,477.364,127.481z M445.244,292.075c-19.896,22.456-46.733,40.303-80.517,53.529 c-33.784,13.223-70.093,19.842-108.921,19.842c-11.609,0-23.98-0.76-37.113-2.286l-16.274-1.708l-12.277,10.852 c-23.408,20.558-49.582,36.829-78.513,48.821c8.754-15.414,15.416-31.785,19.986-49.102l7.708-27.412l-24.838-14.27 c-24.744-14.093-43.918-30.793-57.53-50.114c-13.61-19.315-20.412-39.638-20.412-60.954c0-26.077,9.945-50.343,29.834-72.803 c19.895-22.458,46.729-40.303,80.515-53.531c33.786-13.229,70.089-19.849,108.92-19.849c38.828,0,75.13,6.617,108.914,19.845 c33.783,13.229,60.62,31.073,80.517,53.531c19.89,22.46,29.834,46.727,29.834,72.802S465.133,269.615,445.244,292.075z" fill="%logo_color%"/></g></svg></span></a>',
84
+ 'Copy_Link' => '<a class="heateor_sss_button_copy_link" href="javascript:void(0)" title="Copy Link" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_copy_link" style="background-color:#ffc112;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-4 -4 40 40"><path fill="%logo_color%" d="M24.412 21.177c0-.36-.126-.665-.377-.917l-2.804-2.804a1.235 1.235 0 0 0-.913-.378c-.377 0-.7.144-.97.43.026.028.11.11.255.25.144.14.24.236.29.29s.117.14.2.256c.087.117.146.232.177.344.03.112.046.236.046.37 0 .36-.126.666-.377.918a1.25 1.25 0 0 1-.918.377 1.4 1.4 0 0 1-.373-.047 1.062 1.062 0 0 1-.345-.175 2.268 2.268 0 0 1-.256-.2 6.815 6.815 0 0 1-.29-.29c-.14-.142-.223-.23-.25-.254-.297.28-.445.607-.445.984 0 .36.126.664.377.916l2.778 2.79c.243.243.548.364.917.364.36 0 .665-.118.917-.35l1.982-1.97c.252-.25.378-.55.378-.9zm-9.477-9.504c0-.36-.126-.665-.377-.917l-2.777-2.79a1.235 1.235 0 0 0-.913-.378c-.35 0-.656.12-.917.364L7.967 9.92c-.254.252-.38.553-.38.903 0 .36.126.665.38.917l2.802 2.804c.242.243.547.364.916.364.377 0 .7-.14.97-.418-.026-.027-.11-.11-.255-.25s-.24-.235-.29-.29a2.675 2.675 0 0 1-.2-.255 1.052 1.052 0 0 1-.176-.344 1.396 1.396 0 0 1-.047-.37c0-.36.126-.662.377-.914.252-.252.557-.377.917-.377.136 0 .26.015.37.046.114.03.23.09.346.175.117.085.202.153.256.2.054.05.15.148.29.29.14.146.222.23.25.258.294-.278.442-.606.442-.983zM27 21.177c0 1.078-.382 1.99-1.146 2.736l-1.982 1.968c-.745.75-1.658 1.12-2.736 1.12-1.087 0-2.004-.38-2.75-1.143l-2.777-2.79c-.75-.747-1.12-1.66-1.12-2.737 0-1.106.392-2.046 1.183-2.818l-1.186-1.185c-.774.79-1.708 1.186-2.805 1.186-1.078 0-1.995-.376-2.75-1.13l-2.803-2.81C5.377 12.82 5 11.903 5 10.826c0-1.08.382-1.993 1.146-2.738L8.128 6.12C8.873 5.372 9.785 5 10.864 5c1.087 0 2.004.382 2.75 1.146l2.777 2.79c.75.747 1.12 1.66 1.12 2.737 0 1.105-.392 2.045-1.183 2.817l1.186 1.186c.774-.79 1.708-1.186 2.805-1.186 1.078 0 1.995.377 2.75 1.132l2.804 2.804c.754.755 1.13 1.672 1.13 2.75z"/></svg></span></a>',
85
+ 'Diary.Ru' => '<a class="heateor_sss_button_diary_ru" href="http://www.diary.ru/?newpost&title=%post_title%&text=%encoded_post_url%" title="Diary.Ru" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_diary_ru" style="background-color:#e8d8c6;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16 3C8.82 3 3 8.82 3 16s5.82 13 13 13 13-5.82 13-13S23.18 3 16 3zm0 24.807C9.48 27.807 4.192 22.522 4.192 16 4.192 9.48 9.48 4.193 16 4.193c3.92 0 7.392 1.91 9.54 4.85h-8.308s-2.863.397-3.18 2.544c-.34 2.293-1.988 2.465-1.988 2.465h-4.69v1.51h9.74c.206-1.086 1.16-1.907 2.305-1.907 1.143 0 2.096.82 2.302 1.908h1.632v.874h-1.632c-.206 1.087-1.16 1.91-2.305 1.91-1.147 0-2.1-.823-2.306-1.91H7.37v1.59h4.69s1.67 0 1.988 2.464c.304 2.356 3.18 2.548 3.18 2.548h8.25c-2.15 2.895-5.596 4.77-9.48 4.77z"/></svg></span></a>',
86
+ 'Diaspora' => '<a class="heateor_sss_button_diaspora" href="https://joindiaspora.com/bookmarklet?url=%encoded_post_url%&title=%post_title%&v=1&" title="Diaspora" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_diaspora" style="background-color:#2e3436;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-1 -1 34 34"><path fill="%logo_color%" d="M13.498 6.49v6.258l-5.953-1.933L6 15.57l5.95 1.934-3.677 5.063 4.046 2.942L16 20.44l3.68 5.064 4.047-2.943L20.05 17.5 26 15.57l-1.545-4.755-5.953 1.933V6.49h-5.004z"/></svg></span></a>',
87
+ 'Diigo' => '<a class="heateor_sss_button_Diigo" href="http://www.diigo.com/post?url=%encoded_post_url%&title=%post_title%" title="Diigo" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Diigo" style="background-color:#4a8bca;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill-rule="evenodd" clip-rule="evenodd" fill="%logo_color%" d="M23.81 4.5c.012.198.035.396.035.593 0 4.807.026 9.615-.01 14.422-.02 3.248-1.5 5.678-4.393 7.158-4.66 2.385-10.495-.64-11.212-5.836-.76-5.517 3.747-9.56 8.682-9.018 1.114.12 2.16.5 3.134 1.07.517.3.527.295.53-.29.007-2.7.01-5.4.014-8.103h3.22zm-7.914 19.97c2.608.068 4.82-2.025 4.954-4.552.138-2.626-1.89-5.074-4.727-5.145-2.7-.067-4.867 2-4.973 4.71-.107 2.72 2.13 5.008 4.746 4.988z"/></svg></span></a>',
88
+ 'Draugiem' => '<a class="heateor_sss_button_draugiem" href="https://www.draugiem.lv/say/ext/add.php?link=%encoded_post_url%&title=%post_title%" title="Draugiem" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_draugiem" style="background-color:#ffad66;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-4 -4 40 40"><path fill="%logo_color%" d="M21.55 11.33c4.656.062 7.374 2.92 4.294 6.828-1.415 1.798-3.812 3.575-7.003 4.725-.15.056-.303.105-.46.16-.3.098-.595.188-.89.28a24.866 24.866 0 0 1-4.05.814c-.464.043-.91.078-1.35.085-2.97.077-5.205-.74-5.93-2.474-.88-2.077.9-4.976 4.454-7.178-2.627 1.06-7.408 3.546-7.61 7.12v.454c.02.362.09.725.21 1.108.76 2.41 4.333 3.533 8.884 3.13.446-.036.892-.092 1.352-.16.66-.1 1.337-.23 2.027-.39a35.76 35.76 0 0 0 2.02-.558c.154-.056.3-.098.454-.153.31-.094.608-.2.9-.31 3.945-1.436 6.87-3.34 8.58-5.526.975-1.253 1.476-2.424 1.574-3.448v-.787c-.28-2.61-3.317-4.135-7.45-3.717zm-3.024-1.29c.11 0 .21-.014.307-.035.662-.167.983-.87 1.01-1.7.028-.885-.286-1.624-1.01-1.728-.063-.014-.125-.014-.195-.014-.578 0-.955.348-1.157.857-.094.265-.16.564-.163.885-.014.383.034.745.167 1.038.196.418.53.697 1.046.697zm-.014.292c-.293 0-.544.028-.76.084l.063.084.11.202.092.21.077.215.056.223.035.223.02.23.008.223v.237l-.014.23-.018.23-.028.23-.028.23-.043.23-.042.23-.04.223-.056.223-.042.212-.056.21-.057.2-.057.196-.042.19-.04.18-.02.11-.03.125-.028.132-.02.14-.03.152-.02.124v.03l-.028.166-.056.21-.02.172-.03.18-.02.182-.03.18-.02.19-.03.18-.02.188-.02.188-.02.19v.007c.04.537.082.997.103 1.26.02.3.085.517.18.663.14.215.378.292.706.32.28-.028.487-.084.647-.23.153-.14.237-.376.3-.753.118-.774.467-3.31.767-4.397.425-1.568 1.456-4.418-1.066-4.634-.122-.024-.226-.024-.338-.024zm-3.06-.8h.015c.976-.008 1.436-.9 1.436-1.994s-.46-1.993-1.436-2h-.014c-.99 0-1.45.9-1.45 2s.46 1.993 1.45 1.993zm-2.013 4.626c.09.383.18.732.254 1.052.307 1.254.606 4.16.718 5.038.105.885.418 1.073 1.052 1.136.62-.063.94-.25 1.045-1.136.105-.878.41-3.79.71-5.038.08-.314.175-.67.266-1.052.28-1.15.502-2.495 0-3.366-.32-.557-.94-.92-2.02-.92-1.088 0-1.708.37-2.03.92-.5.864-.27 2.216 0 3.366zm-1.35-4.153c.1.02.196.035.308.035.516 0 .857-.28 1.045-.704.118-.293.174-.655.167-1.038a2.96 2.96 0 0 0-.167-.885c-.202-.51-.585-.857-1.157-.857-.07 0-.134 0-.197.014-.725.105-1.045.843-1.01 1.728.02.836.35 1.54 1.01 1.707zm-.3 9.373c.057.376.154.606.3.753.16.157.37.206.65.23.33-.024.557-.1.704-.32.09-.14.153-.36.18-.66.022-.264.064-.72.106-1.253v-.014l-.02-.187-.02-.188-.03-.188-.02-.18-.02-.19-.03-.18-.02-.18-.03-.183-.025-.174-.02-.166-.03-.167v-.02l-.02-.133-.028-.153-.028-.14-.024-.13-.028-.125-.03-.11-.034-.184-.056-.188-.04-.196-.058-.203-.056-.21-.056-.215-.04-.223-.057-.225-.04-.23-.033-.23-.028-.23-.03-.23-.02-.23-.008-.237v-.23l.007-.223.02-.23.034-.223.056-.222.07-.216.1-.21.11-.2.065-.085a3.128 3.128 0 0 0-.76-.083c-.11 0-.216 0-.32.014-2.524.216-1.492 3.066-1.067 4.634.262 1.054.603 3.59.728 4.364z"/></svg></span></a>',
89
+ 'Douban' => '<a class="heateor_sss_button_douban" href="https://www.douban.com/share/service?name=%post_title%&href=%encoded_post_url%&image=&updated=&bm=&url=%encoded_post_url%&title=%post_title%&sel=" title="Douban" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_douban" style="background-color:#497700;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-4 -4 40 40"><path fill="%logo_color%" d="M5.755 5.505h20.55v2.59H5.755v-2.59zm14.99 18.47l1.93-4.29h2.21v-9.97h-18v9.98h2.04l1.93 4.29h-5.78v2.51h21.85v-2.51l-6.18-.01zm-10.74-6.95v-4.88h11.68v4.88h-11.68zm7.99 6.95h-4.37l-1.93-4.29h8.24l-1.94 4.29z"/></svg></span></a>',
90
+ 'Evernote' => '<a class="heateor_sss_button_evernote" href="https://www.evernote.com/clip.action?url=%encoded_post_url%&title=%post_title%" title="Evernote" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_evernote" style="background-color:#8be056;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M7.884 8.573h2.276c.13 0 .236-.106.236-.235 0 0-.027-1.95-.027-2.494v-.006c0-.445.09-.833.253-1.16l.078-.145c-.007 0-.017.005-.025.014l-4.42 4.385c-.01.007-.014.016-.017.026.09-.046.215-.107.233-.115.386-.175.85-.27 1.41-.27zm17.704-.477c-.18-.968-.755-1.444-1.275-1.632-.56-.203-1.698-.413-3.127-.58-1.15-.137-2.504-.126-3.318-.1-.1-.672-.568-1.285-1.096-1.498-1.404-.564-3.573-.428-4.13-.272-.442.125-.932.378-1.205.768-.183.262-.302.595-.302 1.062 0 .265.007.886.015 1.44l.014 1.054c0 .494-.4.896-.896.897H7.99c-.485 0-.856.082-1.14.21-.284.128-.484.303-.636.508-.304.408-.357.912-.355 1.426 0 0 0 .416.102 1.23.084.63.767 5.02 1.414 6.356.25.522.42.736.912.966 1.1.47 3.61.994 4.787 1.146 1.174.15 1.912.466 2.35-.457.002 0 .088-.227.208-.56.382-1.156.435-2.18.435-2.924 0-.076.11-.078.11 0 0 .524-.1 2.38 1.303 2.875.554.197 1.7.373 2.864.51 1.055.12 1.82.537 1.82 3.24 0 1.645-.346 1.87-2.152 1.87-1.464 0-2.02.038-2.02-1.125 0-.938.93-.842 1.616-.842.31 0 .086-.23.086-.81 0-.576.36-.91.02-.918-2.384-.065-3.786-.004-3.786 2.978 0 2.706 1.036 3.208 4.418 3.208 2.65 0 3.588-.086 4.682-3.483.22-.67.742-2.718 1.06-6.154.197-2.173-.194-8.732-.502-10.388zm-4.622 7.25c-.327-.012-.643.01-.937.056.08-.667.353-1.488 1.332-1.453 1.08.033 1.23 1.056 1.237 1.75-.457-.205-1.02-.335-1.635-.357z"/></svg></span></a>',
91
+ 'Fark' => '<a class="heateor_sss_button_fark" href="https://www.fark.com/submit?new_url=%encoded_post_url%" title="Fark" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_fark" style="background-color:#555;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M22.925 9.77V5.613H9.075v20.772h5.54v-8.31h8.31v-4.153h-8.31V9.77"/></svg></span></a>',
92
+ 'Fintel' => '<a class="heateor_sss_button_fintel" href="https://fintel.io/submit?url=%encoded_post_url%" title="Fintel" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_fintel" style="background-color:#087515;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="100%" height="100%" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd" viewBox="-110 -120 428 494" xmlns:xlink="http://www.w3.org/1999/xlink"><g><polygon fill="%logo_color%" points="108,274 48,274 48,152 0,152 0,95 48,95 48,0 208,0 208,56 108,56 108,95 180,95 180,151 108,151"/><polygon fill="%logo_color%" points="99,272 103,272 103,147 175,147 175,100 103,100 103,52 203,52 203,7 199,7 199,48 98,48 98,104 171,104 171,142 99,142"/></g></svg></span></a>',
93
+ 'Flipboard' => '<a class="heateor_sss_button_flipboard" href="https://share.flipboard.com/bookmarklet/popout?v=2&url=%encoded_post_url%&title=%post_title%" title="Flipboard" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_flipboard" style="background-color:#c00;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M19 19H7V7h12v12z"/><path fill="%logo_color%" d="M25 13H7V7h18v6z"/><path fill="%logo_color%" d="M13 25H7V7h6v18z"/></svg></span></a>',
94
+ 'Folkd' => '<a class="heateor_sss_button_folkd" href="http://www.folkd.com/page/social-bookmarking.html?addurl=%encoded_post_url%" title="Folkd" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_folkd" style="background-color:#0f70b2;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M19.956 10.21c-.183.192-.613.138-.99.14-.102.317-.126.71-.283.974.626.496 1.85.406 2.405.972 1.197-.444.245-1.354.99-2.085 1.134-.14 1.386.588 1.697 1.254-.267.247-.936.102-1.415.14-.26.208-.333.6-.565.833.258.58.96.724 1.133 1.39 1.454-.376 2.954-.71 4.526-.973.41-.43.317-1.356.99-1.53 1.104.213 1.46 1.16 1.556 2.363-.586 1.043-2.1.605-2.546-.277-1.465.226-2.867.52-4.245.832-.11.325.1 1.263-.144 1.81.926.625 1.29-.49 2.122-.42.48.503.495 2.374-.566 2.224-.604-.053-.674-.634-.708-1.25-.432.1-.515-.143-.85-.14-.646.383-.97 1.083-1.695 1.39.094 1.236 1.462.38 2.12.974-.057 1.01-.8 1.345-1.838 1.39-.066-.836.216-1.503-.707-1.945-.94.142-1.37.782-2.264.973-.013.43.175.664.284.972.248.17 1.165-.21 1.415.278-.01 1.075-1.473 1.828-2.264 1.25-.063-.616.382-.734.565-1.11-.267-.293-.405-.713-.564-1.112-.878.342-1.665.773-2.83.834.004.327-.243.41-.14.833-.056.518.68.26.706.696.24 1.26-1.777 1.455-2.12.555-.03-.86 1.033-.65.706-1.808-.713-.274-1.917-.063-2.55-.417-.374.14-.382.644-.706.835.065.4.5.436.425.974-.925.36-2.313.07-2.12-1.114.533-.615 1.49-.076 1.835-.973-.557-.656-1.166-1.263-1.413-2.223-2.124.464-3.843 1.323-5.8 1.947-.187.467-.196 1.107-.566 1.39-.59.148-.625.036-1.273 0-.56-.854-.257-2.7.85-2.78.61-.135.41.523.85.557 2.016-.472 3.78-1.195 5.8-1.667-.433-2.485 3.206-4.233-.85-3.893-.396-1.225.373-2.164 1.13-2.085 1.273.132.285 1.725 1.273 2.224.908-.498 1.543-1.263 2.69-1.53.08-.45-.097-.646-.143-.972-.088-.33-.87.02-.99-.28v-.97c.46-.426 1.663-.355 1.98.138.114.623-.25.773-.706.834.037.427.308.626.424.972.9-.37 2.268-.273 3.538-.277.2-.17.266-.48.28-.836.108-.522-.75-.095-.564-.694.156-1.48 2.125-.633 2.12.416zm1.132 6.256c.652-.378.368-1.677.424-2.64-1.742-1.426-2.885 2.7-.424 2.64zm-6.224 1.53c1.3.173 3.114-1.23 2.97-2.502-.14-1.227-2.55-2.332-3.96-1.67-1.815.858-.44 3.98.99 4.17z"/></svg></span></a>',
95
+ 'GentleReader' => '<a class="heateor_sss_button_gentlereader" href="https://app.gentlereader.com/bookmark?url=%encoded_post_url%" title="GentleReader" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_GentleReader" style="background-color:#46aecf;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-80 -80.014 1200.014 1200"><path fill-rule="evenodd" clip-rule="evenodd" fill="%logo_color%" d="M819.664,291.684C572.661-7.32,155.656,203.683,169.656,527.687 c38,489.007,727.009,448.006,683.009-28H562.661v98h177.002c-54.721,270.685-443.659,218.617-464.179-77.827 c-0.48-6.934,1.493-36.96,3.053-44.641c44.28-217.95,300.377-317.791,467.126-110.535L819.664,291.684z"></path></svg></span></a>',
96
+ 'Google_Bookmarks' => '<a class="heateor_sss_button_google_bookmarks" href="https://www.google.com/bookmarks/mark?op=edit&bkmk=%encoded_post_url%&title=%post_title%&annotation=" title="Google Bookmarks" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Google_Bookmarks" style="background-color:#00a6db;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-2 10 80 80"><path d="M 51.22877660575707 38.19080770219705 A 17 17 0 1 0 56 50.00000000000001 h -17" stroke="%logo_color%" class="heateor_sss_svg_stroke heateor_sss_not_fill" stroke-width="8" fill="none"></path></svg></span></a>',
97
+ 'Google_Classroom' => '<a class="heateor_sss_button_google_classroom" href="https://classroom.google.com/u/0/share?url=%encoded_post_url%" title="Google Classroom" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Google_Classroom" style="background-color:#00a6db;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-2 2 36 36"><g fill="%logo_color%"><path d="M22.667 16.667a1.667 1.667 0 1 0 0-3.334 1.667 1.667 0 0 0 0 3.334zM22.333 18c-1.928 0-4 .946-4 2.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117zm-13-1.333a1.668 1.668 0 1 0-.002-3.336 1.668 1.668 0 0 0 .002 3.336zM9.667 18c-1.928 0-4 .946-4 2.117v1.217h8v-1.217c0-1.17-2.072-2.117-4-2.117z"/><path d="M15.335 15.333A2.332 2.332 0 1 0 13 13a2.333 2.333 0 0 0 2.335 2.333zm.332 1.334c-2.572 0-5.333 1.392-5.333 3.11v1.557H21v-1.556c0-1.72-2.762-3.11-5.333-3.11zm3 10.666h8v2h-8v-2z"/></g></svg></span></a>',
98
+ 'Google_Gmail' => '<a class="heateor_sss_button_google_gmail" href="https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&su=%post_title%&body=Link:%encoded_post_url%" title="Google Gmail" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Google_Gmail" style="background-color:#00a6db;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M6.96 8.33h7.328c1.247 0 2.206.366 2.875 1.098.666.733 1.002 1.64 1.002 2.72 0 .91-.24 1.688-.715 2.336-.318.433-.784.773-1.396 1.023.928.266 1.614.72 2.05 1.367.44.645.66 1.457.66 2.432 0 .795-.157 1.512-.468 2.146-.314.635-.74 1.14-1.28 1.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877 6.017h1.74c.623 0 1.058-.13 1.302-.382.24-.255.362-.623.362-1.104 0-.44-.123-.79-.366-1.043-.245-.25-.67-.377-1.276-.377h-1.766v2.91zm0 6.027h2.038c.69 0 1.176-.145 1.458-.434.282-.29.425-.68.425-1.168 0-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213 8.52h3.584v9.58h-3.584z"></path><circle cx="23.005" cy="21.635" r="2.036"></circle></g></svg></span></a>',
99
+ 'Hacker_News' => '<a class="heateor_sss_button_hacker_news" href="https://news.ycombinator.com/submitlink?u=%encoded_post_url%&t=%post_title%" title="Hacker_News" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Hacker_News" style="background-color:#00a6db;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M17.275 17.834v7.13h-2.602v-7.182L9 7.035h3.07l2.967 6.115c.365.755.702 1.51.988 2.316.312-.728.65-1.483 1.042-2.29l3.018-6.142H23l-5.725 10.8z"/></svg></span></a>',
100
+ 'Hatena' => '<a class="heateor_sss_button_hatena" href="http://b.hatena.ne.jp/bookmarklet?url=%encoded_post_url%&btitle=%post_title%" title="Hatena" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_hatena" style="background-color:#00a6db;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M6.96 8.33h7.328c1.247 0 2.206.366 2.875 1.098.666.733 1.002 1.64 1.002 2.72 0 .91-.24 1.688-.715 2.336-.318.433-.784.773-1.396 1.023.928.266 1.614.72 2.05 1.367.44.645.66 1.457.66 2.432 0 .795-.157 1.512-.468 2.146-.314.635-.74 1.14-1.28 1.508-.337.23-.842.396-1.52.502-.9.14-1.498.21-1.79.21H6.958V8.328zm3.877 6.017h1.74c.623 0 1.058-.13 1.302-.382.24-.255.364-.623.364-1.104 0-.442-.123-.793-.366-1.045-.245-.25-.67-.377-1.276-.377h-1.767v2.91zm0 6.027h2.038c.69 0 1.176-.145 1.458-.434.282-.29.425-.68.425-1.168 0-.453-.142-.818-.42-1.092-.28-.277-.77-.414-1.47-.414h-2.03v3.108zM21.213 8.52h3.584v9.58h-3.584z"/><circle cx="23.005" cy="21.635" r="2.036"/></g></svg></span></a>',
101
+ 'Instapaper' => '<a class="heateor_sss_button_instapaper" href="http://www.instapaper.com/edit?url=%encoded_post_url%&title=%post_title%" title="Instapaper" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_instapaper" style="background-color:#ededed;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M11.98 5.5h8.04v1.265h-.62c-.582 0-1.004.08-1.264.242-.262.162-.453.39-.572.69-.12.297-.182.874-.182 1.732v13.53c0 .683.064 1.167.195 1.453.13.286.313.494.55.625.234.13.658.196 1.27.196h.618V26.5H11.98v-1.265h.662c.592 0 1.012-.067 1.258-.203.246-.135.424-.33.533-.587.11-.256.166-.75.166-1.483V9.112c0-.776-.057-1.3-.168-1.567-.11-.268-.287-.465-.533-.59-.247-.128-.667-.19-1.26-.19h-.66V5.5z"/></svg></span></a>',
102
+ 'Jamespot' => '<a class="heateor_sss_button_Jamespot" href="https://my.jamespot.com/" title="Jamespot" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_Jamespot" style="background-color:#ff9e2c;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M12.427 24.073c.677.4 1.633.708 2.927.708 1.848 0 2.587-.83 2.587-2.71V5h2.436v17.13c0 2.745-1.478 4.87-5.176 4.87-1.664 0-2.99-.4-3.573-.678l.8-2.25z"/></svg></span></a>',
103
+ 'Kakao' => '<a class="heateor_sss_button_kakao" href="https://story.kakao.com/share?url=%encoded_post_url%" title="Kakao" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_kakao" style="background-color:#fcb700;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M20.345 6h-8.688c-.583 0-1.06.45-1.06 1.005v8.814c0 .553.477 1.003 1.06 1.003h4.007c-.03.98-.445 2.056-1.077 2.996-.612.904-1.613 1.796-2.156 2.223l-.04.032c-.117.107-.202.23-.204.405-.003.13.07.232.15.34l.018.022 2.774 2.975s.137.137.247.163c.126.03.27.032.368-.042 4.84-3.56 5.537-8.023 5.66-10.44V7.004C21.403 6.45 20.93 6 20.346 6"/></svg></span></a>',
104
+ 'Kik' => '<a class="heateor_sss_kik" href="https://www.kik.com/send/article/?app_name=Share&text=&title=%post_title%&url=%encoded_post_url%" title="Kik" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#2a2a2a;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-6 -4 40 40"><path d="M23.436 20.74a2.511 2.511 0 0 0 .109-5.019h-.11a2.516 2.516 0 0 0-2.507 2.515 2.509 2.509 0 0 0 2.508 2.508zm-7.946-3.09l2.89-2.89c.93-.93.93-2.434 0-3.363a2.374 2.374 0 0 0-3.362 0l-4.262 4.263V7.267A2.378 2.378 0 0 0 6 7.263V24.7a2.378 2.378 0 0 0 4.756.002v-2.316l1.335-1.335 3.76 5.07a2.378 2.378 0 0 0 3.866-2.771c-.016-.02-.03-.04-.047-.06l-4.177-5.638v-.002z" fill="%logo_color%"/></svg></span></a>',
105
+ 'Kindle_It' => '<a class="heateor_sss_button_kindle_it" href="https://share.flipboard.com/bookmarklet/popout?v=2&url=%encoded_post_url%&title=%post_title%" title="Kindle It" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_kindle_it" style="background-color:#2a2a2a;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M12.927 27H10V5h2.927v11.754l5.15-5.47h3.683l-5.814 6.067L22 27h-3.407l-4.704-7.763-.964 1.037V27z"/></svg></span></a>',
106
+ 'Known' => '<a class="heateor_sss_button_known" href="https://withknown.com/share/?url=%encoded_post_url%&title=%post_title%" title="Known" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_known" style="background-color:#fff101;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16.38 2.65c-7.45 0-13.5 6.048-13.5 13.5s6.05 13.5 13.5 13.5 13.5-6.048 13.5-13.5-6.04-13.5-13.5-13.5zm.078 25.203c-6.387 0-11.57-5.184-11.57-11.572 0-6.385 5.183-11.57 11.57-11.57 6.387 0 11.57 5.185 11.57 11.57.002 6.39-5.175 11.574-11.57 11.574z"/><path fill="%logo_color%" d="M23.856 21.758c-.393 0-.694-.07-.903-.2-.154-.094-.4-.402-.74-.91l-3.934-5.964 3.3-3.2c.254-.248.463-.433.625-.54s.293-.178.41-.217c.107-.03.308-.046.593-.046h.207v-.01l.555-.01V8.55h-.648v.01h-6.087v2.12h.548c.31 0 .494.023.57.077.078.054.117.13.117.23 0 .055-.023.11-.062.18-.04.068-.154.2-.34.4l-4.257 4.436v-4.08c0-.402.03-.68.1-.826.07-.147.178-.262.34-.34.1-.053.363-.076.78-.076h.44V8.56H8.8v2.113h.563c.34 0 .58.04.71.116.132.075.225.19.286.345.06.154.084.455.084.91v8.37c0 .478-.022.78-.076.903-.062.153-.154.26-.285.33-.132.07-.394.11-.78.11H8.8v2.12h6.666v-2.12h-.556c-.363 0-.61-.032-.733-.094s-.216-.162-.278-.31c-.063-.145-.1-.408-.1-.786v-1.543l2.067-2.013 2.4 3.842c.2.332.3.54.3.625 0 .077-.054.147-.162.2-.108.054-.417.077-.918.077h-.278v2.12h6.89v-2.12h-.24z"/></svg></span></a>',
107
+ 'Line' => '<a class="heateor_sss_button_line" href="https://social-plugins.line.me/lineit/share?url=%encoded_post_url%" title="Line" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_line" style="background-color:#00c300;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M28 14.304c0-5.37-5.384-9.738-12-9.738S4 8.936 4 14.304c0 4.814 4.27 8.846 10.035 9.608.39.084.923.258 1.058.592.122.303.08.778.04 1.084l-.172 1.028c-.05.303-.24 1.187 1.04.647s6.91-4.07 9.43-6.968c1.737-1.905 2.57-3.842 2.57-5.99zM11.302 17.5H8.918c-.347 0-.63-.283-.63-.63V12.1c0-.346.283-.628.63-.628.348 0 .63.283.63.63v4.14h1.754c.35 0 .63.28.63.628 0 .347-.282.63-.63.63zm2.467-.63c0 .347-.284.628-.63.628-.348 0-.63-.282-.63-.63V12.1c0-.347.282-.63.63-.63.346 0 .63.284.63.63v4.77zm5.74 0c0 .27-.175.51-.433.596-.065.02-.132.032-.2.032-.195 0-.384-.094-.502-.25l-2.443-3.33v2.95c0 .35-.282.63-.63.63-.347 0-.63-.282-.63-.63V12.1c0-.27.174-.51.43-.597.066-.02.134-.033.2-.033.197 0 .386.094.503.252l2.444 3.328V12.1c0-.347.282-.63.63-.63.346 0 .63.284.63.63v4.77zm3.855-3.014c.348 0 .63.282.63.63 0 .346-.282.628-.63.628H21.61v1.126h1.755c.348 0 .63.282.63.63 0 .347-.282.628-.63.628H20.98c-.345 0-.628-.282-.628-.63v-4.766c0-.346.283-.628.63-.628h2.384c.348 0 .63.283.63.63 0 .346-.282.628-.63.628h-1.754v1.126h1.754z"/></svg></span></a>',
108
+ 'LiveJournal' => '<a class="heateor_sss_button_livejournal" href="http://www.livejournal.com/update.bml?subject=%post_title%&event=%encoded_post_url%" title="LiveJournal" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_livejournal" style="background-color:#ededed;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M7.08 9.882l.004-.008.004-.01c.195-.408.422-.81.674-1.192.264-.393.53-.75.81-1.06 1.493-1.683 3.524-2.692 6.08-3.015l.733-.097.426.61 8.426 12.14.188.27.027.328.608 7.65.164 2.002-1.854-.783-7.23-3.053-.325-.143-.208-.286-8.422-12.14-.4-.574.3-.638zm2.72.13c-.06.097-.118.202-.18.305l7.79 11.235 5.05 2.13-.427-5.32-7.79-11.226c-1.603.326-2.884 1.032-3.84 2.102-.227.252-.428.514-.602.775z"/><path fill="#FFC805" d="M8.186 10.4c1.283-2.66 3.488-4.192 6.62-4.594l8.423 12.14.61 7.648-7.23-3.057L8.186 10.4z"/><path fill="%logo_color%" d="M15.158 6.316l1.89 2.717c-2.597.352-5.354 2.552-6.603 4.62l-1.898-2.735c1.115-2.09 4.27-4.18 6.61-4.602z"/><path fill="#9291AD" d="M13.285 10.666c-1.22.873-2.197 1.915-2.84 2.987l-1.898-2.735c.557-1.043 1.654-2.108 2.875-2.944l1.863 2.692z"/><path fill="%logo_color%" d="M7.215 10.283c1.35-3.24 4.182-4.8 7.568-5.527l.55-.026.38.397.314.322 1.14 1.817-1.835.243h-.012c-.242.038-.512.108-.8.212h-.003c-.3.1-.613.238-.957.406-1.69.837-3.4 2.216-3.898 3.306l-.928 1.746-1.252-1.66-.166-.285-.25-.453.15-.5z"/><path fill="#F5A8AA" d="M8.33 10.597c.95-2.725 3.1-4.214 6.504-4.615l.314.322c-2.3.35-5.756 2.777-6.598 4.62l-.22-.327z"/><path fill="#485E85" d="M23.69 22.727l.283 3.084-2.924-1.235 1.224-1.202"/><path fill="%logo_color%" d="M16.41 21.274c.053-.062.113-.133.176-.197.635-.712 1.287-1.447 1.43-2.695l-4.875-7.02c-.436.35-.832.706-1.176 1.062-.363.382-.674.775-.924 1.168l5.37 7.682zm.93.483c-.203.222-.398.445-.572.665l-.416.54-.402-.566-5.94-8.49-.183-.265.166-.282c.318-.558.73-1.097 1.236-1.63.494-.526 1.076-1.027 1.726-1.5l.424-.305.296.425 5.27 7.6.103.15-.014.17c-.113 1.718-.92 2.615-1.697 3.49z"/><path fill="#6A9AC2" d="M16.367 22.11c.846-1.09 2.03-1.903 2.164-3.868l-5.273-7.602c-1.27.914-2.227 1.933-2.83 2.97l5.94 8.5z"/><path fill="%logo_color%" d="M22.125 17.31c-.09.026-.168.062-.248.093-.89.35-1.81.71-3.027.396l-4.87-7.02c.48-.29.95-.53 1.405-.73.486-.208.96-.36 1.42-.464l5.32 7.724zm.12 1.037c.28-.11.563-.22.823-.294l.658-.21-.39-.568-5.888-8.532-.18-.267-.32.052c-.635.105-1.287.3-1.967.59-.66.286-1.67.887-2.342 1.33l5.893 8.313c1.647.49 2.627.014 3.717-.412z"/><path fill="#A1BBD6" d="M22.896 17.537c-1.312.41-2.498 1.232-4.383.67l-5.272-7.6c1.303-.87 2.59-1.412 3.77-1.605l5.887 8.535z"/><path fill="%logo_color%" d="M18.248 8.95l-1.846.24v-.004c-.244.04-.514.113-.8.214h-.01c-2.726.944-4.46 2.964-5.784 5.454l-.68-1.004c.604-.86 2.52-5.224 8.484-5.94.27.258.415.692.636 1.04z"/></svg></span></a>',
109
+ 'Mail.Ru' => '<a class="heateor_sss_button_mail_ru" href="https://connect.mail.ru/share?share_url=%encoded_post_url%" title="Mail.Ru" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_mail_ru" style="background-color:#356fac;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M19.975 15.894c-.134-2.542-2.02-4.07-4.3-4.07h-.086c-2.63 0-4.09 2.068-4.09 4.417 0 2.633 1.765 4.296 4.077 4.296 2.58 0 4.275-1.89 4.4-4.127l-.003-.515zm-4.37-6.346c1.755 0 3.407.776 4.62 1.993v.006c0-.584.395-1.024.94-1.024h.14c.85 0 1.025.808 1.025 1.063l.005 9.08c-.06.595.613.9.988.52 1.457-1.497 3.203-7.702-.907-11.295-3.83-3.352-8.967-2.8-11.7-.916-2.904 2.003-4.764 6.438-2.958 10.603 1.968 4.543 7.6 5.896 10.947 4.546 1.696-.684 2.48 1.607.72 2.355-2.66 1.132-10.066 1.02-13.525-4.972-2.338-4.046-2.212-11.163 3.987-14.85 4.74-2.822 10.99-2.042 14.762 1.895 3.937 4.117 3.705 11.82-.137 14.818-1.742 1.36-4.326.035-4.312-1.947l-.02-.647c-1.21 1.203-2.824 1.905-4.58 1.905-3.475 0-6.53-3.056-6.53-6.528 0-3.508 3.057-6.6 6.533-6.6"/></svg></span></a>',
110
+ 'Mendeley' => '<a class="heateor_sss_button_mendeley" href="https://www.mendeley.com/sign-in/" title="Mendeley" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_mendeley" style="background-color:#a70805;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M26.596 18.11c-1.466-.087-2.02-.834-1.93-2.164.076-1.113.274-2.22.418-3.327-.023-1.743-.942-3.13-2.488-3.59-1.583-.47-2.97-.14-4.102 1.15-2.322 2.646-2.616 2.634-5.023-.045-1.152-1.28-2.852-1.66-4.39-.98-1.5.667-2.37 2.237-2.15 3.954.08.625.278 1.235.377 1.863.338 2.122-.105 2.7-2.226 3.147-1.066.228-1.913.786-2.05 1.99-.137 1.22.17 2.39 1.404 2.75.77.226 1.853.084 2.55-.32.96-.553 1.064-1.64.733-2.74-.62-2.05-.027-3.04 2.115-3.34.836-.117 1.766-.022 2.568.235 1.302.41 1.692 1.373 1.175 2.65-.45 1.1-.443 2.09.39 2.984.84.9 2.417 1.08 3.518.435 1.12-.657 1.497-1.807 1.042-3.164-.608-1.814-.085-2.783 1.807-3.123.7-.126 1.463-.113 2.16.025 1.834.367 2.377 1.377 1.84 3.188-.504 1.698.196 3.09 1.72 3.43 1.332.295 2.624-.607 2.89-2.022.308-1.633-.593-2.882-2.344-2.988zm-10.71-.085c-1.374-.06-2.453-1.194-2.445-2.57.01-1.46 1.148-2.567 2.61-2.54 1.467.026 2.57 1.177 2.523 2.627-.05 1.43-1.255 2.545-2.687 2.483z"/></svg></span></a>',
111
+ 'Meneame' => '<a class="heateor_sss_button_meneame" href="https://www.meneame.net/submit.php?url=%encoded_post_url%" title="Meneame" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_meneame" style="background-color:#ff7d12;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M25.514 10.435c-1.582 1.605-4.438 1.56-5.502 3.726-.906 2.57 1.23 6.677 2.12 9.02.603 1.21-4.716 2.378-4.065 2.677 3.754-.043 5.354-1.412 4.904-3.094-.43-1.607-2.376-4.816-2.376-7.383.056-1.938 2.222-2.533 3.618-3.322 1.622-.727 3.14-2.35 2.72-4.25-.018-.672-1.187-2.907-.71-1.175.26 1.278.385 2.856-.706 3.802z"/><path d="M20.632 7.546C18.59 6.492 16.32 5.854 13.946 6.41c-1.277.236-2.78.933-3.637 2.1-1.123 1.34-1.166 3.288-.43 4.82.57 1.18 1.44 2.492 2.85 2.688 1.21.182 2.54.018 3.566-.683-1.223.21-2.64.646-3.736-.172-1.842-1.177-2.735-3.85-1.618-5.8.898-1.7 2.705-2.178 4.62-2.262 2.55-.11 4.995 1.345 5.934 1.7.903.285 2.2.645 2.844-.315.376-.446.226-1.674-.08-1.788.09.86-.543 1.943-1.524 1.66-.736-.17-1.41-.523-2.104-.81zM6.94 15.156c-1.183 1.865-2.264 4.05-1.85 6.322.38 2.375 2.678 4.05 4.963 4.35 2.348.273 4.69.205 7.043.035.397-.385-1.92-.373-2.895-.514-2.224-.254-4.64-.3-6.55-1.623-1.775-1.33-2.01-3.938-1.155-5.863.714-1.814 1.782-3.568 2.903-5.084-.876.727-1.683 1.27-2.456 2.376z"/><path d="M12.787 21.02c1.386.107 3.688-.032 4.768.724.387.582-.332 3.802-.084 4.174.553.162 1.186-3.773.836-4.75-.266-.75-4.966-.352-5.518-.147z"/></g></svg></span></a>',
112
+ 'mix' => '<a class="heateor_sss_button_mix" href="https://mix.com/mixit?url=%encoded_post_url%" title="Mix" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_mix" style="background-color:#ff8226;%span_style%"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-7 -8 45 45"><g fill="%logo_color%"><path opacity=".8" d="M27.87 4.125c-5.224 0-9.467 4.159-9.467 9.291v2.89c0-1.306 1.074-2.362 2.399-2.362s2.399 1.056 2.399 2.362v1.204c0 1.306 1.074 2.362 2.399 2.362s2.399-1.056 2.399-2.362V4.134c-.036-.009-.082-.009-.129-.009"/><path d="M4 4.125v12.94c2.566 0 4.668-1.973 4.807-4.465v-2.214c0-.065 0-.12.009-.176.093-1.213 1.13-2.177 2.39-2.177 1.325 0 2.399 1.056 2.399 2.362v9.226c0 1.306 1.074 2.353 2.399 2.353s2.399-1.056 2.399-2.353v-6.206c0-5.132 4.233-9.291 9.467-9.291H4z"/><path opacity=".8" d="M4 17.074v8.438c0 1.306 1.074 2.362 2.399 2.362s2.399-1.056 2.399-2.362V12.61C8.659 15.102 6.566 17.074 4 17.074"/></g></svg></span></a>',
113
+ 'Mixi' => '<a class="heateor_sss_button_mixi" href="https://mix.com/mixit?url=%encoded_post_url%" title="Mixi" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_mixi" style="background-color:#ededed;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path class="heateor_sss_not_fill" fill="#D1AD5A" d="M16.09 5.246C9.617 5.246 4 9.216 4 16.63c0 6.93 7.707 10.193 12.758 9.01v2.374S28 25.054 28 15.034c0-6.11-4.505-9.788-11.91-9.788z"/><path fill="%logo_color%" d="M22.92 20.024h-1.657v-5.688s-.505-1.586-1.585-1.586c-.9 0-2.525.374-2.525 2.08v5.193h-1.657V14.77c0-1.586-.787-2.09-1.506-2.09-1.15 0-2.727.807-2.727 2.403v4.94H9.605v-9.01h1.657v1.03c.656-.546 1.564-1.03 2.727-1.03 1.222 0 2.09.434 2.604 1.282.73-.677 1.777-1.202 3.082-1.202 1.97 0 3.24 1.788 3.24 3.202v5.73z"/></svg></span></a>',
114
+ 'MySpace' => '<a class="heateor_sss_button_myspace" href="https://myspace.com" title="MySpace" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_myspace" style="background-color:#2a2a2a;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M24 17.716c-2.21 0-4 1.79-4 4v1.712h8v-1.713c0-2.21-1.79-4-4-4z"/><circle cx="24" cy="12.571" r="3.999"/><path d="M15.147 18.31c-2.054 0-3.72 1.66-3.72 3.71v1.408h7.437c.002-.615.002-1.148.002-1.408 0-2.05-1.664-3.71-3.72-3.71z"/><ellipse cx="15.147" cy="13.446" rx="3.719" ry="3.71"/><path d="M7.148 18.875C5.41 18.875 4 20.277 4 22.008v1.42h6.295c.002-.636.002-1.178.002-1.42 0-1.73-1.41-3.133-3.15-3.133z"/><ellipse cx="7.148" cy="14.58" rx="3.148" ry="3.133"/></g></svg></span></a>',
115
+ 'Netvouz' => '<a class="heateor_sss_button_netvouz" href="http://www.netvouz.com/action/submitBookmark?url=%encoded_post_url%&title=%post_title%&popup=no&description=" title="Netvouz" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_netvouz" style="background-color:#c0ff00;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-0.5 0 32 32"><path fill="%logo_color%" d="M10.25 8.72v17.184H5.5V6.096h8.396l5.605 5.77v6.43"/><path fill="%logo_color%" d="M21.75 23.28V6.095h4.75v19.808h-8.396L12.5 20.13v-6.427"/></svg></span></a>',
116
+ 'NewsVine' => '<a class="heateor_sss_button_NewsVine" href="http://www.newsvine.com/_tools/seed?popoff=0&u=%encoded_post_url%&h=%post_title%" title="NewsVine" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_NewsVine" style="background-color:#f2720c;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M20.56 21.21c1.558.926 3.202 1.637 4.95 2.122.746.207 1.255.03 1.596-.673.102-.21.25-.404.4-.586 2.322-2.812 1.91-6.988-1.06-7.983.66-.517.662-1.2.47-1.92-.156-.59-.265-1.204-.492-1.767-.514-1.278-.694-2.603-.77-3.964-.047-.814-.1-1.767-1-2.068-.875-.292-1.54.357-2.09.977-1.85 2.082-2.9 4.576-3.644 7.22-.372 1.33-.7 2.676-1.077 4.12-.332-.34-.57-.837-.925-.897-.14-.376-.74-2.2.177-3.78.02-.008.033-.022.047-.037l.174-.22c.05-.063.037-.15-.024-.2-.06-.048-.15-.037-.196.025l-.174.223c-.033.04-.035.093-.02.138-.84 1.48-.432 3.147-.23 3.76-.422-.616-1.416-1.792-2.95-2.06-.024-.04-.067-.067-.116-.067h-.28c-.08 0-.143.063-.143.14 0 .08.062.142.142.142h.28c.023 0 .043-.007.062-.017 1.54.254 2.51 1.48 2.884 2.046-.38.265.127.786.08 1.276-1.986-1.483-4.072-2.605-6.244-3.572-1.956-.87-3.89-1.798-6.008-2.233-.47-.097-.977-.107-1.25.41-.25.474-.093.936.19 1.34.153.222.347.434.566.585 2.44 1.678 4.303 3.93 6.212 6.145.446.517.896 1.027 1.665 1.065.25.012.455.132.445.446v.123c.047.827.25 1.5.774 2.28 1.365 1.67 3.08 2.88 5.054 3.7.4.167.73.25 1.01.25.685 0 1.018-.517 1.116-1.578.026-1.45-.42-2.82-.863-4.154.352-.27.517.24.788.065.237-.33-.216-.68.018-1.08.172.097.316.173.456.256z"/></svg></span></a>',
117
+ 'Odnoklassniki' => '<a class="heateor_sss_button_odnoklassniki" href="https://connect.ok.ru/dk?cmd=WidgetSharePreview&st.cmd=WidgetSharePreview&st.shareUrl=%encoded_post_url%&st.client_id=-1" title="Odnoklassniki" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_odnoklassniki" style="background-color:#f2720c;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16 16.16a6.579 6.579 0 0 1-6.58-6.58A6.578 6.578 0 0 1 16 3a6.58 6.58 0 1 1 .002 13.16zm0-9.817a3.235 3.235 0 0 0-3.236 3.237 3.234 3.234 0 0 0 3.237 3.236 3.236 3.236 0 1 0 .004-6.473zm7.586 10.62c.647 1.3-.084 1.93-1.735 2.99-1.395.9-3.313 1.238-4.564 1.368l1.048 1.05 3.877 3.88c.59.59.59 1.543 0 2.133l-.177.18c-.59.59-1.544.59-2.134 0l-3.88-3.88-3.877 3.88c-.59.59-1.543.59-2.135 0l-.176-.18a1.505 1.505 0 0 1 0-2.132l3.88-3.877 1.042-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747 1.4-1.367 2.768-.29C13.035 18.13 16 18.13 16 18.13s2.968 0 4.818-1.456c1.368-1.077 2.4-.457 2.768.29z"></path></svg></span></a>',
118
+ 'Outlook.com' => '<a class="heateor_sss_button_outlook_com" href="https://mail.live.com/default.aspx?rru=compose?subject=%post_title%&body=%encoded_post_url%&lc=1033&id=64855&mkt=en-us&cbcxt=mai" title="Outlook.com" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_outlook_com" style="background-color:#0072c6;%span_style%"><svg style="%inner_style%" xmlns="http://www.w3.org/2000/svg" viewBox="-4 -3.5 40 40"><path fill="%logo_color%" d="M19.52 8.29v5.5l1.92 1.208c.053.016.163.016.212 0l8.27-5.574c0-.66-.613-1.134-.962-1.134h-9.44z"/><path fill="%logo_color%" d="M19.52 15.84l1.755 1.204c.246.183.543 0 .543 0-.297.183 8.104-5.397 8.104-5.397V21.75c0 1.102-.704 1.562-1.496 1.562H19.52V15.84z"/><g fill="%logo_color%"><path d="M10.445 13.305c-.6 0-1.073.282-1.426.842-.355.56-.53 1.305-.53 2.23 0 .936.175 1.677.53 2.22.347.546.813.82 1.38.82.59 0 1.055-.266 1.4-.795.344-.53.517-1.266.517-2.206 0-.984-.17-1.744-.502-2.288-.333-.55-.79-.823-1.37-.823z"/><path d="M2.123 5.5v21.51l16.362 3.428V2.33L2.123 5.5zm10.95 14.387c-.693.91-1.594 1.367-2.706 1.367-1.082 0-1.967-.442-2.65-1.324-.68-.88-1.02-2.03-1.02-3.448 0-1.496.343-2.707 1.037-3.63.693-.926 1.614-1.388 2.754-1.388 1.08 0 1.955.438 2.62 1.324.667.885 1 2.05 1 3.495.004 1.496-.345 2.695-1.034 3.604z"/></g></svg></span></a>',
119
+ 'Papaly' => '<a class="heateor_sss_button_papaly" href="https://papaly.com/api/share.html?url=%encoded_post_url%&title=%post_title%" title="Papaly" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_papaly" style="background-color:#3ac0f6;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-0.5 0 32 32"><path fill="%logo_color%" d="M20.744 8.217c1.112 0 2.296.519 3.106 1.329l.185.185c1.361 1.361 1.402 4.432.042 5.792l-3.103 2.787L16 22.777l-4.974-4.467-3.103-2.787c-1.361-1.361-1.319-4.432.042-5.792l.185-.185c.81-.81 1.994-1.329 3.106-1.329.756 0 1.48.24 2.03.79L16 12.291l2.714-3.284c.55-.55 1.274-.79 2.03-.79m0-2.921c-1.58 0-3.035.585-4.096 1.646l-.098.098-.088.107-.462.558-.462-.559-.088-.106-.098-.098c-1.061-1.061-2.516-1.646-4.096-1.646-1.871 0-3.804.816-5.172 2.184l-.185.185c-2.515 2.515-2.535 7.43-.042 9.924l.055.055.058.052 3.103 2.787 4.974 4.467L16 26.704l1.952-1.753 4.974-4.467 3.103-2.787.058-.052.055-.055c2.494-2.494 2.473-7.409-.042-9.924l-.184-.186c-1.368-1.368-3.301-2.184-5.172-2.184z"></path></svg></span></a>',
120
+ 'Pinboard' => '<a class="heateor_sss_pinboard" href="https://pinboard.in/popup_login/?url=%encoded_post_url%&title=%post_title%&later=&description=&next=same" title="Pinboard" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#1341de;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M17.357 18.913l-5.01 5.014.88-4.5-6.588-8.075-3.48.044 4.314-4.313 4.035-4.04V6.85l7.795 6.403 4.502-.786-4.876 4.87 9.908 11.62"></path></svg></span></a>',
121
+ 'Plurk' => '<a class="heateor_sss_button_plurk" href="//www.plurk.com/m?content=%encoded_post_url%&qualifier=shares" title="Plurk" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_plurk" style="background-color:#cf682f;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M20.215 16.016h-8.43V9.7h8.43v6.316zm4.2 4.2V5.5H7.585v21h4.2v-6.285h12.63z"></path></svg></span></a>',
122
+ 'Pocket' => '<a class="heateor_sss_button_pocket" href="https://readitlaterlist.com/save?url=%encoded_post_url%&title=%post_title%" title="Pocket" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg aheateor_sss_s__default heateor_sss_s_pocket" style="background-color:#f0f0f0;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16.005 6.244c2.927 0 5.854-.002 8.782 0 1.396.002 2.195.78 2.188 2.165-.015 2.483.116 4.985-.11 7.454-.75 8.204-10.027 12.607-16.91 8.064-3.086-2.037-4.82-4.926-4.917-8.673-.06-2.34-.034-4.684-.018-7.025.008-1.214.812-1.98 2.056-1.983 2.975-.01 5.952-.005 8.93-.007zm-5.037 5.483c-.867.093-1.365.396-1.62 1.025-.27.67-.078 1.256.417 1.732a529.74 529.74 0 0 0 5.09 4.838c.745.695 1.537.687 2.278-.01a473.74 473.74 0 0 0 4.93-4.686c.827-.797.91-1.714.252-2.38-.694-.704-1.583-.647-2.447.17-1.097 1.04-2.215 2.06-3.266 3.143-.485.492-.77.432-1.227-.027a87.392 87.392 0 0 0-3.39-3.225c-.325-.29-.77-.448-1.017-.584z"></path></svg></span></a>',
123
+ 'PrintFriendly' => '<a class="heateor_sss_button_printfriendly" href="http://www.printfriendly.com/print?url=%encoded_post_url%&partner=a2a" title="PrintFriendly" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_printfriendly" style="background-color:#61d1d5;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g stroke="%logo_color%" stroke-width="1.5" stroke-linecap="round" stroke-miterlimit="10"><path fill="none" d="M22.562 19.588v4.373H9.438v-4.37h13.124zm-13.124 1.53H6.375c-.483 0-.875-.313-.875-.7v-7.35c0-.387.392-.7.875-.7h19.25c.482 0 .875.313.875.7v7.35c0 .387-.393.7-.876.7h-3.062"></path><path fill="%logo_color%" d="M22.562 12.32V8.04H9.436v4.28"></path></g></svg></span></a>',
124
+ 'Protopage_Bookmarks' => '<a class="heateor_sss_button_protopage_bookmarks" href="http://www.protopage.com/add-button-site?url=%encoded_post_url%&label=&type=page" title="Protopage Bookmarks" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_protopage_bookmarks" style="background-color:#413fff;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-0.5 0 32 32"><path class="heateor_sss_svg_stroke" fill="%logo_color%" stroke="%logo_color%" stroke-miterlimit="10" d="M17.866 14.47l7.626-1.048.574 3.078-7.68 1.038 3.54 7.058-2.804 1.418-3.614-7.23-5.873 5.557-2.144-2.29 5.74-5.42-6.86-3.602 1.593-2.697 6.808 3.595 1.3-7.375 3.1.546-1.303 7.374z"/></svg></span></a>',
125
+ 'Pusha' => '<a class="heateor_sss_button_pusha" href="//www.pusha.se/posta?url=%encoded_post_url%" title="Pusha" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_pusha" style="background-color:#0072b8;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M29.27 22.188V8.068L17.207 14.92l3.838 2.33C15.715 24.144 5.898 29.306 0 31.964V32h19.635c3.682-4.865 7.03-11.46 7.03-11.46l2.604 1.648z"></path></svg></span></a>',
126
+ 'Qzone' => '<a class="heateor_sss_button_qzone" href="http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=%encoded_post_url%" title="Qzone" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_qzone" style="background-color:#2b82d9;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M27.996 12.83l-7.423-.737c-.566-.053-.694-.142-.87-.604l-3.175-7.045c-.29-.598-.765-.598-1.055 0l-3.384 7.04c-.23.393-.34.48-.898.534l-7.187.807c-.66.064-.808.493-.327.952l5.64 5.184c.266.25.27.355.195.697l-1.447 7.61c-.124.65.247.915.82.58l6.44-3.715c.45-.284.87-.293 1.31-.018l6.47 3.734c.575.334.948.07.826-.58L22.83 21.2c.66-.226 1.305-.5 1.69-.81l-.156.03c-2.29.547-5.438.872-8.355.872-1.08 0-2.128-.038-3.13-.11l-.006.005a39.39 39.39 0 0 1-2.53-.26c-.3-.05.026-.242.026-.242l7.76-5.513s.202-.126.002-.153c-3.188-.5-6.723-.627-10.042-.627h-.23c2.246-.51 5.07-.815 8.14-.815 1.81 0 3.54.105 5.11.296-.002.003.888.124 1.31.193.33.05.024.24.024.24l-7.77 5.384s-.18.107.015.136c2.39.337 5.332.457 7.98.49l-.118-.65c-.06-.38 0-.51.284-.78l5.478-5.12c.485-.455.34-.88-.318-.945z"></path></svg></span></a>',
127
+ 'Rediff MyPage' => '<a class="heateor_sss_button_rediff" href="//share.rediff.com/bookmark/addbookmark?bookmarkurl=%encoded_post_url%&title=%post_title%" title="Rediff MyPage" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_rediff" style="background-color:#d20000;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-1 0 32 32"><path fill="%logo_color%" d="M22.506 6.004c-.336 0-.64 0-.92-.002L20.926 6c-1.742 0-2.418.07-3.738.923-.744.457-1.38 1.034-1.85 1.517V6.188a.182.182 0 0 0-.182-.184h-5.71c-.1 0-.183.082-.183.184v19.62c0 .115.115.23.232.18h5.71c.1 0 .18-.08.18-.18V14.933c0-2.584 1.85-2.916 3.464-2.916h3.7c.1 0 .183-.08.183-.182V6.188c-.05-.147-.172-.147-.287-.184h.056z"></path></svg></span></a>',
128
+ 'Refind' => '<a class="heateor_sss_button_refind" href="https://refind.com/?url=%encoded_post_url%" title="Refind" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_refind" style="background-color:#1492ef;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M16 21.256c-2.891 0-5.256-2.365-5.256-5.255 0-2.891 2.365-5.255 5.255-5.255 2.891 0 5.255 2.365 5.255 5.255.002 2.89-2.363 5.255-5.254 5.255z"></path><path d="M20.664 23.676A8.91 8.91 0 0 1 16 25c-4.95 0-9-4.05-9-9s4.05-9 9-9 9 4.05 9 9a8.912 8.912 0 0 1-1.302 4.628l2.293 1.991A11.908 11.908 0 0 0 28 16c0-6.6-5.4-12-12-12S4 9.4 4 16s5.4 12 12 12c2.456 0 4.745-.75 6.652-2.029l-1.988-2.295z"></path></g></svg></span></a>',
129
+ 'Renren' => '<a class="heateor_sss_button_renren" href="//www.connect.renren.com/share/sharer?url=%encoded_post_url%&title=%post_title%" title="Renren" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_renren" style="background-color:#005eac;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M18.74 3.266a14.24 14.24 0 0 0-5.48 0c0 8.96-.07 16.176-9.26 21.662A14.406 14.406 0 0 0 8.322 29c3.595-2.168 5.688-4.736 7.69-8.275 2 3.54 4.07 6.107 7.69 8.275A14.07 14.07 0 0 0 28 24.928c-9.19-5.487-9.26-12.7-9.26-21.662z"></path></svg></span></a>',
130
+ 'Sina Weibo' => '<a class="heateor_sss_button_sina_weibo" href="http://service.weibo.com/share/share.php?url=%encoded_post_url%&title=%post_title%" title="Sina Weibo" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_sina_weibo" style="background-color:#ff0;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M13.92 24.99c-4.303.424-8.02-1.52-8.3-4.346-.278-2.827 2.987-5.463 7.292-5.888 4.304-.426 8.018 1.52 8.297 4.345.274 2.83-2.987 5.468-7.29 5.89m8.61-9.38c-.367-.11-.62-.184-.428-.663.416-1.046.458-1.946.01-2.59-.846-1.204-3.155-1.14-5.8-.03 0-.004-.834.362-.62-.297.406-1.31.345-2.407-.29-3.04-1.435-1.437-5.255.055-8.53 3.33C4.422 14.77 3 17.37 3 19.617c0 4.3 5.513 6.913 10.907 6.913 7.07 0 11.776-4.105 11.776-7.37 0-1.97-1.66-3.09-3.15-3.55m4.693-7.87a6.89 6.89 0 0 0-6.55-2.12h-.002a.997.997 0 0 0-.765 1.182.99.99 0 0 0 1.18.765 4.91 4.91 0 0 1 4.66 1.508 4.899 4.899 0 0 1 1.02 4.787.995.995 0 1 0 1.894.615v-.004a6.883 6.883 0 0 0-1.44-6.732m-2.622 2.37a3.343 3.343 0 0 0-3.192-1.03.852.852 0 0 0-.655 1.016.854.854 0 0 0 1.016.657v.003a1.655 1.655 0 0 1 1.564.502c.406.453.514 1.066.338 1.606h.005a.858.858 0 1 0 1.63.528 3.345 3.345 0 0 0-.7-3.28"></path><path d="M14.16 19.87c-.15.26-.484.383-.746.275-.256-.104-.335-.393-.19-.646.15-.255.47-.378.725-.276.26.094.35.386.21.644m-1.375 1.76c-.417.666-1.308.957-1.98.65-.66-.302-.855-1.072-.44-1.72.413-.645 1.274-.933 1.94-.653.673.287.888 1.054.48 1.724m1.564-4.7c-2.047-.533-4.364.49-5.254 2.293-.904 1.84-.028 3.884 2.04 4.552 2.144.69 4.67-.368 5.55-2.354.865-1.943-.216-3.943-2.336-4.49"></path></g></svg></span></a>',
131
+ 'SiteJot' => '<a class="heateor_sss_button_sitejot" href="http://www.sitejot.com/loginform.php?iSiteAdd=&iSiteDes=" title="SiteJot" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_sitejot" style="background-color:#ffc800;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path d="M23.506 8.08c.645 0 1.3.073 1.967.225.547.12.937.285 1.173.495.236.21.354.5.354.868 0 .232-.043.414-.13.547-.086.13-.272.29-.56.48-.333.224-.524.49-.573.794-.05.3-.094 1.48-.134 3.54-.018 1.99-.033 3.183-.048 3.58-.015.4-.05.786-.107 1.16-.167 1.1-.504 1.96-1.01 2.583-.414.51-.946.912-1.596 1.205-.65.293-1.335.44-2.054.44-.64 0-1.278-.11-1.92-.326a5.407 5.407 0 0 1-1.67-.902c-.39-.315-.7-.74-.93-1.278a4.326 4.326 0 0 1-.347-1.72c0-.75.186-1.37.548-1.863.362-.49.816-.738 1.363-.738.535 0 .99.207 1.363.62.375.42.56.938.56 1.555 0 .155-.033.42-.102.787-.01.075-.017.157-.017.247 0 .24.066.437.2.587.13.15.307.227.524.227.386 0 .696-.226.933-.677.233-.45.35-1.043.35-1.78l-.01-1.024-.016-2.76c-.052-1.676-.09-2.662-.116-2.96-.027-.296-.09-.538-.195-.725-.086-.15-.162-.247-.23-.29-.065-.047-.245-.118-.538-.216-.138-.038-.256-.144-.353-.315a1.114 1.114 0 0 1-.147-.555c0-.405.122-.73.366-.975.247-.242.646-.44 1.198-.59.62-.17 1.254-.25 1.91-.25zM10.202 8c.593 0 1.37.19 2.33.574a.785.785 0 0 0 .275.068c.058 0 .23-.068.518-.203.093-.05.19-.07.294-.07.38 0 .79.4 1.22 1.193.43.797.64 1.555.64 2.275 0 .42-.097.775-.29 1.065-.19.288-.426.434-.7.434-.23 0-.418-.06-.56-.18-.146-.12-.46-.48-.95-1.07-.69-.843-1.37-1.264-2.037-1.264-.322 0-.58.102-.772.305-.19.204-.29.47-.29.8 0 .654.44 1.147 1.32 1.477 1.193.46 1.955.793 2.288 1.003 1.466.934 2.2 2.305 2.2 4.114 0 1.6-.5 2.907-1.5 3.922C13.162 23.48 11.825 24 10.175 24a8.64 8.64 0 0 1-2.33-.344c-.816-.23-1.406-.497-1.77-.805-.274-.24-.523-.762-.745-1.57a8.972 8.972 0 0 1-.33-2.36c0-.368.06-.647.174-.834.143-.24.324-.36.543-.36.22 0 .43.146.63.438.12.165.405.695.855 1.59.215.42.553.768 1.016 1.048.463.28.94.418 1.437.418.426 0 .77-.104 1.035-.31a.964.964 0 0 0 .396-.794c0-.3-.103-.56-.31-.777-.208-.22-.544-.423-1.01-.61-.823-.338-1.45-.65-1.88-.93a5.844 5.844 0 0 1-1.21-1.064c-.908-1.053-1.362-2.246-1.362-3.583 0-.66.12-1.305.355-1.932s.57-1.17 1-1.627C7.63 8.53 8.81 8 10.2 8z" fill="%logo_color%"></path></svg></span></a>',
132
+ 'Skype' => '<a class="heateor_sss_button_skype" href="https://web.skype.com/share?url=%encoded_post_url%" title="Skype" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_skype" style="background-color:#00aff0;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M27.15 18c-.007.04-.012.084-.02.126l-.04-.24.06.113c.124-.678.19-1.37.19-2.06 0-1.53-.3-3.013-.892-4.41a11.273 11.273 0 0 0-2.43-3.602 11.288 11.288 0 0 0-8.012-3.32c-.72 0-1.443.068-2.146.203h-.005c.04.023.08.04.118.063l-.238-.037c.04-.01.08-.018.12-.026a6.717 6.717 0 0 0-3.146-.787 6.67 6.67 0 0 0-4.748 1.965A6.7 6.7 0 0 0 4 10.738c0 1.14.293 2.262.844 3.253.007-.04.012-.08.02-.12l.04.238-.06-.114c-.112.643-.17 1.3-.17 1.954a11.285 11.285 0 0 0 3.32 8.012c1.04 1.04 2.25 1.86 3.602 2.43 1.397.592 2.882.89 4.412.89.666 0 1.334-.06 1.985-.175-.038-.02-.077-.04-.116-.063l.242.04c-.046.01-.088.015-.13.02a6.68 6.68 0 0 0 3.3.87 6.661 6.661 0 0 0 4.743-1.963A6.666 6.666 0 0 0 28 21.26c0-1.145-.295-2.27-.85-3.264zm-11.098 4.885c-4.027 0-5.828-1.98-5.828-3.463 0-.76.562-1.294 1.336-1.294 1.723 0 1.277 2.474 4.49 2.474 1.647 0 2.556-.893 2.556-1.808 0-.55-.27-1.16-1.355-1.426l-3.58-.895c-2.88-.723-3.405-2.282-3.405-3.748 0-3.043 2.865-4.186 5.556-4.186 2.478 0 5.4 1.37 5.4 3.192 0 .783-.677 1.237-1.45 1.237-1.472 0-1.2-2.035-4.163-2.035-1.47 0-2.285.666-2.285 1.618 0 .95 1.16 1.254 2.17 1.484l2.65.587c2.905.647 3.64 2.342 3.64 3.94 0 2.47-1.895 4.318-5.726 4.318z"></path></svg></span></a>',
133
+ 'Slashdot' => '<a class="heateor_sss_button_slashdot" href="//slashdot.org/submission?url=%encoded_post_url%" title="Slashdot" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_slashdot" style="background-color:#004242;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M20.89 6h-5L8.61 26h5"/><circle cx="20.89" cy="23.5" r="2.5"/></g></svg></span></a>',
134
+ 'SMS' => '<a class="heateor_sss_button_sms" href="sms:?&body=%post_title% %encoded_post_url%" title="SMS" rel="nofollow noopener" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_sms" style="background-color:#6ebe45;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16 3.543c-7.177 0-13 4.612-13 10.294 0 3.35 2.027 6.33 5.16 8.21 1.71 1.565 1.542 4.08-.827 6.41 2.874 0 7.445-1.698 8.462-4.34H16c7.176 0 13-4.605 13-10.285s-5.824-10.29-13-10.29zM9.045 17.376c-.73 0-1.45-.19-1.81-.388l.294-1.194c.384.2.98.398 1.6.398.66 0 1.01-.275 1.01-.692 0-.398-.302-.625-1.07-.9-1.06-.37-1.753-.957-1.753-1.886 0-1.09.91-1.924 2.415-1.924.72 0 1.25.152 1.63.322l-.322 1.166a3.037 3.037 0 0 0-1.336-.303c-.625 0-.93.284-.93.616 0 .41.36.59 1.186.9 1.127.42 1.658 1.01 1.658 1.91.003 1.07-.822 1.98-2.575 1.98zm9.053-.095l-.095-2.44a72.993 72.993 0 0 1-.057-2.626h-.028a35.41 35.41 0 0 1-.71 2.475l-.778 2.49h-1.128l-.682-2.473a29.602 29.602 0 0 1-.578-2.493h-.02c-.037.863-.065 1.85-.112 2.645l-.114 2.425H12.46l.407-6.386h1.924l.63 2.13c.2.74.397 1.536.54 2.285h.027a52.9 52.9 0 0 1 .607-2.293l.683-2.12h1.886l.35 6.386H18.1zm4.09.1c-.73 0-1.45-.19-1.81-.39l.293-1.194c.39.2.99.398 1.605.398.663 0 1.014-.275 1.014-.692 0-.396-.305-.623-1.07-.9-1.064-.37-1.755-.955-1.755-1.884 0-1.09.91-1.924 2.416-1.924.72 0 1.25.153 1.63.323l-.322 1.166a3.038 3.038 0 0 0-1.337-.303c-.625 0-.93.284-.93.616 0 .408.36.588 1.186.9 1.127.42 1.658 1.006 1.658 1.906.002 1.07-.823 1.98-2.576 1.98z"></path></svg></span></a>',
135
+ 'StockTwits' => '<a class="heateor_sss_button_stocktwits" href="https://stocktwits.com/widgets/share?body=%post_title%%20%encoded_post_url%" title="StockTwits" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_stocktwits" style="background-color:#40576f;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path d="M11.328 14.309l-1.793-.736c-1.303-.536-1.955-1.244-1.955-2.123 0-.637.249-1.166.746-1.587.498-.427 1.123-.642 1.878-.642.614 0 1.115.125 1.504.373.373.218.766.684 1.178 1.399l2.204-1.306c-1.166-2.024-2.788-3.037-4.863-3.037-1.539 0-2.828.459-3.866 1.376-1.039.909-1.559 2.039-1.559 3.391 0 2.005 1.232 3.528 3.698 4.569l1.738.722c.451.194.84.399 1.167.612.326.214.593.443.799.687.206.245.358.513.455.805.097.291.146.612.146.961 0 .871-.28 1.59-.84 2.156-.56.568-1.263.851-2.111.851-1.073 0-1.889-.389-2.449-1.166-.311-.405-.529-1.135-.653-2.193L4 20.028c.249 1.679.875 2.986 1.878 3.92 1.018.936 2.309 1.403 3.872 1.403 1.648 0 3.028-.544 4.139-1.634 1.102-1.082 1.653-2.451 1.653-4.109 0-1.237-.338-2.281-1.012-3.134-.676-.852-1.743-1.573-3.202-2.165zM28 7.023H17.037v2.571h4.14v15.425h2.695V9.594H28z" fill="%logo_color%"></path></svg></span></a>',
136
+ 'Svejo' => '<a class="heateor_sss_button_svejo" href="https://svejo.net/story/submit_by_url?url=%encoded_post_url%&title=%post_title%&summary=" title="Svejo" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_svejo" style="background-color:#fa7aa3;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M19.865 10.524c.31.16.48.29.48.29l.04-.02c.2-4.96-2.933-7.41-2.933-7.41-.688.87-1.147 2.21-1.387 3.04.26.11.51.24.76.38 2.13 1.19 2.83 2.92 3.04 3.72zm0 0c-.22-.8-.91-2.53-3.04-3.73-.25-.14-.5-.26-.76-.38-2.27-.99-4.73-.96-4.73-.96s0 2.92 3.08 4.95c.48-.17 1-.31 1.57-.42 1.81-.32 3.19.19 3.88.54zm-9.07 2.72c-.93 1.82 2.15 6.7 4.75 9.37 1.29 1.33 1.93 2.48 2.19 3.052 2.1.5 3.28-.29 3.42-.4l.07-.12c.93-1.94-1.46-4.818-3.19-7.068-2.14-2.78-2.7-4.832-2.7-4.832l-.01-.01c-3.5-1.582-4.53.008-4.53.008z"></path><path d="M21.176 25.274c-.15.11-1.32.9-3.42.4-1.1-.26-2.47-.88-4.07-2.15-2.31-1.818-4.03-3.43-5.2-5.53-.3-.528-.98-.568-1.37.2-.6 1.19-.67 4.5.7 6.44 0 0-.38 1.28.62 2.37.67.73 2.22 1.06 3.06.76l.17-.07s1.73 1.302 4.37.813c2.64-.49 4.33-1.73 5.18-3.24l-.04.007zm3.01-11.4s.38-1.28-.62-2.37c-.67-.73-2.22-1.06-3.06-.76l-.12.05-.04.02s-.17-.13-.48-.28c-.69-.36-2.07-.87-3.89-.53-.57.102-1.09.25-1.57.42-1.68.59-2.83 1.542-3.51 2.66l-.1.17s1.02-1.59 4.53-.01c.84.382 1.83.94 2.978 1.75 2.41 1.692 4.03 3.432 5.2 5.53.3.53.98.57 1.37-.198.612-1.2.682-4.512-.69-6.45z"></path></g></svg></span></a>',
137
+ 'Symbaloo_Feeds' => '<a class="heateor_sss_button_symbaloo_feeds" href="//www.symbaloo.com" title="Symbaloo Feeds" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_symbaloo_feeds" style="background-color:#6da8f7;%span_style%"><svg style="%inner_style%" xmlns="http://www.w3.org/2000/svg" viewBox="-0.5 0 32 32"><path d="M7 7h4.5v4.5H7zm6.75 0h4.5v4.5h-4.5zm6.75 0H25v4.5h-4.5zM7 13.75h4.5v4.5H7zm6.75 0h4.5v4.5h-4.5zm6.75 0H25v4.5h-4.5zM7 20.5h4.5V25H7zm6.75 0h4.5V25h-4.5zm6.75 0H25V25h-4.5z" fill="%logo_color%"/></svg></span></a>',
138
+ 'Telegram' => '<a class="heateor_sss_button_telegram" href="https://telegram.me/share/url?url=%encoded_post_url%&text=%post_title%" title="Telegram" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_telegram" style="background-color:#3da5f1;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M25.515 6.896L6.027 14.41c-1.33.534-1.322 1.276-.243 1.606l5 1.56 1.72 5.66c.226.625.115.873.77.873.506 0 .73-.235 1.012-.51l2.43-2.363 5.056 3.734c.93.514 1.602.25 1.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z"></path></svg></span></a>',
139
+ 'Threema' => '<a class="heateor_sss_button_telegram" href="/#telegram" title="Telegram" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_telegram" style="background-color:#3da5f1;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M25.515 6.896L6.027 14.41c-1.33.534-1.322 1.276-.243 1.606l5 1.56 1.72 5.66c.226.625.115.873.77.873.506 0 .73-.235 1.012-.51l2.43-2.363 5.056 3.734c.93.514 1.602.25 1.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z"></path></svg></span></a>',
140
+ 'Trello' => '<a class="heateor_sss_button_trello" href="https://trello.com/add-card?mode=popup&url=%encoded_post_url%&name=%post_title%&desc=" title="Trello" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_trello" style="background-color:#1189ce;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M26.5 4h-21A1.5 1.5 0 0 0 4 5.5v21A1.5 1.5 0 0 0 5.5 28h21a1.5 1.5 0 0 0 1.5-1.5v-21A1.5 1.5 0 0 0 26.5 4zM14.44 22.12c0 .825-.675 1.5-1.5 1.5H8.62c-.825 0-1.5-.675-1.5-1.5V8.62c0-.825.675-1.5 1.5-1.5h4.32c.825 0 1.5.675 1.5 1.5v13.5zm10.44-6c0 .825-.675 1.5-1.5 1.5h-4.32c-.825 0-1.5-.675-1.5-1.5v-7.5c0-.825.675-1.5 1.5-1.5h4.32c.825 0 1.5.675 1.5 1.5v7.5z"></path></svg></span></a>',
141
+ 'Tuenti' => '<a class="heateor_sss_button_tuenti" href="https://www.tuenti.com/share?p=b5dd6602&url=%encoded_post_url%" title="Tuenti" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_tuenti" style="background-color:#0075c9;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path d="M13.907 19.803l-2.463 5.062a1.836 1.836 0 0 1-2.463.847 1.844 1.844 0 0 1-.844-2.465l2.46-5.062a1.844 1.844 0 0 1 3.314 1.618zm-.053-7.497a2.394 2.394 0 0 1-1.682.698 2.383 2.383 0 0 1-2.378-2.378c0-.626.255-1.236.7-1.68.885-.888 2.48-.888 3.36 0 .442.444.696 1.054.696 1.68 0 .626-.254 1.235-.696 1.68zm9.834 7.17a16.055 16.055 0 0 1-2.445 5.73 1.81 1.81 0 0 1-2.522.478 1.815 1.815 0 0 1-.473-2.52 12.532 12.532 0 0 0 1.896-4.448c.38-1.775.38-3.654 0-5.432a12.506 12.506 0 0 0-1.895-4.445 1.82 1.82 0 0 1 .48-2.527 1.815 1.815 0 0 1 2.522.48c1.177 1.727 2 3.655 2.442 5.73a16.68 16.68 0 0 1-.002 6.95z" fill="%logo_color%"></path></svg></span></a>',
142
+ 'Twiddla' => '<a class="heateor_sss_button_twiddla" href="//www.twiddla.com/New.aspx?url=%encoded_post_url%&title=%post_title%" title="Twiddla" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_twiddla" style="background-color:#ededed;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M10.5 5.688l1.375 1.375-4.812 4.812L5.688 10.5A3.438 3.438 0 0 1 10.5 5.688zm2.406 2.406l-4.812 4.812 12.72 12.72L27 27l-1.375-6.188-12.72-12.718zm-.095 3.533l9.63 9.625-1.187 1.183-9.624-9.625 1.185-1.183z"></path></svg></span></a>',
143
+ 'TypePad_Post' => '<a class="heateor_sss_button_typePad_Post" href="https://www.typepad.com/services/quickpost/post?v=2&qp_show=ac&qp_title=%post_title%&qp_href=%encoded_post_url%" title="TypePad Post" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_typePad_Post" style="background-color:#2a2a2a;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16 8.875c-6.627 0-12 3.225-12 7.202 0 .844.342 2.21.787 2.407.447.196 1.67.683 12.523-3.836 0 0-9.096 4.09-9.83 5.85-.253.605 2.154 2.627 8.52 2.627 6.626 0 12-3.148 12-7.125s-5.374-7.125-12-7.125z"/></svg></span></a>',
144
+ 'Viadeo' => '<a class="heateor_sss_button_viadeo" href="//www.viadeo.com/shareit/share/?url=%encoded_post_url%&title=%post_title%" title="Viadeo" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_viadeo" style="background-color:#2a2a2a;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M15.107 4s2.838 1.88 3.326 7.05c0 0 .957 12.423-5.47 14.858 0 0 .577.106 1.224.076 0 0 7.947-5.012 4.3-14.742 0 0-1.09-3.396-3.38-7.242zm4.15 8.483s-1.48-2.29.397-4.18c0 0 .658-.725 2.537-1.202 0 0 1.88-.4 2.897-2.553 0 0 2.105 2.94.81 6.807 0 0-.64 1.742-1.976 2.538-1.01.6-2.535.788-4.133-.776 0 0 4.83-2.644 5.01-4.884 0 0-1.483 3.334-5.54 4.256z"></path><path d="M19.256 12.483s-1.48-2.29.398-4.18c0 0 .658-.725 2.537-1.202 0 0 1.88-.4 2.897-2.553 0 0 2.105 2.94.81 6.807 0 0-.64 1.742-1.976 2.538-1.01.6-2.535.788-4.133-.776 0 0 4.83-2.644 5.01-4.884 0 0-1.483 3.334-5.54 4.256zm1.23 6.95c0 1.19-.283 2.3-.85 3.33-.57 1.03-1.34 1.825-2.306 2.384-.967.56-2.03.84-3.186.84-1.156 0-2.22-.28-3.186-.84-.97-.56-1.736-1.354-2.305-2.383a6.787 6.787 0 0 1-.853-3.33c0-1.847.625-3.42 1.87-4.723 1.247-1.3 2.74-1.95 4.474-1.95.824 0 1.596.15 2.313.45.072-.754.336-1.456.63-2.03a8.578 8.578 0 0 0-2.936-.49c-2.504 0-4.58.92-6.22 2.77-1.495 1.675-2.24 3.65-2.24 5.933 0 2.3.79 4.31 2.366 6.03C9.63 27.14 11.666 28 14.15 28c2.48 0 4.508-.86 6.086-2.58 1.578-1.72 2.367-3.73 2.367-6.03 0-1.233-.22-2.374-.65-3.427a6.21 6.21 0 0 1-1.982.797c.347.816.52 1.707.52 2.674z"></path></g></svg></span></a>',
145
+ 'Viber' => '<a class="heateor_sss_button_viber" href="viber://forward?text=%post_title% %encoded_post_url%" title="Viber" rel="nofollow noopener" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_viber" style="background-color:#8b628f;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path d="M22.57 27.22a7.39 7.39 0 0 1-1.14-.32 29 29 0 0 1-16-16.12c-1-2.55 0-4.7 2.66-5.58a2 2 0 0 1 1.39 0c1.12.41 3.94 4.3 4 5.46a2 2 0 0 1-1.16 1.78 2 2 0 0 0-.66 2.84A10.3 10.3 0 0 0 17 20.55a1.67 1.67 0 0 0 2.35-.55c1.07-1.62 2.38-1.54 3.82-.54.72.51 1.45 1 2.14 1.55.93.75 2.1 1.37 1.55 2.94a5.21 5.21 0 0 1-4.29 3.27zM17.06 4.79A10.42 10.42 0 0 1 26.79 15c0 .51.18 1.27-.58 1.25s-.54-.78-.6-1.29c-.7-5.52-3.23-8.13-8.71-9-.45-.07-1.15 0-1.11-.57.05-.87.87-.54 1.27-.6z" fill="%logo_color%" fill-rule="evenodd"></path><path d="M24.09 14.06c-.05.38.17 1-.45 1.13-.83.13-.67-.64-.75-1.13-.56-3.36-1.74-4.59-5.12-5.35-.5-.11-1.27 0-1.15-.8s.82-.48 1.35-.42a6.9 6.9 0 0 1 6.12 6.57z" fill="%logo_color%" fill-rule="evenodd"></path><path d="M21.52 13.45c0 .43 0 .87-.53.93s-.6-.26-.64-.64a2.47 2.47 0 0 0-2.26-2.43c-.42-.07-.82-.2-.63-.76.13-.38.47-.41.83-.42a3.66 3.66 0 0 1 3.23 3.32z" fill="%logo_color%" fill-rule="evenodd"></path></svg></span></a>',
146
+ 'Webnews' => '<a class="heateor_sss_button_webnews" href="//www.webnews.de/login" title="Webnews" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_webnews" style="background-color:#cc2512;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-0.5 0 32 32"><path fill="%logo_color%" d="M6 6h5.48v14.557h1.844V6h5.396v14.557h1.852V6H26v18.196h-1.82V26h-7.25v-1.825h-1.838V26h-7.25v-1.825H6V6z"/></svg></span></a>',
147
+ 'Wykop' => '<a class="heateor_sss_button_wykop" href="//www.wykop.pl/dodaj?url=%encoded_post_url%&title=%post_title%" title="Wykop" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_wykop" style="background-color:#367da9;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M23.54 3.5H8.46A4.96 4.96 0 0 0 3.5 8.46v15.08a4.96 4.96 0 0 0 4.96 4.96h15.08a4.96 4.96 0 0 0 4.96-4.96V8.46a4.96 4.96 0 0 0-4.96-4.96zM10.93 25.98L5 13.927l4.018-1.977 4.94 10.044 2.01-.988-4.94-10.043 4.016-1.977 4.942 10.043 2.01-.99L17.05 7.994l4.02-1.977L27 18.07l-16.07 7.91z"></path></svg></span></a>',
148
+ 'Yahoo_Mail' => '<a class="heateor_sss_button_yahoo_mail" href="//compose.mail.yahoo.com/?Subject=%post_title%&body=Link:%encoded_post_url%" title="Yahoo Mail" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_yahoo" style="background-color:#400090;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M21.495 6.097c1.09.31 2.213.28 3.304 0l-7.42 12.09v9.91a4.366 4.366 0 0 0-1.37-.22c-.47 0-.937.065-1.404.22v-9.91L7.19 6.097c1.09.28 2.213.31 3.304 0l5.516 8.788 5.483-8.787z"></path></svg></span></a>',
149
+ 'Yoolink' => '<a class="heateor_sss_button_yoolink" href="http://auth.yoolink.to/authenticate/login?service=yoolink.to&landing_path=%2Faddorshare%3Furl_value%3D%encoded_post_url%%26title%3D%post_title%" title="Yoolink" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_yoolink" style="background-color:#a2c538;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M16 4C9.37 4 4 9.373 4 16c0 6.628 5.372 12 12 12 6.626 0 12-5.372 12-12 0-6.627-5.374-12-12-12zm5.81 7.1c-.128.275-.346.655-.655 1.14l-3.694 5.942v4.908c0 .64-.14 1.118-.42 1.436a1.38 1.38 0 0 1-1.08.474c-.44 0-.8-.157-1.075-.47-.274-.313-.412-.794-.412-1.44v-4.91l-3.603-5.855c-.316-.528-.54-.94-.67-1.235-.13-.295-.197-.553-.197-.77 0-.36.133-.67.398-.93s.59-.39.98-.39c.41 0 .72.12.93.364.213.243.53.727.953 1.45l2.758 4.697 2.79-4.693c.17-.287.31-.53.423-.727.114-.198.24-.384.378-.556.14-.172.29-.305.46-.396.166-.09.37-.136.613-.136.376 0 .688.13.94.386.252.258.378.554.378.892 0 .275-.064.55-.19.823z"></path></svg></span></a>',
150
+ 'youtube' => '<a class="heateor_sss_button_youtube" href="%youtube_username%" title="Youtube" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_youtube" style="background-color:red;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="%logo_color%" d="M26.78 11.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618 0-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874 2.184-.874 2.184S5 13.386 5 15.166v1.67c0 1.78.22 3.56.22 3.56s.215 1.516.874 2.184c.837.875 1.936.85 2.426.94 1.76.17 7.48.22 7.48.22s4.623-.007 7.7-.23c.43-.05 1.37-.056 2.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052 7.254v-6.18l5.944 3.1-5.944 3.08z"></path></svg></span></a>'
151
+
 
 
 
152
  );
153
 
154
 
158
  * @since 3.1.7
159
  */
160
  private $amp_sharing_networks = array(
 
161
  'facebook_share' => '',
162
  'facebook_like' => '',
163
  'facebook_recommend' => '',
167
  'buffer_share' => '',
168
  'xing_share' => '',
169
  'yummly_share' => '',
170
+ 'Copy_Link' => '',
171
  'facebook' => '<a class="heateor_sss_amp heateor_sss_amp_facebook" href="https://www.facebook.com/sharer/sharer.php?u=%encoded_post_url%" title="Facebook" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/facebook.svg" width="%width%" height="%height%" alt="Facebook" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
172
+ 'gettr' => '<a class="heateor_sss_amp heateor_sss_amp_gettr" href="https://gettr.com/share?url=%encoded_post_url%" title="Gettr" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/gettr.svg" width="%width%" height="%height%" alt="Gettr" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
173
  'twitter' => '<a class="heateor_sss_amp heateor_sss_amp_twitter" href="http://twitter.com/intent/tweet?%via_twitter_username%text=%wpseo_post_title%&url=%encoded_post_url%" title="Twitter" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/twitter.svg" width="%width%" height="%height%" alt="Twitter" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
 
 
174
  'linkedin' => '<a class="heateor_sss_amp heateor_sss_amp_linkedin" href="http://www.linkedin.com/shareArticle?mini=true&url=%encoded_post_url%&title=%post_title%" title="Linkedin" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/linkedin.svg" width="%width%" height="%height%" alt="Linkedin" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
175
  'print' => '<a class="heateor_sss_amp heateor_sss_amp_print" href="javascript:void(0)" onclick="window.print()" title="Print" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/print.svg" width="%width%" height="%height%" alt="Print" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
176
+ 'parler' => '<a class="heateor_sss_amp heateor_sss_amp_parler" href="https://parler.com/new-post?message=%post_title%&url=%encoded_post_url%" title="Parler" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/parler.svg" width="%width%" height="%height%" alt="Parler" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>',
177
+ 'gab' => '<a class="heateor_sss_amp heateor_sss_amp_gab" href="https://gab.com/compose?url=%encoded_post_url%&text=%post_title%" title="Gab" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/gab.svg" width="%width%" height="%height%" alt="Gab" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>',
178
+ 'email' => '<a class="heateor_sss_amp heateor_sss_amp_email" href="mailto:?subject=%post_title%&body=%encoded_post_url%" title="Email" rel="nofollow noopener"><amp-img src="%img_url%/email.svg" width="%width%" height="%height%" alt="Email" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>',
179
  'reddit' => '<a class="heateor_sss_amp heateor_sss_amp_reddit" href="http://reddit.com/submit?url=%encoded_post_url%&title=%post_title%" title="Reddit" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/reddit.svg" width="%width%" height="%height%" alt="Reddit" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
180
  'digg' => '<a class="heateor_sss_amp heateor_sss_amp_digg" href="http://digg.com/submit?url=%encoded_post_url%&title=%post_title%" title="Digg" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/digg.svg" width="%width%" height="%height%" alt="Digg" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
181
  'float_it' => '<a class="heateor_sss_amp heateor_sss_amp_float_it" href="http://www.designfloat.com/submit.php?url=%encoded_post_url%&title=%post_title%" title="Float it" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/float_it.svg" width="%width%" height="%height%" alt="Float it" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
182
  'tumblr' => '<a class="heateor_sss_amp heateor_sss_amp_tumblr" href="https://www.tumblr.com/widgets/share/tool?posttype=link&canonicalUrl=%encoded_post_url%&title=%post_title%&caption=" title="Tumblr" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/tumblr.svg" width="%width%" height="%height%" alt="Tumblr" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
183
  'vkontakte' => '<a class="heateor_sss_amp heateor_sss_amp_vkontakte" href="http://vkontakte.ru/share.php?&url=%encoded_post_url%" title="Vkontakte" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/vkontakte.svg" width="%width%" height="%height%" alt="Vkontakte" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
184
+ 'parler' => '<a class="heateor_sss_amp heateor_sss_amp_parler" href="https://parler.com/new-post?message=%post_title%&url=%encoded_post_url%" title="Parler" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/parler.svg" width="%width%" height="%height%" alt="Parler" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>',
185
+ 'gab' => '<a class="heateor_sss_amp heateor_sss_amp_gab" href="https://gab.com/compose?url=%encoded_post_url%&text=%post_title%" title="Gab" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/gab.svg" width="%width%" height="%height%" alt="Gab" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>',
186
+ 'pinterest' => '<a class="heateor_sss_amp heateor_sss_amp_pinterest" href="http://pinterest.com/pin/create/link/?url=%encoded_post_url%&media=https://pyrovolt.com/wp-content/uploads/2015/09/Heateor-Social-Comments.png&description=%post_title%" title="Pinterest" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/pinterest.svg" width="%width%" height="%height%" alt="Pinterest" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>',
187
  'xing' => '<a class="heateor_sss_amp heateor_sss_amp_xing" href="https://www.xing.com/spi/shares/new?cb=0&url=%encoded_post_url%" title="Xing" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/xing.svg" width="%width%" height="%height%" alt="Xing" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
188
  'whatsapp' => '<a class="heateor_sss_amp heateor_sss_amp_whatsapp" href="https://api.whatsapp.com/send?text=%post_title% %encoded_post_url%" title="Whatsapp" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/whatsapp.svg" width="%width%" height="%height%" alt="Whatsapp" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
189
  'instagram' => '<a class="heateor_sss_amp heateor_sss_amp_instagram" href="https://www.instagram.com/%instagram_username%" title="Instagram" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/instagram.svg" width="%width%" height="%height%" alt="Instagram" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
270
  'Viadeo' => '<a class="heateor_sss_amp heateor_sss_amp_viadeo" href="//www.viadeo.com/shareit/share/?url=%encoded_post_url%&title=%post_title%" title="Viadeo" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/viadeo.svg" width="%width%" height="%height%" alt="Viadeo" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
271
  'Viber' => '<a class="heateor_sss_amp heateor_sss_amp_viber" href="viber://forward?text=%post_title% %encoded_post_url%" title="Viber" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/viber.svg" width="%width%" height="%height%" alt="Viber" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
272
  'Webnews' => '<a class="heateor_sss_amp heateor_sss_amp_webnews" href="//www.webnews.de/login" title="Webnews" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/webnews.svg" width="%width%" height="%height%" alt="Webnews" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
 
273
  'Wykop' => '<a class="heateor_sss_amp heateor_sss_amp_wykop" href="//www.wykop.pl/dodaj?url=%encoded_post_url%&title=%post_title%" title="Wykop" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/wykop.svg" width="%width%" height="%height%" alt="Wykop" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
274
  'Yahoo_Mail' => '<a class="heateor_sss_amp heateor_sss_amp_yahoo_mail" href="//compose.mail.yahoo.com/?Subject=%post_title%&body=Link:%encoded_post_url%" title="Yahoo Mail" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/yahoo_mail.svg" width="%width%" height="%height%" alt="Yahoo Mail" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
275
  'Yahoo_Messenger' => '<a class="heateor_sss_amp heateor_sss_amp_yahoo_messenger" href="ymsgr:sendim?m=%encoded_post_url%" title="Yahoo Messenger" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/yahoo_messenger.svg" width="%width%" height="%height%" alt="Yahoo Messenger" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
276
+ 'Yoolink' => '<a class="heateor_sss_amp heateor_sss_amp_yoolink" href="http://auth.yoolink.to/authenticate/login?service=yoolink.to&landing_path=%2Faddorshare%3Furl_value%3D%encoded_post_url%%26title%3D%post_title%" title="Yoolink" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/yoolink.svg" width="%width%" height="%height%" alt="Yoolink" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
277
  'YouMob' => '<a class="heateor_sss_amp heateor_sss_amp_youmob" href="//youmob.com/startmob.aspx?cookietest=true&mob=%encoded_post_url%" title="YouMob" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/youmob.svg" width="%width%" height="%height%" alt="YouMob" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>',
278
  'youtube' => '<a class="heateor_sss_amp heateor_sss_amp_youtube" href="%youtube_username%" title="Youtube" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/youtube.svg" width="%width%" height="%height%" alt="Youtube" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>'
279
  );
281
  /**
282
  * Fetch social share networks
283
  *
284
+ * @since 1.0
285
  */
286
  public function fetch_sharing_networks( $sharing_type ) {
287
 
288
+ $inner_style = isset( $this->options['save_share_count'] ) ? '%inner_style%' : 'display:block';
289
  $this->sharing_networks['instagram'] = str_replace( '%instagram_username%', $this->options['instagram_username'] != '' ? $this->options['instagram_username'] : $this->options['vertical_instagram_username'], $this->sharing_networks['instagram'] );
290
  $this->sharing_networks['youtube'] = str_replace( '%youtube_username%', $this->options['youtube_username'] != '' ? $this->options['youtube_username'] : $this->options['vertical_youtube_username'], $this->sharing_networks['youtube'] );
291
+ $this->sharing_networks['Comment'] = str_replace( '%comment_container_id%', $this->options['comment_container_id'] != '' ? $this->options['comment_container_id'] : $this->options['vertical_comment_container_id'], '<a class="heateor_sss_button_comment" %anchor_style% href="%post_url%#%comment_container_id%" title="comment" rel="nofollow noopener" target="_blank"><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_comment" style="background-color:#0084ff;%span_style%"><svg style="%inner_style%" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-150 -150 791 791"><g><path d="M477.364,127.481c-22.839-28.072-53.864-50.248-93.072-66.522c-39.208-16.274-82.036-24.41-128.479-24.41 c-46.442,0-89.269,8.136-128.478,24.41c-39.209,16.274-70.233,38.446-93.074,66.522C11.419,155.555,0,186.15,0,219.269 c0,28.549,8.61,55.299,25.837,80.232c17.227,24.934,40.778,45.874,70.664,62.813c-2.096,7.611-4.57,14.842-7.426,21.7 c-2.855,6.851-5.424,12.467-7.708,16.847c-2.286,4.374-5.376,9.23-9.281,14.555c-3.899,5.332-6.849,9.093-8.848,11.283 c-1.997,2.19-5.28,5.801-9.851,10.848c-4.565,5.041-7.517,8.33-8.848,9.853c-0.193,0.097-0.953,0.948-2.285,2.574 c-1.331,1.615-1.999,2.419-1.999,2.419l-1.713,2.57c-0.953,1.42-1.381,2.327-1.287,2.703c0.096,0.384-0.094,1.335-0.57,2.854 c-0.477,1.526-0.428,2.669,0.142,3.429v0.287c0.762,3.234,2.283,5.853,4.567,7.851c2.284,1.992,4.858,2.991,7.71,2.991h1.429 c12.375-1.526,23.223-3.613,32.548-6.279c49.87-12.751,93.649-35.782,131.334-69.094c14.274,1.523,28.074,2.283,41.396,2.283 c46.442,0,89.271-8.135,128.479-24.414c39.208-16.276,70.233-38.444,93.072-66.517c22.843-28.072,34.263-58.67,34.263-91.789 C511.626,186.154,500.207,155.555,477.364,127.481z M445.244,292.075c-19.896,22.456-46.733,40.303-80.517,53.529 c-33.784,13.223-70.093,19.842-108.921,19.842c-11.609,0-23.98-0.76-37.113-2.286l-16.274-1.708l-12.277,10.852 c-23.408,20.558-49.582,36.829-78.513,48.821c8.754-15.414,15.416-31.785,19.986-49.102l7.708-27.412l-24.838-14.27 c-24.744-14.093-43.918-30.793-57.53-50.114c-13.61-19.315-20.412-39.638-20.412-60.954c0-26.077,9.945-50.343,29.834-72.803 c19.895-22.458,46.729-40.303,80.515-53.531c33.786-13.229,70.089-19.849,108.92-19.849c38.828,0,75.13,6.617,108.914,19.845 c33.783,13.229,60.62,31.073,80.517,53.531c19.89,22.46,29.834,46.727,29.834,72.802S465.133,269.615,445.244,292.075z" fill="%logo_color%"></path></g></svg></span></a>' );
292
+ $this->sharing_networks['facebook_share'] = '<a style="padding:%padding%px 0 !important" class="heateor_sss_%network%">%like_count_container%<div class="fb-share-button" data-href="%post_url%" data-layout="button' . ( isset( $this->options[$sharing_type . '_counts'] ) ? '_count' : '' ) . '"></div></a>';
293
+ $this->sharing_networks['facebook_like'] = '<a style="padding:%padding%px 0 !important" class="heateor_sss_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button' . ( isset( $this->options[$sharing_type . '_counts'] ) ? '_count' : '' ) . '" data-action="like" data-show-faces="false" data-share="false"></div></a>';
294
+ $this->sharing_networks['facebook_recommend'] = '<a style="padding:%padding%px 0 !important" class="heateor_sss_%network%">%like_count_container%<div class="fb-like" data-href="%post_url%" data-layout="button' . ( isset( $this->options[$sharing_type . '_counts'] ) ? '_count' : '' ) . '" data-action="recommend" data-show-faces="false" data-share="false"></div></a>';
295
+ $this->sharing_networks['xing_share'] = '<a style="padding:%padding%px 0 !important" class="heateor_sss_xing">%like_count_container%<div data-type="XING/Share" ' . ( isset( $this->options[$sharing_type . '_counts'] ) ? 'data-counter="right" ' : '' ) . 'data-url="%post_url%" data-lang="%language%"></div><script>(function (d, s) {var x = d.createElement(s), s = d.getElementsByTagName(s)[0]; x.src = "https://www.xing-share.com/js/external/share.js"; s.parentNode.insertBefore(x, s); })(document, "script");</script></a>';
296
+
297
  $fb_key = '1904103319867886';
298
+ $this->sharing_networks['Facebook_Messenger'] = '<a class="heateor_sss_button_facebook_messenger" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_facebook_messenger" style="background-color:#0084ff;%span_style%" onclick=\'heateorSssPopup("' . ( $this->check_if_mobile() ? 'fb-messenger://share/?link=%encoded_post_url%' : 'https://www.facebook.com/dialog/send?app_id='. $fb_key .'&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%' ) . '")\'><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-2 -2 36 36"><path fill="%logo_color%" d="M16 5C9.986 5 5.11 9.56 5.11 15.182c0 3.2 1.58 6.054 4.046 7.92V27l3.716-2.06c.99.276 2.04.425 3.128.425 6.014 0 10.89-4.56 10.89-10.183S22.013 5 16 5zm1.147 13.655L14.33 15.73l-5.423 3 5.946-6.31 2.816 2.925 5.42-3-5.946 6.31z"/></svg></span></a>';
299
+ $this->sharing_networks['whatsapp'] = '<a class="heateor_sss_whatsapp" href="https://api.whatsapp.com/send?text=%post_title% %encoded_post_url%" title="Whatsapp" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg" style="background-color:#55eb4c;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-6 -5 40 40"><path class="heateor_sss_svg_stroke heateor_sss_not_fill" stroke="%logo_color%" stroke-width="2" fill="none" d="M 11.579798566743314 24.396926207859085 A 10 10 0 1 0 6.808479557110079 20.73576436351046"></path><path d="M 7 19 l -1 6 l 6 -1" class="heateor_sss_not_fill heateor_sss_svg_stroke" stroke="%logo_color%" stroke-width="2" fill="none"></path><path d="M 10 10 q -1 8 8 11 c 5 -1 0 -6 -1 -3 q -4 -3 -5 -5 c 4 -2 -1 -5 -1 -4" fill="%logo_color%"></path></svg></span></a>';
300
+ $this->sharing_networks['WordPress'] = '<a class="heateor_sss_button_wordpress" href="' . esc_url( home_url() ) . '/wp-admin/press-this.php?u=%encoded_post_url%&t=%post_title%" title="WordPress" rel="nofollow noopener" target="_blank" %anchor_style%><span class="heateor_sss_svg heateor_sss_s__default heateor_sss_s_wordpress" style="background-color:#464646;%span_style%"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><g fill="%logo_color%"><path d="M3.176 16c0 5.076 2.95 9.462 7.226 11.54L4.287 10.78A12.77 12.77 0 0 0 3.177 16zm21.48-.646c0-1.586-.57-2.684-1.06-3.537-.647-1.058-1.26-1.95-1.26-3.008 0-1.18.897-2.28 2.156-2.28.057 0 .11.01.166.01A12.772 12.772 0 0 0 16 3.172c-4.48 0-8.422 2.3-10.715 5.78.302.01.585.017.826.017 1.345 0 3.42-.163 3.42-.163.69-.042.774.974.084 1.056 0 0-.694.08-1.466.12l4.668 13.892 2.808-8.417-1.998-5.476c-.69-.04-1.345-.12-1.345-.12-.69-.04-.61-1.1.08-1.058 0 0 2.117.164 3.38.164 1.34 0 3.417-.163 3.417-.163.69-.04.77.976.08 1.058 0 0-.694.08-1.467.12l4.633 13.785 1.28-4.272c.552-1.773.975-3.048.975-4.144zm-8.43 1.766l-3.85 11.18c1.15.34 2.365.523 3.624.523 1.492 0 2.925-.26 4.26-.728a1.235 1.235 0 0 1-.093-.177L16.225 17.12zM27.25 9.848c.055.408.086.848.086 1.318 0 1.3-.242 2.764-.975 4.594l-3.914 11.324C26.26 24.86 28.822 20.73 28.822 16c0-2.23-.568-4.326-1.57-6.152z"></path><path d="M16 1.052C7.757 1.052 1.052 7.757 1.052 16c0 8.242 6.705 14.948 14.948 14.948 8.242 0 14.948-6.706 14.948-14.95 0-8.24-6.706-14.946-14.948-14.946zm0 29.212c-7.865 0-14.264-6.4-14.264-14.265S8.136 1.732 16 1.732c7.863 0 14.264 6.398 14.264 14.263 0 7.863-6.4 14.264-14.264 14.264z"></path></g></svg></span></a>';
301
 
302
  return $this->sharing_networks;
303
 
331
  $fb_key = '1904103319867886';
332
  $this->amp_sharing_networks['Facebook_Messenger'] = '<a class="heateor_sss_amp heateor_sss_amp_facebook_messenger" href="' . ( $this->check_if_mobile() ? 'fb-messenger://share/?link=%encoded_post_url%' : 'https://www.facebook.com/dialog/send?app_id=' . $fb_key . '&display=popup&link=%encoded_post_url%&redirect_uri=%encoded_post_url%' ) . '" title="Facebook Messenger" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/facebook_messenger.svg" width="%width%" height="%height%" alt="Facebook Messenger" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>';
333
  $this->amp_sharing_networks['pinterest'] = '<a class="heateor_sss_amp heateor_sss_amp_pinterest" href="' . $pinterest_share_url . '" title="Pinterest" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/pinterest.svg" width="%width%" height="%height%" alt="Pinterest" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>';
334
+ $this->amp_sharing_networks['WordPress'] = '<a class="heateor_sss_amp heateor_sss_amp_wordpress" href="' . esc_url( home_url() ) . '/wp-admin/press-this.php?u=%encoded_post_url%&t=%post_title%" title="WordPress" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/wordpress.svg" width="%width%" height="%height%" alt="WordPress" class="amp-wp-enforced-sizes" style="width:%width%px;"></amp-img></a>';
335
 
336
  return $this->amp_sharing_networks;
337
 
338
  }
339
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
340
  /**
341
  * Check if webpage is being visited in a mobile device
342
  *
includes/class-sassy-social-share-shortcodes.php CHANGED
@@ -5,7 +5,7 @@
5
  *
6
  * A class definition that includes functions used for Shortcodes.
7
  *
8
- * @since 1.0.0
9
  *
10
  */
11
 
@@ -14,28 +14,28 @@
14
  *
15
  * This is used to define functions for Shortcodes.
16
  *
17
- * @since 1.0.0
18
  */
19
  class Sassy_Social_Share_Shortcodes {
20
 
21
  /**
22
  * Options saved in database.
23
  *
24
- * @since 1.0.0
25
  */
26
  private $options;
27
 
28
  /**
29
  * Member to assign object of Sassy_Social_Share_Public Class.
30
  *
31
- * @since 1.0.0
32
  */
33
  private $public_class_object;
34
 
35
  /**
36
  * Assign plugin options to private member $options.
37
  *
38
- * @since 1.0.0
39
  */
40
  public function __construct( $options, $public_class_object ) {
41
 
@@ -92,14 +92,14 @@ class Sassy_Social_Share_Shortcodes {
92
  }
93
  }
94
 
95
- $html .= '<ul class="heateor_sss_follow_ul">';
96
 
97
  // follow icons
98
  foreach ( $networks as $value ) {
99
  $networks_link = explode( '=', trim( $value ) );
100
  $html .= '<li class="heateorSssSharingRound"><i style="' . $icon_style . '" alt="' . ucfirst( trim( $networks_link[0] ) ) . '" title="' . ucfirst( trim( $networks_link[0] ) ) . '" class="heateorSssSharing heateorSss' . ucfirst( $networks_link[0] ) . 'Background"><a target="_blank" aria-label="' . ucfirst( trim( $networks_link[0] ) ) . '" href="' . urldecode( trim( $networks_link[1] ) ) . '" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSss' . ucfirst( trim( $networks_link[0] ) ) . 'Svg"></ss></a></i></li>';
101
  }
102
- $html .= '</ul>';
103
  $html .= '<div style="clear:both"></div>';
104
  $html .= '</div>';
105
 
@@ -112,7 +112,7 @@ class Sassy_Social_Share_Shortcodes {
112
  /**
113
  * Shortcode for Social Sharing
114
  *
115
- * @since 1.0.0
116
  */
117
  public function sharing_shortcode( $params ) {
118
 
@@ -195,14 +195,13 @@ class Sassy_Social_Share_Shortcodes {
195
  $inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars( __( 'Shares', 'sassy-social-share' ), ENT_QUOTES ) . '\', heateorSssShareText = \'' . htmlspecialchars( __( 'Share', 'sassy-social-share' ), ENT_QUOTES ) . '\';';
196
  $inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
197
  if ( $this->public_class_object->facebook_like_recommend_enabled() || $this->public_class_object->facebook_share_enabled() ) {
198
- $inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v11.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->public_class_object->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),'. ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) .'&&(FB.Event.subscribe("edge.create",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/'. ( $this->options['language'] ? $this->options['language'] : 'en_US' ) .'/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
199
  }
200
- $inline_script .= ';var heateorSssWhatsappShareAPI = "' . $this->public_class_object->whatsapp_share_api() . '";';
201
  wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( '../public/js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->public_class_object->version, $in_footer );
202
  wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
203
  }
204
 
205
- $html = '<div class="heateor_sss_sharing_container heateor_sss_' . ( $type == 'standard' ? 'horizontal' : 'vertical' ) . '_sharing' . ( $type == 'floating' && isset( $this->options['hide_mobile_sharing'] ) ? ' heateor_sss_hide_sharing' : '' ) . ( $type == 'floating' && isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . '" ss-offset="' . $alignment_offset . '" ' . ( $this->public_class_object->is_amp_page() ? "" : "heateor-sss-data-href='" . ( isset( $share_count_url ) && $share_count_url ? $share_count_url : $target_url ) . "'" ) . ( ( $cached_share_count === false || $this->public_class_object->is_amp_page() ) ? "" : 'heateor-sss-no-counts="1" ' );
206
  $vertical_offsets = '';
207
  if ( $type == 'floating' ) {
208
  $vertical_offsets = $align . ': ' . $$align . 'px; top: ' . $top . 'px;width:' . ( ( $this->options['vertical_sharing_size'] ? $this->options['vertical_sharing_size'] : '35' ) + 4 ) . "px;";
5
  *
6
  * A class definition that includes functions used for Shortcodes.
7
  *
8
+ * @since 1.0
9
  *
10
  */
11
 
14
  *
15
  * This is used to define functions for Shortcodes.
16
  *
17
+ * @since 1.0
18
  */
19
  class Sassy_Social_Share_Shortcodes {
20
 
21
  /**
22
  * Options saved in database.
23
  *
24
+ * @since 1.0
25
  */
26
  private $options;
27
 
28
  /**
29
  * Member to assign object of Sassy_Social_Share_Public Class.
30
  *
31
+ * @since 1.0
32
  */
33
  private $public_class_object;
34
 
35
  /**
36
  * Assign plugin options to private member $options.
37
  *
38
+ * @since 1.0
39
  */
40
  public function __construct( $options, $public_class_object ) {
41
 
92
  }
93
  }
94
 
95
+ $html .= '<div class="heateor_sss_follow_ul">';
96
 
97
  // follow icons
98
  foreach ( $networks as $value ) {
99
  $networks_link = explode( '=', trim( $value ) );
100
  $html .= '<li class="heateorSssSharingRound"><i style="' . $icon_style . '" alt="' . ucfirst( trim( $networks_link[0] ) ) . '" title="' . ucfirst( trim( $networks_link[0] ) ) . '" class="heateorSssSharing heateorSss' . ucfirst( $networks_link[0] ) . 'Background"><a target="_blank" aria-label="' . ucfirst( trim( $networks_link[0] ) ) . '" href="' . urldecode( trim( $networks_link[1] ) ) . '" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSss' . ucfirst( trim( $networks_link[0] ) ) . 'Svg"></ss></a></i></li>';
101
  }
102
+ $html .= '</div>';
103
  $html .= '<div style="clear:both"></div>';
104
  $html .= '</div>';
105
 
112
  /**
113
  * Shortcode for Social Sharing
114
  *
115
+ * @since 1.0
116
  */
117
  public function sharing_shortcode( $params ) {
118
 
195
  $inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars( __( 'Shares', 'sassy-social-share' ), ENT_QUOTES ) . '\', heateorSssShareText = \'' . htmlspecialchars( __( 'Share', 'sassy-social-share' ), ENT_QUOTES ) . '\';';
196
  $inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
197
  if ( $this->public_class_object->facebook_like_recommend_enabled() || $this->public_class_object->facebook_share_enabled() ) {
198
+ $inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v12.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->public_class_object->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),'. ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) .'&&(FB.Event.subscribe("edge.create",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/'. ( $this->options['language'] ? $this->options['language'] : 'en_US' ) .'/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
199
  }
 
200
  wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( '../public/js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->public_class_object->version, $in_footer );
201
  wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
202
  }
203
 
204
+ $html = '<div class="heateor_sss_sharing_container heateor_sss_' . ( $type == 'standard' ? 'horizontal' : 'vertical' ) . '_sharing' . ( $type == 'floating' && isset( $this->options['hide_mobile_sharing'] ) ? ' heateor_sss_hide_sharing' : '' ) . ( $type == 'floating' && isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . '" data-heateor-ss-offset="' . $alignment_offset . '" ' . ( $this->public_class_object->is_amp_page() ? "" : "data-heateor-sss-href='" . ( isset( $share_count_url ) && $share_count_url ? $share_count_url : $target_url ) . "'" ) . ( ( $cached_share_count === false || $this->public_class_object->is_amp_page() ) ? "" : 'data-heateor-sss-no-counts="1" ' );
205
  $vertical_offsets = '';
206
  if ( $type == 'floating' ) {
207
  $vertical_offsets = $align . ': ' . $$align . 'px; top: ' . $top . 'px;width:' . ( ( $this->options['vertical_sharing_size'] ? $this->options['vertical_sharing_size'] : '35' ) + 4 ) . "px;";
includes/class-sassy-social-share-widgets.php CHANGED
@@ -5,7 +5,7 @@
5
  *
6
  * Class definitions that include functions used for widgets.
7
  *
8
- * @since 1.0.0
9
  *
10
  */
11
 
@@ -14,28 +14,28 @@
14
  *
15
  * This is used to define functions for Standard Sharing Widget.
16
  *
17
- * @since 1.0.0
18
  */
19
  class Sassy_Social_Share_Standard_Widget extends WP_Widget {
20
 
21
  /**
22
  * Options saved in database.
23
  *
24
- * @since 1.0.0
25
  */
26
  private $options;
27
 
28
  /**
29
  * Member to assign object of Sassy_Social_Share_Public Class.
30
  *
31
- * @since 1.0.0
32
  */
33
  private $public_class_object;
34
 
35
  /**
36
  * Assign plugin options to private member $options and define widget title, description etc.
37
  *
38
- * @since 1.0.0
39
  */
40
  public function __construct() {
41
 
@@ -55,41 +55,42 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
55
  /**
56
  * Render widget at front-end
57
  *
58
- * @since 1.0.0
59
  */
60
- public function widget( $args, $instance ) {
61
  // return if standard sharing is disabled
62
  if ( ! isset( $this->options['hor_enable'] ) ) {
63
  return;
64
  }
65
  extract( $args );
66
- if ( isset( $instance['hide_for_logged_in'] ) && is_user_logged_in() ) return;
67
-
68
  global $post;
69
 
70
  if ( isset( $this->options['js_when_needed'] ) && ! wp_script_is( 'heateor_sss_sharing_js' ) ) {
71
  $in_footer = isset( $this->options['footer_script'] ) ? true : false;
72
  $inline_script = 'function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}};';
73
- $inline_script .= 'var heateorSssSharingAjaxUrl = \''. get_admin_url() .'admin-ajax.php\', heateorSssCloseIconPath = \''. plugins_url( '../images/close.png', __FILE__ ) .'\', heateorSssPluginIconPath = \''. plugins_url( '../images/logo.png', __FILE__ ) .'\', heateorSssHorizontalSharingCountEnable = '. ( isset( $this->options['hor_enable'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ? 1 : 0 ) .', heateorSssVerticalSharingCountEnable = '. ( isset( $this->options['vertical_enable'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ? 1 : 0 ) .', heateorSssSharingOffset = '. ( isset( $this->options['alignment'] ) && $this->options['alignment'] != '' && isset( $this->options[$this->options['alignment'].'_offset'] ) && $this->options[$this->options['alignment'].'_offset'] != '' ? $this->options[$this->options['alignment'].'_offset'] : 0 ) . '; var heateorSssMobileStickySharingEnabled = ' . ( isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 1 : 0 ) . ';';
74
- $inline_script .= 'var heateorSssCopyLinkMessage = "' . htmlspecialchars( __( 'Link copied.', 'sassy-social-share' ), ENT_QUOTES ) . '";';
75
- if ( isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_counter_position'] ) ) {
76
- $inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceHorizontalSvgWidth = true;' : '';
77
- $inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceHorizontalSvgHeight = true;' : '';
78
- }
79
- if ( isset( $this->options['vertical_counts'] ) ) {
80
- $inline_script .= isset( $this->options['vertical_counter_position'] ) && in_array( $this->options['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceVerticalSvgWidth = true;' : '';
81
- $inline_script .= ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
82
- }
83
- $inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars(__('Shares', 'sassy-social-share'), ENT_QUOTES) .'\', heateorSssShareText = \''. htmlspecialchars(__('Share', 'sassy-social-share'), ENT_QUOTES) .'\';';
84
- $inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
85
- if ( $this->public_class_object->facebook_like_recommend_enabled() || $this->public_class_object->facebook_share_enabled() ) {
86
- $inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v11.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->public_class_object->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),'. ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) .'&&(FB.Event.subscribe("edge.create",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/'. ( $this->options['language'] ? $this->options['language'] : 'en_US' ) .'/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
 
 
 
 
 
87
  }
88
- $inline_script .= ';var heateorSssWhatsappShareAPI = "' . $this->public_class_object->whatsapp_share_api() . '";';
89
- wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( '../public/js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->public_class_object->version, $in_footer );
90
- wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
91
  }
92
-
93
  if ( NULL === $post ) {
94
  $post_id = 0;
95
  } else {
@@ -105,7 +106,7 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
105
  $post_id = 0;
106
  } elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
107
  $sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
108
- } elseif ( get_permalink( $post->ID ) ) {
109
  $sharing_url = get_permalink( $post->ID );
110
  }
111
  } elseif ( $instance['target_url'] == 'homepage' ) {
@@ -120,7 +121,7 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
120
  }
121
  $share_count_url = $sharing_url;
122
  if ( isset( $instance['target_url'] ) && $instance['target_url'] == 'default' && is_singular() ) {
123
- $share_count_url = get_permalink( $post->ID );
124
  }
125
  $custom_post_url = $this->public_class_object->apply_target_share_url_filter( $sharing_url, 'horizontal', ! is_singular() ? true : false );
126
  if ( $custom_post_url != $sharing_url ) {
@@ -130,28 +131,32 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
130
  // share count transient ID
131
  $this->public_class_object->share_count_transient_id = $this->public_class_object->get_share_count_transient_id( $sharing_url );
132
  $cached_share_count = $this->public_class_object->get_cached_share_count( $this->public_class_object->share_count_transient_id );
133
-
134
- echo "<div class='heateor_sss_sharing_container heateor_sss_horizontal_sharing' " . ( $this->public_class_object->is_amp_page() ? "" : "heateor-sss-data-href='" . ( isset( $share_count_url ) && $share_count_url ? $share_count_url : $sharing_url ) . "'" ) . ( ( $cached_share_count === false || $this->public_class_object->is_amp_page() ) ? "" : 'heateor-sss-no-counts="1"' ) .">";
135
 
136
  echo $before_widget;
137
-
138
- if ( ! empty( $instance['title'] ) ) {
139
- $title = apply_filters( 'widget_title', $instance[ 'title' ] );
140
- echo $before_title . $title . $after_title;
141
- }
142
 
 
 
143
  if ( ! empty( $instance['before_widget_content'] ) ) {
144
  echo '<div>' . $instance['before_widget_content'] . '</div>';
145
  }
146
- $short_url = $this->public_class_object->get_short_url( $sharing_url, $post_id );
147
 
148
- echo $this->public_class_object->prepare_sharing_html( $short_url ? $short_url : $sharing_url, 'horizontal', isset( $instance['show_counts'] ), isset( $instance['total_shares'] ), ! is_singular() ? true : false );
 
 
 
 
 
 
 
 
 
 
149
 
150
  if ( ! empty( $instance['after_widget_content'] ) ) {
151
  echo '<div>' . $instance['after_widget_content'] . '</div>';
152
  }
153
 
154
- echo '</div>';
155
  if ( ( isset( $instance['show_counts'] ) || isset( $instance['total_shares'] ) ) && $cached_share_count === false ) {
156
  echo '<script>heateorSssLoadEvent(
157
  function() {
@@ -168,67 +173,56 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
168
  /**
169
  * Everything which should happen when user edit widget at admin panel.
170
  *
171
- * @since 1.0.0
172
  */
173
  public function update( $new_instance, $old_instance ) {
174
 
175
  $instance = $old_instance;
176
- $instance['title'] = isset( $new_instance['title'] ) ? strip_tags( $new_instance['title'] ) : '';
177
- if ( isset( $new_instance['show_counts'] ) ) {
178
- $instance['show_counts'] = $new_instance['show_counts'];
179
- } else {
180
- unset( $instance['show_counts'] );
181
- }
182
- if ( isset( $new_instance['total_shares'] ) ) {
183
- $instance['total_shares'] = $new_instance['total_shares'];
184
- } else {
185
- unset( $instance['total_shares'] );
186
- }
187
- $instance['target_url'] = isset( $new_instance['target_url'] ) ? $new_instance['target_url'] : '';
188
- $instance['target_url_custom'] = isset( $new_instance['target_url_custom'] ) ? $new_instance['target_url_custom'] : '';
189
- $instance['before_widget_content'] = isset( $new_instance['before_widget_content'] ) ? $new_instance['before_widget_content'] : '';
190
- $instance['after_widget_content'] = isset( $new_instance['after_widget_content'] ) ? $new_instance['after_widget_content'] : '';
191
- if ( isset( $new_instance['hide_for_logged_in'] ) ) {
192
- $instance['hide_for_logged_in'] = $new_instance['hide_for_logged_in'];
193
- } else {
194
- unset( $instance['hide_for_logged_in'] );
195
- }
196
 
197
  return $instance;
198
 
199
- }
200
 
201
  /**
202
- * Widget options form at admin panel
203
  *
204
- * @since 1.0.0
205
  */
206
  public function form( $instance ) {
207
 
208
  // default widget settings
209
- $defaults = array( 'title' => 'Share the joy', 'show_counts' => '', 'total_shares' => '', 'target_url' => 'default', 'target_url_custom' => '', 'before_widget_content' => '', 'after_widget_content' => '', 'hide_for_logged_in' => '' );
210
 
211
  foreach ( $instance as $key => $value ) {
212
  if ( is_string( $value ) ) {
213
- $instance[$key] = esc_attr( $value );
214
  }
215
  }
216
 
217
  $instance = wp_parse_args( ( array ) $instance, $defaults );
218
  ?>
219
  <script type="text/javascript">
220
- function heateorSssToggleHorSharingTargetUrl(val){
221
- if(val == 'custom'){
222
- jQuery('.heateorSssHorSharingTargetUrl').css('display', 'block');
223
- }else{
224
- jQuery('.heateorSssHorSharingTargetUrl').css('display', 'none');
 
225
  }
226
- }
227
  </script>
228
  <p>
229
- <p><strong><?php _e( 'Note', 'sassy-social-share' ) ?>:</strong> <?php _e( 'Make sure "Standard Sharing Interface" is enabled in "Standard Interface" section at "Sassy Social Share" page.', 'sassy-social-share' ) ?></p>
230
  <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'sassy-social-share' ); ?></label>
231
- <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo isset( $instance['title'] ) ? $instance['title'] : ''; ?>" /> <br/><br/>
232
  <label for="<?php echo $this->get_field_id( 'show_counts' ); ?>"><?php _e( 'Show individual share counts:', 'sassy-social-share' ); ?></label>
233
  <input id="<?php echo $this->get_field_id( 'show_counts' ); ?>" name="<?php echo $this->get_field_name( 'show_counts' ); ?>" type="checkbox" value="1" <?php echo isset( $instance['show_counts'] ) && $instance['show_counts'] == 1 ? 'checked' : ''; ?> /><br/><br/>
234
  <label for="<?php echo $this->get_field_id( 'total_shares' ); ?>"><?php _e( 'Show total shares:', 'sassy-social-share' ); ?></label>
@@ -241,12 +235,17 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
241
  <option value="custom" <?php echo isset( $instance['target_url'] ) && $instance['target_url'] == 'custom' ? 'selected' : '' ; ?>><?php _e( 'Custom Url', 'sassy-social-share' ) ?></option>
242
  </select>
243
  <input placeholder="Custom url" style="margin-top: 5px; <?php echo ! isset( $instance['target_url'] ) || $instance['target_url'] != 'custom' ? 'display: none' : '' ; ?>" class="widefat heateorSssHorSharingTargetUrl" id="<?php echo $this->get_field_id( 'target_url_custom' ); ?>" name="<?php echo $this->get_field_name( 'target_url_custom' ); ?>" type="text" value="<?php echo isset( $instance['target_url_custom'] ) ? $instance['target_url_custom'] : ''; ?>" />
 
 
 
 
 
244
  <label for="<?php echo $this->get_field_id( 'before_widget_content' ); ?>"><?php _e( 'Before widget content:', 'sassy-social-share' ); ?></label>
245
- <input class="widefat" id="<?php echo $this->get_field_id( 'before_widget_content' ); ?>" name="<?php echo $this->get_field_name( 'before_widget_content' ); ?>" type="text" value="<?php echo isset( $instance['before_widget_content'] ) ? $instance['before_widget_content'] : ''; ?>" />
246
  <label for="<?php echo $this->get_field_id( 'after_widget_content' ); ?>"><?php _e( 'After widget content:', 'sassy-social-share' ); ?></label>
247
- <input class="widefat" id="<?php echo $this->get_field_id( 'after_widget_content' ); ?>" name="<?php echo $this->get_field_name( 'after_widget_content' ); ?>" type="text" value="<?php echo isset( $instance['after_widget_content'] ) ? $instance['after_widget_content'] : ''; ?>" />
248
  <br /><br /><label for="<?php echo $this->get_field_id( 'hide_for_logged_in' ); ?>"><?php _e( 'Hide for logged in users:', 'sassy-social-share' ); ?></label>
249
- <input type="checkbox" id="<?php echo $this->get_field_id( 'hide_for_logged_in' ); ?>" name="<?php echo $this->get_field_name( 'hide_for_logged_in' ); ?>" type="text" value="1" <?php if ( isset( $instance['hide_for_logged_in'] ) && $instance['hide_for_logged_in'] == 1 ) echo 'checked="checked"'; ?> />
250
  </p>
251
  <?php
252
  }
@@ -258,28 +257,28 @@ class Sassy_Social_Share_Standard_Widget extends WP_Widget {
258
  *
259
  * This is used to define functions for Floating Sharing Widget.
260
  *
261
- * @since 1.0.0
262
  */
263
  class Sassy_Social_Share_Floating_Widget extends WP_Widget {
264
 
265
  /**
266
  * Options saved in database.
267
  *
268
- * @since 1.0.0
269
  */
270
  private $options;
271
 
272
  /**
273
  * Member to assign object of Sassy_Social_Share_Public Class.
274
  *
275
- * @since 1.0.0
276
  */
277
  private $public_class_object;
278
 
279
  /**
280
  * Assign plugin options to private member $options and define widget title, description etc.
281
  *
282
- * @since 1.0.0
283
  */
284
  public function __construct() {
285
 
@@ -290,7 +289,7 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
290
  $this->public_class_object = new Sassy_Social_Share_Public( $heateor_sss->options, HEATEOR_SSS_VERSION );
291
 
292
  parent::__construct(
293
- 'Heateor_SSS_Floating_Sharing', // unique id
294
  'Sassy Social Share - Floating Widget', // widget title
295
  // additional parameters
296
  array(
@@ -301,40 +300,46 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
301
  /**
302
  * Render widget at front-end
303
  *
304
- * @since 1.0.0
305
  */
306
  public function widget( $args, $instance ) {
307
 
 
 
 
 
308
  // return if vertical sharing is disabled
309
- if ( ! isset( $this->options['vertical_enable'] ) ) {
310
  return;
311
  }
312
  extract( $args );
313
- if ( isset( $instance['hide_for_logged_in'] ) && is_user_logged_in() ) return;
314
 
315
  global $post;
316
 
317
  if ( isset( $this->options['js_when_needed'] ) && ! wp_script_is( 'heateor_sss_sharing_js' ) ) {
318
  $in_footer = isset( $this->options['footer_script'] ) ? true : false;
319
  $inline_script = 'function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}};';
320
- $inline_script .= 'var heateorSssSharingAjaxUrl = \''. get_admin_url() .'admin-ajax.php\', heateorSssCloseIconPath = \''. plugins_url( '../images/close.png', __FILE__ ) .'\', heateorSssPluginIconPath = \''. plugins_url( '../images/logo.png', __FILE__ ) .'\', heateorSssHorizontalSharingCountEnable = '. ( isset( $this->options['hor_enable'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ? 1 : 0 ) .', heateorSssVerticalSharingCountEnable = '. ( isset( $this->options['vertical_enable'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ? 1 : 0 ) .', heateorSssSharingOffset = '. ( isset( $this->options['alignment'] ) && $this->options['alignment'] != '' && isset( $this->options[$this->options['alignment'].'_offset'] ) && $this->options[$this->options['alignment'].'_offset'] != '' ? $this->options[$this->options['alignment'].'_offset'] : 0 ) . '; var heateorSssMobileStickySharingEnabled = ' . ( isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 1 : 0 ) . ';';
321
- $inline_script .= 'var heateorSssCopyLinkMessage = "' . htmlspecialchars( __( 'Link copied.', 'sassy-social-share' ), ENT_QUOTES ) . '";';
322
- if ( isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_counter_position'] ) ) {
323
- $inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceHorizontalSvgWidth = true;' : '';
324
- $inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceHorizontalSvgHeight = true;' : '';
325
- }
326
- if ( isset( $this->options['vertical_counts'] ) ) {
327
- $inline_script .= isset( $this->options['vertical_counter_position'] ) && in_array( $this->options['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceVerticalSvgWidth = true;' : '';
328
- $inline_script .= ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
329
- }
330
- $inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars(__('Shares', 'sassy-social-share'), ENT_QUOTES) .'\', heateorSssShareText = \''. htmlspecialchars(__('Share', 'sassy-social-share'), ENT_QUOTES) .'\';';
331
- $inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
332
- if ( $this->public_class_object->facebook_like_recommend_enabled() || $this->public_class_object->facebook_share_enabled() ) {
333
- $inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v11.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->public_class_object->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),'. ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) .'&&(FB.Event.subscribe("edge.create",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/'. ( $this->options['language'] ? $this->options['language'] : 'en_US' ) .'/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
 
 
 
 
 
334
  }
335
- $inline_script .= ';var heateorSssWhatsappShareAPI = "' . $this->public_class_object->whatsapp_share_api() . '";';
336
- wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( '../public/js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->public_class_object->version, $in_footer );
337
- wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
338
  }
339
 
340
  $post_id = $post->ID;
@@ -370,23 +375,22 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
370
  $sharing_url = $custom_post_url;
371
  $share_count_url = $sharing_url;
372
  }
373
- $ssOffset = 0;
374
  if ( isset( $instance['alignment'] ) && isset( $instance[$instance['alignment'] . '_offset'] ) ) {
375
- $ssOffset = $instance[$instance['alignment'] . '_offset'];
376
  }
377
 
378
  // share count transient ID
379
  $this->public_class_object->share_count_transient_id = $this->public_class_object->get_share_count_transient_id( $sharing_url );
380
  $cached_share_count = $this->public_class_object->get_cached_share_count( $this->public_class_object->share_count_transient_id );
381
 
382
- echo "<div class='heateor_sss_sharing_container heateor_sss_vertical_sharing" . ( isset( $this->options['hide_mobile_sharing'] ) ? ' heateor_sss_hide_sharing' : '' ) . ( isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . "' ss-offset='" . $ssOffset . "' style='width:" . ( ( $this->options['vertical_sharing_size'] ? $this->options['vertical_sharing_size'] : 35) + 4) . "px;".( isset( $instance['alignment'] ) && $instance['alignment'] != '' && isset( $instance[$instance['alignment'].'_offset'] ) ? $instance['alignment'] . ': ' . ( $instance[$instance['alignment'].'_offset'] == '' ? 0 : $instance[$instance['alignment'] . '_offset'] ) . 'px;' : '' ) . ( isset( $instance['top_offset'] ) ? 'top: '. ( $instance['top_offset'] == '' ? 0 : $instance['top_offset'] ) . 'px;' : '' ) . ( isset( $instance['vertical_bg'] ) && $instance['vertical_bg'] != '' ? 'background-color: ' . $instance['vertical_bg'] . ';' : '-webkit-box-shadow:none;box-shadow:none;' ) . "' " . ( $this->public_class_object->is_amp_page() ? "" : "heateor-sss-data-href='" . ( isset( $share_count_url ) && $share_count_url ? $share_count_url : $sharing_url ) . "'" ) . ( ( $cached_share_count === false || $this->public_class_object->is_amp_page() ) ? "" : 'heateor-sss-no-counts="1"' ) . ">";
 
 
383
 
384
  $short_url = $this->public_class_object->get_short_url( $sharing_url, $post_id );
385
-
386
- //echo $before_widget;
387
 
388
  echo $this->public_class_object->prepare_sharing_html( $short_url ? $short_url : $sharing_url, 'vertical', isset( $instance['show_counts'] ), isset( $instance['total_shares'] ) );
389
-
390
  echo '</div>';
391
  if ( ( isset( $instance['show_counts'] ) || isset( $instance['total_shares'] ) ) && $cached_share_count === false ) {
392
  echo '<script>heateorSssLoadEvent(
@@ -398,48 +402,37 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
398
  }
399
  );</script>';
400
  }
401
- //echo $after_widget;
 
402
  }
403
 
404
  /**
405
  * Everything which should happen when user edit widget at admin panel.
406
  *
407
- * @since 1.0.0
408
  */
409
  public function update( $new_instance, $old_instance ) {
410
 
411
  $instance = $old_instance;
412
- $instance['target_url'] = isset( $new_instance['target_url'] ) ? $new_instance['target_url'] : '';
413
- if ( isset( $new_instance['show_counts'] ) ) {
414
- $instance['show_counts'] = $new_instance['show_counts'];
415
- } else {
416
- unset( $instance['show_counts'] );
417
- }
418
- if ( isset( $new_instance['total_shares'] ) ) {
419
- $instance['total_shares'] = $new_instance['total_shares'];
420
- } else {
421
- unset( $instance['total_shares'] );
422
- }
423
- $instance['target_url_custom'] = isset( $new_instance['target_url_custom'] ) ? $new_instance['target_url_custom'] : '';
424
- $instance['alignment'] = isset( $new_instance['alignment'] ) ? $new_instance['alignment'] : '';
425
- $instance['left_offset'] = isset( $new_instance['left_offset'] ) ? $new_instance['left_offset'] : '';
426
- $instance['right_offset'] = isset( $new_instance['right_offset'] ) ? $new_instance['right_offset'] : '';
427
- $instance['top_offset'] = isset( $new_instance['top_offset'] ) ? $new_instance['top_offset'] : '';
428
- $instance['vertical_bg'] = isset( $new_instance['vertical_bg'] ) ? $new_instance['vertical_bg'] : '';
429
- if ( isset( $new_instance['hide_for_logged_in'] ) ) {
430
- $instance['hide_for_logged_in'] = $new_instance['hide_for_logged_in'];
431
- } else {
432
- unset( $instance['hide_for_logged_in'] );
433
- }
434
 
435
- return $instance;
436
 
437
  }
438
 
439
  /**
440
  * Widget options form at admin panel.
441
  *
442
- * @since 1.0.0
443
  */
444
  public function form( $instance ) {
445
 
@@ -488,27 +481,27 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
488
  <input placeholder="Custom url" style="width:95%; margin-top: 5px; <?php echo ! isset( $instance['target_url'] ) || $instance['target_url'] != 'custom' ? 'display: none' : '' ; ?>" class="widefat heateorSssVerticalSharingTargetUrl" id="<?php echo $this->get_field_id( 'target_url_custom' ); ?>" name="<?php echo $this->get_field_name( 'target_url_custom' ); ?>" type="text" value="<?php echo isset( $instance['target_url_custom'] ) ? $instance['target_url_custom'] : ''; ?>" />
489
  <label for="<?php echo $this->get_field_id( 'alignment' ); ?>"><?php _e( 'Alignment', 'sassy-social-share' ); ?></label>
490
  <select onchange="heateorSssToggleSharingOffset(this.value)" style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'alignment' ); ?>" name="<?php echo $this->get_field_name( 'alignment' ); ?>">
491
- <option value="left" <?php echo ! isset( $instance['alignment'] ) || $instance['alignment'] == 'left' ? 'selected' : ''; ?>><?php _e( 'Left', 'sassy-social-share' ) ?></option>
492
- <option value="right" <?php echo isset( $instance['alignment'] ) && $instance['alignment'] == 'right' ? 'selected' : ''; ?>><?php _e( 'Right', 'sassy-social-share' ) ?></option>
493
  </select>
494
- <div class="heateorSssSharingLeftOffset" <?php echo isset( $instance['alignment'] ) && $instance['alignment'] == 'right' ? 'style="display: none"' : ''; ?>>
495
  <label for="<?php echo $this->get_field_id( 'left_offset' ); ?>"><?php _e( 'Left Offset', 'sassy-social-share' ); ?></label>
496
- <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'left_offset' ); ?>" name="<?php echo $this->get_field_name( 'left_offset' ); ?>" type="text" value="<?php echo isset( $instance['left_offset'] ) ? $instance['left_offset'] : ''; ?>" />px<br/>
497
  </div>
498
- <div class="heateorSssSharingRightOffset" <?php echo ! isset( $instance['alignment'] ) || $instance['alignment'] == 'left' ? 'style="display: none"' : ''; ?>>
499
  <label for="<?php echo $this->get_field_id( 'right_offset' ); ?>"><?php _e( 'Right Offset', 'sassy-social-share' ); ?></label>
500
- <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'right_offset' ); ?>" name="<?php echo $this->get_field_name( 'right_offset' ); ?>" type="text" value="<?php echo isset( $instance['right_offset'] ) ? $instance['right_offset'] : ''; ?>" />px<br/>
501
  </div>
502
  <label for="<?php echo $this->get_field_id( 'top_offset' ); ?>"><?php _e( 'Top Offset', 'sassy-social-share' ); ?></label>
503
- <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'top_offset' ); ?>" name="<?php echo $this->get_field_name( 'top_offset' ); ?>" type="text" value="<?php echo isset( $instance['top_offset'] ) ? $instance['top_offset'] : ''; ?>" />px<br/>
504
 
505
  <label for="<?php echo $this->get_field_id( 'vertical_bg' ); ?>"><?php _e( 'Background Color', 'sassy-social-share' ); ?></label>
506
- <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'vertical_bg' ); ?>" name="<?php echo $this->get_field_name( 'vertical_bg' ); ?>" type="text" value="<?php echo isset( $instance['vertical_bg'] ) ? $instance['vertical_bg'] : ''; ?>" />
507
 
508
  <br /><br /><label for="<?php echo $this->get_field_id( 'hide_for_logged_in' ); ?>"><?php _e( 'Hide for logged in users:', 'sassy-social-share' ); ?></label>
509
- <input type="checkbox" id="<?php echo $this->get_field_id( 'hide_for_logged_in' ); ?>" name="<?php echo $this->get_field_name( 'hide_for_logged_in' ); ?>" type="text" value="1" <?php if ( isset( $instance['hide_for_logged_in'] ) ) echo 'checked="checked"'; ?> />
510
- </p>
511
- <?php
512
  }
513
  }
514
 
@@ -517,40 +510,133 @@ class Sassy_Social_Share_Floating_Widget extends WP_Widget {
517
  *
518
  * This is used to define functions for Follow Icons Widget
519
  *
520
- * @since 3.1.7
521
  */
522
  class Sassy_Social_Share_Follow_Widget extends WP_Widget {
523
  /**
524
  * Member to assign object of Sassy_Social_Share_Public Class.
525
  *
526
- * @since 3.3
527
  */
528
  private $public_class_object;
 
 
 
 
 
 
529
 
530
  /**
531
  * Assign plugin options to private member $options and define widget title, description etc.
532
  *
533
- * @since 3.1.7
534
  */
535
  public function __construct() {
536
 
537
  global $heateor_sss;
 
538
 
539
  $this->public_class_object = new Sassy_Social_Share_Public( $heateor_sss->options, HEATEOR_SSS_VERSION );
540
  parent::__construct(
541
- 'Heateor_SSS_Follow', // unique id
542
  __( 'Sassy Social Share - Follow Icons' ), // Widget title
543
  array( 'description' => __( 'These icons link to your Social Media accounts', 'sassy-social-share' ) )
544
  );
545
 
546
  }
547
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
548
  /**
549
  * Render widget at front-end
550
  *
551
- * @since 3.1.7
552
  */
553
- public function widget( $args, $instance ) {
554
 
555
  if ( $this->public_class_object->is_amp_page() ) {
556
  return;
@@ -564,26 +650,23 @@ class Sassy_Social_Share_Follow_Widget extends WP_Widget {
564
  echo '<div>' . $instance['before_widget_content'] . '</div>';
565
  }
566
  $check_theme = '';
567
- if ( isset( $instance['custom_color'] ) ) {
568
- if ( $instance['custom_color'] == '' ) {
569
- $check_theme = '';
570
- } elseif ( $instance['custom_color'] == 'standard' ) {
571
- $check_theme = 'standard_';
572
- } elseif ( $instance['custom_color'] == 'floating' ) {
573
- $check_theme = 'floating_';
574
- }
575
  }
576
- $icon_size = isset( $instance['size'] ) ? $instance['size'] : '30';
577
- echo '<div ' . ( isset( $instance['type'] ) && $instance['type'] == 'floating' ? 'style="position:fixed;top:' . ( isset( $instance['top_offset'] ) && $instance['top_offset'] ? $instance['top_offset'] : '200' ) . 'px;' . ( isset( $instance['alignment'] ) ? $instance['alignment'] : 'left' ) . ':' . ( isset( $instance['alignment_value'] ) ? $instance['alignment_value'] : '-10' ) . 'px;width:' . $icon_size . 'px;"' : '' ) . 'class="heateor_sss_' . $check_theme . 'follow_icons_container">';
578
 
579
  if ( ! empty( $instance['title'] ) ) {
580
  $title = apply_filters( 'widget_title', $instance[ 'title' ] );
581
  echo $before_title;
582
- if ( isset( $instance['type'] ) && $instance['type'] == 'floating' ) {
583
- echo '<div class="heateor_sss_follow_icons_title" style="text-align:center;font-size:' . $icon_size*30/100 . 'px">';
584
  }
585
  echo $title;
586
- if ( isset( $instance['type'] ) && $instance['type'] == 'floating' ) {
587
  echo '</div>';
588
  }
589
  echo $after_title;
@@ -605,92 +688,144 @@ class Sassy_Social_Share_Follow_Widget extends WP_Widget {
605
  /**
606
  * Render follow icons
607
  *
608
- * @since 3.1.7
609
  */
610
  private function follow_icons( $instance ) {
611
-
612
  $html = '';
613
- $icon_size = isset( $instance['size'] ) ? $instance['size'] : '30';
614
- $icon_style = 'width:'. $icon_size .'px;height:'. $icon_size .'px;'. ( ! isset( $instance['icon_shape'] ) || $instance['icon_shape'] == 'round' ? 'border-radius:999px;' : '' );
615
- $html .= '<ul class="heateor_sss_follow_ul">';
616
- if ( isset( $instance['facebook'] ) && $instance['facebook'] ) {
617
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Facebook" title="Facebook" class="heateorSssSharing heateorSssFacebookBackground"><a target="_blank" aria-label="Facebook" href="'. $instance['facebook'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssFacebookSvg"></ss></a></i></li>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
618
  }
619
- if ( isset( $instance['twitter'] ) && $instance['twitter'] ) {
620
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Twitter" title="Twitter" class="heateorSssSharing heateorSssTwitterBackground"><a target="_blank" aria-label="Twitter" href="'. $instance['twitter'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssTwitterSvg"></ss></a></i></li>';
 
 
 
 
 
 
 
621
  }
622
 
623
- if ( isset( $instance['parler'] ) && $instance['parler'] ) {
624
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Parler" title="Parler" class="heateorSssSharing heateorSssParlerBackground"><a target="_blank" aria-label="Parler" href="'. $instance['parler'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssParlerSvg"></ss></a></i></li>';
 
 
625
  }
626
- if ( isset( $instance['gab'] ) && $instance['gab'] ) {
627
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Gab" title="Gab" class="heateorSssSharing heateorSssGabBackground"><a target="_blank" aria-label="Gab" href="'. $instance['gab'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssGabSvg"></ss></a></i></li>';
 
 
628
  }
629
  if ( isset( $instance['instagram'] ) && $instance['instagram'] ) {
630
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Instagram" title="Instagram" class="heateorSssSharing heateorSssInstagramBackground"><a target="_blank" aria-label="Instagram" href="'. $instance['instagram'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssInstagramSvg"></ss></a></i></li>';
 
 
 
631
  }
632
  if ( isset( $instance['pinterest'] ) && $instance['pinterest'] ) {
633
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Pinterest" title="Pinterest" class="heateorSssSharing heateorSssPinterestBackground"><a target="_blank" aria-label="Pinterest" href="'. $instance['pinterest'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssPinterestSvg"></ss></a></i></li>';
634
  }
635
  if ( isset( $instance['behance'] ) && $instance['behance'] ) {
636
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Behance" title="Behance" class="heateorSssSharing heateorSssBehanceBackground"><a target="_blank" aria-label="Behance" href="'. $instance['behance'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssBehanceSvg"></ss></a></i></li>';
637
  }
638
  if ( isset( $instance['flickr'] ) && $instance['flickr'] ) {
639
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Flickr" title="Flickr" class="heateorSssSharing heateorSssFlickrBackground"><a target="_blank" aria-label="Flickr" href="'. $instance['flickr'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssFlickrSvg"></ss></a></i></li>';
640
  }
641
  if ( isset( $instance['foursquare'] ) && $instance['foursquare'] ) {
642
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Foursquare" title="Foursquare" class="heateorSssSharing heateorSssFoursquareBackground"><a target="_blank" aria-label="Foursquare" href="'. $instance['foursquare'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssFoursquareSvg"></ss></a></i></li>';
643
  }
644
  if ( isset( $instance['github'] ) && $instance['github'] ) {
645
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Github" title="Github" class="heateorSssSharing heateorSssGithubBackground"><a target="_blank" aria-label="Github" href="'. $instance['github'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssGithubSvg"></ss></a></i></li>';
646
  }
647
  if ( isset( $instance['linkedin'] ) && $instance['linkedin'] ) {
648
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Linkedin" title="Linkedin" class="heateorSssSharing heateorSssLinkedinBackground"><a target="_blank" aria-label="Linkedin" href="'. $instance['linkedin'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssLinkedinSvg"></ss></a></i></li>';
649
  }
650
  if ( isset( $instance['linkedin_company'] ) && $instance['linkedin_company'] ) {
651
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Linkedin Company" title="Linkedin Company" class="heateorSssSharing heateorSssLinkedinBackground"><a target="_blank" aria-label="Linkedin Company" href="'. $instance['linkedin_company'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssLinkedinSvg"></ss></a></i></li>';
652
  }
653
  if ( isset( $instance['medium'] ) && $instance['medium'] ) {
654
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Medium" title="Medium" class="heateorSssSharing heateorSssMediumBackground"><a target="_blank" aria-label="Medium" href="'. $instance['medium'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssMediumSvg"></ss></a></i></li>';
655
  }
656
  if ( isset( $instance['mewe'] ) && $instance['mewe'] ) {
657
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="MeWe" title="MeWe" class="heateorSssSharing heateorSssMeWeBackground"><a target="_blank" aria-label="MeWe" href="'. $instance['mewe'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssMeWeSvg"></ss></a></i></li>';
658
  }
659
  if ( isset( $instance['odnoklassniki'] ) && $instance['odnoklassniki'] ) {
660
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Odnoklassniki" title="Odnoklassniki" class="heateorSssSharing heateorSssOdnoklassnikiBackground"><a target="_blank" aria-label="Odnoklassniki" href="'. $instance['odnoklassniki'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssOdnoklassnikiSvg"></ss></a></i></li>';
661
- }
662
- if ( isset( $instance['snapchat'] ) && $instance['snapchat'] ) {
663
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Snapchat" title="Snapchat" class="heateorSssSharing heateorSssSnapchatBackground"><a target="_blank" aria-label="Snapchat" href="'. $instance['snapchat'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssSnapchatSvg"></ss></a></i></li>';
664
  }
665
  if ( isset( $instance['telegram'] ) && $instance['telegram'] ) {
666
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Telegram" title="Telegram" class="heateorSssSharing heateorSssTelegramBackground"><a target="_blank" aria-label="Telegram" href="'. $instance['telegram'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssTelegramSvg"></ss></a></i></li>';
667
  }
668
  if ( isset( $instance['tumblr'] ) && $instance['tumblr'] ) {
669
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Tumblr" title="Tumblr" class="heateorSssSharing heateorSssTumblrBackground"><a target="_blank" aria-label="Tumblr" href="'. $instance['tumblr'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssTumblrSvg"></ss></a></i></li>';
670
  }
671
  if ( isset( $instance['vimeo'] ) && $instance['vimeo'] ) {
672
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Vimeo" title="Vimeo" class="heateorSssSharing heateorSssVimeoBackground"><a target="_blank" aria-label="Vimeo" href="'. $instance['vimeo'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssVimeoSvg"></ss></a></i></li>';
673
  }
674
  if ( isset( $instance['vkontakte'] ) && $instance['vkontakte'] ) {
675
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Vkontakte" title="Vkontakte" class="heateorSssSharing heateorSssVkontakteBackground"><a target="_blank" aria-label="Vkontakte" href="'. $instance['vkontakte'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssVkontakteSvg"></ss></a></i></li>';
676
  }
677
  if ( isset( $instance['whatsapp'] ) && $instance['whatsapp'] ) {
678
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Whatsapp" title="Whatsapp" class="heateorSssSharing heateorSssWhatsappBackground"><a target="_blank" aria-label="Whatsapp" href="'. $instance['whatsapp'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssWhatsappSvg"></ss></a></i></li>';
679
  }
680
  if ( isset( $instance['xing'] ) && $instance['xing'] ) {
681
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Xing" title="Xing" class="heateorSssSharing heateorSssXingBackground"><a target="_blank" aria-label="Xing" href="'. $instance['xing'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssXingSvg"></ss></a></i></li>';
 
 
682
  }
683
  if ( isset( $instance['youtube'] ) && $instance['youtube'] ) {
684
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Youtube" title="Youtube" class="heateorSssSharing heateorSssYoutubeBackground"><a target="_blank" aria-label="Youtube" href="'. $instance['youtube'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssYoutubeSvg"></ss></a></i></li>';
685
  }
686
  if ( isset( $instance['youtube_channel'] ) && $instance['youtube_channel'] ) {
687
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="Youtube Channel" title="Youtube Channel" class="heateorSssSharing heateorSssYoutubeBackground"><a target="_blank" aria-label="Youtube Channel" href="'. $instance['youtube_channel'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssYoutubeSvg"></ss></a></i></li>';
688
  }
689
  if ( isset( $instance['rss_feed'] ) && $instance['rss_feed'] ) {
690
- $html .= '<li class="heateorSssSharingRound"><i style="'. $icon_style .'" alt="RSS Feed" title="RSS Feed" class="heateorSssSharing heateorSssRSSBackground"><a target="_blank" aria-label="RSS Feed" href="'. $instance['rss_feed'] .'" rel="noopener"><ss style="display:block" class="heateorSssSharingSvg heateorSssRSSSvg"></ss></a></i></li>';
5
  *
6
  * Class definitions that include functions used for widgets.
7
  *
8
+ * @since 1.0
9
  *
10
  */
11
 
14
  *
15
  * This is used to define functions for Standard Sharing Widget.
16
  *
17
+ * @since 1.0
18
  */
19
  class Sassy_Social_Share_Standard_Widget extends WP_Widget {
20
 
21
  /**
22
  * Options saved in database.
23
  *
24
+ * @since 1.0
25
  */
26
  private $options;
27
 
28
  /**
29
  * Member to assign object of Sassy_Social_Share_Public Class.
30
  *
31
+ * @since 1.0
32
  */
33
  private $public_class_object;
34
 
35
  /**
36
  * Assign plugin options to private member $options and define widget title, description etc.
37
  *
38
+ * @since 1.0
39
  */
40
  public function __construct() {
41
 
55
  /**
56
  * Render widget at front-end
57
  *
58
+ * @since 1.0
59
  */
60
+ public function widget( $args, $instance ) {
61
  // return if standard sharing is disabled
62
  if ( ! isset( $this->options['hor_enable'] ) ) {
63
  return;
64
  }
65
  extract( $args );
66
+ if ( $instance['hide_for_logged_in'] == 1 && is_user_logged_in() ) return;
 
67
  global $post;
68
 
69
  if ( isset( $this->options['js_when_needed'] ) && ! wp_script_is( 'heateor_sss_sharing_js' ) ) {
70
  $in_footer = isset( $this->options['footer_script'] ) ? true : false;
71
  $inline_script = 'function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}};';
72
+ if ( $post ) {
73
+ $inline_script .= 'var heateorSssInstagramUsername="' . ( $this->options['instagram_username'] != '' ? $this->options['instagram_username'] : $this->options['vertical_instagram_username'] ) . '",heateorSssYoutubeUsername="' . ( $this->options['youtube_username'] != '' ? $this->options['youtube_username'] : $this->options['vertical_youtube_username'] ) . '", heateorSssSharingAjaxUrl = \'' . get_admin_url() . 'admin-ajax.php\', heateorSssCloseIconPath = \'' . plugins_url( '../images/close.png', __FILE__ ) . '\', heateorSssPluginIconPath = \'' . plugins_url( '../images/logo.png', __FILE__ ) . '\', heateorSssHorizontalSharingCountEnable = '. ( isset( $this->options['hor_enable'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ? 1 : 0 ) . ', heateorSssVerticalSharingCountEnable = ' . ( isset( $this->options['vertical_enable'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ? 1 : 0 ) . ', heateorSssSharingOffset = ' . ( isset( $this->options['alignment'] ) && $this->options['alignment'] != '' && isset( $this->options[$this->options['alignment'] . '_offset'] ) && $this->options[$this->options['alignment'] . '_offset'] != '' ? $this->options[$this->options['alignment'] . '_offset'] : 0 ) . '; var heateorSssMobileStickySharingEnabled = ' . ( isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 1 : 0 ) . ';';
74
+ $inline_script .= 'var heateorSssCopyLinkMessage = "' . htmlspecialchars( __( 'Link copied.', 'sassy-social-share' ), ENT_QUOTES ) . '";';
75
+ if ( isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_counter_position'] ) ) {
76
+ $inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceHorizontalSvgWidth = true;' : '';
77
+ $inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceHorizontalSvgHeight = true;' : '';
78
+ }
79
+ if ( isset( $this->options['vertical_counts'] ) ) {
80
+ $inline_script .= isset( $this->options['vertical_counter_position'] ) && in_array( $this->options['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceVerticalSvgWidth = true;' : '';
81
+ $inline_script .= ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
82
+ }
83
+ $inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars(__( 'Shares', 'sassy-social-share' ), ENT_QUOTES ) . '\', heateorSssShareText = \'' . htmlspecialchars( __( 'Share', 'sassy-social-share' ), ENT_QUOTES ) . '\';';
84
+ $inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
85
+ if ( $this->public_class_object->facebook_like_recommend_enabled() || $this->public_class_object->facebook_share_enabled() ) {
86
+ $inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v12.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),' . ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSssSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSssSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/' . ( $this->options['language'] ? $this->options['language'] : 'en_US' ) . '/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
87
+ }
88
+ $inline_script .= '; var heateorSsmiAjaxUrl = "' . get_admin_url() . 'admin-ajax.php";';
89
+ wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( '../public/js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->public_class_object->version, $in_footer );
90
+ wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
91
  }
 
 
 
92
  }
93
+
94
  if ( NULL === $post ) {
95
  $post_id = 0;
96
  } else {
106
  $post_id = 0;
107
  } elseif ( isset( $_SERVER['QUERY_STRING'] ) && $_SERVER['QUERY_STRING'] ) {
108
  $sharing_url = html_entity_decode( esc_url( $this->public_class_object->get_http_protocol() . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"] ) );
109
+ } elseif ( get_permalink( $post -> ID ) ) {
110
  $sharing_url = get_permalink( $post->ID );
111
  }
112
  } elseif ( $instance['target_url'] == 'homepage' ) {
121
  }
122
  $share_count_url = $sharing_url;
123
  if ( isset( $instance['target_url'] ) && $instance['target_url'] == 'default' && is_singular() ) {
124
+ $share_count_url = get_permalink( $post -> ID );
125
  }
126
  $custom_post_url = $this->public_class_object->apply_target_share_url_filter( $sharing_url, 'horizontal', ! is_singular() ? true : false );
127
  if ( $custom_post_url != $sharing_url ) {
131
  // share count transient ID
132
  $this->public_class_object->share_count_transient_id = $this->public_class_object->get_share_count_transient_id( $sharing_url );
133
  $cached_share_count = $this->public_class_object->get_cached_share_count( $this->public_class_object->share_count_transient_id );
134
+ $short_url = $this->public_class_object->get_short_url( $sharing_url, $post_id );
 
135
 
136
  echo $before_widget;
 
 
 
 
 
137
 
138
+ $sharing_divs = $this->public_class_object->prepare_sharing_html( $short_url ? $short_url : $sharing_url, 'horizontal', isset( $instance['show_counts'] ), isset( $instance['total_shares'] ), ! is_singular() ? true : false, $instance['instance_type'] );
139
+ $sharing_divs = explode( '%instance%', $sharing_divs );
140
  if ( ! empty( $instance['before_widget_content'] ) ) {
141
  echo '<div>' . $instance['before_widget_content'] . '</div>';
142
  }
 
143
 
144
+ foreach ( $sharing_divs as $sharing_div ) {
145
+ if ( $sharing_div ) {
146
+ echo "<div class='heateor_sss_sharing_container heateor_sss_horizontal_sharing' " . ( $this->public_class_object->is_amp_page() ? "" : "data-heateor-sss-href='" . ( isset( $share_count_url ) && $share_count_url ? $share_count_url : $sharing_url ) . "'" ) . ( ( $cached_share_count === false || $this->public_class_object->is_amp_page() ) ? "" : 'data-heateor-sss-no-counts="1"' ) .">";
147
+ if ( ! empty( $instance['title'] ) ) {
148
+ $title = apply_filters( 'widget_title', $instance[ 'title' ] );
149
+ echo $before_title . $title . $after_title;
150
+ }
151
+ echo $sharing_div;
152
+ echo '</div>';
153
+ }
154
+ }
155
 
156
  if ( ! empty( $instance['after_widget_content'] ) ) {
157
  echo '<div>' . $instance['after_widget_content'] . '</div>';
158
  }
159
 
 
160
  if ( ( isset( $instance['show_counts'] ) || isset( $instance['total_shares'] ) ) && $cached_share_count === false ) {
161
  echo '<script>heateorSssLoadEvent(
162
  function() {
173
  /**
174
  * Everything which should happen when user edit widget at admin panel.
175
  *
176
+ * @since 1.0
177
  */
178
  public function update( $new_instance, $old_instance ) {
179
 
180
  $instance = $old_instance;
181
+ $instance['title'] = strip_tags( $new_instance['title'] );
182
+ $instance['instance_type'] = $new_instance['instance_type'];
183
+ $instance['show_counts'] = $new_instance['show_counts'];
184
+ $instance['total_shares'] = $new_instance['total_shares'];
185
+ $instance['target_url'] = $new_instance['target_url'];
186
+ $instance['target_url_custom'] = $new_instance['target_url_custom'];
187
+ $instance['before_widget_content'] = $new_instance['before_widget_content'];
188
+ $instance['after_widget_content'] = $new_instance['after_widget_content'];
189
+ $instance['hide_for_logged_in'] = $new_instance['hide_for_logged_in'];
 
 
 
 
 
 
 
 
 
 
 
190
 
191
  return $instance;
192
 
193
+ }
194
 
195
  /**
196
+ * Widget options form at admin panel.
197
  *
198
+ * @since 1.0
199
  */
200
  public function form( $instance ) {
201
 
202
  // default widget settings
203
+ $defaults = array( 'title' => 'Share the joy', 'show_counts' => '', 'total_shares' => '', 'target_url' => 'default', 'target_url_custom' => '', 'before_widget_content' => '', 'after_widget_content' => '', 'hide_for_logged_in' => '', 'instance_type' => 'top' );
204
 
205
  foreach ( $instance as $key => $value ) {
206
  if ( is_string( $value ) ) {
207
+ $instance[ $key ] = esc_attr( $value );
208
  }
209
  }
210
 
211
  $instance = wp_parse_args( ( array ) $instance, $defaults );
212
  ?>
213
  <script type="text/javascript">
214
+ function heateorSssToggleHorSharingTargetUrl(val) {
215
+ if (val == 'custom' ) {
216
+ jQuery( '.heateorSssHorSharingTargetUrl' ).css( 'display', 'block' );
217
+ } else {
218
+ jQuery( '.heateorSssHorSharingTargetUrl' ).css( 'display', 'none' );
219
+ }
220
  }
 
221
  </script>
222
  <p>
223
+ <p><strong>Note:</strong> <?php _e( 'Make sure "Standard Sharing Interface" is enabled in "Standard Interface" section at "Sassy Social Share" page.', 'sassy-social-share' ) ?></p>
224
  <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:', 'sassy-social-share' ); ?></label>
225
+ <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo $instance['title']; ?>" /> <br/><br/>
226
  <label for="<?php echo $this->get_field_id( 'show_counts' ); ?>"><?php _e( 'Show individual share counts:', 'sassy-social-share' ); ?></label>
227
  <input id="<?php echo $this->get_field_id( 'show_counts' ); ?>" name="<?php echo $this->get_field_name( 'show_counts' ); ?>" type="checkbox" value="1" <?php echo isset( $instance['show_counts'] ) && $instance['show_counts'] == 1 ? 'checked' : ''; ?> /><br/><br/>
228
  <label for="<?php echo $this->get_field_id( 'total_shares' ); ?>"><?php _e( 'Show total shares:', 'sassy-social-share' ); ?></label>
235
  <option value="custom" <?php echo isset( $instance['target_url'] ) && $instance['target_url'] == 'custom' ? 'selected' : '' ; ?>><?php _e( 'Custom Url', 'sassy-social-share' ) ?></option>
236
  </select>
237
  <input placeholder="Custom url" style="margin-top: 5px; <?php echo ! isset( $instance['target_url'] ) || $instance['target_url'] != 'custom' ? 'display: none' : '' ; ?>" class="widefat heateorSssHorSharingTargetUrl" id="<?php echo $this->get_field_id( 'target_url_custom' ); ?>" name="<?php echo $this->get_field_name( 'target_url_custom' ); ?>" type="text" value="<?php echo isset( $instance['target_url_custom'] ) ? $instance['target_url_custom'] : ''; ?>" />
238
+ <label for="<?php echo $this->get_field_id( 'instance_type' ); ?>"><?php _e( 'Instance Type:', 'sassy-social-share' ); ?></label>
239
+ <select style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'instance_type' ); ?>" name="<?php echo $this->get_field_name( 'instance_type' ); ?>">
240
+ <option value="top" <?php echo isset( $instance['instance_type'] ) && $instance['instance_type'] == 'top' ? 'selected' : '' ; ?>><?php _e( 'Top', 'sassy-social-share' ) ?></option>
241
+ <option value="bottom" <?php echo isset( $instance['instance_type'] ) && $instance['instance_type'] == 'bottom' ? 'selected' : '' ; ?>><?php _e( 'Bottom', 'sassy-social-share' ) ?></option>
242
+ </select>
243
  <label for="<?php echo $this->get_field_id( 'before_widget_content' ); ?>"><?php _e( 'Before widget content:', 'sassy-social-share' ); ?></label>
244
+ <input class="widefat" id="<?php echo $this->get_field_id( 'before_widget_content' ); ?>" name="<?php echo $this->get_field_name( 'before_widget_content' ); ?>" type="text" value="<?php echo $instance['before_widget_content']; ?>" />
245
  <label for="<?php echo $this->get_field_id( 'after_widget_content' ); ?>"><?php _e( 'After widget content:', 'sassy-social-share' ); ?></label>
246
+ <input class="widefat" id="<?php echo $this->get_field_id( 'after_widget_content' ); ?>" name="<?php echo $this->get_field_name( 'after_widget_content' ); ?>" type="text" value="<?php echo $instance['after_widget_content']; ?>" />
247
  <br /><br /><label for="<?php echo $this->get_field_id( 'hide_for_logged_in' ); ?>"><?php _e( 'Hide for logged in users:', 'sassy-social-share' ); ?></label>
248
+ <input type="checkbox" id="<?php echo $this->get_field_id( 'hide_for_logged_in' ); ?>" name="<?php echo $this->get_field_name( 'hide_for_logged_in' ); ?>" type="text" value="1" <?php if ( isset( $instance['hide_for_logged_in'] ) && $instance['hide_for_logged_in'] == 1 ) echo 'checked="checked"'; ?> />
249
  </p>
250
  <?php
251
  }
257
  *
258
  * This is used to define functions for Floating Sharing Widget.
259
  *
260
+ * @since 1.0
261
  */
262
  class Sassy_Social_Share_Floating_Widget extends WP_Widget {
263
 
264
  /**
265
  * Options saved in database.
266
  *
267
+ * @since 1.0
268
  */
269
  private $options;
270
 
271
  /**
272
  * Member to assign object of Sassy_Social_Share_Public Class.
273
  *
274
+ * @since 1.0
275
  */
276
  private $public_class_object;
277
 
278
  /**
279
  * Assign plugin options to private member $options and define widget title, description etc.
280
  *
281
+ * @since 1.0
282
  */
283
  public function __construct() {
284
 
289
  $this->public_class_object = new Sassy_Social_Share_Public( $heateor_sss->options, HEATEOR_SSS_VERSION );
290
 
291
  parent::__construct(
292
+ 'heateor_sss_Floating_Sharing', // unique id
293
  'Sassy Social Share - Floating Widget', // widget title
294
  // additional parameters
295
  array(
300
  /**
301
  * Render widget at front-end
302
  *
303
+ * @since 1.0
304
  */
305
  public function widget( $args, $instance ) {
306
 
307
+ $amp_options = array();
308
+ if ( class_exists( 'AMP_Options_Manager' ) && null !== AMP_Options_Manager::OPTION_NAME ) {
309
+ $amp_options = get_option( AMP_Options_Manager::OPTION_NAME );
310
+ }
311
  // return if vertical sharing is disabled
312
+ if ( ! isset( $this->options['vertical_enable'] ) || ( isset( $this->options['amp_enable'] ) && $amp_options['theme_support'] == 'reader' ) ) {
313
  return;
314
  }
315
  extract( $args );
316
+ if ( $instance['hide_for_logged_in'] == 1 && is_user_logged_in() ) return;
317
 
318
  global $post;
319
 
320
  if ( isset( $this->options['js_when_needed'] ) && ! wp_script_is( 'heateor_sss_sharing_js' ) ) {
321
  $in_footer = isset( $this->options['footer_script'] ) ? true : false;
322
  $inline_script = 'function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}};';
323
+ if ( $post ) {
324
+ $inline_script .= 'var heateorSssInstagramUsername="' . ( $this->options['instagram_username'] != '' ? $this->options['instagram_username'] : $this->options['vertical_instagram_username'] ) . '",heateorSssYoutubeUsername="' . ( $this->options['youtube_username'] != '' ? $this->options['youtube_username'] : $this->options['vertical_youtube_username'] ) . '", heateorSssSharingAjaxUrl = \'' . get_admin_url() . 'admin-ajax.php\', heateorSssCloseIconPath = \'' . plugins_url( '../images/close.png', __FILE__ ) . '\', heateorSssPluginIconPath = \'' . plugins_url( '../images/logo.png', __FILE__ ) . '\', heateorSssHorizontalSharingCountEnable = '. ( isset( $this->options['hor_enable'] ) && ( isset( $this->options['horizontal_counts'] ) || isset( $this->options['horizontal_total_shares'] ) ) ? 1 : 0 ) . ', heateorSssVerticalSharingCountEnable = ' . ( isset( $this->options['vertical_enable'] ) && ( isset( $this->options['vertical_counts'] ) || isset( $this->options['vertical_total_shares'] ) ) ? 1 : 0 ) . ', heateorSssSharingOffset = ' . ( isset( $this->options['alignment'] ) && $this->options['alignment'] != '' && isset( $this->options[$this->options['alignment'] . '_offset'] ) && $this->options[$this->options['alignment'] . '_offset'] != '' ? $this->options[$this->options['alignment'] . '_offset'] : 0 ) . '; var heateorSssMobileStickySharingEnabled = ' . ( isset( $this->options['vertical_enable'] ) && isset( $this->options['bottom_mobile_sharing'] ) && $this->options['horizontal_screen_width'] != '' ? 1 : 0 ) . ';';
325
+ $inline_script .= 'var heateorSssCopyLinkMessage = "' . htmlspecialchars( __( 'Link copied.', 'sassy-social-share' ), ENT_QUOTES ) . '";';
326
+ if ( isset( $this->options['horizontal_counts'] ) && isset( $this->options['horizontal_counter_position'] ) ) {
327
+ $inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceHorizontalSvgWidth = true;' : '';
328
+ $inline_script .= in_array( $this->options['horizontal_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceHorizontalSvgHeight = true;' : '';
329
+ }
330
+ if ( isset( $this->options['vertical_counts'] ) ) {
331
+ $inline_script .= isset( $this->options['vertical_counter_position'] ) && in_array( $this->options['vertical_counter_position'], array( 'inner_left', 'inner_right' ) ) ? 'var heateorSssReduceVerticalSvgWidth = true;' : '';
332
+ $inline_script .= ! isset( $this->options['vertical_counter_position'] ) || in_array( $this->options['vertical_counter_position'], array( 'inner_top', 'inner_bottom' ) ) ? 'var heateorSssReduceVerticalSvgHeight = true;' : '';
333
+ }
334
+ $inline_script .= 'var heateorSssUrlCountFetched = [], heateorSssSharesText = \''. htmlspecialchars(__( 'Shares', 'sassy-social-share' ), ENT_QUOTES ) . '\', heateorSssShareText = \'' . htmlspecialchars( __( 'Share', 'sassy-social-share' ), ENT_QUOTES ) . '\';';
335
+ $inline_script .= 'function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}';
336
+ if ( $this->public_class_object->facebook_like_recommend_enabled() || $this->public_class_object->facebook_share_enabled() ) {
337
+ $inline_script .= 'function heateorSssInitiateFB() {FB.init({appId:"",channelUrl:"",status:!0,cookie:!0,xfbml:!0,version:"v12.0"})}window.fbAsyncInit=function() {heateorSssInitiateFB(),' . ( defined( 'HEATEOR_SOCIAL_SHARE_MYCRED_INTEGRATION_VERSION' ) && $this->facebook_like_recommend_enabled() ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"")}),FB.Event.subscribe("edge.remove",function(e){heateorSsmiMycredPoints("Facebook_like_recommend","",e?e:"","Minus point(s) for undoing Facebook like-recommend")}) ),' . ( defined( 'HEATEOR_SHARING_GOOGLE_ANALYTICS_VERSION' ) ? 1 : 0 ) . '&&(FB.Event.subscribe("edge.create",function(e) {heateorSssSsgaSocialPluginsTracking("Facebook","Like",e?e:"")}),FB.Event.subscribe("edge.remove",function(e) {heateorSssSsgaSocialPluginsTracking("Facebook","Unlike",e?e:"")}) )},function(e) {var n,i="facebook-jssdk",o=e.getElementsByTagName("script")[0];e.getElementById(i)||(n=e.createElement("script"),n.id=i,n.async=!0,n.src="//connect.facebook.net/' . ( $this->options['language'] ? $this->options['language'] : 'en_US' ) . '/sdk.js",o.parentNode.insertBefore(n,o) )}(document);';
338
+ }
339
+ $inline_script .= '; var heateorSsmiAjaxUrl = "' . get_admin_url() . 'admin-ajax.php";';
340
+ wp_enqueue_script( 'heateor_sss_sharing_js', plugins_url( '../public/js/sassy-social-share-public.js', __FILE__ ), array( 'jquery' ), $this->public_class_object->version, $in_footer );
341
+ wp_add_inline_script( 'heateor_sss_sharing_js', $inline_script, $position = 'before' );
342
  }
 
 
 
343
  }
344
 
345
  $post_id = $post->ID;
375
  $sharing_url = $custom_post_url;
376
  $share_count_url = $sharing_url;
377
  }
378
+ $ss_offset = 0;
379
  if ( isset( $instance['alignment'] ) && isset( $instance[$instance['alignment'] . '_offset'] ) ) {
380
+ $ss_offset = $instance[$instance['alignment'] . '_offset'];
381
  }
382
 
383
  // share count transient ID
384
  $this->public_class_object->share_count_transient_id = $this->public_class_object->get_share_count_transient_id( $sharing_url );
385
  $cached_share_count = $this->public_class_object->get_cached_share_count( $this->public_class_object->share_count_transient_id );
386
 
387
+ echo $before_widget;
388
+
389
+ echo "<div class='heateor_sss_sharing_container heateor_sss_vertical_sharing" . ( isset( $this->options['hide_mobile_sharing'] ) ? ' heateor_sss_hide_sharing' : '' ) . ( isset( $this->options['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_sharing' : '' ) . "' data-heateor-ss-offset='" . $ss_offset . "' style='width:" . ( ( $this->options['vertical_sharing_size'] ? $this->options['vertical_sharing_size'] : 35 ) + 4 ) . "px;" . ( isset( $instance['alignment'] ) && $instance['alignment'] != '' && isset( $instance[$instance['alignment'].'_offset'] ) ? $instance['alignment'].': '. ( $instance[$instance['alignment'].'_offset'] == '' ? 0 : $instance[$instance['alignment'].'_offset'] ) .'px;' : '' ).( isset( $instance['top_offset'] ) ? 'top: '. ( $instance['top_offset'] == '' ? 0 : $instance['top_offset'] ) .'px;' : '' ) . ( isset( $instance['vertical_bg'] ) && $instance['vertical_bg'] != '' ? 'background-color: '.$instance['vertical_bg'] . ';' : '-webkit-box-shadow:none;box-shadow:none;' ) . "' " . ( $this->public_class_object->is_amp_page() ? "" : "data-heateor-sss-href='" . ( isset( $share_count_url ) && $share_count_url ? $share_count_url : $sharing_url ) . "'" ) . ( ( $cached_share_count === false || $this->public_class_object->is_amp_page() ) ? "" : 'data-heateor-sss-no-counts="1"' ) .">";
390
 
391
  $short_url = $this->public_class_object->get_short_url( $sharing_url, $post_id );
 
 
392
 
393
  echo $this->public_class_object->prepare_sharing_html( $short_url ? $short_url : $sharing_url, 'vertical', isset( $instance['show_counts'] ), isset( $instance['total_shares'] ) );
 
394
  echo '</div>';
395
  if ( ( isset( $instance['show_counts'] ) || isset( $instance['total_shares'] ) ) && $cached_share_count === false ) {
396
  echo '<script>heateorSssLoadEvent(
402
  }
403
  );</script>';
404
  }
405
+
406
+ echo $after_widget;
407
  }
408
 
409
  /**
410
  * Everything which should happen when user edit widget at admin panel.
411
  *
412
+ * @since 1.0
413
  */
414
  public function update( $new_instance, $old_instance ) {
415
 
416
  $instance = $old_instance;
417
+ $instance['target_url'] = $new_instance['target_url'];
418
+ $instance['show_counts'] = $new_instance['show_counts'];
419
+ $instance['total_shares'] = $new_instance['total_shares'];
420
+ $instance['target_url_custom'] = $new_instance['target_url_custom'];
421
+ $instance['alignment'] = $new_instance['alignment'];
422
+ $instance['left_offset'] = $new_instance['left_offset'];
423
+ $instance['right_offset'] = $new_instance['right_offset'];
424
+ $instance['top_offset'] = $new_instance['top_offset'];
425
+ $instance['vertical_bg'] = $new_instance['vertical_bg'];
426
+ $instance['hide_for_logged_in'] = $new_instance['hide_for_logged_in'];
 
 
 
 
 
 
 
 
 
 
 
 
427
 
428
+ return $instance;
429
 
430
  }
431
 
432
  /**
433
  * Widget options form at admin panel.
434
  *
435
+ * @since 1.0
436
  */
437
  public function form( $instance ) {
438
 
481
  <input placeholder="Custom url" style="width:95%; margin-top: 5px; <?php echo ! isset( $instance['target_url'] ) || $instance['target_url'] != 'custom' ? 'display: none' : '' ; ?>" class="widefat heateorSssVerticalSharingTargetUrl" id="<?php echo $this->get_field_id( 'target_url_custom' ); ?>" name="<?php echo $this->get_field_name( 'target_url_custom' ); ?>" type="text" value="<?php echo isset( $instance['target_url_custom'] ) ? $instance['target_url_custom'] : ''; ?>" />
482
  <label for="<?php echo $this->get_field_id( 'alignment' ); ?>"><?php _e( 'Alignment', 'sassy-social-share' ); ?></label>
483
  <select onchange="heateorSssToggleSharingOffset(this.value)" style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'alignment' ); ?>" name="<?php echo $this->get_field_name( 'alignment' ); ?>">
484
+ <option value="left" <?php echo $instance['alignment'] == 'left' ? 'selected' : ''; ?>><?php _e( 'Left', 'sassy-social-share' ) ?></option>
485
+ <option value="right" <?php echo $instance['alignment'] == 'right' ? 'selected' : ''; ?>><?php _e( 'Right', 'sassy-social-share' ) ?></option>
486
  </select>
487
+ <div class="heateorSssSharingLeftOffset" <?php echo $instance['alignment'] == 'right' ? 'style="display: none"' : ''; ?>>
488
  <label for="<?php echo $this->get_field_id( 'left_offset' ); ?>"><?php _e( 'Left Offset', 'sassy-social-share' ); ?></label>
489
+ <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'left_offset' ); ?>" name="<?php echo $this->get_field_name( 'left_offset' ); ?>" type="text" value="<?php echo $instance['left_offset']; ?>" />px<br/>
490
  </div>
491
+ <div class="heateorSssSharingRightOffset" <?php echo $instance['alignment'] == 'left' ? 'style="display: none"' : ''; ?>>
492
  <label for="<?php echo $this->get_field_id( 'right_offset' ); ?>"><?php _e( 'Right Offset', 'sassy-social-share' ); ?></label>
493
+ <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'right_offset' ); ?>" name="<?php echo $this->get_field_name( 'right_offset' ); ?>" type="text" value="<?php echo $instance['right_offset']; ?>" />px<br/>
494
  </div>
495
  <label for="<?php echo $this->get_field_id( 'top_offset' ); ?>"><?php _e( 'Top Offset', 'sassy-social-share' ); ?></label>
496
+ <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'top_offset' ); ?>" name="<?php echo $this->get_field_name( 'top_offset' ); ?>" type="text" value="<?php echo $instance['top_offset']; ?>" />px<br/>
497
 
498
  <label for="<?php echo $this->get_field_id( 'vertical_bg' ); ?>"><?php _e( 'Background Color', 'sassy-social-share' ); ?></label>
499
+ <input style="width: 95%" class="widefat" id="<?php echo $this->get_field_id( 'vertical_bg' ); ?>" name="<?php echo $this->get_field_name( 'vertical_bg' ); ?>" type="text" value="<?php echo $instance['vertical_bg']; ?>" />
500
 
501
  <br /><br /><label for="<?php echo $this->get_field_id( 'hide_for_logged_in' ); ?>"><?php _e( 'Hide for logged in users:', 'sassy-social-share' ); ?></label>
502
+ <input type="checkbox" id="<?php echo $this->get_field_id( 'hide_for_logged_in' ); ?>" name="<?php echo $this->get_field_name( 'hide_for_logged_in' ); ?>" type="text" value="1" <?php if ( isset( $instance['hide_for_logged_in'] ) && $instance['hide_for_logged_in'] == 1 ) echo 'checked="checked"'; ?> />
503
+ </p>
504
+ <?php
505
  }
506
  }
507
 
510
  *
511
  * This is used to define functions for Follow Icons Widget
512
  *
513
+ * @since 1.0
514
  */
515
  class Sassy_Social_Share_Follow_Widget extends WP_Widget {
516
  /**
517
  * Member to assign object of Sassy_Social_Share_Public Class.
518
  *
519
+ * @since 1.0
520
  */
521
  private $public_class_object;
522
+ /**
523
+ * Member to assign object of Sassy_Social_Share_Public Class.
524
+ *
525
+ * @since 1.0
526
+ */
527
+ private $options;
528
 
529
  /**
530
  * Assign plugin options to private member $options and define widget title, description etc.
531
  *
532
+ * @since 1.0
533
  */
534
  public function __construct() {
535
 
536
  global $heateor_sss;
537
+ $this->options = $heateor_sss->options;
538
 
539
  $this->public_class_object = new Sassy_Social_Share_Public( $heateor_sss->options, HEATEOR_SSS_VERSION );
540
  parent::__construct(
541
+ 'heateor_sss_Follow', // unique id
542
  __( 'Sassy Social Share - Follow Icons' ), // Widget title
543
  array( 'description' => __( 'These icons link to your Social Media accounts', 'sassy-social-share' ) )
544
  );
545
 
546
  }
547
 
548
+ private function folow_icons_amp( $instance){
549
+ $html = '';
550
+ $icon_style = 'width:'. $instance['size'] .'px;height:'. $instance['size'] .'px;'. ( $instance['icon_shape'] == 'round' ? 'border-radius:999px;' : '' );
551
+ $html .= '<div class="heateor_sss_follow_ul">';
552
+ if ( isset( $instance['facebook'] ) && $instance['facebook'] ) {
553
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_facebook" href="'.$instance['facebook'].'" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/facebook.svg" width="%width%" height="%height%" alt="Facebook" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
554
+ }
555
+ if ( isset( $instance['twitter'] ) && $instance['twitter'] ) {
556
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_twitter" href="'.$instance['twitter'].'" title="Twitter" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/twitter.svg" width="%width%" height="%height%" alt="Twitter" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
557
+ }
558
+ if ( isset( $instance['instagram'] ) && $instance['instagram'] ) {
559
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_instagram" href="'.$instance['instagram'].'" target="_blank"><amp-img src="%img_url%/instagram.svg" width="%width%" height="%height%" alt="Instagram" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
560
+ }
561
+ if ( isset( $instance['pinterest'] ) && $instance['pinterest'] ) {
562
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_pinterest" href="'.$instance['pinterest'].'" title="Pinterest" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/pinterest.svg" width="%width%" height="%height%" alt="Pinterest" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
563
+ }
564
+
565
+ if ( isset( $instance['flickr'] ) && $instance['flickr'] ) {
566
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_flickr" href="'.$instance['flickr'].'" title="Flickr" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/flickr.svg" width="%width%" height="%height%" alt="Flickr" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
567
+ }
568
+ if ( isset( $instance['foursquare'] ) && $instance['foursquare'] ) {
569
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_foursquare" href="'.$instance['foursquare'].'" title="Foursquare" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/flickr.svg" width="%width%" height="%height%" alt="Foursquare" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
570
+ }
571
+ if ( isset( $instance['github'] ) && $instance['github'] ) {
572
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_github" href="'.$instance['github'].'" title="Github" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/github.svg" width="%width%" height="%height%" alt="Github" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
573
+ }
574
+ if ( isset( $instance['linkedin'] ) && $instance['linkedin'] ) {
575
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_linkedin" href="'.$instance['linkedin'].'" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/linkedin.svg" width="%width%" height="%height%" alt="Linkedin" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
576
+ }
577
+ if ( isset( $instance['linkedin_company'] ) && $instance['linkedin_company'] ) {
578
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_linkedin" href="'.$instance['linkedin_company'].'" title="Linkedin Company" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/linkedin.svg" width="%width%" height="%height%" alt="Linkedin" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
579
+ }
580
+ if ( isset( $instance['medium'] ) && $instance['medium'] ) {
581
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_medium" href="'.$instance['medium'].'" title="Medium" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/medium.svg" width="%width%" height="%height%" alt="Medium" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
582
+ }
583
+ if ( isset( $instance['behance'] ) && $instance['behance'] ) {
584
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_behance" href="'.$instance['behance'].'" title="Behance" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/behance.svg" width="%width%" height="%height%" alt="Behance" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
585
+ }
586
+ if ( isset( $instance['mewe'] ) && $instance['mewe'] ) {
587
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_mewe" href="'.$instance['mewe'].'" title="Mewe" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/mewe.svg" width="%width%" height="%height%" alt="Mewe" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
588
+ }
589
+ if ( isset( $instance['odnoklassniki'] ) && $instance['odnoklassniki'] ) {
590
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_behance" href="'.$instance['odnoklassniki'].'" title="Odnoklassniki" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/odnoklassniki.svg" width="%width%" height="%height%" alt="Odnoklassniki" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
591
+ }
592
+ if ( isset( $instance['telegram'] ) && $instance['telegram'] ) {
593
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_telegram" href="'.$instance['telegram'].'" title="Telegram" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/telegram.svg" width="%width%" height="%height%" alt="Telegram" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
594
+ }
595
+ if ( isset( $instance['tumblr'] ) && $instance['tumblr'] ) {
596
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_tumblr" href="'.$instance['tumblr'].'" title="Tumblr" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/behance.svg" width="%width%" height="%height%" alt="Tumblr" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
597
+ }
598
+ if ( isset( $instance['vimeo'] ) && $instance['vimeo'] ) {
599
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_vimeo" href="'.$instance['vimeo'].'" title="Vimeo" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/vimeo.svg" width="%width%" height="%height%" alt="Vimeo" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
600
+ }
601
+ if ( isset( $instance['vkontakte'] ) && $instance['vkontakte'] ) {
602
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_vkontakte" href="'.$instance['vkontakte'].'" title="Vkontakte" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/vkontakte.svg" width="%width%" height="%height%" alt="Vkontakte" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
603
+ }
604
+ if ( isset( $instance['whatsapp'] ) && $instance['whatsapp'] ) {
605
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_whatsapp" href="'.$instance['whatsapp'].'" title="Whatsapp" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/whatsapp.svg" width="%width%" height="%height%" alt="Whatsapp" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
606
+ }
607
+ if ( isset( $instance['xing'] ) && $instance['xing'] ) {
608
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_xing" href="'.$instance['xing'].'" title="Behance" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/xing.svg" width="%width%" height="%height%" alt="Xing" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
609
+ }
610
+ if ( isset( $instance['youtube'] ) && $instance['youtube'] ) {
611
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_behance" href="'.$instance['youtube'].'" title="youtube" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/youtube.svg" width="%width%" height="%height%" alt="Youtube" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
612
+ }
613
+ if ( isset( $instance['youtube_channel'] ) && $instance['youtube_channel'] ) {
614
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_youtube" href="'.$instance['youtube_channel'].'" title="Youtube Channel" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/youtube.svg" width="%width%" height="%height%" alt="Youtube Channel" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
615
+ }
616
+ if ( isset( $instance['rss_feed'] ) && $instance['rss_feed'] ) {
617
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_rss_feed_url" href="'.$instance['rss_feed_url'].'" title="RSS Feed Url" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/rss_feed.svg" width="%width%" height="%height%" alt="RSS Feed" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
618
+ }
619
+
620
+ if ( isset( $instance['parler'] ) && $instance['parler'] ) {
621
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_parler_url" href="'.$instance['parler_url'].'" title="Parler" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/parler.svg" width="%width%" height="%height%" alt="Parler" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
622
+ }
623
+
624
+ if ( isset( $instance['gab'] ) && $instance['gab'] ) {
625
+ $html .= '<a class="heateor_sss_amp heateor_sss_amp_gab_url" href="'.$instance['gab_url'].'" title="Gab" rel="nofollow noopener" target="_blank"><amp-img src="%img_url%/gab.svg" width="%width%" height="%height%" alt="Gab" class="amp-wp-enforced-sizes" style="width: %width%px;"></amp-img></a>';
626
+ }
627
+
628
+ $html = apply_filters( 'heateor_sss_follow_icons', $html, $instance, $icon_style );
629
+ $html .= '</div>';
630
+
631
+ return $html;
632
+ }
633
+
634
  /**
635
  * Render widget at front-end
636
  *
637
+ * @since 1.0
638
  */
639
+ public function widget( $args, $instance ) {
640
 
641
  if ( $this->public_class_object->is_amp_page() ) {
642
  return;
650
  echo '<div>' . $instance['before_widget_content'] . '</div>';
651
  }
652
  $check_theme = '';
653
+ if ( $instance['custom_color'] == '' ) {
654
+ $check_theme = '';
655
+ } elseif ( $instance['custom_color'] == 'standard' ) {
656
+ $check_theme = 'standard_';
657
+ } elseif ( $instance['custom_color'] == 'floating' ) {
658
+ $check_theme = 'floating_';
 
 
659
  }
660
+ echo '<div ' . ( $instance['type'] == 'floating' ? 'style="position:fixed;top:' . $instance['top_offset'] . 'px;' . $instance['alignment'] . ':' . $instance['alignment_value'] . 'px;width:' . $instance['size'] . 'px;"' : '' ) . 'class="heateor_sss_' . $check_theme . 'follow_icons_container' . ( isset( $instance['bottom_mobile_sharing'] ) ? ' heateor_sss_bottom_follow' : '' ) . '">';
 
661
 
662
  if ( ! empty( $instance['title'] ) ) {
663
  $title = apply_filters( 'widget_title', $instance[ 'title' ] );
664
  echo $before_title;
665
+ if ( $instance['type'] == 'floating' ) {
666
+ echo '<div class="heateor_sss_follow_icons_title" style="text-align:center;font-size:' . $instance['size']*30/100 . 'px">';
667
  }
668
  echo $title;
669
+ if ( $instance['type'] == 'floating' ) {
670
  echo '</div>';
671
  }
672
  echo $after_title;
688
  /**
689
  * Render follow icons
690
  *
691
+ * @since 1.0
692
  */
693
  private function follow_icons( $instance ) {
694
+ $logo_color = '#fff';
695
  $html = '';
696
+ if ( $instance['custom_color'] == 'standard' ) {
697
+ if ( $this->options['horizontal_font_color_default'] ) {
698
+ $logo_color = $this->options['horizontal_font_color_default'];
699
+ }
700
+ if ( $this->options['horizontal_font_color_hover'] ) {
701
+ $html .= "<style>.widget_heateor_sss_follow span.heateor_sss_svg svg:hover path:not(.heateor_sss_not_fill),.widget_heateor_sss_follow span.heateor_sss_svg svg:hover ellipse, .widget_heateor_sss_follow span.heateor_sss_svg svg:hover circle,.widget_heateor_sss_follow span.heateor_sss_svg svg:hover polygon{
702
+ fill: ". $this->options['horizontal_font_color_hover'] .";
703
+ }
704
+ .widget_heateor_sss_follow span.heateor_sss_svg svg:hover span.heateor_sss_s_digg path{
705
+ stroke: ". $this->options['horizontal_font_color_hover'] .";
706
+ }
707
+ .widget_heateor_sss_follow span.heateor_sss_svg svg:hover span.heateor_sss_s_whatsapp path.heateor_sss_not_fill{
708
+ fill: ". $this->options['horizontal_font_color_hover'] ."!important;
709
+ }
710
+ .widget_heateor_sss_follow span.heateor_sss_svg svg:hover path{
711
+
712
+ }</style>";
713
+ }
714
+ if ( $this->options['horizontal_bg_color_default'] ){
715
+ $background_color = $this->options['horizontal_bg_color_default'];
716
+ $html .= '<style>.widget_heateor_sss_follow .heateor_sss_svg{background-color:' . $background_color . '!important;}</style>';
717
+ }
718
+ } elseif ( $instance['custom_color'] == 'floating' ) {
719
+ if ( $this->options['vertical_font_color_default'] ) {
720
+ $logo_color = $this->options['vertical_font_color_default'];
721
+ }
722
+ if ( $this->options['vertical_font_color_hover'] ) {
723
+ $html .= "<style>.widget_heateor_sss_follow span.heateor_sss_svg svg:hover path:not(.heateor_sss_not_fill),.widget_heateor_sss_follow span.heateor_sss_svg svg:hover ellipse, .widget_heateor_sss_follow span.heateor_sss_svg svg:hover circle,.widget_heateor_sss_follow span.heateor_sss_svg svg:hover polygon{
724
+ fill:". $this->options['vertical_font_color_hover'] .";
725
+ }
726
+ .widget_heateor_sss_follow span.heateor_sss_svg svg:hover span.heateor_sss_s_digg path{
727
+ stroke:" . $this->options['vertical_font_color_hover'] . ";
728
+ }
729
+ .widget_heateor_sss_follow span.heateor_sss_svg svg:hover span.heateor_sss_s_whatsapp path.heateor_sss_not_fill{
730
+ fill:" . $this->options['vertical_font_color_hover'] . "!important;
731
+ }</style>";
732
+ }
733
+ if ( $this->options['vertical_bg_color_default'] ) {
734
+ $background_color = $this->options['vertical_bg_color_default'];
735
+ $html .= '<style>.widget_heateor_sss_follow .heateor_sss_svg{background-color:' . $background_color . '!important;}</style>';
736
+ }
737
  }
738
+ $bottom_sharing_postion_inverse = $instance['bottom_sharing_alignment'] == 'left' ? 'right' : 'left';
739
+ $bottom_sharing_responsive_css = '';
740
+ if ( isset( $instance['type'] ) && $instance['type'] == 'floating' ) {
741
+ $vertical_sharing_icon_height = $this->options['vertical_sharing_shape'] == 'rectangle' ? $this->options['vertical_sharing_height'] : $this->options['vertical_sharing_size'];
742
+ $num_sharing_icons = isset( $this->options['vertical_re_providers'] ) ? count( $this->options['vertical_re_providers'] ) : 0;
743
+ $bottom_sharing_responsive_css = 'div.heateor_sss_bottom_follow{width:100%!important;left:0!important;}div.heateor_sss_bottom_follow a{width:' . ( 100/( $num_sharing_icons ) ) . '%!important;}div.heateor_sss_bottom_follow .heateor_sss_svg{width:100%!important;}';
744
+ }
745
+ if ( isset( $instance['type'] ) && $instance['type'] == 'floating' && isset( $instance['bottom_mobile_sharing'] ) && $instance['horizontal_screen_width'] != '' ) {
746
+ $html .= '<style>div.heateor_sss_mobile_footer{display:none;}@media screen and (max-width:' . $instance['horizontal_screen_width'] . 'px){' . $bottom_sharing_responsive_css . 'div.heateor_sss_mobile_footer{display:block;height:' . ( $this->options['vertical_sharing_shape'] == 'rectangle' ? $this->options['vertical_sharing_height'] : $this->options['vertical_sharing_size'] ) . 'px;}.heateor_sss_bottom_follow{padding:0!important;' . ( $instance['bottom_sharing_position_radio'] == 'nonresponsive' && $this->options['bottom_sharing_position'] != '' ? $instance['bottom_sharing_alignment'] . ':' . $instance['bottom_sharing_position'] . 'px!important;' . $bottom_sharing_postion_inverse . ':auto!important;' : '' ) . 'display:block!important;width:auto!important;bottom:' . ( isset( $this->options['vertical_total_shares'] ) ? '-10' : '-2' ) . 'px!important;top:auto!important;}}</style>';
747
  }
748
 
749
+ $icon_style = 'width:' . $instance['size'] . 'px;height:' . $instance['size'] . 'px;' . ( $instance['icon_shape'] == 'round' ? 'border-radius:999px;' : '' );
750
+ $html .= '<div class="heateor_sss_follow_ul">';
751
+ if ( isset( $instance['facebook'] ) && $instance['facebook'] ) {
752
+ $html .= '<a class="heateor_sss_facebook" href="'. $instance['facebook'] .'" title="Facebook" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#3c589a;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-5 -5 42 42"><path d="M17.78 27.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99 2.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123 0-5.26 1.905-5.26 5.405v3.016h-3.53v4.09h3.53V27.5h4.223z" fill="'. $logo_color .'"></path></svg></span></a>';
753
  }
754
+ if ( isset( $instance['twitter'] ) && $instance['twitter'] ) {
755
+ $html .= '<a class="heateor_sss_twitter" href="'. $instance['twitter'] .'" title="Twitter" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#55acee;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-4 -4 39 39">
756
+ <path d="M28 8.557a9.913 9.913 0 0 1-2.828.775 4.93 4.93 0 0 0 2.166-2.725 9.738 9.738 0 0 1-3.13 1.194 4.92 4.92 0 0 0-3.593-1.55 4.924 4.924 0 0 0-4.794 6.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942 4.942 0 0 0-.665 2.477c0 1.71.87 3.214 2.19 4.1a4.968 4.968 0 0 1-2.23-.616v.06c0 2.39 1.7 4.38 3.952 4.83-.414.115-.85.174-1.297.174-.318 0-.626-.03-.928-.086a4.935 4.935 0 0 0 4.6 3.42 9.893 9.893 0 0 1-6.114 2.107c-.398 0-.79-.023-1.175-.068a13.953 13.953 0 0 0 7.55 2.213c9.056 0 14.01-7.507 14.01-14.013 0-.213-.005-.426-.015-.637.96-.695 1.795-1.56 2.455-2.55z" fill="'. $logo_color .'"></path>
757
+ </svg></span></a>';
758
  }
759
  if ( isset( $instance['instagram'] ) && $instance['instagram'] ) {
760
+ $html .= '<a class="heateor_sss_instagram" href="'. $instance['instagram'] .'" title="Instagram" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#53beee;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg version="1.1" viewBox="-10 -10 148 148" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g><g><path d="M86,112H42c-14.336,0-26-11.663-26-26V42c0-14.337,11.664-26,26-26h44c14.337,0,26,11.663,26,26v44 C112,100.337,100.337,112,86,112z M42,24c-9.925,0-18,8.074-18,18v44c0,9.925,8.075,18,18,18h44c9.926,0,18-8.075,18-18V42 c0-9.926-8.074-18-18-18H42z" fill="'. $logo_color .'"></path></g><g><path d="M64,88c-13.234,0-24-10.767-24-24c0-13.234,10.766-24,24-24s24,10.766,24,24C88,77.233,77.234,88,64,88z M64,48c-8.822,0-16,7.178-16,16s7.178,16,16,16c8.822,0,16-7.178,16-16S72.822,48,64,48z" fill="'. $logo_color .'"></path></g><g><circle cx="89.5" cy="38.5" fill="'. $logo_color .'" r="5.5"></circle></g></g></svg></span></a>';
761
+ }
762
+ if ( isset( $instance['parler'] ) && $instance['parler'] ) {
763
+ $html .= '<a class="heateor_sss_parler" href="'. $instance['parler'] .'" title="Parler" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#3c589a;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg xmlns="http://www.w3.org/2000/svg" height="100%" width="100%" viewBox="-24 -30 140 160"><g fill="'. $logo_color .'"><path d="M58.34 83.31h-25v-8.49c0-4.5 3.64-8.14 8.14-8.14h16.87c13.8 0 25.02-11.19 25.02-24.94 0-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0 7.45 7.45 0 16.63 0h36.41l5.44.17C81.39.24 100 18.86 100 41.74c0 22.92-18.69 41.57-41.66 41.57z"></path><path d="M16.65 100C7.46 100 .02 92.55.02 83.37V49.49c0-8.92 7.23-16.16 16.16-16.16h42.19a8.32 8.32 0 010 16.64h-33.5c-4.53 0-8.21 3.67-8.21 8.21V100z"></path></g></svg></span></a>';
764
  }
765
  if ( isset( $instance['pinterest'] ) && $instance['pinterest'] ) {
766
+ $html .= '<a class="heateor_sss_pinterest" href="'. $instance['pinterest'] .'" title="Pinterest" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#cc2329;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-2 -2 35 35"><path fill="'. $logo_color .'" d="M16.539 4.5c-6.277 0-9.442 4.5-9.442 8.253 0 2.272.86 4.293 2.705 5.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591 0-3.338 2.498-6.327 6.505-6.327 3.548 0 5.497 2.168 5.497 5.062 0 3.81-1.686 7.025-4.188 7.025-1.382 0-2.416-1.142-2.085-2.545.397-1.674 1.166-3.48 1.166-4.689 0-1.081-.581-1.983-1.782-1.983-1.413 0-2.548 1.462-2.548 3.419 0 1.247.421 2.091.421 2.091l-1.699 7.199c-.505 2.137-.076 4.755-.039 5.019.021.158.223.196.314.077.13-.17 1.813-2.247 2.384-4.324.162-.587.929-3.631.929-3.631.46.876 1.801 1.646 3.227 1.646 4.247 0 7.128-3.871 7.128-9.053.003-3.918-3.317-7.568-8.361-7.568z"/></svg></span></a>';
767
  }
768
  if ( isset( $instance['behance'] ) && $instance['behance'] ) {
769
+ $html .= '<a class="heateor_sss_behance" href="'. $instance['behance'] .'" title="Behance" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#053eff;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-2 -2 36 36"><path d="M3.862 8.136h5.66c1.377 0 3.19 0 4.13.566a3.705 3.705 0 0 1 1.837 3.26c0 1.66-.88 2.905-2.32 3.494v.042c1.924.397 2.97 1.838 2.97 3.76 0 2.297-1.636 4.483-4.743 4.483H3.86V8.14zm2.078 6.71h4.152c2.36 0 3.322-.856 3.322-2.493 0-2.16-1.53-2.468-3.322-2.468H5.94v4.96zm0 7.144h5.2c1.792 0 2.93-1.09 2.93-2.797 0-2.03-1.64-2.598-3.388-2.598H5.94v5.395zm22.017-1.833C27.453 22.65 25.663 24 23.127 24c-3.607 0-5.31-2.49-5.422-5.944 0-3.386 2.23-5.878 5.31-5.878 4 0 5.225 3.74 5.116 6.47h-8.455c-.067 1.966 1.05 3.716 3.52 3.716 1.53 0 2.6-.742 2.928-2.206h1.838zm-1.793-3.15c-.088-1.77-1.42-3.19-3.256-3.19-1.946 0-3.106 1.466-3.236 3.19h6.492zM20.614 8h4.935v1.68h-4.94z" fill="'. $logo_color .'"></path></svg></span></a>';
770
  }
771
  if ( isset( $instance['flickr'] ) && $instance['flickr'] ) {
772
+ $html .= '<a class="heateor_sss_flickr" href="'. $instance['flickr'] .'" title="Flickr" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#ff0084;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-2 -2 36 36"><g fill="'. $logo_color .'"><circle cx="23" cy="16" r="6"></circle><circle cx="9" cy="16" r="6"></circle></g></svg></span></a>';
773
  }
774
  if ( isset( $instance['foursquare'] ) && $instance['foursquare'] ) {
775
+ $html .= '<a class="heateor_sss_foursquare" href="'. $instance['foursquare'] .'" title="Foursquare" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#f94877;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 -4 40 40"><path fill="'. $logo_color .'" d="M21.516 3H7.586C5.66 3 5 4.358 5 5.383v21.995c0 1.097.65 1.407.958 1.53.31.126 1.105.206 1.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79 0 1.81-1.45 1.997-2.206.157-.63 1.946-9.57 2.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2 9.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108 1.032v.665c0 .61.5 1.24 1.108 1.24h4.607c.43 0 .794.276.7.737-.093.46-.573 2.82-.627 3.07-.052.254-.282.764-.716.764h-3.62c-.682 0-1.36-.008-1.816.56-.458.573-4.534 5.293-4.534 5.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834 1L20.2 9.68z"></path></svg></span></a>';
776
  }
777
  if ( isset( $instance['github'] ) && $instance['github'] ) {
778
+ $html .= '<a class="heateor_sss_github" href="'. $instance['github'] .'" title="Github" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#2a2a2a;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-2 -2 36 36"><path fill="'. $logo_color .'" d="M16 3.32c-7.182 0-13 5.82-13 13 0 5.754 3.72 10.612 8.89 12.335.65.114.893-.276.893-.617 0-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86 1.024-.017 1.755.942 2 1.332 1.17 1.966 3.038 1.414 3.785 1.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418 0-1.414.504-2.584 1.333-3.494-.13-.325-.59-1.657.13-3.445 0 0 1.085-.34 3.57 1.337 1.04-.293 2.146-.44 3.25-.44s2.21.147 3.25.44c2.49-1.69 3.58-1.337 3.58-1.337.714 1.79.26 3.12.13 3.446.828.91 1.332 2.064 1.332 3.494 0 4.99-3.04 6.094-5.93 6.42.47.405.876 1.185.876 2.404 0 1.74-.016 3.136-.016 3.575 0 .34.244.743.894.613C25.28 26.933 29 22.053 29 16.32c0-7.182-5.817-13-13-13z"></path></svg></span></a>';
779
  }
780
  if ( isset( $instance['linkedin'] ) && $instance['linkedin'] ) {
781
+ $html .= '<a class="heateor_sss_linkedin" href="'. $instance['linkedin'] .'" title="Linkedin" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#0077b5;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path d="M6.227 12.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43 2.43 0 0 1 0 4.86c-1.344 0-2.428-1.09-2.428-2.43s1.084-2.43 2.428-2.43m4.72 6.7h4.02v1.84h.058c.56-1.058 1.927-2.176 3.965-2.176 4.238 0 5.02 2.792 5.02 6.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18 0-2.514 1.7-2.514 3.46v6.668h-4.187V12.61z" fill="'. $logo_color .'"></path></svg></span></a>';
782
  }
783
  if ( isset( $instance['linkedin_company'] ) && $instance['linkedin_company'] ) {
784
+ $html .= '<a class="heateor_sss_linkedin_company" href="'. $instance['linkedin_company'] .'" title="linkedinCompany" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#0077b5;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path d="M6.227 12.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43 2.43 0 0 1 0 4.86c-1.344 0-2.428-1.09-2.428-2.43s1.084-2.43 2.428-2.43m4.72 6.7h4.02v1.84h.058c.56-1.058 1.927-2.176 3.965-2.176 4.238 0 5.02 2.792 5.02 6.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18 0-2.514 1.7-2.514 3.46v6.668h-4.187V12.61z" fill="'. $logo_color .'"></path></svg></span></a>';
785
  }
786
  if ( isset( $instance['medium'] ) && $instance['medium'] ) {
787
+ $html .= '<a class="heateor_sss_medium" href="'. $instance['medium'] .'" title="medium" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#2a2a2a;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="-2 -2 36 36"><path d="M7.8 11a.8.8 0 0 0-.27-.7l-2-2.42v-.41h6.23L16.57 18l4.24-10.53h5.94v.36L25 9.47a.5.5 0 0 0-.19.48v12.1a.5.5 0 0 0 .19.48l1.68 1.64v.36h-8.4v-.36L20 22.49c.18-.17.18-.22.18-.49v-9.77l-4.82 12.26h-.65L9.09 12.23v8.22a1.09 1.09 0 0 0 .31.94l2.25 2.74v.36h-6.4v-.36l2.26-2.74a1.09 1.09 0 0 0 .29-.94z" fill="'. $logo_color .'"></path></svg></span></a>';
788
  }
789
  if ( isset( $instance['mewe'] ) && $instance['mewe'] ) {
790
+ $html .= '<a class="heateor_sss_mewe" href="'. $instance['mewe'] .'" title="Mewe" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#007da1;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-3 -3 38 38"><g fill="'. $logo_color .'"><path d="M9.636 10.427a1.22 1.22 0 1 1-2.44 0 1.22 1.22 0 1 1 2.44 0zM15.574 10.431a1.22 1.22 0 0 1-2.438 0 1.22 1.22 0 1 1 2.438 0zM22.592 10.431a1.221 1.221 0 1 1-2.443 0 1.221 1.221 0 0 1 2.443 0zM29.605 10.431a1.221 1.221 0 1 1-2.442 0 1.221 1.221 0 0 1 2.442 0zM3.605 13.772c0-.471.374-.859.859-.859h.18c.374 0 .624.194.789.457l2.935 4.597 2.95-4.611c.18-.291.43-.443.774-.443h.18c.485 0 .859.387.859.859v8.113a.843.843 0 0 1-.859.845.857.857 0 0 1-.845-.845V16.07l-2.366 3.559c-.18.276-.402.443-.72.443-.304 0-.526-.167-.706-.443l-2.354-3.53V21.9c0 .471-.374.83-.845.83a.815.815 0 0 1-.83-.83v-8.128h-.001zM14.396 14.055a.9.9 0 0 1-.069-.333c0-.471.402-.83.872-.83.415 0 .735.263.845.624l2.23 6.66 2.187-6.632c.139-.402.428-.678.859-.678h.124c.428 0 .735.278.859.678l2.187 6.632 2.23-6.675c.126-.346.415-.609.83-.609.457 0 .845.361.845.817a.96.96 0 0 1-.083.346l-2.867 8.032c-.152.43-.471.706-.887.706h-.165c-.415 0-.721-.263-.872-.706l-2.161-6.328-2.16 6.328c-.152.443-.47.706-.887.706h-.165c-.415 0-.72-.263-.887-.706l-2.865-8.032z"></path></g></svg></span></a>';
791
  }
792
  if ( isset( $instance['odnoklassniki'] ) && $instance['odnoklassniki'] ) {
793
+ $html .= '<a class="heateor_sss_odnoklassniki" href="'. $instance['odnoklassniki'] .'" title="Odnoklassniki" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#f2720c;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="'. $logo_color .'" d="M16 16.16a6.579 6.579 0 0 1-6.58-6.58A6.578 6.578 0 0 1 16 3a6.58 6.58 0 1 1 .002 13.16zm0-9.817a3.235 3.235 0 0 0-3.236 3.237 3.234 3.234 0 0 0 3.237 3.236 3.236 3.236 0 1 0 .004-6.473zm7.586 10.62c.647 1.3-.084 1.93-1.735 2.99-1.395.9-3.313 1.238-4.564 1.368l1.048 1.05 3.877 3.88c.59.59.59 1.543 0 2.133l-.177.18c-.59.59-1.544.59-2.134 0l-3.88-3.88-3.877 3.88c-.59.59-1.543.59-2.135 0l-.176-.18a1.505 1.505 0 0 1 0-2.132l3.88-3.877 1.042-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747 1.4-1.367 2.768-.29C13.035 18.13 16 18.13 16 18.13s2.968 0 4.818-1.456c1.368-1.077 2.4-.457 2.768.29z"></path></svg></span></a>';
 
 
 
794
  }
795
  if ( isset( $instance['telegram'] ) && $instance['telegram'] ) {
796
+ $html .= '<a class="heateor_sss_telegram" href="'. $instance['telegram'] .'" title="Telegram" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#3da5f1;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="'. $logo_color .'" d="M25.515 6.896L6.027 14.41c-1.33.534-1.322 1.276-.243 1.606l5 1.56 1.72 5.66c.226.625.115.873.77.873.506 0 .73-.235 1.012-.51l2.43-2.363 5.056 3.734c.93.514 1.602.25 1.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z"></path></svg></span></a>';
797
  }
798
  if ( isset( $instance['tumblr'] ) && $instance['tumblr'] ) {
799
+ $html .= '<a class="heateor_sss_tumblr" href="'. $instance['tumblr'] .'" title="Tumblr" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#29435d;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-2 -2 36 36"><path fill="'. $logo_color .'" d="M20.775 21.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17 1.556-.895 4.287-3.923 5.378v2.578h2.02v6.522c0 2.232 1.647 5.404 5.994 5.33 1.467-.025 3.096-.64 3.456-1.17l-.96-2.846z"/></svg></span></a>';
800
  }
801
  if ( isset( $instance['vimeo'] ) && $instance['vimeo'] ) {
802
+ $html .= '<a class="heateor_sss_vimeo" href="'. $instance['vimeo'] .'" title="Vimeo" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#1ab7ea;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-2 -2 36 36"><path fill="'. $logo_color .'" d="M26.926 10.627c-.103 2.25-1.675 5.332-4.716 9.245C19.066 23.957 16.406 26 14.23 26c-1.348 0-2.49-1.244-3.42-3.732l-1.867-6.844C8.25 12.937 7.51 11.69 6.715 11.69c-.173 0-.778.365-1.815 1.09l-1.088-1.4a300.012 300.012 0 0 0 3.374-3.01c1.522-1.315 2.666-2.007 3.427-2.076 1.8-.173 2.907 1.057 3.322 3.69.45 2.84.76 4.608.935 5.3.52 2.356 1.09 3.534 1.713 3.534.483 0 1.21-.764 2.18-2.294.97-1.528 1.488-2.692 1.558-3.49.14-1.32-.38-1.98-1.553-1.98-.554 0-1.125.126-1.712.378 1.137-3.722 3.308-5.53 6.513-5.426 2.378.068 3.498 1.61 3.36 4.62z"></path></svg></span></a>';
803
  }
804
  if ( isset( $instance['vkontakte'] ) && $instance['vkontakte'] ) {
805
+ $html .= '<a class="heateor_sss_vkontakte" href="'. $instance['vkontakte'] .'" title="Vkontakte" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#cc2329;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-1 -2 34 34"><path fill-rule="evenodd" clip-rule="evenodd" fill="'. $logo_color .'" d="M15.764 22.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255 1.844 1.705 2.942 2.46.832.57 1.464.445 1.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39 1.353-1.804 1.893-2.902 1.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522 1.394-1.223 2.58c-1.47 2.5-2.06 2.633-2.3 2.476-.563-.36-.42-1.454-.42-2.23 0-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33 1.496.33 1.496s.193 2.852-.46 3.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46 5.757 5.245 8.657c2.553 2.66 5.454 2.485 5.454 2.485z"/></svg></span></a>';
806
  }
807
  if ( isset( $instance['whatsapp'] ) && $instance['whatsapp'] ) {
808
+ $html .= '<a class="heateor_sss_whatsapp" href="'. $instance['whatsapp'] .'" title="Whatsapp" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#55eb4c;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-5 -5 40 40"><path id="arc1" stroke="'. $logo_color .'" stroke-width="2" fill="none" d="M 11.579798566743314 24.396926207859085 A 10 10 0 1 0 6.808479557110079 20.73576436351046"></path><path d="M 7 19 l -1 6 l 6 -1" stroke="'. $logo_color .'" stroke-width="2" fill="none"></path><path d="M 10 10 q -1 8 8 11 c 5 -1 0 -6 -1 -3 q -4 -3 -5 -5 c 4 -2 -1 -5 -1 -4" fill="'. $logo_color .'"></path></svg></span></a>';
809
  }
810
  if ( isset( $instance['xing'] ) && $instance['xing'] ) {
811
+ $html .= '<a class="heateor_sss_xing" href="'. $instance['xing'] .'" title="Xing" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#00797d;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="-6 -6 42 42">
812
+ <path d="M 6 9 h 5 l 4 4 l -5 7 h -5 l 5 -7 z m 15 -4 h 5 l -9 13 l 4 8 h -5 l -4 -8 z" fill="'. $logo_color .'"></path>
813
+ </svg></span></a>';
814
  }
815
  if ( isset( $instance['youtube'] ) && $instance['youtube'] ) {
816
+ $html .= '<a class="heateor_sss_facebook" href="'. $instance['facebook'] .'" title="Facebook" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:red;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="'. $logo_color .'" d="M26.78 11.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618 0-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874 2.184-.874 2.184S5 13.386 5 15.166v1.67c0 1.78.22 3.56.22 3.56s.215 1.516.874 2.184c.837.875 1.936.85 2.426.94 1.76.17 7.48.22 7.48.22s4.623-.007 7.7-.23c.43-.05 1.37-.056 2.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052 7.254v-6.18l5.944 3.1-5.944 3.08z"></path></svg></span></a>';
817
  }
818
  if ( isset( $instance['youtube_channel'] ) && $instance['youtube_channel'] ) {
819
+ $html .= '<a class="heateor_sss_youtube_channel" href="'. $instance['youtube_channel'] .'" title="Youtubechannel" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:red;display:inline-block;opacity:1;float:left;font-size:32px;box-shadow:none;display:inline-block;font-size:16px;padding:0 4px;vertical-align:middle;background-repeat:repeat;overflow:hidden;padding:0;cursor:pointer;'. $icon_style .'" class="heateor_sss_svg"><svg style="%inner_style%" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 32 32"><path fill="'. $logo_color .'" d="M26.78 11.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618 0-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874 2.184-.874 2.184S5 13.386 5 15.166v1.67c0 1.78.22 3.56.22 3.56s.215 1.516.874 2.184c.837.875 1.936.85 2.426.94 1.76.17 7.48.22 7.48.22s4.623-.007 7.7-.23c.43-.05 1.37-.056 2.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052 7.254v-6.18l5.944 3.1-5.944 3.08z"></path></svg></span></a>';
820
  }
821
  if ( isset( $instance['rss_feed'] ) && $instance['rss_feed'] ) {
822
+ $html .= '<a class="heateor_sss_rss_feed" href="'. $instance['rss_feed'] .'" title="Rssfeed" rel="nofollow noopener" target="_blank" style="font-size:32px!important;box-shadow:none;display:inline-block;vertical-align:middle;"><span style="background-color:#e3702d;display: