Social Media Share Buttons & Social Sharing Icons - Version 2.4.5

Version Description

  • Updated Export section and success message after export
  • Corrected so that responsive icons don't show on homepage
  • Added Lazy load css to reduce conflicts
Download this release

Release Info

Developer socialdude
Plugin Icon 128x128 Social Media Share Buttons & Social Sharing Icons
Version 2.4.5
Comparing to
See all releases

Code changes from version 2.4.4 to 2.4.5

analyst/src/Account/Account.php CHANGED
@@ -1,584 +1,584 @@
1
- <?php
2
-
3
- namespace Account;
4
-
5
- use Analyst\Analyst;
6
- use Analyst\ApiRequestor;
7
- use Analyst\Cache\DatabaseCache;
8
- use Analyst\Collector;
9
- use Analyst\Http\Requests\ActivateRequest;
10
- use Analyst\Http\Requests\DeactivateRequest;
11
- use Analyst\Http\Requests\InstallRequest;
12
- use Analyst\Http\Requests\OptInRequest;
13
- use Analyst\Http\Requests\OptOutRequest;
14
- use Analyst\Http\Requests\UninstallRequest;
15
- use Analyst\Notices\Notice;
16
- use Analyst\Notices\NoticeFactory;
17
- use Analyst\Contracts\TrackerContract;
18
- use Analyst\Contracts\RequestorContract;
19
-
20
- /**
21
- * Class Account
22
- *
23
- * This is plugin's account object
24
- */
25
- class Account implements TrackerContract
26
- {
27
- /**
28
- * Account id
29
- *
30
- * @var string
31
- */
32
- protected $id;
33
-
34
- /**
35
- * Basename of plugin
36
- *
37
- * @var string
38
- */
39
- protected $path;
40
-
41
- /**
42
- * Whether plugin is active or not
43
- *
44
- * @var bool
45
- */
46
- protected $isInstalled = false;
47
-
48
- /**
49
- * Is user sign in for data tracking
50
- *
51
- * @var bool
52
- */
53
- protected $isOptedIn = false;
54
-
55
- /**
56
- * Is user accepted permissions grant
57
- * for collection site data
58
- *
59
- * @var bool
60
- */
61
- protected $isSigned = false;
62
-
63
- /**
64
- * Is user ever resolved install modal window?
65
- *
66
- * @var bool
67
- */
68
- protected $isInstallResolved = false;
69
-
70
- /**
71
- * Public secret code
72
- *
73
- * @var string
74
- */
75
- protected $clientSecret;
76
-
77
- /**
78
- * @var AccountData
79
- */
80
- protected $data;
81
-
82
- /**
83
- * Base plugin path
84
- *
85
- * @var string
86
- */
87
- protected $basePluginPath;
88
-
89
- /**
90
- * @var RequestorContract
91
- */
92
- protected $requestor;
93
-
94
- /**
95
- * @var Collector
96
- */
97
- protected $collector;
98
-
99
- /**
100
- * Account constructor.
101
- * @param $id
102
- * @param $secret
103
- * @param $baseDir
104
- */
105
- public function __construct($id, $secret, $baseDir)
106
- {
107
- $this->id = $id;
108
- $this->clientSecret = $secret;
109
-
110
- $this->path = $baseDir;
111
-
112
- $this->basePluginPath = plugin_basename($baseDir);
113
- }
114
-
115
- /**
116
- * @return string
117
- */
118
- public function getPath()
119
- {
120
- return $this->path;
121
- }
122
-
123
- /**
124
- * @param string $path
125
- */
126
- public function setPath($path)
127
- {
128
- $this->data->setPath($path);
129
-
130
- $this->path = $path;
131
- }
132
-
133
- /**
134
- * @return bool
135
- */
136
- public function isOptedIn()
137
- {
138
- return $this->isOptedIn;
139
- }
140
-
141
- /**
142
- * @param bool $isOptedIn
143
- */
144
- public function setIsOptedIn($isOptedIn)
145
- {
146
- $this->data->setIsOptedIn($isOptedIn);
147
-
148
- $this->isOptedIn = $isOptedIn;
149
- }
150
-
151
- /**
152
- * Whether plugin is active
153
- *
154
- * @return bool
155
- */
156
- public function isActive()
157
- {
158
- return is_plugin_active($this->path);
159
- }
160
-
161
- /**
162
- * @param string $id
163
- */
164
- public function setId($id)
165
- {
166
- $this->id = $id;
167
- }
168
-
169
- /**
170
- * @return string
171
- */
172
- public function getId()
173
- {
174
- return $this->id;
175
- }
176
-
177
- /**
178
- * @return bool
179
- */
180
- public function isInstalled()
181
- {
182
- return $this->isInstalled;
183
- }
184
-
185
- /**
186
- * @param bool $isInstalled
187
- */
188
- public function setIsInstalled($isInstalled)
189
- {
190
- $this->data->setIsInstalled($isInstalled);
191
-
192
- $this->isInstalled = $isInstalled;
193
- }
194
-
195
- /**
196
- * Should register activation and deactivation
197
- * event hooks
198
- *
199
- * @return void
200
- */
201
- public function registerHooks()
202
- {
203
- register_activation_hook($this->basePluginPath, [&$this, 'onActivePluginListener']);
204
- register_uninstall_hook($this->basePluginPath, ['Account\Account', 'onUninstallPluginListener']);
205
-
206
- $this->addFilter('plugin_action_links', [&$this, 'onRenderActionLinksHook']);
207
-
208
- $this->addAjax('analyst_opt_in', [&$this, 'onOptInListener']);
209
- $this->addAjax('analyst_opt_out', [&$this, 'onOptOutListener']);
210
- $this->addAjax('analyst_plugin_deactivate', [&$this, 'onDeactivatePluginListener']);
211
- $this->addAjax('analyst_install', [&$this, 'onInstallListener']);
212
- $this->addAjax('analyst_skip_install', [&$this, 'onSkipInstallListener']);
213
- $this->addAjax('analyst_install_verified', [&$this, 'onInstallVerifiedListener']);
214
- }
215
-
216
- /**
217
- * Will fire when admin activates plugin
218
- *
219
- * @return void
220
- */
221
- public function onActivePluginListener()
222
- {
223
- if (!$this->isInstallResolved()) {
224
- DatabaseCache::getInstance()->put('plugin_to_install', $this->id);
225
- }
226
-
227
- if (!$this->isAllowingLogging()) return;
228
-
229
- ActivateRequest::make($this->collector, $this->id, $this->path)
230
- ->execute($this->requestor);
231
-
232
- $this->setIsInstalled(true);
233
-
234
- AccountDataFactory::syncData();
235
- }
236
-
237
- /**
238
- * Will fire when admin deactivates plugin
239
- *
240
- * @return void
241
- */
242
- public function onDeactivatePluginListener()
243
- {
244
- if (!$this->isAllowingLogging()) return;
245
-
246
- $question = isset($_POST['question']) ? stripslashes($_POST['question']) : null;
247
- $reason = isset($_POST['reason']) ? stripslashes($_POST['reason']) : null;
248
-
249
- DeactivateRequest::make($this->collector, $this->id, $this->path, $question, $reason)
250
- ->execute($this->requestor);
251
-
252
- $this->setIsInstalled(false);
253
-
254
- AccountDataFactory::syncData();
255
-
256
- wp_send_json_success();
257
- }
258
-
259
- /**
260
- * Will fire when user opted in
261
- *
262
- * @return void
263
- */
264
- public function onOptInListener()
265
- {
266
- OptInRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
267
-
268
- $this->setIsOptedIn(true);
269
-
270
- AccountDataFactory::syncData();
271
-
272
- wp_die();
273
- }
274
-
275
- /**
276
- * Will fire when user opted out
277
- *
278
- * @return void
279
- */
280
- public function onOptOutListener()
281
- {
282
- OptOutRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
283
-
284
- $this->setIsOptedIn(false);
285
-
286
- AccountDataFactory::syncData();
287
-
288
- wp_send_json_success();
289
- }
290
-
291
- /**
292
- * Will fire when user accept opt-in
293
- * at first time
294
- *
295
- * @return void
296
- */
297
- public function onInstallListener()
298
- {
299
- $cache = DatabaseCache::getInstance();
300
-
301
- // Set flag to true which indicates that install is resolved
302
- // also remove install plugin id from cache
303
- $this->setIsInstallResolved(true);
304
- $cache->delete('plugin_to_install');
305
-
306
- InstallRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
307
-
308
- $this->setIsSigned(true);
309
-
310
- $this->setIsOptedIn(true);
311
-
312
- $factory = NoticeFactory::instance();
313
-
314
- $message = sprintf('Please confirm your email by clicking on the link we sent to %s. This makes sure you’re not a bot.', $this->collector->getGeneralEmailAddress());
315
-
316
- $notificationId = uniqid();
317
-
318
- $notice = Notice::make(
319
- $notificationId,
320
- $this->getId(),
321
- $message,
322
- $this->collector->getPluginName($this->path)
323
- );
324
-
325
- $factory->addNotice($notice);
326
-
327
- AccountDataFactory::syncData();
328
-
329
- // Set email confirmation notification id to cache
330
- // se we can extract and remove it when user confirmed email
331
- $cache->put(
332
- sprintf('account_email_confirmation_%s', $this->getId()),
333
- $notificationId
334
- );
335
-
336
- wp_send_json_success();
337
- }
338
-
339
- /**
340
- * Will fire when user skipped installation
341
- *
342
- * @return void
343
- */
344
- public function onSkipInstallListener()
345
- {
346
- // Set flag to true which indicates that install is resolved
347
- // also remove install plugin id from cache
348
- $this->setIsInstallResolved(true);
349
- DatabaseCache::getInstance()->delete('plugin_to_install');
350
- }
351
-
352
- /**
353
- * Will fire when user delete plugin through admin panel.
354
- * This action will happen if admin at least once
355
- * activated the plugin.
356
- *
357
- * @return void
358
- * @throws \Exception
359
- */
360
- public static function onUninstallPluginListener()
361
- {
362
- $factory = AccountDataFactory::instance();
363
-
364
- $pluginFile = substr(current_filter(), strlen( 'uninstall_' ));
365
-
366
- $account = $factory->getAccountDataByBasePath($pluginFile);
367
-
368
- // If account somehow is not found, exit the execution
369
- if (!$account) return;
370
-
371
- $analyst = Analyst::getInstance();
372
-
373
- $collector = new Collector($analyst);
374
-
375
- $requestor = new ApiRequestor($account->getId(), $account->getSecret(), $analyst->getApiBase());
376
-
377
- // Just send request to log uninstall event not caring about response
378
- UninstallRequest::make($collector, $account->getId(), $account->getPath())->execute($requestor);
379
-
380
- $factory->sync();
381
- }
382
-
383
- /**
384
- * Fires when used verified his account
385
- */
386
- public function onInstallVerifiedListener()
387
- {
388
- $factory = NoticeFactory::instance();
389
-
390
- $notice = Notice::make(
391
- uniqid(),
392
- $this->getId(),
393
- 'Thank you for confirming your email.',
394
- $this->collector->getPluginName($this->path)
395
- );
396
-
397
- $factory->addNotice($notice);
398
-
399
- // Remove confirmation notification
400
- $confirmationNotificationId = DatabaseCache::getInstance()->pop(sprintf('account_email_confirmation_%s', $this->getId()));
401
- $factory->remove($confirmationNotificationId);
402
-
403
- AccountDataFactory::syncData();
404
-
405
- wp_send_json_success();
406
- }
407
-
408
- /**
409
- * Will fire when wp renders plugin
410
- * action buttons
411
- *
412
- * @param $defaultLinks
413
- * @return array
414
- */
415
- public function onRenderActionLinksHook($defaultLinks)
416
- {
417
- $customLinks = [];
418
-
419
- $customLinks[] = $this->isOptedIn()
420
- ? '<a class="analyst-action-opt analyst-opt-out" analyst-plugin-id="' . $this->getId() . '" analyst-plugin-signed="' . (int) $this->isSigned() . '">Opt Out</a>'
421
- : '<a class="analyst-action-opt analyst-opt-in" analyst-plugin-id="' . $this->getId() . '" analyst-plugin-signed="' . (int) $this->isSigned() . '">Opt In</a>';
422
-
423
- // Append anchor to find specific deactivation link
424
- if (isset($defaultLinks['deactivate'])) {
425
- $defaultLinks['deactivate'] .= '<span analyst-plugin-id="' . $this->getId() . '" analyst-plugin-opted-in="' . (int) $this->isOptedIn() . '"></span>';
426
- }
427
-
428
- return array_merge($customLinks, $defaultLinks);
429
- }
430
-
431
- /**
432
- * @return AccountData
433
- */
434
- public function getData()
435
- {
436
- return $this->data;
437
- }
438
-
439
- /**
440
- * @param AccountData $data
441
- */
442
- public function setData(AccountData $data)
443
- {
444
- $this->data = $data;
445
-
446
- $this->setIsOptedIn($data->isOptedIn());
447
- $this->setIsInstalled($data->isInstalled());
448
- $this->setIsSigned($data->isSigned());
449
- $this->setIsInstallResolved($data->isInstallResolved());
450
- }
451
-
452
- /**
453
- * Resolves valid action name
454
- * based on client id
455
- *
456
- * @param $action
457
- * @return string
458
- */
459
- private function resolveActionName($action)
460
- {
461
- return sprintf('%s_%s', $action, $this->id);
462
- }
463
-
464
- /**
465
- * Register action for current plugin
466
- *
467
- * @param $action
468
- * @param $callback
469
- */
470
- private function addFilter($action, $callback)
471
- {
472
- $validAction = sprintf('%s_%s', $action, $this->basePluginPath);
473
-
474
- add_filter($validAction, $callback, 10);
475
- }
476
-
477
- /**
478
- * Add ajax action for current plugin
479
- *
480
- * @param $action
481
- * @param $callback
482
- * @param bool $raw Format action ??
483
- */
484
- private function addAjax($action, $callback, $raw = false)
485
- {
486
- $validAction = $raw ? $action : sprintf('%s%s', 'wp_ajax_', $this->resolveActionName($action));
487
-
488
- add_action($validAction, $callback);
489
- }
490
-
491
- /**
492
- * @return bool
493
- */
494
- public function isSigned()
495
- {
496
- return $this->isSigned;
497
- }
498
-
499
- /**
500
- * @param bool $isSigned
501
- */
502
- public function setIsSigned($isSigned)
503
- {
504
- $this->data->setIsSigned($isSigned);
505
-
506
- $this->isSigned = $isSigned;
507
- }
508
-
509
- /**
510
- * @return RequestorContract
511
- */
512
- public function getRequestor()
513
- {
514
- return $this->requestor;
515
- }
516
-
517
- /**
518
- * @param RequestorContract $requestor
519
- */
520
- public function setRequestor(RequestorContract $requestor)
521
- {
522
- $this->requestor = $requestor;
523
- }
524
-
525
- /**
526
- * @return string
527
- */
528
- public function getClientSecret()
529
- {
530
- return $this->clientSecret;
531
- }
532
-
533
- /**
534
- * @return Collector
535
- */
536
- public function getCollector()
537
- {
538
- return $this->collector;
539
- }
540
-
541
- /**
542
- * @param Collector $collector
543
- */
544
- public function setCollector(Collector $collector)
545
- {
546
- $this->collector = $collector;
547
- }
548
-
549
- /**
550
- * Do we allowing logging
551
- *
552
- * @return bool
553
- */
554
- public function isAllowingLogging()
555
- {
556
- return $this->isOptedIn;
557
- }
558
-
559
- /**
560
- * @return string
561
- */
562
- public function getBasePluginPath()
563
- {
564
- return $this->basePluginPath;
565
- }
566
-
567
- /**
568
- * @return bool
569
- */
570
- public function isInstallResolved()
571
- {
572
- return $this->isInstallResolved;
573
- }
574
-
575
- /**
576
- * @param bool $isInstallResolved
577
- */
578
- public function setIsInstallResolved($isInstallResolved)
579
- {
580
- $this->data->setIsInstallResolved($isInstallResolved);
581
-
582
- $this->isInstallResolved = $isInstallResolved;
583
- }
584
- }
1
+ <?php
2
+
3
+ namespace Account;
4
+
5
+ use Analyst\Analyst;
6
+ use Analyst\ApiRequestor;
7
+ use Analyst\Cache\DatabaseCache;
8
+ use Analyst\Collector;
9
+ use Analyst\Http\Requests\ActivateRequest;
10
+ use Analyst\Http\Requests\DeactivateRequest;
11
+ use Analyst\Http\Requests\InstallRequest;
12
+ use Analyst\Http\Requests\OptInRequest;
13
+ use Analyst\Http\Requests\OptOutRequest;
14
+ use Analyst\Http\Requests\UninstallRequest;
15
+ use Analyst\Notices\Notice;
16
+ use Analyst\Notices\NoticeFactory;
17
+ use Analyst\Contracts\TrackerContract;
18
+ use Analyst\Contracts\RequestorContract;
19
+
20
+ /**
21
+ * Class Account
22
+ *
23
+ * This is plugin's account object
24
+ */
25
+ class Account implements TrackerContract
26
+ {
27
+ /**
28
+ * Account id
29
+ *
30
+ * @var string
31
+ */
32
+ protected $id;
33
+
34
+ /**
35
+ * Basename of plugin
36
+ *
37
+ * @var string
38
+ */
39
+ protected $path;
40
+
41
+ /**
42
+ * Whether plugin is active or not
43
+ *
44
+ * @var bool
45
+ */
46
+ protected $isInstalled = false;
47
+
48
+ /**
49
+ * Is user sign in for data tracking
50
+ *
51
+ * @var bool
52
+ */
53
+ protected $isOptedIn = false;
54
+
55
+ /**
56
+ * Is user accepted permissions grant
57
+ * for collection site data
58
+ *
59
+ * @var bool
60
+ */
61
+ protected $isSigned = false;
62
+
63
+ /**
64
+ * Is user ever resolved install modal window?
65
+ *
66
+ * @var bool
67
+ */
68
+ protected $isInstallResolved = false;
69
+
70
+ /**
71
+ * Public secret code
72
+ *
73
+ * @var string
74
+ */
75
+ protected $clientSecret;
76
+
77
+ /**
78
+ * @var AccountData
79
+ */
80
+ protected $data;
81
+
82
+ /**
83
+ * Base plugin path
84
+ *
85
+ * @var string
86
+ */
87
+ protected $basePluginPath;
88
+
89
+ /**
90
+ * @var RequestorContract
91
+ */
92
+ protected $requestor;
93
+
94
+ /**
95
+ * @var Collector
96
+ */
97
+ protected $collector;
98
+
99
+ /**
100
+ * Account constructor.
101
+ * @param $id
102
+ * @param $secret
103
+ * @param $baseDir
104
+ */
105
+ public function __construct($id, $secret, $baseDir)
106
+ {
107
+ $this->id = $id;
108
+ $this->clientSecret = $secret;
109
+
110
+ $this->path = $baseDir;
111
+
112
+ $this->basePluginPath = plugin_basename($baseDir);
113
+ }
114
+
115
+ /**
116
+ * @return string
117
+ */
118
+ public function getPath()
119
+ {
120
+ return $this->path;
121
+ }
122
+
123
+ /**
124
+ * @param string $path
125
+ */
126
+ public function setPath($path)
127
+ {
128
+ $this->data->setPath($path);
129
+
130
+ $this->path = $path;
131
+ }
132
+
133
+ /**
134
+ * @return bool
135
+ */
136
+ public function isOptedIn()
137
+ {
138
+ return $this->isOptedIn;
139
+ }
140
+
141
+ /**
142
+ * @param bool $isOptedIn
143
+ */
144
+ public function setIsOptedIn($isOptedIn)
145
+ {
146
+ $this->data->setIsOptedIn($isOptedIn);
147
+
148
+ $this->isOptedIn = $isOptedIn;
149
+ }
150
+
151
+ /**
152
+ * Whether plugin is active
153
+ *
154
+ * @return bool
155
+ */
156
+ public function isActive()
157
+ {
158
+ return is_plugin_active($this->path);
159
+ }
160
+
161
+ /**
162
+ * @param string $id
163
+ */
164
+ public function setId($id)
165
+ {
166
+ $this->id = $id;
167
+ }
168
+
169
+ /**
170
+ * @return string
171
+ */
172
+ public function getId()
173
+ {
174
+ return $this->id;
175
+ }
176
+
177
+ /**
178
+ * @return bool
179
+ */
180
+ public function isInstalled()
181
+ {
182
+ return $this->isInstalled;
183
+ }
184
+
185
+ /**
186
+ * @param bool $isInstalled
187
+ */
188
+ public function setIsInstalled($isInstalled)
189
+ {
190
+ $this->data->setIsInstalled($isInstalled);
191
+
192
+ $this->isInstalled = $isInstalled;
193
+ }
194
+
195
+ /**
196
+ * Should register activation and deactivation
197
+ * event hooks
198
+ *
199
+ * @return void
200
+ */
201
+ public function registerHooks()
202
+ {
203
+ register_activation_hook($this->basePluginPath, [&$this, 'onActivePluginListener']);
204
+ register_uninstall_hook($this->basePluginPath, ['Account\Account', 'onUninstallPluginListener']);
205
+
206
+ $this->addFilter('plugin_action_links', [&$this, 'onRenderActionLinksHook']);
207
+
208
+ $this->addAjax('analyst_opt_in', [&$this, 'onOptInListener']);
209
+ $this->addAjax('analyst_opt_out', [&$this, 'onOptOutListener']);
210
+ $this->addAjax('analyst_plugin_deactivate', [&$this, 'onDeactivatePluginListener']);
211
+ $this->addAjax('analyst_install', [&$this, 'onInstallListener']);
212
+ $this->addAjax('analyst_skip_install', [&$this, 'onSkipInstallListener']);
213
+ $this->addAjax('analyst_install_verified', [&$this, 'onInstallVerifiedListener']);
214
+ }
215
+
216
+ /**
217
+ * Will fire when admin activates plugin
218
+ *
219
+ * @return void
220
+ */
221
+ public function onActivePluginListener()
222
+ {
223
+ if (!$this->isInstallResolved()) {
224
+ DatabaseCache::getInstance()->put('plugin_to_install', $this->id);
225
+ }
226
+
227
+ if (!$this->isAllowingLogging()) return;
228
+
229
+ ActivateRequest::make($this->collector, $this->id, $this->path)
230
+ ->execute($this->requestor);
231
+
232
+ $this->setIsInstalled(true);
233
+
234
+ AccountDataFactory::syncData();
235
+ }
236
+
237
+ /**
238
+ * Will fire when admin deactivates plugin
239
+ *
240
+ * @return void
241
+ */
242
+ public function onDeactivatePluginListener()
243
+ {
244
+ if (!$this->isAllowingLogging()) return;
245
+
246
+ $question = isset($_POST['question']) ? stripslashes($_POST['question']) : null;
247
+ $reason = isset($_POST['reason']) ? stripslashes($_POST['reason']) : null;
248
+
249
+ DeactivateRequest::make($this->collector, $this->id, $this->path, $question, $reason)
250
+ ->execute($this->requestor);
251
+
252
+ $this->setIsInstalled(false);
253
+
254
+ AccountDataFactory::syncData();
255
+
256
+ wp_send_json_success();
257
+ }
258
+
259
+ /**
260
+ * Will fire when user opted in
261
+ *
262
+ * @return void
263
+ */
264
+ public function onOptInListener()
265
+ {
266
+ OptInRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
267
+
268
+ $this->setIsOptedIn(true);
269
+
270
+ AccountDataFactory::syncData();
271
+
272
+ wp_die();
273
+ }
274
+
275
+ /**
276
+ * Will fire when user opted out
277
+ *
278
+ * @return void
279
+ */
280
+ public function onOptOutListener()
281
+ {
282
+ OptOutRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
283
+
284
+ $this->setIsOptedIn(false);
285
+
286
+ AccountDataFactory::syncData();
287
+
288
+ wp_send_json_success();
289
+ }
290
+
291
+ /**
292
+ * Will fire when user accept opt-in
293
+ * at first time
294
+ *
295
+ * @return void
296
+ */
297
+ public function onInstallListener()
298
+ {
299
+ $cache = DatabaseCache::getInstance();
300
+
301
+ // Set flag to true which indicates that install is resolved
302
+ // also remove install plugin id from cache
303
+ $this->setIsInstallResolved(true);
304
+ $cache->delete('plugin_to_install');
305
+
306
+ InstallRequest::make($this->collector, $this->id, $this->path)->execute($this->requestor);
307
+
308
+ $this->setIsSigned(true);
309
+
310
+ $this->setIsOptedIn(true);
311
+
312
+ $factory = NoticeFactory::instance();
313
+
314
+ $message = sprintf('Please confirm your email by clicking on the link we sent to %s. This makes sure you’re not a bot.', $this->collector->getGeneralEmailAddress());
315
+
316
+ $notificationId = uniqid();
317
+
318
+ $notice = Notice::make(
319
+ $notificationId,
320
+ $this->getId(),
321
+ $message,
322
+ $this->collector->getPluginName($this->path)
323
+ );
324
+
325
+ $factory->addNotice($notice);
326
+
327
+ AccountDataFactory::syncData();
328
+
329
+ // Set email confirmation notification id to cache
330
+ // se we can extract and remove it when user confirmed email
331
+ $cache->put(
332
+ sprintf('account_email_confirmation_%s', $this->getId()),
333
+ $notificationId
334
+ );
335
+
336
+ wp_send_json_success();
337
+ }
338
+
339
+ /**
340
+ * Will fire when user skipped installation
341
+ *
342
+ * @return void
343
+ */
344
+ public function onSkipInstallListener()
345
+ {
346
+ // Set flag to true which indicates that install is resolved
347
+ // also remove install plugin id from cache
348
+ $this->setIsInstallResolved(true);
349
+ DatabaseCache::getInstance()->delete('plugin_to_install');
350
+ }
351
+
352
+ /**
353
+ * Will fire when user delete plugin through admin panel.
354
+ * This action will happen if admin at least once
355
+ * activated the plugin.
356
+ *
357
+ * @return void
358
+ * @throws \Exception
359
+ */
360
+ public static function onUninstallPluginListener()
361
+ {
362
+ $factory = AccountDataFactory::instance();
363
+
364
+ $pluginFile = substr(current_filter(), strlen( 'uninstall_' ));
365
+
366
+ $account = $factory->getAccountDataByBasePath($pluginFile);
367
+
368
+ // If account somehow is not found, exit the execution
369
+ if (!$account) return;
370
+
371
+ $analyst = Analyst::getInstance();
372
+
373
+ $collector = new Collector($analyst);
374
+
375
+ $requestor = new ApiRequestor($account->getId(), $account->getSecret(), $analyst->getApiBase());
376
+
377
+ // Just send request to log uninstall event not caring about response
378
+ UninstallRequest::make($collector, $account->getId(), $account->getPath())->execute($requestor);
379
+
380
+ $factory->sync();
381
+ }
382
+
383
+ /**
384
+ * Fires when used verified his account
385
+ */
386
+ public function onInstallVerifiedListener()
387
+ {
388
+ $factory = NoticeFactory::instance();
389
+
390
+ $notice = Notice::make(
391
+ uniqid(),
392
+ $this->getId(),
393
+ 'Thank you for confirming your email.',
394
+ $this->collector->getPluginName($this->path)
395
+ );
396
+
397
+ $factory->addNotice($notice);
398
+
399
+ // Remove confirmation notification
400
+ $confirmationNotificationId = DatabaseCache::getInstance()->pop(sprintf('account_email_confirmation_%s', $this->getId()));
401
+ $factory->remove($confirmationNotificationId);
402
+
403
+ AccountDataFactory::syncData();
404
+
405
+ wp_send_json_success();
406
+ }
407
+
408
+ /**
409
+ * Will fire when wp renders plugin
410
+ * action buttons
411
+ *
412
+ * @param $defaultLinks
413
+ * @return array
414
+ */
415
+ public function onRenderActionLinksHook($defaultLinks)
416
+ {
417
+ $customLinks = [];
418
+
419
+ $customLinks[] = $this->isOptedIn()
420
+ ? '<a class="analyst-action-opt analyst-opt-out" analyst-plugin-id="' . $this->getId() . '" analyst-plugin-signed="' . (int) $this->isSigned() . '">Opt Out</a>'
421
+ : '<a class="analyst-action-opt analyst-opt-in" analyst-plugin-id="' . $this->getId() . '" analyst-plugin-signed="' . (int) $this->isSigned() . '">Opt In</a>';
422
+
423
+ // Append anchor to find specific deactivation link
424
+ if (isset($defaultLinks['deactivate'])) {
425
+ $defaultLinks['deactivate'] .= '<span analyst-plugin-id="' . $this->getId() . '" analyst-plugin-opted-in="' . (int) $this->isOptedIn() . '"></span>';
426
+ }
427
+
428
+ return array_merge($customLinks, $defaultLinks);
429
+ }
430
+
431
+ /**
432
+ * @return AccountData
433
+ */
434
+ public function getData()
435
+ {
436
+ return $this->data;
437
+ }
438
+
439
+ /**
440
+ * @param AccountData $data
441
+ */
442
+ public function setData(AccountData $data)
443
+ {
444
+ $this->data = $data;
445
+
446
+ $this->setIsOptedIn($data->isOptedIn());
447
+ $this->setIsInstalled($data->isInstalled());
448
+ $this->setIsSigned($data->isSigned());
449
+ $this->setIsInstallResolved($data->isInstallResolved());
450
+ }
451
+
452
+ /**
453
+ * Resolves valid action name
454
+ * based on client id
455
+ *
456
+ * @param $action
457
+ * @return string
458
+ */
459
+ private function resolveActionName($action)
460
+ {
461
+ return sprintf('%s_%s', $action, $this->id);
462
+ }
463
+
464
+ /**
465
+ * Register action for current plugin
466
+ *
467
+ * @param $action
468
+ * @param $callback
469
+ */
470
+ private function addFilter($action, $callback)
471
+ {
472
+ $validAction = sprintf('%s_%s', $action, $this->basePluginPath);
473
+
474
+ add_filter($validAction, $callback, 10);
475
+ }
476
+
477
+ /**
478
+ * Add ajax action for current plugin
479
+ *
480
+ * @param $action
481
+ * @param $callback
482
+ * @param bool $raw Format action ??
483
+ */
484
+ private function addAjax($action, $callback, $raw = false)
485
+ {
486
+ $validAction = $raw ? $action : sprintf('%s%s', 'wp_ajax_', $this->resolveActionName($action));
487
+
488
+ add_action($validAction, $callback);
489
+ }
490
+
491
+ /**
492
+ * @return bool
493
+ */
494
+ public function isSigned()
495
+ {
496
+ return $this->isSigned;
497
+ }
498
+
499
+ /**
500
+ * @param bool $isSigned
501
+ */
502
+ public function setIsSigned($isSigned)
503
+ {
504
+ $this->data->setIsSigned($isSigned);
505
+
506
+ $this->isSigned = $isSigned;
507
+ }
508
+
509
+ /**
510
+ * @return RequestorContract
511
+ */
512
+ public function getRequestor()
513
+ {
514
+ return $this->requestor;
515
+ }
516
+
517
+ /**
518
+ * @param RequestorContract $requestor
519
+ */
520
+ public function setRequestor(RequestorContract $requestor)
521
+ {
522
+ $this->requestor = $requestor;
523
+ }
524
+
525
+ /**
526
+ * @return string
527
+ */
528
+ public function getClientSecret()
529
+ {
530
+ return $this->clientSecret;
531
+ }
532
+
533
+ /**
534
+ * @return Collector
535
+ */
536
+ public function getCollector()
537
+ {
538
+ return $this->collector;
539
+ }
540
+
541
+ /**
542
+ * @param Collector $collector
543
+ */
544
+ public function setCollector(Collector $collector)
545
+ {
546
+ $this->collector = $collector;
547
+ }
548
+
549
+ /**
550
+ * Do we allowing logging
551
+ *
552
+ * @return bool
553
+ */
554
+ public function isAllowingLogging()
555
+ {
556
+ return $this->isOptedIn;
557
+ }
558
+
559
+ /**
560
+ * @return string
561
+ */
562
+ public function getBasePluginPath()
563
+ {
564
+ return $this->basePluginPath;
565
+ }
566
+
567
+ /**
568
+ * @return bool
569
+ */
570
+ public function isInstallResolved()
571
+ {
572
+ return $this->isInstallResolved;
573
+ }
574
+
575
+ /**
576
+ * @param bool $isInstallResolved
577
+ */
578
+ public function setIsInstallResolved($isInstallResolved)
579
+ {
580
+ $this->data->setIsInstallResolved($isInstallResolved);
581
+
582
+ $this->isInstallResolved = $isInstallResolved;
583
+ }
584
+ }
analyst/src/helpers.php CHANGED
@@ -1,84 +1,84 @@
1
- <?php
2
-
3
- if (! function_exists('analyst_assets_path')) {
4
- /**
5
- * Generates path to file in assets folder
6
- *
7
- * @param $file
8
- * @return string
9
- */
10
- function analyst_assets_path($file)
11
- {
12
- $path = sprintf('%s/assets/%s', realpath(__DIR__ . '/..'), trim($file, '/'));
13
-
14
- return wp_normalize_path($path);
15
- }
16
- }
17
-
18
-
19
- if (! function_exists('analyst_assets_url')) {
20
- /**
21
- * Generates url to file in assets folder
22
- *
23
- * @param $file
24
- * @return string
25
- */
26
- function analyst_assets_url($file)
27
- {
28
- $absolutePath = analyst_assets_path($file);
29
-
30
- // We can always rely on WP_PLUGIN_DIR, because that's where
31
- // wordpress install it's plugin's. So we remove last segment
32
- // of that path to get the content dir AKA directly where
33
- // plugins are installed and make the magic...
34
- $contentDir = is_link(WP_PLUGIN_DIR) ?
35
- dirname(wp_normalize_path(readlink(WP_PLUGIN_DIR))) :
36
- dirname(wp_normalize_path(WP_PLUGIN_DIR));
37
-
38
- $relativePath = str_replace( $contentDir, '', $absolutePath);
39
-
40
- return content_url(wp_normalize_path($relativePath));
41
- }
42
- }
43
-
44
- if (! function_exists('analyst_templates_path')) {
45
- /**
46
- * Generates path to file in templates folder
47
- *
48
- * @param $file
49
- * @return string
50
- */
51
- function analyst_templates_path($file)
52
- {
53
- $path = sprintf('%s/templates/%s', realpath(__DIR__ . '/..'), trim($file, '/'));
54
-
55
- return wp_normalize_path($path);
56
- }
57
- }
58
-
59
- if (! function_exists('analyst_require_template')) {
60
- /**
61
- * Require certain template with data
62
- *
63
- * @param $file
64
- * @param array $data
65
- */
66
- function analyst_require_template($file, $data = [])
67
- {
68
- // Extract data to current scope table
69
- extract($data);
70
-
71
- require analyst_templates_path($file);
72
- }
73
- }
74
-
75
- if (! function_exists('dd')) {
76
- /**
77
- * Dump some data
78
- */
79
- function dd ()
80
- {
81
- // var_dump(func_get_args());
82
- die();
83
- }
84
- }
1
+ <?php
2
+
3
+ if (! function_exists('analyst_assets_path')) {
4
+ /**
5
+ * Generates path to file in assets folder
6
+ *
7
+ * @param $file
8
+ * @return string
9
+ */
10
+ function analyst_assets_path($file)
11
+ {
12
+ $path = sprintf('%s/assets/%s', realpath(__DIR__ . '/..'), trim($file, '/'));
13
+
14
+ return wp_normalize_path($path);
15
+ }
16
+ }
17
+
18
+
19
+ if (! function_exists('analyst_assets_url')) {
20
+ /**
21
+ * Generates url to file in assets folder
22
+ *
23
+ * @param $file
24
+ * @return string
25
+ */
26
+ function analyst_assets_url($file)
27
+ {
28
+ $absolutePath = analyst_assets_path($file);
29
+
30
+ // We can always rely on WP_PLUGIN_DIR, because that's where
31
+ // wordpress install it's plugin's. So we remove last segment
32
+ // of that path to get the content dir AKA directly where
33
+ // plugins are installed and make the magic...
34
+ $contentDir = is_link(WP_PLUGIN_DIR) ?
35
+ dirname(wp_normalize_path(readlink(WP_PLUGIN_DIR))) :
36
+ dirname(wp_normalize_path(WP_PLUGIN_DIR));
37
+
38
+ $relativePath = str_replace( $contentDir, '', $absolutePath);
39
+
40
+ return content_url(wp_normalize_path($relativePath));
41
+ }
42
+ }
43
+
44
+ if (! function_exists('analyst_templates_path')) {
45
+ /**
46
+ * Generates path to file in templates folder
47
+ *
48
+ * @param $file
49
+ * @return string
50
+ */
51
+ function analyst_templates_path($file)
52
+ {
53
+ $path = sprintf('%s/templates/%s', realpath(__DIR__ . '/..'), trim($file, '/'));
54
+
55
+ return wp_normalize_path($path);
56
+ }
57
+ }
58
+
59
+ if (! function_exists('analyst_require_template')) {
60
+ /**
61
+ * Require certain template with data
62
+ *
63
+ * @param $file
64
+ * @param array $data
65
+ */
66
+ function analyst_require_template($file, $data = [])
67
+ {
68
+ // Extract data to current scope table
69
+ extract($data);
70
+
71
+ require analyst_templates_path($file);
72
+ }
73
+ }
74
+
75
+ if (! function_exists('dd')) {
76
+ /**
77
+ * Dump some data
78
+ */
79
+ function dd ()
80
+ {
81
+ // var_dump(func_get_args());
82
+ die();
83
+ }
84
+ }
analyst/version.php CHANGED
@@ -1,15 +1,15 @@
1
- <?php
2
-
3
- return array(
4
- // The sdk version
5
- 'sdk' => '1.3.30',
6
-
7
- // Minimum supported WordPress version
8
- 'wp' => '4.7',
9
-
10
- // Supported PHP version
11
- 'php' => '5.4',
12
-
13
- // Path to current SDK$
14
- 'path' => __DIR__,
15
- );
1
+ <?php
2
+
3
+ return array(
4
+ // The sdk version
5
+ 'sdk' => '1.3.30',
6
+
7
+ // Minimum supported WordPress version
8
+ 'wp' => '4.7',
9
+
10
+ // Supported PHP version
11
+ 'php' => '5.4',
12
+
13
+ // Path to current SDK$
14
+ 'path' => __DIR__,
15
+ );
css/sfsi-admin-style.css CHANGED
@@ -1,5323 +1,5306 @@
1
- @charset "utf-8";
2
- @font-face {
3
- font-family: helveticabold;
4
- src: url(fonts/helvetica_bold_0-webfont.eot);
5
- src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
6
- font-weight: 400;
7
- font-style: normal;
8
- }
9
- @font-face {
10
- font-family: helveticaregular;
11
- src: url(fonts/helvetica_0-webfont.eot);
12
- src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
13
- font-weight: 400;
14
- font-style: normal;
15
- }
16
- @font-face {
17
- font-family: helveticaneue-light;
18
- src: url(fonts/helveticaneue-light.eot);
19
- src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'),
20
- url(fonts/helveticaneue-light.woff) format('woff'),
21
- url(fonts/helveticaneue-light.ttf) format('truetype'),
22
- url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
23
- font-weight: 400;
24
- font-style: normal;
25
- }
26
- body {
27
- margin: 0;
28
- padding: 0;
29
- }
30
- .sfsi_mainContainer {
31
- font-family: helveticaregular;
32
- }
33
- .sfsi_mainContainer h1,
34
- .sfsi_mainContainer h2,
35
- .sfsi_mainContainer h3,
36
- .sfsi_mainContainer h4,
37
- .sfsi_mainContainer h5,
38
- .sfsi_mainContainer h6,
39
- .sfsi_mainContainer li,
40
- .sfsi_mainContainer p,
41
- .sfsi_mainContainer ul {
42
- margin: 0;
43
- padding: 0;
44
- font-weight: 400;
45
- }
46
- .sfsi_mainContainer img {
47
- border: 0;
48
- vertical-align: middle;
49
- }
50
- .main_contant p,
51
- .ui-accordion .ui-accordion-header {
52
- /*font-family: helveticaregular;*/
53
- font-family: 'helveticaneue-light';
54
- }
55
- .sfsi_mainContainer input,
56
- .sfsi_mainContainer select {
57
- outline: 0;
58
- }
59
- .wapper {
60
- padding: 30px 40px 40px 40px;
61
- display: block;
62
- background: #f1f1f1;
63
- }
64
- .main_contant {
65
- margin: 0;
66
- padding: 20px 0 0 0;
67
- width: 100%;
68
- float: left;
69
- }
70
- .main_contant h1 {
71
- padding: 0;
72
- color: #1a1d20;
73
- font-family: helveticabold;
74
- font-size: 28px;
75
- }
76
- .main_contant p {
77
- padding: 0;
78
- color: #414951;
79
- font-size: 17px;
80
- line-height: 26px;
81
- }
82
- .main_contant p span {
83
- text-decoration: underline;
84
- font-family: helveticabold;
85
- }
86
- a#save_all_settings {
87
- padding: 15px 10px;
88
- }
89
- #accordion p,
90
- #accordion1 p {
91
- color: #5a6570;
92
- text-align: left;
93
- /*font-family: helveticaregular;*/
94
- font-family: 'helveticaneue-light';
95
- font-size: 17px;
96
- line-height: 26px;
97
- padding-top: 19px;
98
- }
99
- #accordion p:first-child,
100
- #accordion1 p:first-child {
101
- padding-top: 5px;
102
-
103
- /* padding-bottom: 10px;*/
104
-
105
- padding-bottom: 5px;
106
- }
107
- #accordion h4,
108
- #accordion1 h4 {
109
- margin: 0;
110
- padding: 30px 0 0;
111
- color: #414951 !important;
112
- font-size: 20px;
113
- line-height: 22px;
114
- font-family: helveticaregular;
115
- }
116
- #accordion1 h4.sfsi_dsplyatend {
117
- width: 47%;
118
- float: left;
119
- }
120
- #accordion h4:first-child,
121
- #accordion1 h4:first-child {
122
- padding-top: 0;
123
- }
124
- .tab1,
125
- .tab2,
126
- .tab3,
127
- .tab4,
128
- .tab5,
129
- .tab6,
130
- .tab7 {
131
- color: #5a6570;
132
- text-align: left;
133
- font-family: helveticaneue-light;
134
- font-size: 18px;
135
- line-height: 26px;
136
- }
137
-
138
- /*Admin menu*/
139
- ul#adminmenu li.toplevel_page_sfsi-options div.wp-menu-image {
140
- display: none;
141
- }
142
- #adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options {
143
- padding: 0 0 0 38px;
144
- font-family: Arial, Helvetica, sans-serif !important;
145
-
146
- /* font-family: helveticabold; */
147
- }
148
- ul#adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options {
149
- color: #e12522;
150
- transition: 0s;
151
- background: url(images/left_log_icn.png) 6px 15px no-repeat #000;
152
- background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
153
- color: #e12522;
154
- font-family: Arial, Helvetica, sans-serif !important;
155
-
156
- }
157
- ul#adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options:hover {
158
- background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
159
- color: #e12522;
160
-
161
- }
162
-
163
- ul#adminmenu li.toplevel_page_sfsi-options a.current,
164
- ul#adminmenu li.toplevel_page_sfsi-options a.current:hover {
165
- background: url(images/left_log_icn.png) 6px 15px no-repeat #000000;
166
- /*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
167
- color: #e12522;
168
- }
169
- /*Tab1*/
170
- .tab1 ul.icn_listing {
171
- list-style: none;
172
- overflow: hidden;
173
- border-top: #e7e8eb solid 1px;
174
- margin: 35px 0 0;
175
- }
176
- .tab1 ul.icn_listing li {
177
- border-bottom: #eaebed solid 1px;
178
- padding: 11px 0 11px 8px;
179
- float: left;
180
- width: 100%
181
- }
182
- ul.icn_listing li .tb_4_ck {
183
- float: left;
184
- margin: 10px 0 0;
185
- }
186
- .tab1 ul.icn_listing li .custom,
187
- .tab1 ul.icn_listing li .sfsicls_email,
188
- .tab1 ul.icn_listing li .sfsicls_facebook,
189
- .tab1 ul.icn_listing li .sfsicls_instagram,
190
- .tab1 ul.icn_listing li .sfsicls_telegram,
191
- .tab1 ul.icn_listing li .sfsicls_vk,
192
- .tab1 ul.icn_listing li .sfsicls_ok,
193
- .tab1 ul.icn_listing li .sfsicls_wechat,
194
- .tab1 ul.icn_listing li .sfsicls_weibo,
195
- .sfsicls_linkdin,
196
- .tab1 ul.icn_listing li .sfsicls_pinterest,
197
- .tab1 ul.icn_listing li .sfsicls_rs_s,
198
- .tab1 ul.icn_listing li .sfsicls_share,
199
- .tab1 ul.icn_listing li .sfsicls_twt,
200
- .tab1 ul.icn_listing li .sfsicls_utube {
201
- background: url(../images/tab_1_icn_list.png) no-repeat;
202
- float: left;
203
- padding: 0 0 0 59px;
204
- margin: 0 0 0 17px;
205
- height: 52px;
206
- line-height: 51px;
207
- font-family: helveticaregular;
208
- font-size: 22px;
209
- }
210
- .tab1 ul.icn_listing li .sfsicls_telegram {
211
- background: url(../images/icons_theme/default/default_telegram.png) no-repeat;
212
- background-size: contain;
213
- }
214
- .tab1 ul.icn_listing li .sfsicls_vk {
215
- background: url(../images/icons_theme/default/default_vk.png) no-repeat;
216
- background-size: contain;
217
- }
218
- .tab1 ul.icn_listing li .sfsicls_ok {
219
- background: url(../images/icons_theme/default/default_ok.png) no-repeat;
220
- background-size: contain;
221
- }
222
- .tab1 ul.icn_listing li .sfsicls_wechat {
223
- background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
224
- background-size: contain;
225
- }
226
- .tab1 ul.icn_listing li .sfsicls_weibo {
227
- background: url(../images/icons_theme/default/default_weibo.png) no-repeat;
228
- background-size: contain;
229
- }
230
-
231
- .tab1 ul.icn_listing li .sfsicls_rs_s {
232
- background-position: 0 0;
233
- color: #f7941d;
234
- }
235
- .tab1 ul.icn_listing li .sfsicls_email {
236
- background-position: 0 -73px;
237
- color: #d1c800;
238
- }
239
- .tab1 ul.icn_listing li .sfsicls_facebook {
240
- background-position: 0 -145px;
241
- color: #004088;
242
- }
243
- .tab1 ul.icn_listing li .sfsicls_twt {
244
- background-position: 0 -221px;
245
- color: #00abe3;
246
- }
247
-
248
- .tab1 ul.icn_listing li .sfsicls_share {
249
- background-position: 0 -372px;
250
- color: #ef4746;
251
- }
252
- .tab1 ul.icn_listing li .sfsicls_utube {
253
- background-position: 0 -448px;
254
- color: #f07963;
255
- }
256
- .tab1 ul.icn_listing li .sfsicls_linkdin {
257
- background-position: 0 -548px;
258
- color: #1e88c9;
259
- }
260
- .tab1 ul.icn_listing li .sfsicls_pinterest {
261
- background-position: 0 -623px;
262
- color: #f15f5d;
263
- }
264
- .tab1 ul.icn_listing li .sfsicls_instagram {
265
- background-position: 0 -781px;
266
- color: #369;
267
- }
268
- .tab1 ul.icn_listing li .custom {
269
- background-position: 0 -702px;
270
- color: #5a6570;
271
- }
272
- .tab1 ul.icn_listing li .right_info {
273
- width: 70%;
274
- float: right;
275
- font-family: helveticaregular;
276
- margin-right: 13px;
277
- }
278
- ul.icn_listing li .right_info a {
279
- text-decoration: underline;
280
- color: #a4a9ad;
281
- font-size: 16px;
282
- }
283
- .tab1 .tab_2_sav {
284
- padding-top: 30px;
285
- }
286
- /*Tab2*/
287
- .tab2 {
288
- overflow: hidden;
289
- }
290
- .tab2 .rss_url_row {
291
- width: 100%;
292
- float: left;
293
- margin: 0 0 10px;
294
- }
295
- .tab2 .rss_url_row h4 {
296
- float: left;
297
- line-height: 43px;
298
- }
299
- .tab2 .inr_cont input.add,
300
- .tab2 .inr_cont textarea.add_txt,
301
- .tab2 .rss_url_row input.add {
302
- width: 363px;
303
- float: left;
304
- background: #e5e5e5;
305
- box-shadow: 2px 2px 3px #dcdcdc inset;
306
- border: 0;
307
- padding: 12px 10px 11px;
308
- margin-left: 10px;
309
- }
310
- .tab2 .rss_url_row a.rit_link {
311
- float: left;
312
- margin: 10px 0 0 16px;
313
- font-size: 17px;
314
- }
315
- .tab2 .row {
316
- float: left;
317
- border-top: 2px solid #f2f3f4;
318
- clear: both;
319
- padding: 0 0 15px;
320
- width: 100%
321
- }
322
- .tab2 .row .tab_2_email_sec {
323
- list-style: none;
324
- margin: 17px 0 0;
325
- overflow: hidden;
326
- }
327
- .row ul.tab_2_email_sec li {
328
- float: left;
329
- margin-right: 10px;
330
- width: 32%;
331
- }
332
- .row ul.tab_2_email_sec li label span {
333
- font-size: 15px;
334
- color: #808080;
335
- width: 100%;
336
- float: left;
337
- }
338
- .row ul.tab_2_email_sec:first-child {
339
- margin-right: 2%
340
- }
341
- .tab2 .row h2.sfsicls_email,
342
- .tab2 .row h2.sfsicls_facebook,
343
- .tab2 .row h2.sfsicls_telegram,
344
- .tab2 .row h2.sfsicls_vk,
345
- .tab2 .row h2.sfsicls_ok,
346
- .tab2 .row h2.sfsicls_wechat,
347
- .tab2 .row h2.sfsicls_weibo,
348
- .tab2 .row h2.sfsicls_instagram,
349
- .tab2 .row h2.sfsicls_linkdin,
350
- .tab2 .row h2.sfsicls_pinterest,
351
- .tab2 .row h2.sfsicls_rs_s,
352
- .tab2 .row h2.sfsicls_share,
353
- .tab2 .row h2.sfsicls_twt,
354
- .tab2 .row h2.sfsicls_utube {
355
- background: url(../images/tab_1_icn_list.png) no-repeat;
356
- padding: 0 0 0 70px;
357
- margin: 15px 0 7px 21px;
358
- height: 52px;
359
- line-height: 51px;
360
- font-family: helveticaregular;
361
- font-size: 22px;
362
- }
363
- .tab2 .row h2.sfsicls_rs_s {
364
- background-position: 0 0;
365
- color: #f7941d;
366
- }
367
- .tab2 .row h2.sfsicls_telegram {
368
- background: url(../images/icons_theme/default/default_telegram.png) no-repeat;
369
- background-size: contain;
370
- }
371
- .tab2 .row h2.sfsicls_vk {
372
- background: url(../images/icons_theme/default/default_vk.png) no-repeat;
373
- background-size: contain;
374
- }
375
- .tab2 .row h2.sfsicls_ok {
376
- background: url(../images/icons_theme/default/default_ok.png) no-repeat;
377
- background-size: contain;
378
- }
379
- .tab2 .row h2.sfsicls_wechat {
380
- background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
381
- background-size: contain;
382
- }
383
- .tab2 .row h2.sfsicls_weibo {
384
- background: url(../images/icons_theme/default/default_weibo.png) no-repeat;
385
- background-size: contain;
386
- }
387
- .tab2 .row h2.sfsicls_email {
388
- background-position: 0 -71px;
389
- color: #d1c800;
390
- }
391
- .tab2 .row h2.sfsicls_facebook {
392
- background-position: 0 -145px;
393
- color: #004088;
394
- }
395
- .tab2 .row h2.sfsicls_twt {
396
- background-position: 0 -221px;
397
- color: #00abe3;
398
- }
399
-
400
- .tab2 .row h2.sfsicls_share {
401
- background-position: 0 -372px;
402
- color: #ef4746;
403
- }
404
- .tab2 .row h2.sfsicls_utube {
405
- background-position: 0 -448px;
406
- color: #f07963;
407
- }
408
- .tab2 .row h2.sfsicls_linkdin {
409
- background-position: 0 -548px;
410
- color: #1e88c9;
411
- width: 100%;
412
- }
413
- .tab2 .row h2.sfsicls_pinterest {
414
- background-position: 0 -623px;
415
- color: #f15f5d;
416
- }
417
- .tab2 .row h2.sfsicls_instagram {
418
- background-position: 0 -781px;
419
- color: #369;
420
- }
421
- .tab2 .inr_cont {
422
- margin: 0 0 12px 94px;
423
- }
424
- ul.tab_2_email_sec .sf_arow {
425
- width: 52px;
426
- height: 52px;
427
- float: left;
428
- background: url(../images/sf_arow_icn.png) no-repeat;
429
- margin: 0 8px 0 6px;
430
- }
431
- ul.tab_2_email_sec .email_icn {
432
- background: url(../images/tab_1_icn_list.png) 0 -71px no-repeat;
433
- width: 52px;
434
- height: 52px;
435
- float: left;
436
- margin: 0 8px;
437
- }
438
- ul.tab_2_email_sec .subscribe_icn {
439
- background: url(../images/tab_1_icn_list.png) 0 -860px no-repeat;
440
- width: 52px;
441
- height: 52px;
442
- float: left;
443
- margin: 0 0 0 5px;
444
- }
445
- ul.tab_2_email_sec li .radio {
446
- float: left;
447
- margin: 8px 0 0;
448
- }
449
- .row ul.tab_2_email_sec li label {
450
- margin: 13px 0 0 7px;
451
- font-size: 16px;
452
- float: left;
453
- width: 160px;
454
- }
455
- /*Tab 3*/
456
- .icns_tab_3 .row_10_1,
457
- .icns_tab_3 .row_10_10,
458
- .icns_tab_3 .row_10_11,
459
- .icns_tab_3 .row_10_2,
460
- .icns_tab_3 .row_10_3,
461
- .icns_tab_3 .row_10_4,
462
- .icns_tab_3 .row_10_5,
463
- .icns_tab_3 .row_10_6,
464
- .icns_tab_3 .row_10_7,
465
- .icns_tab_3 .row_10_8,
466
- .icns_tab_3 .row_10_9,
467
- .icns_tab_3 .row_11_1,
468
- .icns_tab_3 .row_11_10,
469
- .icns_tab_3 .row_11_11,
470
- .icns_tab_3 .row_11_2,
471
- .icns_tab_3 .row_11_3,
472
- .icns_tab_3 .row_11_4,
473
- .icns_tab_3 .row_11_5,
474
- .icns_tab_3 .row_11_6,
475
- .icns_tab_3 .row_11_7,
476
- .icns_tab_3 .row_11_8,
477
- .icns_tab_3 .row_11_9,
478
- .icns_tab_3 .row_12_1,
479
- .icns_tab_3 .row_12_10,
480
- .icns_tab_3 .row_12_11,
481
- .icns_tab_3 .row_12_2,
482
- .icns_tab_3 .row_12_3,
483
- .icns_tab_3 .row_12_4,
484
- .icns_tab_3 .row_12_5,
485
- .icns_tab_3 .row_12_6,
486
- .icns_tab_3 .row_12_7,
487
- .icns_tab_3 .row_12_8,
488
- .icns_tab_3 .row_12_9,
489
- .icns_tab_3 .row_13_1,
490
- .icns_tab_3 .row_13_10,
491
- .icns_tab_3 .row_13_11,
492
- .icns_tab_3 .row_13_2,
493
- .icns_tab_3 .row_13_3,
494
- .icns_tab_3 .row_13_4,
495
- .icns_tab_3 .row_13_5,
496
- .icns_tab_3 .row_13_6,
497
- .icns_tab_3 .row_13_7,
498
- .icns_tab_3 .row_13_8,
499
- .icns_tab_3 .row_13_9,
500
- .icns_tab_3 .row_14_1,
501
- .icns_tab_3 .row_14_10,
502
- .icns_tab_3 .row_14_11,
503
- .icns_tab_3 .row_14_2,
504
- .icns_tab_3 .row_14_3,
505
- .icns_tab_3 .row_14_4,
506
- .icns_tab_3 .row_14_5,
507
- .icns_tab_3 .row_14_6,
508
- .icns_tab_3 .row_14_7,
509
- .icns_tab_3 .row_14_8,
510
- .icns_tab_3 .row_14_9,
511
- .icns_tab_3 .row_15_1,
512
- .icns_tab_3 .row_15_10,
513
- .icns_tab_3 .row_15_11,
514
- .icns_tab_3 .row_15_2,
515
- .icns_tab_3 .row_15_3,
516
- .icns_tab_3 .row_15_4,
517
- .icns_tab_3 .row_15_5,
518
- .icns_tab_3 .row_15_6,
519
- .icns_tab_3 .row_15_7,
520
- .icns_tab_3 .row_15_8,
521
- .icns_tab_3 .row_15_9,
522
- .icns_tab_3 .row_16_1,
523
- .icns_tab_3 .row_16_10,
524
- .icns_tab_3 .row_16_11,
525
- .icns_tab_3 .row_16_2,
526
- .icns_tab_3 .row_16_3,
527
- .icns_tab_3 .row_16_4,
528
- .icns_tab_3 .row_16_5,
529
- .icns_tab_3 .row_16_6,
530
- .icns_tab_3 .row_16_7,
531
- .icns_tab_3 .row_16_8,
532
- .icns_tab_3 .row_16_9,
533
- .icns_tab_3 .row_1_1,
534
- .icns_tab_3 .row_1_10,
535
- .icns_tab_3 .row_1_11,
536
- .icns_tab_3 .row_1_14,
537
- .icns_tab_3 .row_1_2,
538
- .icns_tab_3 .row_1_3,
539
- .icns_tab_3 .row_1_4,
540
- .icns_tab_3 .row_1_5,
541
- .icns_tab_3 .row_1_6,
542
- .icns_tab_3 .row_1_7,
543
- .icns_tab_3 .row_1_8,
544
- .icns_tab_3 .row_1_9,
545
- .icns_tab_3 .row_2_1,
546
- .icns_tab_3 .row_2_10,
547
- .icns_tab_3 .row_2_11,
548
- .icns_tab_3 .row_2_14,
549
- .icns_tab_3 .row_2_2,
550
- .icns_tab_3 .row_2_3,
551
- .icns_tab_3 .row_2_4,
552
- .icns_tab_3 .row_2_5,
553
- .icns_tab_3 .row_2_6,
554
- .icns_tab_3 .row_2_7,
555
- .icns_tab_3 .row_2_8,
556
- .icns_tab_3 .row_2_9,
557
- .icns_tab_3 .row_3_1,
558
- .icns_tab_3 .row_3_10,
559
- .icns_tab_3 .row_3_11,
560
- .icns_tab_3 .row_3_14,
561
- .icns_tab_3 .row_3_2,
562
- .icns_tab_3 .row_3_3,
563
- .icns_tab_3 .row_3_4,
564
- .icns_tab_3 .row_3_5,
565
- .icns_tab_3 .row_3_6,
566
- .icns_tab_3 .row_3_7,
567
- .icns_tab_3 .row_3_8,
568
- .icns_tab_3 .row_3_9,
569
- .icns_tab_3 .row_4_1,
570
- .icns_tab_3 .row_4_10,
571
- .icns_tab_3 .row_4_11,
572
- .icns_tab_3 .row_4_14,
573
- .icns_tab_3 .row_4_2,
574
- .icns_tab_3 .row_4_3,
575
- .icns_tab_3 .row_4_4,
576
- .icns_tab_3 .row_4_5,
577
- .icns_tab_3 .row_4_6,
578
- .icns_tab_3 .row_4_7,
579
- .icns_tab_3 .row_4_8,
580
- .icns_tab_3 .row_4_9,
581
- .icns_tab_3 .row_5_1,
582
- .icns_tab_3 .row_5_10,
583
- .icns_tab_3 .row_5_11,
584
- .icns_tab_3 .row_5_14,
585
- .icns_tab_3 .row_5_2,
586
- .icns_tab_3 .row_5_3,
587
- .icns_tab_3 .row_5_4,
588
- .icns_tab_3 .row_5_5,
589
- .icns_tab_3 .row_5_6,
590
- .icns_tab_3 .row_5_7,
591
- .icns_tab_3 .row_5_8,
592
- .icns_tab_3 .row_5_9,
593
- .icns_tab_3 .row_6_1,
594
- .icns_tab_3 .row_6_10,
595
- .icns_tab_3 .row_6_11,
596
- .icns_tab_3 .row_6_14,
597
- .icns_tab_3 .row_6_2,
598
- .icns_tab_3 .row_6_3,
599
- .icns_tab_3 .row_6_4,
600
- .icns_tab_3 .row_6_5,
601
- .icns_tab_3 .row_6_6,
602
- .icns_tab_3 .row_6_7,
603
- .icns_tab_3 .row_6_8,
604
- .icns_tab_3 .row_6_9,
605
- .icns_tab_3 .row_7_1,
606
- .icns_tab_3 .row_7_10,
607
- .icns_tab_3 .row_7_11,
608
- .icns_tab_3 .row_7_2,
609
- .icns_tab_3 .row_7_3,
610
- .icns_tab_3 .row_7_4,
611
- .icns_tab_3 .row_7_5,
612
- .icns_tab_3 .row_7_6,
613
- .icns_tab_3 .row_7_7,
614
- .icns_tab_3 .row_7_8,
615
- .icns_tab_3 .row_7_9,
616
- .icns_tab_3 .row_8_1,
617
- .icns_tab_3 .row_8_10,
618
- .icns_tab_3 .row_8_11,
619
- .icns_tab_3 .row_8_2,
620
- .icns_tab_3 .row_8_3,
621
- .icns_tab_3 .row_8_4,
622
- .icns_tab_3 .row_8_5,
623
- .icns_tab_3 .row_8_6,
624
- .icns_tab_3 .row_8_7,
625
- .icns_tab_3 .row_8_8,
626
- .icns_tab_3 .row_8_9,
627
- .icns_tab_3 .row_9_1,
628
- .icns_tab_3 .row_9_10,
629
- .icns_tab_3 .row_9_11,
630
- .icns_tab_3 .row_9_2,
631
- .icns_tab_3 .row_9_3,
632
- .icns_tab_3 .row_9_4,
633
- .icns_tab_3 .row_9_5,
634
- .icns_tab_3 .row_9_6,
635
- .icns_tab_3 .row_9_7,
636
- .icns_tab_3 .row_9_8,
637
- .icns_tab_3 .row_9_9,
638
- .icns_tab_3 .row_17_1,
639
- .icns_tab_3 .row_17_2,
640
- .icns_tab_3 .row_17_3,
641
- .icns_tab_3 .row_17_4,
642
- .icns_tab_3 .row_17_5,
643
- .icns_tab_3 .row_17_6,
644
- .icns_tab_3 .row_17_7,
645
- .icns_tab_3 .row_17_8,
646
- .icns_tab_3 .row_17_9,
647
- .icns_tab_3 .row_17_10,
648
- .icns_tab_3 .row_17_14,
649
- .icns_tab_3 .row_17_15,
650
- .icns_tab_3 .row_17_16,
651
- .icns_tab_3 .row_17_17,
652
- .icns_tab_3 .row_17_18,
653
- .icns_tab_3 .row_17_11,
654
- .icns_tab_3 .row_7_14,
655
- .icns_tab_3 .row_8_14,
656
- .icns_tab_3 .row_9_14,
657
- .icns_tab_3 .row_10_14,
658
- .icns_tab_3 .row_11_14,
659
- .icns_tab_3 .row_12_14,
660
- .icns_tab_3 .row_13_14,
661
- .icns_tab_3 .row_14_14,
662
- .icns_tab_3 .row_15_22,
663
- .icns_tab_3 .row_16_22,
664
- .icns_tab_3 .row_17_22,
665
- .icns_tab_3 .row_17_15,
666
- .icns_tab_3 .row_17_16,
667
- .icns_tab_3 .row_17_17,
668
- .icns_tab_3 .row_1_15,
669
- .icns_tab_3 .row_2_15,
670
- .icns_tab_3 .row_3_15,
671
- .icns_tab_3 .row_4_15,
672
- .icns_tab_3 .row_5_15,
673
- .icns_tab_3 .row_6_15,
674
- .icns_tab_3 .row_7_15,
675
- .icns_tab_3 .row_8_15,
676
- .icns_tab_3 .row_9_15,
677
- .icns_tab_3 .row_10_15,
678
- .icns_tab_3 .row_11_15,
679
- .icns_tab_3 .row_12_15,
680
- .icns_tab_3 .row_13_15,
681
- .icns_tab_3 .row_14_15,
682
- .icns_tab_3 .row_15_15,
683
- .icns_tab_3 .row_16_15,
684
-
685
- .icns_tab_3 .row_1_16,
686
- .icns_tab_3 .row_2_16,
687
- .icns_tab_3 .row_3_16,
688
- .icns_tab_3 .row_4_16,
689
- .icns_tab_3 .row_5_16,
690
- .icns_tab_3 .row_6_16,
691
- .icns_tab_3 .row_7_16,
692
- .icns_tab_3 .row_8_16,
693
- .icns_tab_3 .row_9_16,
694
- .icns_tab_3 .row_10_16,
695
- .icns_tab_3 .row_11_16,
696
- .icns_tab_3 .row_12_16,
697
- .icns_tab_3 .row_13_16,
698
- .icns_tab_3 .row_14_16,
699
- .icns_tab_3 .row_15_16,
700
- .icns_tab_3 .row_16_16,
701
-
702
- .icns_tab_3 .row_1_17,
703
- .icns_tab_3 .row_2_17,
704
- .icns_tab_3 .row_3_17,
705
- .icns_tab_3 .row_4_17,
706
- .icns_tab_3 .row_5_17,
707
- .icns_tab_3 .row_6_17,
708
- .icns_tab_3 .row_7_17,
709
- .icns_tab_3 .row_8_17,
710
- .icns_tab_3 .row_9_17,
711
- .icns_tab_3 .row_10_17,
712
- .icns_tab_3 .row_11_17,
713
- .icns_tab_3 .row_12_17,
714
- .icns_tab_3 .row_13_17,
715
- .icns_tab_3 .row_14_17,
716
- .icns_tab_3 .row_15_17,
717
- .icns_tab_3 .row_16_17,
718
-
719
- .icns_tab_3 .row_1_18,
720
- .icns_tab_3 .row_2_18,
721
- .icns_tab_3 .row_3_18,
722
- .icns_tab_3 .row_4_18,
723
- .icns_tab_3 .row_5_18,
724
- .icns_tab_3 .row_6_18,
725
- .icns_tab_3 .row_7_18,
726
- .icns_tab_3 .row_8_18,
727
- .icns_tab_3 .row_9_18,
728
- .icns_tab_3 .row_10_18,
729
- .icns_tab_3 .row_11_18,
730
- .icns_tab_3 .row_12_18,
731
- .icns_tab_3 .row_13_18,
732
- .icns_tab_3 .row_14_18,
733
- .icns_tab_3 .row_15_18,
734
- .icns_tab_3 .row_16_18,
735
- .icns_tab_3 .row_17_18,
736
- .icns_tab_3 .row_15_14,
737
- .icns_tab_3 .row_16_14 {
738
- background: url(../images/tab_3_icns.png) no-repeat;
739
- width: 53px;
740
- height: 52px;
741
- float: left;
742
- margin: 0 4px 0 0;
743
- }
744
- .icns_tab_3 .row_1_1 {
745
- background-position: -1px 0;
746
- }
747
- .icns_tab_3 .row_1_2 {
748
- background-position: -60px 0;
749
- }
750
- .icns_tab_3 .row_1_3 {
751
- background-position: -118px 0;
752
- }
753
- .icns_tab_3 .row_1_4 {
754
- background-position: -176px 0;
755
- }
756
- .icns_tab_3 .row_1_5 {
757
- background-position: -235px 0;
758
- }
759
- .icns_tab_3 .row_1_6 {
760
- background-position: -293px 0;
761
- }
762
- .icns_tab_3 .row_1_7 {
763
- background-position: -350px 0;
764
- }
765
- .icns_tab_3 .row_1_8 {
766
- background-position: -409px 0;
767
- }
768
- .icns_tab_3 .row_1_9 {
769
- background-position: -467px 0;
770
- }
771
- .icns_tab_3 .row_1_10 {
772
- background-position: -526px 0;
773
- }
774
- .icns_tab_3 .row_1_11 {
775
- background-position: -711px 0;
776
- }
777
-
778
- .icns_tab_3 .row_1_14 {
779
- background-position: -773px 0;
780
- }
781
- .icns_tab_3 .row_1_15 {
782
- background-position: -838px 0;
783
- }
784
- .icns_tab_3 .row_1_16 {
785
- background-position: -909px 0;
786
- }
787
- .icns_tab_3 .row_1_17 {
788
- background-position: -977px 0;
789
- }
790
- .icns_tab_3 .row_1_18 {
791
- background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
792
- background-size: contain;
793
- }.icns_tab_3 .row_2_1 {
794
- background-position: 0 -74px;
795
- }
796
- .icns_tab_3 .row_2_2 {
797
- background-position: -60px -74px;
798
- }
799
- .icns_tab_3 .row_2_3 {
800
- background-position: -118px -74px;
801
- }
802
- .icns_tab_3 .row_2_4 {
803
- background-position: -176px -74px;
804
- }
805
- .icns_tab_3 .row_2_5 {
806
- background-position: -235px -74px;
807
- }
808
- .icns_tab_3 .row_2_6 {
809
- background-position: -293px -74px;
810
- }
811
- .icns_tab_3 .row_2_7 {
812
- background-position: -350px -74px;
813
- }
814
- .icns_tab_3 .row_2_8 {
815
- background-position: -409px -74px;
816
- }
817
- .icns_tab_3 .row_2_9 {
818
- background-position: -467px -74px;
819
- }
820
- .icns_tab_3 .row_2_10 {
821
- background-position: -526px -74px;
822
- }
823
- .icns_tab_3 .row_2_11 {
824
- background-position: -711px -74px;
825
- }
826
- .icns_tab_3 .row_2_14 {
827
- background-position: -773px -74px;
828
- }
829
- .icns_tab_3 .row_2_15 {
830
- background-position: -838px -74px;
831
- }
832
- .icns_tab_3 .row_2_16 {
833
- background-position: -909px -74px;
834
- }
835
- .icns_tab_3 .row_2_17 {
836
- background-position: -977px -74px;
837
- }
838
- .icns_tab_3 .row_2_18 {
839
- background: url(../images/icons_theme/flat/flat_wechat.png) no-repeat;
840
- background-size: contain;
841
- }
842
- .icns_tab_3 .row_3_1 {
843
- background-position: 0 -146px;
844
- }
845
- .icns_tab_3 .row_3_2 {
846
- background-position: -60px -146px;
847
- }
848
- .icns_tab_3 .row_3_3 {
849
- background-position: -118px -146px;
850
- }
851
- .icns_tab_3 .row_3_4 {
852
- background-position: -176px -146px;
853
- }
854
- .icns_tab_3 .row_3_5 {
855
- background-position: -235px -146px;
856
- }
857
- .icns_tab_3 .row_3_6 {
858
- background-position: -293px -146px;
859
- }
860
- .icns_tab_3 .row_3_7 {
861
- background-position: -350px -146px;
862
- }
863
- .icns_tab_3 .row_3_8 {
864
- background-position: -409px -146px;
865
- }
866
- .icns_tab_3 .row_3_9 {
867
- background-position: -467px -146px;
868
- }
869
- .icns_tab_3 .row_3_10 {
870
- background-position: -526px -146px;
871
- }
872
- .icns_tab_3 .row_3_11 {
873
- background-position: -711px -147px;
874
- }
875
- .icns_tab_3 .row_3_14 {
876
- background-position: -773px -147px;
877
- }
878
- .icns_tab_3 .row_3_15 {
879
- background-position: -838px -147px;
880
- }
881
- .icns_tab_3 .row_3_16 {
882
- background-position: -909px -147px;
883
- }
884
- .icns_tab_3 .row_3_17 {
885
- background-position: -977px -147px;
886
- }
887
- .icns_tab_3 .row_3_18 {
888
- background: url(../images/icons_theme/thin/thin_wechat.png) no-repeat;
889
- background-size: contain;
890
- }
891
- .icns_tab_3 .row_4_1 {
892
- background-position: 0 -222px;
893
- }
894
- .icns_tab_3 .row_4_2 {
895
- background-position: -60px -222px;
896
- }
897
- .icns_tab_3 .row_4_3 {
898
- background-position: -118px -222px;
899
- }
900
- .icns_tab_3 .row_4_4 {
901
- background-position: -176px -222px;
902
- }
903
- .icns_tab_3 .row_4_5 {
904
- background-position: -235px -222px;
905
- }
906
- .icns_tab_3 .row_4_6 {
907
- background-position: -293px -222px;
908
- }
909
- .icns_tab_3 .row_4_7 {
910
- background-position: -350px -222px;
911
- }
912
- .icns_tab_3 .row_4_8 {
913
- background-position: -409px -222px;
914
- }
915
- .icns_tab_3 .row_4_9 {
916
- background-position: -467px -222px;
917
- }
918
- .icns_tab_3 .row_4_10 {
919
- background-position: -526px -222px;
920
- }
921
- .icns_tab_3 .row_4_11 {
922
- background-position: -711px -222px;
923
- }
924
- .icns_tab_3 .row_4_14 {
925
- background-position: -773px -222px;
926
- }
927
- .icns_tab_3 .row_4_15 {
928
- background-position: -838px -222px;
929
- }
930
- .icns_tab_3 .row_4_16 {
931
- background-position: -909px -222px;
932
- }
933
- .icns_tab_3 .row_4_17 {
934
- background-position: -977px -222px;
935
- }
936
- .icns_tab_3 .row_4_18 {
937
- background: url(../images/icons_theme/cute/cute_wechat.png) no-repeat;
938
- background-size: contain;
939
- }
940
- .icns_tab_3 .row_5_1 {
941
- background-position: 0 -296px;
942
- }
943
- .icns_tab_3 .row_5_2 {
944
- background-position: -60px -296px;
945
- }
946
- .icns_tab_3 .row_5_3 {
947
- background-position: -118px -296px;
948
- }
949
- .icns_tab_3 .row_5_4 {
950
- background-position: -176px -296px;
951
- }
952
- .icns_tab_3 .row_5_5 {
953
- background-position: -235px -296px;
954
- }
955
- .icns_tab_3 .row_5_6 {
956
- background-position: -293px -296px;
957
- }
958
- .icns_tab_3 .row_5_7 {
959
- background-position: -350px -296px;
960
- }
961
- .icns_tab_3 .row_5_8 {
962
- background-position: -409px -296px;
963
- }
964
- .icns_tab_3 .row_5_9 {
965
- background-position: -467px -296px;
966
- }
967
- .icns_tab_3 .row_5_10 {
968
- background-position: -526px -296px;
969
- }
970
- .icns_tab_3 .row_5_11 {
971
- background-position: -711px -296px;
972
- }
973
- .icns_tab_3 .row_5_14 {
974
- background-position: -773px -296px;
975
- }
976
- .icns_tab_3 .row_5_15 {
977
- background-position: -838px -296px;
978
- }
979
- .icns_tab_3 .row_5_16 {
980
- background-position: -909px -296px;
981
- }
982
- .icns_tab_3 .row_5_17 {
983
- background-position: -977px -296px;
984
- }
985
- .icns_tab_3 .row_5_18 {
986
- background: url(../images/icons_theme/cubes/cubes_wechat.png);
987
- background-size: contain;
988
- }
989
- .icns_tab_3 .row_6_1 {
990
- background-position: 0 -370px;
991
- }
992
- .icns_tab_3 .row_6_2 {
993
- background-position: -60px -370px;
994
- }
995
- .icns_tab_3 .row_6_3 {
996
- background-position: -118px -370px;
997
- }
998
- .icns_tab_3 .row_6_4 {
999
- background-position: -176px -370px;
1000
- }
1001
- .icns_tab_3 .row_6_5 {
1002
- background-position: -235px -370px;
1003
- }
1004
- .icns_tab_3 .row_6_6 {
1005
- background-position: -293px -370px;
1006
- }
1007
- .icns_tab_3 .row_6_7 {
1008
- background-position: -350px -370px;
1009
- }
1010
- .icns_tab_3 .row_6_8 {
1011
- background-position: -409px -370px;
1012
- }
1013
- .icns_tab_3 .row_6_9 {
1014
- background-position: -468px -370px;
1015
- }
1016
- .icns_tab_3 .row_6_10 {
1017
- background-position: -526px -370px;
1018
- }
1019
- .icns_tab_3 .row_6_11 {
1020
- background-position: -711px -370px;
1021
- }
1022
- .icns_tab_3 .row_6_14 {
1023
- background-position: -773px -370px;
1024
- }
1025
- .icns_tab_3 .row_6_15 {
1026
- background-position: -838px -370px;
1027
- }
1028
- .icns_tab_3 .row_6_16 {
1029
- background-position: -909px -370px;
1030
- }
1031
- .icns_tab_3 .row_6_17 {
1032
- background-position: -977px -370px;
1033
- }
1034
- .icns_tab_3 .row_6_18 {
1035
- background: url(../images/icons_theme/chrome_blue/chrome_blue_wechat.png);
1036
- background-size: contain;
1037
- }
1038
- .icns_tab_3 .row_7_1 {
1039
- background-position: 0 -444px;
1040
- }
1041
- .icns_tab_3 .row_7_2 {
1042
- background-position: -60px -444px;
1043
- }
1044
- .icns_tab_3 .row_7_3 {
1045
- background-position: -118px -444px;
1046
- }
1047
- .icns_tab_3 .row_7_4 {
1048
- background-position: -176px -444px;
1049
- }
1050
- .icns_tab_3 .row_7_5 {
1051
- background-position: -235px -444px;
1052
- }
1053
- .icns_tab_3 .row_7_6 {
1054
- background-position: -293px -444px;
1055
- }
1056
- .icns_tab_3 .row_7_7 {
1057
- background-position: -350px -444px;
1058
- }
1059
- .icns_tab_3 .row_7_8 {
1060
- background-position: -409px -444px;
1061
- }
1062
- .icns_tab_3 .row_7_9 {
1063
- background-position: -466px -444px;
1064
- }
1065
- .icns_tab_3 .row_7_10 {
1066
- background-position: -526px -444px;
1067
- }
1068
- .icns_tab_3 .row_7_11 {
1069
- background-position: -711px -444px;
1070
- }
1071
- .icns_tab_3 .row_7_14 {
1072
- background-position: -773px -444px;
1073
- }
1074
- .icns_tab_3 .row_7_15 {
1075
- background-position: -838px -444px;
1076
- }
1077
- .icns_tab_3 .row_7_16 {
1078
- background-position: -909px -444px;
1079
- }
1080
- .icns_tab_3 .row_7_17 {
1081
- background-position: -977px -444px;
1082
- }
1083
- .icns_tab_3 .row_7_18 {
1084
- background: url(../images/icons_theme/chrome_grey/chrome_grey_wechat.png);
1085
- background-size: contain;
1086
- }
1087
- .icns_tab_3 .row_8_1 {
1088
- background-position: 0 -518px;
1089
- }
1090
- .icns_tab_3 .row_8_2 {
1091
- background-position: -60px -518px;
1092
- }
1093
- .icns_tab_3 .row_8_3 {
1094
- background-position: -118px -518px;
1095
- }
1096
- .icns_tab_3 .row_8_4 {
1097
- background-position: -176px -518px;
1098
- }
1099
- .icns_tab_3 .row_8_5 {
1100
- background-position: -235px -518px;
1101
- }
1102
- .icns_tab_3 .row_8_6 {
1103
- background-position: -293px -518px;
1104
- }
1105
- .icns_tab_3 .row_8_7 {
1106
- background-position: -350px -518px;
1107
- }
1108
- .icns_tab_3 .row_8_8 {
1109
- background-position: -409px -518px;
1110
- }
1111
- .icns_tab_3 .row_8_9 {
1112
- background-position: -467px -518px;
1113
- }
1114
- .icns_tab_3 .row_8_10 {
1115
- background-position: -526px -518px;
1116
- }
1117
- .icns_tab_3 .row_8_11 {
1118
- background-position: -711px -518px;
1119
- }
1120
- .icns_tab_3 .row_8_14 {
1121
- background-position: -773px -518px;
1122
- }
1123
- .icns_tab_3 .row_8_15 {
1124
- background-position: -838px -518px;
1125
- }
1126
- .icns_tab_3 .row_8_16 {
1127
- background-position: -909px -518px;
1128
- }
1129
- .icns_tab_3 .row_8_17 {
1130
- background-position: -977px -518px;
1131
- }
1132
- .icns_tab_3 .row_8_18 {
1133
- background: url(../images/icons_theme/splash/splash_wechat.png);
1134
- background-size: contain;
1135
- }
1136
- .icns_tab_3 .row_9_1 {
1137
- background-position: 0 -592px;
1138
- }
1139
- .icns_tab_3 .row_9_2 {
1140
- background-position: -60px -592px;
1141
- }
1142
- .icns_tab_3 .row_9_3 {
1143
- background-position: -118px -592px;
1144
- }
1145
- .icns_tab_3 .row_9_4 {
1146
- background-position: -176px -592px;
1147
- }
1148
- .icns_tab_3 .row_9_5 {
1149
- background-position: -235px -592px;
1150
- }
1151
- .icns_tab_3 .row_9_6 {
1152
- background-position: -293px -592px;
1153
- }
1154
- .icns_tab_3 .row_9_7 {
1155
- background-position: -350px -592px;
1156
- }
1157
- .icns_tab_3 .row_9_8 {
1158
- background-position: -409px -592px;
1159
- }
1160
- .icns_tab_3 .row_9_9 {
1161
- background-position: -467px -592px;
1162
- }
1163
- .icns_tab_3 .row_9_10 {
1164
- background-position: -526px -592px;
1165
- }
1166
- .icns_tab_3 .row_9_11 {
1167
- background-position: -711px -592px;
1168
- }
1169
- .icns_tab_3 .row_9_14 {
1170
- background-position: -773px -592px;
1171
- }
1172
- .icns_tab_3 .row_9_15 {
1173
- background-position: -838px -592px;
1174
- }
1175
- .icns_tab_3 .row_9_16 {
1176
- background-position: -909px -592px;
1177
- }
1178
- .icns_tab_3 .row_9_17 {
1179
- background-position: -977px -592px;
1180
- }
1181
- .icns_tab_3 .row_9_18 {
1182
- background: url(../images/icons_theme/orange/orange_wechat.png);
1183
- background-size: contain;
1184
- }
1185
- .icns_tab_3 .row_10_1 {
1186
- background-position: 0 -666px;
1187
- }
1188
- .icns_tab_3 .row_10_2 {
1189
- background-position: -60px -666px;
1190
- }
1191
- .icns_tab_3 .row_10_3 {
1192
- background-position: -118px -666px;
1193
- }
1194
- .icns_tab_3 .row_10_4 {
1195
- background-position: -176px -666px;
1196
- }
1197
- .icns_tab_3 .row_10_5 {
1198
- background-position: -235px -666px;
1199
- }
1200
- .icns_tab_3 .row_10_6 {
1201
- background-position: -293px -666px;
1202
- }
1203
- .icns_tab_3 .row_10_7 {
1204
- background-position: -350px -666px;
1205
- }
1206
- .icns_tab_3 .row_10_8 {
1207
- background-position: -409px -666px;
1208
- }
1209
- .icns_tab_3 .row_10_9 {
1210
- background-position: -467px -666px;
1211
- }
1212
- .icns_tab_3 .row_10_10 {
1213
- background-position: -526px -666px;
1214
- }
1215
- .icns_tab_3 .row_10_11 {
1216
- background-position: -711px -666px;
1217
- }
1218
- .icns_tab_3 .row_10_14 {
1219
- background-position: -773px -666px;
1220
- }
1221
- .icns_tab_3 .row_10_15 {
1222
- background-position: -838px -666px;
1223
- }
1224
- .icns_tab_3 .row_10_16 {
1225
- background-position: -909px -666px;
1226
- }
1227
- .icns_tab_3 .row_10_17 {
1228
- background-position: -977px -666px;
1229
- }
1230
- .icns_tab_3 .row_10_18 {
1231
- background: url(../images/icons_theme/crystal/crystal_wechat.png);
1232
- background-size: contain;
1233
- }
1234
- .icns_tab_3 .row_11_1 {
1235
- background-position: 0 -740px;
1236
- }
1237
- .icns_tab_3 .row_11_2 {
1238
- background-position: -60px -740px;
1239
- }
1240
- .icns_tab_3 .row_11_3 {
1241
- background-position: -118px -740px;
1242
- }
1243
- .icns_tab_3 .row_11_4 {
1244
- background-position: -176px -740px;
1245
- }
1246
- .icns_tab_3 .row_11_5 {
1247
- background-position: -235px -740px;
1248
- }
1249
- .icns_tab_3 .row_11_6 {
1250
- background-position: -293px -740px;
1251
- }
1252
- .icns_tab_3 .row_11_7 {
1253
- background-position: -350px -740px;
1254
- }
1255
- .icns_tab_3 .row_11_8 {
1256
- background-position: -409px -740px;
1257
- }
1258
- .icns_tab_3 .row_11_9 {
1259
- background-position: -467px -740px;
1260
- }
1261
- .icns_tab_3 .row_11_10 {
1262
- background-position: -526px -740px;
1263
- }
1264
- .icns_tab_3 .row_11_11 {
1265
- background-position: -711px -740px;
1266
- }
1267
- .icns_tab_3 .row_11_14 {
1268
- background-position: -773px -740px;
1269
- }
1270
- .icns_tab_3 .row_11_15 {
1271
- background-position: -838px -740px;
1272
- }
1273
- .icns_tab_3 .row_11_16 {
1274
- background-position: -909px -740px;
1275
- }
1276
- .icns_tab_3 .row_11_17 {
1277
- background-position: -977px -740px;
1278
- }
1279
- .icns_tab_3 .row_11_18 {
1280
- background: url(../images/icons_theme/glossy/glossy_wechat.png);
1281
- background-size: contain;
1282
- }
1283
- .icns_tab_3 .row_12_1 {
1284
- background-position: 0 -814px;
1285
- }
1286
- .icns_tab_3 .row_12_2 {
1287
- background-position: -60px -814px;
1288
- }
1289
- .icns_tab_3 .row_12_3 {
1290
- background-position: -118px -814px;
1291
- }
1292
- .icns_tab_3 .row_12_4 {
1293
- background-position: -176px -814px;
1294
- }
1295
- .icns_tab_3 .row_12_5 {
1296
- background-position: -235px -814px;
1297
- }
1298
- .icns_tab_3 .row_12_6 {
1299
- background-position: -293px -814px;
1300
- }
1301
- .icns_tab_3 .row_12_7 {
1302
- background-position: -350px -814px;
1303
- }
1304
- .icns_tab_3 .row_12_8 {
1305
- background-position: -409px -814px;
1306
- }
1307
- .icns_tab_3 .row_12_9 {
1308
- background-position: -467px -814px;
1309
- }
1310
- .icns_tab_3 .row_12_10 {
1311
- background-position: -526px -814px;
1312
- }
1313
- .icns_tab_3 .row_12_11 {
1314
- background-position: -711px -814px;
1315
- }
1316
- .icns_tab_3 .row_12_14 {
1317
- background-position: -773px -814px;
1318
- }
1319
- .icns_tab_3 .row_12_15 {
1320
- background-position: -838px -814px;
1321
- }
1322
- .icns_tab_3 .row_12_16 {
1323
- background-position: -909px -814px;
1324
- }
1325
- .icns_tab_3 .row_12_17 {
1326
- background-position: -977px -814px;
1327
- }
1328
- .icns_tab_3 .row_12_18 {
1329
- background: url(../images/icons_theme/black/black_wechat.png);
1330
- background-size: contain;
1331
- }
1332
- .icns_tab_3 .row_13_1 {
1333
- background-position: 0 -888px;
1334
- }
1335
- .icns_tab_3 .row_13_2 {
1336
- background-position: -60px -888px;
1337
- }
1338
- .icns_tab_3 .row_13_3 {
1339
- background-position: -118px -888px;
1340
- }
1341
- .icns_tab_3 .row_13_4 {
1342
- background-position: -176px -888px;
1343
- }
1344
- .icns_tab_3 .row_13_5 {
1345
- background-position: -235px -888px;
1346
- }
1347
- .icns_tab_3 .row_13_6 {
1348
- background-position: -293px -888px;
1349
- }
1350
- .icns_tab_3 .row_13_7 {
1351
- background-position: -350px -888px;
1352
- }
1353
- .icns_tab_3 .row_13_8 {
1354
- background-position: -409px -888px;
1355
- }
1356
- .icns_tab_3 .row_13_9 {
1357
- background-position: -467px -888px;
1358
- }
1359
- .icns_tab_3 .row_13_10 {
1360
- background-position: -526px -888px;
1361
- }
1362
- .icns_tab_3 .row_13_11 {
1363
- background-position: -711px -888px;
1364
- }
1365
- .icns_tab_3 .row_13_14 {
1366
- background-position: -773px -888px;
1367
- }
1368
- .icns_tab_3 .row_13_15 {
1369
- background-position: -838px -888px;
1370
- }
1371
- .icns_tab_3 .row_13_16 {
1372
- background-position: -909px -888px;
1373
- }
1374
- .icns_tab_3 .row_13_17 {
1375
- background-position: -977px -888px;
1376
- }
1377
- .icns_tab_3 .row_13_18 {
1378
- background: url(../images/icons_theme/silver/silver_wechat.png);
1379
-
1380
- background-size: contain;
1381
- }
1382
- .icns_tab_3 .row_14_1 {
1383
- background-position: 0 -962px;
1384
- }
1385
- .icns_tab_3 .row_14_2 {
1386
- background-position: -60px -962px;
1387
- }
1388
- .icns_tab_3 .row_14_3 {
1389
- background-position: -118px -962px;
1390
- }
1391
- .icns_tab_3 .row_14_4 {
1392
- background-position: -176px -962px;
1393
- }
1394
- .icns_tab_3 .row_14_5 {
1395
- background-position: -235px -962px;
1396
- }
1397
- .icns_tab_3 .row_14_6 {
1398
- background-position: -293px -962px;
1399
- }
1400
- .icns_tab_3 .row_14_7 {
1401
- background-position: -350px -962px;
1402
- }
1403
- .icns_tab_3 .row_14_8 {
1404
- background-position: -409px -962px;
1405
- }
1406
- .icns_tab_3 .row_14_9 {
1407
- background-position: -467px -962px;
1408
- }
1409
- .icns_tab_3 .row_14_10 {
1410
- background-position: -526px -962px;
1411
- }
1412
- .icns_tab_3 .row_14_11 {
1413
- background-position: -711px -962px;
1414
- }
1415
- .icns_tab_3 .row_14_14 {
1416
- background-position: -773px -962px;
1417
- }
1418
- .icns_tab_3 .row_14_15 {
1419
- background-position: -838px -962px;
1420
- }
1421
- .icns_tab_3 .row_14_16 {
1422
- background-position: -909px -962px;
1423
- }
1424
- .icns_tab_3 .row_14_17 {
1425
- background-position: -977px -962px;
1426
- }
1427
- .icns_tab_3 .row_14_18 {
1428
- background: url(../images/icons_theme/shaded_dark/shaded_dark_wechat.png);
1429
-
1430
- background-size: contain;
1431
- }
1432
- .icns_tab_3 .row_15_1 {
1433
- background-position: 0 -1036px;
1434
- }
1435
- .icns_tab_3 .row_15_2 {
1436
- background-position: -60px -1036px;
1437
- }
1438
- .icns_tab_3 .row_15_3 {
1439
- background-position: -118px -1036px;
1440
- }
1441
- .icns_tab_3 .row_15_4 {
1442
- background-position: -176px -1036px;
1443
- }
1444
- .icns_tab_3 .row_15_5 {
1445
- background-position: -235px -1036px;
1446
- }
1447
- .icns_tab_3 .row_15_6 {
1448
- background-position: -293px -1036px;
1449
- }
1450
- .icns_tab_3 .row_15_7 {
1451
- background-position: -350px -1036px;
1452
- }
1453
- .icns_tab_3 .row_15_8 {
1454
- background-position: -409px -1036px;
1455
- }
1456
- .icns_tab_3 .row_15_9 {
1457
- background-position: -467px -1036px;
1458
- }
1459
- .icns_tab_3 .row_15_10 {
1460
- background-position: -526px -1036px;
1461
- }
1462
- .icns_tab_3 .row_15_11 {
1463
- background-position: -711px -1036px;
1464
- }
1465
- .icns_tab_3 .row_15_14 {
1466
- background-position: -773px -1036px;
1467
- }
1468
- .icns_tab_3 .row_15_15 {
1469
- background-position: -838px -1036px;
1470
- }
1471
- .icns_tab_3 .row_15_16 {
1472
- background-position: -909px -1036px;
1473
- }
1474
- .icns_tab_3 .row_15_17 {
1475
- background-position: -977px -1036px;
1476
- }
1477
- .icns_tab_3 .row_15_18 {
1478
- background: url(../images/icons_theme/shaded_light/shaded_light_wechat.png);
1479
- background-size: contain;
1480
- }
1481
- .icns_tab_3 .row_16_1 {
1482
- background-position: 0 -1109px;
1483
- }
1484
- .icns_tab_3 .row_16_2 {
1485
- background-position: -60px -1109px;
1486
- }
1487
- .icns_tab_3 .row_16_3 {
1488
- background-position: -118px -1109px;
1489
- }
1490
- .icns_tab_3 .row_16_4 {
1491
- background-position: -176px -1109px;
1492
- }
1493
- .icns_tab_3 .row_16_5 {
1494
- background-position: -235px -1109px;
1495
- }
1496
- .icns_tab_3 .row_16_6 {
1497
- background-position: -293px -1109px;
1498
- }
1499
- .icns_tab_3 .row_16_7 {
1500
- background-position: -350px -1109px;
1501
- }
1502
- .icns_tab_3 .row_16_8 {
1503
- background-position: -409px -1109px;
1504
- }
1505
- .icns_tab_3 .row_16_9 {
1506
- background-position: -467px -1109px;
1507
- }
1508
- .icns_tab_3 .row_16_10 {
1509
- background-position: -526px -1109px;
1510
- }
1511
- .icns_tab_3 .row_16_11 {
1512
- background-position: -711px -1109px;
1513
- }
1514
- .icns_tab_3 .row_16_14 {
1515
- background-position: -773px -1109px;
1516
- }
1517
- .icns_tab_3 .row_16_15 {
1518
- background-position: -838px -1109px;
1519
- }
1520
- .icns_tab_3 .row_16_16 {
1521
- background-position: -909px -1109px;
1522
- }
1523
- .icns_tab_3 .row_16_17 {
1524
- background-position: -977px -1109px;
1525
- }
1526
- .icns_tab_3 .row_16_18 {
1527
- background: url(../images/icons_theme/transparent/transparent_wechat.png);
1528
- background-size: contain;
1529
- }
1530
-
1531
- /*tab 6 css*/
1532
- .tab6 .social_icon_like1 {
1533
- width: 100%;
1534
- float: left;
1535
- margin: 0;
1536
- text-align: center;
1537
- }
1538
- .tab6 .social_icon_like1 ul {
1539
- margin: 0;
1540
- padding: 0;
1541
- list-style: none;
1542
- text-align: center;
1543
- }
1544
- .tab6 .social_icon_like1 li {
1545
- margin: 0 10px 0 0;
1546
- padding: 0;
1547
- width: auto;
1548
- list-style: none;
1549
- display: inline-block;
1550
- }
1551
- .tab6 .social_icon_like1 li span {
1552
- margin: 0;
1553
- width: 44px;
1554
- display: block;
1555
- background: url(../images/count_bg1.png) no-repeat;
1556
- height: 22px;
1557
- overflow: hidden;
1558
- padding: 2px 2px 2px 10px;
1559
- font-family: helveticaregular;
1560
- font-size: 15px;
1561
- text-align: center;
1562
- line-height: 20px;
1563
- color: #5a6570;
1564
- float: left;
1565
- }
1566
- .tab6 .social_icon_like1 li img {
1567
- float: left;
1568
- margin-right: 5px;
1569
- display: block;
1570
- }
1571
- .tab6 .social_icon_like1 li a {
1572
- color: #5a6570;
1573
- text-decoration: none;
1574
- display: block;
1575
- }
1576
- .tab6 ul.usually {
1577
- margin: 7px 0 6px 30px;
1578
- padding: 0;
1579
- list-style: none;
1580
- }
1581
- .tab6 ul.usually li {
1582
- margin: 0;
1583
- padding: 0;
1584
- width: auto;
1585
- list-style: none;
1586
- text-align: left;
1587
- font-size: 17px;
1588
- color: #5a6570;
1589
- }
1590
- .tab6 ul.enough_waffling {
1591
- margin: 9px 0 0;
1592
- padding: 0;
1593
- list-style: none;
1594
- text-align: center;
1595
- }
1596
- .tab6 ul.enough_waffling li {
1597
- margin: 0 22px;
1598
- padding: 0;
1599
- list-style: none;
1600
- display: inline-block;
1601
- }
1602
- .tab6 ul.enough_waffling li span {
1603
- float: left;
1604
- }
1605
- .tab6 ul.enough_waffling li label {
1606
- margin: 0 0 0 20px;
1607
- float: left;
1608
- font-family: helveticaregular;
1609
- font-size: 18px;
1610
- font-weight: 400;
1611
- text-align: center;
1612
- line-height: 38px;
1613
- color: #5a6570;
1614
- }
1615
- .tab6 .row {
1616
- border-top: 1px solid #eaebee;
1617
- margin-top: 25px;
1618
- padding-top: 15px;
1619
- clear: both;
1620
- display: block;
1621
- width: 100%;
1622
- float: left;
1623
- font-family: "Helvetica CE 35 Thin";
1624
- line-height: 42px;
1625
- }
1626
- .tab6 .options {
1627
- margin-top: 25px;
1628
- clear: both;
1629
- width: 100%;
1630
- float: left;
1631
- }
1632
- .tab6 .options label {
1633
- width: 345px;
1634
- float: left;
1635
- font-size: 17px;
1636
- /*font-family: helveticaregular;*/
1637
- font-family: 'helveticaneue-light';
1638
- color: #5a6570;
1639
- line-height: 46px;
1640
- }
1641
- .tab6 .options label.first {
1642
- /*font-family: helveticaregular;*/
1643
-
1644
- font-family: 'helveticaneue-light';
1645
- font-size: 17px;
1646
- }
1647
- .tab6 .options input {
1648
- width: 308px;
1649
- float: left;
1650
- background: #e5e5e5;
1651
- box-shadow: 2px 2px 3px #dcdcdc inset;
1652
- border: 0;
1653
- padding: 10px;
1654
- }
1655
- .tab6 .options .field {
1656
-
1657
- float: left;
1658
- position: relative;
1659
- }
1660
- .tab6 .options .field .select {
1661
- width: 207px;
1662
- background: url(../images/select_bg1.jpg) no-repeat;
1663
- display: block;
1664
- padding-left: 17px;
1665
- font-family: helveticaregular;
1666
- }.tab6 .cstmdsplyulwpr .radio_section.tb_4_ck { float: left;
1667
-
1668
- width: auto;
1669
- }
1670
- .tab6 .social_icon_like1 li span.checkbox {
1671
- background: rgba(0, 0, 0, 0) url(../images/check_bg.jpg) no-repeat scroll 0 0;
1672
- display: inherit;
1673
- height: 31px;
1674
- width: 31px;
1675
- }
1676
- .tab6 .cstmdsplyulwpr a {
1677
- margin-top: 3px;
1678
- float: left;
1679
- }
1680
- /*tab 7 css*/
1681
- .tab7 h3 {
1682
- margin: 14px 0 6px;
1683
- padding: 0;
1684
- /* color: #a7a9ac;*/
1685
- color: #414951;
1686
- /* font-family: helveticaregular;*/
1687
- font-family: 'helveticaneue-light';
1688
- /* font-size: 20px;*/
1689
- font-size: 18px;
1690
- text-align: left;
1691
- }
1692
-
1693
- .tab7 .close {
1694
- position: absolute;
1695
- right: 18px;
1696
- top: 18px;
1697
- }
1698
- .tab7 .text_options {
1699
- width: 500px;
1700
- float: left;
1701
- }
1702
- .tab7 .text_options.layout {
1703
- margin-left: -25px;
1704
- }
1705
- .tab7 .row_tab {
1706
- margin-top: 10px;
1707
- width: 100%;
1708
- float: left;
1709
- }
1710
- .tab7 .text_options label {
1711
- width: 121px;
1712
- float: left;
1713
- line-height: 46px;
1714
- font-size: 18px;
1715
- }
1716
- .tab7 .text_options.layout label {
1717
- line-height: 20px;
1718
- font-size: 18px;
1719
- }
1720
- .tab7 .text_options.layout label.border {
1721
- line-height: 46px;
1722
- }
1723
- .tab7 .text_options input {
1724
- width: 274px;
1725
- float: left;
1726
- background: #e5e5e5;
1727
- box-shadow: 2px 2px 3px #dcdcdc inset;
1728
- border: 0;
1729
- padding: 13px 10px;
1730
- font-size: 17px;
1731
- color: #5a6570;
1732
- }
1733
- .tab7 .text_options input.small {
1734
- width: 50px;
1735
- }
1736
- .tab7 .text_options .field {
1737
- width: 223px;
1738
- float: left;
1739
- position: relative;
1740
- }
1741
- .tab7 .text_options .field .select {
1742
- width: 183px;
1743
- padding-right: 21px;
1744
- height: 47px;
1745
- background: url(../images/select_bg1.jpg) no-repeat;
1746
- display: block;
1747
- padding-left: 10px;
1748
- line-height: 46px;
1749
- font-size: 17px;
1750
- color: #414951;
1751
- }
1752
- .tab7 .text_options .field select.styled {
1753
- position: absolute;
1754
- left: 0;
1755
- top: 0;
1756
- width: 213px;
1757
- line-height: 46px;
1758
- height: 46px;
1759
- }
1760
- .tab7 .color_box {
1761
- width: 40px;
1762
- height: 34px;
1763
- border: 3px solid #fff;
1764
- box-shadow: 1px 2px 2px #ccc;
1765
- float: left;
1766
- position: relative;
1767
- margin-left: 13px;
1768
- }
1769
- .tab7 .color_box1 {
1770
- width: 100%;
1771
- height: 34px;
1772
- background: #5a6570;
1773
- box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
1774
- }
1775
- .tab7 .corner {
1776
- width: 10px;
1777
- height: 10px;
1778
- background: #fff;
1779
- position: absolute;
1780
- right: 0;
1781
- bottom: 0;
1782
- }
1783
- .tab7 ul.border_shadow {
1784
- margin: 0;
1785
- padding: 5px 0 0;
1786
- list-style: none;
1787
- float: left;
1788
- width: 257px;
1789
- }
1790
- .tab7 ul.border_shadow li {
1791
- margin: 0;
1792
- padding: 0 0 0 40px;
1793
- list-style: none;
1794
- float: left;
1795
- }
1796
- .tab7 ul.border_shadow li:first-child {
1797
- padding: 0;
1798
- }
1799
- .tab7 ul.border_shadow li span {
1800
- float: left;
1801
- }
1802
- .tab7 ul.border_shadow li label {
1803
- float: left;
1804
- width: auto;
1805
- font-family: helveticaregular;
1806
- font-size: 18px;
1807
- font-weight: 400;
1808
- text-align: center;
1809
- line-height: 40px !important;
1810
- color: #5a6570;
1811
- padding: 0 0 0 20px;
1812
- }
1813
- .tab7 .row {
1814
- border-top: 1px solid #eaebee;
1815
- margin-top: 25px;
1816
- padding-top: 15px;
1817
- clear: both;
1818
- display: block;
1819
- width: 100%;
1820
- float: left;
1821
- font-family: helveticaregular;
1822
- line-height: 42px;
1823
- }
1824
- .tab7 .pop_up_show {
1825
- width: 100%;
1826
- float: left;
1827
- margin-top: 20px;
1828
- }
1829
- .tab7 .pop_up_show span {
1830
- float: left;
1831
- }
1832
- .tab7 .pop_up_show label {
1833
- float: left;
1834
- width: auto;
1835
- font-size: 18px;
1836
- font-weight: 400;
1837
- text-align: center;
1838
- line-height: 38px !important;
1839
- color: #5a6570;
1840
- padding: 0 0 0 20px;
1841
- }
1842
- .tab7 .pop_up_show input.add {
1843
- width: 257px;
1844
- float: left;
1845
- background: #e5e5e5;
1846
- box-shadow: 2px 2px 3px #dcdcdc inset;
1847
- border: 0;
1848
- padding: 10px;
1849
- margin-left: 40px;
1850
- }
1851
- .tab7 .pop_up_show input.seconds {
1852
- width: 60px;
1853
- background: #e5e5e5;
1854
- box-shadow: 2px 2px 3px #dcdcdc inset;
1855
- border: 0;
1856
- padding: 10px;
1857
- margin: 0 7px;
1858
- }
1859
- .tab7 .pop_up_show a {
1860
- text-decoration: underline;
1861
- color: #a4a9ad;
1862
- font-size: 16px;
1863
- margin-left: 20px;
1864
- }
1865
- .tab7 .pop_up_show .field {
1866
- width: 135px;
1867
- float: left;
1868
- position: relative;
1869
- margin-left: 20px;
1870
- font-size: 17px;
1871
- font-family: helveticaregular;
1872
- }
1873
- .tab7 .pop_up_show .field .select {
1874
- width: 127px;
1875
- height: 48px;
1876
- background: url(../images/select_bg.jpg) no-repeat;
1877
- display: block;
1878
- padding-left: 10px;
1879
- line-height: 46px;
1880
- font-size: 16px;
1881
- color: #5a6570;
1882
- }
1883
- .tab7 .pop_up_show .field select.styled {
1884
- position: absolute;
1885
- left: 0;
1886
- top: 0;
1887
- width: 135px;
1888
- line-height: 46px;
1889
- height: 46px;
1890
- }
1891
- /*tab 8 css*/
1892
- .tab8 .sfsi_tab8_container {
1893
- width: 100%;
1894
- float: left;
1895
- }
1896
- .tab8 .sfsi_tab8_subcontainer {
1897
- float: left;
1898
- padding: 20px 0;
1899
- width: 100%;
1900
- }
1901
- .tab8 h3.sfsi_section_title {
1902
- font-weight: bold;
1903
- }
1904
- .tab8 .like_pop_box {
1905
- width: 100%;
1906
- margin: 35px auto auto;
1907
- position: relative;
1908
- text-align: center;
1909
- }
1910
- .tab8 .like_pop_box h2 {
1911
- font-family: helveticabold;
1912
- text-align: center;
1913
- color: #414951;
1914
- font-size: 26px;
1915
- }
1916
- .tab8 .sfsi_subscribe_Popinner {
1917
- display: inline-block;
1918
- padding: 18px 20px;
1919
- -webkit-box-shadow: 0 0 5px #ccc;
1920
- border: 1px solid #ededed;
1921
- background: #FFF;
1922
- position: relative;
1923
- }
1924
- .tab8 .sfsi_subscribe_Popinner .form-overlay {
1925
- height: 100%;
1926
- left: 0;
1927
- position: absolute;
1928
- top: 0;
1929
- width: 100%;
1930
- }
1931
- .tab8 .like_pop_box .sfsi_subscribe_Popinner {
1932
- box-shadow: 0 0 5px #ccc;
1933
- }
1934
- .tab8 .like_pop_box .sfsi_subscribe_Popinner h5 {
1935
- margin: 0 0 10px;
1936
- padding: 0;
1937
- color: #414951;
1938
- font-size: 22px;
1939
- text-align: center;
1940
- }
1941
- .tab8 .sfsi_subscribe_Popinner h5 {
1942
- margin: 0 0 10px;
1943
- padding: 0;
1944
- color: #414951;
1945
- font-size: 18px;
1946
- text-align: center;
1947
- }
1948
- .tab8 .sfsi_subscription_form_field {
1949
- float: left;
1950
- margin: 5px 0;
1951
- width: 100%;
1952
- }
1953
- .tab8 .sfsi_subscription_form_field input {
1954
- padding: 10px 0px;
1955
- text-align: center;
1956
- width: 100%;
1957
- }
1958
- .tab8 .sfsi_tab8_subcontainer label.sfsi_label_text {
1959
- float: left;
1960
- margin: 10px 0;
1961
- width: 100%;
1962
- }
1963
- .tab8 ul.sfsi_form_info {
1964
- list-style: none !important;
1965
- margin-left: 32px;
1966
- }
1967
- .tab8 ul.sfsi_form_info li {
1968
- margin: 3px 0;
1969
- }
1970
- .tab8 .sfsi_subscription_html {
1971
- background-color: #e5e5e5;
1972
- float: left;
1973
- margin: 12px 0 0 30px;
1974
- width: 90%;
1975
- }
1976
- .tab8 .sfsi_seprater {
1977
- border-bottom: 1px solid #ccc;
1978
- }
1979
- .tab8 .sfsi_tab8_subcontainer h5.sfsi_section_subtitle {
1980
- float: left;
1981
- font-size: 18px;
1982
- margin: 5px 0;
1983
- width: 100%;
1984
- }
1985
- .tab8 .sfsi_left_container {
1986
- margin-top: 30px;
1987
- text-align: center;
1988
- width: 24%;
1989
- display: inline-block;
1990
- }
1991
- .tab8 .sfsi_right_container {
1992
- display: inline-block;
1993
- margin-top: 30px;
1994
- padding: 0 20px;
1995
- vertical-align: top;
1996
- width: 72%;
1997
- }
1998
- .tab8 .row_tab {
1999
- display: inline-block;
2000
- margin-bottom: 30px;
2001
- width: 100%;
2002
- }
2003
- .tab8 .row_tab label {
2004
- color: #5a6570;
2005
- font-size: 16px;
2006
- }
2007
- .tab8 .row_tab div.sfsi_field {
2008
- display: inline-block;
2009
- vertical-align: middle;
2010
- width: auto;
2011
- margin-right: 25px;
2012
- padding-top: 10px;
2013
- }
2014
- .tab8 .color_box {
2015
- width: 40px;
2016
- height: 34px;
2017
- border: 3px solid #fff;
2018
- box-shadow: 1px 2px 2px #ccc;
2019
- float: right;
2020
- position: relative;
2021
- margin-left: 13px;
2022
- }
2023
- .tab8 .color_box1 {
2024
- width: 100%;
2025
- height: 34px;
2026
- background: #5a6570;
2027
- box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
2028
- }
2029
- .tab8 .corner {
2030
- width: 10px;
2031
- height: 10px;
2032
- background: #fff;
2033
- position: absolute;
2034
- right: 0;
2035
- bottom: 0;
2036
- }
2037
- .tab8 .sfsi_right_container label {
2038
- color: #5a6570;
2039
- font-size: 18px;
2040
- }
2041
- .tab8 label.sfsi_heding {
2042
- display: inline-block;
2043
- /* font-weight: bold; */
2044
- padding-top: 10px;
2045
- width: 303px;
2046
- }
2047
- .tab8 .border_shadow {
2048
- display: inline-block;
2049
- vertical-align: top;
2050
- }
2051
- .tab8 .border_shadow li {
2052
- display: inline-block;
2053
- vertical-align: top;
2054
- padding-right: 20px;
2055
- }
2056
- .tab8 .border_shadow li span {
2057
- vertical-align: middle;
2058
- }
2059
- .tab8 .border_shadow .radio {
2060
- margin-right: 5px;
2061
- }
2062
- .tab8 .sfsi_field .rec-inp {
2063
- background: #e5e5e5 none repeat scroll 0 0;
2064
- height: 44px;
2065
- text-align: center;
2066
- width: 54px;
2067
- }
2068
- .tab8 .pix {
2069
- color: #5a6570;
2070
- font-size: 18px;
2071
- vertical-align: middle;
2072
- }
2073
- .tab8 .sfsi_heding.autowidth {
2074
- width: auto;
2075
- margin-right: 15px;
2076
- }
2077
- .tab8 .sfsi_heding.fixwidth {
2078
- width: 80px;
2079
- }
2080
- .tab8 .small {
2081
- background-color: #e5e5e5;
2082
- height: 44px;
2083
- width: 200px;
2084
- }
2085
- .tab8 .small.new-inp {
2086
- background-color: #e5e5e5;
2087
- height: 44px;
2088
- width: 277px;
2089
- }
2090
- .tab8 .small.color-code {
2091
- width: 138px !important;
2092
- }
2093
- .tab8 .select-same {
2094
- border: 1px solid #d6d6d6;
2095
- height: 47px !important;
2096
- width: 171px;
2097
- appearance: none;
2098
- -moz-appearance: none;
2099
- -webkit-appearance: none;
2100
- background-image: url(images/select-arrow.png);
2101
- background-repeat: no-repeat;
2102
- background-position: right 15px center;
2103
- }
2104
- .sfsi_mainContainer .tab8 .sfsi_same_width {
2105
- display: inline-block;
2106
- width: 100px !important;
2107
- }
2108
- .sfsi_mainContainer .tab7 .wp-picker-container input {
2109
- background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
2110
- border: 1px solid #ccc !important;
2111
- box-shadow: none !important;
2112
- float: left !important;
2113
- height: auto !important;
2114
- padding: 0 !important;
2115
- width: auto !important;
2116
- }
2117
- .sfsi_mainContainer .tab7 .wp-picker-container input[type="text"] {
2118
- padding: 3px !important;
2119
- }
2120
- .sfsi_mainContainer .tab7 .wp-picker-container input[type="button"] {
2121
- padding: 0 5px !important;
2122
- }
2123
- .sfsi_mainContainer .tab7 .wp-picker-open .wp-picker-input-wrap,
2124
- .sfsi_mainContainer .tab8 .wp-picker-open .wp-picker-input-wrap {
2125
- vertical-align: middle !important;
2126
- }
2127
- .sfsi_mainContainer .tab7 .wp-color-result,
2128
- .sfsi_mainContainer .tab8 .wp-color-result {
2129
- margin: 0 6px 0 0 !important;
2130
- }
2131
- .sfsi_mainContainer .tab7 .wp-picker-holder,
2132
- .sfsi_mainContainer .tab8 .wp-picker-holder {
2133
- position: absolute !important;
2134
- z-index: 999;
2135
- }
2136
- .sfsi_mainContainer .sfsi_subscribe_Popinner .sfsi_highlight {
2137
- border: 3px solid red !important;
2138
- }
2139
- .sfsi_mainContainer .sfsi_subscription_html xmp {
2140
- display: block;
2141
- padding: 0 10px;
2142
- white-space: pre-line;
2143
- word-wrap: break-word;
2144
- }
2145
- ul.sfsi_floaticon_margin_sec {
2146
- float: left;
2147
- width: 600px;
2148
- }
2149
- ul.sfsi_floaticon_margin_sec li {
2150
- float: left;
2151
- width: 300px;
2152
- margin-bottom: 20px;
2153
- }
2154
- ul.sfsi_floaticon_margin_sec label {
2155
- float: left;
2156
- font-size: 17px;
2157
- padding-right: 20px;
2158
- width: 65px;
2159
- }
2160
- ul.sfsi_floaticon_margin_sec li input {
2161
- background-color: #E5E5E5;
2162
- border: medium none;
2163
- box-shadow: none;
2164
- padding: 14px 8px;
2165
- width: 80px;
2166
- float: left;
2167
- }
2168
- ul.sfsi_floaticon_margin_sec li ins {
2169
- float: left;
2170
- font-size: 17px;
2171
- font-weight: 400;
2172
- margin-left: 15px;
2173
- text-decoration: none;
2174
- }
2175
- .custom-img img,
2176
- .custom_section img,
2177
- .custom_iconOrder img,
2178
- .sample_icons img {
2179
- width: 51px;
2180
- }
2181
- .cstomskins_upload span.sfsi-bgimage {
2182
- background-size: 51px 51px !important;
2183
- }
2184
-
2185
- .sfsi_feedClaimingOverlay h1 {
2186
- font-size: 22px !important;
2187
- font-weight: bolder !important;
2188
- margin-top: 7px !important;
2189
- }
2190
- .sfsi_feedClaimingOverlay input[type="email"] {
2191
- font-size: 16px;
2192
- margin: 26px 0 0;
2193
- padding: 10px 0;
2194
- text-align: center;
2195
- width: 100%;
2196
- color: #bebebe !important;
2197
- box-shadow: none;
2198
- }
2199
- .sfsi_feedClaimingOverlay input[type="email"]::-webkit-input-placeholder {
2200
- color: #bebebe !important;
2201
- }
2202
- .sfsi_feedClaimingOverlay input[type="email"]:-moz-placeholder {
2203
- /* Firefox 18- */
2204
- color: #bebebe !important;
2205
- }
2206
- .sfsi_feedClaimingOverlay input[type="email"]::-moz-placeholder {
2207
- /* Firefox 19+ */
2208
- color: #bebebe !important;
2209
- }
2210
- .sfsi_feedClaimingOverlay input[type="email"]:-ms-input-placeholder {
2211
- color: #bebebe !important;
2212
- }
2213
- .sfsi_feedClaimingOverlay .save_button {
2214
- padding: 0 !important;
2215
- width: 100%;
2216
- }
2217
- .sfsi_feedClaimingOverlay .save_button a#getMeFullAccess {
2218
- border-radius: 4px;
2219
- font-size: 18px;
2220
- font-weight: bolder;
2221
- }
2222
- .sfsi_feedClaimingOverlay .sfsicloseBtn {
2223
- right: 8px !important;
2224
- top: 8px !important;
2225
- }
2226
- .sfsi_feedClaimingOverlay p {
2227
- text-align: center !important;
2228
- font-size: 12px !important;
2229
- line-height: 23px !important;
2230
- padding: 18px 0 0 !important;
2231
- color: #bebebe !important;
2232
- }
2233
- .sfsi_feedClaimingOverlay p a {
2234
- display: inline-block;
2235
- font-size: 12px;
2236
- margin: 0;
2237
- padding: 0;
2238
- width: auto;
2239
- color: #274da3 !important;
2240
- }
2241
- .sfsi_feedClaimingOverlay .pop_up_box {
2242
- padding: 25px 30px !important;
2243
- width: 435px !important;
2244
- min-height: 220px;
2245
- }
2246
-
2247
- @media (max-width:1160px) {
2248
- .sfsi_subscription_html xmp {
2249
- display: block;
2250
- padding: 0 10px;
2251
- white-space: pre-line;
2252
- word-wrap: break-word;
2253
- }
2254
- }
2255
- @media (max-width:1350px) {
2256
- .tab8 .sfsi_left_container {
2257
- width: 100% !important;
2258
- }
2259
-
2260
- .tab8 .sfsi_right_container {
2261
- width: 100%;
2262
- }
2263
-
2264
- .tab8 .border_shadow {
2265
- margin-top: 10px;
2266
- }
2267
-
2268
- .tab8 .row_tab div.sfsi_field {
2269
- margin-bottom: 10px;
2270
- }
2271
-
2272
- }
2273
- @media (max-width:770px) {
2274
- #sfsi_form_heading_fontstyle {
2275
- margin-left: 19px !important;
2276
- margin-top: 10px !important;
2277
- }
2278
- }
2279
-
2280
- /* premium plugin features */
2281
- .tab5 .icons_prem_disc {
2282
- float: left;
2283
- padding-top: 20px;
2284
- }
2285
- .sfsi_prem_fbpgiddesc {
2286
- font-size: 14px;
2287
- padding: 4px 0 0 60px;
2288
- width: 42%;
2289
- float: right;
2290
- line-height: 22px;
2291
- color: #080808;
2292
- }
2293
- .instagram_userLi p.sfsi_shared_premium {
2294
- float: right;
2295
- width: 41%;
2296
- line-height: 20px;
2297
- color: #1f1d1d;
2298
- font-size: 13px;
2299
- }
2300
- .sfsi_facebook_pagedeasc {
2301
- font-size: 14px;
2302
- padding: 15px 0 0 60px;
2303
- width: 42%;
2304
- float: right;
2305
- line-height: 22px;
2306
- color: #080808;
2307
- }
2308
-
2309
- .sf_si_default_design ul li {
2310
- width: auto !important;
2311
- display: inline-block;
2312
- float: none !important;
2313
- }.sf_si_our_prmium_plugin-add,
2314
- .sfsi_prem_icons_added {
2315
- background: #f3faf6;
2316
- border: 1px solid #12a252;
2317
- padding: 25px 38px 35px 40px;
2318
- clear: both;
2319
- }
2320
- .sf_si_prmium_head h2 {
2321
- font-size: 26px;
2322
- color: #000;
2323
- font-weight: bold;
2324
- padding-bottom: 13px;
2325
- margin-top: 0;
2326
- }
2327
-
2328
- .sfsi_new_prmium_follw {
2329
- background: #f3faf6;
2330
- border: 1px solid #12a252;
2331
- padding: 25px 38px 35px 40px;
2332
- float: left;
2333
- clear: both;
2334
- }
2335
- .notice_custom_icons_premium.sfsi_new_prmium_follw {
2336
- margin-left: 96px;
2337
- }
2338
- .sf_si_default_design ul {
2339
- padding: 0;
2340
- margin: 0;
2341
- }
2342
- .sf_si_default_design ul li {
2343
- list-style: none;
2344
- font-size: 20px;
2345
- color: #1a1d20;
2346
- clear: both;
2347
- }
2348
- .sfsi_need_another_tell_us,
2349
- .sfsi_need_another_one_link {
2350
- clear: both;
2351
- }
2352
- .sf_si_all_features_premium a,
2353
- .sfsi_need_another_tell_us a {
2354
- color: #12a252 !important;
2355
- font-size: 18.9px;
2356
- font-weight: bold;
2357
- border-bottom: 1px solid #12a252;
2358
- text-decoration: none;
2359
- }
2360
- .sf_si_default_design ul li b {
2361
- font-weight: bold;
2362
- }
2363
- .sf_si_our_prmium_plugin-add .sf_si_prmium_head h2 {
2364
- padding-bottom: 23px;
2365
- }
2366
-
2367
- .sf_si_default_design ul li img {}
2368
- .sfsi_need_another_one_link p {
2369
- color: #c1c3c5;
2370
- font-size: 18.9px !important;
2371
- }
2372
- .sfsi_need_another_one_link p a {
2373
- color: #12a252 !important;
2374
- text-decoration: none;
2375
- }
2376
- .sfsi_brdr_box {
2377
- box-sizing: border-box;
2378
- }
2379
- .sfsi_prem_cmn_rowlisting {
2380
- width: 225px;
2381
- float: left;
2382
- margin-top: 10px;
2383
- margin-bottom: 1px;
2384
- }
2385
- .sfsi_row {
2386
- clear: both;
2387
- }
2388
- .sfsi_prem_cmn_rowlisting span {
2389
- color: #1a1d20;
2390
- font-size: 20px;
2391
- display: table-cell;
2392
- vertical-align: middle;
2393
- padding-right: 10px;
2394
- }
2395
- .sfsi_need_another_one_link {
2396
- padding: 23px 0 20px 5px;
2397
- }
2398
- .sfsi_need_another_tell_us a {
2399
- margin-left: 5px;
2400
- }
2401
- .sfsi_new_prmium_follw {
2402
- margin-top: 20px;
2403
- display: inline-block;
2404
- padding: 15px 75px 20px 24px;
2405
- float: left;
2406
- }
2407
- .sfsi_new_prmium_follw p {
2408
- margin: 0 !important;
2409
- }
2410
- .sfsi_new_prmium_follw p {
2411
- color: #1a1d20 !important;
2412
- font-size: 20px !important;
2413
- font-family: helveticaregular !important;
2414
- }
2415
- .sfsi_new_prmium_follw p a {
2416
- color: #12a252 !important;
2417
- text-decoration: none;
2418
- }
2419
- .sfsi_new_prmium_follw p b {
2420
- font-weight: bold;
2421
- color: #1a1d20 !important;
2422
- }
2423
- .sf_si_default_design ul li h4 {
2424
- color: #1a1d20 !important;
2425
- font-size: 20px !important;
2426
- font-weight: bold;
2427
- padding-bottom: 21px !important;
2428
- }
2429
- .sf_si_default_design ul li h4 span {
2430
- font-weight: normal;
2431
- }
2432
- p.sfsi_shared_premium {
2433
- color: #1a1d20 !important;
2434
- font-family: helveticaregular !important;
2435
- padding-top: 0 !important;
2436
- }
2437
- p.sfsi_shared_premium a {
2438
- text-decoration: none;
2439
- color: #00a0d2 !important;
2440
- }
2441
- p.sfsi_shared_premium b {
2442
- font-weight: bold;
2443
- }
2444
- .sfsi_fbpaget {
2445
- float: left !important;
2446
- padding: 4px 0 0 0px !important;
2447
- width: 100% !important;
2448
- margin-left: 60px;
2449
- }
2450
- .sfsi_fbpaget .sfsi_facebook_count {
2451
- width: 100% !important;
2452
- padding: 4px 0 0 0px !important;
2453
- }
2454
- .sfsi_prem_show a {
2455
- color: #0c0b0b;
2456
- margin: 2px;
2457
- }
2458
- .sfsi_prem_show {
2459
- padding-top: 140px !important;
2460
- }
2461
- .sf_si_default_design ul li b span {
2462
- font-weight: normal !important;
2463
- }
2464
- p.sfsi_prem_plu_desc a {
2465
- text-decoration: none;
2466
- color: #00a0d2 !important;
2467
- }
2468
- .sfsi_fb_popup_contain {
2469
- width: 50%;
2470
- display: inline-block;
2471
- }
2472
- .sfsi_first_icon_field,
2473
- .sfsi_second_icon_img {
2474
- display: table-cell;
2475
- vertical-align: middle;
2476
- padding: 5px 0;
2477
- }
2478
- .sfsi_first_icon_field {
2479
- width: 125px;
2480
- }
2481
- .sfsi_first_icon_field h2 {
2482
- font-size: 18px !important;
2483
- color: #1a1d20 !important;
2484
- margin: 0 !important;
2485
- font-weight: bold;
2486
- }
2487
- .sfsi_first_icon_field p {
2488
- color: #1a1d20 !important;
2489
- font-size: 12px !important;
2490
- margin: 0 !important;
2491
- padding: 0 !important;
2492
- line-height: 18px !important;
2493
- }
2494
- .sfsi_first_icon_more h2 {
2495
- font-size: 18px !important;
2496
- color: #1a1d20 !important;
2497
- margin: 0 !important;
2498
- padding-top: 17px;
2499
- padding-bottom: 22px;
2500
- }
2501
- .sfsi_cool_font_weight h2 {
2502
- font-weight: normal;
2503
- }
2504
- .sf_si_default_design ul li {
2505
- margin: 0 !important;
2506
- }
2507
- .sf_si_default_design ul li h4.sfsi_second_themedTitle {
2508
- padding-bottom: 16px !important;
2509
- }
2510
- .sfsi_mainContainer .sfsi_prem_cmn_rowlisting img {
2511
- width: 52px;
2512
- height: 52px;
2513
- }
2514
- .sfsi_icons_other_allign {
2515
- width: auto;
2516
- font-size: 15px !important;
2517
- }
2518
-
2519
- /* new notification bar css*/
2520
-
2521
- .sfsi_new_notification {
2522
- background-color: #fff;
2523
- border: 4px dashed #00c853;
2524
- margin-bottom: 30px;
2525
- width: 100%;
2526
- }
2527
- .sfsi_new_notification_header {
2528
- background-color: #e8faef;
2529
- display: -webkit-box;
2530
- display: -webkit-flex;
2531
- display: -ms-flexbox;
2532
- display: flex;
2533
- -webkit-box-align: center;
2534
- -webkit-align-items: center;
2535
- -ms-flex-align: center;
2536
- align-items: center;
2537
- -webkit-box-pack: justify;
2538
- -webkit-justify-content: space-between;
2539
- -ms-flex-pack: justify;
2540
- justify-content: space-between;
2541
- padding: 10px 0 12px 0;
2542
- }
2543
- .sfsi_new_notification_header h1 {
2544
- margin: 0;
2545
- color: #00c853;
2546
- font-size: 18px;
2547
- margin: 0 auto;
2548
- font-family: Arial, Helvetica, sans-serif;
2549
- }
2550
- .sfsi_new_notification_header h1 a {
2551
- margin: 0;
2552
- color: #00c853;
2553
- font-size: 18px;
2554
- margin: 0 auto;
2555
- font-family: Arial, Helvetica, sans-serif;
2556
- text-decoration: none;
2557
- }
2558
- .sfsi_new_notification_cross {
2559
- float: right;
2560
- font-size: 18px;
2561
- font-weight: 700;
2562
- line-height: 1;
2563
- color: #00c853;
2564
- font-family: Arial, Helvetica, sans-serif;
2565
- margin-right: 15px;
2566
- cursor: pointer;
2567
- }
2568
- .sfsi_new_notification_body {
2569
- width: 100%;
2570
- background-color: #fff;
2571
- display: -webkit-box;
2572
- display: -webkit-flex;
2573
- display: -ms-flexbox;
2574
- display: flex;
2575
- -webkit-box-align: center;
2576
- -webkit-align-items: center;
2577
- -ms-flex-align: center;
2578
- align-items: center;
2579
- -webkit-box-pack: justify;
2580
- -webkit-justify-content: space-between;
2581
- -ms-flex-pack: justify;
2582
- justify-content: space-between;
2583
- }
2584
- .sfsi_new_notification_image {
2585
- margin: 0 20px 0px 20px;
2586
- width: 100%;
2587
- text-align: center;
2588
- overflow: hidden;
2589
- }
2590
- .sfsi_new_notification_image img {
2591
- width: auto;
2592
- }
2593
- .sfsi_new_notification_learnmore {
2594
- float: right;
2595
- }
2596
- .sfsi_new_notification_learnmore {
2597
- background-color: #00c853;
2598
- display: block;
2599
- text-decoration: none;
2600
- text-align: center;
2601
- font-size: 20px;
2602
- font-family: Arial, Helvetica, sans-serif;
2603
- width: 150px;
2604
- margin-bottom: -4px;
2605
- margin-right: -4px;
2606
- position: relative;
2607
- color: #fff;
2608
- padding: 70px 10px;
2609
- }
2610
- .sfsi_new_notification_body_link a {
2611
- display: block;
2612
- text-decoration: none;
2613
- text-align: center;
2614
- font-size: 20px;
2615
- font-family: Arial, Helvetica, sans-serif;
2616
- color: #fff;
2617
- }
2618
- .tab4 .sfsi_tokenGenerateButton {
2619
- margin: 25px 0;
2620
- }
2621
- .tab4 .sfsi_tokenGenerateButton p {
2622
- display: inline-block;
2623
- margin-bottom: 11px;
2624
- vertical-align: middle;
2625
- width: 100%;
2626
- }
2627
- .tab4 .sfsi_tokenGenerateButton a {
2628
- background-color: #12a252;
2629
- color: #fff;
2630
- padding: 10px 20px;
2631
- text-decoration: none;
2632
- }
2633
-
2634
- .tab4 .sfsi_instagramFields {
2635
- float: left;
2636
- margin-bottom: 12px;
2637
- /* width: 550px;*/
2638
- width: 50%;
2639
- margin-left: 60px;
2640
- }
2641
-
2642
- .tab4 .sfsi_instagramInstruction {
2643
- float: left;
2644
- margin-bottom: 12px;
2645
- /* width: 450px; */
2646
- width: 40%;
2647
- margin-left: 30px;
2648
- }
2649
- #accordion1 p {
2650
- color: #5a6570;
2651
- text-align: left;
2652
- font-family: 'helveticaneue-light';
2653
- font-size: 17px;
2654
- line-height: 26px;
2655
- padding-top: 19px;
2656
- }
2657
- .specify_counts .listing .sfsi_instagramInstruction ul {
2658
- margin: 0;
2659
- padding: 0;
2660
- list-style: none;
2661
- text-align: left;
2662
- }
2663
- .specify_counts .listing .sfsi_instagramInstruction ul {
2664
- padding-left: 14px !important;
2665
- }
2666
- .specify_counts .listing .sfsi_instagramInstruction li {
2667
- font-size: 13px !important;
2668
- line-height: 20px !important;
2669
- list-style: outside none bullets !important;
2670
- margin-top: 5px !important;
2671
- padding: 0 !important;
2672
- }
2673
- /* tab2 email section */
2674
- .sfsi_service_row {
2675
- margin-right: -15px;
2676
- margin-left: -15px;
2677
- }
2678
- .sfsi_service_column {
2679
- float: left;
2680
- margin-bottom: 40px;
2681
- margin-top: 15px;
2682
- padding-left: 30px;
2683
- width: 47%;
2684
- }
2685
- .sfsi_service_column ul {
2686
- margin-left: 11% !important;
2687
- }
2688
- .sfsi_service_column ul li {
2689
- padding-bottom: 10px;
2690
- font-size: 16px;
2691
- line-height: 25px;
2692
- }
2693
- .sfsi_service_column ul li span {
2694
- color: #12a252;
2695
- }
2696
- .sfsi_service_column ul li::before {
2697
- content: url(../images/tick-icon.png);
2698
- position: relative;
2699
- top: 0px;
2700
- right: 10px;
2701
- text-indent: -22px;
2702
- float: left;
2703
- }
2704
- .sfsi_inputbtn {
2705
- clear: both;
2706
- display: block;
2707
- }
2708
- .sfsi_inputbtn input {
2709
- width: 100%;
2710
- padding: 15px 0px;
2711
- text-align: center;
2712
- margin-bottom: 10px;
2713
- }
2714
- .sfsi_email_services_text {
2715
- clear: both;
2716
- }
2717
- .sfsi_email_services_paragraph {
2718
- width: 600px;
2719
- float: left;
2720
- margin-top: 10px;
2721
- margin-bottom: 40px;
2722
- }
2723
- .sfsi_more_services_link a {
2724
- background-color: #12a252;
2725
- color: #fff !important;
2726
- padding: 20px 0px;
2727
- text-decoration: none;
2728
- text-align: center;
2729
- font-size: 20px;
2730
- display: block;
2731
- clear: both;
2732
- font-weight: bold;
2733
- }
2734
- .sfsi_subscribe_popbox_link a {
2735
- color: #00a0d2 !important;
2736
- }
2737
- .sfsi_email_services_paragraph ul {
2738
- margin-left: 11% !important;
2739
- }
2740
- .sfsi_email_services_paragraph ul li {
2741
- padding-bottom: 10px;
2742
- font-size: 16px;
2743
- }
2744
- .sfsi_email_services_paragraph ul li span {
2745
- color: #12a252;
2746
- }
2747
- .sfsi_email_services_paragraph ul li::before {
2748
- content: url(../images/tick-icon.png);
2749
- position: relative;
2750
- top: 5px;
2751
- right: 10px;
2752
- text-indent: -22px;
2753
- float: left;
2754
- }
2755
- .sfsi_email_last_paragraph {
2756
- width: 60%;
2757
- text-align: center !important;
2758
- margin: 20px auto ! important;
2759
- font-size: 16px !important;
2760
- color: #a4a9ad !important;
2761
- padding-top: 0 !important;
2762
- }
2763
- .sfsi_email_last_paragraph a {
2764
- color: #12a252 !important;
2765
- font-family: 'helveticaneue-light' !important;
2766
- }
2767
- /*new banner styles*/
2768
- .sfsi_new_notification_cat {
2769
- width: 100%;
2770
- min-height: 300px;
2771
- max-width: 700px;
2772
- }
2773
- .sfsi_new_notification_cat {
2774
- background-color: #fff;
2775
- margin: 30px auto;
2776
- width: 100%;
2777
- }
2778
- .sfsi_new_notification_header_cat {
2779
- background-color: #e8faef;
2780
- /*display: -webkit-box;
2781
- display: -webkit-flex;
2782
- display: -ms-flexbox;
2783
- display: flex;
2784
- -webkit-box-align: center;
2785
- -webkit-align-items: center;
2786
- -ms-flex-align: center;
2787
- align-items: center;
2788
- -webkit-box-pack: justify;
2789
- -webkit-justify-content: space-between;
2790
- -ms-flex-pack: justify;
2791
- justify-content: space-between;*/
2792
- padding: 21px 0 21px 0;
2793
- text-align: center;
2794
- }
2795
- .sfsi_new_notification_header_cat h1 {
2796
- margin: 0;
2797
- color: #000000;
2798
- font-size: 24px;
2799
- margin: 0 auto;
2800
- font-family: Arial, Helvetica, sans-serif;
2801
- font-weight: bold;
2802
- }
2803
- .sfsi_new_notification_header_cat h3 {
2804
- margin-top: 10px;
2805
- font-size: 16px;
2806
- color: #000000;
2807
- }
2808
- .sfsi_new_notification_header_cat h3 a {
2809
- text-decoration: none;
2810
- color: #38B54A
2811
- }
2812
- .sfsi_new_notification_header_cat h1 a {
2813
- margin: 0;
2814
- color: #00c853;
2815
- font-size: 18px;
2816
- margin: 0 auto;
2817
- font-family: Arial, Helvetica, sans-serif;
2818
- text-decoration: none;
2819
- }
2820
- .sfsi_new_notification_cross_cat {
2821
- float: right;
2822
- font-size: 18px;
2823
- font-weight: 700;
2824
- line-height: 1;
2825
- color: #000000;
2826
- font-family: Arial, Helvetica, sans-serif;
2827
- margin-right: 15px;
2828
- cursor: pointer;
2829
- margin-top: -50px;
2830
- }
2831
- .sfsi_new_notification_body_link_cat a {
2832
- display: block;
2833
- text-decoration: none;
2834
- text-align: center;
2835
- font-size: 20px;
2836
- font-family: Arial, Helvetica, sans-serif;
2837
- color: #fff;
2838
- }
2839
- .sfsi_new_notification_body_cat {
2840
- width: 100%;
2841
- background-color: #fff;
2842
- /*display: -webkit-box;
2843
- display: -webkit-flex;
2844
- display: -ms-flexbox;
2845
- display: flex;
2846
- -webkit-box-align: center;
2847
- -webkit-align-items: center;
2848
- -ms-flex-align: center;
2849
- align-items: center;
2850
- -webkit-box-pack: justify;
2851
- -webkit-justify-content: space-between;
2852
- -ms-flex-pack: justify;
2853
- justify-content: space-between;*/
2854
- }
2855
- .sfsi_new_notification_image_cat {
2856
- /* margin: 0 20px 0px 20px; */
2857
- width: 100%;
2858
- text-align: center;
2859
- overflow: hidden;
2860
- /*padding: 10px 0px;*/
2861
- }
2862
- .sfsi_new_notification_image_cat img {
2863
- width: auto;
2864
- border: 0;
2865
- vertical-align: middle;
2866
- }
2867
- .bottom_text {
2868
- background: #38B54A;
2869
- text-align: center;
2870
- padding: 15px 0px;
2871
- font-size: 18px;
2872
- font-weight: bold;
2873
- color: #fff;
2874
- }
2875
- .sfsi_new_notification_image_cat p {
2876
- color: #000000;
2877
- padding: 10px;
2878
- font-size: 16px;
2879
- }
2880
- .sfsi_new_notification_body_link_cat .tailored_icons_img {
2881
- display: block;
2882
- text-decoration: none;
2883
- text-align: center;
2884
- font-size: 20px;
2885
- font-family: Arial, Helvetica, sans-serif;
2886
- color: #fff;
2887
- margin: 28px 0px;
2888
- }
2889
- /**curl error box*/
2890
- .sfsi_curlerror {
2891
- margin: 0px 0px 10px 94px;
2892
- background: rgba(244, 67, 54, 0.08);
2893
- padding: 20px;
2894
- line-height: 20px;
2895
- }
2896
- .sfsi_curlerrorNotification .sfsi_curlerror {
2897
- background: rgba(244, 67, 54, 0.08);
2898
- padding: 20px;
2899
- line-height: 20px;
2900
- margin: 0px 0px 10px 0px;
2901
- }
2902
- .sfsi_curlerror_cross {
2903
- float: right;
2904
- text-decoration: underline;
2905
- margin-top: 10px;
2906
- }
2907
- .sfsi_curlerrortab4 a {
2908
- color: #0073aa !important;
2909
- }
2910
- .sfsi_curlerror a {
2911
- color: #0073aa !important;
2912
- }
2913
-
2914
- .social_data_post_types {
2915
- float: left;
2916
- width: 100%;
2917
- margin-top: 10px;
2918
- }
2919
- .social_data_post_types .checkbox {
2920
- float: left;
2921
- margin-top: 5px;
2922
- margin-right: 5px;
2923
- }
2924
- .social_data_post_types ul {
2925
- float: left;
2926
- margin-top: 5px;
2927
- }
2928
- .social_data_post_types li {
2929
- float: left;
2930
- min-width: 90px;
2931
- }
2932
- .social_data_post_types .radio_section.tb_4_ck {
2933
- float: left;
2934
- margin-right: 5px;
2935
- }
2936
- .social_data_post_types .radio_section.tb_4_ck .cstmdsplsub {
2937
- font-size: 16px;
2938
- }
2939
- .social_data_post_types ul {
2940
- float: left;
2941
- width: 84%;
2942
- }
2943
- .social_data_post_types .radio_section.tb_4_ck input.styled {
2944
- margin-top: 20px;
2945
- }
2946
- ul.sfsi_show_hide_section {
2947
- float: right;
2948
- width: 16%;
2949
- }
2950
-
2951
- .sfsi_social_sharing {
2952
- margin-bottom: 15px;
2953
- float: left;
2954
- width: 51%;
2955
- }
2956
- .socialPostTypesUl span {
2957
- pointer-events: none
2958
- }
2959
- .bannerPopupQue6 {
2960
- width: 98% !important;
2961
- float: left !important;
2962
- padding: 15px !important;
2963
- }
2964
- .pinterest_section .sfsi_new_prmium_follw a {
2965
- font-weight: bold !important;
2966
- }
2967
- #accordion,
2968
- #accordion1 {
2969
- float: left;
2970
- clear: both;
2971
- width: 100%;
2972
- }
2973
- h2.optional {
2974
- float: left;
2975
- clear: both;
2976
- margin-top: 25px !important;
2977
- }
2978
-
2979
- /*support forum*/
2980
- .welcometext {
2981
- float: left;
2982
- width: 72%;
2983
- }
2984
- .welcometext p {
2985
- margin-bottom: 8px !important;
2986
- margin-top: 15px !important;
2987
- font-size: 16px;
2988
- }
2989
- .supportforum {
2990
- float: right;
2991
- width: auto;
2992
- background: #fff;
2993
- text-align: center;
2994
- padding: 0 20px 3px 7px;
2995
- }
2996
- .support-container p {
2997
- font-family: helveticaregular !important;
2998
- }
2999
- .support-container {
3000
- padding: 7px 4px;
3001
- }
3002
- .have-questions {
3003
- text-align: center;
3004
- font-size: 20px;
3005
- }
3006
- .have-questions img {
3007
- width: 45px;
3008
- display: inline-block;
3009
- }
3010
- .have-questions .have-quest {
3011
- display: inline-block;
3012
- font-size: 20px;
3013
- font-weight: 700;
3014
- margin: 0;
3015
- vertical-align: sub;
3016
- }
3017
- .have-questions .ask-question {
3018
- margin-bottom: 3px !important;
3019
- margin-top: 2px !important;
3020
- }
3021
- .support-forum-green-bg {
3022
- margin-top: 5px;
3023
- margin-left: 20px;
3024
- background: #26B654;
3025
- width: 145px;
3026
- border-radius: 5px;
3027
- padding: 10px 16px 8px 15px;
3028
- }
3029
- .support-forum-green-bg img {
3030
- display: inline-block;
3031
- padding-right: 5px;
3032
- }
3033
- .support-forum-green-div p.support-forum {
3034
- display: inline-block;
3035
- color: #fff;
3036
- font-weight: 700;
3037
- margin: 0 !important;
3038
- }
3039
- .support-forum-green-div a {
3040
- text-decoration: none !important;
3041
- }
3042
- .respond-text p {
3043
- margin: 10px 0 0 0px !important
3044
- }
3045
- .respond-text {
3046
- margin-left: 20px;
3047
- float: left;
3048
- margin-bottom: 8px;
3049
- }
3050
-
3051
- @media (min-width: 1631px) and (max-width: 1631px) {
3052
- .premiumComponent {
3053
- width: 52% !important;
3054
- }
3055
- .premiumButtonsContainer {
3056
- width: 44% !important;
3057
- }
3058
- .premiumButtonsContainer .premiumSection2 {
3059
- width: 41% !important;
3060
- }
3061
- .premiumButtonsContainer .premiumSection3 {
3062
- width: 41% !important;
3063
- }
3064
- }
3065
-
3066
- /************************************ Question 3-> Where shall they be displayed? CSS STARTS *************************/
3067
- .tab9 h1 {
3068
- font-size: 20px !important;
3069
- font-weight: bold !important;
3070
- margin-bottom: 20px !important;
3071
- }
3072
- .tab9 span.checkbox {
3073
- margin-top: 3px;
3074
- }
3075
- .tab9 input {
3076
- width: 317px;
3077
- background: #e5e5e5;
3078
- box-shadow: 2px 2px 3px #dcdcdc inset;
3079
- border: 0;
3080
- padding: 13px 10px !important;
3081
- font-size: 17px;
3082
- color: #5a6570;
3083
- }
3084
- .tab9 ul.sfsi_icn_listing8 {
3085
- list-style: outside none none;
3086
- margin: 5px 0 0;
3087
- overflow: hidden;
3088
- }
3089
- .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3090
- font-family: helveticaregular;
3091
- width: 94.7%;
3092
- float: left;
3093
- }
3094
- .tab9 ul.sfsi_icn_listing8 li {
3095
- float: left;
3096
- padding: 11px 0 15px 0;
3097
- width: 100%;
3098
- margin: 0;
3099
- }
3100
- .tab9 .sfsi_float_position_icon_label img {
3101
- margin-left: auto;
3102
- margin-right: auto;
3103
- display: block;
3104
- margin-top: 7px;
3105
- }
3106
- .tab9 .sfsi_float_position_icon_label img.sfsi_img_center_bottom {
3107
- position: absolute;
3108
- bottom: 0px;
3109
- left: 18%;
3110
- }
3111
- .tab9 .sfsiLocationli .cstmfltonpgstck p {
3112
- padding-top: 5px !important;
3113
- padding-left: 20px !important;
3114
- display: table;
3115
- font-size: 19px !important
3116
- }
3117
- .sfsi_mainContainer .checkbox {
3118
- float: left;
3119
- }#accordion .tab9 .sfsi_icn_listing8 li .sfsi_right_info .kckslctn p:first-child {
3120
- margin-top: 17px !important;
3121
- }
3122
- #accordion .tab9 .sfsi_icn_listing8 li .sfsi_right_info p {
3123
- padding-left: 20px;
3124
- font-size: 19px !important;
3125
- display: table
3126
- }
3127
- #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_afterposts .sfsi_right_info p{
3128
- font-size: 18px!important;
3129
- }
3130
- #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_shortcode .sfsi_right_info p:last-child {
3131
- padding-top: 0px;
3132
- }
3133
- #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_shortcode .sfsi_right_info .kckslctn p:last-child {
3134
- padding-top: 19px !important;
3135
- }
3136
- .tab9 .sfsi_feature_note {
3137
- font-size: 18px !important;
3138
- margin-left: 12px !important;
3139
- padding-top: 0px !important;
3140
- }
3141
- .tab9 .ul.sfsi_make_icons.sfsi_mobile_float {
3142
- float: left;
3143
- }
3144
- .tab9 .sfsi_disable_floatingicons_mobile {
3145
- width: 88%;
3146
- float: left;
3147
- margin: 25px 0 0 27px
3148
- }
3149
- .tab9 .sfsi_disable_floatingicons_mobile h4 {
3150
- float: left;
3151
- line-height: 56px !important;
3152
- margin-right: 40px !important;
3153
- font-family: 'helveticaneue-light' !important;
3154
- color: #5a6570 !important;
3155
- }
3156
- .tab9 .sfsi_toglepstpgspn {
3157
- font-weight: bold;
3158
- }
3159
- .tab9 .sfsi_show_via_shortcode .kckslctn,
3160
- .tab9 .sfsi_show_via_afterposts .kckslctn {
3161
- font-size: 15px;
3162
- margin-top: 5px;
3163
- }
3164
- .tab9 .sfsi_show_via_shortcode .kckslctn h4,
3165
- .tab9 .sfsi_show_via_afterposts .kckslctn h4 {
3166
- font-size: 18px !important;
3167
- padding: 18px 0 0 0 !important;
3168
- }
3169
- .tab9 .sfsi_navigate_to_question7 {
3170
- text-decoration: underline;
3171
- cursor: pointer
3172
- }
3173
- .tab9 .sfsiLocationli h4 {
3174
- font-size: 19px !important
3175
- }
3176
- .tab9 .sfsi_make_icons span.radio {
3177
- background-position: 0 0;
3178
- display: inline-block;
3179
- vertical-align: middle;
3180
- float: left;
3181
- }
3182
- .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3183
- min-width: 33%;
3184
- width: 33% !important
3185
- }
3186
-
3187
- . .tab9 .radio_section.tb_4_ck {
3188
- margin: 0 20px 0 0 !important;
3189
- float: left
3190
- }
3191
- .tab9 .sfsi_tab_3_icns {
3192
- display: block;
3193
- }
3194
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3195
- width: 13%;
3196
- min-width: 35px
3197
- }
3198
- .tab9 .sfsi_make_icons .sfsi_flicnsoptn3 {
3199
- color: #69737c;
3200
- display: inline-block;
3201
- float: none;
3202
- font-family: helveticaneue-light;
3203
- font-size: 20px;
3204
- margin: 7px 0 0 15px;
3205
- vertical-align: middle;
3206
- width: auto
3207
- }
3208
- .tab9 .sfsi_float_position_icon_label {
3209
- border: 1px solid #ccc;
3210
- border-radius: 18px;
3211
- margin-top: 3px;
3212
- position: relative;
3213
- width: 189px;
3214
- height: 148px
3215
- }
3216
- .tab9 .save_button {
3217
- padding-top: 0
3218
- }
3219
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns li {
3220
- padding-left: 0;
3221
- padding-bottom: 15px
3222
- }
3223
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_floaticon_margin_sec li {
3224
- min-width: 50%;
3225
- padding-left: 0;
3226
- padding-bottom: 15px;
3227
- float: left;
3228
- width: 50%
3229
- }
3230
- .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3231
- margin-top: 55px
3232
- }
3233
- .tab9 .sfsi_position_divider {
3234
- float: left;
3235
- margin-top: 0;
3236
- margin-left: 15px;
3237
- width: 100%
3238
- }
3239
- #accordion .tab9 ul.shwthmbfraftr .labelhdng4,
3240
- #accordion .tab9 ul.shwthmbfraftr .row h4.labelhdng4 {
3241
- color: #555;
3242
- font-size: 20px;
3243
- margin-left: 20px;
3244
- font-family: helveticaregular
3245
- }
3246
- .tab9 .sfsiLocationli .sfsi_right_info .sfsi_tab_3_icns {
3247
- float: left;
3248
- clear: both
3249
- }
3250
- .tab9 ul.sfsi_tab_3_icns li .icns_tab_3,
3251
- ul.sfsi_tab_3_icns li .radio {
3252
- float: left
3253
- }
3254
- .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3255
- margin-top: 20px
3256
- }
3257
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li {
3258
- float: left
3259
- }
3260
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec label {
3261
- font-size: 17px;
3262
- padding-right: 7px;
3263
- width: 63px !important;
3264
- display: inline-block;
3265
- margin-top: 10px
3266
- }
3267
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec ins {
3268
- margin-top: 10px
3269
- }
3270
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li input {
3271
- background-color: #dedede;
3272
- border: none;
3273
- box-shadow: none;
3274
- padding: 14px 8px;
3275
- width: 80px
3276
- }
3277
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li ins {
3278
- font-size: 17px;
3279
- font-weight: 400;
3280
- margin-left: 15px;
3281
- text-decoration: none
3282
- }
3283
- .tab9 .sfsi_flicnsoptn3 {
3284
- color: #69737c;
3285
- float: left;
3286
- font-size: 20px;
3287
- margin: 62px 5px 0 20px;
3288
- font-family: helveticaneue-light;
3289
- width: 136px
3290
- }
3291
- .tab9 ul.sfsi_tab_3_icns label {
3292
- float: left;
3293
- line-height: 42px;
3294
- color: #69737C;
3295
- font-size: 18px;
3296
- font-family: helveticaregular;
3297
- min-width: 120px
3298
- }
3299
-
3300
- @media screen and (max-width: 823px) {
3301
- .wapper {
3302
- padding: 0 15px;
3303
- }
3304
- .welcometext {
3305
- width: 62% !important;
3306
- }
3307
- .supportforum {
3308
- margin-top: 22px;
3309
- }
3310
- .main_contant h1 {
3311
- line-height: 35px;
3312
- }
3313
- #sfpageLoad {
3314
- width: 100% !important;
3315
- left: 0px !important;
3316
- }
3317
- .tab9 .sfsi_position_divider {
3318
- margin-left: 0px !important;
3319
- }
3320
- .row ul.tab_2_email_sec li {
3321
- width: 31%;
3322
- }
3323
- .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3324
- width: 89.7% !important;
3325
- }
3326
- .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3327
- width: 100% !important;
3328
- }
3329
- .tab9 .sfsi_float_position_icon_label {
3330
- clear: both !important;
3331
- }
3332
- .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3333
- margin-top: 0px !important;
3334
- }
3335
- .tab9 .sfsi_flicnsoptn3 {
3336
- margin: 5px 5px 0 20px !important;
3337
- width: 131px !important;
3338
- }
3339
- .tab9 .sfsiLocationli label,
3340
- .tab9 .sfsi_float_position_icon_label {
3341
- margin-top: 13px;
3342
- clear: both !important;
3343
- }
3344
- .tab9 .sfsi_position_divider:nth-child(2) {
3345
- margin: 20px 0;
3346
- }
3347
- .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3348
- margin-left: 44px;
3349
- }
3350
-
3351
- .tab9 ul.sfsi_make_icons.sfsi_mobile_float {
3352
- float: left;
3353
- clear: both;
3354
- }
3355
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3356
- width: 50% !important;
3357
- }
3358
- }
3359
- @media screen and (min-width: 360px) and (max-width: 414px) {
3360
- .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3361
- width: 100% !important;
3362
- }
3363
- }
3364
- @media screen and (min-width: 640px) and (max-width: 640px) {
3365
- .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3366
- width: 100% !important;
3367
- }
3368
- .tab9 .sfsi_img_center_bottom {
3369
- padding-top: 0px !important;
3370
- width: 62% !important;
3371
- margin-top: -10px;
3372
- margin-left: 5px;
3373
- }
3374
- }
3375
- @media screen and (min-width: 1024px) and (max-width: 1024px) {
3376
- .wapper {
3377
- padding: 0 30px 0px 15px;
3378
- }
3379
- .welcometext {
3380
- width: 62% !important;
3381
- }
3382
- .supportforum {
3383
- margin-top: 22px;
3384
- }
3385
- .main_contant h1 {
3386
- line-height: 35px;
3387
- }
3388
- #sfpageLoad {
3389
- width: 100% !important;
3390
- }
3391
- .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3392
- margin-left: 45px;
3393
- }
3394
- .row ul.tab_2_email_sec li {
3395
- width: 31%;
3396
- }
3397
- .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3398
- width: 90.7% !important;
3399
- }
3400
- .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3401
- width: 100% !important;
3402
- }
3403
- .tab9 .sfsi_float_position_icon_label {
3404
- clear: both !important;
3405
- }
3406
- .tab9 .sfsiLocationli label,
3407
- .tab9 .sfsi_float_position_icon_label {
3408
- margin-top: 13px;
3409
- clear: both;
3410
- float: left;
3411
- }
3412
- .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3413
- margin-top: 0px !important;
3414
- }
3415
- .tab9 .sfsi_flicnsoptn3 {
3416
- margin-top: 3px !important
3417
- }
3418
- .tab9 .sfsi_position_divider:nth-child(2) {
3419
- margin: 20px 0;
3420
- }
3421
- .tab9 .sfsi_position_divider {
3422
- margin-left: 0px !important;
3423
- }
3424
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3425
- width: 30% !important;
3426
- }
3427
- .tab9 ul.sfsi_make_icons.sfsi_mobile_float {
3428
- width: 100% !important;
3429
- }
3430
- }
3431
-
3432
- @media screen and (min-width: 1080px) and (max-width: 1080px) {
3433
- .tab9 ul.sfsi_tab_3_icns label {
3434
- clear: both;
3435
- margin-top: 20px;
3436
- }
3437
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons {
3438
- float: left;
3439
- clear: both;
3440
- width: 100%;
3441
- }
3442
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons li {
3443
- width: 50%;
3444
- }
3445
- }
3446
-
3447
- @media screen and (min-width: 1920px) and (max-width: 1920px) {
3448
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons li span.sfsi_flicnsoptn3 {
3449
- padding-top: 6px;
3450
- padding-left: 5px;
3451
- }
3452
- }
3453
-
3454
- @media screen and (min-width: 1366px) and (max-width: 1366px) {
3455
- .wapper {
3456
- padding: 40px 40px 40px 10px;
3457
- }
3458
- .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3459
- width: 100% !important;
3460
- }
3461
- .tab9 .sfsi_flicnsoptn3 {
3462
- font-size: 18px !important;
3463
- min-width: 113px !important;
3464
- margin: 60px 0px 0 10px !important;
3465
- width: auto !important;
3466
- }
3467
- .tab9 .sfsi_position_divider {
3468
- margin-left: 0px !important;
3469
- }
3470
- }
3471
- /************************************ Question 3-> Where shall they be displayed? CSS CLOSES *************************/
3472
-
3473
- /* Link to support forum left of every Save button */
3474
- .ui-accordion .ui-accordion-content {
3475
- position: relative;
3476
- }
3477
- .sfsi_askforhelp {
3478
- float: left;
3479
- width: 32%;
3480
- position: absolute;
3481
- bottom: 30px;
3482
- }
3483
- .sfsi_askforhelp img {
3484
- float: left;
3485
- width: 35px;
3486
- height: 35px;
3487
- vertical-align: middle;
3488
- }
3489
- .sfsi_askforhelp span {
3490
- float: left;
3491
- margin-left: 6px;
3492
- margin-top: 8px;
3493
- }
3494
- .askhelpInview2 {
3495
- bottom: 25px;
3496
- }
3497
- .askhelpInview3 {
3498
- bottom: 38px;
3499
- }
3500
- .askhelpInview7 {
3501
- bottom: 50px;
3502
- }
3503
-
3504
- div#sfsi_langnotice,
3505
- div#sfsi_addThis_removal_notice,
3506
- div#sfsi_error_reporting_notice {
3507
- padding: 10px;
3508
- margin-left: 0px;
3509
- position: relative;
3510
- }
3511
-
3512
- .clear {
3513
- clear: both;
3514
- }
3515
- .show {
3516
- display: block;
3517
- }
3518
- .hide {
3519
- display: none;
3520
- }
3521
-
3522
- .zeropadding {
3523
- padding: 0px !important;
3524
- }
3525
- .zerotoppadding {
3526
- padding-top: 0px !important;
3527
- }
3528
- .zerobottompadding {
3529
- padding-bottom: 0px !important;
3530
- }
3531
- .zerotopmargin {
3532
- margin-top: 0px !important;
3533
- }
3534
-
3535
- .rowpadding10 {
3536
- padding: 10px 0 !important;
3537
- }
3538
- .rowmarginleft15 {
3539
- margin-left: 15px !important;
3540
- }
3541
- .rowmarginleft25 {
3542
- margin-left: 25px !important;
3543
- }
3544
- .rowmarginleft45 {
3545
- margin-left: 45px !important;
3546
- }
3547
-
3548
- .bottommargin20 {
3549
- margin-bottom: 20px !important;
3550
- }
3551
- .bottommargin30 {
3552
- margin-bottom: 30px !important;
3553
- }
3554
- .bottommargin40 {
3555
- margin-bottom: 40px !important;
3556
- }
3557
- .inactiveSection {
3558
- opacity: 0.2;
3559
- pointer-events: none;
3560
- }
3561
-
3562
- /* */
3563
- .tab3 .sub_row {
3564
- float: left;
3565
- margin: 15px 0 0 4%;
3566
- width: 80%;
3567
- }
3568
- .tab3 .sub_row label {
3569
- float: left;
3570
- margin: 0 0px 0 10px;
3571
- line-height: 36px;
3572
- font-size: 18px;
3573
- }
3574
- .tab3 .sub_row .effectContainer {
3575
- float: left;
3576
- width: 100%;
3577
- margin-left: 45px;
3578
- }
3579
- .tab3 .sub_row .effectName {
3580
- float: left;
3581
- width: 35%;
3582
- }
3583
- .tab3 .tab_3_sav {
3584
- padding-top: 0;
3585
- margin: 0px auto 10px;
3586
- position: relative;
3587
- z-index: 9;
3588
- }
3589
- .tab3 .Shuffle_auto {
3590
- float: left;
3591
- width: 80%;
3592
- clear: both;
3593
- }
3594
- .tab3 #animationSection label {
3595
- font-family: 'helveticaneue-light';
3596
- }
3597
-
3598
- .tab3 select[name='mouseover_other_icons_transition_effect'] {
3599
- margin-left: 10px;
3600
- padding: 0px 11px;
3601
- margin-top: 4px;
3602
- font-size: 15px;
3603
- border-radius: 5px;
3604
- }
3605
- .tab3 .other_icons_effects_options .mouseover_other_icon_label {
3606
- float: left;
3607
- width: 30%;
3608
- font-size: 16px;
3609
- }
3610
- .tab3 .mouse-over-effects span.radio {
3611
- float: left;
3612
- display: inline-block;
3613
- }
3614
- .tab3 .same_icons_effects label span {
3615
- float: left;
3616
- clear: both;
3617
- line-height: 20px;
3618
- }
3619
- .tab3 .same_icons_effects label span:nth-child(2) {
3620
- font-size: 14px;
3621
- }
3622
- .tab3 .other_icons_effects_options .mouseover_other_icon_img {
3623
- float: left;
3624
- width: 40px;
3625
- height: 40px;
3626
- }
3627
- .tab3 .other_icons_effects_options .mouseover_other_icon_change_link,
3628
- .tab3 .other_icons_effects_options .mouseover_other_icon_revert_link {
3629
- float: left;
3630
- color: #337ab7;
3631
- margin-left: 15px;
3632
- padding: 5px 0px;
3633
- font-size: 15px;
3634
- text-decoration: underline;
3635
- }
3636
- .mouseover-premium-notice {}
3637
- .mouseover-premium-notice label {
3638
- width: auto !important;
3639
- margin: 0 !important;
3640
- }
3641
- .mouseover-premium-notice a {
3642
- float: left;
3643
- color: #12a252 !important;
3644
- padding-top: 5px;
3645
- margin-left: 5px;
3646
- font-size: 18px;
3647
- }
3648
-
3649
- @media (min-width:414px) and (max-width: 736px) and (orientation:portrait) {
3650
- .tab3 .sub_row {
3651
- width: 100%;
3652
- }
3653
- .tab3 .sub_row .effectContainer {
3654
- margin-left: 25px;
3655
- margin-bottom: 0px;
3656
- clear: both;
3657
- }
3658
- .tab3 .sub_row .effectName {
3659
- width: 100%;
3660
- margin-bottom: 25px
3661
- }
3662
- .rowmarginleft45 {
3663
- margin-left: 0px !important;
3664
- }
3665
- .bottommargin40 {
3666
- margin-bottom: 0px !important;
3667
- }
3668
- }
3669
-
3670
- @media (min-width:414px) and (max-width: 736px) and (orientation:landscape) {
3671
- .tab3 .sub_row {
3672
- width: 100%;
3673
- }
3674
- .tab3 .sub_row .effectContainer {
3675
- margin-left: 25px;
3676
- margin-bottom: 0px;
3677
- clear: both;
3678
- }
3679
- .tab3 .sub_row .effectName {
3680
- width: 50%;
3681
- margin-bottom: 25px
3682
- }
3683
- .rowmarginleft45 {
3684
- margin-left: 25px !important;
3685
- }
3686
- .bottommargin40 {
3687
- margin-bottom: 0px !important;
3688
- }
3689
- }
3690
- @media (min-width:768px) and (max-width: 1024px) {
3691
- .tab3 .sub_row {
3692
- width: 100%;
3693
- }
3694
- .tab3 .sub_row .effectContainer {
3695
- margin-bottom: 25px;
3696
- clear: both;
3697
- }
3698
- .tab3 .sub_row .effectName {
3699
- width: 50%;
3700
- }
3701
- }/* */
3702
-
3703
- .col-lg-1,
3704
- .col-lg-10,
3705
- .col-lg-11,
3706
- .col-lg-12,
3707
- .col-lg-2,
3708
- .col-lg-3,
3709
- .col-lg-4,
3710
- .col-lg-5,
3711
- .col-lg-6,
3712
- .col-lg-7,
3713
- .col-lg-8,
3714
- .col-lg-9,
3715
- .col-md-1,
3716
- .col-md-10,
3717
- .col-md-11,
3718
- .col-md-12,
3719
- .col-md-2,
3720
- .col-md-3,
3721
- .col-md-4,
3722
- .col-md-5,
3723
- .col-md-6,
3724
- .col-md-7,
3725
- .col-md-8,
3726
- .col-md-9,
3727
- .col-sm-1,
3728
- .col-sm-10,
3729
- .col-sm-11,
3730
- .col-sm-12,
3731
- .col-sm-2,
3732
- .col-sm-3,
3733
- .col-sm-4,
3734
- .col-sm-5,
3735
- .col-sm-6,
3736
- .col-sm-7,
3737
- .col-sm-8,
3738
- .col-sm-9,
3739
- .col-xs-1,
3740
- .col-xs-10,
3741
- .col-xs-11,
3742
- .col-xs-12,
3743
- .col-xs-2,
3744
- .col-xs-3,
3745
- .col-xs-4,
3746
- .col-xs-5,
3747
- .col-xs-6,
3748
- .col-xs-7,
3749
- .col-xs-8,
3750
- .col-xs-9 {
3751
- position: relative;
3752
- min-height: 1px;
3753
- padding-right: 15px;
3754
- padding-left: 15px;
3755
- }
3756
- @media (min-width: 992px) {
3757
- .col-md-12 {
3758
- width: 100%;
3759
- }
3760
-
3761
- .col-md-3 {
3762
- width: 25%;
3763
- }
3764
-
3765
- .col-md-1,
3766
- .col-md-10,
3767
- .col-md-11,
3768
- .col-md-12,
3769
- .col-md-2,
3770
- .col-md-3,
3771
- .col-md-4,
3772
- .col-md-5,
3773
- .col-md-6,
3774
- .col-md-7,
3775
- .col-md-8,
3776
- .col-md-9 {
3777
- float: left;
3778
- }
3779
-
3780
- .col-md-12 {
3781
- width: 100%
3782
- }
3783
-
3784
- .col-md-11 {
3785
- width: 91.66666667%
3786
- }
3787
-
3788
- .col-md-10 {
3789
- width: 83.33333333%
3790
- }
3791
-
3792
- .col-md-9 {
3793
- width: 75%
3794
- }
3795
-
3796
- .col-md-8 {
3797
- width: 66.66666667%
3798
- }
3799
-
3800
- .col-md-7 {
3801
- width: 58.33333333%
3802
- }
3803
-
3804
- .col-md-6 {
3805
- width: 50%
3806
- }
3807
-
3808
- .col-md-5 {
3809
- width: 41.66666667%
3810
- }
3811
-
3812
- .col-md-4 {
3813
- width: 33.33333333%
3814
- }
3815
-
3816
- .col-md-3 {
3817
- width: 25%
3818
- }
3819
-
3820
- .col-md-2 {
3821
- width: 16.66666667%
3822
- }
3823
-
3824
- .col-md-1 {
3825
- width: 8.33333333%
3826
- }
3827
-
3828
- .col-md-pull-12 {
3829
- right: 100%
3830
- }
3831
-
3832
- .col-md-pull-11 {
3833
- right: 91.66666667%
3834
- }
3835
-
3836
- .col-md-pull-10 {
3837
- right: 83.33333333%
3838
- }
3839
-
3840
- .col-md-pull-9 {
3841
- right: 75%
3842
- }
3843
-
3844
- .col-md-pull-8 {
3845
- right: 66.66666667%
3846
- }
3847
-
3848
- .col-md-pull-7 {
3849
- right: 58.33333333%
3850
- }
3851
-
3852
- .col-md-pull-6 {
3853
- right: 50%
3854
- }
3855
-
3856
- .col-md-pull-5 {
3857
- right: 41.66666667%
3858
- }
3859
-
3860
- .col-md-pull-4 {
3861
- right: 33.33333333%
3862
- }
3863
-
3864
- .col-md-pull-3 {
3865
- right: 25%
3866
- }
3867
-
3868
- .col-md-pull-2 {
3869
- right: 16.66666667%
3870
- }
3871
-
3872
- .col-md-pull-1 {
3873
- right: 8.33333333%
3874
- }
3875
-
3876
- .col-md-pull-0 {
3877
- right: auto
3878
- }
3879
-
3880
- .col-md-push-12 {
3881
- left: 100%
3882
- }
3883
-
3884
- .col-md-push-11 {
3885
- left: 91.66666667%
3886
- }
3887
-
3888
- .col-md-push-10 {
3889
- left: 83.33333333%
3890
- }
3891
-
3892
- .col-md-push-9 {
3893
- left: 75%
3894
- }
3895
-
3896
- .col-md-push-8 {
3897
- left: 66.66666667%
3898
- }
3899
-
3900
- .col-md-push-7 {
3901
- left: 58.33333333%
3902
- }
3903
-
3904
- .col-md-push-6 {
3905
- left: 50%
3906
- }
3907
-
3908
- .col-md-push-5 {
3909
- left: 41.66666667%
3910
- }
3911
-
3912
- .col-md-push-4 {
3913
- left: 33.33333333%
3914
- }
3915
-
3916
- .col-md-push-3 {
3917
- left: 25%
3918
- }
3919
-
3920
- .col-md-push-2 {
3921
- left: 16.66666667%
3922
- }
3923
-
3924
- .col-md-push-1 {
3925
- left: 8.33333333%
3926
- }
3927
-
3928
- .col-md-push-0 {
3929
- left: auto
3930
- }
3931
-
3932
- .col-md-offset-12 {
3933
- margin-left: 100%
3934
- }
3935
-
3936
- .col-md-offset-11 {
3937
- margin-left: 91.66666667%
3938
- }
3939
-
3940
- .col-md-offset-10 {
3941
- margin-left: 83.33333333%
3942
- }
3943
-
3944
- .col-md-offset-9 {
3945
- margin-left: 75%
3946
- }
3947
-
3948
- .col-md-offset-8 {
3949
- margin-left: 66.66666667%
3950
- }
3951
-
3952
- .col-md-offset-7 {
3953
- margin-left: 58.33333333%
3954
- }
3955
-
3956
- .col-md-offset-6 {
3957
- margin-left: 50%
3958
- }
3959
-
3960
- .col-md-offset-5 {
3961
- margin-left: 41.66666667%
3962
- }
3963
-
3964
- .col-md-offset-4 {
3965
- margin-left: 33.33333333%
3966
- }
3967
-
3968
- .col-md-offset-3 {
3969
- margin-left: 25%
3970
- }
3971
-
3972
- .col-md-offset-2 {
3973
- margin-left: 16.66666667%
3974
- }
3975
-
3976
- .col-md-offset-1 {
3977
- margin-left: 8.33333333%
3978
- }
3979
-
3980
- .col-md-offset-0 {
3981
- margin-left: 0
3982
- }
3983
- }
3984
- @media (min-width:768px) {
3985
-
3986
- .col-sm-1,
3987
- .col-sm-10,
3988
- .col-sm-11,
3989
- .col-sm-12,
3990
- .col-sm-2,
3991
- .col-sm-3,
3992
- .col-sm-4,
3993
- .col-sm-5,
3994
- .col-sm-6,
3995
- .col-sm-7,
3996
- .col-sm-8,
3997
- .col-sm-9 {
3998
- float: left
3999
- }
4000
-
4001
- .col-sm-12 {
4002
- width: 100%
4003
- }
4004
-
4005
- .col-sm-11 {
4006
- width: 91.66666667%
4007
- }
4008
-
4009
- .col-sm-10 {
4010
- width: 83.33333333%
4011
- }
4012
-
4013
- .col-sm-9 {
4014
- width: 75%
4015
- }
4016
-
4017
- .col-sm-8 {
4018
- width: 66.66666667%
4019
- }
4020
-
4021
- .col-sm-7 {
4022
- width: 58.33333333%
4023
- }
4024
-
4025
- .col-sm-6 {
4026
- width: 50%
4027
- }
4028
-
4029
- .col-sm-5 {
4030
- width: 41.66666667%
4031
- }
4032
-
4033
- .col-sm-4 {
4034
- width: 33.33333333%
4035
- }
4036
-
4037
- .col-sm-3 {
4038
- width: 25%
4039
- }
4040
-
4041
- .col-sm-2 {
4042
- width: 16.66666667%
4043
- }
4044
-
4045
- .col-sm-1 {
4046
- width: 8.33333333%
4047
- }
4048
-
4049
- .col-sm-pull-12 {
4050
- right: 100%
4051
- }
4052
-
4053
- .col-sm-pull-11 {
4054
- right: 91.66666667%
4055
- }
4056
-
4057
- .col-sm-pull-10 {
4058
- right: 83.33333333%
4059
- }
4060
-
4061
- .col-sm-pull-9 {
4062
- right: 75%
4063
- }
4064
-
4065
- .col-sm-pull-8 {
4066
- right: 66.66666667%
4067
- }
4068
-
4069
- .col-sm-pull-7 {
4070
- right: 58.33333333%
4071
- }
4072
-
4073
- .col-sm-pull-6 {
4074
- right: 50%
4075
- }
4076
-
4077
- .col-sm-pull-5 {
4078
- right: 41.66666667%
4079
- }
4080
-
4081
- .col-sm-pull-4 {
4082
- right: 33.33333333%
4083
- }
4084
-
4085
- .col-sm-pull-3 {
4086
- right: 25%
4087
- }
4088
-
4089
- .col-sm-pull-2 {
4090
- right: 16.66666667%
4091
- }
4092
-
4093
- .col-sm-pull-1 {
4094
- right: 8.33333333%
4095
- }
4096
-
4097
- .col-sm-pull-0 {
4098
- right: auto
4099
- }
4100
-
4101
- .col-sm-push-12 {
4102
- left: 100%
4103
- }
4104
-
4105
- .col-sm-push-11 {
4106
- left: 91.66666667%
4107
- }
4108
-
4109
- .col-sm-push-10 {
4110
- left: 83.33333333%
4111
- }
4112
-
4113
- .col-sm-push-9 {
4114
- left: 75%
4115
- }
4116
-
4117
- .col-sm-push-8 {
4118
- left: 66.66666667%
4119
- }
4120
-
4121
- .col-sm-push-7 {
4122
- left: 58.33333333%
4123
- }
4124
-
4125
- .col-sm-push-6 {
4126
- left: 50%
4127
- }
4128
-
4129
- .col-sm-push-5 {
4130
- left: 41.66666667%
4131
- }
4132
-
4133
- .col-sm-push-4 {
4134
- left: 33.33333333%
4135
- }
4136
-
4137
- .col-sm-push-3 {
4138
- left: 25%
4139
- }
4140
-
4141
- .col-sm-push-2 {
4142
- left: 16.66666667%
4143
- }
4144
-
4145
- .col-sm-push-1 {
4146
- left: 8.33333333%
4147
- }
4148
-
4149
- .col-sm-push-0 {
4150
- left: auto
4151
- }
4152
-
4153
- .col-sm-offset-12 {
4154
- margin-left: 100%
4155
- }
4156
-
4157
- .col-sm-offset-11 {
4158
- margin-left: 91.66666667%
4159
- }
4160
-
4161
- .col-sm-offset-10 {
4162
- margin-left: 83.33333333%
4163
- }
4164
-
4165
- .col-sm-offset-9 {
4166
- margin-left: 75%
4167
- }
4168
-
4169
- .col-sm-offset-8 {
4170
- margin-left: 66.66666667%
4171
- }
4172
-
4173
- .col-sm-offset-7 {
4174
- margin-left: 58.33333333%
4175
- }
4176
-
4177
- .col-sm-offset-6 {
4178
- margin-left: 50%
4179
- }
4180
-
4181
- .col-sm-offset-5 {
4182
- margin-left: 41.66666667%
4183
- }
4184
-
4185
- .col-sm-offset-4 {
4186
- margin-left: 33.33333333%
4187
- }
4188
-
4189
- .col-sm-offset-3 {
4190
- margin-left: 25%
4191
- }
4192
-
4193
- .col-sm-offset-2 {
4194
- margin-left: 16.66666667%
4195
- }
4196
-
4197
- .col-sm-offset-1 {
4198
- margin-left: 8.33333333%
4199
- }
4200
-
4201
- .col-sm-offset-0 {
4202
- margin-left: 0
4203
- }
4204
- }
4205
- @media (min-width:1200px) {
4206
-
4207
- .col-lg-1,
4208
- .col-lg-10,
4209
- .col-lg-11,
4210
- .col-lg-12,
4211
- .col-lg-2,
4212
- .col-lg-3,
4213
- .col-lg-4,
4214
- .col-lg-5,
4215
- .col-lg-6,
4216
- .col-lg-7,
4217
- .col-lg-8,
4218
- .col-lg-9 {
4219
- float: left
4220
- }
4221
-
4222
- .col-lg-12 {
4223
- width: 100%
4224
- }
4225
-
4226
- .col-lg-11 {
4227
- width: 91.66666667%
4228
- }
4229
-
4230
- .col-lg-10 {
4231
- width: 83.33333333%
4232
- }
4233
-
4234
- .col-lg-9 {
4235
- width: 75%
4236
- }
4237
-
4238
- .col-lg-8 {
4239
- width: 66.66666667%
4240
- }
4241
-
4242
- .col-lg-7 {
4243
- width: 58.33333333%
4244
- }
4245
-
4246
- .col-lg-6 {
4247
- width: 50%
4248
- }
4249
-
4250
- .col-lg-5 {
4251
- width: 41.66666667%
4252
- }
4253
-
4254
- .col-lg-4 {
4255
- width: 33.33333333%
4256
- }
4257
-
4258
- .col-lg-3 {
4259
- width: 25%
4260
- }
4261
-
4262
- .col-lg-2 {
4263
- width: 16.66666667%
4264
- }
4265
-
4266
- .col-lg-1 {
4267
- width: 8.33333333%
4268
- }
4269
-
4270
- .col-lg-pull-12 {
4271
- right: 100%
4272
- }
4273
-
4274
- .col-lg-pull-11 {
4275
- right: 91.66666667%
4276
- }
4277
-
4278
- .col-lg-pull-10 {
4279
- right: 83.33333333%
4280
- }
4281
-
4282
- .col-lg-pull-9 {
4283
- right: 75%
4284
- }
4285
-
4286
- .col-lg-pull-8 {
4287
- right: 66.66666667%
4288
- }
4289
-
4290
- .col-lg-pull-7 {
4291
- right: 58.33333333%
4292
- }
4293
-
4294
- .col-lg-pull-6 {
4295
- right: 50%
4296
- }
4297
-
4298
- .col-lg-pull-5 {
4299
- right: 41.66666667%
4300
- }
4301
-
4302
- .col-lg-pull-4 {
4303
- right: 33.33333333%
4304
- }
4305
-
4306
- .col-lg-pull-3 {
4307
- right: 25%
4308
- }
4309
-
4310
- .col-lg-pull-2 {
4311
- right: 16.66666667%
4312
- }
4313
-
4314
- .col-lg-pull-1 {
4315
- right: 8.33333333%
4316
- }
4317
-
4318
- .col-lg-pull-0 {
4319
- right: auto
4320
- }
4321
-
4322
- .col-lg-push-12 {
4323
- left: 100%
4324
- }
4325
-
4326
- .col-lg-push-11 {
4327
- left: 91.66666667%
4328
- }
4329
-
4330
- .col-lg-push-10 {
4331
- left: 83.33333333%
4332
- }
4333
-
4334
- .col-lg-push-9 {
4335
- left: 75%
4336
- }
4337
-
4338
- .col-lg-push-8 {
4339
- left: 66.66666667%
4340
- }
4341
-
4342
- .col-lg-push-7 {
4343
- left: 58.33333333%
4344
- }
4345
-
4346
- .col-lg-push-6 {
4347
- left: 50%
4348
- }
4349
-
4350
- .col-lg-push-5 {
4351
- left: 41.66666667%
4352
- }
4353
-
4354
- .col-lg-push-4 {
4355
- left: 33.33333333%
4356
- }
4357
-
4358
- .col-lg-push-3 {
4359
- left: 25%
4360
- }
4361
-
4362
- .col-lg-push-2 {
4363
- left: 16.66666667%
4364
- }
4365
-
4366
- .col-lg-push-1 {
4367
- left: 8.33333333%
4368
- }
4369
-
4370
- .col-lg-push-0 {
4371
- left: auto
4372
- }
4373
-
4374
- .col-lg-offset-12 {
4375
- margin-left: 100%
4376
- }
4377
-
4378
- .col-lg-offset-11 {
4379
- margin-left: 91.66666667%
4380
- }
4381
-
4382
- .col-lg-offset-10 {
4383
- margin-left: 83.33333333%
4384
- }
4385
-
4386
- .col-lg-offset-9 {
4387
- margin-left: 75%
4388
- }
4389
-
4390
- .col-lg-offset-8 {
4391
- margin-left: 66.66666667%
4392
- }
4393
-
4394
- .col-lg-offset-7 {
4395
- margin-left: 58.33333333%
4396
- }
4397
-
4398
- .col-lg-offset-6 {
4399
- margin-left: 50%
4400
- }
4401
-
4402
- .col-lg-offset-5 {
4403
- margin-left: 41.66666667%
4404
- }
4405
-
4406
- .col-lg-offset-4 {
4407
- margin-left: 33.33333333%
4408
- }
4409
-
4410
- .col-lg-offset-3 {
4411
- margin-left: 25%
4412
- }
4413
-
4414
- .col-lg-offset-2 {
4415
- margin-left: 16.66666667%
4416
- }
4417
-
4418
- .col-lg-offset-1 {
4419
- margin-left: 8.33333333%
4420
- }
4421
-
4422
- .col-lg-offset-0 {
4423
- margin-left: 0
4424
- }
4425
- }
4426
- #sfsi_jivo_offline_chat {
4427
- position: fixed;
4428
- bottom: 0;
4429
- right: 30px;
4430
- height: 350px;
4431
- min-width: 45%;
4432
- background: #fff;
4433
- border-top-left-radius: 30px;
4434
- border-top-right-radius: 30px;
4435
- padding: 10px;
4436
- border: 3px solid #ddd;
4437
- border-bottom: 0;
4438
- }
4439
- #sfsi_jivo_offline_chat .heading-text {
4440
- font-size: 16px;
4441
- font-weight: 500;
4442
- color: #999;
4443
- }
4444
- #sfsi_jivo_offline_chat .heading-text a {
4445
- font-size: 16px;
4446
- font-weight: 900;
4447
- color: #999;
4448
- }
4449
- #sfsi_jivo_offline_chat .tab-changer {
4450
- /*width:100%;*/
4451
- padding: 0 15px;
4452
-
4453
- }
4454
- #sfsi_jivo_offline_chat .tab-changer .tab-link {
4455
- float: left;
4456
- width: 50%;
4457
- text-align: center;
4458
- background: #eee;
4459
- border-bottom: 5px solid #24497B;
4460
- }
4461
- #sfsi_jivo_offline_chat .tab-changer .tab-link:first-child {
4462
- border-top-left-radius: 8px;
4463
- }
4464
- #sfsi_jivo_offline_chat .tab-changer .tab-link:last-child {
4465
- border-top-right-radius: 8px;
4466
- }
4467
- #sfsi_jivo_offline_chat .tab-changer .tab-link p {
4468
- background: #eee;
4469
- padding: 5px 0;
4470
- margin: 0;
4471
- border-top-left-radius: 10px;
4472
- border-top-right-radius: 10px;
4473
- font-size: 25px;
4474
- cursor: pointer;
4475
- line-height: 1;
4476
- }
4477
- #sfsi_jivo_offline_chat .tab-changer .tab-link p span {
4478
- font-size: 15px;
4479
- }
4480
- #sfsi_jivo_offline_chat .tab-changer .tab-link.active p {
4481
- background: #24497B;
4482
- color: #fff;
4483
- }
4484
- #sfsi_jivo_offline_chat .tabs {
4485
- /*background: #dbeef4;*/
4486
- background: #ddd;
4487
- margin: -6px 15px 0 15px;
4488
- min-height: 250px;
4489
- }
4490
- #sfsi_jivo_offline_chat #sfsi_technical {
4491
- padding: 50px;
4492
- }
4493
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div {
4494
- margin: 10px 0;
4495
- }
4496
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div a {
4497
- padding: 20px 26px 18px 25px;
4498
- width: 245px;
4499
- margin: 0;
4500
- }
4501
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div a img {
4502
- margin-top: 11px;
4503
- }
4504
- #sfsi_jivo_offline_chat .tabs #sfsi_technical p {
4505
- font-size: 20px;
4506
- padding-top: 5px;
4507
- margin: 0;
4508
- margin-top: 20px;
4509
- }
4510
- #sfsi_jivo_offline_chat .tabs #sfsi_sales {
4511
- padding: 15px;
4512
- }
4513
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .right-message {
4514
- width: 50%;
4515
- float: right;
4516
- text-align: right;
4517
- margin: 0;
4518
- }
4519
- #sfsi_jivo_offline_chat .tabs #sfsi_sales form>div {
4520
- margin-top: 5px;
4521
- }
4522
- #sfsi_jivo_offline_chat .tabs #sfsi_sales label {
4523
- font-size: 20px;
4524
- color: #000;
4525
- font-weight: 900;
4526
- padding-bottom: 5px;
4527
- }
4528
-
4529
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input,
4530
- #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4531
- margin-top: 5px;
4532
- width: 100%;
4533
- border: 0;
4534
- box-shadow: 0 0 5px 0 #888;
4535
- }
4536
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input {
4537
- height: 40px;
4538
- }
4539
- #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4540
- height: 80px;
4541
- resize: none;
4542
- }
4543
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4544
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4545
- border: 0;
4546
- background: #079345;
4547
- color: #fff;
4548
- margin-top: 23px;
4549
- width: 100%;
4550
- font-size: 16px;
4551
- border-radius: 4px;
4552
- cursor: pointer;
4553
- box-shadow: none;
4554
- }
4555
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent {
4556
- text-align: center;
4557
- }
4558
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4559
- font-size: 35px;
4560
- }
4561
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4562
- font-size: 25px;
4563
- font-weight: 300;
4564
- }
4565
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4566
- width: auto;
4567
- margin-top: 0;
4568
- padding: 10px;
4569
- }
4570
- #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4571
- font-size: 13px !important;
4572
- font-weight: 900;
4573
- /*float: right;*/
4574
- /*text-align: right;*/
4575
- margin-top: -40px !important;
4576
- margin-left: 320px !important;
4577
- }
4578
- #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4579
- background-image: url('images/select-arrow.png');
4580
- width: 15px;
4581
- height: 9px;
4582
- display: inline-block;
4583
- -webkit-transform: rotate(90deg);
4584
- -moz-transform: rotate(90deg);
4585
- -ms-transform: rotate(90deg);
4586
- -o-transform: rotate(90deg);
4587
- transform: rotate(90deg);
4588
- }
4589
- @media (max-width: 543px) {
4590
- #sfsi_jivo_offline_chat {
4591
- width: 400px;
4592
- }
4593
- }
4594
-
4595
- #sfsi_jivo_offline_chat {
4596
- border: 3px solid #ececec;
4597
- }
4598
-
4599
- #sfsi_jivo_offline_chat {
4600
- padding-bottom: 30px;
4601
- }
4602
-
4603
- #sfsi_jivo_offline_chat .heading-text {
4604
- font-size: 14px;
4605
- }
4606
-
4607
- #sfsi_jivo_offline_chat .tabs {
4608
- background-color: #ededed;
4609
- }#sfsi_jivo_offline_chat .tab-changer li p {
4610
- padding: 8px !important;
4611
- }
4612
-
4613
- #sfsi_jivo_offline_chat .tab-changer .tab-link p {
4614
- font-size: 21px !important;
4615
- font-weight: 500;
4616
- color: #000000;
4617
- }#sfsi_jivo_offline_chat .tab-changer .tab-link p span {
4618
- font-size: 14px !important;
4619
- font-weight: 400;
4620
- color: #000000;
4621
- }
4622
-
4623
- #sfsi_jivo_offline_chat .tab-changer .active p span {
4624
- color: #ffffff;
4625
- }
4626
-
4627
- #sfsi_jivo_offline_chat .tabs #sfsi_sales {
4628
- padding: 30px 30px 40px 30px;
4629
- background: #ededed;
4630
- }#sfsi_jivo_offline_chat .tabs #sfsi_sales .label {
4631
- margin-bottom: 8px;
4632
- font-size: 17px;
4633
- font-weight: 500;
4634
- color: #000000;
4635
- }#sfsi_jivo_offline_chat .tabs #sfsi_sales .email {
4636
- margin-top: 15px;
4637
- }
4638
-
4639
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .right-message {
4640
- font-size: 14px;
4641
- color: #000000;
4642
- }
4643
-
4644
- #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4645
- padding: 10px !important;
4646
- font-size: 14px;
4647
- font-weight: 500;
4648
- margin-top: 0 !important;
4649
- }
4650
-
4651
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input {
4652
- padding: 10px;
4653
- font-size: 14px;
4654
- font-weight: 500;
4655
- margin-top: 0 !important;
4656
- }
4657
-
4658
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4659
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4660
- background: #52b250;
4661
- }#sfsi_jivo_offline_chat #sfsi_technical {
4662
- padding: 57px;
4663
- background-color: #ededed
4664
- }
4665
-
4666
- #sfsi_technical h5 {
4667
- font-size: 18px;
4668
- color: #000000;
4669
- margin: 10px;
4670
- }
4671
-
4672
- #sfsi_technical h5 b {
4673
- font-weight: 700;
4674
- }
4675
-
4676
- #sfsi_technical h5 b {
4677
- font-weight: 700;
4678
- }
4679
-
4680
- #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4681
- font-size: 12px !important;
4682
- font-weight: 700;
4683
- margin-top: 0px !important;
4684
- margin-left: 0px !important;
4685
- color: #000000;
4686
- position: absolute;
4687
- padding: 12px;
4688
- }
4689
-
4690
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div {
4691
- text-align: center;
4692
- margin: 20px 0 25px 0;
4693
- }
4694
-
4695
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div a {
4696
- padding: 12px 25px;
4697
- background: #52b250;
4698
- }
4699
-
4700
- #sfsi_jivo_offline_chat #sfsi_technical .support-forum-green-div .support-forum-green-bg p {
4701
- padding: 0;
4702
- margin: 0;
4703
- font-size: 18px;
4704
- font-weight: 500;
4705
- }
4706
-
4707
- #sfsi_jivo_offline_chat #sfsi_technical .support-forum-green-div .support-forum-green-bg img {
4708
- height: 28px;
4709
- position: relative;
4710
- top: 9px;
4711
- padding-right: 5px;
4712
- margin-top: 0px;
4713
- }
4714
-
4715
- #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4716
- padding-right: -1px;
4717
- }
4718
-
4719
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4720
- font-size: 20px;
4721
- font-weight: 500;
4722
- }
4723
-
4724
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4725
- font-size: 35px;
4726
- font-weight: 700;
4727
- margin: 25px 0;
4728
- }
4729
-
4730
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4731
- width: auto;
4732
- margin-top: 6px;
4733
- padding: 8px 30px;
4734
- font-size: 16px;
4735
- background: #52b250;
4736
- }
4737
- @media (max-width: 543px) {
4738
- #sfsi_jivo_offline_chat {
4739
- width: 400px;
4740
- }
4741
- }
4742
- .sfsi_unbold_link {
4743
- font-family: inherit !important;
4744
- }
4745
- .sfsi_quickpay-overlay a {
4746
- display: inline;
4747
- font-size: inherit;
4748
- text-decoration: underline;
4749
- font-weight: 900;
4750
- color: #666;
4751
- }
4752
- .sfsi_row {
4753
- width: 100%;
4754
- }
4755
- .sfsi_col_6 {
4756
- width: 49%;
4757
- display: inline-block;
4758
- }
4759
- .sfsi_text_center {
4760
- text-align: center;
4761
- }
4762
- .sfsi_col_6>div {
4763
- padding: 18px 30px !important;
4764
- margin: 20px 0 0 0;
4765
- border: 1px solid #999;
4766
- display: inline-block;
4767
- float: none;
4768
- /* height: 42px;
4769
- width: 150px;*/
4770
- }
4771
- .sfsi_col_6>div:hover {
4772
- background-image: radial-gradient(circle, #fff, #eee);
4773
- }.sfsi_quickpay-overlay .sfsi_pop_up .sellcodes-quick-purchase img {
4774
- vertical-align: middle;
4775
- height: 40px;
4776
- }
4777
-
4778
- .sfsi_quickpay-overlay .sfsi_pop_up .sellcodes-quick-purchase p {
4779
- text-align: center;
4780
- }
4781
-
4782
- .pop-overlay.read-overlay.sfsi_quickpay-overlay * {
4783
- font-family: 'Josefin Sans', sans-serif;
4784
- }
4785
- .sfsi_quickpay-overlay a {
4786
- display: inline !important;
4787
- font-size: inherit !important;
4788
- text-decoration: underline !important;
4789
- font-weight: 900;
4790
- color: #666;
4791
- }
4792
-
4793
- .wp-admin select {
4794
- padding: 9px;
4795
- }
4796
-
4797
- .sfsi_mainContainer .no_check .checkbox {
4798
- display: none;
4799
- }
4800
-
4801
- .sfsi_new_prmium_follw p .sfsi-share-op {
4802
- color: #0c0b0b !important;
4803
- text-decoration: none !important;
4804
- border-bottom: none;
4805
- }
4806
- .sfsi_instagramInstruction ol>li {
4807
- list-style-type: decimal !important;
4808
- }
4809
- .sfsi_instagramInstruction>p {
4810
- list-style-type: decimal !important;
4811
- }
4812
- .sfsi_font_inherit {
4813
- font-family: inherit !important;
4814
- border: 0 !important;
4815
- }
4816
-
4817
- .pop-up {
4818
- font-weight: normal;
4819
- }
4820
- /* by developer 23-05-2019 */
4821
-
4822
- .sfsi_instagramFields .input_facebook {
4823
-
4824
- margin-left: 0 !important;
4825
-
4826
- }
4827
-
4828
- body .specify_counts .listing .sfsi_instagramInstruction li {
4829
- font-size: 17px !important;
4830
- font-family: helveticaregular !important;
4831
- font-weight: 400 !important;
4832
- color: #1a1d20 !important;
4833
- }
4834
-
4835
- /* end */
4836
-
4837
- /*start 4-6-19*/
4838
- .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.twt_tool_bdr {
4839
- margin-bottom: -12px !important;
4840
- }
4841
-
4842
- .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.printst_tool_bdr {
4843
- margin-bottom: 2px;
4844
- }
4845
-
4846
- .wp-admin .pop-overlay .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.printst_tool_bdr {
4847
- margin-bottom: 2px;
4848
- }
4849
-
4850
- .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.linkedin_tool_bdr {
4851
- margin-bottom: -12px;
4852
- }
4853
-
4854
- /*end 4-6-19*/
4855
-
4856
- .sfsi_border_left_0 {
4857
- border-left: 0 !important;
4858
- }
4859
-
4860
- .tab8 .sfsi_inputSec input {
4861
- width: 140px !important;
4862
- padding: 13px;
4863
- }
4864
-
4865
- .tab8 .sfsi_inputSec span {
4866
- width: auto;
4867
- }
4868
-
4869
- .tab8 .sfsi_inputSec span {
4870
- display: inline-block;
4871
- font-size: 18px;
4872
- vertical-align: middle;
4873
- width: 200px;
4874
- color: #5A6570;
4875
- }
4876
-
4877
- .sfsi_responsive_icon_item_container {
4878
- height: 40px;
4879
- vertical-align: middle;
4880
- margin-top: auto;
4881
- margin-bottom: auto;
4882
- }
4883
-
4884
- .sfsi_responsive_icon_item_container img {
4885
- padding: 7px;
4886
- vertical-align: middle !important;
4887
- box-shadow: unset !important;
4888
- -webkit-box-shadow: unset !important;
4889
- max-width: 40px !important;
4890
- max-height: 40px;
4891
- }
4892
-
4893
- .sfsi_responsive_icon_item_container span {
4894
- padding: 7px;
4895
- vertical-align: middle !important;
4896
- box-shadow: unset !important;
4897
- -webkit-box-shadow: unset !important;
4898
- line-height: 40px
4899
- }.sfsi_responsive_icon_facebook_container {
4900
- background-color: #336699;
4901
- }
4902
-
4903
- .sfsi_responsive_icon_follow_container {
4904
- background-color: #00B04E;
4905
- }
4906
-
4907
- .sfsi_responsive_icon_twitter_container {
4908
- background-color: #55ACEE;
4909
- }.sfsi_icons_container_box_fully_container {
4910
- flex-wrap: wrap;
4911
- }
4912
-
4913
- .sfsi_icons_container_box_fully_container a {
4914
- flex-basis: auto !important;
4915
- flex-grow: 1;
4916
- flex-shrink: 1;
4917
- }
4918
-
4919
- .sfsi_responsive_icons .sfsi_icons_container span {
4920
- font-family: sans-serif;
4921
- font-size: 15px;
4922
- }
4923
-
4924
- .sfsi_widget_title {
4925
- font-weight: 700;
4926
- line-height: 1.2;
4927
- font-size: 27px;
4928
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
4929
-
4930
- }
4931
-
4932
- .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container,
4933
- .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container {
4934
- width: 236px;
4935
- text-align: center;
4936
- margin-right: 8px;
4937
- margin-top: -5px;
4938
- }
4939
-
4940
- .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container img,
4941
- .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container img {
4942
- max-height: 25px !important;
4943
- max-width: 40px !important;
4944
- float: left;
4945
- height: 25px;
4946
- }
4947
-
4948
- .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container span,
4949
- .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container span {
4950
- color: #ffffff;
4951
- font-size: 20px;
4952
- padding: 0 10px;
4953
- letter-spacing: 0.5px;
4954
- font-weight: 500;
4955
- }
4956
-
4957
- .tab6 .sfsi_responsive_default_icon_container,
4958
- .tab6 .sfsi_responsive_custom_icon_container {
4959
- width: 100% !important;
4960
- max-width: unset !important;
4961
- /* padding-left: 60px!important; */
4962
- }
4963
-
4964
- .tab6 .sfsi_responsive_default_icon_container input {
4965
- padding: 8px 11px;
4966
- height: 39px;
4967
- }
4968
-
4969
- .tab6 .heading-label {
4970
- font-size: 18px !important;
4971
- font-weight: 400;
4972
- }
4973
-
4974
- .sfsi_responsive_default_icon_container,
4975
- .sfsi_responsive_custom_icon_container {
4976
- padding: 2px 0 !important;
4977
- }
4978
-
4979
- .sfsi_responsive_default_icon_container .sfsi_responsive_default_url_toggler,
4980
- .sfsi_responsive_custom_icon_container .sfsi_responsive_default_url_toggler,
4981
- .sfsi_responsive_default_icon_container .sfsi_responsive_default_url_hide {
4982
- color: #337ab7 !important;
4983
- font-size: 18px !important;
4984
- letter-spacing: 1px;
4985
- font-weight: 500;
4986
- margin-left: 20px;
4987
- text-decoration: none !important
4988
- }
4989
-
4990
- .sfsi_responsive_fluid {
4991
- text-decoration: none !important;
4992
- }
4993
-
4994
- .sfsi_large_button_container {
4995
- width: calc(100% - 81px) !important;
4996
- }
4997
-
4998
- .sfsi_medium_button_container {
4999
- width: calc(100% - 70px) !important;
5000
- }
5001
-
5002
- .sfsi_small_button_container {
5003
- width: calc(100% - 100px) !important;
5004
- }
5005
-
5006
- /* .sfsi_responsive_custom_icon{line-height: 6px;} */
5007
- /* .sfsi_responsive_fixed_width .sfsi_responsive_custom_icon{line-height: 6px;} */
5008
- /*Override for front end - icon of right height*/
5009
- /* .sfsi_responsive_fluid .sfsi_large_button{padding: 13px !important;} */
5010
- /* .sfsi_responsive_fluid .sfsi_medium_button{padding: 10px !important;} */
5011
-
5012
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
5013
- padding: 12px 13px 9px 13px !important;
5014
- }
5015
-
5016
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button h3 {
5017
- margin: 0px 0px 15px 0px !important;
5018
- }
5019
-
5020
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
5021
- padding: 9px 10px 7px 10px !important;
5022
- }
5023
-
5024
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_large_button {
5025
- padding: 12px 13px 9px 13px !important;
5026
- }
5027
-
5028
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
5029
- margin: 0px 0px 15px 0px !important;
5030
- }
5031
-
5032
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
5033
- padding: 9px 10px 7px 10px !important;
5034
- }
5035
-
5036
- .sfsi_responsive_icon_preview .sfsi_icons_container a .sfsi_responsive_icon_item_container {
5037
- /* white-space: nowrap;
5038
- overflow: hidden;
5039
- text-overflow: ellipsis;*/
5040
- display: inline-block;
5041
- }
5042
-
5043
- .sfsi_right_info ul .sfsi_responsive_icon_option_li .options .field .sfsi_responsive_icons_icon_width input,
5044
- .sfsi_right_info ul .sfsi_responsive_icon_option_li .options .field input {
5045
- width: 75px !important;
5046
- background: #ffffff;
5047
- box-shadow: none;
5048
- border: 1px solid rgb(221, 221, 221);
5049
- border-radius: 0px;
5050
- }
5051
-
5052
- input[type="number"] {
5053
- height: 46px !important;
5054
- }
5055
-
5056
- .tab6 .sfsi_inputSec span {
5057
- display: inline-block;
5058
- font-size: 18px;
5059
- margin-left: 10px;
5060
- vertical-align: middle;
5061
- width: 200px;
5062
- color: #5A6570;
5063
- }
5064
-
5065
- .tab6 .sfsi_responsive_icon_item_container {
5066
- width: 300px;
5067
- /* padding: 5px 10px; */
5068
- display: inline-block;
5069
- box-sizing: border-box !important;
5070
- }
5071
-
5072
- .tab6 .options select.styled {
5073
- line-height: 46px;
5074
- }
5075
-
5076
- .tab6 .options select.styled {
5077
- height: 46px;
5078
- left: 0;
5079
- line-height: 46px;
5080
- position: absolute;
5081
- top: 0;
5082
- width: 213px;
5083
- }
5084
-
5085
- .tab6 .sfsi_responsive_icon_option_li span{
5086
- margin-left: 0!important;
5087
- }
5088
-
5089
- .tab6 ul.sfsi_icn_listing8 li .sfsi_right_info {
5090
- font-family: helveticaregular;
5091
- float: left;
5092
- }
5093
- .sfsi_margin_top_0{
5094
- margin-top: 0 !important;
5095
- }
5096
- .sfsi_responsive_icon_preview .sfsi_icons_container a{
5097
- text-decoration: none;
5098
- }
5099
- .sfsi_small_button {
5100
- line-height: 0px;
5101
- height: unset;
5102
- padding: 6px !important;
5103
- }
5104
- .sfsi_small_button span {
5105
- margin-left: 10px;
5106
- font-size: 16px;
5107
- padding: 0px;
5108
- line-height: 16px;
5109
- vertical-align: -webkit-baseline-middle !important;
5110
- margin-left: 10px;
5111
- }
5112
- .sfsi_small_button img {
5113
- max-height: 16px !important;
5114
- padding: 0px;
5115
- line-height: 0px;
5116
- vertical-align: -webkit-baseline-middle !important;
5117
- }
5118
- .sfsi_medium_button span {
5119
- margin-left: 10px;
5120
- font-size: 18px;
5121
- padding: 0px;
5122
- line-height: 16px;
5123
- vertical-align: -webkit-baseline-middle !important;
5124
- margin-left: 10px;
5125
- }
5126
- .sfsi_medium_button img {
5127
- max-height: 16px !important;
5128
- padding: 0px;
5129
- line-height: 0px;
5130
- vertical-align: -webkit-baseline-middle !important;
5131
- }
5132
- .sfsi_medium_button {
5133
- line-height: 0px;
5134
- height: unset;
5135
- padding: 10px !important;
5136
- }
5137
-
5138
- .sfsi_medium_button span {
5139
- margin-left: 10px;
5140
- font-size: 18px;
5141
- padding: 0px;
5142
- line-height: 16px;
5143
- vertical-align: -webkit-baseline-middle !important;
5144
- margin-left: 10px;
5145
- }
5146
- .sfsi_medium_button img {
5147
- max-height: 16px !important;
5148
- padding: 0px;
5149
- line-height: 0px;
5150
- vertical-align: -webkit-baseline-middle !important;
5151
- }
5152
- .sfsi_medium_button {
5153
- line-height: 0px;
5154
- height: unset;
5155
- padding: 10px !important;
5156
- }
5157
- .sfsi_large_button span {
5158
- font-size: 20px;
5159
- padding: 0px;
5160
- line-height: 16px;
5161
- vertical-align: -webkit-baseline-middle !important;
5162
- display: inline;
5163
- margin-left: 10px;
5164
- }
5165
- .sfsi_large_button img {
5166
- max-height: 16px !important;
5167
- padding: 0px;
5168
- line-height: 0px;
5169
- vertical-align: -webkit-baseline-middle !important;
5170
- display: inline;
5171
- }
5172
- .sfsi_large_button {
5173
- line-height: 0px;
5174
- height: unset;
5175
- padding: 13px !important;
5176
- }
5177
- .sfsi_responsive_icons_count{
5178
- padding: 5px 10px;
5179
- float: left !important;
5180
- display: inline-block;
5181
- margin-right: 0px;
5182
- margin-top: 2px;
5183
- }
5184
-
5185
- .sfsi_responsive_icons_count h3{
5186
- font-family: 'sans-serif' !important;
5187
- font-weight: 900;
5188
- font-size: 32px !important;
5189
- line-height: 0px !important;
5190
- padding: 0px;
5191
- margin: 0px;
5192
- }
5193
-
5194
- .sfsi_responsive_icons_count h6{
5195
- font-family: 'sans-serif' !important;
5196
- font-weight: 900;
5197
- padding: 0px;
5198
- margin: 0px;
5199
- }
5200
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
5201
- text-decoration: none!important;
5202
- border: 0!important;
5203
- }
5204
- .sfsi_responsive_with_counter_icons{
5205
- width: calc(100% - 100px)!important;
5206
- }
5207
- .sfsiresponsive_icon_preview {
5208
- padding: 0px 0 20px 0;
5209
- min-width: 100%;
5210
- }
5211
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
5212
- padding: 12px 13px 9px 13px !important;
5213
- }
5214
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
5215
- padding: 9px 10px 7px 10px !important;
5216
- }
5217
- .sfsi_responsive_icons_count.sfsi_small_button {
5218
- padding: 7px 6px !important;
5219
- }
5220
- .sfsi_responsive_icons_count.sfsi_small_button {
5221
- padding: 7px 6px !important;
5222
- margin-top: 2px;
5223
- }
5224
- .sfsi_responsive_icons_count.sfsi_small_button h6 {
5225
- display: inline-block;
5226
- font-size: 12px !important;
5227
- vertical-align: middle;
5228
- }
5229
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
5230
- padding: 9px 10px 7px 10px !important;
5231
- }
5232
- .sfsi_responsive_icons_count.sfsi_medium_button h3 {
5233
- font-size: 21px !important;
5234
- vertical-align: top;
5235
- line-height: 8px !important;
5236
- margin: 0px 0px 12px 0px !important;
5237
- font-family: 'sans-serif' !important;
5238
- font-weight: 900;
5239
- padding: 0px;
5240
- }
5241
- .sfsi_esponsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
5242
- margin: 0px 0px 15px 0px !important;
5243
- }
5244
- .sfsi_responsive_icons_count.sfsi_large_button h3 {
5245
- font-size: 26px !important;
5246
- vertical-align: top;
5247
- line-height: 6px !important;
5248
- }
5249
-
5250
- .sfsi_responsive_icons_count h3 {
5251
- font-family: 'sans-serif' !important;
5252
- font-weight: 900;
5253
- padding: 0px;
5254
- }
5255
-
5256
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
5257
- font-size: 20px !important;
5258
- display: inline-block;
5259
- vertical-align: middle;
5260
- }
5261
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
5262
- margin: 0px !important;
5263
- }
5264
- .sfsi_responsive_icons_count h3 {
5265
- font-family: 'sans-serif' !important;
5266
- font-weight: 900;
5267
- line-height: 0px !important;
5268
- padding: 0px;
5269
- margin: 0px;
5270
- }
5271
- #accordion .ui-state-active, #accordion1 .ui-state-active, #accordion2 .ui-state-active{
5272
- background: #d22b30 url(../images/arrow.png) right -105px no-repeat !important;
5273
- color: #eee !important;
5274
- border: 0;
5275
- }
5276
-
5277
- #accordion .ui-state-hover, #accordion1 .ui-state-hover, #accordion2 .ui-state-hover {
5278
- background: #d22b30 url(../images/arrow.png) right -105px no-repeat !important;
5279
- color: #eee !important;
5280
- }
5281
-
5282
-
5283
- .sfsi_disable_radio .radio{
5284
- background-position: 0px 0px !important;
5285
- opacity: 0.3;
5286
- }
5287
- .sfsi_disable_radio .labelhdng4{
5288
- opacity: 0.3;
5289
- }
5290
- #ui-id-6 .tab6{
5291
- margin-left:10px!important;
5292
- }
5293
- #ui-id-6 .tab6 p.sfsi_border_left_0{
5294
- margin-left:0 !important;
5295
- padding-left:5px !important;
5296
- }
5297
- #ui-id-6 .tab6 .sfsi_toggleonlystndrshrng{
5298
- border-left:0!important;
5299
- }
5300
- #ui-id-6 .tab6 .sfsi_toggleonlystndrshrng p{
5301
- padding-left:0!important;
5302
- }
5303
- .export_selections{
5304
- clear: both;
5305
- color: #afafaf;
5306
- font-size: 23px;
5307
- display: flex;
5308
- height: 0px;
5309
- position: absolute;
5310
- top: 13px;
5311
- right: 0;
5312
- }
5313
-
5314
- .save_export{
5315
- clear: both;
5316
- position: relative;
5317
- }
5318
-
5319
- .export{
5320
- padding-right: 11px;
5321
- text-decoration: underline;
5322
- cursor: pointer;
5323
  }
1
+ @charset "utf-8";
2
+ @font-face {
3
+ font-family: helveticabold;
4
+ src: url(fonts/helvetica_bold_0-webfont.eot);
5
+ src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
6
+ font-weight: 400;
7
+ font-style: normal;
8
+ }
9
+ @font-face {
10
+ font-family: helveticaregular;
11
+ src: url(fonts/helvetica_0-webfont.eot);
12
+ src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
13
+ font-weight: 400;
14
+ font-style: normal;
15
+ }
16
+ @font-face {
17
+ font-family: helveticaneue-light;
18
+ src: url(fonts/helveticaneue-light.eot);
19
+ src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'),
20
+ url(fonts/helveticaneue-light.woff) format('woff'),
21
+ url(fonts/helveticaneue-light.ttf) format('truetype'),
22
+ url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
23
+ font-weight: 400;
24
+ font-style: normal;
25
+ }
26
+ body {
27
+ margin: 0;
28
+ padding: 0;
29
+ }
30
+ .sfsi_mainContainer {
31
+ font-family: helveticaregular;
32
+ }
33
+ .sfsi_mainContainer h1,
34
+ .sfsi_mainContainer h2,
35
+ .sfsi_mainContainer h3,
36
+ .sfsi_mainContainer h4,
37
+ .sfsi_mainContainer h5,
38
+ .sfsi_mainContainer h6,
39
+ .sfsi_mainContainer li,
40
+ .sfsi_mainContainer p,
41
+ .sfsi_mainContainer ul {
42
+ margin: 0;
43
+ padding: 0;
44
+ font-weight: 400;
45
+ }
46
+ .sfsi_mainContainer img {
47
+ border: 0;
48
+ vertical-align: middle;
49
+ }
50
+ .main_contant p,
51
+ .ui-accordion .ui-accordion-header {
52
+ /*font-family: helveticaregular;*/
53
+ font-family: 'helveticaneue-light';
54
+ }
55
+ .sfsi_mainContainer input,
56
+ .sfsi_mainContainer select {
57
+ outline: 0;
58
+ }
59
+ .wapper {
60
+ padding: 30px 40px 40px 40px;
61
+ display: block;
62
+ background: #f1f1f1;
63
+ }
64
+ .main_contant {
65
+ margin: 0;
66
+ padding: 20px 0 0 0;
67
+ width: 100%;
68
+ float: left;
69
+ }
70
+ .main_contant h1 {
71
+ padding: 0;
72
+ color: #1a1d20;
73
+ font-family: helveticabold;
74
+ font-size: 28px;
75
+ }
76
+ .main_contant p {
77
+ padding: 0;
78
+ color: #414951;
79
+ font-size: 17px;
80
+ line-height: 26px;
81
+ }
82
+ .main_contant p span {
83
+ text-decoration: underline;
84
+ font-family: helveticabold;
85
+ }
86
+ a#save_all_settings {
87
+ padding: 15px 10px;
88
+ }
89
+ #accordion p,
90
+ #accordion1 p {
91
+ color: #5a6570;
92
+ text-align: left;
93
+ /*font-family: helveticaregular;*/
94
+ font-family: 'helveticaneue-light';
95
+ font-size: 17px;
96
+ line-height: 26px;
97
+ padding-top: 19px;
98
+ }
99
+ #accordion p:first-child,
100
+ #accordion1 p:first-child {
101
+ padding-top: 5px;
102
+
103
+ /* padding-bottom: 10px;*/
104
+
105
+ padding-bottom: 5px;
106
+ }
107
+ #accordion h4,
108
+ #accordion1 h4 {
109
+ margin: 0;
110
+ padding: 30px 0 0;
111
+ color: #414951 !important;
112
+ font-size: 20px;
113
+ line-height: 22px;
114
+ font-family: helveticaregular;
115
+ }
116
+ #accordion1 h4.sfsi_dsplyatend {
117
+ width: 47%;
118
+ float: left;
119
+ }
120
+ #accordion h4:first-child,
121
+ #accordion1 h4:first-child {
122
+ padding-top: 0;
123
+ }
124
+ .tab1,
125
+ .tab2,
126
+ .tab3,
127
+ .tab4,
128
+ .tab5,
129
+ .tab6,
130
+ .tab7 {
131
+ color: #5a6570;
132
+ text-align: left;
133
+ font-family: helveticaneue-light;
134
+ font-size: 18px;
135
+ line-height: 26px;
136
+ }
137
+
138
+ /*Admin menu*/
139
+ ul#adminmenu li.toplevel_page_sfsi-options div.wp-menu-image {
140
+ display: none;
141
+ }
142
+ #adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options {
143
+ padding: 0 0 0 38px;
144
+ font-family: Arial, Helvetica, sans-serif !important;
145
+
146
+ /* font-family: helveticabold; */
147
+ }
148
+ ul#adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options {
149
+ color: #e12522;
150
+ transition: 0s;
151
+ background: url(images/left_log_icn.png) 6px 15px no-repeat #000;
152
+ background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
153
+ color: #e12522;
154
+ font-family: Arial, Helvetica, sans-serif !important;
155
+
156
+ }
157
+ ul#adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options:hover {
158
+ background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
159
+ color: #e12522;
160
+
161
+ }
162
+
163
+ ul#adminmenu li.toplevel_page_sfsi-options a.current,
164
+ ul#adminmenu li.toplevel_page_sfsi-options a.current:hover {
165
+ background: url(images/left_log_icn.png) 6px 15px no-repeat #000000;
166
+ /*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
167
+ color: #e12522;
168
+ }
169
+ /*Tab1*/
170
+ .tab1 ul.icn_listing {
171
+ list-style: none;
172
+ overflow: hidden;
173
+ border-top: #e7e8eb solid 1px;
174
+ margin: 35px 0 0;
175
+ }
176
+ .tab1 ul.icn_listing li {
177
+ border-bottom: #eaebed solid 1px;
178
+ padding: 11px 0 11px 8px;
179
+ float: left;
180
+ width: 100%
181
+ }
182
+ ul.icn_listing li .tb_4_ck {
183
+ float: left;
184
+ margin: 10px 0 0;
185
+ }
186
+ .tab1 ul.icn_listing li .custom,
187
+ .tab1 ul.icn_listing li .sfsicls_email,
188
+ .tab1 ul.icn_listing li .sfsicls_facebook,
189
+ .tab1 ul.icn_listing li .sfsicls_instagram,
190
+ .tab1 ul.icn_listing li .sfsicls_telegram,
191
+ .tab1 ul.icn_listing li .sfsicls_vk,
192
+ .tab1 ul.icn_listing li .sfsicls_ok,
193
+ .tab1 ul.icn_listing li .sfsicls_wechat,
194
+ .tab1 ul.icn_listing li .sfsicls_weibo,
195
+ .sfsicls_linkdin,
196
+ .tab1 ul.icn_listing li .sfsicls_pinterest,
197
+ .tab1 ul.icn_listing li .sfsicls_rs_s,
198
+ .tab1 ul.icn_listing li .sfsicls_share,
199
+ .tab1 ul.icn_listing li .sfsicls_twt,
200
+ .tab1 ul.icn_listing li .sfsicls_utube {
201
+ background: url(../images/tab_1_icn_list.png) no-repeat;
202
+ float: left;
203
+ padding: 0 0 0 59px;
204
+ margin: 0 0 0 17px;
205
+ height: 52px;
206
+ line-height: 51px;
207
+ font-family: helveticaregular;
208
+ font-size: 22px;
209
+ }
210
+ .tab1 ul.icn_listing li .sfsicls_telegram {
211
+ background: url(../images/icons_theme/default/default_telegram.png) no-repeat;
212
+ background-size: contain;
213
+ }
214
+ .tab1 ul.icn_listing li .sfsicls_vk {
215
+ background: url(../images/icons_theme/default/default_vk.png) no-repeat;
216
+ background-size: contain;
217
+ }
218
+ .tab1 ul.icn_listing li .sfsicls_ok {
219
+ background: url(../images/icons_theme/default/default_ok.png) no-repeat;
220
+ background-size: contain;
221
+ }
222
+ .tab1 ul.icn_listing li .sfsicls_wechat {
223
+ background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
224
+ background-size: contain;
225
+ }
226
+ .tab1 ul.icn_listing li .sfsicls_weibo {
227
+ background: url(../images/icons_theme/default/default_weibo.png) no-repeat;
228
+ background-size: contain;
229
+ }
230
+
231
+ .tab1 ul.icn_listing li .sfsicls_rs_s {
232
+ background-position: 0 0;
233
+ color: #f7941d;
234
+ }
235
+ .tab1 ul.icn_listing li .sfsicls_email {
236
+ background-position: 0 -73px;
237
+ color: #d1c800;
238
+ }
239
+ .tab1 ul.icn_listing li .sfsicls_facebook {
240
+ background-position: 0 -145px;
241
+ color: #004088;
242
+ }
243
+ .tab1 ul.icn_listing li .sfsicls_twt {
244
+ background-position: 0 -221px;
245
+ color: #00abe3;
246
+ }
247
+
248
+ .tab1 ul.icn_listing li .sfsicls_share {
249
+ background-position: 0 -372px;
250
+ color: #ef4746;
251
+ }
252
+ .tab1 ul.icn_listing li .sfsicls_utube {
253
+ background-position: 0 -448px;
254
+ color: #f07963;
255
+ }
256
+ .tab1 ul.icn_listing li .sfsicls_linkdin {
257
+ background-position: 0 -548px;
258
+ color: #1e88c9;
259
+ }
260
+ .tab1 ul.icn_listing li .sfsicls_pinterest {
261
+ background-position: 0 -623px;
262
+ color: #f15f5d;
263
+ }
264
+ .tab1 ul.icn_listing li .sfsicls_instagram {
265
+ background-position: 0 -781px;
266
+ color: #369;
267
+ }
268
+ .tab1 ul.icn_listing li .custom {
269
+ background-position: 0 -702px;
270
+ color: #5a6570;
271
+ }
272
+ .tab1 ul.icn_listing li .right_info {
273
+ width: 70%;
274
+ float: right;
275
+ font-family: helveticaregular;
276
+ margin-right: 13px;
277
+ }
278
+ ul.icn_listing li .right_info a {
279
+ text-decoration: underline;
280
+ color: #a4a9ad;
281
+ font-size: 16px;
282
+ }
283
+ .tab1 .tab_2_sav {
284
+ padding-top: 30px;
285
+ }
286
+ /*Tab2*/
287
+ .tab2 {
288
+ overflow: hidden;
289
+ }
290
+ .tab2 .rss_url_row {
291
+ width: 100%;
292
+ float: left;
293
+ margin: 0 0 10px;
294
+ }
295
+ .tab2 .rss_url_row h4 {
296
+ float: left;
297
+ line-height: 43px;
298
+ }
299
+ .tab2 .inr_cont input.add,
300
+ .tab2 .inr_cont textarea.add_txt,
301
+ .tab2 .rss_url_row input.add {
302
+ width: 363px;
303
+ float: left;
304
+ background: #e5e5e5;
305
+ box-shadow: 2px 2px 3px #dcdcdc inset;
306
+ border: 0;
307
+ padding: 12px 10px 11px;
308
+ margin-left: 10px;
309
+ }
310
+ .tab2 .rss_url_row a.rit_link {
311
+ float: left;
312
+ margin: 10px 0 0 16px;
313
+ font-size: 17px;
314
+ }
315
+ .tab2 .row {
316
+ float: left;
317
+ border-top: 2px solid #f2f3f4;
318
+ clear: both;
319
+ padding: 0 0 15px;
320
+ width: 100%
321
+ }
322
+ .tab2 .row .tab_2_email_sec {
323
+ list-style: none;
324
+ margin: 17px 0 0;
325
+ overflow: hidden;
326
+ }
327
+ .row ul.tab_2_email_sec li {
328
+ float: left;
329
+ margin-right: 10px;
330
+ width: 32%;
331
+ }
332
+ .row ul.tab_2_email_sec li label span {
333
+ font-size: 15px;
334
+ color: #808080;
335
+ width: 100%;
336
+ float: left;
337
+ }
338
+ .row ul.tab_2_email_sec:first-child {
339
+ margin-right: 2%
340
+ }
341
+ .tab2 .row h2.sfsicls_email,
342
+ .tab2 .row h2.sfsicls_facebook,
343
+ .tab2 .row h2.sfsicls_telegram,
344
+ .tab2 .row h2.sfsicls_vk,
345
+ .tab2 .row h2.sfsicls_ok,
346
+ .tab2 .row h2.sfsicls_wechat,
347
+ .tab2 .row h2.sfsicls_weibo,
348
+ .tab2 .row h2.sfsicls_instagram,
349
+ .tab2 .row h2.sfsicls_linkdin,
350
+ .tab2 .row h2.sfsicls_pinterest,
351
+ .tab2 .row h2.sfsicls_rs_s,
352
+ .tab2 .row h2.sfsicls_share,
353
+ .tab2 .row h2.sfsicls_twt,
354
+ .tab2 .row h2.sfsicls_utube {
355
+ background: url(../images/tab_1_icn_list.png) no-repeat;
356
+ padding: 0 0 0 70px;
357
+ margin: 15px 0 7px 21px;
358
+ height: 52px;
359
+ line-height: 51px;
360
+ font-family: helveticaregular;
361
+ font-size: 22px;
362
+ }
363
+ .tab2 .row h2.sfsicls_rs_s {
364
+ background-position: 0 0;
365
+ color: #f7941d;
366
+ }
367
+ .tab2 .row h2.sfsicls_telegram {
368
+ background: url(../images/icons_theme/default/default_telegram.png) no-repeat;
369
+ background-size: contain;
370
+ }
371
+ .tab2 .row h2.sfsicls_vk {
372
+ background: url(../images/icons_theme/default/default_vk.png) no-repeat;
373
+ background-size: contain;
374
+ }
375
+ .tab2 .row h2.sfsicls_ok {
376
+ background: url(../images/icons_theme/default/default_ok.png) no-repeat;
377
+ background-size: contain;
378
+ }
379
+ .tab2 .row h2.sfsicls_wechat {
380
+ background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
381
+ background-size: contain;
382
+ }
383
+ .tab2 .row h2.sfsicls_weibo {
384
+ background: url(../images/icons_theme/default/default_weibo.png) no-repeat;
385
+ background-size: contain;
386
+ }
387
+ .tab2 .row h2.sfsicls_email {
388
+ background-position: 0 -71px;
389
+ color: #d1c800;
390
+ }
391
+ .tab2 .row h2.sfsicls_facebook {
392
+ background-position: 0 -145px;
393
+ color: #004088;
394
+ }
395
+ .tab2 .row h2.sfsicls_twt {
396
+ background-position: 0 -221px;
397
+ color: #00abe3;
398
+ }
399
+
400
+ .tab2 .row h2.sfsicls_share {
401
+ background-position: 0 -372px;
402
+ color: #ef4746;
403
+ }
404
+ .tab2 .row h2.sfsicls_utube {
405
+ background-position: 0 -448px;
406
+ color: #f07963;
407
+ }
408
+ .tab2 .row h2.sfsicls_linkdin {
409
+ background-position: 0 -548px;
410
+ color: #1e88c9;
411
+ width: 100%;
412
+ }
413
+ .tab2 .row h2.sfsicls_pinterest {
414
+ background-position: 0 -623px;
415
+ color: #f15f5d;
416
+ }
417
+ .tab2 .row h2.sfsicls_instagram {
418
+ background-position: 0 -781px;
419
+ color: #369;
420
+ }
421
+ .tab2 .inr_cont {
422
+ margin: 0 0 12px 94px;
423
+ }
424
+ ul.tab_2_email_sec .sf_arow {
425
+ width: 52px;
426
+ height: 52px;
427
+ float: left;
428
+ background: url(../images/sf_arow_icn.png) no-repeat;
429
+ margin: 0 8px 0 6px;
430
+ }
431
+ ul.tab_2_email_sec .email_icn {
432
+ background: url(../images/tab_1_icn_list.png) 0 -71px no-repeat;
433
+ width: 52px;
434
+ height: 52px;
435
+ float: left;
436
+ margin: 0 8px;
437
+ }
438
+ ul.tab_2_email_sec .subscribe_icn {
439
+ background: url(../images/tab_1_icn_list.png) 0 -860px no-repeat;
440
+ width: 52px;
441
+ height: 52px;
442
+ float: left;
443
+ margin: 0 0 0 5px;
444
+ }
445
+ ul.tab_2_email_sec li .radio {
446
+ float: left;
447
+ margin: 8px 0 0;
448
+ }
449
+ .row ul.tab_2_email_sec li label {
450
+ margin: 13px 0 0 7px;
451
+ font-size: 16px;
452
+ float: left;
453
+ width: 160px;
454
+ }
455
+ /*Tab 3*/
456
+ .icns_tab_3 .row_10_1,
457
+ .icns_tab_3 .row_10_10,
458
+ .icns_tab_3 .row_10_11,
459
+ .icns_tab_3 .row_10_2,
460
+ .icns_tab_3 .row_10_3,
461
+ .icns_tab_3 .row_10_4,
462
+ .icns_tab_3 .row_10_5,
463
+ .icns_tab_3 .row_10_6,
464
+ .icns_tab_3 .row_10_7,
465
+ .icns_tab_3 .row_10_8,
466
+ .icns_tab_3 .row_10_9,
467
+ .icns_tab_3 .row_11_1,
468
+ .icns_tab_3 .row_11_10,
469
+ .icns_tab_3 .row_11_11,
470
+ .icns_tab_3 .row_11_2,
471
+ .icns_tab_3 .row_11_3,
472
+ .icns_tab_3 .row_11_4,
473
+ .icns_tab_3 .row_11_5,
474
+ .icns_tab_3 .row_11_6,
475
+ .icns_tab_3 .row_11_7,
476
+ .icns_tab_3 .row_11_8,
477
+ .icns_tab_3 .row_11_9,
478
+ .icns_tab_3 .row_12_1,
479
+ .icns_tab_3 .row_12_10,
480
+ .icns_tab_3 .row_12_11,
481
+ .icns_tab_3 .row_12_2,
482
+ .icns_tab_3 .row_12_3,
483
+ .icns_tab_3 .row_12_4,
484
+ .icns_tab_3 .row_12_5,
485
+ .icns_tab_3 .row_12_6,
486
+ .icns_tab_3 .row_12_7,
487
+ .icns_tab_3 .row_12_8,
488
+ .icns_tab_3 .row_12_9,
489
+ .icns_tab_3 .row_13_1,
490
+ .icns_tab_3 .row_13_10,
491
+ .icns_tab_3 .row_13_11,
492
+ .icns_tab_3 .row_13_2,
493
+ .icns_tab_3 .row_13_3,
494
+ .icns_tab_3 .row_13_4,
495
+ .icns_tab_3 .row_13_5,
496
+ .icns_tab_3 .row_13_6,
497
+ .icns_tab_3 .row_13_7,
498
+ .icns_tab_3 .row_13_8,
499
+ .icns_tab_3 .row_13_9,
500
+ .icns_tab_3 .row_14_1,
501
+ .icns_tab_3 .row_14_10,
502
+ .icns_tab_3 .row_14_11,
503
+ .icns_tab_3 .row_14_2,
504
+ .icns_tab_3 .row_14_3,
505
+ .icns_tab_3 .row_14_4,
506
+ .icns_tab_3 .row_14_5,
507
+ .icns_tab_3 .row_14_6,
508
+ .icns_tab_3 .row_14_7,
509
+ .icns_tab_3 .row_14_8,
510
+ .icns_tab_3 .row_14_9,
511
+ .icns_tab_3 .row_15_1,
512
+ .icns_tab_3 .row_15_10,
513
+ .icns_tab_3 .row_15_11,
514
+ .icns_tab_3 .row_15_2,
515
+ .icns_tab_3 .row_15_3,
516
+ .icns_tab_3 .row_15_4,
517
+ .icns_tab_3 .row_15_5,
518
+ .icns_tab_3 .row_15_6,
519
+ .icns_tab_3 .row_15_7,
520
+ .icns_tab_3 .row_15_8,
521
+ .icns_tab_3 .row_15_9,
522
+ .icns_tab_3 .row_16_1,
523
+ .icns_tab_3 .row_16_10,
524
+ .icns_tab_3 .row_16_11,
525
+ .icns_tab_3 .row_16_2,
526
+ .icns_tab_3 .row_16_3,
527
+ .icns_tab_3 .row_16_4,
528
+ .icns_tab_3 .row_16_5,
529
+ .icns_tab_3 .row_16_6,
530
+ .icns_tab_3 .row_16_7,
531
+ .icns_tab_3 .row_16_8,
532
+ .icns_tab_3 .row_16_9,
533
+ .icns_tab_3 .row_1_1,
534
+ .icns_tab_3 .row_1_10,
535
+ .icns_tab_3 .row_1_11,
536
+ .icns_tab_3 .row_1_14,
537
+ .icns_tab_3 .row_1_2,
538
+ .icns_tab_3 .row_1_3,
539
+ .icns_tab_3 .row_1_4,
540
+ .icns_tab_3 .row_1_5,
541
+ .icns_tab_3 .row_1_6,
542
+ .icns_tab_3 .row_1_7,
543
+ .icns_tab_3 .row_1_8,
544
+ .icns_tab_3 .row_1_9,
545
+ .icns_tab_3 .row_2_1,
546
+ .icns_tab_3 .row_2_10,
547
+ .icns_tab_3 .row_2_11,
548
+ .icns_tab_3 .row_2_14,
549
+ .icns_tab_3 .row_2_2,
550
+ .icns_tab_3 .row_2_3,
551
+ .icns_tab_3 .row_2_4,
552
+ .icns_tab_3 .row_2_5,
553
+ .icns_tab_3 .row_2_6,
554
+ .icns_tab_3 .row_2_7,
555
+ .icns_tab_3 .row_2_8,
556
+ .icns_tab_3 .row_2_9,
557
+ .icns_tab_3 .row_3_1,
558
+ .icns_tab_3 .row_3_10,
559
+ .icns_tab_3 .row_3_11,
560
+ .icns_tab_3 .row_3_14,
561
+ .icns_tab_3 .row_3_2,
562
+ .icns_tab_3 .row_3_3,
563
+ .icns_tab_3 .row_3_4,
564
+ .icns_tab_3 .row_3_5,
565
+ .icns_tab_3 .row_3_6,
566
+ .icns_tab_3 .row_3_7,
567
+ .icns_tab_3 .row_3_8,
568
+ .icns_tab_3 .row_3_9,
569
+ .icns_tab_3 .row_4_1,
570
+ .icns_tab_3 .row_4_10,
571
+ .icns_tab_3 .row_4_11,
572
+ .icns_tab_3 .row_4_14,
573
+ .icns_tab_3 .row_4_2,
574
+ .icns_tab_3 .row_4_3,
575
+ .icns_tab_3 .row_4_4,
576
+ .icns_tab_3 .row_4_5,
577
+ .icns_tab_3 .row_4_6,
578
+ .icns_tab_3 .row_4_7,
579
+ .icns_tab_3 .row_4_8,
580
+ .icns_tab_3 .row_4_9,
581
+ .icns_tab_3 .row_5_1,
582
+ .icns_tab_3 .row_5_10,
583
+ .icns_tab_3 .row_5_11,
584
+ .icns_tab_3 .row_5_14,
585
+ .icns_tab_3 .row_5_2,
586
+ .icns_tab_3 .row_5_3,
587
+ .icns_tab_3 .row_5_4,
588
+ .icns_tab_3 .row_5_5,
589
+ .icns_tab_3 .row_5_6,
590
+ .icns_tab_3 .row_5_7,
591
+ .icns_tab_3 .row_5_8,
592
+ .icns_tab_3 .row_5_9,
593
+ .icns_tab_3 .row_6_1,
594
+ .icns_tab_3 .row_6_10,
595
+ .icns_tab_3 .row_6_11,
596
+ .icns_tab_3 .row_6_14,
597
+ .icns_tab_3 .row_6_2,
598
+ .icns_tab_3 .row_6_3,
599
+ .icns_tab_3 .row_6_4,
600
+ .icns_tab_3 .row_6_5,
601
+ .icns_tab_3 .row_6_6,
602
+ .icns_tab_3 .row_6_7,
603
+ .icns_tab_3 .row_6_8,
604
+ .icns_tab_3 .row_6_9,
605
+ .icns_tab_3 .row_7_1,
606
+ .icns_tab_3 .row_7_10,
607
+ .icns_tab_3 .row_7_11,
608
+ .icns_tab_3 .row_7_2,
609
+ .icns_tab_3 .row_7_3,
610
+ .icns_tab_3 .row_7_4,
611
+ .icns_tab_3 .row_7_5,
612
+ .icns_tab_3 .row_7_6,
613
+ .icns_tab_3 .row_7_7,
614
+ .icns_tab_3 .row_7_8,
615
+ .icns_tab_3 .row_7_9,
616
+ .icns_tab_3 .row_8_1,
617
+ .icns_tab_3 .row_8_10,
618
+ .icns_tab_3 .row_8_11,
619
+ .icns_tab_3 .row_8_2,
620
+ .icns_tab_3 .row_8_3,
621
+ .icns_tab_3 .row_8_4,
622
+ .icns_tab_3 .row_8_5,
623
+ .icns_tab_3 .row_8_6,
624
+ .icns_tab_3 .row_8_7,
625
+ .icns_tab_3 .row_8_8,
626
+ .icns_tab_3 .row_8_9,
627
+ .icns_tab_3 .row_9_1,
628
+ .icns_tab_3 .row_9_10,
629
+ .icns_tab_3 .row_9_11,
630
+ .icns_tab_3 .row_9_2,
631
+ .icns_tab_3 .row_9_3,
632
+ .icns_tab_3 .row_9_4,
633
+ .icns_tab_3 .row_9_5,
634
+ .icns_tab_3 .row_9_6,
635
+ .icns_tab_3 .row_9_7,
636
+ .icns_tab_3 .row_9_8,
637
+ .icns_tab_3 .row_9_9,
638
+ .icns_tab_3 .row_17_1,
639
+ .icns_tab_3 .row_17_2,
640
+ .icns_tab_3 .row_17_3,
641
+ .icns_tab_3 .row_17_4,
642
+ .icns_tab_3 .row_17_5,
643
+ .icns_tab_3 .row_17_6,
644
+ .icns_tab_3 .row_17_7,
645
+ .icns_tab_3 .row_17_8,
646
+ .icns_tab_3 .row_17_9,
647
+ .icns_tab_3 .row_17_10,
648
+ .icns_tab_3 .row_17_14,
649
+ .icns_tab_3 .row_17_15,
650
+ .icns_tab_3 .row_17_16,
651
+ .icns_tab_3 .row_17_17,
652
+ .icns_tab_3 .row_17_18,
653
+ .icns_tab_3 .row_17_11,
654
+ .icns_tab_3 .row_7_14,
655
+ .icns_tab_3 .row_8_14,
656
+ .icns_tab_3 .row_9_14,
657
+ .icns_tab_3 .row_10_14,
658
+ .icns_tab_3 .row_11_14,
659
+ .icns_tab_3 .row_12_14,
660
+ .icns_tab_3 .row_13_14,
661
+ .icns_tab_3 .row_14_14,
662
+ .icns_tab_3 .row_15_22,
663
+ .icns_tab_3 .row_16_22,
664
+ .icns_tab_3 .row_17_22,
665
+ .icns_tab_3 .row_17_15,
666
+ .icns_tab_3 .row_17_16,
667
+ .icns_tab_3 .row_17_17,
668
+ .icns_tab_3 .row_1_15,
669
+ .icns_tab_3 .row_2_15,
670
+ .icns_tab_3 .row_3_15,
671
+ .icns_tab_3 .row_4_15,
672
+ .icns_tab_3 .row_5_15,
673
+ .icns_tab_3 .row_6_15,
674
+ .icns_tab_3 .row_7_15,
675
+ .icns_tab_3 .row_8_15,
676
+ .icns_tab_3 .row_9_15,
677
+ .icns_tab_3 .row_10_15,
678
+ .icns_tab_3 .row_11_15,
679
+ .icns_tab_3 .row_12_15,
680
+ .icns_tab_3 .row_13_15,
681
+ .icns_tab_3 .row_14_15,
682
+ .icns_tab_3 .row_15_15,
683
+ .icns_tab_3 .row_16_15,
684
+
685
+ .icns_tab_3 .row_1_16,
686
+ .icns_tab_3 .row_2_16,
687
+ .icns_tab_3 .row_3_16,
688
+ .icns_tab_3 .row_4_16,
689
+ .icns_tab_3 .row_5_16,
690
+ .icns_tab_3 .row_6_16,
691
+ .icns_tab_3 .row_7_16,
692
+ .icns_tab_3 .row_8_16,
693
+ .icns_tab_3 .row_9_16,
694
+ .icns_tab_3 .row_10_16,
695
+ .icns_tab_3 .row_11_16,
696
+ .icns_tab_3 .row_12_16,
697
+ .icns_tab_3 .row_13_16,
698
+ .icns_tab_3 .row_14_16,
699
+ .icns_tab_3 .row_15_16,
700
+ .icns_tab_3 .row_16_16,
701
+
702
+ .icns_tab_3 .row_1_17,
703
+ .icns_tab_3 .row_2_17,
704
+ .icns_tab_3 .row_3_17,
705
+ .icns_tab_3 .row_4_17,
706
+ .icns_tab_3 .row_5_17,
707
+ .icns_tab_3 .row_6_17,
708
+ .icns_tab_3 .row_7_17,
709
+ .icns_tab_3 .row_8_17,
710
+ .icns_tab_3 .row_9_17,
711
+ .icns_tab_3 .row_10_17,
712
+ .icns_tab_3 .row_11_17,
713
+ .icns_tab_3 .row_12_17,
714
+ .icns_tab_3 .row_13_17,
715
+ .icns_tab_3 .row_14_17,
716
+ .icns_tab_3 .row_15_17,
717
+ .icns_tab_3 .row_16_17,
718
+
719
+ .icns_tab_3 .row_1_18,
720
+ .icns_tab_3 .row_2_18,
721
+ .icns_tab_3 .row_3_18,
722
+ .icns_tab_3 .row_4_18,
723
+ .icns_tab_3 .row_5_18,
724
+ .icns_tab_3 .row_6_18,
725
+ .icns_tab_3 .row_7_18,
726
+ .icns_tab_3 .row_8_18,
727
+ .icns_tab_3 .row_9_18,
728
+ .icns_tab_3 .row_10_18,
729
+ .icns_tab_3 .row_11_18,
730
+ .icns_tab_3 .row_12_18,
731
+ .icns_tab_3 .row_13_18,
732
+ .icns_tab_3 .row_14_18,
733
+ .icns_tab_3 .row_15_18,
734
+ .icns_tab_3 .row_16_18,
735
+ .icns_tab_3 .row_17_18,
736
+ .icns_tab_3 .row_15_14,
737
+ .icns_tab_3 .row_16_14 {
738
+ background: url(../images/tab_3_icns.png) no-repeat;
739
+ width: 53px;
740
+ height: 52px;
741
+ float: left;
742
+ margin: 0 4px 0 0;
743
+ }
744
+ .icns_tab_3 .row_1_1 {
745
+ background-position: -1px 0;
746
+ }
747
+ .icns_tab_3 .row_1_2 {
748
+ background-position: -60px 0;
749
+ }
750
+ .icns_tab_3 .row_1_3 {
751
+ background-position: -118px 0;
752
+ }
753
+ .icns_tab_3 .row_1_4 {
754
+ background-position: -176px 0;
755
+ }
756
+ .icns_tab_3 .row_1_5 {
757
+ background-position: -235px 0;
758
+ }
759
+ .icns_tab_3 .row_1_6 {
760
+ background-position: -293px 0;
761
+ }
762
+ .icns_tab_3 .row_1_7 {
763
+ background-position: -350px 0;
764
+ }
765
+ .icns_tab_3 .row_1_8 {
766
+ background-position: -409px 0;
767
+ }
768
+ .icns_tab_3 .row_1_9 {
769
+ background-position: -467px 0;
770
+ }
771
+ .icns_tab_3 .row_1_10 {
772
+ background-position: -526px 0;
773
+ }
774
+ .icns_tab_3 .row_1_11 {
775
+ background-position: -711px 0;
776
+ }
777
+
778
+ .icns_tab_3 .row_1_14 {
779
+ background-position: -773px 0;
780
+ }
781
+ .icns_tab_3 .row_1_15 {
782
+ background-position: -838px 0;
783
+ }
784
+ .icns_tab_3 .row_1_16 {
785
+ background-position: -909px 0;
786
+ }
787
+ .icns_tab_3 .row_1_17 {
788
+ background-position: -977px 0;
789
+ }
790
+ .icns_tab_3 .row_1_18 {
791
+ background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
792
+ background-size: contain;
793
+ }.icns_tab_3 .row_2_1 {
794
+ background-position: 0 -74px;
795
+ }
796
+ .icns_tab_3 .row_2_2 {
797
+ background-position: -60px -74px;
798
+ }
799
+ .icns_tab_3 .row_2_3 {
800
+ background-position: -118px -74px;
801
+ }
802
+ .icns_tab_3 .row_2_4 {
803
+ background-position: -176px -74px;
804
+ }
805
+ .icns_tab_3 .row_2_5 {
806
+ background-position: -235px -74px;
807
+ }
808
+ .icns_tab_3 .row_2_6 {
809
+ background-position: -293px -74px;
810
+ }
811
+ .icns_tab_3 .row_2_7 {
812
+ background-position: -350px -74px;
813
+ }
814
+ .icns_tab_3 .row_2_8 {
815
+ background-position: -409px -74px;
816
+ }
817
+ .icns_tab_3 .row_2_9 {
818
+ background-position: -467px -74px;
819
+ }
820
+ .icns_tab_3 .row_2_10 {
821
+ background-position: -526px -74px;
822
+ }
823
+ .icns_tab_3 .row_2_11 {
824
+ background-position: -711px -74px;
825
+ }
826
+ .icns_tab_3 .row_2_14 {
827
+ background-position: -773px -74px;
828
+ }
829
+ .icns_tab_3 .row_2_15 {
830
+ background-position: -838px -74px;
831
+ }
832
+ .icns_tab_3 .row_2_16 {
833
+ background-position: -909px -74px;
834
+ }
835
+ .icns_tab_3 .row_2_17 {
836
+ background-position: -977px -74px;
837
+ }
838
+ .icns_tab_3 .row_2_18 {
839
+ background: url(../images/icons_theme/flat/flat_wechat.png) no-repeat;
840
+ background-size: contain;
841
+ }
842
+ .icns_tab_3 .row_3_1 {
843
+ background-position: 0 -146px;
844
+ }
845
+ .icns_tab_3 .row_3_2 {
846
+ background-position: -60px -146px;
847
+ }
848
+ .icns_tab_3 .row_3_3 {
849
+ background-position: -118px -146px;
850
+ }
851
+ .icns_tab_3 .row_3_4 {
852
+ background-position: -176px -146px;
853
+ }
854
+ .icns_tab_3 .row_3_5 {
855
+ background-position: -235px -146px;
856
+ }
857
+ .icns_tab_3 .row_3_6 {
858
+ background-position: -293px -146px;
859
+ }
860
+ .icns_tab_3 .row_3_7 {
861
+ background-position: -350px -146px;
862
+ }
863
+ .icns_tab_3 .row_3_8 {
864
+ background-position: -409px -146px;
865
+ }
866
+ .icns_tab_3 .row_3_9 {
867
+ background-position: -467px -146px;
868
+ }
869
+ .icns_tab_3 .row_3_10 {
870
+ background-position: -526px -146px;
871
+ }
872
+ .icns_tab_3 .row_3_11 {
873
+ background-position: -711px -147px;
874
+ }
875
+ .icns_tab_3 .row_3_14 {
876
+ background-position: -773px -147px;
877
+ }
878
+ .icns_tab_3 .row_3_15 {
879
+ background-position: -838px -147px;
880
+ }
881
+ .icns_tab_3 .row_3_16 {
882
+ background-position: -909px -147px;
883
+ }
884
+ .icns_tab_3 .row_3_17 {
885
+ background-position: -977px -147px;
886
+ }
887
+ .icns_tab_3 .row_3_18 {
888
+ background: url(../images/icons_theme/thin/thin_wechat.png) no-repeat;
889
+ background-size: contain;
890
+ }
891
+ .icns_tab_3 .row_4_1 {
892
+ background-position: 0 -222px;
893
+ }
894
+ .icns_tab_3 .row_4_2 {
895
+ background-position: -60px -222px;
896
+ }
897
+ .icns_tab_3 .row_4_3 {
898
+ background-position: -118px -222px;
899
+ }
900
+ .icns_tab_3 .row_4_4 {
901
+ background-position: -176px -222px;
902
+ }
903
+ .icns_tab_3 .row_4_5 {
904
+ background-position: -235px -222px;
905
+ }
906
+ .icns_tab_3 .row_4_6 {
907
+ background-position: -293px -222px;
908
+ }
909
+ .icns_tab_3 .row_4_7 {
910
+ background-position: -350px -222px;
911
+ }
912
+ .icns_tab_3 .row_4_8 {
913
+ background-position: -409px -222px;
914
+ }
915
+ .icns_tab_3 .row_4_9 {
916
+ background-position: -467px -222px;
917
+ }
918
+ .icns_tab_3 .row_4_10 {
919
+ background-position: -526px -222px;
920
+ }
921
+ .icns_tab_3 .row_4_11 {
922
+ background-position: -711px -222px;
923
+ }
924
+ .icns_tab_3 .row_4_14 {
925
+ background-position: -773px -222px;
926
+ }
927
+ .icns_tab_3 .row_4_15 {
928
+ background-position: -838px -222px;
929
+ }
930
+ .icns_tab_3 .row_4_16 {
931
+ background-position: -909px -222px;
932
+ }
933
+ .icns_tab_3 .row_4_17 {
934
+ background-position: -977px -222px;
935
+ }
936
+ .icns_tab_3 .row_4_18 {
937
+ background: url(../images/icons_theme/cute/cute_wechat.png) no-repeat;
938
+ background-size: contain;
939
+ }
940
+ .icns_tab_3 .row_5_1 {
941
+ background-position: 0 -296px;
942
+ }
943
+ .icns_tab_3 .row_5_2 {
944
+ background-position: -60px -296px;
945
+ }
946
+ .icns_tab_3 .row_5_3 {
947
+ background-position: -118px -296px;
948
+ }
949
+ .icns_tab_3 .row_5_4 {
950
+ background-position: -176px -296px;
951
+ }
952
+ .icns_tab_3 .row_5_5 {
953
+ background-position: -235px -296px;
954
+ }
955
+ .icns_tab_3 .row_5_6 {
956
+ background-position: -293px -296px;
957
+ }
958
+ .icns_tab_3 .row_5_7 {
959
+ background-position: -350px -296px;
960
+ }
961
+ .icns_tab_3 .row_5_8 {
962
+ background-position: -409px -296px;
963
+ }
964
+ .icns_tab_3 .row_5_9 {
965
+ background-position: -467px -296px;
966
+ }
967
+ .icns_tab_3 .row_5_10 {
968
+ background-position: -526px -296px;
969
+ }
970
+ .icns_tab_3 .row_5_11 {
971
+ background-position: -711px -296px;
972
+ }
973
+ .icns_tab_3 .row_5_14 {
974
+ background-position: -773px -296px;
975
+ }
976
+ .icns_tab_3 .row_5_15 {
977
+ background-position: -838px -296px;
978
+ }
979
+ .icns_tab_3 .row_5_16 {
980
+ background-position: -909px -296px;
981
+ }
982
+ .icns_tab_3 .row_5_17 {
983
+ background-position: -977px -296px;
984
+ }
985
+ .icns_tab_3 .row_5_18 {
986
+ background: url(../images/icons_theme/cubes/cubes_wechat.png);
987
+ background-size: contain;
988
+ }
989
+ .icns_tab_3 .row_6_1 {
990
+ background-position: 0 -370px;
991
+ }
992
+ .icns_tab_3 .row_6_2 {
993
+ background-position: -60px -370px;
994
+ }
995
+ .icns_tab_3 .row_6_3 {
996
+ background-position: -118px -370px;
997
+ }
998
+ .icns_tab_3 .row_6_4 {
999
+ background-position: -176px -370px;
1000
+ }
1001
+ .icns_tab_3 .row_6_5 {
1002
+ background-position: -235px -370px;
1003
+ }
1004
+ .icns_tab_3 .row_6_6 {
1005
+ background-position: -293px -370px;
1006
+ }
1007
+ .icns_tab_3 .row_6_7 {
1008
+ background-position: -350px -370px;
1009
+ }
1010
+ .icns_tab_3 .row_6_8 {
1011
+ background-position: -409px -370px;
1012
+ }
1013
+ .icns_tab_3 .row_6_9 {
1014
+ background-position: -468px -370px;
1015
+ }
1016
+ .icns_tab_3 .row_6_10 {
1017
+ background-position: -526px -370px;
1018
+ }
1019
+ .icns_tab_3 .row_6_11 {
1020
+ background-position: -711px -370px;
1021
+ }
1022
+ .icns_tab_3 .row_6_14 {
1023
+ background-position: -773px -370px;
1024
+ }
1025
+ .icns_tab_3 .row_6_15 {
1026
+ background-position: -838px -370px;
1027
+ }
1028
+ .icns_tab_3 .row_6_16 {
1029
+ background-position: -909px -370px;
1030
+ }
1031
+ .icns_tab_3 .row_6_17 {
1032
+ background-position: -977px -370px;
1033
+ }
1034
+ .icns_tab_3 .row_6_18 {
1035
+ background: url(../images/icons_theme/chrome_blue/chrome_blue_wechat.png);
1036
+ background-size: contain;
1037
+ }
1038
+ .icns_tab_3 .row_7_1 {
1039
+ background-position: 0 -444px;
1040
+ }
1041
+ .icns_tab_3 .row_7_2 {
1042
+ background-position: -60px -444px;
1043
+ }
1044
+ .icns_tab_3 .row_7_3 {
1045
+ background-position: -118px -444px;
1046
+ }
1047
+ .icns_tab_3 .row_7_4 {
1048
+ background-position: -176px -444px;
1049
+ }
1050
+ .icns_tab_3 .row_7_5 {
1051
+ background-position: -235px -444px;
1052
+ }
1053
+ .icns_tab_3 .row_7_6 {
1054
+ background-position: -293px -444px;
1055
+ }
1056
+ .icns_tab_3 .row_7_7 {
1057
+ background-position: -350px -444px;
1058
+ }
1059
+ .icns_tab_3 .row_7_8 {
1060
+ background-position: -409px -444px;
1061
+ }
1062
+ .icns_tab_3 .row_7_9 {
1063
+ background-position: -466px -444px;
1064
+ }
1065
+ .icns_tab_3 .row_7_10 {
1066
+ background-position: -526px -444px;
1067
+ }
1068
+ .icns_tab_3 .row_7_11 {
1069
+ background-position: -711px -444px;
1070
+ }
1071
+ .icns_tab_3 .row_7_14 {
1072
+ background-position: -773px -444px;
1073
+ }
1074
+ .icns_tab_3 .row_7_15 {
1075
+ background-position: -838px -444px;
1076
+ }
1077
+ .icns_tab_3 .row_7_16 {
1078
+ background-position: -909px -444px;
1079
+ }
1080
+ .icns_tab_3 .row_7_17 {
1081
+ background-position: -977px -444px;
1082
+ }
1083
+ .icns_tab_3 .row_7_18 {
1084
+ background: url(../images/icons_theme/chrome_grey/chrome_grey_wechat.png);
1085
+ background-size: contain;
1086
+ }
1087
+ .icns_tab_3 .row_8_1 {
1088
+ background-position: 0 -518px;
1089
+ }
1090
+ .icns_tab_3 .row_8_2 {
1091
+ background-position: -60px -518px;
1092
+ }
1093
+ .icns_tab_3 .row_8_3 {
1094
+ background-position: -118px -518px;
1095
+ }
1096
+ .icns_tab_3 .row_8_4 {
1097
+ background-position: -176px -518px;
1098
+ }
1099
+ .icns_tab_3 .row_8_5 {
1100
+ background-position: -235px -518px;
1101
+ }
1102
+ .icns_tab_3 .row_8_6 {
1103
+ background-position: -293px -518px;
1104
+ }
1105
+ .icns_tab_3 .row_8_7 {
1106
+ background-position: -350px -518px;
1107
+ }
1108
+ .icns_tab_3 .row_8_8 {
1109
+ background-position: -409px -518px;
1110
+ }
1111
+ .icns_tab_3 .row_8_9 {
1112
+ background-position: -467px -518px;
1113
+ }
1114
+ .icns_tab_3 .row_8_10 {
1115
+ background-position: -526px -518px;
1116
+ }
1117
+ .icns_tab_3 .row_8_11 {
1118
+ background-position: -711px -518px;
1119
+ }
1120
+ .icns_tab_3 .row_8_14 {
1121
+ background-position: -773px -518px;
1122
+ }
1123
+ .icns_tab_3 .row_8_15 {
1124
+ background-position: -838px -518px;
1125
+ }
1126
+ .icns_tab_3 .row_8_16 {
1127
+ background-position: -909px -518px;
1128
+ }
1129
+ .icns_tab_3 .row_8_17 {
1130
+ background-position: -977px -518px;
1131
+ }
1132
+ .icns_tab_3 .row_8_18 {
1133
+ background: url(../images/icons_theme/splash/splash_wechat.png);
1134
+ background-size: contain;
1135
+ }
1136
+ .icns_tab_3 .row_9_1 {
1137
+ background-position: 0 -592px;
1138
+ }
1139
+ .icns_tab_3 .row_9_2 {
1140
+ background-position: -60px -592px;
1141
+ }
1142
+ .icns_tab_3 .row_9_3 {
1143
+ background-position: -118px -592px;
1144
+ }
1145
+ .icns_tab_3 .row_9_4 {
1146
+ background-position: -176px -592px;
1147
+ }
1148
+ .icns_tab_3 .row_9_5 {
1149
+ background-position: -235px -592px;
1150
+ }
1151
+ .icns_tab_3 .row_9_6 {
1152
+ background-position: -293px -592px;
1153
+ }
1154
+ .icns_tab_3 .row_9_7 {
1155
+ background-position: -350px -592px;
1156
+ }
1157
+ .icns_tab_3 .row_9_8 {
1158
+ background-position: -409px -592px;
1159
+ }
1160
+ .icns_tab_3 .row_9_9 {
1161
+ background-position: -467px -592px;
1162
+ }
1163
+ .icns_tab_3 .row_9_10 {
1164
+ background-position: -526px -592px;
1165
+ }
1166
+ .icns_tab_3 .row_9_11 {
1167
+ background-position: -711px -592px;
1168
+ }
1169
+ .icns_tab_3 .row_9_14 {
1170
+ background-position: -773px -592px;
1171
+ }
1172
+ .icns_tab_3 .row_9_15 {
1173
+ background-position: -838px -592px;
1174
+ }
1175
+ .icns_tab_3 .row_9_16 {
1176
+ background-position: -909px -592px;
1177
+ }
1178
+ .icns_tab_3 .row_9_17 {
1179
+ background-position: -977px -592px;
1180
+ }
1181
+ .icns_tab_3 .row_9_18 {
1182
+ background: url(../images/icons_theme/orange/orange_wechat.png);
1183
+ background-size: contain;
1184
+ }
1185
+ .icns_tab_3 .row_10_1 {
1186
+ background-position: 0 -666px;
1187
+ }
1188
+ .icns_tab_3 .row_10_2 {
1189
+ background-position: -60px -666px;
1190
+ }
1191
+ .icns_tab_3 .row_10_3 {
1192
+ background-position: -118px -666px;
1193
+ }
1194
+ .icns_tab_3 .row_10_4 {
1195
+ background-position: -176px -666px;
1196
+ }
1197
+ .icns_tab_3 .row_10_5 {
1198
+ background-position: -235px -666px;
1199
+ }
1200
+ .icns_tab_3 .row_10_6 {
1201
+ background-position: -293px -666px;
1202
+ }
1203
+ .icns_tab_3 .row_10_7 {
1204
+ background-position: -350px -666px;
1205
+ }
1206
+ .icns_tab_3 .row_10_8 {
1207
+ background-position: -409px -666px;
1208
+ }
1209
+ .icns_tab_3 .row_10_9 {
1210
+ background-position: -467px -666px;
1211
+ }
1212
+ .icns_tab_3 .row_10_10 {
1213
+ background-position: -526px -666px;
1214
+ }
1215
+ .icns_tab_3 .row_10_11 {
1216
+ background-position: -711px -666px;
1217
+ }
1218
+ .icns_tab_3 .row_10_14 {
1219
+ background-position: -773px -666px;
1220
+ }
1221
+ .icns_tab_3 .row_10_15 {
1222
+ background-position: -838px -666px;
1223
+ }
1224
+ .icns_tab_3 .row_10_16 {
1225
+ background-position: -909px -666px;
1226
+ }
1227
+ .icns_tab_3 .row_10_17 {
1228
+ background-position: -977px -666px;
1229
+ }
1230
+ .icns_tab_3 .row_10_18 {
1231
+ background: url(../images/icons_theme/crystal/crystal_wechat.png);
1232
+ background-size: contain;
1233
+ }
1234
+ .icns_tab_3 .row_11_1 {
1235
+ background-position: 0 -740px;
1236
+ }
1237
+ .icns_tab_3 .row_11_2 {
1238
+ background-position: -60px -740px;
1239
+ }
1240
+ .icns_tab_3 .row_11_3 {
1241
+ background-position: -118px -740px;
1242
+ }
1243
+ .icns_tab_3 .row_11_4 {
1244
+ background-position: -176px -740px;
1245
+ }
1246
+ .icns_tab_3 .row_11_5 {
1247
+ background-position: -235px -740px;
1248
+ }
1249
+ .icns_tab_3 .row_11_6 {
1250
+ background-position: -293px -740px;
1251
+ }
1252
+ .icns_tab_3 .row_11_7 {
1253
+ background-position: -350px -740px;
1254
+ }
1255
+ .icns_tab_3 .row_11_8 {
1256
+ background-position: -409px -740px;
1257
+ }
1258
+ .icns_tab_3 .row_11_9 {
1259
+ background-position: -467px -740px;
1260
+ }
1261
+ .icns_tab_3 .row_11_10 {
1262
+ background-position: -526px -740px;
1263
+ }
1264
+ .icns_tab_3 .row_11_11 {
1265
+ background-position: -711px -740px;
1266
+ }
1267
+ .icns_tab_3 .row_11_14 {
1268
+ background-position: -773px -740px;
1269
+ }
1270
+ .icns_tab_3 .row_11_15 {
1271
+ background-position: -838px -740px;
1272
+ }
1273
+ .icns_tab_3 .row_11_16 {
1274
+ background-position: -909px -740px;
1275
+ }
1276
+ .icns_tab_3 .row_11_17 {
1277
+ background-position: -977px -740px;
1278
+ }
1279
+ .icns_tab_3 .row_11_18 {
1280
+ background: url(../images/icons_theme/glossy/glossy_wechat.png);
1281
+ background-size: contain;
1282
+ }
1283
+ .icns_tab_3 .row_12_1 {
1284
+ background-position: 0 -814px;
1285
+ }
1286
+ .icns_tab_3 .row_12_2 {
1287
+ background-position: -60px -814px;
1288
+ }
1289
+ .icns_tab_3 .row_12_3 {
1290
+ background-position: -118px -814px;
1291
+ }
1292
+ .icns_tab_3 .row_12_4 {
1293
+ background-position: -176px -814px;
1294
+ }
1295
+ .icns_tab_3 .row_12_5 {
1296
+ background-position: -235px -814px;
1297
+ }
1298
+ .icns_tab_3 .row_12_6 {
1299
+ background-position: -293px -814px;
1300
+ }
1301
+ .icns_tab_3 .row_12_7 {
1302
+ background-position: -350px -814px;
1303
+ }
1304
+ .icns_tab_3 .row_12_8 {
1305
+ background-position: -409px -814px;
1306
+ }
1307
+ .icns_tab_3 .row_12_9 {
1308
+ background-position: -467px -814px;
1309
+ }
1310
+ .icns_tab_3 .row_12_10 {
1311
+ background-position: -526px -814px;
1312
+ }
1313
+ .icns_tab_3 .row_12_11 {
1314
+ background-position: -711px -814px;
1315
+ }
1316
+ .icns_tab_3 .row_12_14 {
1317
+ background-position: -773px -814px;
1318
+ }
1319
+ .icns_tab_3 .row_12_15 {
1320
+ background-position: -838px -814px;
1321
+ }
1322
+ .icns_tab_3 .row_12_16 {
1323
+ background-position: -909px -814px;
1324
+ }
1325
+ .icns_tab_3 .row_12_17 {
1326
+ background-position: -977px -814px;
1327
+ }
1328
+ .icns_tab_3 .row_12_18 {
1329
+ background: url(../images/icons_theme/black/black_wechat.png);
1330
+ background-size: contain;
1331
+ }
1332
+ .icns_tab_3 .row_13_1 {
1333
+ background-position: 0 -888px;
1334
+ }
1335
+ .icns_tab_3 .row_13_2 {
1336
+ background-position: -60px -888px;
1337
+ }
1338
+ .icns_tab_3 .row_13_3 {
1339
+ background-position: -118px -888px;
1340
+ }
1341
+ .icns_tab_3 .row_13_4 {
1342
+ background-position: -176px -888px;
1343
+ }
1344
+ .icns_tab_3 .row_13_5 {
1345
+ background-position: -235px -888px;
1346
+ }
1347
+ .icns_tab_3 .row_13_6 {
1348
+ background-position: -293px -888px;
1349
+ }
1350
+ .icns_tab_3 .row_13_7 {
1351
+ background-position: -350px -888px;
1352
+ }
1353
+ .icns_tab_3 .row_13_8 {
1354
+ background-position: -409px -888px;
1355
+ }
1356
+ .icns_tab_3 .row_13_9 {
1357
+ background-position: -467px -888px;
1358
+ }
1359
+ .icns_tab_3 .row_13_10 {
1360
+ background-position: -526px -888px;
1361
+ }
1362
+ .icns_tab_3 .row_13_11 {
1363
+ background-position: -711px -888px;
1364
+ }
1365
+ .icns_tab_3 .row_13_14 {
1366
+ background-position: -773px -888px;
1367
+ }
1368
+ .icns_tab_3 .row_13_15 {
1369
+ background-position: -838px -888px;
1370
+ }
1371
+ .icns_tab_3 .row_13_16 {
1372
+ background-position: -909px -888px;
1373
+ }
1374
+ .icns_tab_3 .row_13_17 {
1375
+ background-position: -977px -888px;
1376
+ }
1377
+ .icns_tab_3 .row_13_18 {
1378
+ background: url(../images/icons_theme/silver/silver_wechat.png);
1379
+
1380
+ background-size: contain;
1381
+ }
1382
+ .icns_tab_3 .row_14_1 {
1383
+ background-position: 0 -962px;
1384
+ }
1385
+ .icns_tab_3 .row_14_2 {
1386
+ background-position: -60px -962px;
1387
+ }
1388
+ .icns_tab_3 .row_14_3 {
1389
+ background-position: -118px -962px;
1390
+ }
1391
+ .icns_tab_3 .row_14_4 {
1392
+ background-position: -176px -962px;
1393
+ }
1394
+ .icns_tab_3 .row_14_5 {
1395
+ background-position: -235px -962px;
1396
+ }
1397
+ .icns_tab_3 .row_14_6 {
1398
+ background-position: -293px -962px;
1399
+ }
1400
+ .icns_tab_3 .row_14_7 {
1401
+ background-position: -350px -962px;
1402
+ }
1403
+ .icns_tab_3 .row_14_8 {
1404
+ background-position: -409px -962px;
1405
+ }
1406
+ .icns_tab_3 .row_14_9 {
1407
+ background-position: -467px -962px;
1408
+ }
1409
+ .icns_tab_3 .row_14_10 {
1410
+ background-position: -526px -962px;
1411
+ }
1412
+ .icns_tab_3 .row_14_11 {
1413
+ background-position: -711px -962px;
1414
+ }
1415
+ .icns_tab_3 .row_14_14 {
1416
+ background-position: -773px -962px;
1417
+ }
1418
+ .icns_tab_3 .row_14_15 {
1419
+ background-position: -838px -962px;
1420
+ }
1421
+ .icns_tab_3 .row_14_16 {
1422
+ background-position: -909px -962px;
1423
+ }
1424
+ .icns_tab_3 .row_14_17 {
1425
+ background-position: -977px -962px;
1426
+ }
1427
+ .icns_tab_3 .row_14_18 {
1428
+ background: url(../images/icons_theme/shaded_dark/shaded_dark_wechat.png);
1429
+
1430
+ background-size: contain;
1431
+ }
1432
+ .icns_tab_3 .row_15_1 {
1433
+ background-position: 0 -1036px;
1434
+ }
1435
+ .icns_tab_3 .row_15_2 {
1436
+ background-position: -60px -1036px;
1437
+ }
1438
+ .icns_tab_3 .row_15_3 {
1439
+ background-position: -118px -1036px;
1440
+ }
1441
+ .icns_tab_3 .row_15_4 {
1442
+ background-position: -176px -1036px;
1443
+ }
1444
+ .icns_tab_3 .row_15_5 {
1445
+ background-position: -235px -1036px;
1446
+ }
1447
+ .icns_tab_3 .row_15_6 {
1448
+ background-position: -293px -1036px;
1449
+ }
1450
+ .icns_tab_3 .row_15_7 {
1451
+ background-position: -350px -1036px;
1452
+ }
1453
+ .icns_tab_3 .row_15_8 {
1454
+ background-position: -409px -1036px;
1455
+ }
1456
+ .icns_tab_3 .row_15_9 {
1457
+ background-position: -467px -1036px;
1458
+ }
1459
+ .icns_tab_3 .row_15_10 {
1460
+ background-position: -526px -1036px;
1461
+ }
1462
+ .icns_tab_3 .row_15_11 {
1463
+ background-position: -711px -1036px;
1464
+ }
1465
+ .icns_tab_3 .row_15_14 {
1466
+ background-position: -773px -1036px;
1467
+ }
1468
+ .icns_tab_3 .row_15_15 {
1469
+ background-position: -838px -1036px;
1470
+ }
1471
+ .icns_tab_3 .row_15_16 {
1472
+ background-position: -909px -1036px;
1473
+ }
1474
+ .icns_tab_3 .row_15_17 {
1475
+ background-position: -977px -1036px;
1476
+ }
1477
+ .icns_tab_3 .row_15_18 {
1478
+ background: url(../images/icons_theme/shaded_light/shaded_light_wechat.png);
1479
+ background-size: contain;
1480
+ }
1481
+ .icns_tab_3 .row_16_1 {
1482
+ background-position: 0 -1109px;
1483
+ }
1484
+ .icns_tab_3 .row_16_2 {
1485
+ background-position: -60px -1109px;
1486
+ }
1487
+ .icns_tab_3 .row_16_3 {
1488
+ background-position: -118px -1109px;
1489
+ }
1490
+ .icns_tab_3 .row_16_4 {
1491
+ background-position: -176px -1109px;
1492
+ }
1493
+ .icns_tab_3 .row_16_5 {
1494
+ background-position: -235px -1109px;
1495
+ }
1496
+ .icns_tab_3 .row_16_6 {
1497
+ background-position: -293px -1109px;
1498
+ }
1499
+ .icns_tab_3 .row_16_7 {
1500
+ background-position: -350px -1109px;
1501
+ }
1502
+ .icns_tab_3 .row_16_8 {
1503
+ background-position: -409px -1109px;
1504
+ }
1505
+ .icns_tab_3 .row_16_9 {
1506
+ background-position: -467px -1109px;
1507
+ }
1508
+ .icns_tab_3 .row_16_10 {
1509
+ background-position: -526px -1109px;
1510
+ }
1511
+ .icns_tab_3 .row_16_11 {
1512
+ background-position: -711px -1109px;
1513
+ }
1514
+ .icns_tab_3 .row_16_14 {
1515
+ background-position: -773px -1109px;
1516
+ }
1517
+ .icns_tab_3 .row_16_15 {
1518
+ background-position: -838px -1109px;
1519
+ }
1520
+ .icns_tab_3 .row_16_16 {
1521
+ background-position: -909px -1109px;
1522
+ }
1523
+ .icns_tab_3 .row_16_17 {
1524
+ background-position: -977px -1109px;
1525
+ }
1526
+ .icns_tab_3 .row_16_18 {
1527
+ background: url(../images/icons_theme/transparent/transparent_wechat.png);
1528
+ background-size: contain;
1529
+ }
1530
+
1531
+ /*tab 6 css*/
1532
+ .tab6 .social_icon_like1 {
1533
+ width: 100%;
1534
+ float: left;
1535
+ margin: 0;
1536
+ text-align: center;
1537
+ }
1538
+ .tab6 .social_icon_like1 ul {
1539
+ margin: 0;
1540
+ padding: 0;
1541
+ list-style: none;
1542
+ text-align: center;
1543
+ }
1544
+ .tab6 .social_icon_like1 li {
1545
+ margin: 0 10px 0 0;
1546
+ padding: 0;
1547
+ width: auto;
1548
+ list-style: none;
1549
+ display: inline-block;
1550
+ }
1551
+ .tab6 .social_icon_like1 li span {
1552
+ margin: 0;
1553
+ width: 44px;
1554
+ display: block;
1555
+ background: url(../images/count_bg1.png) no-repeat;
1556
+ height: 22px;
1557
+ overflow: hidden;
1558
+ padding: 2px 2px 2px 10px;
1559
+ font-family: helveticaregular;
1560
+ font-size: 15px;
1561
+ text-align: center;
1562
+ line-height: 20px;
1563
+ color: #5a6570;
1564
+ float: left;
1565
+ }
1566
+ .tab6 .social_icon_like1 li img {
1567
+ float: left;
1568
+ margin-right: 5px;
1569
+ display: block;
1570
+ }
1571
+ .tab6 .social_icon_like1 li a {
1572
+ color: #5a6570;
1573
+ text-decoration: none;
1574
+ display: block;
1575
+ }
1576
+ .tab6 ul.usually {
1577
+ margin: 7px 0 6px 30px;
1578
+ padding: 0;
1579
+ list-style: none;
1580
+ }
1581
+ .tab6 ul.usually li {
1582
+ margin: 0;
1583
+ padding: 0;
1584
+ width: auto;
1585
+ list-style: none;
1586
+ text-align: left;
1587
+ font-size: 17px;
1588
+ color: #5a6570;
1589
+ }
1590
+ .tab6 ul.enough_waffling {
1591
+ margin: 9px 0 0;
1592
+ padding: 0;
1593
+ list-style: none;
1594
+ text-align: center;
1595
+ }
1596
+ .tab6 ul.enough_waffling li {
1597
+ margin: 0 22px;
1598
+ padding: 0;
1599
+ list-style: none;
1600
+ display: inline-block;
1601
+ }
1602
+ .tab6 ul.enough_waffling li span {
1603
+ float: left;
1604
+ }
1605
+ .tab6 ul.enough_waffling li label {
1606
+ margin: 0 0 0 20px;
1607
+ float: left;
1608
+ font-family: helveticaregular;
1609
+ font-size: 18px;
1610
+ font-weight: 400;
1611
+ text-align: center;
1612
+ line-height: 38px;
1613
+ color: #5a6570;
1614
+ }
1615
+ .tab6 .row {
1616
+ border-top: 1px solid #eaebee;
1617
+ margin-top: 25px;
1618
+ padding-top: 15px;
1619
+ clear: both;
1620
+ display: block;
1621
+ width: 100%;
1622
+ float: left;
1623
+ font-family: "Helvetica CE 35 Thin";
1624
+ line-height: 42px;
1625
+ }
1626
+ .tab6 .options {
1627
+ margin-top: 25px;
1628
+ clear: both;
1629
+ width: 100%;
1630
+ float: left;
1631
+ }
1632
+ .tab6 .options label {
1633
+ width: 345px;
1634
+ float: left;
1635
+ font-size: 17px;
1636
+ /*font-family: helveticaregular;*/
1637
+ font-family: 'helveticaneue-light';
1638
+ color: #5a6570;
1639
+ line-height: 46px;
1640
+ }
1641
+ .tab6 .options label.first {
1642
+ /*font-family: helveticaregular;*/
1643
+
1644
+ font-family: 'helveticaneue-light';
1645
+ font-size: 17px;
1646
+ }
1647
+ .tab6 .options input {
1648
+ width: 308px;
1649
+ float: left;
1650
+ background: #e5e5e5;
1651
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1652
+ border: 0;
1653
+ padding: 10px;
1654
+ }
1655
+ .tab6 .options .field {
1656
+
1657
+ float: left;
1658
+ position: relative;
1659
+ }
1660
+ .tab6 .options .field .select {
1661
+ width: 207px;
1662
+ background: url(../images/select_bg1.jpg) no-repeat;
1663
+ display: block;
1664
+ padding-left: 17px;
1665
+ font-family: helveticaregular;
1666
+ }.tab6 .cstmdsplyulwpr .radio_section.tb_4_ck { float: left;
1667
+
1668
+ width: auto;
1669
+ }
1670
+ .tab6 .social_icon_like1 li span.checkbox {
1671
+ background: rgba(0, 0, 0, 0) url(../images/check_bg.jpg) no-repeat scroll 0 0;
1672
+ display: inherit;
1673
+ height: 31px;
1674
+ width: 31px;
1675
+ }
1676
+ .tab6 .cstmdsplyulwpr a {
1677
+ margin-top: 3px;
1678
+ float: left;
1679
+ }
1680
+ /*tab 7 css*/
1681
+ .tab7 h3 {
1682
+ margin: 14px 0 6px;
1683
+ padding: 0;
1684
+ /* color: #a7a9ac;*/
1685
+ color: #414951;
1686
+ /* font-family: helveticaregular;*/
1687
+ font-family: 'helveticaneue-light';
1688
+ /* font-size: 20px;*/
1689
+ font-size: 18px;
1690
+ text-align: left;
1691
+ }
1692
+
1693
+ .tab7 .close {
1694
+ position: absolute;
1695
+ right: 18px;
1696
+ top: 18px;
1697
+ }
1698
+ .tab7 .text_options {
1699
+ width: 500px;
1700
+ float: left;
1701
+ }
1702
+ .tab7 .text_options.layout {
1703
+ margin-left: -25px;
1704
+ }
1705
+ .tab7 .row_tab {
1706
+ margin-top: 10px;
1707
+ width: 100%;
1708
+ float: left;
1709
+ }
1710
+ .tab7 .text_options label {
1711
+ width: 121px;
1712
+ float: left;
1713
+ line-height: 46px;
1714
+ font-size: 18px;
1715
+ }
1716
+ .tab7 .text_options.layout label {
1717
+ line-height: 20px;
1718
+ font-size: 18px;
1719
+ }
1720
+ .tab7 .text_options.layout label.border {
1721
+ line-height: 46px;
1722
+ }
1723
+ .tab7 .text_options input {
1724
+ width: 274px;
1725
+ float: left;
1726
+ background: #e5e5e5;
1727
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1728
+ border: 0;
1729
+ padding: 13px 10px;
1730
+ font-size: 17px;
1731
+ color: #5a6570;
1732
+ }
1733
+ .tab7 .text_options input.small {
1734
+ width: 50px;
1735
+ }
1736
+ .tab7 .text_options .field {
1737
+ width: 223px;
1738
+ float: left;
1739
+ position: relative;
1740
+ }
1741
+ .tab7 .text_options .field .select {
1742
+ width: 183px;
1743
+ padding-right: 21px;
1744
+ height: 47px;
1745
+ background: url(../images/select_bg1.jpg) no-repeat;
1746
+ display: block;
1747
+ padding-left: 10px;
1748
+ line-height: 46px;
1749
+ font-size: 17px;
1750
+ color: #414951;
1751
+ }
1752
+ .tab7 .text_options .field select.styled {
1753
+ position: absolute;
1754
+ left: 0;
1755
+ top: 0;
1756
+ width: 213px;
1757
+ line-height: 46px;
1758
+ height: 46px;
1759
+ }
1760
+ .tab7 .color_box {
1761
+ width: 40px;
1762
+ height: 34px;
1763
+ border: 3px solid #fff;
1764
+ box-shadow: 1px 2px 2px #ccc;
1765
+ float: left;
1766
+ position: relative;
1767
+ margin-left: 13px;
1768
+ }
1769
+ .tab7 .color_box1 {
1770
+ width: 100%;
1771
+ height: 34px;
1772
+ background: #5a6570;
1773
+ box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
1774
+ }
1775
+ .tab7 .corner {
1776
+ width: 10px;
1777
+ height: 10px;
1778
+ background: #fff;
1779
+ position: absolute;
1780
+ right: 0;
1781
+ bottom: 0;
1782
+ }
1783
+ .tab7 ul.border_shadow {
1784
+ margin: 0;
1785
+ padding: 5px 0 0;
1786
+ list-style: none;
1787
+ float: left;
1788
+ width: 257px;
1789
+ }
1790
+ .tab7 ul.border_shadow li {
1791
+ margin: 0;
1792
+ padding: 0 0 0 40px;
1793
+ list-style: none;
1794
+ float: left;
1795
+ }
1796
+ .tab7 ul.border_shadow li:first-child {
1797
+ padding: 0;
1798
+ }
1799
+ .tab7 ul.border_shadow li span {
1800
+ float: left;
1801
+ }
1802
+ .tab7 ul.border_shadow li label {
1803
+ float: left;
1804
+ width: auto;
1805
+ font-family: helveticaregular;
1806
+ font-size: 18px;
1807
+ font-weight: 400;
1808
+ text-align: center;
1809
+ line-height: 40px !important;
1810
+ color: #5a6570;
1811
+ padding: 0 0 0 20px;
1812
+ }
1813
+ .tab7 .row {
1814
+ border-top: 1px solid #eaebee;
1815
+ margin-top: 25px;
1816
+ padding-top: 15px;
1817
+ clear: both;
1818
+ display: block;
1819
+ width: 100%;
1820
+ float: left;
1821
+ font-family: helveticaregular;
1822
+ line-height: 42px;
1823
+ }
1824
+ .tab7 .pop_up_show {
1825
+ width: 100%;
1826
+ float: left;
1827
+ margin-top: 20px;
1828
+ }
1829
+ .tab7 .pop_up_show span {
1830
+ float: left;
1831
+ }
1832
+ .tab7 .pop_up_show label {
1833
+ float: left;
1834
+ width: auto;
1835
+ font-size: 18px;
1836
+ font-weight: 400;
1837
+ text-align: center;
1838
+ line-height: 38px !important;
1839
+ color: #5a6570;
1840
+ padding: 0 0 0 20px;
1841
+ }
1842
+ .tab7 .pop_up_show input.add {
1843
+ width: 257px;
1844
+ float: left;
1845
+ background: #e5e5e5;
1846
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1847
+ border: 0;
1848
+ padding: 10px;
1849
+ margin-left: 40px;
1850
+ }
1851
+ .tab7 .pop_up_show input.seconds {
1852
+ width: 60px;
1853
+ background: #e5e5e5;
1854
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1855
+ border: 0;
1856
+ padding: 10px;
1857
+ margin: 0 7px;
1858
+ }
1859
+ .tab7 .pop_up_show a {
1860
+ text-decoration: underline;
1861
+ color: #a4a9ad;
1862
+ font-size: 16px;
1863
+ margin-left: 20px;
1864
+ }
1865
+ .tab7 .pop_up_show .field {
1866
+ width: 135px;
1867
+ float: left;
1868
+ position: relative;
1869
+ margin-left: 20px;
1870
+ font-size: 17px;
1871
+ font-family: helveticaregular;
1872
+ }
1873
+ .tab7 .pop_up_show .field .select {
1874
+ width: 127px;
1875
+ height: 48px;
1876
+ background: url(../images/select_bg.jpg) no-repeat;
1877
+ display: block;
1878
+ padding-left: 10px;
1879
+ line-height: 46px;
1880
+ font-size: 16px;
1881
+ color: #5a6570;
1882
+ }
1883
+ .tab7 .pop_up_show .field select.styled {
1884
+ position: absolute;
1885
+ left: 0;
1886
+ top: 0;
1887
+ width: 135px;
1888
+ line-height: 46px;
1889
+ height: 46px;
1890
+ }
1891
+ /*tab 8 css*/
1892
+ .tab8 .sfsi_tab8_container {
1893
+ width: 100%;
1894
+ float: left;
1895
+ }
1896
+ .tab8 .sfsi_tab8_subcontainer {
1897
+ float: left;
1898
+ padding: 20px 0;
1899
+ width: 100%;
1900
+ }
1901
+ .tab8 h3.sfsi_section_title {
1902
+ font-weight: bold;
1903
+ }
1904
+ .tab8 .like_pop_box {
1905
+ width: 100%;
1906
+ margin: 35px auto auto;
1907
+ position: relative;
1908
+ text-align: center;
1909
+ }
1910
+ .tab8 .like_pop_box h2 {
1911
+ font-family: helveticabold;
1912
+ text-align: center;
1913
+ color: #414951;
1914
+ font-size: 26px;
1915
+ }
1916
+ .tab8 .sfsi_subscribe_Popinner {
1917
+ display: inline-block;
1918
+ padding: 18px 20px;
1919
+ -webkit-box-shadow: 0 0 5px #ccc;
1920
+ border: 1px solid #ededed;
1921
+ background: #FFF;
1922
+ position: relative;
1923
+ }
1924
+ .tab8 .sfsi_subscribe_Popinner .form-overlay {
1925
+ height: 100%;
1926
+ left: 0;
1927
+ position: absolute;
1928
+ top: 0;
1929
+ width: 100%;
1930
+ }
1931
+ .tab8 .like_pop_box .sfsi_subscribe_Popinner {
1932
+ box-shadow: 0 0 5px #ccc;
1933
+ }
1934
+ .tab8 .like_pop_box .sfsi_subscribe_Popinner h5 {
1935
+ margin: 0 0 10px;
1936
+ padding: 0;
1937
+ color: #414951;
1938
+ font-size: 22px;
1939
+ text-align: center;
1940
+ }
1941
+ .tab8 .sfsi_subscribe_Popinner h5 {
1942
+ margin: 0 0 10px;
1943
+ padding: 0;
1944
+ color: #414951;
1945
+ font-size: 18px;
1946
+ text-align: center;
1947
+ }
1948
+ .tab8 .sfsi_subscription_form_field {
1949
+ float: left;
1950
+ margin: 5px 0;
1951
+ width: 100%;
1952
+ }
1953
+ .tab8 .sfsi_subscription_form_field input {
1954
+ padding: 10px 0px;
1955
+ text-align: center;
1956
+ width: 100%;
1957
+ }
1958
+ .tab8 .sfsi_tab8_subcontainer label.sfsi_label_text {
1959
+ float: left;
1960
+ margin: 10px 0;
1961
+ width: 100%;
1962
+ }
1963
+ .tab8 ul.sfsi_form_info {
1964
+ list-style: none !important;
1965
+ margin-left: 32px;
1966
+ }
1967
+ .tab8 ul.sfsi_form_info li {
1968
+ margin: 3px 0;
1969
+ }
1970
+ .tab8 .sfsi_subscription_html {
1971
+ background-color: #e5e5e5;
1972
+ float: left;
1973
+ margin: 12px 0 0 30px;
1974
+ width: 90%;
1975
+ }
1976
+ .tab8 .sfsi_seprater {
1977
+ border-bottom: 1px solid #ccc;
1978
+ }
1979
+ .tab8 .sfsi_tab8_subcontainer h5.sfsi_section_subtitle {
1980
+ float: left;
1981
+ font-size: 18px;
1982
+ margin: 5px 0;
1983
+ width: 100%;
1984
+ }
1985
+ .tab8 .sfsi_left_container {
1986
+ margin-top: 30px;
1987
+ text-align: center;
1988
+ width: 24%;
1989
+ display: inline-block;
1990
+ }
1991
+ .tab8 .sfsi_right_container {
1992
+ display: inline-block;
1993
+ margin-top: 30px;
1994
+ padding: 0 20px;
1995
+ vertical-align: top;
1996
+ width: 72%;
1997
+ }
1998
+ .tab8 .row_tab {
1999
+ display: inline-block;
2000
+ margin-bottom: 30px;
2001
+ width: 100%;
2002
+ }
2003
+ .tab8 .row_tab label {
2004
+ color: #5a6570;
2005
+ font-size: 16px;
2006
+ }
2007
+ .tab8 .row_tab div.sfsi_field {
2008
+ display: inline-block;
2009
+ vertical-align: middle;
2010
+ width: auto;
2011
+ margin-right: 25px;
2012
+ padding-top: 10px;
2013
+ }
2014
+ .tab8 .color_box {
2015
+ width: 40px;
2016
+ height: 34px;
2017
+ border: 3px solid #fff;
2018
+ box-shadow: 1px 2px 2px #ccc;
2019
+ float: right;
2020
+ position: relative;
2021
+ margin-left: 13px;
2022
+ }
2023
+ .tab8 .color_box1 {
2024
+ width: 100%;
2025
+ height: 34px;
2026
+ background: #5a6570;
2027
+ box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
2028
+ }
2029
+ .tab8 .corner {
2030
+ width: 10px;
2031
+ height: 10px;
2032
+ background: #fff;
2033
+ position: absolute;
2034
+ right: 0;
2035
+ bottom: 0;
2036
+ }
2037
+ .tab8 .sfsi_right_container label {
2038
+ color: #5a6570;
2039
+ font-size: 18px;
2040
+ }
2041
+ .tab8 label.sfsi_heding {
2042
+ display: inline-block;
2043
+ /* font-weight: bold; */
2044
+ padding-top: 10px;
2045
+ width: 303px;
2046
+ }
2047
+ .tab8 .border_shadow {
2048
+ display: inline-block;
2049
+ vertical-align: top;
2050
+ }
2051
+ .tab8 .border_shadow li {
2052
+ display: inline-block;
2053
+ vertical-align: top;
2054
+ padding-right: 20px;
2055
+ }
2056
+ .tab8 .border_shadow li span {
2057
+ vertical-align: middle;
2058
+ }
2059
+ .tab8 .border_shadow .radio {
2060
+ margin-right: 5px;
2061
+ }
2062
+ .tab8 .sfsi_field .rec-inp {
2063
+ background: #e5e5e5 none repeat scroll 0 0;
2064
+ height: 44px;
2065
+ text-align: center;
2066
+ width: 54px;
2067
+ }
2068
+ .tab8 .pix {
2069
+ color: #5a6570;
2070
+ font-size: 18px;
2071
+ vertical-align: middle;
2072
+ }
2073
+ .tab8 .sfsi_heding.autowidth {
2074
+ width: auto;
2075
+ margin-right: 15px;
2076
+ }
2077
+ .tab8 .sfsi_heding.fixwidth {
2078
+ width: 80px;
2079
+ }
2080
+ .tab8 .small {
2081
+ background-color: #e5e5e5;
2082
+ height: 44px;
2083
+ width: 200px;
2084
+ }
2085
+ .tab8 .small.new-inp {
2086
+ background-color: #e5e5e5;
2087
+ height: 44px;
2088
+ width: 277px;
2089
+ }
2090
+ .tab8 .small.color-code {
2091
+ width: 138px !important;
2092
+ }
2093
+ .tab8 .select-same {
2094
+ border: 1px solid #d6d6d6;
2095
+ height: 47px !important;
2096
+ width: 171px;
2097
+ appearance: none;
2098
+ -moz-appearance: none;
2099
+ -webkit-appearance: none;
2100
+ background-image: url(images/select-arrow.png);
2101
+ background-repeat: no-repeat;
2102
+ background-position: right 15px center;
2103
+ }
2104
+ .sfsi_mainContainer .tab8 .sfsi_same_width {
2105
+ display: inline-block;
2106
+ width: 100px !important;
2107
+ }
2108
+ .sfsi_mainContainer .tab7 .wp-picker-container input {
2109
+ background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
2110
+ border: 1px solid #ccc !important;
2111
+ box-shadow: none !important;
2112
+ float: left !important;
2113
+ height: auto !important;
2114
+ padding: 0 !important;
2115
+ width: auto !important;
2116
+ }
2117
+ .sfsi_mainContainer .tab7 .wp-picker-container input[type="text"] {
2118
+ padding: 3px !important;
2119
+ }
2120
+ .sfsi_mainContainer .tab7 .wp-picker-container input[type="button"] {
2121
+ padding: 0 5px !important;
2122
+ }
2123
+ .sfsi_mainContainer .tab7 .wp-picker-open .wp-picker-input-wrap,
2124
+ .sfsi_mainContainer .tab8 .wp-picker-open .wp-picker-input-wrap {
2125
+ vertical-align: middle !important;
2126
+ }
2127
+ .sfsi_mainContainer .tab7 .wp-color-result,
2128
+ .sfsi_mainContainer .tab8 .wp-color-result {
2129
+ margin: 0 6px 0 0 !important;
2130
+ }
2131
+ .sfsi_mainContainer .tab7 .wp-picker-holder,
2132
+ .sfsi_mainContainer .tab8 .wp-picker-holder {
2133
+ position: absolute !important;
2134
+ z-index: 999;
2135
+ }
2136
+ .sfsi_mainContainer .sfsi_subscribe_Popinner .sfsi_highlight {
2137
+ border: 3px solid red !important;
2138
+ }
2139
+ .sfsi_mainContainer .sfsi_subscription_html xmp {
2140
+ display: block;
2141
+ padding: 0 10px;
2142
+ white-space: pre-line;
2143
+ word-wrap: break-word;
2144
+ }
2145
+ ul.sfsi_floaticon_margin_sec {
2146
+ float: left;
2147
+ width: 600px;
2148
+ }
2149
+ ul.sfsi_floaticon_margin_sec li {
2150
+ float: left;
2151
+ width: 300px;
2152
+ margin-bottom: 20px;
2153
+ }
2154
+ ul.sfsi_floaticon_margin_sec label {
2155
+ float: left;
2156
+ font-size: 17px;
2157
+ padding-right: 20px;
2158
+ width: 65px;
2159
+ }
2160
+ ul.sfsi_floaticon_margin_sec li input {
2161
+ background-color: #E5E5E5;
2162
+ border: medium none;
2163
+ box-shadow: none;
2164
+ padding: 14px 8px;
2165
+ width: 80px;
2166
+ float: left;
2167
+ }
2168
+ ul.sfsi_floaticon_margin_sec li ins {
2169
+ float: left;
2170
+ font-size: 17px;
2171
+ font-weight: 400;
2172
+ margin-left: 15px;
2173
+ text-decoration: none;
2174
+ }
2175
+ .custom-img img,
2176
+ .custom_section img,
2177
+ .custom_iconOrder img,
2178
+ .sample_icons img {
2179
+ width: 51px;
2180
+ }
2181
+ .cstomskins_upload span.sfsi-bgimage {
2182
+ background-size: 51px 51px !important;
2183
+ }
2184
+
2185
+ .sfsi_feedClaimingOverlay h1 {
2186
+ font-size: 22px !important;
2187
+ font-weight: bolder !important;
2188
+ margin-top: 7px !important;
2189
+ }
2190
+ .sfsi_feedClaimingOverlay input[type="email"] {
2191
+ font-size: 16px;
2192
+ margin: 26px 0 0;
2193
+ padding: 10px 0;
2194
+ text-align: center;
2195
+ width: 100%;
2196
+ color: #bebebe !important;
2197
+ box-shadow: none;
2198
+ }
2199
+ .sfsi_feedClaimingOverlay input[type="email"]::-webkit-input-placeholder {
2200
+ color: #bebebe !important;
2201
+ }
2202
+ .sfsi_feedClaimingOverlay input[type="email"]:-moz-placeholder {
2203
+ /* Firefox 18- */
2204
+ color: #bebebe !important;
2205
+ }
2206
+ .sfsi_feedClaimingOverlay input[type="email"]::-moz-placeholder {
2207
+ /* Firefox 19+ */
2208
+ color: #bebebe !important;
2209
+ }
2210
+ .sfsi_feedClaimingOverlay input[type="email"]:-ms-input-placeholder {
2211
+ color: #bebebe !important;
2212
+ }
2213
+ .sfsi_feedClaimingOverlay .save_button {
2214
+ padding: 0 !important;
2215
+ width: 100%;
2216
+ }
2217
+ .sfsi_feedClaimingOverlay .save_button a#getMeFullAccess {
2218
+ border-radius: 4px;
2219
+ font-size: 18px;
2220
+ font-weight: bolder;
2221
+ }
2222
+ .sfsi_feedClaimingOverlay .sfsicloseBtn {
2223
+ right: 8px !important;
2224
+ top: 8px !important;
2225
+ }
2226
+ .sfsi_feedClaimingOverlay p {
2227
+ text-align: center !important;
2228
+ font-size: 12px !important;
2229
+ line-height: 23px !important;
2230
+ padding: 18px 0 0 !important;
2231
+ color: #bebebe !important;
2232
+ }
2233
+ .sfsi_feedClaimingOverlay p a {
2234
+ display: inline-block;
2235
+ font-size: 12px;
2236
+ margin: 0;
2237
+ padding: 0;
2238
+ width: auto;
2239
+ color: #274da3 !important;
2240
+ }
2241
+ .sfsi_feedClaimingOverlay .pop_up_box {
2242
+ padding: 25px 30px !important;
2243
+ width: 435px !important;
2244
+ min-height: 220px;
2245
+ }
2246
+
2247
+ @media (max-width:1160px) {
2248
+ .sfsi_subscription_html xmp {
2249
+ display: block;
2250
+ padding: 0 10px;
2251
+ white-space: pre-line;
2252
+ word-wrap: break-word;
2253
+ }
2254
+ }
2255
+ @media (max-width:1350px) {
2256
+ .tab8 .sfsi_left_container {
2257
+ width: 100% !important;
2258
+ }
2259
+
2260
+ .tab8 .sfsi_right_container {
2261
+ width: 100%;
2262
+ }
2263
+
2264
+ .tab8 .border_shadow {
2265
+ margin-top: 10px;
2266
+ }
2267
+
2268
+ .tab8 .row_tab div.sfsi_field {
2269
+ margin-bottom: 10px;
2270
+ }
2271
+
2272
+ }
2273
+ @media (max-width:770px) {
2274
+ #sfsi_form_heading_fontstyle {
2275
+ margin-left: 19px !important;
2276
+ margin-top: 10px !important;
2277
+ }
2278
+ }
2279
+
2280
+ /* premium plugin features */
2281
+ .tab5 .icons_prem_disc {
2282
+ float: left;
2283
+ padding-top: 20px;
2284
+ }
2285
+ .sfsi_prem_fbpgiddesc {
2286
+ font-size: 14px;
2287
+ padding: 4px 0 0 60px;
2288
+ width: 42%;
2289
+ float: right;
2290
+ line-height: 22px;
2291
+ color: #080808;
2292
+ }
2293
+ .instagram_userLi p.sfsi_shared_premium {
2294
+ float: right;
2295
+ width: 41%;
2296
+ line-height: 20px;
2297
+ color: #1f1d1d;
2298
+ font-size: 13px;
2299
+ }
2300
+ .sfsi_facebook_pagedeasc {
2301
+ font-size: 14px;
2302
+ padding: 15px 0 0 60px;
2303
+ width: 42%;
2304
+ float: right;
2305
+ line-height: 22px;
2306
+ color: #080808;
2307
+ }
2308
+
2309
+ .sf_si_default_design ul li {
2310
+ width: auto !important;
2311
+ display: inline-block;
2312
+ float: none !important;
2313
+ }.sf_si_our_prmium_plugin-add,
2314
+ .sfsi_prem_icons_added {
2315
+ background: #f3faf6;
2316
+ border: 1px solid #12a252;
2317
+ padding: 25px 38px 35px 40px;
2318
+ clear: both;
2319
+ }
2320
+ .sf_si_prmium_head h2 {
2321
+ font-size: 26px;
2322
+ color: #000;
2323
+ font-weight: bold;
2324
+ padding-bottom: 13px;
2325
+ margin-top: 0;
2326
+ }
2327
+
2328
+ .sfsi_new_prmium_follw {
2329
+ background: #f3faf6;
2330
+ border: 1px solid #12a252;
2331
+ padding: 25px 38px 35px 40px;
2332
+ float: left;
2333
+ clear: both;
2334
+ }
2335
+ .notice_custom_icons_premium.sfsi_new_prmium_follw {
2336
+ margin-left: 96px;
2337
+ }
2338
+ .sf_si_default_design ul {
2339
+ padding: 0;
2340
+ margin: 0;
2341
+ }
2342
+ .sf_si_default_design ul li {
2343
+ list-style: none;
2344
+ font-size: 20px;
2345
+ color: #1a1d20;
2346
+ clear: both;
2347
+ }
2348
+ .sfsi_need_another_tell_us,
2349
+ .sfsi_need_another_one_link {
2350
+ clear: both;
2351
+ }
2352
+ .sf_si_all_features_premium a,
2353
+ .sfsi_need_another_tell_us a {
2354
+ color: #12a252 !important;
2355
+ font-size: 18.9px;
2356
+ font-weight: bold;
2357
+ border-bottom: 1px solid #12a252;
2358
+ text-decoration: none;
2359
+ }
2360
+ .sf_si_default_design ul li b {
2361
+ font-weight: bold;
2362
+ }
2363
+ .sf_si_our_prmium_plugin-add .sf_si_prmium_head h2 {
2364
+ padding-bottom: 23px;
2365
+ }
2366
+
2367
+ .sf_si_default_design ul li img {}
2368
+ .sfsi_need_another_one_link p {
2369
+ color: #c1c3c5;
2370
+ font-size: 18.9px !important;
2371
+ }
2372
+ .sfsi_need_another_one_link p a {
2373
+ color: #12a252 !important;
2374
+ text-decoration: none;
2375
+ }
2376
+ .sfsi_brdr_box {
2377
+ box-sizing: border-box;
2378
+ }
2379
+ .sfsi_prem_cmn_rowlisting {
2380
+ width: 225px;
2381
+ float: left;
2382
+ margin-top: 10px;
2383
+ margin-bottom: 1px;
2384
+ }
2385
+ .sfsi_row {
2386
+ clear: both;
2387
+ }
2388
+ .sfsi_prem_cmn_rowlisting span {
2389
+ color: #1a1d20;
2390
+ font-size: 20px;
2391
+ display: table-cell;
2392
+ vertical-align: middle;
2393
+ padding-right: 10px;
2394
+ }
2395
+ .sfsi_need_another_one_link {
2396
+ padding: 23px 0 20px 5px;
2397
+ }
2398
+ .sfsi_need_another_tell_us a {
2399
+ margin-left: 5px;
2400
+ }
2401
+ .sfsi_new_prmium_follw {
2402
+ margin-top: 20px;
2403
+ display: inline-block;
2404
+ padding: 15px 75px 20px 24px;
2405
+ float: left;
2406
+ }
2407
+ .sfsi_new_prmium_follw p {
2408
+ margin: 0 !important;
2409
+ }
2410
+ .sfsi_new_prmium_follw p {
2411
+ color: #1a1d20 !important;
2412
+ font-size: 20px !important;
2413
+ font-family: helveticaregular !important;
2414
+ }
2415
+ .sfsi_new_prmium_follw p a {
2416
+ color: #12a252 !important;
2417
+ text-decoration: none;
2418
+ }
2419
+ .sfsi_new_prmium_follw p b {
2420
+ font-weight: bold;
2421
+ color: #1a1d20 !important;
2422
+ }
2423
+ .sf_si_default_design ul li h4 {
2424
+ color: #1a1d20 !important;
2425
+ font-size: 20px !important;
2426
+ font-weight: bold;
2427
+ padding-bottom: 21px !important;
2428
+ }
2429
+ .sf_si_default_design ul li h4 span {
2430
+ font-weight: normal;
2431
+ }
2432
+ p.sfsi_shared_premium {
2433
+ color: #1a1d20 !important;
2434
+ font-family: helveticaregular !important;
2435
+ padding-top: 0 !important;
2436
+ }
2437
+ p.sfsi_shared_premium a {
2438
+ text-decoration: none;
2439
+ color: #00a0d2 !important;
2440
+ }
2441
+ p.sfsi_shared_premium b {
2442
+ font-weight: bold;
2443
+ }
2444
+ .sfsi_fbpaget {
2445
+ float: left !important;
2446
+ padding: 4px 0 0 0px !important;
2447
+ width: 100% !important;
2448
+ margin-left: 60px;
2449
+ }
2450
+ .sfsi_fbpaget .sfsi_facebook_count {
2451
+ width: 100% !important;
2452
+ padding: 4px 0 0 0px !important;
2453
+ }
2454
+ .sfsi_prem_show a {
2455
+ color: #0c0b0b;
2456
+ margin: 2px;
2457
+ }
2458
+ .sfsi_prem_show {
2459
+ padding-top: 140px !important;
2460
+ }
2461
+ .sf_si_default_design ul li b span {
2462
+ font-weight: normal !important;
2463
+ }
2464
+ p.sfsi_prem_plu_desc a {
2465
+ text-decoration: none;
2466
+ color: #00a0d2 !important;
2467
+ }
2468
+ .sfsi_fb_popup_contain {
2469
+ width: 50%;
2470
+ display: inline-block;
2471
+ }
2472
+ .sfsi_first_icon_field,
2473
+ .sfsi_second_icon_img {
2474
+ display: table-cell;
2475
+ vertical-align: middle;
2476
+ padding: 5px 0;
2477
+ }
2478
+ .sfsi_first_icon_field {
2479
+ width: 125px;
2480
+ }
2481
+ .sfsi_first_icon_field h2 {
2482
+ font-size: 18px !important;
2483
+ color: #1a1d20 !important;
2484
+ margin: 0 !important;
2485
+ font-weight: bold;
2486
+ }
2487
+ .sfsi_first_icon_field p {
2488
+ color: #1a1d20 !important;
2489
+ font-size: 12px !important;
2490
+ margin: 0 !important;
2491
+ padding: 0 !important;
2492
+ line-height: 18px !important;
2493
+ }
2494
+ .sfsi_first_icon_more h2 {
2495
+ font-size: 18px !important;
2496
+ color: #1a1d20 !important;
2497
+ margin: 0 !important;
2498
+ padding-top: 17px;
2499
+ padding-bottom: 22px;
2500
+ }
2501
+ .sfsi_cool_font_weight h2 {
2502
+ font-weight: normal;
2503
+ }
2504
+ .sf_si_default_design ul li {
2505
+ margin: 0 !important;
2506
+ }
2507
+ .sf_si_default_design ul li h4.sfsi_second_themedTitle {
2508
+ padding-bottom: 16px !important;
2509
+ }
2510
+ .sfsi_mainContainer .sfsi_prem_cmn_rowlisting img {
2511
+ width: 52px;
2512
+ height: 52px;
2513
+ }
2514
+ .sfsi_icons_other_allign {
2515
+ width: auto;
2516
+ color: #5a6570;
2517
+ text-align: left;
2518
+ font-family: 'helveticaneue-light';
2519
+ font-size: 17px;
2520
+ line-height: 26px;
2521
+ }
2522
+
2523
+ /* new notification bar css*/
2524
+
2525
+ .sfsi_new_notification {
2526
+ background-color: #fff;
2527
+ border: 4px dashed #00c853;
2528
+ margin-bottom: 30px;
2529
+ width: 100%;
2530
+ }
2531
+ .sfsi_new_notification_header {
2532
+ background-color: #e8faef;
2533
+ display: -webkit-box;
2534
+ display: -webkit-flex;
2535
+ display: -ms-flexbox;
2536
+ display: flex;
2537
+ -webkit-box-align: center;
2538
+ -webkit-align-items: center;
2539
+ -ms-flex-align: center;
2540
+ align-items: center;
2541
+ -webkit-box-pack: justify;
2542
+ -webkit-justify-content: space-between;
2543
+ -ms-flex-pack: justify;
2544
+ justify-content: space-between;
2545
+ padding: 10px 0 12px 0;
2546
+ }
2547
+ .sfsi_new_notification_header h1 {
2548
+ margin: 0;
2549
+ color: #00c853;
2550
+ font-size: 18px;
2551
+ margin: 0 auto;
2552
+ font-family: Arial, Helvetica, sans-serif;
2553
+ }
2554
+ .sfsi_new_notification_header h1 a {
2555
+ margin: 0;
2556
+ color: #00c853;
2557
+ font-size: 18px;
2558
+ margin: 0 auto;
2559
+ font-family: Arial, Helvetica, sans-serif;
2560
+ text-decoration: none;
2561
+ }
2562
+ .sfsi_new_notification_cross {
2563
+ float: right;
2564
+ font-size: 18px;
2565
+ font-weight: 700;
2566
+ line-height: 1;
2567
+ color: #00c853;
2568
+ font-family: Arial, Helvetica, sans-serif;
2569
+ margin-right: 15px;
2570
+ cursor: pointer;
2571
+ }
2572
+ .sfsi_new_notification_body {
2573
+ width: 100%;
2574
+ background-color: #fff;
2575
+ display: -webkit-box;
2576
+ display: -webkit-flex;
2577
+ display: -ms-flexbox;
2578
+ display: flex;
2579
+ -webkit-box-align: center;
2580
+ -webkit-align-items: center;
2581
+ -ms-flex-align: center;
2582
+ align-items: center;
2583
+ -webkit-box-pack: justify;
2584
+ -webkit-justify-content: space-between;
2585
+ -ms-flex-pack: justify;
2586
+ justify-content: space-between;
2587
+ }
2588
+ .sfsi_new_notification_image {
2589
+ margin: 0 20px 0px 20px;
2590
+ width: 100%;
2591
+ text-align: center;
2592
+ overflow: hidden;
2593
+ }
2594
+ .sfsi_new_notification_image img {
2595
+ width: auto;
2596
+ }
2597
+ .sfsi_new_notification_learnmore {
2598
+ float: right;
2599
+ }
2600
+ .sfsi_new_notification_learnmore {
2601
+ background-color: #00c853;
2602
+ display: block;
2603
+ text-decoration: none;
2604
+ text-align: center;
2605
+ font-size: 20px;
2606
+ font-family: Arial, Helvetica, sans-serif;
2607
+ width: 150px;
2608
+ margin-bottom: -4px;
2609
+ margin-right: -4px;
2610
+ position: relative;
2611
+ color: #fff;
2612
+ padding: 70px 10px;
2613
+ }
2614
+ .sfsi_new_notification_body_link a {
2615
+ display: block;
2616
+ text-decoration: none;
2617
+ text-align: center;
2618
+ font-size: 20px;
2619
+ font-family: Arial, Helvetica, sans-serif;
2620
+ color: #fff;
2621
+ }
2622
+ .tab4 .sfsi_tokenGenerateButton {
2623
+ margin: 25px 0;
2624
+ }
2625
+ .tab4 .sfsi_tokenGenerateButton p {
2626
+ display: inline-block;
2627
+ margin-bottom: 11px;
2628
+ vertical-align: middle;
2629
+ width: 100%;
2630
+ }
2631
+ .tab4 .sfsi_tokenGenerateButton a {
2632
+ background-color: #12a252;
2633
+ color: #fff;
2634
+ padding: 10px 20px;
2635
+ text-decoration: none;
2636
+ }
2637
+
2638
+ .tab4 .sfsi_instagramFields {
2639
+ float: left;
2640
+ margin-bottom: 12px;
2641
+ /* width: 550px;*/
2642
+ width: 50%;
2643
+ margin-left: 60px;
2644
+ }
2645
+
2646
+ .tab4 .sfsi_instagramInstruction {
2647
+ float: left;
2648
+ margin-bottom: 12px;
2649
+ /* width: 450px; */
2650
+ width: 40%;
2651
+ margin-left: 30px;
2652
+ }
2653
+ #accordion1 p {
2654
+ color: #5a6570;
2655
+ text-align: left;
2656
+ font-family: 'helveticaneue-light';
2657
+ font-size: 17px;
2658
+ line-height: 26px;
2659
+ padding-top: 19px;
2660
+ }
2661
+ .specify_counts .listing .sfsi_instagramInstruction ul {
2662
+ margin: 0;
2663
+ padding: 0;
2664
+ list-style: none;
2665
+ text-align: left;
2666
+ }
2667
+ .specify_counts .listing .sfsi_instagramInstruction ul {
2668
+ padding-left: 14px !important;
2669
+ }
2670
+ .specify_counts .listing .sfsi_instagramInstruction li {
2671
+ font-size: 13px !important;
2672
+ line-height: 20px !important;
2673
+ list-style: outside none bullets !important;
2674
+ margin-top: 5px !important;
2675
+ padding: 0 !important;
2676
+ }
2677
+ /* tab2 email section */
2678
+ .sfsi_service_row {
2679
+ margin-right: -15px;
2680
+ margin-left: -15px;
2681
+ }
2682
+ .sfsi_service_column {
2683
+ float: left;
2684
+ margin-bottom: 40px;
2685
+ margin-top: 15px;
2686
+ padding-left: 30px;
2687
+ width: 47%;
2688
+ }
2689
+ .sfsi_service_column ul {
2690
+ margin-left: 11% !important;
2691
+ }
2692
+ .sfsi_service_column ul li {
2693
+ padding-bottom: 10px;
2694
+ font-size: 16px;
2695
+ line-height: 25px;
2696
+ }
2697
+ .sfsi_service_column ul li span {
2698
+ color: #12a252;
2699
+ }
2700
+ .sfsi_service_column ul li::before {
2701
+ content: url(../images/tick-icon.png);
2702
+ position: relative;
2703
+ top: 0px;
2704
+ right: 10px;
2705
+ text-indent: -22px;
2706
+ float: left;
2707
+ }
2708
+ .sfsi_inputbtn {
2709
+ clear: both;
2710
+ display: block;
2711
+ }
2712
+ .sfsi_inputbtn input {
2713
+ width: 100%;
2714
+ padding: 15px 0px;
2715
+ text-align: center;
2716
+ margin-bottom: 10px;
2717
+ }
2718
+ .sfsi_email_services_text {
2719
+ clear: both;
2720
+ }
2721
+ .sfsi_email_services_paragraph {
2722
+ width: 600px;
2723
+ float: left;
2724
+ margin-top: 10px;
2725
+ margin-bottom: 40px;
2726
+ }
2727
+ .sfsi_more_services_link a {
2728
+ background-color: #12a252;
2729
+ color: #fff !important;
2730
+ padding: 20px 0px;
2731
+ text-decoration: none;
2732
+ text-align: center;
2733
+ font-size: 20px;
2734
+ display: block;
2735
+ clear: both;
2736
+ font-weight: bold;
2737
+ }
2738
+ .sfsi_subscribe_popbox_link a {
2739
+ color: #00a0d2 !important;
2740
+ }
2741
+ .sfsi_email_services_paragraph ul {
2742
+ margin-left: 11% !important;
2743
+ }
2744
+ .sfsi_email_services_paragraph ul li {
2745
+ padding-bottom: 10px;
2746
+ font-size: 16px;
2747
+ }
2748
+ .sfsi_email_services_paragraph ul li span {
2749
+ color: #12a252;
2750
+ }
2751
+ .sfsi_email_services_paragraph ul li::before {
2752
+ content: url(../images/tick-icon.png);
2753
+ position: relative;
2754
+ top: 5px;
2755
+ right: 10px;
2756
+ text-indent: -22px;
2757
+ float: left;
2758
+ }
2759
+ .sfsi_email_last_paragraph {
2760
+ width: 60%;
2761
+ text-align: center !important;
2762
+ margin: 20px auto ! important;
2763
+ font-size: 16px !important;
2764
+ color: #a4a9ad !important;
2765
+ padding-top: 0 !important;
2766
+ }
2767
+ .sfsi_email_last_paragraph a {
2768
+ color: #12a252 !important;
2769
+ font-family: 'helveticaneue-light' !important;
2770
+ }
2771
+ /*new banner styles*/
2772
+ .sfsi_new_notification_cat {
2773
+ width: 100%;
2774
+ min-height: 300px;
2775
+ max-width: 700px;
2776
+ }
2777
+ .sfsi_new_notification_cat {
2778
+ background-color: #fff;
2779
+ margin: 30px auto;
2780
+ width: 100%;
2781
+ }
2782
+ .sfsi_new_notification_header_cat {
2783
+ background-color: #e8faef;
2784
+ /*display: -webkit-box;
2785
+ display: -webkit-flex;
2786
+ display: -ms-flexbox;
2787
+ display: flex;
2788
+ -webkit-box-align: center;
2789
+ -webkit-align-items: center;
2790
+ -ms-flex-align: center;
2791
+ align-items: center;
2792
+ -webkit-box-pack: justify;
2793
+ -webkit-justify-content: space-between;
2794
+ -ms-flex-pack: justify;
2795
+ justify-content: space-between;*/
2796
+ padding: 21px 0 21px 0;
2797
+ text-align: center;
2798
+ }
2799
+ .sfsi_new_notification_header_cat h1 {
2800
+ margin: 0;
2801
+ color: #000000;
2802
+ font-size: 24px;
2803
+ margin: 0 auto;
2804
+ font-family: Arial, Helvetica, sans-serif;
2805
+ font-weight: bold;
2806
+ }
2807
+ .sfsi_new_notification_header_cat h3 {
2808
+ margin-top: 10px;
2809
+ font-size: 16px;
2810
+ color: #000000;
2811
+ }
2812
+ .sfsi_new_notification_header_cat h3 a {
2813
+ text-decoration: none;
2814
+ color: #38B54A
2815
+ }
2816
+ .sfsi_new_notification_header_cat h1 a {
2817
+ margin: 0;
2818
+ color: #00c853;
2819
+ font-size: 18px;
2820
+ margin: 0 auto;
2821
+ font-family: Arial, Helvetica, sans-serif;
2822
+ text-decoration: none;
2823
+ }
2824
+ .sfsi_new_notification_cross_cat {
2825
+ float: right;
2826
+ font-size: 18px;
2827
+ font-weight: 700;
2828
+ line-height: 1;
2829
+ color: #000000;
2830
+ font-family: Arial, Helvetica, sans-serif;
2831
+ margin-right: 15px;
2832
+ cursor: pointer;
2833
+ margin-top: -50px;
2834
+ }
2835
+ .sfsi_new_notification_body_link_cat a {
2836
+ display: block;
2837
+ text-decoration: none;
2838
+ text-align: center;
2839
+ font-size: 20px;
2840
+ font-family: Arial, Helvetica, sans-serif;
2841
+ color: #fff;
2842
+ }
2843
+ .sfsi_new_notification_body_cat {
2844
+ width: 100%;
2845
+ background-color: #fff;
2846
+ /*display: -webkit-box;
2847
+ display: -webkit-flex;
2848
+ display: -ms-flexbox;
2849
+ display: flex;
2850
+ -webkit-box-align: center;
2851
+ -webkit-align-items: center;
2852
+ -ms-flex-align: center;
2853
+ align-items: center;
2854
+ -webkit-box-pack: justify;
2855
+ -webkit-justify-content: space-between;
2856
+ -ms-flex-pack: justify;
2857
+ justify-content: space-between;*/
2858
+ }
2859
+ .sfsi_new_notification_image_cat {
2860
+ /* margin: 0 20px 0px 20px; */
2861
+ width: 100%;
2862
+ text-align: center;
2863
+ overflow: hidden;
2864
+ /*padding: 10px 0px;*/
2865
+ }
2866
+ .sfsi_new_notification_image_cat img {
2867
+ width: auto;
2868
+ border: 0;
2869
+ vertical-align: middle;
2870
+ }
2871
+ .bottom_text {
2872
+ background: #38B54A;
2873
+ text-align: center;
2874
+ padding: 15px 0px;
2875
+ font-size: 18px;
2876
+ font-weight: bold;
2877
+ color: #fff;
2878
+ }
2879
+ .sfsi_new_notification_image_cat p {
2880
+ color: #000000;
2881
+ padding: 10px;
2882
+ font-size: 16px;
2883
+ }
2884
+ .sfsi_new_notification_body_link_cat .tailored_icons_img {
2885
+ display: block;
2886
+ text-decoration: none;
2887
+ text-align: center;
2888
+ font-size: 20px;
2889
+ font-family: Arial, Helvetica, sans-serif;
2890
+ color: #fff;
2891
+ margin: 28px 0px;
2892
+ }
2893
+ /**curl error box*/
2894
+ .sfsi_curlerror {
2895
+ margin: 0px 0px 10px 94px;
2896
+ background: rgba(244, 67, 54, 0.08);
2897
+ padding: 20px;
2898
+ line-height: 20px;
2899
+ }
2900
+ .sfsi_curlerrorNotification .sfsi_curlerror {
2901
+ background: rgba(244, 67, 54, 0.08);
2902
+ padding: 20px;
2903
+ line-height: 20px;
2904
+ margin: 0px 0px 10px 0px;
2905
+ }
2906
+ .sfsi_curlerror_cross {
2907
+ float: right;
2908
+ text-decoration: underline;
2909
+ margin-top: 10px;
2910
+ }
2911
+ .sfsi_curlerrortab4 a {
2912
+ color: #0073aa !important;
2913
+ }
2914
+ .sfsi_curlerror a {
2915
+ color: #0073aa !important;
2916
+ }
2917
+
2918
+ .social_data_post_types {
2919
+ float: left;
2920
+ width: 100%;
2921
+ margin-top: 10px;
2922
+ }
2923
+ .social_data_post_types .checkbox {
2924
+ float: left;
2925
+ margin-top: 5px;
2926
+ margin-right: 5px;
2927
+ }
2928
+ .social_data_post_types ul {
2929
+ float: left;
2930
+ margin-top: 5px;
2931
+ }
2932
+ .social_data_post_types li {
2933
+ float: left;
2934
+ min-width: 90px;
2935
+ }
2936
+ .social_data_post_types .radio_section.tb_4_ck {
2937
+ float: left;
2938
+ margin-right: 5px;
2939
+ }
2940
+ .social_data_post_types .radio_section.tb_4_ck .cstmdsplsub {
2941
+ font-size: 16px;
2942
+ }
2943
+ .social_data_post_types ul {
2944
+ float: left;
2945
+ width: 84%;
2946
+ }
2947
+ .social_data_post_types .radio_section.tb_4_ck input.styled {
2948
+ margin-top: 20px;
2949
+ }
2950
+ ul.sfsi_show_hide_section {
2951
+ float: right;
2952
+ width: 16%;
2953
+ }
2954
+
2955
+ .sfsi_social_sharing {
2956
+ margin-bottom: 15px;
2957
+ float: left;
2958
+ width: 51%;
2959
+ }
2960
+ .socialPostTypesUl span {
2961
+ pointer-events: none
2962
+ }
2963
+ .bannerPopupQue6 {
2964
+ width: 98% !important;
2965
+ float: left !important;
2966
+ padding: 15px !important;
2967
+ }
2968
+ .pinterest_section .sfsi_new_prmium_follw a {
2969
+ font-weight: bold !important;
2970
+ }
2971
+ #accordion,
2972
+ #accordion1 {
2973
+ float: left;
2974
+ clear: both;
2975
+ width: 100%;
2976
+ }
2977
+ h2.optional {
2978
+ float: left;
2979
+ clear: both;
2980
+ margin-top: 25px !important;
2981
+ }
2982
+
2983
+ /*support forum*/
2984
+ .welcometext {
2985
+ float: left;
2986
+ width: 72%;
2987
+ }
2988
+ .welcometext p {
2989
+ margin-bottom: 8px !important;
2990
+ margin-top: 15px !important;
2991
+ font-size: 16px;
2992
+ }
2993
+ .supportforum {
2994
+ float: right;
2995
+ width: auto;
2996
+ background: #fff;
2997
+ text-align: center;
2998
+ padding: 0 20px 3px 7px;
2999
+ }
3000
+ .support-container p {
3001
+ font-family: helveticaregular !important;
3002
+ }
3003
+ .support-container {
3004
+ padding: 7px 4px;
3005
+ }
3006
+ .have-questions {
3007
+ text-align: center;
3008
+ font-size: 20px;
3009
+ }
3010
+ .have-questions img {
3011
+ width: 45px;
3012
+ display: inline-block;
3013
+ }
3014
+ .have-questions .have-quest {
3015
+ display: inline-block;
3016
+ font-size: 20px;
3017
+ font-weight: 700;
3018
+ margin: 0;
3019
+ vertical-align: sub;
3020
+ }
3021
+ .have-questions .ask-question {
3022
+ margin-bottom: 3px !important;
3023
+ margin-top: 2px !important;
3024
+ }
3025
+ .support-forum-green-bg {
3026
+ margin-top: 5px;
3027
+ margin-left: 20px;
3028
+ background: #26B654;
3029
+ width: 145px;
3030
+ border-radius: 5px;
3031
+ padding: 10px 16px 8px 15px;
3032
+ }
3033
+ .support-forum-green-bg img {
3034
+ display: inline-block;
3035
+ padding-right: 5px;
3036
+ }
3037
+ .support-forum-green-div p.support-forum {
3038
+ display: inline-block;
3039
+ color: #fff;
3040
+ font-weight: 700;
3041
+ margin: 0 !important;
3042
+ }
3043
+ .support-forum-green-div a {
3044
+ text-decoration: none !important;
3045
+ }
3046
+ .respond-text p {
3047
+ margin: 10px 0 0 0px !important
3048
+ }
3049
+ .respond-text {
3050
+ margin-left: 20px;
3051
+ float: left;
3052
+ margin-bottom: 8px;
3053
+ }
3054
+
3055
+ @media (min-width: 1631px) and (max-width: 1631px) {
3056
+ .premiumComponent {
3057
+ width: 52% !important;
3058
+ }
3059
+ .premiumButtonsContainer {
3060
+ width: 44% !important;
3061
+ }
3062
+ .premiumButtonsContainer .premiumSection2 {
3063
+ width: 41% !important;
3064
+ }
3065
+ .premiumButtonsContainer .premiumSection3 {
3066
+ width: 41% !important;
3067
+ }
3068
+ }
3069
+
3070
+ /************************************ Question 3-> Where shall they be displayed? CSS STARTS *************************/
3071
+ .tab9 h1 {
3072
+ font-size: 20px !important;
3073
+ font-weight: bold !important;
3074
+ margin-bottom: 20px !important;
3075
+ }
3076
+ .tab9 span.checkbox {
3077
+ margin-top: 3px;
3078
+ }
3079
+ .tab9 input {
3080
+ width: 317px;
3081
+ background: #e5e5e5;
3082
+ box-shadow: 2px 2px 3px #dcdcdc inset;
3083
+ border: 0;
3084
+ padding: 13px 10px !important;
3085
+ font-size: 17px;
3086
+ color: #5a6570;
3087
+ }
3088
+ .tab9 ul.sfsi_icn_listing8 {
3089
+ list-style: outside none none;
3090
+ margin: 5px 0 0;
3091
+ overflow: hidden;
3092
+ }
3093
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3094
+ font-family: helveticaregular;
3095
+ width: 94.7%;
3096
+ float: left;
3097
+ }
3098
+ .tab9 ul.sfsi_icn_listing8 li {
3099
+ float: left;
3100
+ padding: 11px 0 15px 0;
3101
+ width: 100%;
3102
+ margin: 0;
3103
+ }
3104
+ .tab9 .sfsi_float_position_icon_label img {
3105
+ margin-left: auto;
3106
+ margin-right: auto;
3107
+ display: block;
3108
+ margin-top: 7px;
3109
+ }
3110
+ .tab9 .sfsi_float_position_icon_label img.sfsi_img_center_bottom {
3111
+ position: absolute;
3112
+ bottom: 0px;
3113
+ left: 18%;
3114
+ }
3115
+ .tab9 .sfsiLocationli .cstmfltonpgstck p {
3116
+ padding-top: 5px !important;
3117
+ padding-left: 20px !important;
3118
+ display: table;
3119
+ font-size: 19px !important
3120
+ }
3121
+ .sfsi_mainContainer .checkbox {
3122
+ float: left;
3123
+ }#accordion .tab9 .sfsi_icn_listing8 li .sfsi_right_info .kckslctn p:first-child {
3124
+ margin-top: 17px !important;
3125
+ }
3126
+ #accordion .tab9 .sfsi_icn_listing8 li .sfsi_right_info p {
3127
+ padding-left: 20px;
3128
+ font-size: 19px !important;
3129
+ display: table
3130
+ }
3131
+ #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_afterposts .sfsi_right_info p{
3132
+ font-size: 18px!important;
3133
+ }
3134
+ #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_shortcode .sfsi_right_info p:last-child {
3135
+ padding-top: 0px;
3136
+ }
3137
+ #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_shortcode .sfsi_right_info .kckslctn p:last-child {
3138
+ padding-top: 19px !important;
3139
+ }
3140
+ .tab9 .sfsi_feature_note {
3141
+ font-size: 18px !important;
3142
+ margin-left: 12px !important;
3143
+ padding-top: 0px !important;
3144
+ }
3145
+ .tab9 .ul.sfsi_make_icons.sfsi_mobile_float {
3146
+ float: left;
3147
+ }
3148
+ .tab9 .sfsi_disable_floatingicons_mobile {
3149
+ width: 88%;
3150
+ float: left;
3151
+ margin: 25px 0 0 27px
3152
+ }
3153
+ .tab9 .sfsi_disable_floatingicons_mobile h4 {
3154
+ float: left;
3155
+ line-height: 56px !important;
3156
+ margin-right: 40px !important;
3157
+ font-family: 'helveticaneue-light' !important;
3158
+ color: #5a6570 !important;
3159
+ }
3160
+ .tab9 .sfsi_toglepstpgspn {
3161
+ font-weight: bold;
3162
+ }
3163
+ .tab9 .sfsi_show_via_shortcode .kckslctn,
3164
+ .tab9 .sfsi_show_via_afterposts .kckslctn {
3165
+ font-size: 15px;
3166
+ margin-top: 5px;
3167
+ }
3168
+ .tab9 .sfsi_show_via_shortcode .kckslctn h4,
3169
+ .tab9 .sfsi_show_via_afterposts .kckslctn h4 {
3170
+ font-size: 18px !important;
3171
+ padding: 18px 0 0 0 !important;
3172
+ }
3173
+ .tab9 .sfsi_navigate_to_question7 {
3174
+ text-decoration: underline;
3175
+ cursor: pointer
3176
+ }
3177
+ .tab9 .sfsiLocationli h4 {
3178
+ font-size: 19px !important
3179
+ }
3180
+ .tab9 .sfsi_make_icons span.radio {
3181
+ background-position: 0 0;
3182
+ display: inline-block;
3183
+ vertical-align: middle;
3184
+ float: left;
3185
+ }
3186
+ .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3187
+ min-width: 33%;
3188
+ width: 33% !important
3189
+ }
3190
+
3191
+ . .tab9 .radio_section.tb_4_ck {
3192
+ margin: 0 20px 0 0 !important;
3193
+ float: left
3194
+ }
3195
+ .tab9 .sfsi_tab_3_icns {
3196
+ display: block;
3197
+ }
3198
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3199
+ width: 13%;
3200
+ min-width: 35px
3201
+ }
3202
+ .tab9 .sfsi_make_icons .sfsi_flicnsoptn3 {
3203
+ color: #69737c;
3204
+ display: inline-block;
3205
+ float: none;
3206
+ font-family: helveticaneue-light;
3207
+ font-size: 20px;
3208
+ margin: 7px 0 0 15px;
3209
+ vertical-align: middle;
3210
+ width: auto
3211
+ }
3212
+ .tab9 .sfsi_float_position_icon_label {
3213
+ border: 1px solid #ccc;
3214
+ border-radius: 18px;
3215
+ margin-top: 3px;
3216
+ position: relative;
3217
+ width: 189px;
3218
+ height: 148px
3219
+ }
3220
+ .tab9 .save_button {
3221
+ padding-top: 0
3222
+ }
3223
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns li {
3224
+ padding-left: 0;
3225
+ padding-bottom: 15px
3226
+ }
3227
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_floaticon_margin_sec li {
3228
+ min-width: 50%;
3229
+ padding-left: 0;
3230
+ padding-bottom: 15px;
3231
+ float: left;
3232
+ width: 50%
3233
+ }
3234
+ .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3235
+ margin-top: 55px
3236
+ }
3237
+ .tab9 .sfsi_position_divider {
3238
+ float: left;
3239
+ margin-top: 0;
3240
+ margin-left: 15px;
3241
+ width: 100%
3242
+ }
3243
+ #accordion .tab9 ul.shwthmbfraftr .labelhdng4,
3244
+ #accordion .tab9 ul.shwthmbfraftr .row h4.labelhdng4 {
3245
+ color: #555;
3246
+ font-size: 20px;
3247
+ margin-left: 20px;
3248
+ font-family: helveticaregular
3249
+ }
3250
+ .tab9 .sfsiLocationli .sfsi_right_info .sfsi_tab_3_icns {
3251
+ float: left;
3252
+ clear: both
3253
+ }
3254
+ .tab9 ul.sfsi_tab_3_icns li .icns_tab_3,
3255
+ ul.sfsi_tab_3_icns li .radio {
3256
+ float: left
3257
+ }
3258
+ .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3259
+ margin-top: 20px
3260
+ }
3261
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li {
3262
+ float: left
3263
+ }
3264
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec label {
3265
+ font-size: 17px;
3266
+ padding-right: 7px;
3267
+ width: 63px !important;
3268
+ display: inline-block;
3269
+ margin-top: 10px
3270
+ }
3271
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec ins {
3272
+ margin-top: 10px
3273
+ }
3274
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li input {
3275
+ background-color: #dedede;
3276
+ border: none;
3277
+ box-shadow: none;
3278
+ padding: 14px 8px;
3279
+ width: 80px
3280
+ }
3281
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li ins {
3282
+ font-size: 17px;
3283
+ font-weight: 400;
3284
+ margin-left: 15px;
3285
+ text-decoration: none
3286
+ }
3287
+ .tab9 .sfsi_flicnsoptn3 {
3288
+ color: #69737c;
3289
+ float: left;
3290
+ font-size: 20px;
3291
+ margin: 62px 5px 0 20px;
3292
+ font-family: helveticaneue-light;
3293
+ width: 136px
3294
+ }
3295
+ .tab9 ul.sfsi_tab_3_icns label {
3296
+ float: left;
3297
+ line-height: 42px;
3298
+ color: #69737C;
3299
+ font-size: 18px;
3300
+ font-family: helveticaregular;
3301
+ min-width: 120px
3302
+ }
3303
+
3304
+ @media screen and (max-width: 823px) {
3305
+ .wapper {
3306
+ padding: 0 15px;
3307
+ }
3308
+ .welcometext {
3309
+ width: 62% !important;
3310
+ }
3311
+ .supportforum {
3312
+ margin-top: 22px;
3313
+ }
3314
+ .main_contant h1 {
3315
+ line-height: 35px;
3316
+ }
3317
+ #sfpageLoad {
3318
+ width: 100% !important;
3319
+ left: 0px !important;
3320
+ }
3321
+ .tab9 .sfsi_position_divider {
3322
+ margin-left: 0px !important;
3323
+ }
3324
+ .row ul.tab_2_email_sec li {
3325
+ width: 31%;
3326
+ }
3327
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3328
+ width: 89.7% !important;
3329
+ }
3330
+ .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3331
+ width: 100% !important;
3332
+ }
3333
+ .tab9 .sfsi_float_position_icon_label {
3334
+ clear: both !important;
3335
+ }
3336
+ .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3337
+ margin-top: 0px !important;
3338
+ }
3339
+ .tab9 .sfsi_flicnsoptn3 {
3340
+ margin: 5px 5px 0 20px !important;
3341
+ width: 131px !important;
3342
+ }
3343
+ .tab9 .sfsiLocationli label,
3344
+ .tab9 .sfsi_float_position_icon_label {
3345
+ margin-top: 13px;
3346
+ clear: both !important;
3347
+ }
3348
+ .tab9 .sfsi_position_divider:nth-child(2) {
3349
+ margin: 20px 0;
3350
+ }
3351
+ .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3352
+ margin-left: 44px;
3353
+ }
3354
+
3355
+ .tab9 ul.sfsi_make_icons.sfsi_mobile_float {
3356
+ float: left;
3357
+ clear: both;
3358
+ }
3359
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3360
+ width: 50% !important;
3361
+ }
3362
+ }
3363
+ @media screen and (min-width: 360px) and (max-width: 414px) {
3364
+ .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3365
+ width: 100% !important;
3366
+ }
3367
+ }
3368
+ @media screen and (min-width: 640px) and (max-width: 640px) {
3369
+ .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3370
+ width: 100% !important;
3371
+ }
3372
+ .tab9 .sfsi_img_center_bottom {
3373
+ padding-top: 0px !important;
3374
+ width: 62% !important;
3375
+ margin-top: -10px;
3376
+ margin-left: 5px;
3377
+ }
3378
+ }
3379
+ @media screen and (min-width: 1024px) and (max-width: 1024px) {
3380
+ .wapper {
3381
+ padding: 0 30px 0px 15px;
3382
+ }
3383
+ .welcometext {
3384
+ width: 62% !important;
3385
+ }
3386
+ .supportforum {
3387
+ margin-top: 22px;
3388
+ }
3389
+ .main_contant h1 {
3390
+ line-height: 35px;
3391
+ }
3392
+ #sfpageLoad {
3393
+ width: 100% !important;
3394
+ }
3395
+ .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3396
+ margin-left: 45px;
3397
+ }
3398
+ .row ul.tab_2_email_sec li {
3399
+ width: 31%;
3400
+ }
3401
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3402
+ width: 90.7% !important;
3403
+ }
3404
+ .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3405
+ width: 100% !important;
3406
+ }
3407
+ .tab9 .sfsi_float_position_icon_label {
3408
+ clear: both !important;
3409
+ }
3410
+ .tab9 .sfsiLocationli label,
3411
+ .tab9 .sfsi_float_position_icon_label {
3412
+ margin-top: 13px;
3413
+ clear: both;
3414
+ float: left;
3415
+ }
3416
+ .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3417
+ margin-top: 0px !important;
3418
+ }
3419
+ .tab9 .sfsi_flicnsoptn3 {
3420
+ margin-top: 3px !important
3421
+ }
3422
+ .tab9 .sfsi_position_divider:nth-child(2) {
3423
+ margin: 20px 0;
3424
+ }
3425
+ .tab9 .sfsi_position_divider {
3426
+ margin-left: 0px !important;
3427
+ }
3428
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3429
+ width: 30% !important;
3430
+ }
3431
+ .tab9 ul.sfsi_make_icons.sfsi_mobile_float {
3432
+ width: 100% !important;
3433
+ }
3434
+ }
3435
+
3436
+ @media screen and (min-width: 1080px) and (max-width: 1080px) {
3437
+ .tab9 ul.sfsi_tab_3_icns label {
3438
+ clear: both;
3439
+ margin-top: 20px;
3440
+ }
3441
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons {
3442
+ float: left;
3443
+ clear: both;
3444
+ width: 100%;
3445
+ }
3446
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons li {
3447
+ width: 50%;
3448
+ }
3449
+ }
3450
+
3451
+ @media screen and (min-width: 1920px) and (max-width: 1920px) {
3452
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons li span.sfsi_flicnsoptn3 {
3453
+ padding-top: 6px;
3454
+ padding-left: 5px;
3455
+ }
3456
+ }
3457
+
3458
+ @media screen and (min-width: 1366px) and (max-width: 1366px) {
3459
+ .wapper {
3460
+ padding: 40px 40px 40px 10px;
3461
+ }
3462
+ .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3463
+ width: 100% !important;
3464
+ }
3465
+ .tab9 .sfsi_flicnsoptn3 {
3466
+ font-size: 18px !important;
3467
+ min-width: 113px !important;
3468
+ margin: 60px 0px 0 10px !important;
3469
+ width: auto !important;
3470
+ }
3471
+ .tab9 .sfsi_position_divider {
3472
+ margin-left: 0px !important;
3473
+ }
3474
+ }
3475
+ /************************************ Question 3-> Where shall they be displayed? CSS CLOSES *************************/
3476
+
3477
+ /* Link to support forum left of every Save button */
3478
+ .ui-accordion .ui-accordion-content {
3479
+ position: relative;
3480
+ }
3481
+ .sfsi_askforhelp {
3482
+ float: left;
3483
+ width: 32%;
3484
+ position: absolute;
3485
+ bottom: 30px;
3486
+ }
3487
+ .sfsi_askforhelp img {
3488
+ float: left;
3489
+ width: 35px;
3490
+ height: 35px;
3491
+ vertical-align: middle;
3492
+ }
3493
+ .sfsi_askforhelp span {
3494
+ float: left;
3495
+ margin-left: 6px;
3496
+ margin-top: 8px;
3497
+ }
3498
+ .askhelpInview2 {
3499
+ bottom: 25px;
3500
+ }
3501
+ .askhelpInview3 {
3502
+ bottom: 38px;
3503
+ }
3504
+ .askhelpInview7 {
3505
+ bottom: 50px;
3506
+ }
3507
+
3508
+ div#sfsi_langnotice,
3509
+ div#sfsi_addThis_removal_notice,
3510
+ div#sfsi_error_reporting_notice {
3511
+ padding: 10px;
3512
+ margin-left: 0px;
3513
+ position: relative;
3514
+ }
3515
+
3516
+ .clear {
3517
+ clear: both;
3518
+ }
3519
+ .show {
3520
+ display: block;
3521
+ }
3522
+ .hide {
3523
+ display: none;
3524
+ }
3525
+
3526
+ .zeropadding {
3527
+ padding: 0px !important;
3528
+ }
3529
+ .zerotoppadding {
3530
+ padding-top: 0px !important;
3531
+ }
3532
+ .zerobottompadding {
3533
+ padding-bottom: 0px !important;
3534
+ }
3535
+ .zerotopmargin {
3536
+ margin-top: 0px !important;
3537
+ }
3538
+
3539
+ .rowpadding10 {
3540
+ padding: 10px 0 !important;
3541
+ }
3542
+ .rowmarginleft15 {
3543
+ margin-left: 15px !important;
3544
+ }
3545
+ .rowmarginleft25 {
3546
+ margin-left: 25px !important;
3547
+ }
3548
+ .rowmarginleft45 {
3549
+ margin-left: 45px !important;
3550
+ }
3551
+
3552
+ .bottommargin20 {
3553
+ margin-bottom: 20px !important;
3554
+ }
3555
+ .bottommargin30 {
3556
+ margin-bottom: 30px !important;
3557
+ }
3558
+ .bottommargin40 {
3559
+ margin-bottom: 40px !important;
3560
+ }
3561
+ .inactiveSection {
3562
+ opacity: 0.2;
3563
+ pointer-events: none;
3564
+ }
3565
+
3566
+ /* */
3567
+ .tab3 .sub_row {
3568
+ float: left;
3569
+ margin: 15px 0 0 4%;
3570
+ width: 80%;
3571
+ }
3572
+ .tab3 .sub_row label {
3573
+ float: left;
3574
+ margin: 0 0px 0 10px;
3575
+ line-height: 36px;
3576
+ font-size: 18px;
3577
+ }
3578
+ .tab3 .sub_row .effectContainer {
3579
+ float: left;
3580
+ width: 100%;
3581
+ margin-left: 45px;
3582
+ }
3583
+ .tab3 .sub_row .effectName {
3584
+ float: left;
3585
+ width: 35%;
3586
+ }
3587
+ .tab3 .tab_3_sav {
3588
+ padding-top: 0;
3589
+ margin: 0px auto 10px;
3590
+ position: relative;
3591
+ z-index: 9;
3592
+ }
3593
+ .tab3 .Shuffle_auto {
3594
+ float: left;
3595
+ width: 80%;
3596
+ clear: both;
3597
+ }
3598
+ .tab3 #animationSection label {
3599
+ font-family: 'helveticaneue-light';
3600
+ }
3601
+
3602
+ .tab3 select[name='mouseover_other_icons_transition_effect'] {
3603
+ margin-left: 10px;
3604
+ padding: 0px 11px;
3605
+ margin-top: 4px;
3606
+ font-size: 15px;
3607
+ border-radius: 5px;
3608
+ }
3609
+ .tab3 .other_icons_effects_options .mouseover_other_icon_label {
3610
+ float: left;
3611
+ width: 30%;
3612
+ font-size: 16px;
3613
+ }
3614
+ .tab3 .mouse-over-effects span.radio {
3615
+ float: left;
3616
+ display: inline-block;
3617
+ }
3618
+ .tab3 .same_icons_effects label span {
3619
+ float: left;
3620
+ clear: both;
3621
+ line-height: 20px;
3622
+ }
3623
+ .tab3 .same_icons_effects label span:nth-child(2) {
3624
+ font-size: 14px;
3625
+ }
3626
+ .tab3 .other_icons_effects_options .mouseover_other_icon_img {
3627
+ float: left;
3628
+ width: 40px;
3629
+ height: 40px;
3630
+ }
3631
+ .tab3 .other_icons_effects_options .mouseover_other_icon_change_link,
3632
+ .tab3 .other_icons_effects_options .mouseover_other_icon_revert_link {
3633
+ float: left;
3634
+ color: #337ab7;
3635
+ margin-left: 15px;
3636
+ padding: 5px 0px;
3637
+ font-size: 15px;
3638
+ text-decoration: underline;
3639
+ }
3640
+ .mouseover-premium-notice {}
3641
+ .mouseover-premium-notice label {
3642
+ width: auto !important;
3643
+ margin: 0 !important;
3644
+ }
3645
+ .mouseover-premium-notice a {
3646
+ float: left;
3647
+ color: #12a252 !important;
3648
+ padding-top: 5px;
3649
+ margin-left: 5px;
3650
+ font-size: 18px;
3651
+ }
3652
+
3653
+ @media (min-width:414px) and (max-width: 736px) and (orientation:portrait) {
3654
+ .tab3 .sub_row {
3655
+ width: 100%;
3656
+ }
3657
+ .tab3 .sub_row .effectContainer {
3658
+ margin-left: 25px;
3659
+ margin-bottom: 0px;
3660
+ clear: both;
3661
+ }
3662
+ .tab3 .sub_row .effectName {
3663
+ width: 100%;
3664
+ margin-bottom: 25px
3665
+ }
3666
+ .rowmarginleft45 {
3667
+ margin-left: 0px !important;
3668
+ }
3669
+ .bottommargin40 {
3670
+ margin-bottom: 0px !important;
3671
+ }
3672
+ }
3673
+
3674
+ @media (min-width:414px) and (max-width: 736px) and (orientation:landscape) {
3675
+ .tab3 .sub_row {
3676
+ width: 100%;
3677
+ }
3678
+ .tab3 .sub_row .effectContainer {
3679
+ margin-left: 25px;
3680
+ margin-bottom: 0px;
3681
+ clear: both;
3682
+ }
3683
+ .tab3 .sub_row .effectName {
3684
+ width: 50%;
3685
+ margin-bottom: 25px
3686
+ }
3687
+ .rowmarginleft45 {
3688
+ margin-left: 25px !important;
3689
+ }
3690
+ .bottommargin40 {
3691
+ margin-bottom: 0px !important;
3692
+ }
3693
+ }
3694
+ @media (min-width:768px) and (max-width: 1024px) {
3695
+ .tab3 .sub_row {
3696
+ width: 100%;
3697
+ }
3698
+ .tab3 .sub_row .effectContainer {
3699
+ margin-bottom: 25px;
3700
+ clear: both;
3701
+ }
3702
+ .tab3 .sub_row .effectName {
3703
+ width: 50%;
3704
+ }
3705
+ }/* */
3706
+
3707
+ .col-lg-1,
3708
+ .col-lg-10,
3709
+ .col-lg-11,
3710
+ .col-lg-12,
3711
+ .col-lg-2,
3712
+ .col-lg-3,
3713
+ .col-lg-4,
3714
+ .col-lg-5,
3715
+ .col-lg-6,
3716
+ .col-lg-7,
3717
+ .col-lg-8,
3718
+ .col-lg-9,
3719
+ .col-md-1,
3720
+ .col-md-10,
3721
+ .col-md-11,
3722
+ .col-md-12,
3723
+ .col-md-2,
3724
+ .col-md-3,
3725
+ .col-md-4,
3726
+ .col-md-5,
3727
+ .col-md-6,
3728
+ .col-md-7,
3729
+ .col-md-8,
3730
+ .col-md-9,
3731
+ .col-sm-1,
3732
+ .col-sm-10,
3733
+ .col-sm-11,
3734
+ .col-sm-12,
3735
+ .col-sm-2,
3736
+ .col-sm-3,
3737
+ .col-sm-4,
3738
+ .col-sm-5,
3739
+ .col-sm-6,
3740
+ .col-sm-7,
3741
+ .col-sm-8,
3742
+ .col-sm-9,
3743
+ .col-xs-1,
3744
+ .col-xs-10,
3745
+ .col-xs-11,
3746
+ .col-xs-12,
3747
+ .col-xs-2,
3748
+ .col-xs-3,
3749
+ .col-xs-4,
3750
+ .col-xs-5,
3751
+ .col-xs-6,
3752
+ .col-xs-7,
3753
+ .col-xs-8,
3754
+ .col-xs-9 {
3755
+ position: relative;
3756
+ min-height: 1px;
3757
+ padding-right: 15px;
3758
+ padding-left: 15px;
3759
+ }
3760
+ @media (min-width: 992px) {
3761
+ .col-md-12 {
3762
+ width: 100%;
3763
+ }
3764
+
3765
+ .col-md-3 {
3766
+ width: 25%;
3767
+ }
3768
+
3769
+ .col-md-1,
3770
+ .col-md-10,
3771
+ .col-md-11,
3772
+ .col-md-12,
3773
+ .col-md-2,
3774
+ .col-md-3,
3775
+ .col-md-4,
3776
+ .col-md-5,
3777
+ .col-md-6,
3778
+ .col-md-7,
3779
+ .col-md-8,
3780
+ .col-md-9 {
3781
+ float: left;
3782
+ }
3783
+
3784
+ .col-md-12 {
3785
+ width: 100%
3786
+ }
3787
+
3788
+ .col-md-11 {
3789
+ width: 91.66666667%
3790
+ }
3791
+
3792
+ .col-md-10 {
3793
+ width: 83.33333333%
3794
+ }
3795
+
3796
+ .col-md-9 {
3797
+ width: 75%
3798
+ }
3799
+
3800
+ .col-md-8 {
3801
+ width: 66.66666667%
3802
+ }
3803
+
3804
+ .col-md-7 {
3805
+ width: 58.33333333%
3806
+ }
3807
+
3808
+ .col-md-6 {
3809
+ width: 50%
3810
+ }
3811
+
3812
+ .col-md-5 {
3813
+ width: 41.66666667%
3814
+ }
3815
+
3816
+ .col-md-4 {
3817
+ width: 33.33333333%
3818
+ }
3819
+
3820
+ .col-md-3 {
3821
+ width: 25%
3822
+ }
3823
+
3824
+ .col-md-2 {
3825
+ width: 16.66666667%
3826
+ }
3827
+
3828
+ .col-md-1 {
3829
+ width: 8.33333333%
3830
+ }
3831
+
3832
+ .col-md-pull-12 {
3833
+ right: 100%
3834
+ }
3835
+
3836
+ .col-md-pull-11 {
3837
+ right: 91.66666667%
3838
+ }
3839
+
3840
+ .col-md-pull-10 {
3841
+ right: 83.33333333%
3842
+ }
3843
+
3844
+ .col-md-pull-9 {
3845
+ right: 75%
3846
+ }
3847
+
3848
+ .col-md-pull-8 {
3849
+ right: 66.66666667%
3850
+ }
3851
+
3852
+ .col-md-pull-7 {
3853
+ right: 58.33333333%
3854
+ }
3855
+
3856
+ .col-md-pull-6 {
3857
+ right: 50%
3858
+ }
3859
+
3860
+ .col-md-pull-5 {
3861
+ right: 41.66666667%
3862
+ }
3863
+
3864
+ .col-md-pull-4 {
3865
+ right: 33.33333333%
3866
+ }
3867
+
3868
+ .col-md-pull-3 {
3869
+ right: 25%
3870
+ }
3871
+
3872
+ .col-md-pull-2 {
3873
+ right: 16.66666667%
3874
+ }
3875
+
3876
+ .col-md-pull-1 {
3877
+ right: 8.33333333%
3878
+ }
3879
+
3880
+ .col-md-pull-0 {
3881
+ right: auto
3882
+ }
3883
+
3884
+ .col-md-push-12 {
3885
+ left: 100%
3886
+ }
3887
+
3888
+ .col-md-push-11 {
3889
+ left: 91.66666667%
3890
+ }
3891
+
3892
+ .col-md-push-10 {
3893
+ left: 83.33333333%
3894
+ }
3895
+
3896
+ .col-md-push-9 {
3897
+ left: 75%
3898
+ }
3899
+
3900
+ .col-md-push-8 {
3901
+ left: 66.66666667%
3902
+ }
3903
+
3904
+ .col-md-push-7 {
3905
+ left: 58.33333333%
3906
+ }
3907
+
3908
+ .col-md-push-6 {
3909
+ left: 50%
3910
+ }
3911
+
3912
+ .col-md-push-5 {
3913
+ left: 41.66666667%
3914
+ }
3915
+
3916
+ .col-md-push-4 {
3917
+ left: 33.33333333%
3918
+ }
3919
+
3920
+ .col-md-push-3 {
3921
+ left: 25%
3922
+ }
3923
+
3924
+ .col-md-push-2 {
3925
+ left: 16.66666667%
3926
+ }
3927
+
3928
+ .col-md-push-1 {
3929
+ left: 8.33333333%
3930
+ }
3931
+
3932
+ .col-md-push-0 {
3933
+ left: auto
3934
+ }
3935
+
3936
+ .col-md-offset-12 {
3937
+ margin-left: 100%
3938
+ }
3939
+
3940
+ .col-md-offset-11 {
3941
+ margin-left: 91.66666667%
3942
+ }
3943
+
3944
+ .col-md-offset-10 {
3945
+ margin-left: 83.33333333%
3946
+ }
3947
+
3948
+ .col-md-offset-9 {
3949
+ margin-left: 75%
3950
+ }
3951
+
3952
+ .col-md-offset-8 {
3953
+ margin-left: 66.66666667%
3954
+ }
3955
+
3956
+ .col-md-offset-7 {
3957
+ margin-left: 58.33333333%
3958
+ }
3959
+
3960
+ .col-md-offset-6 {
3961
+ margin-left: 50%
3962
+ }
3963
+
3964
+ .col-md-offset-5 {
3965
+ margin-left: 41.66666667%
3966
+ }
3967
+
3968
+ .col-md-offset-4 {
3969
+ margin-left: 33.33333333%
3970
+ }
3971
+
3972
+ .col-md-offset-3 {
3973
+ margin-left: 25%
3974
+ }
3975
+
3976
+ .col-md-offset-2 {
3977
+ margin-left: 16.66666667%
3978
+ }
3979
+
3980
+ .col-md-offset-1 {
3981
+ margin-left: 8.33333333%
3982
+ }
3983
+
3984
+ .col-md-offset-0 {
3985
+ margin-left: 0
3986
+ }
3987
+ }
3988
+ @media (min-width:768px) {
3989
+
3990
+ .col-sm-1,
3991
+ .col-sm-10,
3992
+ .col-sm-11,
3993
+ .col-sm-12,
3994
+ .col-sm-2,
3995
+ .col-sm-3,
3996
+ .col-sm-4,
3997
+ .col-sm-5,
3998
+ .col-sm-6,
3999
+ .col-sm-7,
4000
+ .col-sm-8,
4001
+ .col-sm-9 {
4002
+ float: left
4003
+ }
4004
+
4005
+ .col-sm-12 {
4006
+ width: 100%
4007
+ }
4008
+
4009
+ .col-sm-11 {
4010
+ width: 91.66666667%
4011
+ }
4012
+
4013
+ .col-sm-10 {
4014
+ width: 83.33333333%
4015
+ }
4016
+
4017
+ .col-sm-9 {
4018
+ width: 75%
4019
+ }
4020
+
4021
+ .col-sm-8 {
4022
+ width: 66.66666667%
4023
+ }
4024
+
4025
+ .col-sm-7 {
4026
+ width: 58.33333333%
4027
+ }
4028
+
4029
+ .col-sm-6 {
4030
+ width: 50%
4031
+ }
4032
+
4033
+ .col-sm-5 {
4034
+ width: 41.66666667%
4035
+ }
4036
+
4037
+ .col-sm-4 {
4038
+ width: 33.33333333%
4039
+ }
4040
+
4041
+ .col-sm-3 {
4042
+ width: 25%
4043
+ }
4044
+
4045
+ .col-sm-2 {
4046
+ width: 16.66666667%
4047
+ }
4048
+
4049
+ .col-sm-1 {
4050
+ width: 8.33333333%
4051
+ }
4052
+
4053
+ .col-sm-pull-12 {
4054
+ right: 100%
4055
+ }
4056
+
4057
+ .col-sm-pull-11 {
4058
+ right: 91.66666667%
4059
+ }
4060
+
4061
+ .col-sm-pull-10 {
4062
+ right: 83.33333333%
4063
+ }
4064
+
4065
+ .col-sm-pull-9 {
4066
+ right: 75%
4067
+ }
4068
+
4069
+ .col-sm-pull-8 {
4070
+ right: 66.66666667%
4071
+ }
4072
+
4073
+ .col-sm-pull-7 {
4074
+ right: 58.33333333%
4075
+ }
4076
+
4077
+ .col-sm-pull-6 {
4078
+ right: 50%
4079
+ }
4080
+
4081
+ .col-sm-pull-5 {
4082
+ right: 41.66666667%
4083
+ }
4084
+
4085
+ .col-sm-pull-4 {
4086
+ right: 33.33333333%
4087
+ }
4088
+
4089
+ .col-sm-pull-3 {
4090
+ right: 25%
4091
+ }
4092
+
4093
+ .col-sm-pull-2 {
4094
+ right: 16.66666667%
4095
+ }
4096
+
4097
+ .col-sm-pull-1 {
4098
+ right: 8.33333333%
4099
+ }
4100
+
4101
+ .col-sm-pull-0 {
4102
+ right: auto
4103
+ }
4104
+
4105
+ .col-sm-push-12 {
4106
+ left: 100%
4107
+ }
4108
+
4109
+ .col-sm-push-11 {
4110
+ left: 91.66666667%
4111
+ }
4112
+
4113
+ .col-sm-push-10 {
4114
+ left: 83.33333333%
4115
+ }
4116
+
4117
+ .col-sm-push-9 {
4118
+ left: 75%
4119
+ }
4120
+
4121
+ .col-sm-push-8 {
4122
+ left: 66.66666667%
4123
+ }
4124
+
4125
+ .col-sm-push-7 {
4126
+ left: 58.33333333%
4127
+ }
4128
+
4129
+ .col-sm-push-6 {
4130
+ left: 50%
4131
+ }
4132
+
4133
+ .col-sm-push-5 {
4134
+ left: 41.66666667%
4135
+ }
4136
+
4137
+ .col-sm-push-4 {
4138
+ left: 33.33333333%
4139
+ }
4140
+
4141
+ .col-sm-push-3 {
4142
+ left: 25%
4143
+ }
4144
+
4145
+ .col-sm-push-2 {
4146
+ left: 16.66666667%
4147
+ }
4148
+
4149
+ .col-sm-push-1 {
4150
+ left: 8.33333333%
4151
+ }
4152
+
4153
+ .col-sm-push-0 {
4154
+ left: auto
4155
+ }
4156
+
4157
+ .col-sm-offset-12 {
4158
+ margin-left: 100%
4159
+ }
4160
+
4161
+ .col-sm-offset-11 {
4162
+ margin-left: 91.66666667%
4163
+ }
4164
+
4165
+ .col-sm-offset-10 {
4166
+ margin-left: 83.33333333%
4167
+ }
4168
+
4169
+ .col-sm-offset-9 {
4170
+ margin-left: 75%
4171
+ }
4172
+
4173
+ .col-sm-offset-8 {
4174
+ margin-left: 66.66666667%
4175
+ }
4176
+
4177
+ .col-sm-offset-7 {
4178
+ margin-left: 58.33333333%
4179
+ }
4180
+
4181
+ .col-sm-offset-6 {
4182
+ margin-left: 50%
4183
+ }
4184
+
4185
+ .col-sm-offset-5 {
4186
+ margin-left: 41.66666667%
4187
+ }
4188
+
4189
+ .col-sm-offset-4 {
4190
+ margin-left: 33.33333333%
4191
+ }
4192
+
4193
+ .col-sm-offset-3 {
4194
+ margin-left: 25%
4195
+ }
4196
+
4197
+ .col-sm-offset-2 {
4198
+ margin-left: 16.66666667%
4199
+ }
4200
+
4201
+ .col-sm-offset-1 {
4202
+ margin-left: 8.33333333%
4203
+ }
4204
+
4205
+ .col-sm-offset-0 {
4206
+ margin-left: 0
4207
+ }
4208
+ }
4209
+ @media (min-width:1200px) {
4210
+
4211
+ .col-lg-1,
4212
+ .col-lg-10,
4213
+ .col-lg-11,
4214
+ .col-lg-12,
4215
+ .col-lg-2,
4216
+ .col-lg-3,
4217
+ .col-lg-4,
4218
+ .col-lg-5,
4219
+ .col-lg-6,
4220
+ .col-lg-7,
4221
+ .col-lg-8,
4222
+ .col-lg-9 {
4223
+ float: left
4224
+ }
4225
+
4226
+ .col-lg-12 {
4227
+ width: 100%
4228
+ }
4229
+
4230
+ .col-lg-11 {
4231
+ width: 91.66666667%
4232
+ }
4233
+
4234
+ .col-lg-10 {
4235
+ width: 83.33333333%
4236
+ }
4237
+
4238
+ .col-lg-9 {
4239
+ width: 75%
4240
+ }
4241
+
4242
+ .col-lg-8 {
4243
+ width: 66.66666667%
4244
+ }
4245
+
4246
+ .col-lg-7 {
4247
+ width: 58.33333333%
4248
+ }
4249
+
4250
+ .col-lg-6 {
4251
+ width: 50%
4252
+ }
4253
+
4254
+ .col-lg-5 {
4255
+ width: 41.66666667%
4256
+ }
4257
+
4258
+ .col-lg-4 {
4259
+ width: 33.33333333%
4260
+ }
4261
+
4262
+ .col-lg-3 {
4263
+ width: 25%
4264
+ }
4265
+
4266
+ .col-lg-2 {
4267
+ width: 16.66666667%
4268
+ }
4269
+
4270
+ .col-lg-1 {
4271
+ width: 8.33333333%
4272
+ }
4273
+
4274
+ .col-lg-pull-12 {
4275
+ right: 100%
4276
+ }
4277
+
4278
+ .col-lg-pull-11 {
4279
+ right: 91.66666667%
4280
+ }
4281
+
4282
+ .col-lg-pull-10 {
4283
+ right: 83.33333333%
4284
+ }
4285
+
4286
+ .col-lg-pull-9 {
4287
+ right: 75%
4288
+ }
4289
+
4290
+ .col-lg-pull-8 {
4291
+ right: 66.66666667%
4292
+ }
4293
+
4294
+ .col-lg-pull-7 {
4295
+ right: 58.33333333%
4296
+ }
4297
+
4298
+ .col-lg-pull-6 {
4299
+ right: 50%
4300
+ }
4301
+
4302
+ .col-lg-pull-5 {
4303
+ right: 41.66666667%
4304
+ }
4305
+
4306
+ .col-lg-pull-4 {
4307
+ right: 33.33333333%
4308
+ }
4309
+
4310
+ .col-lg-pull-3 {
4311
+ right: 25%
4312
+ }
4313
+
4314
+ .col-lg-pull-2 {
4315
+ right: 16.66666667%
4316
+ }
4317
+
4318
+ .col-lg-pull-1 {
4319
+ right: 8.33333333%
4320
+ }
4321
+
4322
+ .col-lg-pull-0 {
4323
+ right: auto
4324
+ }
4325
+
4326
+ .col-lg-push-12 {
4327
+ left: 100%
4328
+ }
4329
+
4330
+ .col-lg-push-11 {
4331
+ left: 91.66666667%
4332
+ }
4333
+
4334
+ .col-lg-push-10 {
4335
+ left: 83.33333333%
4336
+ }
4337
+
4338
+ .col-lg-push-9 {
4339
+ left: 75%
4340
+ }
4341
+
4342
+ .col-lg-push-8 {
4343
+ left: 66.66666667%
4344
+ }
4345
+
4346
+ .col-lg-push-7 {
4347
+ left: 58.33333333%
4348
+ }
4349
+
4350
+ .col-lg-push-6 {
4351
+ left: 50%
4352
+ }
4353
+
4354
+ .col-lg-push-5 {
4355
+ left: 41.66666667%
4356
+ }
4357
+
4358
+ .col-lg-push-4 {
4359
+ left: 33.33333333%
4360
+ }
4361
+
4362
+ .col-lg-push-3 {
4363
+ left: 25%
4364
+ }
4365
+
4366
+ .col-lg-push-2 {
4367
+ left: 16.66666667%
4368
+ }
4369
+
4370
+ .col-lg-push-1 {
4371
+ left: 8.33333333%
4372
+ }
4373
+
4374
+ .col-lg-push-0 {
4375
+ left: auto
4376
+ }
4377
+
4378
+ .col-lg-offset-12 {
4379
+ margin-left: 100%
4380
+ }
4381
+
4382
+ .col-lg-offset-11 {
4383
+ margin-left: 91.66666667%
4384
+ }
4385
+
4386
+ .col-lg-offset-10 {
4387
+ margin-left: 83.33333333%
4388
+ }
4389
+
4390
+ .col-lg-offset-9 {
4391
+ margin-left: 75%
4392
+ }
4393
+
4394
+ .col-lg-offset-8 {
4395
+ margin-left: 66.66666667%
4396
+ }
4397
+
4398
+ .col-lg-offset-7 {
4399
+ margin-left: 58.33333333%
4400
+ }
4401
+
4402
+ .col-lg-offset-6 {
4403
+ margin-left: 50%
4404
+ }
4405
+
4406
+ .col-lg-offset-5 {
4407
+ margin-left: 41.66666667%
4408
+ }
4409
+
4410
+ .col-lg-offset-4 {
4411
+ margin-left: 33.33333333%
4412
+ }
4413
+
4414
+ .col-lg-offset-3 {
4415
+ margin-left: 25%
4416
+ }
4417
+
4418
+ .col-lg-offset-2 {
4419
+ margin-left: 16.66666667%
4420
+ }
4421
+
4422
+ .col-lg-offset-1 {
4423
+ margin-left: 8.33333333%
4424
+ }
4425
+
4426
+ .col-lg-offset-0 {
4427
+ margin-left: 0
4428
+ }
4429
+ }
4430
+ #sfsi_jivo_offline_chat {
4431
+ position: fixed;
4432
+ bottom: 0;
4433
+ right: 30px;
4434
+ height: 350px;
4435
+ min-width: 45%;
4436
+ background: #fff;
4437
+ border-top-left-radius: 30px;
4438
+ border-top-right-radius: 30px;
4439
+ padding: 10px;
4440
+ border: 3px solid #ddd;
4441
+ border-bottom: 0;
4442
+ }
4443
+ #sfsi_jivo_offline_chat .heading-text {
4444
+ font-size: 16px;
4445
+ font-weight: 500;
4446
+ color: #999;
4447
+ }
4448
+ #sfsi_jivo_offline_chat .heading-text a {
4449
+ font-size: 16px;
4450
+ font-weight: 900;
4451
+ color: #999;
4452
+ }
4453
+ #sfsi_jivo_offline_chat .tab-changer {
4454
+ /*width:100%;*/
4455
+ padding: 0 15px;
4456
+
4457
+ }
4458
+ #sfsi_jivo_offline_chat .tab-changer .tab-link {
4459
+ float: left;
4460
+ width: 50%;
4461
+ text-align: center;
4462
+ background: #eee;
4463
+ border-bottom: 5px solid #24497B;
4464
+ }
4465
+ #sfsi_jivo_offline_chat .tab-changer .tab-link:first-child {
4466
+ border-top-left-radius: 8px;
4467
+ }
4468
+ #sfsi_jivo_offline_chat .tab-changer .tab-link:last-child {
4469
+ border-top-right-radius: 8px;
4470
+ }
4471
+ #sfsi_jivo_offline_chat .tab-changer .tab-link p {
4472
+ background: #eee;
4473
+ padding: 5px 0;
4474
+ margin: 0;
4475
+ border-top-left-radius: 10px;
4476
+ border-top-right-radius: 10px;
4477
+ font-size: 25px;
4478
+ cursor: pointer;
4479
+ line-height: 1;
4480
+ }
4481
+ #sfsi_jivo_offline_chat .tab-changer .tab-link p span {
4482
+ font-size: 15px;
4483
+ }
4484
+ #sfsi_jivo_offline_chat .tab-changer .tab-link.active p {
4485
+ background: #24497B;
4486
+ color: #fff;
4487
+ }
4488
+ #sfsi_jivo_offline_chat .tabs {
4489
+ /*background: #dbeef4;*/
4490
+ background: #ddd;
4491
+ margin: -6px 15px 0 15px;
4492
+ min-height: 250px;
4493
+ }
4494
+ #sfsi_jivo_offline_chat #sfsi_technical {
4495
+ padding: 50px;
4496
+ }
4497
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div {
4498
+ margin: 10px 0;
4499
+ }
4500
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div a {
4501
+ padding: 20px 26px 18px 25px;
4502
+ width: 245px;
4503
+ margin: 0;
4504
+ }
4505
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div a img {
4506
+ margin-top: 11px;
4507
+ }
4508
+ #sfsi_jivo_offline_chat .tabs #sfsi_technical p {
4509
+ font-size: 20px;
4510
+ padding-top: 5px;
4511
+ margin: 0;
4512
+ margin-top: 20px;
4513
+ }
4514
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales {
4515
+ padding: 15px;
4516
+ }
4517
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .right-message {
4518
+ width: 50%;
4519
+ float: right;
4520
+ text-align: right;
4521
+ margin: 0;
4522
+ }
4523
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales form>div {
4524
+ margin-top: 5px;
4525
+ }
4526
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales label {
4527
+ font-size: 20px;
4528
+ color: #000;
4529
+ font-weight: 900;
4530
+ padding-bottom: 5px;
4531
+ }
4532
+
4533
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input,
4534
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4535
+ margin-top: 5px;
4536
+ width: 100%;
4537
+ border: 0;
4538
+ box-shadow: 0 0 5px 0 #888;
4539
+ }
4540
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input {
4541
+ height: 40px;
4542
+ }
4543
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4544
+ height: 80px;
4545
+ resize: none;
4546
+ }
4547
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4548
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4549
+ border: 0;
4550
+ background: #079345;
4551
+ color: #fff;
4552
+ margin-top: 23px;
4553
+ width: 100%;
4554
+ font-size: 16px;
4555
+ border-radius: 4px;
4556
+ cursor: pointer;
4557
+ box-shadow: none;
4558
+ }
4559
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent {
4560
+ text-align: center;
4561
+ }
4562
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4563
+ font-size: 35px;
4564
+ }
4565
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4566
+ font-size: 25px;
4567
+ font-weight: 300;
4568
+ }
4569
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4570
+ width: auto;
4571
+ margin-top: 0;
4572
+ padding: 10px;
4573
+ }
4574
+ #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4575
+ font-size: 13px !important;
4576
+ font-weight: 900;
4577
+ /*float: right;*/
4578
+ /*text-align: right;*/
4579
+ margin-top: -40px !important;
4580
+ margin-left: 320px !important;
4581
+ }
4582
+ #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4583
+ background-image: url('images/select-arrow.png');
4584
+ width: 15px;
4585
+ height: 9px;
4586
+ display: inline-block;
4587
+ -webkit-transform: rotate(90deg);
4588
+ -moz-transform: rotate(90deg);
4589
+ -ms-transform: rotate(90deg);
4590
+ -o-transform: rotate(90deg);
4591
+ transform: rotate(90deg);
4592
+ }
4593
+ @media (max-width: 543px) {
4594
+ #sfsi_jivo_offline_chat {
4595
+ width: 400px;
4596
+ }
4597
+ }
4598
+
4599
+ #sfsi_jivo_offline_chat {
4600
+ border: 3px solid #ececec;
4601
+ }
4602
+
4603
+ #sfsi_jivo_offline_chat {
4604
+ padding-bottom: 30px;
4605
+ }
4606
+
4607
+ #sfsi_jivo_offline_chat .heading-text {
4608
+ font-size: 14px;
4609
+ }
4610
+
4611
+ #sfsi_jivo_offline_chat .tabs {
4612
+ background-color: #ededed;
4613
+ }#sfsi_jivo_offline_chat .tab-changer li p {
4614
+ padding: 8px !important;
4615
+ }
4616
+
4617
+ #sfsi_jivo_offline_chat .tab-changer .tab-link p {
4618
+ font-size: 21px !important;
4619
+ font-weight: 500;
4620
+ color: #000000;
4621
+ }#sfsi_jivo_offline_chat .tab-changer .tab-link p span {
4622
+ font-size: 14px !important;
4623
+ font-weight: 400;
4624
+ color: #000000;
4625
+ }
4626
+
4627
+ #sfsi_jivo_offline_chat .tab-changer .active p span {
4628
+ color: #ffffff;
4629
+ }
4630
+
4631
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales {
4632
+ padding: 30px 30px 40px 30px;
4633
+ background: #ededed;
4634
+ }#sfsi_jivo_offline_chat .tabs #sfsi_sales .label {
4635
+ margin-bottom: 8px;
4636
+ font-size: 17px;
4637
+ font-weight: 500;
4638
+ color: #000000;
4639
+ }#sfsi_jivo_offline_chat .tabs #sfsi_sales .email {
4640
+ margin-top: 15px;
4641
+ }
4642
+
4643
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .right-message {
4644
+ font-size: 14px;
4645
+ color: #000000;
4646
+ }
4647
+
4648
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4649
+ padding: 10px !important;
4650
+ font-size: 14px;
4651
+ font-weight: 500;
4652
+ margin-top: 0 !important;
4653
+ }
4654
+
4655
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input {
4656
+ padding: 10px;
4657
+ font-size: 14px;
4658
+ font-weight: 500;
4659
+ margin-top: 0 !important;
4660
+ }
4661
+
4662
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4663
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4664
+ background: #52b250;
4665
+ }#sfsi_jivo_offline_chat #sfsi_technical {
4666
+ padding: 57px;
4667
+ background-color: #ededed
4668
+ }
4669
+
4670
+ #sfsi_technical h5 {
4671
+ font-size: 18px;
4672
+ color: #000000;
4673
+ margin: 10px;
4674
+ }
4675
+
4676
+ #sfsi_technical h5 b {
4677
+ font-weight: 700;
4678
+ }
4679
+
4680
+ #sfsi_technical h5 b {
4681
+ font-weight: 700;
4682
+ }
4683
+
4684
+ #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4685
+ font-size: 12px !important;
4686
+ font-weight: 700;
4687
+ margin-top: 0px !important;
4688
+ margin-left: 0px !important;
4689
+ color: #000000;
4690
+ position: absolute;
4691
+ padding: 12px;
4692
+ }
4693
+
4694
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div {
4695
+ text-align: center;
4696
+ margin: 20px 0 25px 0;
4697
+ }
4698
+
4699
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div a {
4700
+ padding: 12px 25px;
4701
+ background: #52b250;
4702
+ }
4703
+
4704
+ #sfsi_jivo_offline_chat #sfsi_technical .support-forum-green-div .support-forum-green-bg p {
4705
+ padding: 0;
4706
+ margin: 0;
4707
+ font-size: 18px;
4708
+ font-weight: 500;
4709
+ }
4710
+
4711
+ #sfsi_jivo_offline_chat #sfsi_technical .support-forum-green-div .support-forum-green-bg img {
4712
+ height: 28px;
4713
+ position: relative;
4714
+ top: 9px;
4715
+ padding-right: 5px;
4716
+ margin-top: 0px;
4717
+ }
4718
+
4719
+ #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4720
+ padding-right: -1px;
4721
+ }
4722
+
4723
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4724
+ font-size: 20px;
4725
+ font-weight: 500;
4726
+ }
4727
+
4728
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4729
+ font-size: 35px;
4730
+ font-weight: 700;
4731
+ margin: 25px 0;
4732
+ }
4733
+
4734
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4735
+ width: auto;
4736
+ margin-top: 6px;
4737
+ padding: 8px 30px;
4738
+ font-size: 16px;
4739
+ background: #52b250;
4740
+ }
4741
+ @media (max-width: 543px) {
4742
+ #sfsi_jivo_offline_chat {
4743
+ width: 400px;
4744
+ }
4745
+ }
4746
+ .sfsi_unbold_link {
4747
+ font-family: inherit !important;
4748
+ }
4749
+ .sfsi_quickpay-overlay a {
4750
+ display: inline;
4751
+ font-size: inherit;
4752
+ text-decoration: underline;
4753
+ font-weight: 900;
4754
+ color: #666;
4755
+ }
4756
+ .sfsi_row {
4757
+ width: 100%;
4758
+ }
4759
+ .sfsi_col_6 {
4760
+ width: 49%;
4761
+ display: inline-block;
4762
+ }
4763
+ .sfsi_text_center {
4764
+ text-align: center;
4765
+ }
4766
+ .sfsi_col_6>div {
4767
+ padding: 18px 30px !important;
4768
+ margin: 20px 0 0 0;
4769
+ border: 1px solid #999;
4770
+ display: inline-block;
4771
+ float: none;
4772
+ /* height: 42px;
4773
+ width: 150px;*/
4774
+ }
4775
+ .sfsi_col_6>div:hover {
4776
+ background-image: radial-gradient(circle, #fff, #eee);
4777
+ }.sfsi_quickpay-overlay .sfsi_pop_up .sellcodes-quick-purchase img {
4778
+ vertical-align: middle;
4779
+ height: 40px;
4780
+ }
4781
+
4782
+ .sfsi_quickpay-overlay .sfsi_pop_up .sellcodes-quick-purchase p {
4783
+ text-align: center;
4784
+ }
4785
+
4786
+ .pop-overlay.read-overlay.sfsi_quickpay-overlay * {
4787
+ font-family: 'Josefin Sans', sans-serif;
4788
+ }
4789
+ .sfsi_quickpay-overlay a {
4790
+ display: inline !important;
4791
+ font-size: inherit !important;
4792
+ text-decoration: underline !important;
4793
+ font-weight: 900;
4794
+ color: #666;
4795
+ }
4796
+
4797
+ .wp-admin select {
4798
+ padding: 9px;
4799
+ }
4800
+
4801
+ .sfsi_mainContainer .no_check .checkbox {
4802
+ display: none;
4803
+ }
4804
+
4805
+ .sfsi_new_prmium_follw p .sfsi-share-op {
4806
+ color: #0c0b0b !important;
4807
+ text-decoration: none !important;
4808
+ border-bottom: none;
4809
+ }
4810
+ .sfsi_instagramInstruction ol>li {
4811
+ list-style-type: decimal !important;
4812
+ }
4813
+ .sfsi_instagramInstruction>p {
4814
+ list-style-type: decimal !important;
4815
+ }
4816
+ .sfsi_font_inherit {
4817
+ font-family: inherit !important;
4818
+ border: 0 !important;
4819
+ }
4820
+
4821
+ .pop-up {
4822
+ font-weight: normal;
4823
+ }
4824
+ /* by developer 23-05-2019 */
4825
+
4826
+ .sfsi_instagramFields .input_facebook {
4827
+
4828
+ margin-left: 0 !important;
4829
+
4830
+ }
4831
+
4832
+ body .specify_counts .listing .sfsi_instagramInstruction li {
4833
+ font-size: 17px !important;
4834
+ font-family: helveticaregular !important;
4835
+ font-weight: 400 !important;
4836
+ color: #1a1d20 !important;
4837
+ }
4838
+
4839
+ /* end */
4840
+
4841
+ /*start 4-6-19*/
4842
+ .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.twt_tool_bdr {
4843
+ margin-bottom: -12px !important;
4844
+ }
4845
+
4846
+ .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.printst_tool_bdr {
4847
+ margin-bottom: 2px;
4848
+ }
4849
+
4850
+ .wp-admin .pop-overlay .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.printst_tool_bdr {
4851
+ margin-bottom: 2px;
4852
+ }
4853
+
4854
+ .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.linkedin_tool_bdr {
4855
+ margin-bottom: -12px;
4856
+ }
4857
+
4858
+ /*end 4-6-19*/
4859
+
4860
+ .sfsi_border_left_0 {
4861
+ border-left: 0 !important;
4862
+ }
4863
+
4864
+ .tab8 .sfsi_inputSec input {
4865
+ width: 140px !important;
4866
+ padding: 13px;
4867
+ }
4868
+
4869
+ .tab8 .sfsi_inputSec span {
4870
+ width: auto;
4871
+ }
4872
+
4873
+ .tab8 .sfsi_inputSec span {
4874
+ display: inline-block;
4875
+ font-size: 18px;
4876
+ vertical-align: middle;
4877
+ width: 200px;
4878
+ color: #5A6570;
4879
+ }
4880
+
4881
+ .sfsi_responsive_icon_item_container {
4882
+ height: 40px;
4883
+ vertical-align: middle;
4884
+ margin-top: auto;
4885
+ margin-bottom: auto;
4886
+ }
4887
+
4888
+ .sfsi_responsive_icon_item_container img {
4889
+ padding: 7px;
4890
+ vertical-align: middle !important;
4891
+ box-shadow: unset !important;
4892
+ -webkit-box-shadow: unset !important;
4893
+ max-width: 40px !important;
4894
+ max-height: 40px;
4895
+ }
4896
+
4897
+ .sfsi_responsive_icon_item_container span {
4898
+ padding: 7px;
4899
+ vertical-align: middle !important;
4900
+ box-shadow: unset !important;
4901
+ -webkit-box-shadow: unset !important;
4902
+ line-height: 40px
4903
+ }.sfsi_responsive_icon_facebook_container {
4904
+ background-color: #336699;
4905
+ }
4906
+
4907
+ .sfsi_responsive_icon_follow_container {
4908
+ background-color: #00B04E;
4909
+ }
4910
+
4911
+ .sfsi_responsive_icon_twitter_container {
4912
+ background-color: #55ACEE;
4913
+ }.sfsi_icons_container_box_fully_container {
4914
+ flex-wrap: wrap;
4915
+ }
4916
+
4917
+ .sfsi_icons_container_box_fully_container a {
4918
+ flex-basis: auto !important;
4919
+ flex-grow: 1;
4920
+ flex-shrink: 1;
4921
+ }
4922
+
4923
+ .sfsi_responsive_icons .sfsi_icons_container span {
4924
+ font-family: sans-serif;
4925
+ font-size: 15px;
4926
+ }
4927
+
4928
+ .sfsi_widget_title {
4929
+ font-weight: 700;
4930
+ line-height: 1.2;
4931
+ font-size: 27px;
4932
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
4933
+
4934
+ }
4935
+
4936
+ .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container,
4937
+ .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container {
4938
+ width: 236px;
4939
+ text-align: center;
4940
+ margin-right: 8px;
4941
+ margin-top: -5px;
4942
+ }
4943
+
4944
+ .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container img,
4945
+ .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container img {
4946
+ max-height: 25px !important;
4947
+ max-width: 40px !important;
4948
+ float: left;
4949
+ height: 25px;
4950
+ }
4951
+
4952
+ .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container span,
4953
+ .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container span {
4954
+ color: #ffffff;
4955
+ font-size: 20px;
4956
+ padding: 0 10px;
4957
+ letter-spacing: 0.5px;
4958
+ font-weight: 500;
4959
+ }
4960
+
4961
+ .tab6 .sfsi_responsive_default_icon_container,
4962
+ .tab6 .sfsi_responsive_custom_icon_container {
4963
+ width: 100% !important;
4964
+ max-width: unset !important;
4965
+ /* padding-left: 60px!important; */
4966
+ }
4967
+
4968
+ .tab6 .sfsi_responsive_default_icon_container input {
4969
+ padding: 8px 11px;
4970
+ height: 39px;
4971
+ }
4972
+
4973
+ .tab6 .heading-label {
4974
+ font-size: 18px !important;
4975
+ font-weight: 400;
4976
+ }
4977
+
4978
+ .sfsi_responsive_default_icon_container,
4979
+ .sfsi_responsive_custom_icon_container {
4980
+ padding: 2px 0 !important;
4981
+ }
4982
+
4983
+ .sfsi_responsive_default_icon_container .sfsi_responsive_default_url_toggler,
4984
+ .sfsi_responsive_custom_icon_container .sfsi_responsive_default_url_toggler,
4985
+ .sfsi_responsive_default_icon_container .sfsi_responsive_default_url_hide {
4986
+ color: #337ab7 !important;
4987
+ font-size: 18px !important;
4988
+ letter-spacing: 1px;
4989
+ font-weight: 500;
4990
+ margin-left: 20px;
4991
+ text-decoration: none !important
4992
+ }
4993
+
4994
+ .sfsi_responsive_fluid {
4995
+ text-decoration: none !important;
4996
+ }
4997
+
4998
+ .sfsi_large_button_container {
4999
+ width: calc(100% - 81px) !important;
5000
+ }
5001
+
5002
+ .sfsi_medium_button_container {
5003
+ width: calc(100% - 70px) !important;
5004
+ }
5005
+
5006
+ .sfsi_small_button_container {
5007
+ width: calc(100% - 100px) !important;
5008
+ }
5009
+
5010
+ /* .sfsi_responsive_custom_icon{line-height: 6px;} */
5011
+ /* .sfsi_responsive_fixed_width .sfsi_responsive_custom_icon{line-height: 6px;} */
5012
+ /*Override for front end - icon of right height*/
5013
+ /* .sfsi_responsive_fluid .sfsi_large_button{padding: 13px !important;} */
5014
+ /* .sfsi_responsive_fluid .sfsi_medium_button{padding: 10px !important;} */
5015
+
5016
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
5017
+ padding: 12px 13px 9px 13px !important;
5018
+ }
5019
+
5020
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button h3 {
5021
+ margin: 0px 0px 15px 0px !important;
5022
+ }
5023
+
5024
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
5025
+ padding: 9px 10px 7px 10px !important;
5026
+ }
5027
+
5028
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_large_button {
5029
+ padding: 12px 13px 9px 13px !important;
5030
+ }
5031
+
5032
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
5033
+ margin: 0px 0px 15px 0px !important;
5034
+ }
5035
+
5036
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
5037
+ padding: 9px 10px 7px 10px !important;
5038
+ }
5039
+
5040
+ .sfsi_responsive_icon_preview .sfsi_icons_container a .sfsi_responsive_icon_item_container {
5041
+ /* white-space: nowrap;
5042
+ overflow: hidden;
5043
+ text-overflow: ellipsis;*/
5044
+ display: inline-block;
5045
+ }
5046
+
5047
+ .sfsi_right_info ul .sfsi_responsive_icon_option_li .options .field .sfsi_responsive_icons_icon_width input,
5048
+ .sfsi_right_info ul .sfsi_responsive_icon_option_li .options .field input {
5049
+ width: 75px !important;
5050
+ background: #ffffff;
5051
+ box-shadow: none;
5052
+ border: 1px solid rgb(221, 221, 221);
5053
+ border-radius: 0px;
5054
+ }
5055
+
5056
+ input[type="number"] {
5057
+ height: 46px !important;
5058
+ }
5059
+
5060
+ .tab6 .sfsi_inputSec span {
5061
+ display: inline-block;
5062
+ font-size: 18px;
5063
+ margin-left: 10px;
5064
+ vertical-align: middle;
5065
+ width: 200px;
5066
+ color: #5A6570;
5067
+ }
5068
+
5069
+ .tab6 .sfsi_responsive_icon_item_container {
5070
+ width: 300px;
5071
+ /* padding: 5px 10px; */
5072
+ display: inline-block;
5073
+ box-sizing: border-box !important;
5074
+ }
5075
+
5076
+ .tab6 .options select.styled {
5077
+ line-height: 46px;
5078
+ }
5079
+
5080
+ .tab6 .options select.styled {
5081
+ height: 46px;
5082
+ left: 0;
5083
+ line-height: 46px;
5084
+ position: absolute;
5085
+ top: 0;
5086
+ width: 213px;
5087
+ }
5088
+
5089
+ .tab6 .sfsi_responsive_icon_option_li span{
5090
+ margin-left: 0!important;
5091
+ }
5092
+
5093
+ .tab6 ul.sfsi_icn_listing8 li .sfsi_right_info {
5094
+ font-family: helveticaregular;
5095
+ float: left;
5096
+ }
5097
+ .sfsi_margin_top_0{
5098
+ margin-top: 0 !important;
5099
+ }
5100
+ .sfsi_responsive_icon_preview .sfsi_icons_container a{
5101
+ text-decoration: none;
5102
+ }
5103
+ .sfsi_small_button {
5104
+ line-height: 0px;
5105
+ height: unset;
5106
+ padding: 6px !important;
5107
+ }
5108
+ .sfsi_small_button span {
5109
+ margin-left: 10px;
5110
+ font-size: 16px;
5111
+ padding: 0px;
5112
+ line-height: 16px;
5113
+ vertical-align: -webkit-baseline-middle !important;
5114
+ margin-left: 10px;
5115
+ }
5116
+ .sfsi_small_button img {
5117
+ max-height: 16px !important;
5118
+ padding: 0px;
5119
+ line-height: 0px;
5120
+ vertical-align: -webkit-baseline-middle !important;
5121
+ }
5122
+ .sfsi_medium_button span {
5123
+ margin-left: 10px;
5124
+ font-size: 18px;
5125
+ padding: 0px;
5126
+ line-height: 16px;
5127
+ vertical-align: -webkit-baseline-middle !important;
5128
+ margin-left: 10px;
5129
+ }
5130
+ .sfsi_medium_button img {
5131
+ max-height: 16px !important;
5132
+ padding: 0px;
5133
+ line-height: 0px;
5134
+ vertical-align: -webkit-baseline-middle !important;
5135
+ }
5136
+ .sfsi_medium_button {
5137
+ line-height: 0px;
5138
+ height: unset;
5139
+ padding: 10px !important;
5140
+ }
5141
+
5142
+ .sfsi_medium_button span {
5143
+ margin-left: 10px;
5144
+ font-size: 18px;
5145
+ padding: 0px;
5146
+ line-height: 16px;
5147
+ vertical-align: -webkit-baseline-middle !important;
5148
+ margin-left: 10px;
5149
+ }
5150
+ .sfsi_medium_button img {
5151
+ max-height: 16px !important;
5152
+ padding: 0px;
5153
+ line-height: 0px;
5154
+ vertical-align: -webkit-baseline-middle !important;
5155
+ }
5156
+ .sfsi_medium_button {
5157
+ line-height: 0px;
5158
+ height: unset;
5159
+ padding: 10px !important;
5160
+ }
5161
+ .sfsi_large_button span {
5162
+ font-size: 20px;
5163
+ padding: 0px;
5164
+ line-height: 16px;
5165
+ vertical-align: -webkit-baseline-middle !important;
5166
+ display: inline;
5167
+ margin-left: 10px;
5168
+ }
5169
+ .sfsi_large_button img {
5170
+ max-height: 16px !important;
5171
+ padding: 0px;
5172
+ line-height: 0px;
5173
+ vertical-align: -webkit-baseline-middle !important;
5174
+ display: inline;
5175
+ }
5176
+ .sfsi_large_button {
5177
+ line-height: 0px;
5178
+ height: unset;
5179
+ padding: 13px !important;
5180
+ }
5181
+ .sfsi_responsive_icons_count{
5182
+ padding: 5px 10px;
5183
+ float: left !important;
5184
+ display: inline-block;
5185
+ margin-right: 0px;
5186
+ margin-top: 2px;
5187
+ }
5188
+
5189
+ .sfsi_responsive_icons_count h3{
5190
+ font-family: 'sans-serif' !important;
5191
+ font-weight: 900;
5192
+ font-size: 32px !important;
5193
+ line-height: 0px !important;
5194
+ padding: 0px;
5195
+ margin: 0px;
5196
+ }
5197
+
5198
+ .sfsi_responsive_icons_count h6{
5199
+ font-family: 'sans-serif' !important;
5200
+ font-weight: 900;
5201
+ padding: 0px;
5202
+ margin: 0px;
5203
+ }
5204
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
5205
+ text-decoration: none!important;
5206
+ border: 0!important;
5207
+ }
5208
+ .sfsi_responsive_with_counter_icons{
5209
+ width: calc(100% - 100px)!important;
5210
+ }
5211
+ .sfsiresponsive_icon_preview {
5212
+ padding: 0px 0 20px 0;
5213
+ min-width: 100%;
5214
+ }
5215
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
5216
+ padding: 12px 13px 9px 13px !important;
5217
+ }
5218
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
5219
+ padding: 9px 10px 7px 10px !important;
5220
+ }
5221
+ .sfsi_responsive_icons_count.sfsi_small_button {
5222
+ padding: 7px 6px !important;
5223
+ }
5224
+ .sfsi_responsive_icons_count.sfsi_small_button {
5225
+ padding: 7px 6px !important;
5226
+ margin-top: 2px;
5227
+ }
5228
+ .sfsi_responsive_icons_count.sfsi_small_button h6 {
5229
+ display: inline-block;
5230
+ font-size: 12px !important;
5231
+ vertical-align: middle;
5232
+ }
5233
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
5234
+ padding: 9px 10px 7px 10px !important;
5235
+ }
5236
+ .sfsi_responsive_icons_count.sfsi_medium_button h3 {
5237
+ font-size: 21px !important;
5238
+ vertical-align: top;
5239
+ line-height: 8px !important;
5240
+ margin: 0px 0px 12px 0px !important;
5241
+ font-family: 'sans-serif' !important;
5242
+ font-weight: 900;
5243
+ padding: 0px;
5244
+ }
5245
+ .sfsi_esponsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
5246
+ margin: 0px 0px 15px 0px !important;
5247
+ }
5248
+ .sfsi_responsive_icons_count.sfsi_large_button h3 {
5249
+ font-size: 26px !important;
5250
+ vertical-align: top;
5251
+ line-height: 6px !important;
5252
+ }
5253
+
5254
+ .sfsi_responsive_icons_count h3 {
5255
+ font-family: 'sans-serif' !important;
5256
+ font-weight: 900;
5257
+ padding: 0px;
5258
+ }
5259
+
5260
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
5261
+ font-size: 20px !important;
5262
+ display: inline-block;
5263
+ vertical-align: middle;
5264
+ }
5265
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
5266
+ margin: 0px !important;
5267
+ }
5268
+ .sfsi_responsive_icons_count h3 {
5269
+ font-family: 'sans-serif' !important;
5270
+ font-weight: 900;
5271
+ line-height: 0px !important;
5272
+ padding: 0px;
5273
+ margin: 0px;
5274
+ }
5275
+ #accordion .ui-state-active, #accordion1 .ui-state-active, #accordion2 .ui-state-active{
5276
+ background: #d22b30 url(../images/arrow.png) right -105px no-repeat !important;
5277
+ color: #eee !important;
5278
+ border: 0;
5279
+ }
5280
+
5281
+ #accordion .ui-state-hover, #accordion1 .ui-state-hover, #accordion2 .ui-state-hover {
5282
+ background: #d22b30 url(../images/arrow.png) right -105px no-repeat !important;
5283
+ color: #eee !important;
5284
+ }
5285
+
5286
+
5287
+ .sfsi_disable_radio .radio{
5288
+ background-position: 0px 0px !important;
5289
+ opacity: 0.3;
5290
+ }
5291
+ .sfsi_disable_radio .labelhdng4{
5292
+ opacity: 0.3;
5293
+ }
5294
+ #ui-id-6 .tab6{
5295
+ margin-left:10px!important;
5296
+ }
5297
+ #ui-id-6 .tab6 p.sfsi_border_left_0{
5298
+ margin-left:0 !important;
5299
+ padding-left:5px !important;
5300
+ }
5301
+ #ui-id-6 .tab6 .sfsi_toggleonlystndrshrng{
5302
+ border-left:0!important;
5303
+ }
5304
+ #ui-id-6 .tab6 .sfsi_toggleonlystndrshrng p{
5305
+ padding-left:0!important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5306
  }
css/sfsi-style.css CHANGED
@@ -1,3475 +1,3501 @@
1
- @charset "utf-8";
2
-
3
- @font-face {
4
- font-family: helveticabold;
5
- src: url(fonts/helvetica_bold_0-webfont.eot);
6
- src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
7
- font-weight: 400;
8
- font-style: normal;
9
- }
10
-
11
- @font-face {
12
- font-family: helveticaregular;
13
- src: url(fonts/helvetica_0-webfont.eot);
14
- src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
15
- font-weight: 400;
16
- font-style: normal;
17
- }
18
-
19
- @font-face {
20
- font-family: helveticaneue-light;
21
- src: url(fonts/helveticaneue-light.eot);
22
- src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'), url(fonts/helveticaneue-light.woff) format('woff'), url(fonts/helveticaneue-light.ttf) format('truetype'), url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
23
- font-weight: 400;
24
- font-style: normal;
25
- }
26
-
27
- body {
28
- margin: 0;
29
- padding: 0;
30
- }
31
-
32
- .clear {
33
- clear: both;
34
- }
35
-
36
- .space {
37
- clear: both;
38
- padding: 30px 0 0;
39
- width: 100%;
40
- float: left;
41
- }
42
-
43
- .like_txt {
44
- margin: 30px 0 0;
45
- padding: 0;
46
- color: #12a252;
47
- font-family: helveticaregular;
48
- font-size: 20px;
49
- line-height: 20px;
50
- text-align: center;
51
- }
52
-
53
- .like_txt a {
54
- color: #12a252;
55
- }
56
-
57
- .sfsibeforpstwpr iframe,
58
- .sfsiaftrpstwpr iframe {
59
- max-width: none;
60
- }
61
-
62
- .sfwp_fivestar_ul li {
63
- display: block;
64
- padding-right: 20px;
65
- }
66
-
67
- .shwthmbfraftr {
68
- margin-top: 5px !important
69
- }
70
-
71
- label.toglpstpgsbttl {
72
- float: left;
73
- margin-top: 5px !important
74
- }
75
-
76
- .tab_3_icns.shwthmbfraftr .cstmdisplaysharingtxt {
77
- float: left;
78
- }
79
-
80
- .tab6 ul.enough_waffling.sfsi_dsplyatend {
81
- width: 24%;
82
- float: left;
83
- }
84
-
85
- .tab4 ul.like_icon {
86
- margin: 0;
87
- padding: 20px 0 0;
88
- list-style: none;
89
- text-align: center;
90
- }
91
-
92
- .tab4 ul.like_icon li {
93
- margin: 0;
94
- padding: 0;
95
- list-style: none;
96
- display: inline-block;
97
- }
98
-
99
- .tab4 ul.like_icon li span {
100
- margin: 0;
101
- width: 54px;
102
- display: block;
103
- background: url(../images/count_bg.png) no-repeat;
104
- height: 24px;
105
- overflow: hidden;
106
- padding: 10px 2px 2px;
107
- font-size: 17px;
108
- text-align: center;
109
- line-height: 24px;
110
- color: #5a6570;
111
- }
112
-
113
- .tab4 ul.like_icon li a {
114
- color: #5a6570;
115
- text-decoration: none;
116
- }
117
-
118
- .tab4 ul.enough_waffling {
119
- margin: 0;
120
- padding: 25px 0 27px;
121
- list-style: none;
122
- text-align: center;
123
- }
124
-
125
- .tab4 ul.enough_waffling li {
126
- margin: 0 22px;
127
- padding: 0;
128
- list-style: none;
129
- display: inline-block;
130
- }
131
-
132
- .tab4 ul.enough_waffling li span {
133
- float: left;
134
- }
135
-
136
- .tab4 ul.enough_waffling li label {
137
- margin: 0 0 0 20px;
138
- float: left;
139
- font-family: helveticaregular;
140
- font-size: 18px;
141
- font-weight: 400;
142
- text-align: center;
143
- line-height: 38px;
144
- color: #5a6570;
145
- }
146
-
147
- .sfsi_mainContainer .checkbox {
148
- width: 31px;
149
- height: 31px;
150
- background: url(../images/check_bg.jpg) no-repeat;
151
- display: inherit;
152
- }
153
-
154
- .sfsi_mainContainer .radio {
155
- width: 40px;
156
- height: 40px;
157
- background: url(../images/radio_bg.png) no-repeat;
158
- display: inherit;
159
- }
160
-
161
- .sfsi_mainContainer .select {
162
- width: 127px;
163
- height: 47px;
164
- font-size: 17px;
165
- background: url(../images/select_bg.jpg) no-repeat;
166
- display: block;
167
- padding-left: 16px;
168
- line-height: 49px;
169
- }
170
-
171
- .sfsi_mainContainer .line {
172
- background: #eaebee;
173
- height: 1px;
174
- font-size: 0;
175
- margin: 15px 0 0;
176
- clear: both;
177
- width: 100%;
178
- float: left;
179
- }
180
-
181
- .specify_counts {
182
- display: block;
183
- margin-top: 15px;
184
- padding-top: 15px;
185
- clear: both;
186
- width: 100%;
187
- float: left;
188
- border-top: 1px solid #eaebee;
189
- }
190
-
191
- .specify_counts .radio_section {
192
- width: 30px;
193
- float: left;
194
- margin: 12px 10px 0 0;
195
- }
196
-
197
- .specify_counts .social_icon_like {
198
- width: 54px;
199
- float: left;
200
- margin: 0 15px 0 0;
201
- }
202
-
203
- .specify_counts .social_icon_like ul {
204
- margin: 0;
205
- padding: 0;
206
- list-style: none;
207
- text-align: center;
208
- }
209
-
210
- .specify_counts .social_icon_like li {
211
- margin: 0;
212
- padding: 0;
213
- list-style: none;
214
- display: inline-block;
215
- }
216
-
217
- .specify_counts .social_icon_like li span {
218
- margin: 0;
219
- width: 54px;
220
- display: block;
221
- background: url(../images/count_bg.jpg) no-repeat;
222
- height: 24px;
223
- overflow: hidden;
224
- padding: 10px 2px 2px;
225
- font-family: helveticaregular;
226
- font-size: 16px;
227
- text-align: center;
228
- line-height: 24px;
229
- color: #5a6570;
230
- }
231
-
232
- .specify_counts .social_icon_like li a {
233
- color: #5a6570;
234
- text-decoration: none;
235
- }
236
-
237
- .specify_counts .listing {
238
- width: 88%;
239
- margin-top: -5px;
240
- display: inherit;
241
- float: left;
242
- }
243
-
244
- .specify_counts .listing ul {
245
- margin: 0;
246
- padding: 0;
247
- list-style: none;
248
- text-align: left;
249
- }
250
-
251
- .specify_counts .listing li {
252
- margin: 15px 0 0;
253
- padding: 0;
254
- list-style: none;
255
- clear: both;
256
- line-height: 39px;
257
- font-size: 17px;
258
- }
259
-
260
- .specify_counts .listing li span {
261
- float: left;
262
- margin-right: 20px;
263
- }
264
-
265
- .specify_counts .listing li .input {
266
- background: #e5e5e5;
267
- box-shadow: 2px 2px 3px #dcdcdc inset;
268
- border: 0;
269
- padding: 10px;
270
- margin-left: 25px;
271
- }
272
-
273
- .specify_counts .listing li .input_facebook {
274
- width: 288px;
275
- background: #e5e5e5;
276
- box-shadow: 2px 2px 3px #dcdcdc inset;
277
- border: 0;
278
- padding: 10px;
279
- margin-left: 16px;
280
- }
281
-
282
- .save_button {
283
- width: 450px;
284
- padding-top: 30px;
285
- clear: both;
286
- margin: auto;
287
- }
288
-
289
- .save_button a {
290
- background: #12a252;
291
- text-align: center;
292
- font-size: 23px;
293
- color: #FFF !important;
294
- display: block;
295
- padding: 11px 0;
296
- text-decoration: none;
297
- }
298
-
299
- .save_button a:hover {
300
- background: #079345
301
- }
302
-
303
- .tab5 ul.share_icon_order {
304
- margin: 0;
305
- padding: 0;
306
- list-style: none;
307
- text-align: left;
308
- }
309
-
310
- .tab5 ul.share_icon_order li {
311
- margin: 22px 6px 0 0;
312
- padding: 0;
313
- list-style: none;
314
- float: left;
315
- line-height: 37px;
316
- }
317
-
318
- .tab5 ul.share_icon_order li:last-child {
319
- margin: 22px 0 0 3px;
320
- }
321
-
322
- .tab5 .row {
323
- border-top: 1px solid #eaebee;
324
- margin-top: 25px;
325
- padding-top: 15px;
326
- clear: both;
327
- display: block;
328
- width: 100%;
329
- float: left;
330
- font-family: helveticaregular;
331
- line-height: 42px;
332
- }
333
-
334
- .tab5 .icons_size {
335
- position: relative;
336
- }
337
-
338
- .tab5 .icons_size span {
339
- margin-right: 18px;
340
- display: block;
341
- float: left;
342
- font-size: 18px;
343
- font-weight: 400;
344
- line-height: 46px;
345
- }
346
-
347
- .tab5 .icons_size span.last {
348
- margin-left: 55px;
349
- }
350
-
351
- .tab5 .icons_size input {
352
- width: 73px;
353
- background: #e5e5e5;
354
- box-shadow: 2px 2px 3px #dcdcdc inset;
355
- border: 0;
356
- padding: 13px 13px 12px;
357
- margin-right: 18px;
358
- float: left;
359
- display: block;
360
- }
361
-
362
- .tab5 .icons_size select.styled {
363
- position: absolute;
364
- left: 0;
365
- width: 135px;
366
- height: 46px;
367
- line-height: 46px;
368
- }
369
-
370
- .tab5 .icons_size .field {
371
- position: relative;
372
- float: left;
373
- display: block;
374
- margin-right: 20px;
375
- }
376
-
377
- .tab5 .icons_size ins {
378
- margin-right: 25px;
379
- float: left;
380
- font-size: 17px;
381
- font-weight: 400;
382
- text-decoration: none;
383
- }
384
-
385
- .tab5 .icons_size ins.leave_empty {
386
- line-height: 23px;
387
- }
388
-
389
- .tab5 .icons_size {
390
- padding-top: 15px;
391
- }
392
-
393
- .tab5 ul.enough_waffling {
394
- margin: -5px 0 0;
395
- padding: 0;
396
- list-style: none;
397
- text-align: center;
398
- }
399
-
400
- .tab5 .new_wind .row_onl ul.enough_waffling {
401
- /*margin: 14px 0 0 167px;*/
402
- margin: 20px 0 0 0;
403
- padding: 0;
404
- list-style: none;
405
- height: 38px;
406
- text-align: center;
407
- width: 61%;
408
- }
409
-
410
- .tab5 ul.enough_waffling li {
411
- margin: 0 22px;
412
- padding: 0;
413
- list-style: none;
414
- display: inline-block;
415
- float: left;
416
- }
417
-
418
- .tab5 ul.enough_waffling li span {
419
- float: left;
420
- }
421
-
422
- .tab5 ul.enough_waffling li label {
423
- margin: 0 0 0 20px;
424
- float: left;
425
- font-family: helveticaregular;
426
- font-size: 18px;
427
- font-weight: 400;
428
- text-align: center;
429
- line-height: 38px;
430
- color: #5a6570;
431
- }
432
-
433
- .sticking p {
434
- float: left;
435
- font-size: 18px !important;
436
- }
437
-
438
- .sticking p.list {
439
- width: 168px;
440
- }
441
-
442
- .sticking p.link {
443
- margin: 3px 0 0 12px;
444
- padding: 0 !important;
445
- float: left;
446
- }
447
-
448
- .sticking .float {
449
- margin-left: 188px;
450
- margin-top: 3px;
451
- float: left;
452
- font-size: 17px;
453
- }
454
-
455
- .sticking ul {
456
- margin: 0;
457
- padding: 30px 0 0;
458
- list-style: none;
459
- float: left;
460
- }
461
-
462
- .sticking a {
463
- color: #a4a9ad;
464
- }
465
-
466
- .sticking p {
467
- line-height: 19px !important;
468
- }
469
-
470
- .sticking .field {
471
- position: relative;
472
- float: left;
473
- display: block;
474
- margin-left: 20px;
475
- }
476
-
477
- .sticking .field .select {
478
- width: 206px;
479
- height: 47px;
480
- background: url(../images/select_bg1.jpg) no-repeat;
481
- display: block;
482
- padding-left: 10px;
483
- }
484
-
485
- .sticking .field select.styled {
486
- position: absolute;
487
- left: 0;
488
- top: 0;
489
- width: 211px;
490
- line-height: 46px;
491
- height: 46px;
492
- }
493
-
494
- .mouseover_field {
495
- width: 455px;
496
- float: left;
497
- font-size: 18px;
498
- margin-top: 10px;
499
- }
500
-
501
- .mouseover_field label {
502
- width: 125px;
503
- float: left;
504
- }
505
-
506
- .mouseover_field input {
507
- width: 256px;
508
- float: left;
509
- background: #e5e5e5;
510
- box-shadow: 2px 2px 3px #dcdcdc inset;
511
- border: 0;
512
- padding: 10px;
513
- }
514
-
515
- .pop_up_box {
516
- width: 474px;
517
- background: #FFF;
518
- box-shadow: 0 0 5px 3px #d8d8d8;
519
- margin: 200px auto;
520
- padding: 20px 25px 0px;
521
- font-family: helveticaregular;
522
- color: #5a6570;
523
- min-height: 250px;
524
- position: relative;
525
- }
526
-
527
- .pop_up_box h4,
528
- .pop_up_box_ex h4 {
529
- font-size: 20px;
530
- color: #5a6570;
531
- text-align: center;
532
- margin: 0;
533
- padding: 0;
534
- line-height: 22px;
535
- }
536
-
537
- .pop_up_box p,
538
- .pop_up_box_ex p {
539
- font-size: 17px;
540
- line-height: 28px;
541
- color: #5a6570;
542
- text-align: left;
543
- margin: 0;
544
- padding: 25px 0 0;
545
- font-family: helveticaregular;
546
- }
547
-
548
- .sfsi_popupcntnr {
549
- float: left;
550
- width: 100%
551
- }
552
-
553
- .sfsi_popupcntnr>h3 {
554
- color: #000;
555
- float: left;
556
- font-weight: 700;
557
- margin-bottom: 5px;
558
- width: 100%
559
- }
560
-
561
- ul.flwstep {
562
- float: left;
563
- width: 100%
564
- }
565
-
566
- ul.flwstep>li {
567
- color: #000;
568
- font-size: 16px;
569
- margin: 5px;
570
- }
571
-
572
- .upldbtn {
573
- float: left;
574
- text-align: center;
575
- width: 100%
576
- }
577
-
578
- .upload_butt {
579
- background-color: #12a252;
580
- border: none;
581
- color: #fff;
582
- font-weight: 700;
583
- margin-top: 10px;
584
- padding: 7px 22px;
585
- width: auto;
586
- cursor: pointer;
587
- font-size: 19px;
588
- }
589
-
590
- .pop_up_box .button {
591
- background: #12a252;
592
- font-size: 22px;
593
- line-height: 24px;
594
- color: #5a6570;
595
- text-align: center;
596
- min-height: 80px;
597
- margin-top: 32px;
598
- box-shadow: none;
599
- }
600
-
601
- .pop_up_box .button:hover {
602
- box-shadow: none !important;
603
- }
604
-
605
- .pop_up_box .button a.activate {
606
- padding: 0px 0;
607
- }
608
-
609
- .pop_up_box a,
610
- .pop_up_box_ex a {
611
- color: #a4a9ad;
612
- font-size: 20px;
613
- text-decoration: none;
614
- text-align: center;
615
- display: inline-block;
616
- margin-top: 18px;
617
- width: 100%;
618
- }
619
-
620
- .pop_up_box .upload {
621
- width: 100%;
622
- float: left;
623
- text-align: left;
624
- margin-top: 15px;
625
- height: 46px;
626
- }
627
-
628
- .pop_up_box .upload label {
629
- width: 135px;
630
- float: left;
631
- line-height: 45px;
632
- font-size: 18px;
633
- font-family: helveticaregular;
634
- text-align: left;
635
- }
636
-
637
- .pop_up_box .upload input[type=text] {
638
- width: 248px;
639
- float: left;
640
- background: #e5e5e5;
641
- box-shadow: 2px 2px 3px #dcdcdc inset;
642
- border: 0;
643
- padding: 0 10px;
644
- font-size: 16px;
645
- height: 44px;
646
- text-align: left;
647
- color: #5a6570;
648
- font-family: helveticaregular;
649
- }
650
-
651
- .pop_up_box .upload input.upload_butt {
652
- width: 100px;
653
- background: #12a252;
654
- box-shadow: 0 0 0;
655
- border: 0;
656
- text-align: center;
657
- font-size: 18px;
658
- color: #fff;
659
- font-family: helveticaregular;
660
- height: 45px;
661
- right: 32px;
662
- top: 71px;
663
- position: absolute;
664
- }
665
-
666
- .pop_up_box .upload a {
667
- color: #12a252;
668
- font-size: 18px;
669
- text-decoration: underline;
670
- font-family: helveticaregular;
671
- margin: 0 0 16px 140px;
672
- }
673
-
674
- .pop_up_box a:hover,
675
- .pop_up_box_ex a:hover {
676
- color: #a4a9ad;
677
- }
678
-
679
- .inr_cont .fb_url {
680
- clear: both;
681
- }
682
-
683
- .inr_cont .fb_url .checkbox,
684
- .inr_cont .fb_url input.add,
685
- .inr_cont .fb_url label,
686
- .inr_cont .fb_url lable {
687
- float: left;
688
- }
689
-
690
- .inr_cont .fb_url input.add {
691
- margin-left: 19px;
692
- }
693
-
694
- .inr_cont .fb_url .checkbox {
695
- margin: 6px 0 0;
696
- }
697
-
698
- .inr_cont .fb_url label {
699
- /*line-height: 41px; margin: 0 0 0 15px;*/
700
- line-height: 22px;
701
- margin: 10px 0 0 15px;
702
- font-size: 17px;
703
- }
704
-
705
- .inr_cont textarea.add_txt {
706
- resize: none;
707
- margin: 0 0 0 19px !important;
708
- height: 60px;
709
- }
710
-
711
- .tab2 .inr_cont textarea.add_txt {
712
- width: 382px !important;
713
- height: 90px;
714
- overflow: hidden;
715
- }
716
-
717
- .tab2 .inr_cont input.add {
718
- width: 417px;
719
- }
720
-
721
- .red_txt,
722
- .tab2 .red_txt {
723
- color: #ef4745 !important;
724
- text-align: center !important;
725
- padding-top: 5px !important;
726
- }
727
-
728
- .green_txt {
729
- color: #12A252 !important;
730
- text-align: center !important;
731
- padding-top: 5px !important;
732
- }
733
-
734
- .red_txt {
735
- color: #f80000 !important;
736
- text-align: center !important;
737
- padding-top: 5px !important;
738
- }
739
-
740
- .linked_tab_2 .fb_url label {
741
- /* width: 32%;*/
742
- /* width: 26.99%;*/
743
- width: 22%;
744
- }
745
-
746
- .twt_tab_2 label {
747
- width: 18%
748
- }
749
-
750
- .bdr_top {
751
- border-top: none !important;
752
- }
753
-
754
- .linked_tab_2 .fb_url input.link_dbl {
755
- margin-bottom: 6px;
756
- }
757
-
758
- .tab3 {
759
- overflow: hidden;
760
- }
761
-
762
- .tab3 .row {
763
- /*border-top: 1px solid #EAEBEE;*/
764
- padding: 25px 0;
765
- clear: both;
766
- overflow: hidden;
767
- }
768
-
769
- .tab3 ul.tab_3_list {
770
- overflow: hidden;
771
- margin: 4px 0 11px;
772
- }
773
-
774
- ul.tab_3_list li {
775
- background: url(../images/tab_3_list_bg.jpg) 13px 7px no-repeat;
776
- padding: 0 0 0 30px;
777
- color: #778088;
778
- font-family: helveticaregular;
779
- font-size: 17px;
780
- margin-bottom: 4px;
781
- }
782
-
783
- .tab5 ul.tab_3_list li {
784
- background: url(../images/tab_3_list_bg.jpg) 13px 18px no-repeat;
785
- }
786
-
787
- .tab3 .row h3 {
788
- /* margin: 0 0 20px;*/
789
- margin: 20px 0 0px;
790
- color: #414951;
791
- font-family: helveticabold;
792
- font-size: 20px;
793
- }
794
-
795
- ul.tab_3_icns {
796
- list-style: none;
797
- margin: 10px 0 0;
798
- overflow: hidden;
799
- }
800
-
801
- ul.tab_3_icns li {
802
- width: 100%;
803
- margin: 0 0 21px;
804
- float: left;
805
- }
806
-
807
- ul.tab_3_icns label {
808
- float: left;
809
- line-height: 42px;
810
- /*margin: 0 20px;*/
811
- color: #69737C;
812
- font-size: 18px;
813
- font-family: helveticaregular;
814
- min-width: 125px;
815
- }
816
-
817
- ul.tab_3_icns li .icns_tab_3,
818
- ul.tab_3_icns li .radio {
819
- float: left;
820
- }
821
-
822
- .tab3 .sub_row h4 {
823
- color: #a4a9ad !important;
824
- }
825
-
826
- .tab3 .sub_row p {
827
- padding-top: 18px !important;
828
- clear: both;
829
- overflow: hidden;
830
- }
831
-
832
- .sub_row .sub_sub_box p {
833
- padding-top: 18px !important;
834
- }
835
-
836
- .tab3 .sub_row .checkbox {
837
- float: left;
838
- margin-top: 4px;
839
- }
840
-
841
- .tab3 .sub_row .sub_sub_box {
842
- width: 80%;
843
- margin: 7px 0 15px 10%;
844
- float: left;
845
- }
846
-
847
- .tab3 .sub_row input.smal_inpt {
848
- width: 73px;
849
- background: #e5e5e5;
850
- box-shadow: 2px 2px 3px #dcdcdc inset;
851
- border: 0;
852
- padding: 10px;
853
- float: left;
854
- margin-left: 10px;
855
- }
856
-
857
- .tab3 .sub_row .drop_lst {
858
- border: 1px solid #d6d6d6;
859
- font-size: 16px;
860
- color: #5a6570;
861
- width: 120px;
862
- }
863
-
864
- .tab3 .first_row,
865
- .tab3 .first_row p,
866
- .tab3 .first_row p .radio,
867
- .tab3 .first_row p label {
868
- float: left;
869
- }
870
-
871
- .tab3 .first_row {
872
- width: 90%;
873
- float: left;
874
- }
875
-
876
- .tab3 .first_row p {
877
- padding: 0 !important;
878
- }
879
-
880
- .tab3 .first_row p label {
881
- line-height: 44px;
882
- margin: 0 10px;
883
- }
884
-
885
- .tab3 .first_row p:last-child {
886
- margin-left: 27%
887
- }
888
-
889
- .tab3 .tab_1_sav {
890
- padding-top: 20px !important;
891
- margin: 10px auto 20px;
892
- }
893
-
894
- .suc_msg {
895
- background: #12A252;
896
- color: #FFF;
897
- display: none;
898
- font-size: 23px;
899
- padding: 10px;
900
- text-align: left;
901
- text-decoration: none;
902
- }
903
-
904
- .error_msg {
905
- background: #D22B30;
906
- color: #FFF;
907
- display: none;
908
- font-size: 23px;
909
- padding: 10px;
910
- text-align: left;
911
- text-decoration: none;
912
- }
913
-
914
- .fileUPInput {
915
- cursor: pointer;
916
- position: relative;
917
- top: -43px;
918
- right: 0;
919
- z-index: 99;
920
- height: 42px;
921
- font-size: 5px;
922
- opacity: 0;
923
- -moz-opacity: 0;
924
- filter: alpha(opacity=0);
925
- width: 100%
926
- }
927
-
928
- .inputWrapper {
929
- height: 20px;
930
- width: 50px;
931
- overflow: hidden;
932
- position: relative;
933
- cursor: pointer;
934
- }
935
-
936
- .custom-txt {
937
- background: none !important;
938
- padding-left: 2px !important;
939
- }
940
-
941
- .custom-img {
942
- float: left;
943
- margin-left: 20px;
944
- }
945
-
946
- .loader-img {
947
- float: left;
948
- margin-left: -70px;
949
- display: none;
950
- }
951
-
952
- .pop-overlay {
953
- position: fixed;
954
- top: 0;
955
- left: 0;
956
- width: 100%;
957
- height: 100%;
958
- backgound-color: #d3d3d3;
959
- z-index: 10;
960
- padding: 20px;
961
- display: none;
962
- }
963
-
964
- .fb-overlay {
965
- position: fixed;
966
- top: 0;
967
- left: 0;
968
- width: 100%;
969
- height: 100%;
970
- backgound-color: #d3d3d3;
971
- z-index: -1000;
972
- padding: 20px;
973
- opacity: 0;
974
- display: block;
975
- }
976
-
977
- .inputError {
978
- border: 1px solid #f80000 !important;
979
- }
980
-
981
- .sfsicloseBtn {
982
- position: absolute;
983
- top: 0;
984
- right: 0;
985
- cursor: pointer;
986
- }
987
-
988
- .top_arow {
989
- background: url(../images/top_aro.png) no-repeat;
990
- position: absolute;
991
- top: -29px;
992
- left: 38%;
993
- width: 33px;
994
- height: 29px;
995
- backgoround-color: #fff;
996
- }
997
-
998
- .sfsi_tool_tip_2 .top_arow .sfsi_inside,
999
- .top_arow .sfsi_inside {
1000
- float: left;
1001
- }
1002
-
1003
- .sfsi_tool_tip_2 .tool_tip>img,
1004
- .tool_tip>img {
1005
- display: inline-block;
1006
- margin-right: 4px;
1007
- float: left;
1008
- }
1009
-
1010
- .norm_row {
1011
- float: left;
1012
- min-width: 25px;
1013
- }
1014
-
1015
- .norm_row a {
1016
- border: none;
1017
- display: inline-block;
1018
- position: relative;
1019
- float: left;
1020
- }
1021
-
1022
- .sfsi_tool_tip_2 a {
1023
- min-height: 0 !important;
1024
- }
1025
-
1026
- .sfsi_widget {
1027
- min-height: 55px;
1028
- }
1029
-
1030
- .sfsi_widget a img {
1031
- box-shadow: none !important;
1032
- outline: 0;
1033
- }
1034
-
1035
- .sfsi_wicons {
1036
- display: inline-block;
1037
- color: #000;
1038
- }
1039
-
1040
- .sel-active {
1041
- background-color: #f7941d;
1042
- }
1043
-
1044
- .sfsi_outr_div .close {
1045
- position: absolute;
1046
- right: 18px;
1047
- top: 18px;
1048
- }
1049
-
1050
- .sfsi_outr_div h2 {
1051
- color: #778088;
1052
- font-family: helveticaregular;
1053
- font-size: 26px;
1054
- margin: 0 0 9px;
1055
- padding: 0;
1056
- text-align: center;
1057
- font-weight: 400;
1058
- }
1059
-
1060
- .sfsi_outr_div ul li a {
1061
- color: #5A6570;
1062
- text-decoration: none;
1063
- }
1064
-
1065
- .sfsi_outr_div ul li {
1066
- display: inline-block;
1067
- list-style: none;
1068
- margin: 0;
1069
- padding: 0;
1070
- float: none;
1071
- }
1072
-
1073
- .expanded-area {
1074
- display: none;
1075
- }
1076
-
1077
- .sfsi_wicons a {
1078
- -webkit-transition: all .2s ease-in-out;
1079
- -moz-transition: all .2s ease-in-out;
1080
- -o-transition: all .2s ease-in-out;
1081
- -ms-transition: all .2s ease-in-out;
1082
- }
1083
-
1084
- .scale,
1085
- .scale-div {
1086
- -webkit-transform: scale(1.1);
1087
- -moz-transform: scale(1.1);
1088
- -o-transform: scale(1.1);
1089
- transform: scale(1.1);
1090
- }
1091
-
1092
- .sfsi_Sicons {
1093
- float: left;
1094
- }
1095
-
1096
- .sfsi_Sicons .sf_subscrbe {
1097
- margin: 2px 3px 3px 0;
1098
- line-height: 20px;
1099
- }
1100
-
1101
- .sfsi_Sicons .sf_fb {
1102
- margin: 0 4px 0 5px;
1103
- line-height: 20px;
1104
- }
1105
-
1106
- .sfsi_Sicons .sf_twiter {
1107
- margin: 2px 7px 0 4px;
1108
- line-height: 17px;
1109
- }
1110
-
1111
- .sfsi_Sicons.left .sf_subscrbe {
1112
- margin: 2px 8px 3px 0;
1113
- }
1114
-
1115
- .sfsi_Sicons.left .sf_fb {
1116
- margin: 0 8px 0 0;
1117
- }
1118
-
1119
- .sfsi_Sicons.left .sf_twiter {
1120
- margin: 2px 7px 0 0;
1121
- }
1122
-
1123
- .sfsi_Sicons.right .sf_subscrbe {
1124
- margin: 2px 0 3px;
1125
- }
1126
-
1127
- .sfsi_Sicons.right .sf_fb {
1128
- margin: 0 0 0 7px;
1129
- }
1130
-
1131
- .sfsi_Sicons.right .sf_twiter {
1132
- margin: 2px 0 0 8px;
1133
- }
1134
-
1135
- .sfsi_Sicons .sf_subscrbe,
1136
- .sfsi_Sicons .sf_twiter {
1137
- position: relative;
1138
- width: 75px;
1139
- }
1140
-
1141
- .sfsi_Sicons .sf_twiter iframe {
1142
- margin: 0px;
1143
- height: 20px !important;
1144
- overflow: visible !important;
1145
- }
1146
-
1147
- .sfsi_Sicons .sf_twiter iframe #widget {
1148
- overflow: visible !important;
1149
- }
1150
-
1151
- .sfsi_Sicons .sf_subscrbe a {
1152
- width: auto;
1153
- float: left;
1154
- border: medium none;
1155
- padding-top: 0px;
1156
- }
1157
-
1158
- .sfsi_Sicons .sf_subscrbe a:focus {
1159
- outline: medium none;
1160
- }
1161
-
1162
- .sfsi_Sicons .sf_subscrbe a img {
1163
- width: 65px;
1164
- float: left;
1165
- height: 20px !important;
1166
- }
1167
-
1168
- .sfsi_Sicons .sf_fb {
1169
- position: relative;
1170
- width: 75px;
1171
- }
1172
-
1173
- .sfsi_Sicons .fb_iframe_widget {
1174
- float: left;
1175
- /*min-width: 98px;*/
1176
- width: 73px;
1177
- margin: 2px 0 0;
1178
- }
1179
-
1180
- .sfsi_pop_up .button a:hover {
1181
- color: #fff;
1182
- }
1183
-
1184
- .sfsi_pop_up .button:hover {
1185
- background: #12a252;
1186
- color: #fff;
1187
- border: none;
1188
- }
1189
-
1190
- ul.icn_listing li .right_info a {
1191
- outline: 0;
1192
- font-family: helveticaregular;
1193
- }
1194
-
1195
- .upload_pop_up .upload_butt {
1196
- line-height: 27px;
1197
- margin-left: 6px;
1198
- }
1199
-
1200
- .drop_lsts {
1201
- left: 220px;
1202
- position: relative;
1203
- top: -40px;
1204
- }
1205
-
1206
- .drop_lsts .styled {
1207
- top: -42px;
1208
- width: 127px;
1209
- height: 33px;
1210
- }
1211
-
1212
- .drop_lsts span {
1213
- line-height: 50px;
1214
- }
1215
-
1216
- .drag_drp {
1217
- left: 11px;
1218
- position: relative;
1219
- top: 38px;
1220
- font-size: 17px;
1221
- }
1222
-
1223
- .listing ul li label {
1224
- width: 224px;
1225
- float: left;
1226
- }
1227
-
1228
- .row_onl {
1229
- width: 100%;
1230
- float: left;
1231
- }
1232
-
1233
- #sfsi_Show_popupOn_PageIDs option.sel-active {
1234
- background: #f7941d;
1235
- }
1236
-
1237
- .sfsi_inside div iframe {
1238
- float: left;
1239
- margin: 0;
1240
- }
1241
-
1242
- .sfsi_inside div #___plus_0,
1243
- .sfsi_inside div #___plusone_0 {
1244
- height: 27px;
1245
- }
1246
-
1247
- .sfsi_outr_div li {
1248
- float: left;
1249
- }
1250
-
1251
- .sfsi_tool_tip_2 .sfsi_inside div {
1252
- min-height: 0;
1253
- }
1254
-
1255
- #___plus_1>iframe {
1256
- height: 30px;
1257
- }
1258
-
1259
- .main_contant h1 {
1260
- margin: 0 0 19px;
1261
- }
1262
-
1263
- .main_contant p {
1264
- margin: 0 0 26px;
1265
- }
1266
-
1267
- .main_contant p>a {
1268
- color: #1a1d20;
1269
- text-decoration: underline;
1270
- }
1271
-
1272
- .tab1 .gary_bg {
1273
- background: #f1f1f1;
1274
- }
1275
-
1276
- #accordion {
1277
- margin-top: 25px;
1278
- }
1279
-
1280
- .main_contant p>a,
1281
- .tab1 p span {
1282
- font-family: helveticabold;
1283
- }
1284
-
1285
- .wapper .ui-accordion-header-active {
1286
- margin-top: 20px !important;
1287
- }
1288
-
1289
- .wapper .tab2 {
1290
- padding: 20px 33px 12px 34px !important;
1291
- }
1292
-
1293
- .wapper .tab2 p {
1294
- margin-bottom: 6px;
1295
- }
1296
-
1297
- .tab2 .twt_tab_2 label {
1298
- width: 175px;
1299
- }
1300
-
1301
- .tab2 .twt_fld {
1302
- margin: 16px 0 23px;
1303
- float: left;
1304
- }
1305
-
1306
- .tab2 .twt_fld_2 {
1307
- margin: 0 0 12px;
1308
- float: left;
1309
- }
1310
-
1311
- .tab2 .utube_inn {
1312
- padding-bottom: 2px;
1313
- float: left;
1314
- }
1315
-
1316
- .tab2 .utube_inn label {
1317
- max-width: 90%
1318
- }
1319
-
1320
- .tab2 .utube_inn label span {
1321
- font-family: helveticabold;
1322
- }
1323
-
1324
- .tab2 .inr_cont p>a {
1325
- font-family: helveticaneue-light;
1326
- color: #778088;
1327
- text-decoration: underline;
1328
- }
1329
-
1330
- .pinterest_section .inr_cont .pint_url {
1331
- float: left;
1332
- padding-top: 6px;
1333
- clear: both;
1334
- }
1335
-
1336
- .pinterest_section .inr_cont .add {
1337
- width: 417px !important;
1338
- }
1339
-
1340
- .linkedin_section .link_1,
1341
- .linkedin_section .link_2,
1342
- .linkedin_section .link_3,
1343
- .linkedin_section .link_4 {
1344
- float: left;
1345
- width: 100%
1346
- }
1347
-
1348
- .linkedin_section .link_1 input.add,
1349
- .linkedin_section .link_2 input.add,
1350
- .linkedin_section .link_3 input.add,
1351
- .linkedin_section .link_4 input.add {
1352
- width: 417px;
1353
- }
1354
-
1355
- .linkedin_section .link_1 {
1356
- margin-bottom: 7px;
1357
- }
1358
-
1359
- .linkedin_section .link_2 {
1360
- margin-bottom: 12px;
1361
- }
1362
-
1363
- .linkedin_section .link_3,
1364
- .linkedin_section .link_4 {
1365
- margin-bottom: 13px;
1366
- }
1367
-
1368
- .tab2 .linkedin_section .link_4 {
1369
- margin-bottom: 0;
1370
- }
1371
-
1372
- ul.tab_3_list li span {
1373
- font-family: helveticaregular;
1374
- }
1375
-
1376
- #accordion .tab4 h4,
1377
- #accordion1 .tab4 h4 {
1378
- color: #414951;
1379
- font-size: 20px;
1380
- }
1381
-
1382
- .specify_counts .listing li .input {
1383
- width: 73px;
1384
- }
1385
-
1386
- .sfsi_fbpgidwpr {
1387
- width: 160px;
1388
- float: left;
1389
- font-weight: bold;
1390
- font-size: 17px;
1391
- color: #000000;
1392
- }
1393
-
1394
- .sfsi_fbpgiddesc {
1395
- font-weight: normal;
1396
- width: 42%;
1397
- font-size: 14px;
1398
- color: #888888;
1399
- padding: 4px 0 0 60px;
1400
- }
1401
-
1402
- .specify_counts .listing li .input.mypginpt {
1403
- width: 288px;
1404
- }
1405
-
1406
- .tab3 .Shuffle_auto .sub_sub_box .tab_3_option {
1407
- padding-top: 0 !important;
1408
- margin-bottom: 10px !important;
1409
- }
1410
-
1411
- .tab4 {
1412
- padding-top: 35px !important;
1413
- }
1414
-
1415
- .tab4 .save_button {
1416
- padding-top: 46px;
1417
- }
1418
-
1419
- .tab5 {
1420
- padding-top: 31px !important;
1421
- }
1422
-
1423
- .tab7 {
1424
- padding-top: 28px !important;
1425
- }
1426
-
1427
- .tab5 .row_onl {
1428
- margin-top: 15px;
1429
- }
1430
-
1431
- .tab5 .sticking .link>a {
1432
- color: #a4a9ad;
1433
- text-decoration: underline;
1434
- }
1435
-
1436
- .tab5 .mouse_txt h4 {
1437
- /*margin-bottom: 8px!important;*/
1438
- padding-bottom: 30px !important;
1439
- }
1440
-
1441
- .tab5 .save_button {
1442
- padding-top: 54px;
1443
- }
1444
-
1445
- .tab7 .like_pop_box h2 {
1446
- font-family: helveticabold;
1447
- text-align: center;
1448
- color: #414951;
1449
- font-size: 26px;
1450
- }
1451
-
1452
- .tab1 ul.icn_listing li .right_info label:hover {
1453
- text-decoration: none !important;
1454
- }
1455
-
1456
- .tab1 ul.icn_listing li .right_info label.expanded-area {
1457
- clear: both;
1458
- float: left;
1459
- margin-top: 14px;
1460
- width: 100%;
1461
- }
1462
-
1463
- .tab7 .space {
1464
- margin-top: 14px;
1465
- }
1466
-
1467
- .tab7 .pop_up_show label {
1468
- font-family: helveticaregular !important;
1469
- }
1470
-
1471
- .tab7 .save_button {
1472
- padding-top: 78px;
1473
- }
1474
-
1475
- .like_txt a {
1476
- text-decoration: none;
1477
- font-family: helveticaregular;
1478
- }
1479
-
1480
- .bdr_btm_non {
1481
- border-bottom: none !important;
1482
- }
1483
-
1484
- .tab1 .tab_1_sav {
1485
- padding-top: 13px;
1486
- }
1487
-
1488
- #accordion .tab2 .facebook_section .inr_cont p.extra_sp,
1489
- #accordion1 .tab2 .facebook_section .inr_cont p.extra_sp {
1490
- padding-top: 7px;
1491
- }
1492
-
1493
- .tab2 .custom_section {
1494
- width: 100%
1495
- }
1496
-
1497
- .tab7 {
1498
- padding-bottom: 40px !important;
1499
- }
1500
-
1501
- .tab9 .save_button {
1502
- padding-top: 40px;
1503
- }
1504
-
1505
- .tab9 .save_button a {
1506
- padding: 16px 0;
1507
- }
1508
-
1509
- .tab2 .twitter_section .twt_fld input.add,
1510
- .tab2 .twitter_section .twt_fld_2 textarea.add_txt {
1511
- width: 464px !important;
1512
- }
1513
-
1514
- .tab2 .utube_inn .fb_url label span {
1515
- font-family: helveticaneue-light;
1516
- }
1517
-
1518
- .tab1 label,
1519
- .tab2 label,
1520
- .tab3 label,
1521
- .tab4 label,
1522
- .tab5 label,
1523
- .tab6 label,
1524
- .tab7 label,
1525
- .tab8 label {
1526
- cursor: default !important;
1527
- }
1528
-
1529
- .tab5 .new_wind h4 {
1530
- margin-bottom: 11px !important;
1531
- }
1532
-
1533
- .pop_up_box .fb_2 span {
1534
- height: 28px !important;
1535
- }
1536
-
1537
- .pop_up_box .sfsi_tool_tip_2 .fbb .fb_1 a {
1538
- margin-top: 0;
1539
- }
1540
-
1541
- .tab6 .social_icon_like1 ul li span {
1542
- margin-top: -1px;
1543
- }
1544
-
1545
- #sfpageLoad {
1546
- background: url(../images/ajax-loader.gif) 50% 50% no-repeat #F9F9F9;
1547
- height: 100%;
1548
- left: 160px;
1549
- opacity: 1;
1550
- position: fixed;
1551
- top: 0;
1552
- width: 92%;
1553
- z-index: 9999;
1554
- }
1555
-
1556
- .sfsi_tool_tip_2,
1557
- .tool_tip {
1558
- background: #FFF;
1559
- border: 1px solid #e7e7e7;
1560
- box-shadow: #e7e7e7 0 0 2px 1px;
1561
- display: block;
1562
- float: left;
1563
- margin: 0 0 0 -52px;
1564
- padding: 5px 14px 5px 14px;
1565
- position: absolute;
1566
- z-index: 10000;
1567
- border-bottom: #e5e5e5 solid 4px;
1568
- width: 100px;
1569
- }
1570
-
1571
- .sfsi_tool_tip_2 {
1572
- display: inline-table;
1573
- }
1574
-
1575
- .inerCnt,
1576
- .inerCnt:hover,
1577
- .inerCnt>a,
1578
- .inerCnt>a:hover,
1579
- .widget-area .widget a {
1580
- outline: 0;
1581
- }
1582
-
1583
- .sfsi_tool_tip_2_inr {
1584
- bottom: 90%;
1585
- left: 20%;
1586
- opacity: 0;
1587
- }
1588
-
1589
- .sfsi_tool_tip_2 .bot_arow {
1590
- background: url(../images/bot_tip_icn.png) no-repeat;
1591
- position: absolute;
1592
- bottom: -21px;
1593
- left: 50%;
1594
- width: 15px;
1595
- height: 21px;
1596
- margin-left: -5px;
1597
- }
1598
-
1599
- .sfsi_tool_tip_2 .top_big_arow {
1600
- position: absolute;
1601
- -webkit-transform: rotate(180deg);
1602
- -moz-transform: rotate(180deg);
1603
- -ms-transform: rotate(180deg);
1604
- -o-transform: rotate(180deg);
1605
- transform: rotate(180deg);
1606
- top: -21px;
1607
- left: 50%;
1608
- width: 15px;
1609
- height: 21px;
1610
- margin-right: -5px;
1611
- }
1612
-
1613
- .sfsi_tool_tip_2_inr .gpls_visit>a,
1614
- .sfsi_tool_tip_2_inr .prints_visit_1 a,
1615
- .sfsi_tool_tip_2_inr .utub_visit>a {
1616
- margin-top: 0;
1617
- }
1618
-
1619
- .sfsi_tool_tip_2_inr .linkin_1 a,
1620
- .sfsi_tool_tip_2_inr .linkin_2 a,
1621
- .sfsi_tool_tip_2_inr .linkin_3 a,
1622
- .sfsi_tool_tip_2_inr .linkin_4 a,
1623
- .sfsi_tool_tip_2_inr .prints_visit a {
1624
- margin: 0;
1625
- }
1626
-
1627
- .sfsiTlleftBig {
1628
- bottom: 121%;
1629
- left: 22%;
1630
- margin-left: -54%
1631
- }
1632
-
1633
- .sfsiTlleft {
1634
- bottom: 100%;
1635
- left: 50%;
1636
- margin-left: -66px;
1637
- margin-bottom: 2px;
1638
- }
1639
-
1640
- .sfsi_plc_btm {
1641
- bottom: auto;
1642
- top: 100%;
1643
- left: 50%;
1644
- margin-left: -63px;
1645
- margin-top: -6px;
1646
- margin-bottom: auto;
1647
- }
1648
-
1649
- .inerCnt {
1650
- position: relative;
1651
- z-index: inherit !important;
1652
- float: left;
1653
- width: 100%;
1654
- float: left;
1655
- }
1656
-
1657
- .sfsi_wicons {
1658
- margin-bottom: 30px;
1659
- position: relative;
1660
- padding-top: 5px;
1661
- }
1662
-
1663
- .norm_row .bot_no {
1664
- position: absolute;
1665
- padding: 1px 0;
1666
- font-size: 12px !important;
1667
- text-align: center;
1668
- line-height: 12px !important;
1669
- background: #fff;
1670
- border-radius: 5px;
1671
- left: 50%;
1672
- margin-left: -20px;
1673
- z-index: 9;
1674
- border: 1px solid #333;
1675
- top: 100%;
1676
- white-space: pre;
1677
- -webkit-box-sizing: border-box;
1678
- -moz-box-sizing: border-box;
1679
- box-sizing: border-box;
1680
- margin-top: 0px;
1681
- width: 40px;
1682
- }
1683
-
1684
- .norm_row .bot_no:before {
1685
- content: url(images/count_top_arow.png);
1686
- position: absolute;
1687
- height: 9px;
1688
- margin-left: -7.5px;
1689
- top: -10px;
1690
- left: 50%;
1691
- width: 15px;
1692
- }
1693
-
1694
- .bot_no.sfsiSmBtn {
1695
- font-size: 10px;
1696
- margin-top: 4px;
1697
- }
1698
-
1699
- .bot_no.sfsiSmBtn:before {
1700
- margin-left: -8px;
1701
- top: -9px;
1702
- }
1703
-
1704
- .norm_row .cbtn_vsmall {
1705
- font-size: 9px;
1706
- left: -28%;
1707
- top: 4px;
1708
- }
1709
-
1710
- .norm_row .cbtn_vsmall:before {
1711
- left: 31%;
1712
- top: -9px;
1713
- margin-left: -31%
1714
- }
1715
-
1716
- h2.optional {
1717
- font-family: helveticaregular;
1718
- font-size: 25px;
1719
- margin: 14px 0 19px;
1720
- color: #5a6570;
1721
- }
1722
-
1723
- .utube_tool_bdr .utub_visit {
1724
- margin: 9px 0 0;
1725
- height: 24px;
1726
- display: inline-block;
1727
- float: none;
1728
- }
1729
-
1730
- .utube_tool_bdr .utub_2 {
1731
- margin: 9px 0 0;
1732
- height: 24px;
1733
- width: 86px;
1734
- display: inline-block;
1735
- float: none;
1736
- }
1737
-
1738
- .printst_tool_bdr {
1739
- width: 79px;
1740
- }
1741
-
1742
- .printst_tool_bdr .prints_visit {
1743
- margin: 0 0 10px -22px;
1744
- }
1745
-
1746
- .printst_tool_bdr .prints_visit_1 {
1747
- margin: 0 0 0 -53px;
1748
- }
1749
-
1750
- .fb_tool_bdr {
1751
- width: 68px;
1752
- height: auto;
1753
- }
1754
-
1755
- .fb_tool_bdr .sfsi_inside {
1756
- text-align: center;
1757
- width: 100%;
1758
- float: left;
1759
- overflow: hidden;
1760
- }
1761
-
1762
- .fb_tool_bdr .sfsi_inside .icon1 {
1763
- /* margin: 0 0 -5px 0;*/
1764
- margin: 2px 0px 4px 0;
1765
- height: auto;
1766
- display: inline-block;
1767
- float: none;
1768
- width: 62px;
1769
- }
1770
-
1771
- .fb_tool_bdr .sfsi_inside .icon2 {
1772
- margin: 2px 0 3px 0 !important;
1773
- height: auto;
1774
- width: 53px;
1775
- display: inline-block;
1776
- overflow: hidden;
1777
- }
1778
-
1779
- .fb_tool_bdr .sfsi_inside .icon3 {
1780
- margin: 2px 0 2px 0;
1781
- height: auto;
1782
- width: 62px;
1783
- display: inline-block;
1784
- float: none;
1785
- }
1786
-
1787
- .fb_tool_bdr .sfsi_inside .fb_1,
1788
- .fb_tool_bdr .sfsi_inside .fb_2,
1789
- .fb_tool_bdr .sfsi_inside .fb_3 {
1790
- margin: 9px 0 0;
1791
- height: 25px;
1792
- }
1793
-
1794
- .printst_tool_bdr .sfsi_inside {
1795
- text-align: center;
1796
- float: left;
1797
- width: 100%
1798
- }
1799
-
1800
- .printst_tool_bdr .sfsi_inside .icon1 {
1801
- /* margin: 2px 0;*/
1802
- margin: 3px 0 3px 0;
1803
- /* height: 24px;*/
1804
- height: auto;
1805
- display: inline-block;
1806
- float: none;
1807
- width: 73px;
1808
- }
1809
-
1810
- .printst_tool_bdr .sfsi_inside .icon2 {
1811
- /* margin: 2px 0;*/
1812
- margin: 2px 0 2px 0;
1813
- height: auto;
1814
- display: inline-block;
1815
- float: none;
1816
- max-width: 73px;
1817
- width: auto;
1818
- }
1819
-
1820
- .printst_tool_bdr .sfsi_inside .prints_visit,
1821
- .printst_tool_bdr .sfsi_inside .prints_visit_1 {
1822
- margin: 9px 0 0;
1823
- height: 20px;
1824
- float: none;
1825
- display: inline-block;
1826
- }
1827
-
1828
- .printst_tool_bdr {
1829
- margin-left: -59px;
1830
- }
1831
-
1832
- .fb_tool_bdr .sfsi_inside .icon1>a>img,
1833
- .gpls_tool_bdr .sfsi_inside .icon1>a>img,
1834
- .linkedin_tool_bdr .sfsi_inside .icon1>a>img,
1835
- .linkedin_tool_bdr .sfsi_inside .icon4>a>img,
1836
- .printst_tool_bdr .sfsi_inside .icon1>a>img,
1837
- .printst_tool_bdr .sfsi_inside .icon2>a>img,
1838
- .utube_tool_bdr .sfsi_inside .icon1>a>img {
1839
- padding-top: 0;
1840
- }
1841
-
1842
- .gpls_tool_bdr {
1843
- width: 76px;
1844
- }
1845
-
1846
- .gpls_tool_bdr .sfsi_inside .icon1>a>img {
1847
- padding-top: 0;
1848
- }
1849
-
1850
- .gpls_tool_bdr .sfsi_inside {
1851
- text-align: center;
1852
- width: 100%;
1853
- float: left;
1854
- }
1855
-
1856
- .gpls_tool_bdr .sfsi_inside .icon1 {
1857
- margin: 2px 0;
1858
- display: inline-block;
1859
- float: none;
1860
- height: 29px;
1861
- width: 76px;
1862
- }
1863
-
1864
- .gpls_tool_bdr .sfsi_inside .icon2 {
1865
- margin: 2px 0 3px 0;
1866
- display: inline-block;
1867
- float: none;
1868
- height: 24px;
1869
- width: 38px;
1870
- }
1871
-
1872
- .gpls_tool_bdr .sfsi_inside .icon3 {
1873
- margin: 3px 0 2px 0;
1874
- display: inline-block;
1875
- float: none;
1876
- height: 24px;
1877
- width: 76px;
1878
- }
1879
-
1880
- .gpls_tool_bdr .sfsi_inside .gpls_visit,
1881
- .gpls_tool_bdr .sfsi_inside .gtalk_2,
1882
- .gpls_tool_bdr .sfsi_inside .gtalk_3 {
1883
- margin: 9px 0 0;
1884
- height: 29px;
1885
- }
1886
-
1887
- .pop_up_box_ex.sfsi_pop_up .fb_tool_bdr,
1888
- .gpls_tool_bdr,
1889
- .linkedin_tool_bdr,
1890
- .twt_tool_bdr {
1891
- bottom: 100%;
1892
- left: 50%;
1893
- margin-bottom: -12px;
1894
- }
1895
-
1896
- .fb_tool_bdr,
1897
- .gpls_tool_bdr,
1898
- .linkedin_tool_bdr,
1899
- .twt_tool_bdr {
1900
- bottom: 100%;
1901
- left: 50%;
1902
- margin-bottom: 8px;
1903
- }
1904
-
1905
- .printst_tool_bdr {
1906
- bottom: 80%;
1907
- left: 50%;
1908
- /* margin-bottom: 2px;*/
1909
- margin-bottom: 0px;
1910
- margin-bottom: 18px;
1911
- }
1912
-
1913
- .printst_tool_bdr {
1914
- bottom: 80%;
1915
- left: 50%;
1916
- margin-bottom: 18px;
1917
- }
1918
-
1919
- .twt_tool_bdr .sfsi_inside {
1920
- text-align: center;
1921
- width: 100%;
1922
- float: left;
1923
- }
1924
-
1925
- .twt_tool_bdr .sfsi_inside .cstmicon1 {
1926
- margin: 2px 0px 2px 0 !important;
1927
- /*margin: 2px 0!important; display: inline-block;*/
1928
- float: none;
1929
- width: 62px;
1930
- /* overflow: hidden;*/
1931
- /*height: 20px;*/
1932
- }
1933
-
1934
- .twt_tool_bdr .sfsi_inside .cstmicon1 a img {
1935
- float: left;
1936
- }
1937
-
1938
- .twt_tool_bdr .sfsi_inside .icon1 {
1939
- /*margin: -4px 0 -5px 0 !important;*/
1940
- margin: 5px 0px 3px 0 !important;
1941
- display: inline-block;
1942
- float: none;
1943
- width: 61px;
1944
- /* overflow: hidden;*/
1945
- height: auto;
1946
- }
1947
-
1948
- .twt_tool_bdr .sfsi_inside .icon1 iframe {
1949
- width: 61px !important;
1950
- }
1951
-
1952
- .twt_tool_bdr .sfsi_inside .icon2 {
1953
- margin: 3px 0px 2px 0px !important;
1954
- display: inline-block;
1955
- float: none;
1956
- height: auto;
1957
- width: 58px;
1958
- }
1959
-
1960
- .twt_tool_bdr .sfsi_inside .twt_1 {
1961
- margin: 9px 0 0;
1962
- display: inline-block;
1963
- float: none;
1964
- width: 58px;
1965
- height: 20px;
1966
- overflow: hidden;
1967
- }
1968
-
1969
- .twt_tool_bdr .sfsi_inside .twt_1 iframe {
1970
- width: 100% !important;
1971
- }
1972
-
1973
- .twt_tool_bdr .sfsi_inside .twt_2 {
1974
- margin: 9px 0 0;
1975
- height: 20px;
1976
- display: inline-block;
1977
- float: none;
1978
- width: 58px;
1979
- }
1980
-
1981
- .utube_tool_bdr .sfsi_inside {
1982
- text-align: center;
1983
- width: 100%;
1984
- float: left;
1985
- }
1986
-
1987
- .utube_tool_bdr .sfsi_inside .icon1 {
1988
- /*margin: 5px 0 0;*/
1989
- margin: 4px 0px 3px 0;
1990
- height: 24px;
1991
- display: inline-block;
1992
- float: none;
1993
- width: 96px;
1994
- }
1995
-
1996
- .utube_tool_bdr .sfsi_inside .icon2 {
1997
- /* margin: 9px 0 0;*/
1998
- margin: 2px 0 3px 0 !important;
1999
- height: 24px;
2000
- display: inline-block;
2001
- float: none;
2002
- max-width: 96px;
2003
- width: 82px;
2004
- }
2005
-
2006
- .pop-overlay.read-overlay.ytex-s2 .utube_tool_bdr {
2007
- width: 93px;
2008
- bottom: 100%;
2009
- left: 50%;
2010
- margin-bottom: -12px;
2011
- }
2012
-
2013
- .utube_tool_bdr {
2014
- width: 93px;
2015
- bottom: 100%;
2016
- left: 50%;
2017
- margin-bottom: 8px;
2018
- }
2019
-
2020
- .linkedin_tool_bdr {
2021
- width: 66px;
2022
- }
2023
-
2024
- .linkedin_tool_bdr .sfsi_inside {
2025
- text-align: center;
2026
- float: left;
2027
- width: 100%
2028
- }
2029
-
2030
- .linkedin_tool_bdr .sfsi_inside .icon1 {
2031
- margin: 2px 0 2px 0px;
2032
- display: inline-block;
2033
- float: none;
2034
- /* height: 20px;*/
2035
- width: 100%;
2036
- }
2037
-
2038
- .linkedin_tool_bdr .sfsi_inside .icon2 {
2039
- margin: 2px 0 2px 0px;
2040
- display: inline-block;
2041
- float: none;
2042
- /* height: 20px;*/
2043
- width: 100%;
2044
- }
2045
-
2046
- .linkedin_tool_bdr .sfsi_inside .icon3 {
2047
- margin: 2px 0 2px 0px;
2048
- display: inline-block;
2049
- float: none;
2050
- /* height: 20px;*/
2051
- width: 100%;
2052
- }
2053
-
2054
- .linkedin_tool_bdr .sfsi_inside .icon4 {
2055
- margin: 2px 0 1px 0px;
2056
- display: inline-block;
2057
- float: none;
2058
- /* height: 25px !important;*/
2059
- width: 100%;
2060
- }
2061
-
2062
- .sfsi_FrntInner_chg .linkedin_tool_bdr .sfsi_inside .icon1 {
2063
- margin: 7px 0;
2064
- }
2065
-
2066
- .sfsi_widget .linkedin_tool_bdr .sfsi_inside .icon4,
2067
- .sfsi_widget .gpls_tool_bdr .sfsi_inside .icon1,
2068
- .sfsi_widget .fb_tool_bdr .sfsi_inside .icon1 {
2069
- height: auto
2070
- }
2071
-
2072
- .linkedin_tool_bdr .linkin_1,
2073
- .linkedin_tool_bdr .linkin_2,
2074
- .linkedin_tool_bdr .linkin_3,
2075
- .linkedin_tool_bdr .linkin_4 {
2076
- margin: 9px 0 0 !important;
2077
- height: 20px;
2078
- display: inline-block;
2079
- float: none;
2080
- overflow: hidden;
2081
- }
2082
-
2083
- .twt_tool_bdr {
2084
- width: 62px;
2085
- height: auto;
2086
- }
2087
-
2088
- .twt_tool_bdr .sfsi_inside .icon1>iframe {
2089
- margin: 0 auto !important;
2090
- float: none !important;
2091
- width: 100%
2092
- }
2093
-
2094
- .twt_tool_bdr .sfsi_inside .icon1>iframe #widget {
2095
- text-align: center;
2096
- }
2097
-
2098
- .sfsi_pop_up .button {
2099
- border: none;
2100
- padding: 0;
2101
- }
2102
-
2103
- .pop_up_box .button a {
2104
- color: #fff;
2105
- line-height: normal;
2106
- font-size: 22px;
2107
- text-decoration: none;
2108
- text-align: center;
2109
- width: 482px;
2110
- height: 80px;
2111
- margin: 0;
2112
- display: table-cell;
2113
- vertical-align: middle;
2114
- font-family: helveticabold;
2115
- }
2116
-
2117
- .tab3 ul.tab_3_icns li .radio {
2118
- margin-top: 7px;
2119
- }
2120
-
2121
- .tab3 ul.tab_3_icns li label {
2122
- line-height: 50px !important;
2123
- margin-left: 20px;
2124
- }
2125
-
2126
- .sfsi_mainContainer input[type=email],
2127
- .sfsi_mainContainer input[type=number],
2128
- .sfsi_mainContainer input[type=password],
2129
- .sfsi_mainContainer input[type=search],
2130
- .sfsi_mainContainer input[type=tel],
2131
- .sfsi_mainContainer input[type=text],
2132
- .sfsi_mainContainer input[type=url],
2133
- .sfsi_mainContainer select,
2134
- .sfsi_mainContainer textarea {
2135
- color: #5a6570 !important;
2136
- }
2137
-
2138
- .adminTooltip {
2139
- left: 142px;
2140
- position: absolute;
2141
- }
2142
-
2143
- .adPopWidth {
2144
- min-height: 100px !important;
2145
- }
2146
-
2147
- .main_contant p>a.lit_txt,
2148
- .tab4 p>a {
2149
- font-family: helveticaregular;
2150
- color: #414951;
2151
- }
2152
-
2153
- .tab1 ul.icn_listing li .custom-txt {
2154
- margin-left: 5px;
2155
- }
2156
-
2157
- .tab1 ul.icn_listing li .custom-img {
2158
- margin-left: 18px;
2159
- }
2160
-
2161
- .linkedin_section .link_4>label.anthr_labl {
2162
- height: 94px;
2163
- }
2164
-
2165
- .mediam_txt {
2166
- font-family: helveticabold;
2167
- }
2168
-
2169
- .sfsiCtxt {
2170
- line-height: 51px;
2171
- font-family: helveticaregular;
2172
- font-size: 22px;
2173
- float: left;
2174
- padding-left: 19px;
2175
- color: #5a6570;
2176
- }
2177
-
2178
- .customstep2-img {
2179
- width: 51px;
2180
- float: left;
2181
- }
2182
-
2183
- .tab2 .row h2.custom {
2184
- margin: 15px 0 7px 21px;
2185
- height: 52px;
2186
- line-height: 51px;
2187
- font-family: helveticaregular;
2188
- font-size: 22px;
2189
- }
2190
-
2191
- .custom-links p.cus_link label {
2192
- margin-left: 0;
2193
- }
2194
-
2195
- .pop_up_box .sfsi_tool_tip_2 .fbb .fb_1 a>img:hover {
2196
- opacity: .9;
2197
- }
2198
-
2199
- .tab2 .rss_url_row .sfrsTxt {
2200
- font-size: 17px;
2201
- line-height: 47px;
2202
- margin: 0 0 0 4px;
2203
- font-family: helveticaregular;
2204
- }
2205
-
2206
- .tab2 .rss_url_row .sfrsTxt>strong {
2207
- font-family: helveticaregular;
2208
- }
2209
-
2210
- .tab2 .utube_inn p.extra_pp {
2211
- float: left;
2212
- width: 100%;
2213
- margin: 0 0 0 48px;
2214
- }
2215
-
2216
- .tab2 .utube_inn p.extra_pp label {
2217
- float: left;
2218
- line-height: 41px;
2219
- margin-right: 8px;
2220
- }
2221
-
2222
- .sfsi_inside .icon2 .fb_iframe_widget span {
2223
- width: 500px !important;
2224
- }
2225
-
2226
- @media (max-width:767px) {
2227
- .sfsi_inside .icon2 .fb_iframe_widget span {
2228
- width: auto;
2229
- }
2230
-
2231
- .sfsi_outr_div {
2232
- top: 10%
2233
- }
2234
-
2235
- .sfsi_outr_div h2 {
2236
- font-size: 22px !important;
2237
- line-height: 28px;
2238
- }
2239
-
2240
- .sfsi_wicons {
2241
- padding-top: 0;
2242
- }
2243
- }
2244
-
2245
- .specify_counts .listing li .high_prb {
2246
- height: 41px;
2247
- }
2248
-
2249
- .sfsi_Sicons {
2250
- position: relative;
2251
- }
2252
-
2253
- .sfsi_Sicons .sf_fb {
2254
- position: relative;
2255
- /*z-index: 1;*/
2256
- width: 75px;
2257
- }
2258
-
2259
- .sfsi_Sicons .fb_iframe_widget {
2260
- float: left;
2261
- width: 73px;
2262
- margin: 2px 0 0;
2263
- }
2264
-
2265
- .sfsi_Sicons .sf_fb .fb_iframe_widget>span {
2266
- position: absolute;
2267
- /*width: 450px!important; z-index: 1;*/
2268
- }
2269
-
2270
- .tab2 .utube_inn label {
2271
- font-size: 17px;
2272
- }
2273
-
2274
- .sfsi_plc_btm {
2275
- padding: 5px 14px 9px;
2276
- }
2277
-
2278
- .tab7 .field {
2279
- margin-top: 7px;
2280
- }
2281
-
2282
- .sfsi_outr_div ul li .cmcls img {
2283
- margin-top: 0 !important;
2284
- }
2285
-
2286
- .sfsi_outr_div ul li .inerCnt {
2287
- float: left;
2288
- }
2289
-
2290
- .sfsi_outr_div ul li .inerCnt .bot_no {
2291
- position: absolute;
2292
- padding: 1px 0;
2293
- font-size: 12px !important;
2294
- line-height: 12px !important;
2295
- text-align: center;
2296
- background: #fff;
2297
- border-radius: 5px;
2298
- display: block;
2299
- left: 50%;
2300
- margin-left: -20px;
2301
- border: 1px solid #333;
2302
- white-space: pre;
2303
- -webkit-box-sizing: border-box;
2304
- -moz-box-sizing: border-box;
2305
- box-sizing: border-box;
2306
- margin-top: 6px;
2307
- width: 40px;
2308
- word-break: break-all;
2309
- word-wrap: break-word;
2310
- }
2311
-
2312
- .sfsi_outr_div ul li .inerCnt .bot_no:before {
2313
- content: url(images/count_top_arow.png);
2314
- position: absolute;
2315
- height: 9px;
2316
- margin-left: -7.5px;
2317
- top: -10px;
2318
- left: 50%;
2319
- width: 15px;
2320
- }
2321
-
2322
- .sfsi_outr_div {
2323
- position: fixed;
2324
- width: 100%;
2325
- float: none;
2326
- left: 50%;
2327
- top: 20%;
2328
- margin-left: -50%;
2329
- opacity: 0;
2330
- z-index: -1;
2331
- display: block;
2332
- text-align: center;
2333
- }
2334
-
2335
- .sfsi_outr_div .sfsi_FrntInner_chg {
2336
- display: inline-block;
2337
- padding: 15px 17px 27px 18px;
2338
- background: #FFF;
2339
- border: 1px solid #EDEDED;
2340
- box-shadow: 0 0 5px #CCC;
2341
- margin: 20px;
2342
- position: relative;
2343
- }
2344
-
2345
- .sfsi_FrntInner_chg .sfsiclpupwpr {
2346
- position: absolute;
2347
- right: -10px;
2348
- top: -10px;
2349
- width: 25px;
2350
- cursor: pointer;
2351
- }
2352
-
2353
- .sfsi_FrntInner_chg .sfsiclpupwpr img {
2354
- width: auto;
2355
- float: left;
2356
- border: medium none;
2357
- }
2358
-
2359
- .tab7 .like_pop_box {
2360
- width: 100%;
2361
- margin: 35px auto auto;
2362
- position: relative;
2363
- text-align: center;
2364
- }
2365
-
2366
- .tab7 .like_pop_box .sfsi_Popinner {
2367
- display: inline-block;
2368
- padding: 18px 20px;
2369
- box-shadow: 0 0 5px #ccc;
2370
- -webkit-box-shadow: 0 0 5px #ccc;
2371
- border: 1px solid #ededed;
2372
- background: #FFF;
2373
- }
2374
-
2375
- .tab7 .like_pop_box .sfsi_Popinner h2 {
2376
- margin: 0 0 23px;
2377
- padding: 0;
2378
- color: #414951;
2379
- font-family: helveticabold;
2380
- font-size: 26px;
2381
- text-align: center;
2382
- }
2383
-
2384
- .tab7 .like_pop_box .sfsi_Popinner ul {
2385
- margin: 0;
2386
- padding: 0;
2387
- list-style: none;
2388
- text-align: center;
2389
- }
2390
-
2391
- .tab7 .like_pop_box .sfsi_Popinner ul li {
2392
- margin: 0;
2393
- padding: 0;
2394
- list-style: none;
2395
- display: inline-block;
2396
- }
2397
-
2398
- .tab7 .like_pop_box .sfsi_Popinner ul li span {
2399
- margin: 0;
2400
- width: 54px;
2401
- display: block;
2402
- background: url(../images/count_bg.png) no-repeat;
2403
- height: 24px;
2404
- overflow: hidden;
2405
- padding: 10px 2px 2px;
2406
- font-family: helveticaregular;
2407
- font-size: 16px;
2408
- text-align: center;
2409
- line-height: 24px;
2410
- color: #5a6570;
2411
- }
2412
-
2413
- .tab7 .like_pop_box .sfsi_Popinner ul li a {
2414
- color: #5a6570;
2415
- text-decoration: none;
2416
- }
2417
-
2418
- .sfsi_outr_div .sfsi_FrntInner_chg .sfsi_wicons {
2419
- margin-bottom: 0;
2420
- }
2421
-
2422
- .sfsi_outr_div ul {
2423
- list-style: none;
2424
- margin: 0 0 24px;
2425
- padding: 0;
2426
- text-align: center;
2427
- }
2428
-
2429
- a.sfsiColbtn {
2430
- color: #5a6570 !important;
2431
- float: right;
2432
- font-size: 14px;
2433
- margin: -35px -30px 0 0;
2434
- position: relative;
2435
- right: 0;
2436
- font-family: helveticaregular;
2437
- width: 100px;
2438
- text-decoration: none;
2439
- }
2440
-
2441
- .tab3 a.sfsiColbtn {
2442
- margin-top: -43px;
2443
- }
2444
-
2445
- .sfsi_FrntInner_chg ul li:first-of-type .sfsi_wicons {
2446
- margin-left: 0 !important;
2447
- }
2448
-
2449
- ul.tab_3_icns li .trans_bg {
2450
- background: #000;
2451
- padding-left: 3px;
2452
- }
2453
-
2454
- .tab2 .instagram_section {
2455
- padding-bottom: 20px;
2456
- }
2457
-
2458
- h1.abt_titl {
2459
- text-align: center;
2460
- margin: 19% 0 0;
2461
- }
2462
-
2463
- .sfcm.sfsi_wicon {
2464
- padding: 0;
2465
- width: 100%;
2466
- border: medium none;
2467
- }
2468
-
2469
- .fb_iframe_widget span {
2470
- vertical-align: top !important;
2471
- }
2472
-
2473
- .sfsi_outr_div .sfsi_FrntInner_chg ul {
2474
- margin: 0 0 0 3px;
2475
- }
2476
-
2477
- .sfsi_outr_div .sfsi_FrntInner_chg ul li {
2478
- margin: 0 3px 0 0;
2479
- }
2480
-
2481
- .sfcm.sfsi_wicon {
2482
- margin: -1px;
2483
- padding: 0;
2484
- }
2485
-
2486
- @media (min-width:320px) and (max-width:480px) {
2487
-
2488
- .sfsi_tool_tip_2,
2489
- .tool_tip {
2490
- padding: 5px 14px 0;
2491
- }
2492
-
2493
- .sfsi_inside:last-child {
2494
- margin-bottom: 18px;
2495
- clear: both;
2496
- }
2497
-
2498
- .sfsi_outr_div {
2499
- top: 10%;
2500
- }
2501
-
2502
- .sfsi_FrntInner_chg .sfsi_wicons {
2503
- width: 31px !important;
2504
- height: 31px !important;
2505
- }
2506
-
2507
- .sfsi_FrntInner_chg .sfsi_wicons img {
2508
- width: 100%;
2509
- }
2510
-
2511
- .sfsi_Sicons .sf_fb {
2512
- margin-bottom: 24px;
2513
- }
2514
-
2515
- .sfsi_Sicons .sf_twiter {
2516
- margin-bottom: 4px;
2517
- }
2518
- }
2519
-
2520
- @media (max-width:320px) {
2521
-
2522
- .sfsi_tool_tip_2,
2523
- .tool_tip {
2524
- padding: 5px 14px 0;
2525
- }
2526
-
2527
- .sfsi_inside:last-child {
2528
- margin-bottom: 18px;
2529
- clear: both;
2530
- }
2531
-
2532
- .sfsi_FrntInner_chg .sfsi_wicons {
2533
- width: 31px !important;
2534
- height: 31px !important;
2535
- }
2536
-
2537
- .sfsi_FrntInner_chg .sfsi_wicons img {
2538
- width: 100%
2539
- }
2540
- }
2541
-
2542
- ul.SFSI_lsngfrm {
2543
- float: left;
2544
- /* width: 61%;*/
2545
- width: 51.33%;
2546
- padding-left: 60px !important;
2547
- }
2548
-
2549
- ul.SFSI_instructions {
2550
- float: left;
2551
- width: 35%;
2552
- }
2553
-
2554
- li.youtube_options {
2555
- padding-left: 60px !important;
2556
- }
2557
-
2558
- input[name="sfsi_pinterest_manualCounts"] {
2559
- margin-left: -20px !important;
2560
- }
2561
-
2562
- ul.SFSI_instructions li {
2563
- font-size: 12px !important;
2564
- line-height: 25px !important;
2565
- margin: 0 !important;
2566
- padding: 0 0 0 15px !important;
2567
- width: 100%
2568
- }
2569
-
2570
- /*{Monad}*/
2571
- /*Upload Skins css*/
2572
- .cstmskin_popup {
2573
- width: 500px;
2574
- background: #FFF;
2575
- box-shadow: 0 0 5px 3px #d8d8d8;
2576
- margin: 40px 0px auto;
2577
- padding: 20px 25px 20px;
2578
- font-family: helveticaregular;
2579
- color: #5a6570;
2580
- height: auto;
2581
- float: left;
2582
- position: relative;
2583
- left: 35%;
2584
- }
2585
-
2586
- .cstomskins_wrpr {
2587
- float: left;
2588
- width: 100%;
2589
- }
2590
-
2591
- .custskinmsg {
2592
- float: left;
2593
- font-size: 15px;
2594
- margin-top: 10px;
2595
- width: 100%;
2596
- }
2597
-
2598
- .custskinmsg>ul {
2599
- color: #000;
2600
- float: left;
2601
- margin-top: 8px;
2602
- width: 100%;
2603
- }
2604
-
2605
- ul.cstmskin_iconlist {
2606
- float: left;
2607
- padding: 11px 0 40px 8px;
2608
- width: 100%;
2609
- max-width: 1000px;
2610
- margin: 0;
2611
- height: 307px;
2612
- overflow-y: scroll;
2613
- }
2614
-
2615
- .placethemanulywpr {
2616
- max-width: 98% !important
2617
- }
2618
-
2619
- .cstmskin_iconlist>li {
2620
- float: left;
2621
- margin: 3px 0;
2622
- width: 100%;
2623
- }
2624
-
2625
- .cstm_icnname {
2626
- float: left;
2627
- width: 30%;
2628
- }
2629
-
2630
- .cstmskins_btn>img {
2631
- float: left;
2632
- margin-right: 25px;
2633
- }
2634
-
2635
- .cstmskin_btn {
2636
- width: auto;
2637
- float: left;
2638
- padding: 3px 20px;
2639
- color: #fff;
2640
- background-color: #12a252;
2641
- text-decoration: none;
2642
- margin: 0 10px;
2643
- }
2644
-
2645
- .cstmskins_sbmt {
2646
- width: 100%;
2647
- float: left;
2648
- text-align: center;
2649
- margin-top: 15px;
2650
- }
2651
-
2652
- .done_btn {
2653
- width: auto;
2654
- padding: 3px 80px;
2655
- color: #fff;
2656
- background-color: #12a252;
2657
- text-decoration: none;
2658
- font-size: 18px;
2659
- }
2660
-
2661
- .cstmskin_btn:hover,
2662
- .done_btn:hover,
2663
- .cstmskin_btn:focus,
2664
- .done_btn:focus {
2665
- color: #fff;
2666
- }
2667
-
2668
- .skswrpr,
2669
- .dlt_btn {
2670
- display: none;
2671
- }
2672
-
2673
- .cstmutbewpr {
2674
- width: 100%;
2675
- float: left;
2676
- margin-top: 10px;
2677
- margin-left: 40px;
2678
- }
2679
-
2680
- .cstmutbewpr ul.enough_waffling li {
2681
- width: auto;
2682
- float: left;
2683
- margin-right: 20px;
2684
- }
2685
-
2686
- .cstmutbewpr ul.enough_waffling li span {
2687
- float: left;
2688
- }
2689
-
2690
- .cstmutbewpr ul.enough_waffling li label {
2691
- width: auto;
2692
- float: left;
2693
- margin-top: 10px;
2694
- margin-left: 10px;
2695
- }
2696
-
2697
- .cstmutbewpr .cstmutbtxtwpr {
2698
- width: 100%;
2699
- float: left;
2700
- padding-top: 10px;
2701
- }
2702
-
2703
- .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr {
2704
- width: 100%;
2705
- float: left;
2706
- display: none;
2707
- }
2708
-
2709
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p,
2710
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p {
2711
- margin-left: 0px;
2712
- }
2713
-
2714
- .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr {
2715
- width: 100%;
2716
- float: left;
2717
- display: none;
2718
- }
2719
-
2720
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p label,
2721
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p label {
2722
- width: 120px;
2723
- }
2724
-
2725
- .sfsi_widget .sfsi_wDiv .sfsi_wicons .inerCnt a,
2726
- .sfsi_widget .sfsi_wDiv .sfsi_wicons .inerCnt a.sficn {
2727
- padding: 0px;
2728
- margin: 0px;
2729
- width: 100%;
2730
- float: left;
2731
- border: medium none;
2732
- }
2733
-
2734
- .sfsi_socialwpr {
2735
- width: auto;
2736
- display: inline-block;
2737
- vertical-align: middle;
2738
- }
2739
-
2740
- .sfsi_socialwpr .sf_fb {
2741
- float: left;
2742
- }
2743
-
2744
- .sfsipyplfrm {
2745
- float: left;
2746
- margin-top: 10px;
2747
- width: 100%;
2748
- }
2749
-
2750
- .sfsipyplfrm input[type="submit"] {
2751
- background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
2752
- border: medium none;
2753
- color: #0074a2;
2754
- cursor: pointer;
2755
- font-weight: normal;
2756
- margin: 0;
2757
- padding: 5px 10px;
2758
- text-decoration: underline;
2759
- }
2760
-
2761
- .sfsipyplfrm input[type="submit"]:hover {
2762
- color: #2ea2cc
2763
- }
2764
-
2765
- .pop_up_box_ex {
2766
- background: none repeat scroll 0 0 #fff;
2767
- box-shadow: 0 0 5px 3px #d8d8d8;
2768
- color: #5a6570;
2769
- font-family: helveticaregular;
2770
- margin: 200px auto;
2771
- min-height: 150px;
2772
- padding: 20px 25px 0px;
2773
- position: relative;
2774
- width: 290px;
2775
- }
2776
-
2777
- .pop_up_box_ex {
2778
- color: #5a6570;
2779
- font-family: helveticaregular;
2780
- }
2781
-
2782
- .cstmutbchnlidwpr .utbe_instruction,
2783
- .cstmutbchnlnmewpr .utbe_instruction,
2784
- .lnkdin_instruction {
2785
- float: left;
2786
- line-height: 22px;
2787
- margin-top: 10px;
2788
- width: 100%;
2789
- }
2790
-
2791
- .fb_iframe_widget iframe {
2792
- max-width: none;
2793
- }
2794
-
2795
- .sfsi_mainContainer p.bldtxtmsg {
2796
- float: left;
2797
- font-size: 15px;
2798
- font-weight: bold;
2799
- margin-top: 12px;
2800
- width: 100%;
2801
- text-align: center;
2802
- }
2803
-
2804
- .sfsinewplgndesc {
2805
- background: none repeat scroll 0 0 #e5e5e5;
2806
- float: left;
2807
- padding: 5px 10px 8px;
2808
- margin-top: 25px;
2809
- }
2810
-
2811
- .sfsinewplgndesc>.clear>a {
2812
- color: #5a6570;
2813
- font-weight: bold;
2814
- }
2815
-
2816
- .sfsiicnsdvwrp {
2817
- float: left;
2818
- width: 110px;
2819
- }
2820
-
2821
- .sfsi_Sicons .sf_subscrbe .bot_no {
2822
- background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
2823
- font-size: 12px !important;
2824
- left: 67px;
2825
- line-height: 18px !important;
2826
- margin-left: 0px;
2827
- margin-top: 8px;
2828
- padding: 1px 0;
2829
- position: absolute;
2830
- text-align: center;
2831
- top: -8px;
2832
- white-space: pre;
2833
- width: 33px;
2834
- height: 24px;
2835
- z-index: 9;
2836
- }
2837
-
2838
- .sfsi_wicons a.sficn,
2839
- .sfsi_wicons .sfsi_inside a,
2840
- .sfsi_Sicons div a {
2841
- box-shadow: none;
2842
- border: none;
2843
- }
2844
-
2845
- .sfsi_Sicons .sf_pinit>span {
2846
- height: 20px !important;
2847
- }
2848
-
2849
- .sfsi_Sicons .sf_pinit>span>span {
2850
- width: 38px !important;
2851
- right: -45px !important;
2852
- }
2853
-
2854
- .sfsi_wicons a {
2855
- box-shadow: none !important;
2856
- }
2857
-
2858
- a.sficn {
2859
- cursor: pointer;
2860
- }
2861
-
2862
- .sfsi_Sicons .fb_iframe_widget>span {
2863
- vertical-align: top !important;
2864
- }
2865
-
2866
- .sfsi_Sicons .sf_fb {
2867
- margin: 0 0 0 5px !important;
2868
- }
2869
-
2870
- .disabled_checkbox .sfsi_right_info:before {
2871
- position: absolute;
2872
- content: "";
2873
- width: 500px;
2874
- height: 60px;
2875
- display: inline-block;
2876
- z-index: 99;
2877
- margin-left: -66px;
2878
- margin-top: -14px;
2879
- background: rgba(255, 255, 255, .8);
2880
- }
2881
-
2882
- #sfsi_floater .fb_tool_bdr .sfsi_inside .icon2 {
2883
- /*margin: -2px 0 -5px 0;*/
2884
- }
2885
-
2886
- .sfsi_wechat_follow_overlay {
2887
- position: fixed;
2888
- top: 0;
2889
- width: 100%;
2890
- z-index: 99999;
2891
- background: rgba(0, 0, 0, 0.7);
2892
- }
2893
-
2894
- .sfsi_wechat_follow_overlay .close_btn {
2895
- position: absolute;
2896
- right: 60px;
2897
- top: 60px;
2898
- font-size: 40px;
2899
- line-height: 40px;
2900
- text-decoration: none;
2901
- border: 1px solid #fff;
2902
- padding: 0 10px;
2903
- border-radius: 60px;
2904
- color: #333;
2905
- background-color: #ffff;
2906
- text-decoration: none;
2907
- }
2908
-
2909
- @media (max-width:786px) {
2910
- .sfsi_upload_butt_container {
2911
- display: inline-block;
2912
- }
2913
-
2914
- .upload_butt {
2915
- height: 38px;
2916
- }
2917
-
2918
- .sfsi_wechat_follow_overlay .sfsi_inner_display>div div.sfsi_upload_butt_container:first-child {
2919
- margin-left: 0;
2920
- margin-right: 20px;
2921
- }
2922
- }
2923
-
2924
- /*added by Developer */
2925
- #accordion1 p:nth-child(2) {
2926
- padding-top: 0px !important;
2927
- }
2928
-
2929
- input[name="sfsi_instagram_manualCounts"] {
2930
- margin-left: -15px !important;
2931
- }
2932
-
2933
- .sfsi_prem_cmn_rowlisting {
2934
- width: 33.33%;
2935
- }
2936
-
2937
- .rss_url_row h4 {
2938
- line-height: 43px !important;
2939
- font-size: 17px !important;
2940
- font-family: 'helveticaneue-light' !important;
2941
- }
2942
-
2943
- .cstmutbchnlnmewpr p.extra_pp label {
2944
- width: auto !important;
2945
- }
2946
-
2947
- .cstmutbchnlidwpr p.extra_pp label {
2948
- width: auto !important;
2949
- }
2950
-
2951
- .tab_3_option {
2952
- margin: 10px 0 0;
2953
- }
2954
-
2955
- div.tab3 .sub_row.stand.sec_new {
2956
- margin: 0;
2957
- }
2958
-
2959
- div#custom_social_data_setting h4 {
2960
- padding-bottom: 30px;
2961
- }
2962
-
2963
- .like_pop_box img.sfcm {
2964
- height: 50px;
2965
- width: 50px;
2966
- }
2967
-
2968
- .linkedin_tool_bdr {
2969
- line-height: 0 !important;
2970
- }
2971
-
2972
- .twt_tool_bdr {
2973
- line-height: 0 !important;
2974
- }
2975
-
2976
- div#sfsiid_facebook {
2977
- line-height: 0 !important;
2978
- }
2979
-
2980
- div#sfsiid_youtube {
2981
- line-height: 0 !important;
2982
- }
2983
-
2984
- .printst_tool_bdr {
2985
- line-height: 0 !important;
2986
- }
2987
-
2988
- /*end added by Developer */
2989
- /*by developer - 29-5-2019 */
2990
- ul.SFSI_instructions li,
2991
- ul.SFSI_instructions li a {
2992
- font-size: 17px !important;
2993
- font-family: helveticaregular !important;
2994
- font-weight: 400;
2995
- color: #1a1d20 !important;
2996
- }
2997
-
2998
- body .specify_counts .listing .sfsi_instagramInstruction li {
2999
- font-size: 17px !important;
3000
- font-family: helveticaregular !important;
3001
- font-weight: 400 !important;
3002
- color: #1a1d20 !important;
3003
- line-height: 26px !important;
3004
- }
3005
-
3006
- /*end - 29-5-2019*/
3007
-
3008
- a.pop-up .radio{
3009
- opacity: 0.5;
3010
- background-position: 0px 0px !important;
3011
- /* padding-right: 3px; */
3012
- }
3013
-
3014
- .sfsi_vertically_center{
3015
- display: flex;
3016
- justify-content: space-between;
3017
- align-items: center;
3018
- }
3019
- .sfsi_center{
3020
- display: flex;
3021
- justify-content: center;
3022
- }
3023
- .sfsi_custom_icons_q4{
3024
- display: flex;
3025
- align-items: center;
3026
- }
3027
- .tab6 .sfsi_responsive_icon_option_li .options .first.first.first {
3028
- width: 25%!important;
3029
- }
3030
- .sfsi_responsive_icon_gradient{
3031
- background-image: -webkit-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3032
- background-image: -moz-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3033
- background-image: linear-gradient(bottom,rgba(0,0,0,.17) 0%,rgba(255,255,255,.17) 100%);
3034
- }
3035
- .tab6 ul.sfsi_icn_listing8 ul.sfsi_tab_3_icns li {
3036
- width: 50%;
3037
- max-width: 450px;
3038
- padding-left: 0;
3039
- padding-bottom: 0;
3040
- }
3041
- .tab6 .sfsi_tab_3_icns.sfsi_shwthmbfraftr > li {
3042
- width:100% !important;
3043
- max-width:100% !important;
3044
- border-left: 45px solid transparent;
3045
- }
3046
-
3047
- .tab6 ul.sfsi_icn_listing8 li {
3048
- float: left;
3049
- padding: 11px 0 40px 8px;
3050
- width: 100%;
3051
- max-width: 1000px;
3052
- margin: 0;
3053
- }
3054
-
3055
- ul.sfsi_icn_listing8 li .sfsi_right_info a {
3056
- outline: 0;
3057
- font-family: helveticaregular;
3058
- }
3059
- #accordion .tab6 ul.sfsi_tab_3_icns {
3060
- margin-top: 25px;
3061
- }
3062
- .sfsi_tab_3_icns.sfsi_shwthmbfraftr {
3063
- overflow: visible;
3064
- }
3065
- ul.sfsi_tab_3_icns {
3066
- list-style: none;
3067
- margin: 34px 0 0;
3068
- overflow: hidden;
3069
- }
3070
-
3071
- .tab6 ul.sfsi_icn_listing8 li {
3072
- float: left;
3073
- padding: 11px 0 40px 8px;
3074
- width: 100%;
3075
- max-width: 1000px;
3076
- margin: 0;
3077
- }
3078
- .tab6 .sfsi_tab_3_icns.sfsi_shwthmbfraftr .social_icon_like1 li {
3079
- width: auto;
3080
- max-width: auto;
3081
- min-width: auto;
3082
- margin: 0 30px 0 0;
3083
- }
3084
-
3085
- ul.sfsi_tab_3_icns label {
3086
- float: left;
3087
- line-height: 42px;
3088
- color: #69737C;
3089
- font-size: 18px;
3090
- font-family: helveticaregular;
3091
- min-width: 120px;
3092
- }
3093
- .tab6 ul.sfsi_tab_3_icns li label {
3094
- line-height: 50px !important;
3095
- }
3096
-
3097
- #accordion1 .tab6 ul.sfsi_shwthmbfraftr .labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .row h4.labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .row h4.labelhdng4 {
3098
- color: #555;
3099
- font-size: 20px;
3100
- margin-left: 20px;
3101
- font-family: 'helveticaregular';
3102
- }
3103
- .tab6 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns.sfsi_shwthmbfraftr>li:nth-child(1), .tab6 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns.sfsi_shwthmbfraftr>li:nth-child(2){
3104
- width: 27% !important;
3105
- }
3106
-
3107
- .tab6 ul.sfsi_tab_3_icns li .radio{
3108
- margin-top: 7px;
3109
- }
3110
-
3111
- ul.sfsi_icn_listing8 li .tb_4_ck{
3112
- float: left;
3113
- }
3114
- .sfsi_responsive_default_icon_container .radio_section.tb_4_ck, .sfsi_responsive_custom_icon_container .radio_section.tb_4_ck {
3115
- margin: 5px 20px 0 0 !important;
3116
- }
3117
-
3118
- .sfsi_responsive_icon_option_li .options .field .select {
3119
- font-family: helveticaregular;
3120
- font-weight: 400;
3121
- font-size: 17px;
3122
- color: #5a6570!important;
3123
- }
3124
-
3125
- .tab6 ul.sfsi_icn_listing8 ul.sfsi_tab_3_icns .usually li {
3126
- width: 100% !important;
3127
- max-width: 1000px !important;
3128
- padding: 3px 0 5px 5px !important;
3129
- }
3130
- .sfsi_responsive_icons a{
3131
- text-decoration: none!important;
3132
- box-shadow: none!important;
3133
- }
3134
- .sfsi_responsive_icons *{
3135
- box-shadow: none!important;
3136
- }
3137
-
3138
- .sfsi_responsive_icons .sfsi_responsive_icon_facebook_container{ background-color:#336699;}
3139
- .sfsi_responsive_icons .sfsi_responsive_icon_follow_container{ background-color:#00B04E;}
3140
- .sfsi_responsive_icons .sfsi_responsive_icon_twitter_container{ background-color:#55ACEE;}
3141
- .sfsi_small_button {
3142
- line-height: 0px;
3143
- height: unset;
3144
- padding: 6px !important;
3145
- }
3146
- .sfsi_small_button span {
3147
- margin-left: 10px;
3148
- font-size: 16px;
3149
- padding: 0px;
3150
- line-height: 16px;
3151
- vertical-align: -webkit-baseline-middle !important;
3152
- margin-left: 10px;
3153
- }
3154
- .sfsi_small_button img {
3155
- max-height: 16px !important;
3156
- padding: 0px;
3157
- line-height: 0px;
3158
- vertical-align: -webkit-baseline-middle !important;
3159
- }
3160
- .sfsi_medium_button span {
3161
- margin-left: 10px;
3162
- font-size: 18px;
3163
- padding: 0px;
3164
- line-height: 16px;
3165
- vertical-align: -webkit-baseline-middle !important;
3166
- margin-left: 10px;
3167
- }
3168
- .sfsi_medium_button img {
3169
- max-height: 16px !important;
3170
- padding: 0px;
3171
- line-height: 0px;
3172
- vertical-align: -webkit-baseline-middle !important;
3173
- }
3174
- .sfsi_medium_button {
3175
- line-height: 0px;
3176
- height: unset;
3177
- padding: 10px !important;
3178
- }
3179
-
3180
- .sfsi_medium_button span {
3181
- margin-left: 10px;
3182
- font-size: 18px;
3183
- padding: 0px;
3184
- line-height: 16px;
3185
- vertical-align: -webkit-baseline-middle !important;
3186
- margin-left: 10px;
3187
- }
3188
- .sfsi_medium_button img {
3189
- max-height: 16px !important;
3190
- padding: 0px;
3191
- line-height: 0px;
3192
- vertical-align: -webkit-baseline-middle !important;
3193
- }
3194
- .sfsi_medium_button {
3195
- line-height: 0px;
3196
- height: unset;
3197
- padding: 10px !important;
3198
- }
3199
- .sfsi_large_button span {
3200
- font-size: 20px;
3201
- padding: 0px;
3202
- line-height: 16px;
3203
- vertical-align: -webkit-baseline-middle !important;
3204
- display: inline;
3205
- margin-left: 10px;
3206
- }
3207
- .sfsi_large_button img {
3208
- max-height: 16px !important;
3209
- padding: 0px;
3210
- line-height: 0px;
3211
- vertical-align: -webkit-baseline-middle !important;
3212
- display: inline;
3213
- }
3214
- .sfsi_large_button {
3215
- line-height: 0px;
3216
- height: unset;
3217
- padding: 13px !important;
3218
- }
3219
- .sfsi_responsive_icons .sfsi_icons_container span {
3220
- font-family: sans-serif;
3221
- font-size: 15px;
3222
- }
3223
- .sfsi_icons_container_box_fully_container {
3224
- flex-wrap: wrap;
3225
- }
3226
- .sfsi_icons_container_box_fully_container a {
3227
- flex-basis: auto !important;
3228
- flex-grow: 1;
3229
- flex-shrink: 1;
3230
- margin-bottom: 5px;
3231
- }
3232
- .sfsi_icons_container>a {
3233
- float: left!important;
3234
- text-decoration: none!important;
3235
- -webkit-box-shadow: unset!important;
3236
- box-shadow: unset!important;
3237
- -webkit-transition: unset!important;
3238
- transition: unset!important;
3239
- margin-bottom:5px!important;
3240
- }
3241
- .sfsi_small_button {
3242
- line-height: 0px;
3243
- height: unset;
3244
- padding: 6px !important;
3245
- }
3246
- .sfsi_small_button span {
3247
- margin-left: 10px;
3248
- font-size: 16px;
3249
- padding: 0px;
3250
- line-height: 16px;
3251
- vertical-align: -webkit-baseline-middle !important;
3252
- margin-left: 10px;
3253
- }
3254
- .sfsi_small_button img {
3255
- max-height: 16px !important;
3256
- padding: 0px;
3257
- line-height: 0px;
3258
- vertical-align: -webkit-baseline-middle !important;
3259
- }
3260
- .sfsi_medium_button span {
3261
- margin-left: 10px;
3262
- font-size: 18px;
3263
- padding: 0px;
3264
- line-height: 16px;
3265
- vertical-align: -webkit-baseline-middle !important;
3266
- margin-left: 10px;
3267
- }
3268
- .sfsi_medium_button img {
3269
- max-height: 16px !important;
3270
- padding: 0px;
3271
- line-height: 0px;
3272
- vertical-align: -webkit-baseline-middle !important;
3273
- }
3274
- .sfsi_medium_button {
3275
- line-height: 0px;
3276
- height: unset;
3277
- padding: 10px !important;
3278
- }
3279
-
3280
- .sfsi_medium_button span {
3281
- margin-left: 10px;
3282
- font-size: 18px;
3283
- padding: 0px;
3284
- line-height: 16px;
3285
- vertical-align: -webkit-baseline-middle !important;
3286
- margin-left: 10px;
3287
- }
3288
- .sfsi_medium_button img {
3289
- max-height: 16px !important;
3290
- padding: 0px;
3291
- line-height: 0px;
3292
- vertical-align: -webkit-baseline-middle !important;
3293
- }
3294
- .sfsi_medium_button {
3295
- line-height: 0px;
3296
- height: unset;
3297
- padding: 10px !important;
3298
- }
3299
- .sfsi_large_button span {
3300
- font-size: 20px;
3301
- padding: 0px;
3302
- line-height: 16px;
3303
- vertical-align: -webkit-baseline-middle !important;
3304
- display: inline;
3305
- margin-left: 10px;
3306
- }
3307
- .sfsi_large_button img {
3308
- max-height: 16px !important;
3309
- padding: 0px;
3310
- line-height: 0px;
3311
- vertical-align: -webkit-baseline-middle !important;
3312
- display: inline;
3313
- }
3314
- .sfsi_large_button {
3315
- line-height: 0px;
3316
- height: unset;
3317
- padding: 13px !important;
3318
- }
3319
- .sfsi_responsive_icons_count{
3320
- padding: 5px 10px;
3321
- float: left !important;
3322
- display: inline-block;
3323
- margin-right: 0px;
3324
- margin-top: 2px;
3325
- }
3326
-
3327
- .sfsi_responsive_icons_count h3{
3328
- font-family: 'sans-serif' !important;
3329
- font-weight: 900;
3330
- font-size: 32px !important;
3331
- line-height: 0px !important;
3332
- padding: 0px;
3333
- margin: 0px;
3334
- }
3335
-
3336
- .sfsi_responsive_icons_count h6{
3337
- font-family: 'sans-serif' !important;
3338
- font-weight: 900;
3339
- padding: 0px;
3340
- margin: 0px;
3341
- }
3342
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3343
- text-decoration: none!important;
3344
- border: 0!important;
3345
- }
3346
- .sfsi_responsive_with_counter_icons{
3347
- width: calc(100% - 100px)!important;
3348
- }
3349
- .sfsiresponsive_icon_preview {
3350
- padding: 0px 0 20px 0;
3351
- min-width: 100%;
3352
- }
3353
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
3354
- padding: 12px 13px 9px 13px !important;
3355
- }
3356
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
3357
- padding: 9px 10px 7px 10px !important;
3358
- }
3359
- .sfsi_responsive_icons_count.sfsi_small_button {
3360
- padding: 7px 6px !important;
3361
- }
3362
- .sfsi_responsive_icons_count.sfsi_small_button {
3363
- padding: 7px 6px !important;
3364
- margin-top: 2px;
3365
- }
3366
- .sfsi_responsive_icons_count.sfsi_small_button h6 {
3367
- display: inline-block;
3368
- font-size: 12px !important;
3369
- vertical-align: middle;
3370
- }
3371
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
3372
- padding: 9px 10px 7px 10px !important;
3373
- }
3374
- .sfsi_responsive_icons_count.sfsi_medium_button h3 {
3375
- font-size: 21px !important;
3376
- vertical-align: top;
3377
- line-height: 8px !important;
3378
- margin: 0px 0px 12px 0px !important;
3379
- font-weight: 900;
3380
- padding: 0px;
3381
- }
3382
- .sfsi_esponsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
3383
- margin: 0px 0px 15px 0px !important;
3384
- }
3385
- .sfsi_responsive_icons_count.sfsi_large_button h3 {
3386
- font-size: 26px !important;
3387
- vertical-align: top;
3388
- line-height: 6px !important;
3389
- }
3390
-
3391
- .sfsi_responsive_icons_count h3 {
3392
- font-family: 'sans-serif' !important;
3393
- font-weight: 900;
3394
- padding: 0px;
3395
- }
3396
-
3397
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
3398
- font-size: 20px !important;
3399
- display: inline-block;
3400
- vertical-align: middle;
3401
- }
3402
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
3403
- margin: 0px !important;
3404
- }
3405
- .sfsi_responsive_icons_count h3 {
3406
- font-family: 'sans-serif' !important;
3407
- font-weight: 900;
3408
- line-height: 0px !important;
3409
- padding: 0px;
3410
- margin: 0px;
3411
- }
3412
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3413
- text-decoration: none!important;
3414
- border: 0!important;
3415
- }
3416
- .sfsi_responsive_icons_count.sfsi_small_button {
3417
- padding: 7px 6px !important;
3418
- margin-top: 2px;
3419
- }
3420
-
3421
- .sfsi_responsive_icons_count {
3422
- vertical-align: top;
3423
- }
3424
- .sfsi_responsive_icons_count {
3425
- float: left;
3426
- }
3427
- .sfsi_small_button {
3428
- line-height: 0px;
3429
- height: unset;
3430
- }
3431
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3432
- text-decoration: none!important;
3433
- border: 0!important;
3434
- }
3435
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
3436
- font-size: 20px !important;
3437
- display: inline-block;
3438
- vertical-align: middle;
3439
- margin: 0px !important;
3440
- }
3441
-
3442
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3443
- text-decoration: none!important;
3444
- font-family: helveticaregular!important;
3445
- border: 0!important;
3446
- }
3447
- .sfsi_responsive_icons_count h3 {
3448
- line-height: 0px !important;
3449
- padding: 0px;
3450
- }
3451
- .sfsi_responsive_icons_count.sfsi_small_button h6 {
3452
- display: inline-block;
3453
- font-size: 12px !important;
3454
- /*vertical-align: middle;*/
3455
- margin: 0px !important;
3456
- line-height: initial !important;
3457
- padding: 0;
3458
- margin: 0;
3459
- }
3460
- .sfsi_responsive_icons_count h6{
3461
- margin:0!important;
3462
- }
3463
- .sfsi_responsive_icons_count h6 {
3464
- padding: 0px;
3465
- }
3466
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6{
3467
- text-decoration: none!important;
3468
- font-family: helveticaregular!important;
3469
- border: 0!important;
3470
- }
3471
- .sfsi_responsive_icons_count.sfsi_medium_button h6{
3472
- font-size: 11px !important;
3473
- line-height: 0px !important;
3474
- margin: 0px 0px 0px 0px !important;
3475
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "utf-8";
2
+
3
+ @font-face {
4
+ font-family: helveticabold;
5
+ src: url(fonts/helvetica_bold_0-webfont.eot);
6
+ src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
7
+ font-weight: 400;
8
+ font-style: normal;
9
+ }
10
+
11
+ @font-face {
12
+ font-family: helveticaregular;
13
+ src: url(fonts/helvetica_0-webfont.eot);
14
+ src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
15
+ font-weight: 400;
16
+ font-style: normal;
17
+ }
18
+
19
+ @font-face {
20
+ font-family: helveticaneue-light;
21
+ src: url(fonts/helveticaneue-light.eot);
22
+ src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'), url(fonts/helveticaneue-light.woff) format('woff'), url(fonts/helveticaneue-light.ttf) format('truetype'), url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
23
+ font-weight: 400;
24
+ font-style: normal;
25
+ }
26
+
27
+ body {
28
+ margin: 0;
29
+ padding: 0;
30
+ }
31
+
32
+ .clear {
33
+ clear: both;
34
+ }
35
+
36
+ .space {
37
+ clear: both;
38
+ padding: 30px 0 0;
39
+ width: 100%;
40
+ float: left;
41
+ }
42
+
43
+ .like_txt {
44
+ margin: 30px 0 0;
45
+ padding: 0;
46
+ color: #12a252;
47
+ font-family: helveticaregular;
48
+ font-size: 20px;
49
+ line-height: 20px;
50
+ text-align: center;
51
+ }
52
+
53
+ .like_txt a {
54
+ color: #12a252;
55
+ }
56
+
57
+ .sfsibeforpstwpr iframe,
58
+ .sfsiaftrpstwpr iframe {
59
+ max-width: none;
60
+ }
61
+
62
+ .sfwp_fivestar_ul li {
63
+ display: block;
64
+ padding-right: 20px;
65
+ }
66
+
67
+ .shwthmbfraftr {
68
+ margin-top: 5px !important
69
+ }
70
+
71
+ label.toglpstpgsbttl {
72
+ float: left;
73
+ margin-top: 5px !important
74
+ }
75
+
76
+ .tab_3_icns.shwthmbfraftr .cstmdisplaysharingtxt {
77
+ float: left;
78
+ }
79
+
80
+ .tab6 ul.enough_waffling.sfsi_dsplyatend {
81
+ width: 24%;
82
+ float: left;
83
+ }
84
+
85
+ .tab4 ul.like_icon {
86
+ margin: 0;
87
+ padding: 20px 0 0;
88
+ list-style: none;
89
+ text-align: center;
90
+ }
91
+
92
+ .tab4 ul.like_icon li {
93
+ margin: 0;
94
+ padding: 0;
95
+ list-style: none;
96
+ display: inline-block;
97
+ }
98
+
99
+ .tab4 ul.like_icon li span {
100
+ margin: 0;
101
+ width: 54px;
102
+ display: block;
103
+ background: url(../images/count_bg.png) no-repeat;
104
+ height: 24px;
105
+ overflow: hidden;
106
+ padding: 10px 2px 2px;
107
+ font-size: 17px;
108
+ text-align: center;
109
+ line-height: 24px;
110
+ color: #5a6570;
111
+ }
112
+
113
+ .tab4 ul.like_icon li a {
114
+ color: #5a6570;
115
+ text-decoration: none;
116
+ }
117
+
118
+ .tab4 ul.enough_waffling {
119
+ margin: 0;
120
+ padding: 25px 0 27px;
121
+ list-style: none;
122
+ text-align: center;
123
+ }
124
+
125
+ .tab4 ul.enough_waffling li {
126
+ margin: 0 22px;
127
+ padding: 0;
128
+ list-style: none;
129
+ display: inline-block;
130
+ }
131
+
132
+ .tab4 ul.enough_waffling li span {
133
+ float: left;
134
+ }
135
+
136
+ .tab4 ul.enough_waffling li label {
137
+ margin: 0 0 0 20px;
138
+ float: left;
139
+ font-family: helveticaregular;
140
+ font-size: 18px;
141
+ font-weight: 400;
142
+ text-align: center;
143
+ line-height: 38px;
144
+ color: #5a6570;
145
+ }
146
+
147
+ .sfsi_mainContainer .checkbox {
148
+ width: 31px;
149
+ height: 31px;
150
+ background: url(../images/check_bg.jpg) no-repeat;
151
+ display: inherit;
152
+ }
153
+
154
+ .sfsi_mainContainer .radio {
155
+ width: 40px;
156
+ height: 40px;
157
+ background: url(../images/radio_bg.png) no-repeat;
158
+ display: inherit;
159
+ }
160
+
161
+ .sfsi_mainContainer .select {
162
+ width: 127px;
163
+ height: 47px;
164
+ font-size: 17px;
165
+ background: url(../images/select_bg.jpg) no-repeat;
166
+ display: block;
167
+ padding-left: 16px;
168
+ line-height: 49px;
169
+ }
170
+
171
+ .sfsi_mainContainer .line {
172
+ background: #eaebee;
173
+ height: 1px;
174
+ font-size: 0;
175
+ margin: 15px 0 0;
176
+ clear: both;
177
+ width: 100%;
178
+ float: left;
179
+ }
180
+
181
+ .specify_counts {
182
+ display: block;
183
+ margin-top: 15px;
184
+ padding-top: 15px;
185
+ clear: both;
186
+ width: 100%;
187
+ float: left;
188
+ border-top: 1px solid #eaebee;
189
+ }
190
+
191
+ .specify_counts .radio_section {
192
+ width: 30px;
193
+ float: left;
194
+ margin: 12px 10px 0 0;
195
+ }
196
+
197
+ .specify_counts .social_icon_like {
198
+ width: 54px;
199
+ float: left;
200
+ margin: 0 15px 0 0;
201
+ }
202
+
203
+ .specify_counts .social_icon_like ul {
204
+ margin: 0;
205
+ padding: 0;
206
+ list-style: none;
207
+ text-align: center;
208
+ }
209
+
210
+ .specify_counts .social_icon_like li {
211
+ margin: 0;
212
+ padding: 0;
213
+ list-style: none;
214
+ display: inline-block;
215
+ }
216
+
217
+ .specify_counts .social_icon_like li span {
218
+ margin: 0;
219
+ width: 54px;
220
+ display: block;
221
+ background: url(../images/count_bg.jpg) no-repeat;
222
+ height: 24px;
223
+ overflow: hidden;
224
+ padding: 10px 2px 2px;
225
+ font-family: helveticaregular;
226
+ font-size: 16px;
227
+ text-align: center;
228
+ line-height: 24px;
229
+ color: #5a6570;
230
+ }
231
+
232
+ .specify_counts .social_icon_like li a {
233
+ color: #5a6570;
234
+ text-decoration: none;
235
+ }
236
+
237
+ .specify_counts .listing {
238
+ width: 88%;
239
+ margin-top: -5px;
240
+ display: inherit;
241
+ float: left;
242
+ }
243
+
244
+ .specify_counts .listing ul {
245
+ margin: 0;
246
+ padding: 0;
247
+ list-style: none;
248
+ text-align: left;
249
+ }
250
+
251
+ .specify_counts .listing li {
252
+ margin: 15px 0 0;
253
+ padding: 0;
254
+ list-style: none;
255
+ clear: both;
256
+ line-height: 39px;
257
+ font-size: 17px;
258
+ }
259
+
260
+ .specify_counts .listing li span {
261
+ float: left;
262
+ margin-right: 20px;
263
+ }
264
+
265
+ .specify_counts .listing li .input {
266
+ background: #e5e5e5;
267
+ box-shadow: 2px 2px 3px #dcdcdc inset;
268
+ border: 0;
269
+ padding: 10px;
270
+ margin-left: 25px;
271
+ }
272
+
273
+ .specify_counts .listing li .input_facebook {
274
+ width: 288px;
275
+ background: #e5e5e5;
276
+ box-shadow: 2px 2px 3px #dcdcdc inset;
277
+ border: 0;
278
+ padding: 10px;
279
+ margin-left: 16px;
280
+ }
281
+
282
+ .save_button {
283
+ width: 450px;
284
+ padding-top: 30px;
285
+ clear: both;
286
+ margin: auto;
287
+ }
288
+
289
+ .save_button a {
290
+ background: #12a252;
291
+ text-align: center;
292
+ font-size: 23px;
293
+ color: #FFF !important;
294
+ display: block;
295
+ padding: 11px 0;
296
+ text-decoration: none;
297
+ }
298
+
299
+ .save_button a:hover {
300
+ background: #079345
301
+ }
302
+
303
+ .tab5 ul.share_icon_order {
304
+ margin: 0;
305
+ padding: 0;
306
+ list-style: none;
307
+ text-align: left;
308
+ }
309
+
310
+ .tab5 ul.share_icon_order li {
311
+ margin: 22px 6px 0 0;
312
+ padding: 0;
313
+ list-style: none;
314
+ float: left;
315
+ line-height: 37px;
316
+ }
317
+
318
+ .tab5 ul.share_icon_order li:last-child {
319
+ margin: 22px 0 0 3px;
320
+ }
321
+
322
+ .tab5 .row {
323
+ border-top: 1px solid #eaebee;
324
+ margin-top: 25px;
325
+ padding-top: 15px;
326
+ clear: both;
327
+ display: block;
328
+ width: 100%;
329
+ float: left;
330
+ font-family: helveticaregular;
331
+ line-height: 42px;
332
+ }
333
+
334
+ .tab5 .icons_size {
335
+ position: relative;
336
+ }
337
+
338
+ .tab5 .icons_size span {
339
+ margin-right: 18px;
340
+ display: block;
341
+ float: left;
342
+ font-size: 18px;
343
+ font-weight: 400;
344
+ line-height: 46px;
345
+ }
346
+
347
+ .tab5 .icons_size span.last {
348
+ margin-left: 55px;
349
+ }
350
+
351
+ .tab5 .icons_size input {
352
+ width: 73px;
353
+ background: #e5e5e5;
354
+ box-shadow: 2px 2px 3px #dcdcdc inset;
355
+ border: 0;
356
+ padding: 13px 13px 12px;
357
+ margin-right: 18px;
358
+ float: left;
359
+ display: block;
360
+ }
361
+
362
+ .tab5 .icons_size select.styled {
363
+ position: absolute;
364
+ left: 0;
365
+ width: 135px;
366
+ height: 46px;
367
+ line-height: 46px;
368
+ }
369
+
370
+ .tab5 .icons_size .field {
371
+ position: relative;
372
+ float: left;
373
+ display: block;
374
+ margin-right: 20px;
375
+ }
376
+
377
+ .tab5 .icons_size ins {
378
+ margin-right: 25px;
379
+ float: left;
380
+ font-size: 17px;
381
+ font-weight: 400;
382
+ text-decoration: none;
383
+ }
384
+
385
+ .tab5 .icons_size ins.leave_empty {
386
+ line-height: 23px;
387
+ }
388
+
389
+ .tab5 .icons_size {
390
+ padding-top: 15px;
391
+ }
392
+
393
+ .tab5 ul.enough_waffling {
394
+ margin: -5px 0 0;
395
+ padding: 0;
396
+ list-style: none;
397
+ text-align: center;
398
+ }
399
+
400
+ .tab5 .new_wind .row_onl ul.enough_waffling {
401
+ /*margin: 14px 0 0 167px;*/
402
+ margin: 20px 0 0 0;
403
+ padding: 0;
404
+ list-style: none;
405
+ height: 38px;
406
+ text-align: center;
407
+ width: 61%;
408
+ }
409
+
410
+ .tab5 ul.enough_waffling li {
411
+ margin: 0 22px;
412
+ padding: 0;
413
+ list-style: none;
414
+ display: inline-block;
415
+ float: left;
416
+ }
417
+
418
+ .tab5 ul.enough_waffling li span {
419
+ float: left;
420
+ }
421
+
422
+ .tab5 ul.enough_waffling li label {
423
+ margin: 0 0 0 20px;
424
+ float: left;
425
+ font-family: helveticaregular;
426
+ font-size: 18px;
427
+ font-weight: 400;
428
+ text-align: center;
429
+ line-height: 38px;
430
+ color: #5a6570;
431
+ }
432
+
433
+ .sticking p {
434
+ float: left;
435
+ font-size: 18px !important;
436
+ }
437
+
438
+ .sticking p.list {
439
+ width: 168px;
440
+ }
441
+
442
+ .sticking p.link {
443
+ margin: 3px 0 0 12px;
444
+ padding: 0 !important;
445
+ float: left;
446
+ }
447
+
448
+ .sticking .float {
449
+ margin-left: 188px;
450
+ margin-top: 3px;
451
+ float: left;
452
+ font-size: 17px;
453
+ }
454
+
455
+ .sticking ul {
456
+ margin: 0;
457
+ padding: 30px 0 0;
458
+ list-style: none;
459
+ float: left;
460
+ }
461
+
462
+ .sticking a {
463
+ color: #a4a9ad;
464
+ }
465
+
466
+ .sticking p {
467
+ line-height: 19px !important;
468
+ }
469
+
470
+ .sticking .field {
471
+ position: relative;
472
+ float: left;
473
+ display: block;
474
+ margin-left: 20px;
475
+ }
476
+
477
+ .sticking .field .select {
478
+ width: 206px;
479
+ height: 47px;
480
+ background: url(../images/select_bg1.jpg) no-repeat;
481
+ display: block;
482
+ padding-left: 10px;
483
+ }
484
+
485
+ .sticking .field select.styled {
486
+ position: absolute;
487
+ left: 0;
488
+ top: 0;
489
+ width: 211px;
490
+ line-height: 46px;
491
+ height: 46px;
492
+ }
493
+
494
+ .mouseover_field {
495
+ width: 455px;
496
+ float: left;
497
+ font-size: 18px;
498
+ margin-top: 10px;
499
+ }
500
+
501
+ .mouseover_field label {
502
+ width: 125px;
503
+ float: left;
504
+ }
505
+
506
+ .mouseover_field input {
507
+ width: 256px;
508
+ float: left;
509
+ background: #e5e5e5;
510
+ box-shadow: 2px 2px 3px #dcdcdc inset;
511
+ border: 0;
512
+ padding: 10px;
513
+ }
514
+
515
+ .pop_up_box {
516
+ width: 474px;
517
+ background: #FFF;
518
+ box-shadow: 0 0 5px 3px #d8d8d8;
519
+ margin: 200px auto;
520
+ padding: 20px 25px 0px;
521
+ font-family: helveticaregular;
522
+ color: #5a6570;
523
+ min-height: 250px;
524
+ position: relative;
525
+ }
526
+
527
+ .pop_up_box h4,
528
+ .pop_up_box_ex h4 {
529
+ font-size: 20px;
530
+ color: #5a6570;
531
+ text-align: center;
532
+ margin: 0;
533
+ padding: 0;
534
+ line-height: 22px;
535
+ }
536
+
537
+ .pop_up_box p,
538
+ .pop_up_box_ex p {
539
+ font-size: 17px;
540
+ line-height: 28px;
541
+ color: #5a6570;
542
+ text-align: left;
543
+ margin: 0;
544
+ padding: 25px 0 0;
545
+ font-family: helveticaregular;
546
+ }
547
+
548
+ .sfsi_popupcntnr {
549
+ float: left;
550
+ width: 100%
551
+ }
552
+
553
+ .sfsi_popupcntnr>h3 {
554
+ color: #000;
555
+ float: left;
556
+ font-weight: 700;
557
+ margin-bottom: 5px;
558
+ width: 100%
559
+ }
560
+
561
+ ul.flwstep {
562
+ float: left;
563
+ width: 100%
564
+ }
565
+
566
+ ul.flwstep>li {
567
+ color: #000;
568
+ font-size: 16px;
569
+ margin: 5px;
570
+ }
571
+
572
+ .upldbtn {
573
+ float: left;
574
+ text-align: center;
575
+ width: 100%
576
+ }
577
+
578
+ .upload_butt {
579
+ background-color: #12a252;
580
+ border: none;
581
+ color: #fff;
582
+ font-weight: 700;
583
+ margin-top: 10px;
584
+ padding: 7px 22px;
585
+ width: auto;
586
+ cursor: pointer;
587
+ font-size: 19px;
588
+ }
589
+
590
+ .pop_up_box .button {
591
+ background: #12a252;
592
+ font-size: 22px;
593
+ line-height: 24px;
594
+ color: #5a6570;
595
+ text-align: center;
596
+ min-height: 80px;
597
+ margin-top: 32px;
598
+ box-shadow: none;
599
+ }
600
+
601
+ .pop_up_box .button:hover {
602
+ box-shadow: none !important;
603
+ }
604
+
605
+ .pop_up_box .button a.activate {
606
+ padding: 0px 0;
607
+ }
608
+
609
+ .pop_up_box a,
610
+ .pop_up_box_ex a {
611
+ color: #a4a9ad;
612
+ font-size: 20px;
613
+ text-decoration: none;
614
+ text-align: center;
615
+ display: inline-block;
616
+ margin-top: 18px;
617
+ width: 100%;
618
+ }
619
+
620
+ .pop_up_box .upload {
621
+ width: 100%;
622
+ float: left;
623
+ text-align: left;
624
+ margin-top: 15px;
625
+ height: 46px;
626
+ }
627
+
628
+ .pop_up_box .upload label {
629
+ width: 135px;
630
+ float: left;
631
+ line-height: 45px;
632
+ font-size: 18px;
633
+ font-family: helveticaregular;
634
+ text-align: left;
635
+ }
636
+
637
+ .pop_up_box .upload input[type=text] {
638
+ width: 248px;
639
+ float: left;
640
+ background: #e5e5e5;
641
+ box-shadow: 2px 2px 3px #dcdcdc inset;
642
+ border: 0;
643
+ padding: 0 10px;
644
+ font-size: 16px;
645
+ height: 44px;
646
+ text-align: left;
647
+ color: #5a6570;
648
+ font-family: helveticaregular;
649
+ }
650
+
651
+ .pop_up_box .upload input.upload_butt {
652
+ width: 100px;
653
+ background: #12a252;
654
+ box-shadow: 0 0 0;
655
+ border: 0;
656
+ text-align: center;
657
+ font-size: 18px;
658
+ color: #fff;
659
+ font-family: helveticaregular;
660
+ height: 45px;
661
+ right: 32px;
662
+ top: 71px;
663
+ position: absolute;
664
+ }
665
+
666
+ .pop_up_box .upload a {
667
+ color: #12a252;
668
+ font-size: 18px;
669
+ text-decoration: underline;
670
+ font-family: helveticaregular;
671
+ margin: 0 0 16px 140px;
672
+ }
673
+
674
+ .pop_up_box a:hover,
675
+ .pop_up_box_ex a:hover {
676
+ color: #a4a9ad;
677
+ }
678
+
679
+ .inr_cont .fb_url {
680
+ clear: both;
681
+ }
682
+
683
+ .inr_cont .fb_url .checkbox,
684
+ .inr_cont .fb_url input.add,
685
+ .inr_cont .fb_url label,
686
+ .inr_cont .fb_url lable {
687
+ float: left;
688
+ }
689
+
690
+ .inr_cont .fb_url input.add {
691
+ margin-left: 19px;
692
+ }
693
+
694
+ .inr_cont .fb_url .checkbox {
695
+ margin: 6px 0 0;
696
+ }
697
+
698
+ .inr_cont .fb_url label {
699
+ /*line-height: 41px; margin: 0 0 0 15px;*/
700
+ line-height: 22px;
701
+ margin: 10px 0 0 15px;
702
+ font-size: 17px;
703
+ }
704
+
705
+ .inr_cont textarea.add_txt {
706
+ resize: none;
707
+ margin: 0 0 0 19px !important;
708
+ height: 60px;
709
+ }
710
+
711
+ .tab2 .inr_cont textarea.add_txt {
712
+ width: 382px !important;
713
+ height: 90px;
714
+ overflow: hidden;
715
+ }
716
+
717
+ .tab2 .inr_cont input.add {
718
+ width: 417px;
719
+ }
720
+
721
+ .red_txt,
722
+ .tab2 .red_txt {
723
+ color: #ef4745 !important;
724
+ text-align: center !important;
725
+ padding-top: 5px !important;
726
+ }
727
+
728
+ .green_txt {
729
+ color: #12A252 !important;
730
+ text-align: center !important;
731
+ padding-top: 5px !important;
732
+ }
733
+
734
+ .red_txt {
735
+ color: #f80000 !important;
736
+ text-align: center !important;
737
+ padding-top: 5px !important;
738
+ }
739
+
740
+ .linked_tab_2 .fb_url label {
741
+ /* width: 32%;*/
742
+ /* width: 26.99%;*/
743
+ width: 22%;
744
+ }
745
+
746
+ .twt_tab_2 label {
747
+ width: 18%
748
+ }
749
+
750
+ .bdr_top {
751
+ border-top: none !important;
752
+ }
753
+
754
+ .linked_tab_2 .fb_url input.link_dbl {
755
+ margin-bottom: 6px;
756
+ }
757
+
758
+ .tab3 {
759
+ overflow: hidden;
760
+ }
761
+
762
+ .tab3 .row {
763
+ /*border-top: 1px solid #EAEBEE;*/
764
+ padding: 25px 0;
765
+ clear: both;
766
+ overflow: hidden;
767
+ }
768
+
769
+ .tab3 ul.tab_3_list {
770
+ overflow: hidden;
771
+ margin: 4px 0 11px;
772
+ }
773
+
774
+ ul.tab_3_list li {
775
+ background: url(../images/tab_3_list_bg.jpg) 13px 7px no-repeat;
776
+ padding: 0 0 0 30px;
777
+ color: #778088;
778
+ font-family: helveticaregular;
779
+ font-size: 17px;
780
+ margin-bottom: 4px;
781
+ }
782
+
783
+ .tab5 ul.tab_3_list li {
784
+ background: url(../images/tab_3_list_bg.jpg) 13px 18px no-repeat;
785
+ }
786
+
787
+ .tab3 .row h3 {
788
+ /* margin: 0 0 20px;*/
789
+ margin: 20px 0 0px;
790
+ color: #414951;
791
+ font-family: helveticabold;
792
+ font-size: 20px;
793
+ }
794
+
795
+ ul.tab_3_icns {
796
+ list-style: none;
797
+ margin: 10px 0 0;
798
+ overflow: hidden;
799
+ }
800
+
801
+ ul.tab_3_icns li {
802
+ width: 100%;
803
+ margin: 0 0 21px;
804
+ float: left;
805
+ }
806
+
807
+ ul.tab_3_icns label {
808
+ float: left;
809
+ line-height: 42px;
810
+ /*margin: 0 20px;*/
811
+ color: #69737C;
812
+ font-size: 18px;
813
+ font-family: helveticaregular;
814
+ min-width: 125px;
815
+ }
816
+
817
+ ul.tab_3_icns li .icns_tab_3,
818
+ ul.tab_3_icns li .radio {
819
+ float: left;
820
+ }
821
+
822
+ .tab3 .sub_row h4 {
823
+ color: #a4a9ad !important;
824
+ }
825
+
826
+ .tab3 .sub_row p {
827
+ padding-top: 18px !important;
828
+ clear: both;
829
+ overflow: hidden;
830
+ }
831
+
832
+ .sub_row .sub_sub_box p {
833
+ padding-top: 18px !important;
834
+ }
835
+
836
+ .tab3 .sub_row .checkbox {
837
+ float: left;
838
+ margin-top: 4px;
839
+ }
840
+
841
+ .tab3 .sub_row .sub_sub_box {
842
+ width: 80%;
843
+ margin: 7px 0 15px 10%;
844
+ float: left;
845
+ }
846
+
847
+ .tab3 .sub_row input.smal_inpt {
848
+ width: 73px;
849
+ background: #e5e5e5;
850
+ box-shadow: 2px 2px 3px #dcdcdc inset;
851
+ border: 0;
852
+ padding: 10px;
853
+ float: left;
854
+ margin-left: 10px;
855
+ }
856
+
857
+ .tab3 .sub_row .drop_lst {
858
+ border: 1px solid #d6d6d6;
859
+ font-size: 16px;
860
+ color: #5a6570;
861
+ width: 120px;
862
+ }
863
+
864
+ .tab3 .first_row,
865
+ .tab3 .first_row p,
866
+ .tab3 .first_row p .radio,
867
+ .tab3 .first_row p label {
868
+ float: left;
869
+ }
870
+
871
+ .tab3 .first_row {
872
+ width: 90%;
873
+ float: left;
874
+ }
875
+
876
+ .tab3 .first_row p {
877
+ padding: 0 !important;
878
+ }
879
+
880
+ .tab3 .first_row p label {
881
+ line-height: 44px;
882
+ margin: 0 10px;
883
+ }
884
+
885
+ .tab3 .first_row p:last-child {
886
+ margin-left: 27%
887
+ }
888
+
889
+ .tab3 .tab_1_sav {
890
+ padding-top: 20px !important;
891
+ margin: 10px auto 20px;
892
+ }
893
+
894
+ .suc_msg {
895
+ background: #12A252;
896
+ color: #FFF;
897
+ display: none;
898
+ font-size: 23px;
899
+ padding: 10px;
900
+ text-align: left;
901
+ text-decoration: none;
902
+ }
903
+
904
+ .error_msg {
905
+ background: #D22B30;
906
+ color: #FFF;
907
+ display: none;
908
+ font-size: 23px;
909
+ padding: 10px;
910
+ text-align: left;
911
+ text-decoration: none;
912
+ }
913
+
914
+ .fileUPInput {
915
+ cursor: pointer;
916
+ position: relative;
917
+ top: -43px;
918
+ right: 0;
919
+ z-index: 99;
920
+ height: 42px;
921
+ font-size: 5px;
922
+ opacity: 0;
923
+ -moz-opacity: 0;
924
+ filter: alpha(opacity=0);
925
+ width: 100%
926
+ }
927
+
928
+ .inputWrapper {
929
+ height: 20px;
930
+ width: 50px;
931
+ overflow: hidden;
932
+ position: relative;
933
+ cursor: pointer;
934
+ }
935
+
936
+ .custom-txt {
937
+ background: none !important;
938
+ padding-left: 2px !important;
939
+ }
940
+
941
+ .custom-img {
942
+ float: left;
943
+ margin-left: 20px;
944
+ }
945
+
946
+ .loader-img {
947
+ float: left;
948
+ margin-left: -70px;
949
+ display: none;
950
+ }
951
+
952
+ .pop-overlay {
953
+ position: fixed;
954
+ top: 0;
955
+ left: 0;
956
+ width: 100%;
957
+ height: 100%;
958
+ backgound-color: #d3d3d3;
959
+ z-index: 10;
960
+ padding: 20px;
961
+ display: none;
962
+ }
963
+
964
+ .fb-overlay {
965
+ position: fixed;
966
+ top: 0;
967
+ left: 0;
968
+ width: 100%;
969
+ height: 100%;
970
+ backgound-color: #d3d3d3;
971
+ z-index: -1000;
972
+ padding: 20px;
973
+ opacity: 0;
974
+ display: block;
975
+ }
976
+
977
+ .inputError {
978
+ border: 1px solid #f80000 !important;
979
+ }
980
+
981
+ .sfsicloseBtn {
982
+ position: absolute;
983
+ top: 0;
984
+ right: 0;
985
+ cursor: pointer;
986
+ }
987
+
988
+ .top_arow {
989
+ background: url(../images/top_aro.png) no-repeat;
990
+ position: absolute;
991
+ top: -29px;
992
+ left: 38%;
993
+ width: 33px;
994
+ height: 29px;
995
+ backgoround-color: #fff;
996
+ }
997
+
998
+ .sfsi_tool_tip_2 .top_arow .sfsi_inside,
999
+ .top_arow .sfsi_inside {
1000
+ float: left;
1001
+ }
1002
+
1003
+ .sfsi_tool_tip_2 .tool_tip>img,
1004
+ .tool_tip>img {
1005
+ display: inline-block;
1006
+ margin-right: 4px;
1007
+ float: left;
1008
+ }
1009
+
1010
+ .norm_row {
1011
+ float: left;
1012
+ min-width: 25px;
1013
+ }
1014
+
1015
+ .norm_row a {
1016
+ border: none;
1017
+ display: inline-block;
1018
+ position: relative;
1019
+ float: left;
1020
+ }
1021
+
1022
+ .sfsi_tool_tip_2 a {
1023
+ min-height: 0 !important;
1024
+ }
1025
+
1026
+ .sfsi_widget {
1027
+ min-height: 55px;
1028
+ }
1029
+
1030
+ .sfsi_widget a img {
1031
+ box-shadow: none !important;
1032
+ outline: 0;
1033
+ }
1034
+
1035
+ .sfsi_wicons {
1036
+ display: inline-block;
1037
+ color: #000;
1038
+ }
1039
+
1040
+ .sel-active {
1041
+ background-color: #f7941d;
1042
+ }
1043
+
1044
+ .sfsi_outr_div .close {
1045
+ position: absolute;
1046
+ right: 18px;
1047
+ top: 18px;
1048
+ }
1049
+
1050
+ .sfsi_outr_div h2 {
1051
+ color: #778088;
1052
+ font-family: helveticaregular;
1053
+ font-size: 26px;
1054
+ margin: 0 0 9px;
1055
+ padding: 0;
1056
+ text-align: center;
1057
+ font-weight: 400;
1058
+ }
1059
+
1060
+ .sfsi_outr_div ul li a {
1061
+ color: #5A6570;
1062
+ text-decoration: none;
1063
+ }
1064
+
1065
+ .sfsi_outr_div ul li {
1066
+ display: inline-block;
1067
+ list-style: none;
1068
+ margin: 0;
1069
+ padding: 0;
1070
+ float: none;
1071
+ }
1072
+
1073
+ .expanded-area {
1074
+ display: none;
1075
+ }
1076
+
1077
+ .sfsi_wicons a {
1078
+ -webkit-transition: all .2s ease-in-out;
1079
+ -moz-transition: all .2s ease-in-out;
1080
+ -o-transition: all .2s ease-in-out;
1081
+ -ms-transition: all .2s ease-in-out;
1082
+ }
1083
+
1084
+ .scale,
1085
+ .scale-div {
1086
+ -webkit-transform: scale(1.1);
1087
+ -moz-transform: scale(1.1);
1088
+ -o-transform: scale(1.1);
1089
+ transform: scale(1.1);
1090
+ }
1091
+
1092
+ .sfsi_Sicons {
1093
+ float: left;
1094
+ }
1095
+
1096
+ .sfsi_Sicons .sf_subscrbe {
1097
+ margin: 2px 3px 3px 0;
1098
+ line-height: 20px;
1099
+ }
1100
+
1101
+ .sfsi_Sicons .sf_fb {
1102
+ margin: 0 4px 0 5px;
1103
+ line-height: 20px;
1104
+ }
1105
+
1106
+ .sfsi_Sicons .sf_twiter {
1107
+ margin: 2px 7px 0 4px;
1108
+ line-height: 17px;
1109
+ }
1110
+
1111
+ .sfsi_Sicons.left .sf_subscrbe {
1112
+ margin: 2px 8px 3px 0;
1113
+ }
1114
+
1115
+ .sfsi_Sicons.left .sf_fb {
1116
+ margin: 0 8px 0 0;
1117
+ }
1118
+
1119
+ .sfsi_Sicons.left .sf_twiter {
1120
+ margin: 2px 7px 0 0;
1121
+ }
1122
+
1123
+ .sfsi_Sicons.right .sf_subscrbe {
1124
+ margin: 2px 0 3px;
1125
+ }
1126
+
1127
+ .sfsi_Sicons.right .sf_fb {
1128
+ margin: 0 0 0 7px;
1129
+ }
1130
+
1131
+ .sfsi_Sicons.right .sf_twiter {
1132
+ margin: 2px 0 0 8px;
1133
+ }
1134
+
1135
+ .sfsi_Sicons .sf_subscrbe,
1136
+ .sfsi_Sicons .sf_twiter {
1137
+ position: relative;
1138
+ width: 75px;
1139
+ }
1140
+
1141
+ .sfsi_Sicons .sf_twiter iframe {
1142
+ margin: 0px;
1143
+ height: 20px !important;
1144
+ overflow: visible !important;
1145
+ }
1146
+
1147
+ .sfsi_Sicons .sf_twiter iframe #widget {
1148
+ overflow: visible !important;
1149
+ }
1150
+
1151
+ .sfsi_Sicons .sf_subscrbe a {
1152
+ width: auto;
1153
+ float: left;
1154
+ border: medium none;
1155
+ padding-top: 0px;
1156
+ }
1157
+
1158
+ .sfsi_Sicons .sf_subscrbe a:focus {
1159
+ outline: medium none;
1160
+ }
1161
+
1162
+ .sfsi_Sicons .sf_subscrbe a img {
1163
+ width: 65px;
1164
+ float: left;
1165
+ height: 20px !important;
1166
+ }
1167
+
1168
+ .sfsi_Sicons .sf_fb {
1169
+ position: relative;
1170
+ width: 75px;
1171
+ }
1172
+
1173
+ .sfsi_Sicons .fb_iframe_widget {
1174
+ float: left;
1175
+ /*min-width: 98px;*/
1176
+ width: 73px;
1177
+ margin: 2px 0 0;
1178
+ }
1179
+
1180
+ .sfsi_pop_up .button a:hover {
1181
+ color: #fff;
1182
+ }
1183
+
1184
+ .sfsi_pop_up .button:hover {
1185
+ background: #12a252;
1186
+ color: #fff;
1187
+ border: none;
1188
+ }
1189
+
1190
+ ul.icn_listing li .right_info a {
1191
+ outline: 0;
1192
+ font-family: helveticaregular;
1193
+ }
1194
+
1195
+ .upload_pop_up .upload_butt {
1196
+ line-height: 27px;
1197
+ margin-left: 6px;
1198
+ }
1199
+
1200
+ .drop_lsts {
1201
+ left: 220px;
1202
+ position: relative;
1203
+ top: -40px;
1204
+ }
1205
+
1206
+ .drop_lsts .styled {
1207
+ top: -42px;
1208
+ width: 127px;
1209
+ height: 33px;
1210
+ }
1211
+
1212
+ .drop_lsts span {
1213
+ line-height: 50px;
1214
+ }
1215
+
1216
+ .drag_drp {
1217
+ left: 11px;
1218
+ position: relative;
1219
+ top: 38px;
1220
+ font-size: 17px;
1221
+ }
1222
+
1223
+ .listing ul li label {
1224
+ width: 224px;
1225
+ float: left;
1226
+ }
1227
+
1228
+ .row_onl {
1229
+ width: 100%;
1230
+ float: left;
1231
+ }
1232
+
1233
+ #sfsi_Show_popupOn_PageIDs option.sel-active {
1234
+ background: #f7941d;
1235
+ }
1236
+
1237
+ .sfsi_inside div iframe {
1238
+ float: left;
1239
+ margin: 0;
1240
+ }
1241
+
1242
+ .sfsi_inside div #___plus_0,
1243
+ .sfsi_inside div #___plusone_0 {
1244
+ height: 27px;
1245
+ }
1246
+
1247
+ .sfsi_outr_div li {
1248
+ float: left;
1249
+ }
1250
+
1251
+ .sfsi_tool_tip_2 .sfsi_inside div {
1252
+ min-height: 0;
1253
+ }
1254
+
1255
+ #___plus_1>iframe {
1256
+ height: 30px;
1257
+ }
1258
+
1259
+ .main_contant h1 {
1260
+ margin: 0 0 19px;
1261
+ }
1262
+
1263
+ .main_contant p {
1264
+ margin: 0 0 26px;
1265
+ }
1266
+
1267
+ .main_contant p>a {
1268
+ color: #1a1d20;
1269
+ text-decoration: underline;
1270
+ }
1271
+
1272
+ .tab1 .gary_bg {
1273
+ background: #f1f1f1;
1274
+ }
1275
+
1276
+ #accordion {
1277
+ margin-top: 25px;
1278
+ }
1279
+
1280
+ .main_contant p>a,
1281
+ .tab1 p span {
1282
+ font-family: helveticabold;
1283
+ }
1284
+
1285
+ .wapper .ui-accordion-header-active {
1286
+ margin-top: 20px !important;
1287
+ }
1288
+
1289
+ .wapper .tab2 {
1290
+ padding: 20px 33px 12px 34px !important;
1291
+ }
1292
+
1293
+ .wapper .tab2 p {
1294
+ margin-bottom: 6px;
1295
+ }
1296
+
1297
+ .tab2 .twt_tab_2 label {
1298
+ width: 175px;
1299
+ }
1300
+
1301
+ .tab2 .twt_fld {
1302
+ margin: 16px 0 23px;
1303
+ float: left;
1304
+ }
1305
+
1306
+ .tab2 .twt_fld_2 {
1307
+ margin: 0 0 12px;
1308
+ float: left;
1309
+ }
1310
+
1311
+ .tab2 .utube_inn {
1312
+ padding-bottom: 2px;
1313
+ float: left;
1314
+ }
1315
+
1316
+ .tab2 .utube_inn label {
1317
+ max-width: 90%
1318
+ }
1319
+
1320
+ .tab2 .utube_inn label span {
1321
+ font-family: helveticabold;
1322
+ }
1323
+
1324
+ .tab2 .inr_cont p>a {
1325
+ font-family: helveticaneue-light;
1326
+ color: #778088;
1327
+ text-decoration: underline;
1328
+ }
1329
+
1330
+ .pinterest_section .inr_cont .pint_url {
1331
+ float: left;
1332
+ padding-top: 6px;
1333
+ clear: both;
1334
+ }
1335
+
1336
+ .pinterest_section .inr_cont .add {
1337
+ width: 417px !important;
1338
+ }
1339
+
1340
+ .linkedin_section .link_1,
1341
+ .linkedin_section .link_2,
1342
+ .linkedin_section .link_3,
1343
+ .linkedin_section .link_4 {
1344
+ float: left;
1345
+ width: 100%
1346
+ }
1347
+
1348
+ .linkedin_section .link_1 input.add,
1349
+ .linkedin_section .link_2 input.add,
1350
+ .linkedin_section .link_3 input.add,
1351
+ .linkedin_section .link_4 input.add {
1352
+ width: 417px;
1353
+ }
1354
+
1355
+ .linkedin_section .link_1 {
1356
+ margin-bottom: 7px;
1357
+ }
1358
+
1359
+ .linkedin_section .link_2 {
1360
+ margin-bottom: 12px;
1361
+ }
1362
+
1363
+ .linkedin_section .link_3,
1364
+ .linkedin_section .link_4 {
1365
+ margin-bottom: 13px;
1366
+ }
1367
+
1368
+ .tab2 .linkedin_section .link_4 {
1369
+ margin-bottom: 0;
1370
+ }
1371
+
1372
+ ul.tab_3_list li span {
1373
+ font-family: helveticaregular;
1374
+ }
1375
+
1376
+ #accordion .tab4 h4,
1377
+ #accordion1 .tab4 h4 {
1378
+ color: #414951;
1379
+ font-size: 20px;
1380
+ }
1381
+
1382
+ .specify_counts .listing li .input {
1383
+ width: 73px;
1384
+ }
1385
+
1386
+ .sfsi_fbpgidwpr {
1387
+ width: 160px;
1388
+ float: left;
1389
+ font-weight: bold;
1390
+ font-size: 17px;
1391
+ color: #000000;
1392
+ }
1393
+
1394
+ .sfsi_fbpgiddesc {
1395
+ font-weight: normal;
1396
+ width: 42%;
1397
+ font-size: 14px;
1398
+ color: #888888;
1399
+ padding: 4px 0 0 60px;
1400
+ }
1401
+
1402
+ .specify_counts .listing li .input.mypginpt {
1403
+ width: 288px;
1404
+ }
1405
+
1406
+ .tab3 .Shuffle_auto .sub_sub_box .tab_3_option {
1407
+ padding-top: 0 !important;
1408
+ margin-bottom: 10px !important;
1409
+ }
1410
+
1411
+ .tab4 {
1412
+ padding-top: 35px !important;
1413
+ }
1414
+
1415
+ .tab4 .save_button {
1416
+ padding-top: 46px;
1417
+ }
1418
+
1419
+ .tab5 {
1420
+ padding-top: 31px !important;
1421
+ }
1422
+
1423
+ .tab7 {
1424
+ padding-top: 28px !important;
1425
+ }
1426
+
1427
+ .tab5 .row_onl {
1428
+ margin-top: 15px;
1429
+ }
1430
+
1431
+ .tab5 .sticking .link>a {
1432
+ color: #a4a9ad;
1433
+ text-decoration: underline;
1434
+ }
1435
+
1436
+ .tab5 .mouse_txt h4 {
1437
+ /*margin-bottom: 8px!important;*/
1438
+ padding-bottom: 30px !important;
1439
+ }
1440
+
1441
+ .tab5 .save_button {
1442
+ padding-top: 54px;
1443
+ }
1444
+
1445
+ .tab7 .like_pop_box h2 {
1446
+ font-family: helveticabold;
1447
+ text-align: center;
1448
+ color: #414951;
1449
+ font-size: 26px;
1450
+ }
1451
+
1452
+ .tab1 ul.icn_listing li .right_info label:hover {
1453
+ text-decoration: none !important;
1454
+ }
1455
+
1456
+ .tab1 ul.icn_listing li .right_info label.expanded-area {
1457
+ clear: both;
1458
+ float: left;
1459
+ margin-top: 14px;
1460
+ width: 100%;
1461
+ }
1462
+
1463
+ .tab7 .space {
1464
+ margin-top: 14px;
1465
+ }
1466
+
1467
+ .tab7 .pop_up_show label {
1468
+ font-family: helveticaregular !important;
1469
+ }
1470
+
1471
+ .tab7 .save_button {
1472
+ padding-top: 78px;
1473
+ }
1474
+
1475
+ .like_txt a {
1476
+ text-decoration: none;
1477
+ font-family: helveticaregular;
1478
+ }
1479
+
1480
+ .bdr_btm_non {
1481
+ border-bottom: none !important;
1482
+ }
1483
+
1484
+ .tab1 .tab_1_sav {
1485
+ padding-top: 13px;
1486
+ }
1487
+
1488
+ #accordion .tab2 .facebook_section .inr_cont p.extra_sp,
1489
+ #accordion1 .tab2 .facebook_section .inr_cont p.extra_sp {
1490
+ padding-top: 7px;
1491
+ }
1492
+
1493
+ .tab2 .custom_section {
1494
+ width: 100%
1495
+ }
1496
+
1497
+ .tab7 {
1498
+ padding-bottom: 40px !important;
1499
+ }
1500
+
1501
+ .tab9 .save_button {
1502
+ padding-top: 40px;
1503
+ }
1504
+
1505
+ .tab9 .save_button a {
1506
+ padding: 16px 0;
1507
+ }
1508
+
1509
+ .tab2 .twitter_section .twt_fld input.add,
1510
+ .tab2 .twitter_section .twt_fld_2 textarea.add_txt {
1511
+ width: 464px !important;
1512
+ }
1513
+
1514
+ .tab2 .utube_inn .fb_url label span {
1515
+ font-family: helveticaneue-light;
1516
+ }
1517
+
1518
+ .tab1 label,
1519
+ .tab2 label,
1520
+ .tab3 label,
1521
+ .tab4 label,
1522
+ .tab5 label,
1523
+ .tab6 label,
1524
+ .tab7 label,
1525
+ .tab8 label {
1526
+ cursor: default !important;
1527
+ }
1528
+
1529
+ .tab5 .new_wind h4 {
1530
+ margin-bottom: 11px !important;
1531
+ }
1532
+
1533
+ .pop_up_box .fb_2 span {
1534
+ height: 28px !important;
1535
+ }
1536
+
1537
+ .pop_up_box .sfsi_tool_tip_2 .fbb .fb_1 a {
1538
+ margin-top: 0;
1539
+ }
1540
+
1541
+ .tab6 .social_icon_like1 ul li span {
1542
+ margin-top: -1px;
1543
+ }
1544
+
1545
+ #sfpageLoad {
1546
+ background: url(../images/ajax-loader.gif) 50% 50% no-repeat #F9F9F9;
1547
+ height: 100%;
1548
+ left: 160px;
1549
+ opacity: 1;
1550
+ position: fixed;
1551
+ top: 0;
1552
+ width: 92%;
1553
+ z-index: 9999;
1554
+ }
1555
+
1556
+ .sfsi_tool_tip_2,
1557
+ .tool_tip {
1558
+ background: #FFF;
1559
+ border: 1px solid #e7e7e7;
1560
+ box-shadow: #e7e7e7 0 0 2px 1px;
1561
+ display: block;
1562
+ float: left;
1563
+ margin: 0 0 0 -52px;
1564
+ padding: 5px 14px 5px 14px;
1565
+ position: absolute;
1566
+ z-index: 10000;
1567
+ border-bottom: #e5e5e5 solid 4px;
1568
+ width: 100px;
1569
+ }
1570
+
1571
+ .sfsi_tool_tip_2 {
1572
+ display: inline-table;
1573
+ }
1574
+
1575
+ .inerCnt,
1576
+ .inerCnt:hover,
1577
+ .inerCnt>a,
1578
+ .inerCnt>a:hover,
1579
+ .widget-area .widget a {
1580
+ outline: 0;
1581
+ }
1582
+
1583
+ .sfsi_tool_tip_2_inr {
1584
+ bottom: 90%;
1585
+ left: 20%;
1586
+ opacity: 0;
1587
+ }
1588
+
1589
+ .sfsi_tool_tip_2 .bot_arow {
1590
+ background: url(../images/bot_tip_icn.png) no-repeat;
1591
+ position: absolute;
1592
+ bottom: -21px;
1593
+ left: 50%;
1594
+ width: 15px;
1595
+ height: 21px;
1596
+ margin-left: -5px;
1597
+ }
1598
+
1599
+ .sfsi_tool_tip_2 .top_big_arow {
1600
+ position: absolute;
1601
+ -webkit-transform: rotate(180deg);
1602
+ -moz-transform: rotate(180deg);
1603
+ -ms-transform: rotate(180deg);
1604
+ -o-transform: rotate(180deg);
1605
+ transform: rotate(180deg);
1606
+ top: -21px;
1607
+ left: 50%;
1608
+ width: 15px;
1609
+ height: 21px;
1610
+ margin-right: -5px;
1611
+ }
1612
+
1613
+ .sfsi_tool_tip_2_inr .gpls_visit>a,
1614
+ .sfsi_tool_tip_2_inr .prints_visit_1 a,
1615
+ .sfsi_tool_tip_2_inr .utub_visit>a {
1616
+ margin-top: 0;
1617
+ }
1618
+
1619
+ .sfsi_tool_tip_2_inr .linkin_1 a,
1620
+ .sfsi_tool_tip_2_inr .linkin_2 a,
1621
+ .sfsi_tool_tip_2_inr .linkin_3 a,
1622
+ .sfsi_tool_tip_2_inr .linkin_4 a,
1623
+ .sfsi_tool_tip_2_inr .prints_visit a {
1624
+ margin: 0;
1625
+ }
1626
+
1627
+ .sfsiTlleftBig {
1628
+ bottom: 121%;
1629
+ left: 22%;
1630
+ margin-left: -54%
1631
+ }
1632
+
1633
+ .sfsiTlleft {
1634
+ bottom: 100%;
1635
+ left: 50%;
1636
+ margin-left: -66px;
1637
+ margin-bottom: 2px;
1638
+ }
1639
+
1640
+ .sfsi_plc_btm {
1641
+ bottom: auto;
1642
+ top: 100%;
1643
+ left: 50%;
1644
+ margin-left: -63px;
1645
+ margin-top: -6px;
1646
+ margin-bottom: auto;
1647
+ }
1648
+
1649
+ .inerCnt {
1650
+ position: relative;
1651
+ z-index: inherit !important;
1652
+ float: left;
1653
+ width: 100%;
1654
+ float: left;
1655
+ }
1656
+
1657
+ .sfsi_wicons {
1658
+ margin-bottom: 30px;
1659
+ position: relative;
1660
+ padding-top: 5px;
1661
+ }
1662
+
1663
+ .norm_row .bot_no {
1664
+ position: absolute;
1665
+ padding: 1px 0;
1666
+ font-size: 12px !important;
1667
+ text-align: center;
1668
+ line-height: 12px !important;
1669
+ background: #fff;
1670
+ border-radius: 5px;
1671
+ left: 50%;
1672
+ margin-left: -20px;
1673
+ z-index: 9;
1674
+ border: 1px solid #333;
1675
+ top: 100%;
1676
+ white-space: pre;
1677
+ -webkit-box-sizing: border-box;
1678
+ -moz-box-sizing: border-box;
1679
+ box-sizing: border-box;
1680
+ margin-top: 0px;
1681
+ width: 40px;
1682
+ }
1683
+
1684
+ .norm_row .bot_no:before {
1685
+ content: url(images/count_top_arow.png);
1686
+ position: absolute;
1687
+ height: 9px;
1688
+ margin-left: -7.5px;
1689
+ top: -10px;
1690
+ left: 50%;
1691
+ width: 15px;
1692
+ }
1693
+
1694
+ .bot_no.sfsiSmBtn {
1695
+ font-size: 10px;
1696
+ margin-top: 4px;
1697
+ }
1698
+
1699
+ .bot_no.sfsiSmBtn:before {
1700
+ margin-left: -8px;
1701
+ top: -9px;
1702
+ }
1703
+
1704
+ .norm_row .cbtn_vsmall {
1705
+ font-size: 9px;
1706
+ left: -28%;
1707
+ top: 4px;
1708
+ }
1709
+
1710
+ .norm_row .cbtn_vsmall:before {
1711
+ left: 31%;
1712
+ top: -9px;
1713
+ margin-left: -31%
1714
+ }
1715
+
1716
+ h2.optional {
1717
+ font-family: helveticaregular;
1718
+ font-size: 25px;
1719
+ margin: 14px 0 19px;
1720
+ color: #5a6570;
1721
+ }
1722
+
1723
+ .utube_tool_bdr .utub_visit {
1724
+ margin: 9px 0 0;
1725
+ height: 24px;
1726
+ display: inline-block;
1727
+ float: none;
1728
+ }
1729
+
1730
+ .utube_tool_bdr .utub_2 {
1731
+ margin: 9px 0 0;
1732
+ height: 24px;
1733
+ width: 86px;
1734
+ display: inline-block;
1735
+ float: none;
1736
+ }
1737
+
1738
+ .printst_tool_bdr {
1739
+ width: 79px;
1740
+ }
1741
+
1742
+ .printst_tool_bdr .prints_visit {
1743
+ margin: 0 0 10px -22px;
1744
+ }
1745
+
1746
+ .printst_tool_bdr .prints_visit_1 {
1747
+ margin: 0 0 0 -53px;
1748
+ }
1749
+
1750
+ .fb_tool_bdr {
1751
+ width: 68px;
1752
+ height: auto;
1753
+ }
1754
+
1755
+ .fb_tool_bdr .sfsi_inside {
1756
+ text-align: center;
1757
+ width: 100%;
1758
+ float: left;
1759
+ overflow: hidden;
1760
+ }
1761
+
1762
+ .fb_tool_bdr .sfsi_inside .icon1 {
1763
+ /* margin: 0 0 -5px 0;*/
1764
+ margin: 2px 0px 4px 0;
1765
+ height: auto;
1766
+ display: inline-block;
1767
+ float: none;
1768
+ width: 62px;
1769
+ }
1770
+
1771
+ .fb_tool_bdr .sfsi_inside .icon2 {
1772
+ margin: 2px 0 3px 0 !important;
1773
+ height: auto;
1774
+ width: 53px;
1775
+ display: inline-block;
1776
+ overflow: hidden;
1777
+ }
1778
+
1779
+ .fb_tool_bdr .sfsi_inside .icon3 {
1780
+ margin: 2px 0 2px 0;
1781
+ height: auto;
1782
+ width: 62px;
1783
+ display: inline-block;
1784
+ float: none;
1785
+ }
1786
+
1787
+ .fb_tool_bdr .sfsi_inside .fb_1,
1788
+ .fb_tool_bdr .sfsi_inside .fb_2,
1789
+ .fb_tool_bdr .sfsi_inside .fb_3 {
1790
+ margin: 9px 0 0;
1791
+ height: 25px;
1792
+ }
1793
+
1794
+ .printst_tool_bdr .sfsi_inside {
1795
+ text-align: center;
1796
+ float: left;
1797
+ width: 100%
1798
+ }
1799
+
1800
+ .printst_tool_bdr .sfsi_inside .icon1 {
1801
+ /* margin: 2px 0;*/
1802
+ margin: 3px 0 3px 0;
1803
+ /* height: 24px;*/
1804
+ height: auto;
1805
+ display: inline-block;
1806
+ float: none;
1807
+ width: 73px;
1808
+ }
1809
+
1810
+ .printst_tool_bdr .sfsi_inside .icon2 {
1811
+ /* margin: 2px 0;*/
1812
+ margin: 2px 0 2px 0;
1813
+ height: auto;
1814
+ display: inline-block;
1815
+ float: none;
1816
+ max-width: 73px;
1817
+ width: auto;
1818
+ }
1819
+
1820
+ .printst_tool_bdr .sfsi_inside .prints_visit,
1821
+ .printst_tool_bdr .sfsi_inside .prints_visit_1 {
1822
+ margin: 9px 0 0;
1823
+ height: 20px;
1824
+ float: none;
1825
+ display: inline-block;
1826
+ }
1827
+
1828
+ .printst_tool_bdr {
1829
+ margin-left: -59px;
1830
+ }
1831
+
1832
+ .fb_tool_bdr .sfsi_inside .icon1>a>img,
1833
+ .gpls_tool_bdr .sfsi_inside .icon1>a>img,
1834
+ .linkedin_tool_bdr .sfsi_inside .icon1>a>img,
1835
+ .linkedin_tool_bdr .sfsi_inside .icon4>a>img,
1836
+ .printst_tool_bdr .sfsi_inside .icon1>a>img,
1837
+ .printst_tool_bdr .sfsi_inside .icon2>a>img,
1838
+ .utube_tool_bdr .sfsi_inside .icon1>a>img {
1839
+ padding-top: 0;
1840
+ }
1841
+
1842
+ .gpls_tool_bdr {
1843
+ width: 76px;
1844
+ }
1845
+
1846
+ .gpls_tool_bdr .sfsi_inside .icon1>a>img {
1847
+ padding-top: 0;
1848
+ }
1849
+
1850
+ .gpls_tool_bdr .sfsi_inside {
1851
+ text-align: center;
1852
+ width: 100%;
1853
+ float: left;
1854
+ }
1855
+
1856
+ .gpls_tool_bdr .sfsi_inside .icon1 {
1857
+ margin: 2px 0;
1858
+ display: inline-block;
1859
+ float: none;
1860
+ height: 29px;
1861
+ width: 76px;
1862
+ }
1863
+
1864
+ .gpls_tool_bdr .sfsi_inside .icon2 {
1865
+ margin: 2px 0 3px 0;
1866
+ display: inline-block;
1867
+ float: none;
1868
+ height: 24px;
1869
+ width: 38px;
1870
+ }
1871
+
1872
+ .gpls_tool_bdr .sfsi_inside .icon3 {
1873
+ margin: 3px 0 2px 0;
1874
+ display: inline-block;
1875
+ float: none;
1876
+ height: 24px;
1877
+ width: 76px;
1878
+ }
1879
+
1880
+ .gpls_tool_bdr .sfsi_inside .gpls_visit,
1881
+ .gpls_tool_bdr .sfsi_inside .gtalk_2,
1882
+ .gpls_tool_bdr .sfsi_inside .gtalk_3 {
1883
+ margin: 9px 0 0;
1884
+ height: 29px;
1885
+ }
1886
+
1887
+ .pop_up_box_ex.sfsi_pop_up .fb_tool_bdr,
1888
+ .gpls_tool_bdr,
1889
+ .linkedin_tool_bdr,
1890
+ .twt_tool_bdr {
1891
+ bottom: 100%;
1892
+ left: 50%;
1893
+ margin-bottom: -12px;
1894
+ }
1895
+
1896
+ .fb_tool_bdr,
1897
+ .gpls_tool_bdr,
1898
+ .linkedin_tool_bdr,
1899
+ .twt_tool_bdr {
1900
+ bottom: 100%;
1901
+ left: 50%;
1902
+ margin-bottom: 8px;
1903
+ }
1904
+
1905
+ .printst_tool_bdr {
1906
+ bottom: 80%;
1907
+ left: 50%;
1908
+ /* margin-bottom: 2px;*/
1909
+ margin-bottom: 0px;
1910
+ margin-bottom: 18px;
1911
+ }
1912
+
1913
+ .printst_tool_bdr {
1914
+ bottom: 80%;
1915
+ left: 50%;
1916
+ margin-bottom: 18px;
1917
+ }
1918
+
1919
+ .twt_tool_bdr .sfsi_inside {
1920
+ text-align: center;
1921
+ width: 100%;
1922
+ float: left;
1923
+ }
1924
+
1925
+ .twt_tool_bdr .sfsi_inside .cstmicon1 {
1926
+ margin: 2px 0px 2px 0 !important;
1927
+ /*margin: 2px 0!important; display: inline-block;*/
1928
+ float: none;
1929
+ width: 62px;
1930
+ /* overflow: hidden;*/
1931
+ /*height: 20px;*/
1932
+ }
1933
+
1934
+ .twt_tool_bdr .sfsi_inside .cstmicon1 a img {
1935
+ float: left;
1936
+ }
1937
+
1938
+ .twt_tool_bdr .sfsi_inside .icon1 {
1939
+ /*margin: -4px 0 -5px 0 !important;*/
1940
+ margin: 5px 0px 3px 0 !important;
1941
+ display: inline-block;
1942
+ float: none;
1943
+ width: 61px;
1944
+ /* overflow: hidden;*/
1945
+ height: auto;
1946
+ }
1947
+
1948
+ .twt_tool_bdr .sfsi_inside .icon1 iframe {
1949
+ width: 61px !important;
1950
+ }
1951
+
1952
+ .twt_tool_bdr .sfsi_inside .icon2 {
1953
+ margin: 3px 0px 2px 0px !important;
1954
+ display: inline-block;
1955
+ float: none;
1956
+ height: auto;
1957
+ width: 58px;
1958
+ }
1959
+
1960
+ .twt_tool_bdr .sfsi_inside .twt_1 {
1961
+ margin: 9px 0 0;
1962
+ display: inline-block;
1963
+ float: none;
1964
+ width: 58px;
1965
+ height: 20px;
1966
+ overflow: hidden;
1967
+ }
1968
+
1969
+ .twt_tool_bdr .sfsi_inside .twt_1 iframe {
1970
+ width: 100% !important;
1971
+ }
1972
+
1973
+ .twt_tool_bdr .sfsi_inside .twt_2 {
1974
+ margin: 9px 0 0;
1975
+ height: 20px;
1976
+ display: inline-block;
1977
+ float: none;
1978
+ width: 58px;
1979
+ }
1980
+
1981
+ .utube_tool_bdr .sfsi_inside {
1982
+ text-align: center;
1983
+ width: 100%;
1984
+ float: left;
1985
+ }
1986
+
1987
+ .utube_tool_bdr .sfsi_inside .icon1 {
1988
+ /*margin: 5px 0 0;*/
1989
+ margin: 4px 0px 3px 0;
1990
+ height: 24px;
1991
+ display: inline-block;
1992
+ float: none;
1993
+ width: 96px;
1994
+ }
1995
+
1996
+ .utube_tool_bdr .sfsi_inside .icon2 {
1997
+ /* margin: 9px 0 0;*/
1998
+ margin: 2px 0 3px 0 !important;
1999
+ height: 24px;
2000
+ display: inline-block;
2001
+ float: none;
2002
+ max-width: 96px;
2003
+ width: 82px;
2004
+ }
2005
+
2006
+ .pop-overlay.read-overlay.ytex-s2 .utube_tool_bdr {
2007
+ width: 93px;
2008
+ bottom: 100%;
2009
+ left: 50%;
2010
+ margin-bottom: -12px;
2011
+ }
2012
+
2013
+ .utube_tool_bdr {
2014
+ width: 93px;
2015
+ bottom: 100%;
2016
+ left: 50%;
2017
+ margin-bottom: 8px;
2018
+ }
2019
+
2020
+ .linkedin_tool_bdr {
2021
+ width: 66px;
2022
+ }
2023
+
2024
+ .linkedin_tool_bdr .sfsi_inside {
2025
+ text-align: center;
2026
+ float: left;
2027
+ width: 100%
2028
+ }
2029
+
2030
+ .linkedin_tool_bdr .sfsi_inside .icon1 {
2031
+ margin: 2px 0 2px 0px;
2032
+ display: inline-block;
2033
+ float: none;
2034
+ /* height: 20px;*/
2035
+ width: 100%;
2036
+ }
2037
+
2038
+ .linkedin_tool_bdr .sfsi_inside .icon2 {
2039
+ margin: 2px 0 2px 0px;
2040
+ display: inline-block;
2041
+ float: none;
2042
+ /* height: 20px;*/
2043
+ width: 100%;
2044
+ }
2045
+
2046
+ .linkedin_tool_bdr .sfsi_inside .icon3 {
2047
+ margin: 2px 0 2px 0px;
2048
+ display: inline-block;
2049
+ float: none;
2050
+ /* height: 20px;*/
2051
+ width: 100%;
2052
+ }
2053
+
2054
+ .linkedin_tool_bdr .sfsi_inside .icon4 {
2055
+ margin: 2px 0 1px 0px;
2056
+ display: inline-block;
2057
+ float: none;
2058
+ /* height: 25px !important;*/
2059
+ width: 100%;
2060
+ }
2061
+
2062
+ .sfsi_FrntInner_chg .linkedin_tool_bdr .sfsi_inside .icon1 {
2063
+ margin: 7px 0;
2064
+ }
2065
+
2066
+ .sfsi_widget .linkedin_tool_bdr .sfsi_inside .icon4,
2067
+ .sfsi_widget .gpls_tool_bdr .sfsi_inside .icon1,
2068
+ .sfsi_widget .fb_tool_bdr .sfsi_inside .icon1 {
2069
+ height: auto
2070
+ }
2071
+
2072
+ .linkedin_tool_bdr .linkin_1,
2073
+ .linkedin_tool_bdr .linkin_2,
2074
+ .linkedin_tool_bdr .linkin_3,
2075
+ .linkedin_tool_bdr .linkin_4 {
2076
+ margin: 9px 0 0 !important;
2077
+ height: 20px;
2078
+ display: inline-block;
2079
+ float: none;
2080
+ overflow: hidden;
2081
+ }
2082
+
2083
+ .twt_tool_bdr {
2084
+ width: 62px;
2085
+ height: auto;
2086
+ }
2087
+
2088
+ .twt_tool_bdr .sfsi_inside .icon1>iframe {
2089
+ margin: 0 auto !important;
2090
+ float: none !important;
2091
+ width: 100%
2092
+ }
2093
+
2094
+ .twt_tool_bdr .sfsi_inside .icon1>iframe #widget {
2095
+ text-align: center;
2096
+ }
2097
+
2098
+ .sfsi_pop_up .button {
2099
+ border: none;
2100
+ padding: 0;
2101
+ }
2102
+
2103
+ .pop_up_box .button a {
2104
+ color: #fff;
2105
+ line-height: normal;
2106
+ font-size: 22px;
2107
+ text-decoration: none;
2108
+ text-align: center;
2109
+ width: 482px;
2110
+ height: 80px;
2111
+ margin: 0;
2112
+ display: table-cell;
2113
+ vertical-align: middle;
2114
+ font-family: helveticabold;
2115
+ }
2116
+
2117
+ .tab3 ul.tab_3_icns li .radio {
2118
+ margin-top: 7px;
2119
+ }
2120
+
2121
+ .tab3 ul.tab_3_icns li label {
2122
+ line-height: 50px !important;
2123
+ margin-left: 20px;
2124
+ }
2125
+
2126
+ .sfsi_mainContainer input[type=email],
2127
+ .sfsi_mainContainer input[type=number],
2128
+ .sfsi_mainContainer input[type=password],
2129
+ .sfsi_mainContainer input[type=search],
2130
+ .sfsi_mainContainer input[type=tel],
2131
+ .sfsi_mainContainer input[type=text],
2132
+ .sfsi_mainContainer input[type=url],
2133
+ .sfsi_mainContainer select,
2134
+ .sfsi_mainContainer textarea {
2135
+ color: #5a6570 !important;
2136
+ }
2137
+
2138
+ .adminTooltip {
2139
+ left: 142px;
2140
+ position: absolute;
2141
+ }
2142
+
2143
+ .adPopWidth {
2144
+ min-height: 100px !important;
2145
+ }
2146
+
2147
+ .main_contant p>a.lit_txt,
2148
+ .tab4 p>a {
2149
+ font-family: helveticaregular;
2150
+ color: #414951;
2151
+ }
2152
+
2153
+ .tab1 ul.icn_listing li .custom-txt {
2154
+ margin-left: 5px;
2155
+ }
2156
+
2157
+ .tab1 ul.icn_listing li .custom-img {
2158
+ margin-left: 18px;
2159
+ }
2160
+
2161
+ .linkedin_section .link_4>label.anthr_labl {
2162
+ height: 94px;
2163
+ }
2164
+
2165
+ .mediam_txt {
2166
+ font-family: helveticabold;
2167
+ }
2168
+
2169
+ .sfsiCtxt {
2170
+ line-height: 51px;
2171
+ font-family: helveticaregular;
2172
+ font-size: 22px;
2173
+ float: left;
2174
+ padding-left: 19px;
2175
+ color: #5a6570;
2176
+ }
2177
+
2178
+ .customstep2-img {
2179
+ width: 51px;
2180
+ float: left;
2181
+ }
2182
+
2183
+ .tab2 .row h2.custom {
2184
+ margin: 15px 0 7px 21px;
2185
+ height: 52px;
2186
+ line-height: 51px;
2187
+ font-family: helveticaregular;
2188
+ font-size: 22px;
2189
+ }
2190
+
2191
+ .custom-links p.cus_link label {
2192
+ margin-left: 0;
2193
+ }
2194
+
2195
+ .pop_up_box .sfsi_tool_tip_2 .fbb .fb_1 a>img:hover {
2196
+ opacity: .9;
2197
+ }
2198
+
2199
+ .tab2 .rss_url_row .sfrsTxt {
2200
+ font-size: 17px;
2201
+ line-height: 47px;
2202
+ margin: 0 0 0 4px;
2203
+ font-family: helveticaregular;
2204
+ }
2205
+
2206
+ .tab2 .rss_url_row .sfrsTxt>strong {
2207
+ font-family: helveticaregular;
2208
+ }
2209
+
2210
+ .tab2 .utube_inn p.extra_pp {
2211
+ float: left;
2212
+ width: 100%;
2213
+ margin: 0 0 0 48px;
2214
+ }
2215
+
2216
+ .tab2 .utube_inn p.extra_pp label {
2217
+ float: left;
2218
+ line-height: 41px;
2219
+ margin-right: 8px;
2220
+ }
2221
+
2222
+ .sfsi_inside .icon2 .fb_iframe_widget span {
2223
+ width: 500px !important;
2224
+ }
2225
+
2226
+ @media (max-width:767px) {
2227
+ .sfsi_inside .icon2 .fb_iframe_widget span {
2228
+ width: auto;
2229
+ }
2230
+
2231
+ .sfsi_outr_div {
2232
+ top: 10%
2233
+ }
2234
+
2235
+ .sfsi_outr_div h2 {
2236
+ font-size: 22px !important;
2237
+ line-height: 28px;
2238
+ }
2239
+
2240
+ .sfsi_wicons {
2241
+ padding-top: 0;
2242
+ }
2243
+ }
2244
+
2245
+ .specify_counts .listing li .high_prb {
2246
+ height: 41px;
2247
+ }
2248
+
2249
+ .sfsi_Sicons {
2250
+ position: relative;
2251
+ }
2252
+
2253
+ .sfsi_Sicons .sf_fb {
2254
+ position: relative;
2255
+ /*z-index: 1;*/
2256
+ width: 75px;
2257
+ }
2258
+
2259
+ .sfsi_Sicons .fb_iframe_widget {
2260
+ float: left;
2261
+ width: 73px;
2262
+ margin: 2px 0 0;
2263
+ }
2264
+
2265
+ .sfsi_Sicons .sf_fb .fb_iframe_widget>span {
2266
+ position: absolute;
2267
+ /*width: 450px!important; z-index: 1;*/
2268
+ }
2269
+
2270
+ .tab2 .utube_inn label {
2271
+ font-size: 17px;
2272
+ }
2273
+
2274
+ .sfsi_plc_btm {
2275
+ padding: 5px 14px 9px;
2276
+ }
2277
+
2278
+ .tab7 .field {
2279
+ margin-top: 7px;
2280
+ }
2281
+
2282
+ .sfsi_outr_div ul li .cmcls img {
2283
+ margin-top: 0 !important;
2284
+ }
2285
+
2286
+ .sfsi_outr_div ul li .inerCnt {
2287
+ float: left;
2288
+ }
2289
+
2290
+ .sfsi_outr_div ul li .inerCnt .bot_no {
2291
+ position: absolute;
2292
+ padding: 1px 0;
2293
+ font-size: 12px !important;
2294
+ line-height: 12px !important;
2295
+ text-align: center;
2296
+ background: #fff;
2297
+ border-radius: 5px;
2298
+ display: block;
2299
+ left: 50%;
2300
+ margin-left: -20px;
2301
+ border: 1px solid #333;
2302
+ white-space: pre;
2303
+ -webkit-box-sizing: border-box;
2304
+ -moz-box-sizing: border-box;
2305
+ box-sizing: border-box;
2306
+ margin-top: 6px;
2307
+ width: 40px;
2308
+ word-break: break-all;
2309
+ word-wrap: break-word;
2310
+ }
2311
+
2312
+ .sfsi_outr_div ul li .inerCnt .bot_no:before {
2313
+ content: url(images/count_top_arow.png);
2314
+ position: absolute;
2315
+ height: 9px;
2316
+ margin-left: -7.5px;
2317
+ top: -10px;
2318
+ left: 50%;
2319
+ width: 15px;
2320
+ }
2321
+
2322
+ .sfsi_outr_div {
2323
+ position: fixed;
2324
+ width: 100%;
2325
+ float: none;
2326
+ left: 50%;
2327
+ top: 20%;
2328
+ margin-left: -50%;
2329
+ opacity: 0;
2330
+ z-index: -1;
2331
+ display: block;
2332
+ text-align: center;
2333
+ }
2334
+
2335
+ .sfsi_outr_div .sfsi_FrntInner_chg {
2336
+ display: inline-block;
2337
+ padding: 15px 17px 27px 18px;
2338
+ background: #FFF;
2339
+ border: 1px solid #EDEDED;
2340
+ box-shadow: 0 0 5px #CCC;
2341
+ margin: 20px;
2342
+ position: relative;
2343
+ }
2344
+
2345
+ .sfsi_FrntInner_chg .sfsiclpupwpr {
2346
+ position: absolute;
2347
+ right: -10px;
2348
+ top: -10px;
2349
+ width: 25px;
2350
+ cursor: pointer;
2351
+ }
2352
+
2353
+ .sfsi_FrntInner_chg .sfsiclpupwpr img {
2354
+ width: auto;
2355
+ float: left;
2356
+ border: medium none;
2357
+ }
2358
+
2359
+ .tab7 .like_pop_box {
2360
+ width: 100%;
2361
+ margin: 35px auto auto;
2362
+ position: relative;
2363
+ text-align: center;
2364
+ }
2365
+
2366
+ .tab7 .like_pop_box .sfsi_Popinner {
2367
+ display: inline-block;
2368
+ padding: 18px 20px;
2369
+ box-shadow: 0 0 5px #ccc;
2370
+ -webkit-box-shadow: 0 0 5px #ccc;
2371
+ border: 1px solid #ededed;
2372
+ background: #FFF;
2373
+ }
2374
+
2375
+ .tab7 .like_pop_box .sfsi_Popinner h2 {
2376
+ margin: 0 0 23px;
2377
+ padding: 0;
2378
+ color: #414951;
2379
+ font-family: helveticabold;
2380
+ font-size: 26px;
2381
+ text-align: center;
2382
+ }
2383
+
2384
+ .tab7 .like_pop_box .sfsi_Popinner ul {
2385
+ margin: 0;
2386
+ padding: 0;
2387
+ list-style: none;
2388
+ text-align: center;
2389
+ }
2390
+
2391
+ .tab7 .like_pop_box .sfsi_Popinner ul li {
2392
+ margin: 0;
2393
+ padding: 0;
2394
+ list-style: none;
2395
+ display: inline-block;
2396
+ }
2397
+
2398
+ .tab7 .like_pop_box .sfsi_Popinner ul li span {
2399
+ margin: 0;
2400
+ width: 54px;
2401
+ display: block;
2402
+ background: url(../images/count_bg.png) no-repeat;
2403
+ height: 24px;
2404
+ overflow: hidden;
2405
+ padding: 10px 2px 2px;
2406
+ font-family: helveticaregular;
2407
+ font-size: 16px;
2408
+ text-align: center;
2409
+ line-height: 24px;
2410
+ color: #5a6570;
2411
+ }
2412
+
2413
+ .tab7 .like_pop_box .sfsi_Popinner ul li a {
2414
+ color: #5a6570;
2415
+ text-decoration: none;
2416
+ }
2417
+
2418
+ .sfsi_outr_div .sfsi_FrntInner_chg .sfsi_wicons {
2419
+ margin-bottom: 0;
2420
+ }
2421
+
2422
+ .sfsi_outr_div ul {
2423
+ list-style: none;
2424
+ margin: 0 0 24px;
2425
+ padding: 0;
2426
+ text-align: center;
2427
+ }
2428
+
2429
+ a.sfsiColbtn {
2430
+ color: #5a6570 !important;
2431
+ float: right;
2432
+ font-size: 14px;
2433
+ margin: -35px -30px 0 0;
2434
+ position: relative;
2435
+ right: 0;
2436
+ font-family: helveticaregular;
2437
+ width: 100px;
2438
+ text-decoration: none;
2439
+ }
2440
+
2441
+ .tab3 a.sfsiColbtn {
2442
+ margin-top: -43px;
2443
+ }
2444
+
2445
+ .sfsi_FrntInner_chg ul li:first-of-type .sfsi_wicons {
2446
+ margin-left: 0 !important;
2447
+ }
2448
+
2449
+ ul.tab_3_icns li .trans_bg {
2450
+ background: #000;
2451
+ padding-left: 3px;
2452
+ }
2453
+
2454
+ .tab2 .instagram_section {
2455
+ padding-bottom: 20px;
2456
+ }
2457
+
2458
+ h1.abt_titl {
2459
+ text-align: center;
2460
+ margin: 19% 0 0;
2461
+ }
2462
+
2463
+ .sfcm.sfsi_wicon {
2464
+ padding: 0;
2465
+ width: 100%;
2466
+ border: medium none;
2467
+ }
2468
+
2469
+ .fb_iframe_widget span {
2470
+ vertical-align: top !important;
2471
+ }
2472
+
2473
+ .sfsi_outr_div .sfsi_FrntInner_chg ul {
2474
+ margin: 0 0 0 3px;
2475
+ }
2476
+
2477
+ .sfsi_outr_div .sfsi_FrntInner_chg ul li {
2478
+ margin: 0 3px 0 0;
2479
+ }
2480
+
2481
+ .sfcm.sfsi_wicon {
2482
+ margin: -1px;
2483
+ padding: 0;
2484
+ }
2485
+
2486
+ @media (min-width:320px) and (max-width:480px) {
2487
+
2488
+ .sfsi_tool_tip_2,
2489
+ .tool_tip {
2490
+ padding: 5px 14px 0;
2491
+ }
2492
+
2493
+ .sfsi_inside:last-child {
2494
+ margin-bottom: 18px;
2495
+ clear: both;
2496
+ }
2497
+
2498
+ .sfsi_outr_div {
2499
+ top: 10%;
2500
+ }
2501
+
2502
+ .sfsi_FrntInner_chg .sfsi_wicons {
2503
+ width: 31px !important;
2504
+ height: 31px !important;
2505
+ }
2506
+
2507
+ .sfsi_FrntInner_chg .sfsi_wicons img {
2508
+ width: 100%;
2509
+ }
2510
+
2511
+ .sfsi_Sicons .sf_fb {
2512
+ margin-bottom: 24px;
2513
+ }
2514
+
2515
+ .sfsi_Sicons .sf_twiter {
2516
+ margin-bottom: 4px;
2517
+ }
2518
+ }
2519
+
2520
+ @media (max-width:320px) {
2521
+
2522
+ .sfsi_tool_tip_2,
2523
+ .tool_tip {
2524
+ padding: 5px 14px 0;
2525
+ }
2526
+
2527
+ .sfsi_inside:last-child {
2528
+ margin-bottom: 18px;
2529
+ clear: both;
2530
+ }
2531
+
2532
+ .sfsi_FrntInner_chg .sfsi_wicons {
2533
+ width: 31px !important;
2534
+ height: 31px !important;
2535
+ }
2536
+
2537
+ .sfsi_FrntInner_chg .sfsi_wicons img {
2538
+ width: 100%
2539
+ }
2540
+ }
2541
+
2542
+ ul.SFSI_lsngfrm {
2543
+ float: left;
2544
+ /* width: 61%;*/
2545
+ width: 51.33%;
2546
+ padding-left: 60px !important;
2547
+ }
2548
+
2549
+ ul.SFSI_instructions {
2550
+ float: left;
2551
+ width: 35%;
2552
+ }
2553
+
2554
+ li.youtube_options {
2555
+ padding-left: 60px !important;
2556
+ }
2557
+
2558
+ input[name="sfsi_pinterest_manualCounts"] {
2559
+ margin-left: -20px !important;
2560
+ }
2561
+
2562
+ ul.SFSI_instructions li {
2563
+ font-size: 12px !important;
2564
+ line-height: 25px !important;
2565
+ margin: 0 !important;
2566
+ padding: 0 0 0 15px !important;
2567
+ width: 100%
2568
+ }
2569
+
2570
+ /*{Monad}*/
2571
+ /*Upload Skins css*/
2572
+ .cstmskin_popup {
2573
+ width: 500px;
2574
+ background: #FFF;
2575
+ box-shadow: 0 0 5px 3px #d8d8d8;
2576
+ margin: 40px 0px auto;
2577
+ padding: 20px 25px 20px;
2578
+ font-family: helveticaregular;
2579
+ color: #5a6570;
2580
+ height: auto;
2581
+ float: left;
2582
+ position: relative;
2583
+ left: 35%;
2584
+ }
2585
+
2586
+ .cstomskins_wrpr {
2587
+ float: left;
2588
+ width: 100%;
2589
+ }
2590
+
2591
+ .custskinmsg {
2592
+ float: left;
2593
+ font-size: 15px;
2594
+ margin-top: 10px;
2595
+ width: 100%;
2596
+ }
2597
+
2598
+ .custskinmsg>ul {
2599
+ color: #000;
2600
+ float: left;
2601
+ margin-top: 8px;
2602
+ width: 100%;
2603
+ }
2604
+
2605
+ ul.cstmskin_iconlist {
2606
+ float: left;
2607
+ padding: 11px 0 40px 8px;
2608
+ width: 100%;
2609
+ max-width: 1000px;
2610
+ margin: 0;
2611
+ height: 307px;
2612
+ overflow-y: scroll;
2613
+ }
2614
+
2615
+ .placethemanulywpr {
2616
+ max-width: 98% !important
2617
+ }
2618
+
2619
+ .cstmskin_iconlist>li {
2620
+ float: left;
2621
+ margin: 3px 0;
2622
+ width: 100%;
2623
+ }
2624
+
2625
+ .cstm_icnname {
2626
+ float: left;
2627
+ width: 30%;
2628
+ }
2629
+
2630
+ .cstmskins_btn>img {
2631
+ float: left;
2632
+ margin-right: 25px;
2633
+ }
2634
+
2635
+ .cstmskin_btn {
2636
+ width: auto;
2637
+ float: left;
2638
+ padding: 3px 20px;
2639
+ color: #fff;
2640
+ background-color: #12a252;
2641
+ text-decoration: none;
2642
+ margin: 0 10px;
2643
+ }
2644
+
2645
+ .cstmskins_sbmt {
2646
+ width: 100%;
2647
+ float: left;
2648
+ text-align: center;
2649
+ margin-top: 15px;
2650
+ }
2651
+
2652
+ .done_btn {
2653
+ width: auto;
2654
+ padding: 3px 80px;
2655
+ color: #fff;
2656
+ background-color: #12a252;
2657
+ text-decoration: none;
2658
+ font-size: 18px;
2659
+ }
2660
+
2661
+ .cstmskin_btn:hover,
2662
+ .done_btn:hover,
2663
+ .cstmskin_btn:focus,
2664
+ .done_btn:focus {
2665
+ color: #fff;
2666
+ }
2667
+
2668
+ .skswrpr,
2669
+ .dlt_btn {
2670
+ display: none;
2671
+ }
2672
+
2673
+ .cstmutbewpr {
2674
+ width: 100%;
2675
+ float: left;
2676
+ margin-top: 10px;
2677
+ margin-left: 40px;
2678
+ }
2679
+
2680
+ .cstmutbewpr ul.enough_waffling li {
2681
+ width: auto;
2682
+ float: left;
2683
+ margin-right: 20px;
2684
+ }
2685
+
2686
+ .cstmutbewpr ul.enough_waffling li span {
2687
+ float: left;
2688
+ }
2689
+
2690
+ .cstmutbewpr ul.enough_waffling li label {
2691
+ width: auto;
2692
+ float: left;
2693
+ margin-top: 10px;
2694
+ margin-left: 10px;
2695
+ }
2696
+
2697
+ .cstmutbewpr .cstmutbtxtwpr {
2698
+ width: 100%;
2699
+ float: left;
2700
+ padding-top: 10px;
2701
+ }
2702
+
2703
+ .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr {
2704
+ width: 100%;
2705
+ float: left;
2706
+ display: none;
2707
+ }
2708
+
2709
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p,
2710
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p {
2711
+ margin-left: 0px;
2712
+ }
2713
+
2714
+ .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr {
2715
+ width: 100%;
2716
+ float: left;
2717
+ display: none;
2718
+ }
2719
+
2720
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p label,
2721
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p label {
2722
+ width: 120px;
2723
+ }
2724
+
2725
+ .sfsi_widget .sfsi_wDiv .sfsi_wicons .inerCnt a,
2726
+ .sfsi_widget .sfsi_wDiv .sfsi_wicons .inerCnt a.sficn {
2727
+ padding: 0px;
2728
+ margin: 0px;
2729
+ width: 100%;
2730
+ float: left;
2731
+ border: medium none;
2732
+ }
2733
+
2734
+ .sfsi_socialwpr {
2735
+ width: auto;
2736
+ display: inline-block;
2737
+ vertical-align: middle;
2738
+ }
2739
+
2740
+ .sfsi_socialwpr .sf_fb {
2741
+ float: left;
2742
+ }
2743
+
2744
+ .sfsipyplfrm {
2745
+ float: left;
2746
+ margin-top: 10px;
2747
+ width: 100%;
2748
+ }
2749
+
2750
+ .sfsipyplfrm input[type="submit"] {
2751
+ background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
2752
+ border: medium none;
2753
+ color: #0074a2;
2754
+ cursor: pointer;
2755
+ font-weight: normal;
2756
+ margin: 0;
2757
+ padding: 5px 10px;
2758
+ text-decoration: underline;
2759
+ }
2760
+
2761
+ .sfsipyplfrm input[type="submit"]:hover {
2762
+ color: #2ea2cc
2763
+ }
2764
+
2765
+ .pop_up_box_ex {
2766
+ background: none repeat scroll 0 0 #fff;
2767
+ box-shadow: 0 0 5px 3px #d8d8d8;
2768
+ color: #5a6570;
2769
+ font-family: helveticaregular;
2770
+ margin: 200px auto;
2771
+ min-height: 150px;
2772
+ padding: 20px 25px 0px;
2773
+ position: relative;
2774
+ width: 290px;
2775
+ }
2776
+
2777
+ .pop_up_box_ex {
2778
+ color: #5a6570;
2779
+ font-family: helveticaregular;
2780
+ }
2781
+
2782
+ .cstmutbchnlidwpr .utbe_instruction,
2783
+ .cstmutbchnlnmewpr .utbe_instruction,
2784
+ .lnkdin_instruction {
2785
+ float: left;
2786
+ line-height: 22px;
2787
+ margin-top: 10px;
2788
+ width: 100%;
2789
+ }
2790
+
2791
+ .fb_iframe_widget iframe {
2792
+ max-width: none;
2793
+ }
2794
+
2795
+ .sfsi_mainContainer p.bldtxtmsg {
2796
+ float: left;
2797
+ font-size: 15px;
2798
+ font-weight: bold;
2799
+ margin-top: 12px;
2800
+ width: 100%;
2801
+ text-align: center;
2802
+ }
2803
+
2804
+ .sfsinewplgndesc {
2805
+ background: none repeat scroll 0 0 #e5e5e5;
2806
+ float: left;
2807
+ padding: 5px 10px 8px;
2808
+ margin-top: 25px;
2809
+ }
2810
+
2811
+ .sfsinewplgndesc>.clear>a {
2812
+ color: #5a6570;
2813
+ font-weight: bold;
2814
+ }
2815
+
2816
+ .sfsiicnsdvwrp {
2817
+ float: left;
2818
+ width: 110px;
2819
+ }
2820
+
2821
+ .sfsi_Sicons .sf_subscrbe .bot_no {
2822
+ background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
2823
+ font-size: 12px !important;
2824
+ left: 67px;
2825
+ line-height: 18px !important;
2826
+ margin-left: 0px;
2827
+ margin-top: 8px;
2828
+ padding: 1px 0;
2829
+ position: absolute;
2830
+ text-align: center;
2831
+ top: -8px;
2832
+ white-space: pre;
2833
+ width: 33px;
2834
+ height: 24px;
2835
+ z-index: 9;
2836
+ }
2837
+
2838
+ .sfsi_wicons a.sficn,
2839
+ .sfsi_wicons .sfsi_inside a,
2840
+ .sfsi_Sicons div a {
2841
+ box-shadow: none;
2842
+ border: none;
2843
+ }
2844
+
2845
+ .sfsi_Sicons .sf_pinit>span {
2846
+ height: 20px !important;
2847
+ }
2848
+
2849
+ .sfsi_Sicons .sf_pinit>span>span {
2850
+ width: 38px !important;
2851
+ right: -45px !important;
2852
+ }
2853
+
2854
+ .sfsi_wicons a {
2855
+ box-shadow: none !important;
2856
+ }
2857
+
2858
+ a.sficn {
2859
+ cursor: pointer;
2860
+ }
2861
+
2862
+ .sfsi_Sicons .fb_iframe_widget>span {
2863
+ vertical-align: top !important;
2864
+ }
2865
+
2866
+ .sfsi_Sicons .sf_fb {
2867
+ margin: 0 0 0 5px !important;
2868
+ }
2869
+
2870
+ .disabled_checkbox .sfsi_right_info:before {
2871
+ position: absolute;
2872
+ content: "";
2873
+ width: 500px;
2874
+ height: 60px;
2875
+ display: inline-block;
2876
+ z-index: 99;
2877
+ margin-left: -66px;
2878
+ margin-top: -14px;
2879
+ background: rgba(255, 255, 255, .8);
2880
+ }
2881
+
2882
+ #sfsi_floater .fb_tool_bdr .sfsi_inside .icon2 {
2883
+ /*margin: -2px 0 -5px 0;*/
2884
+ }
2885
+
2886
+ .sfsi_wechat_follow_overlay {
2887
+ position: fixed;
2888
+ top: 0;
2889
+ width: 100%;
2890
+ z-index: 99999;
2891
+ background: rgba(0, 0, 0, 0.7);
2892
+ }
2893
+
2894
+ .sfsi_wechat_follow_overlay .close_btn {
2895
+ position: absolute;
2896
+ right: 60px;
2897
+ top: 60px;
2898
+ font-size: 40px;
2899
+ line-height: 40px;
2900
+ text-decoration: none;
2901
+ border: 1px solid #fff;
2902
+ padding: 0 10px;
2903
+ border-radius: 60px;
2904
+ color: #333;
2905
+ background-color: #ffff;
2906
+ text-decoration: none;
2907
+ }
2908
+
2909
+ @media (max-width:786px) {
2910
+ .sfsi_upload_butt_container {
2911
+ display: inline-block;
2912
+ }
2913
+
2914
+ .upload_butt {
2915
+ height: 38px;
2916
+ }
2917
+
2918
+ .sfsi_wechat_follow_overlay .sfsi_inner_display>div div.sfsi_upload_butt_container:first-child {
2919
+ margin-left: 0;
2920
+ margin-right: 20px;
2921
+ }
2922
+ }
2923
+
2924
+ /*added by Developer */
2925
+ #accordion1 p:nth-child(2) {
2926
+ padding-top: 0px !important;
2927
+ }
2928
+
2929
+ input[name="sfsi_instagram_manualCounts"] {
2930
+ margin-left: -15px !important;
2931
+ }
2932
+
2933
+ .sfsi_prem_cmn_rowlisting {
2934
+ width: 33.33%;
2935
+ }
2936
+
2937
+ .rss_url_row h4 {
2938
+ line-height: 43px !important;
2939
+ font-size: 17px !important;
2940
+ font-family: 'helveticaneue-light' !important;
2941
+ }
2942
+
2943
+ .cstmutbchnlnmewpr p.extra_pp label {
2944
+ width: auto !important;
2945
+ }
2946
+
2947
+ .cstmutbchnlidwpr p.extra_pp label {
2948
+ width: auto !important;
2949
+ }
2950
+
2951
+ .tab_3_option {
2952
+ margin: 10px 0 0;
2953
+ }
2954
+
2955
+ div.tab3 .sub_row.stand.sec_new {
2956
+ margin: 0;
2957
+ }
2958
+
2959
+ div#custom_social_data_setting h4 {
2960
+ padding-bottom: 30px;
2961
+ }
2962
+
2963
+ .like_pop_box img.sfcm {
2964
+ height: 50px;
2965
+ width: 50px;
2966
+ }
2967
+
2968
+ .linkedin_tool_bdr {
2969
+ line-height: 0 !important;
2970
+ }
2971
+
2972
+ .twt_tool_bdr {
2973
+ line-height: 0 !important;
2974
+ }
2975
+
2976
+ div#sfsiid_facebook {
2977
+ line-height: 0 !important;
2978
+ }
2979
+
2980
+ div#sfsiid_youtube {
2981
+ line-height: 0 !important;
2982
+ }
2983
+
2984
+ .printst_tool_bdr {
2985
+ line-height: 0 !important;
2986
+ }
2987
+
2988
+ /*end added by Developer */
2989
+ /*by developer - 29-5-2019 */
2990
+ ul.SFSI_instructions li,
2991
+ ul.SFSI_instructions li a {
2992
+ font-size: 17px !important;
2993
+ font-family: helveticaregular !important;
2994
+ font-weight: 400;
2995
+ color: #1a1d20 !important;
2996
+ }
2997
+
2998
+ body .specify_counts .listing .sfsi_instagramInstruction li {
2999
+ font-size: 17px !important;
3000
+ font-family: helveticaregular !important;
3001
+ font-weight: 400 !important;
3002
+ color: #1a1d20 !important;
3003
+ line-height: 26px !important;
3004
+ }
3005
+
3006
+ /*end - 29-5-2019*/
3007
+
3008
+ a.pop-up .radio{
3009
+ opacity: 0.5;
3010
+ background-position: 0px 0px !important;
3011
+ /* padding-right: 3px; */
3012
+ }
3013
+
3014
+ .sfsi_vertically_center{
3015
+ display: flex;
3016
+ justify-content: space-between;
3017
+ align-items: center;
3018
+ }
3019
+ .sfsi_center{
3020
+ display: flex;
3021
+ justify-content: center;
3022
+ }
3023
+ .sfsi_custom_icons_q4{
3024
+ display: flex;
3025
+ align-items: center;
3026
+ }
3027
+ .tab6 .sfsi_responsive_icon_option_li .options .first.first.first {
3028
+ width: 25%!important;
3029
+ }
3030
+ .sfsi_responsive_icon_gradient{
3031
+ background-image: -webkit-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3032
+ background-image: -moz-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3033
+ background-image: linear-gradient(bottom,rgba(0,0,0,.17) 0%,rgba(255,255,255,.17) 100%);
3034
+ }
3035
+ .tab6 ul.sfsi_icn_listing8 ul.sfsi_tab_3_icns li {
3036
+ width: 50%;
3037
+ max-width: 450px;
3038
+ padding-left: 0;
3039
+ padding-bottom: 0;
3040
+ }
3041
+ .tab6 .sfsi_tab_3_icns.sfsi_shwthmbfraftr > li {
3042
+ width:100% !important;
3043
+ max-width:100% !important;
3044
+ border-left: 45px solid transparent;
3045
+ }
3046
+
3047
+ .tab6 ul.sfsi_icn_listing8 li {
3048
+ float: left;
3049
+ padding: 11px 0 40px 8px;
3050
+ width: 100%;
3051
+ max-width: 1000px;
3052
+ margin: 0;
3053
+ }
3054
+
3055
+ ul.sfsi_icn_listing8 li .sfsi_right_info a {
3056
+ outline: 0;
3057
+ font-family: helveticaregular;
3058
+ }
3059
+ #accordion .tab6 ul.sfsi_tab_3_icns {
3060
+ margin-top: 25px;
3061
+ }
3062
+ .sfsi_tab_3_icns.sfsi_shwthmbfraftr {
3063
+ overflow: visible;
3064
+ }
3065
+ ul.sfsi_tab_3_icns {
3066
+ list-style: none;
3067
+ margin: 34px 0 0;
3068
+ overflow: hidden;
3069
+ }
3070
+
3071
+ .tab6 ul.sfsi_icn_listing8 li {
3072
+ float: left;
3073
+ padding: 11px 0 40px 8px;
3074
+ width: 100%;
3075
+ max-width: 1000px;
3076
+ margin: 0;
3077
+ }
3078
+ .tab6 .sfsi_tab_3_icns.sfsi_shwthmbfraftr .social_icon_like1 li {
3079
+ width: auto;
3080
+ max-width: auto;
3081
+ min-width: auto;
3082
+ margin: 0 30px 0 0;
3083
+ }
3084
+
3085
+ ul.sfsi_tab_3_icns label {
3086
+ float: left;
3087
+ line-height: 42px;
3088
+ color: #69737C;
3089
+ font-size: 18px;
3090
+ font-family: helveticaregular;
3091
+ min-width: 120px;
3092
+ }
3093
+ .tab6 ul.sfsi_tab_3_icns li label {
3094
+ line-height: 50px !important;
3095
+ }
3096
+
3097
+ #accordion1 .tab6 ul.sfsi_shwthmbfraftr .labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .row h4.labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .row h4.labelhdng4 {
3098
+ color: #555;
3099
+ font-size: 20px;
3100
+ margin-left: 20px;
3101
+ font-family: 'helveticaregular';
3102
+ }
3103
+ .tab6 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns.sfsi_shwthmbfraftr>li:nth-child(1), .tab6 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns.sfsi_shwthmbfraftr>li:nth-child(2){
3104
+ width: 27% !important;
3105
+ }
3106
+
3107
+ .tab6 ul.sfsi_tab_3_icns li .radio{
3108
+ margin-top: 7px;
3109
+ }
3110
+
3111
+ ul.sfsi_icn_listing8 li .tb_4_ck{
3112
+ float: left;
3113
+ }
3114
+ .sfsi_responsive_default_icon_container .radio_section.tb_4_ck, .sfsi_responsive_custom_icon_container .radio_section.tb_4_ck {
3115
+ margin: 5px 20px 0 0 !important;
3116
+ }
3117
+
3118
+ .sfsi_responsive_icon_option_li .options .field .select {
3119
+ font-family: helveticaregular;
3120
+ font-weight: 400;
3121
+ font-size: 17px;
3122
+ color: #5a6570!important;
3123
+ }
3124
+
3125
+ .tab6 ul.sfsi_icn_listing8 ul.sfsi_tab_3_icns .usually li {
3126
+ width: 100% !important;
3127
+ max-width: 1000px !important;
3128
+ padding: 3px 0 5px 5px !important;
3129
+ }
3130
+ .sfsi_responsive_icons a{
3131
+ text-decoration: none!important;
3132
+ box-shadow: none!important;
3133
+ }
3134
+ .sfsi_responsive_icons *{
3135
+ box-shadow: none!important;
3136
+ }
3137
+
3138
+ .sfsi_responsive_icons .sfsi_responsive_icon_facebook_container{ background-color:#336699;}
3139
+ .sfsi_responsive_icons .sfsi_responsive_icon_follow_container{ background-color:#00B04E;}
3140
+ .sfsi_responsive_icons .sfsi_responsive_icon_twitter_container{ background-color:#55ACEE;}
3141
+ .sfsi_small_button {
3142
+ line-height: 0px;
3143
+ height: unset;
3144
+ padding: 6px !important;
3145
+ }
3146
+ .sfsi_small_button span {
3147
+ margin-left: 10px;
3148
+ font-size: 16px;
3149
+ padding: 0px;
3150
+ line-height: 16px;
3151
+ vertical-align: -webkit-baseline-middle !important;
3152
+ margin-left: 10px;
3153
+ }
3154
+ .sfsi_small_button img {
3155
+ max-height: 16px !important;
3156
+ padding: 0px;
3157
+ line-height: 0px;
3158
+ vertical-align: -webkit-baseline-middle !important;
3159
+ }
3160
+ .sfsi_medium_button span {
3161
+ margin-left: 10px;
3162
+ font-size: 18px;
3163
+ padding: 0px;
3164
+ line-height: 16px;
3165
+ vertical-align: -webkit-baseline-middle !important;
3166
+ margin-left: 10px;
3167
+ }
3168
+ .sfsi_medium_button img {
3169
+ max-height: 16px !important;
3170
+ padding: 0px;
3171
+ line-height: 0px;
3172
+ vertical-align: -webkit-baseline-middle !important;
3173
+ }
3174
+ .sfsi_medium_button {
3175
+ line-height: 0px;
3176
+ height: unset;
3177
+ padding: 10px !important;
3178
+ }
3179
+
3180
+ .sfsi_medium_button span {
3181
+ margin-left: 10px;
3182
+ font-size: 18px;
3183
+ padding: 0px;
3184
+ line-height: 16px;
3185
+ vertical-align: -webkit-baseline-middle !important;
3186
+ margin-left: 10px;
3187
+ }
3188
+ .sfsi_medium_button img {
3189
+ max-height: 16px !important;
3190
+ padding: 0px;
3191
+ line-height: 0px;
3192
+ vertical-align: -webkit-baseline-middle !important;
3193
+ }
3194
+ .sfsi_medium_button {
3195
+ line-height: 0px;
3196
+ height: unset;
3197
+ padding: 10px !important;
3198
+ }
3199
+ .sfsi_large_button span {
3200
+ font-size: 20px;
3201
+ padding: 0px;
3202
+ line-height: 16px;
3203
+ vertical-align: -webkit-baseline-middle !important;
3204
+ display: inline;
3205
+ margin-left: 10px;
3206
+ }
3207
+ .sfsi_large_button img {
3208
+ max-height: 16px !important;
3209
+ padding: 0px;
3210
+ line-height: 0px;
3211
+ vertical-align: -webkit-baseline-middle !important;
3212
+ display: inline;
3213
+ }
3214
+ .sfsi_large_button {
3215
+ line-height: 0px;
3216
+ height: unset;
3217
+ padding: 13px !important;
3218
+ }
3219
+ .sfsi_responsive_icons .sfsi_icons_container span {
3220
+ font-family: sans-serif;
3221
+ font-size: 15px;
3222
+ }
3223
+ .sfsi_icons_container_box_fully_container {
3224
+ flex-wrap: wrap;
3225
+ }
3226
+ .sfsi_icons_container_box_fully_container a {
3227
+ flex-basis: auto !important;
3228
+ flex-grow: 1;
3229
+ flex-shrink: 1;
3230
+ margin-bottom: 5px;
3231
+ }
3232
+ .sfsi_icons_container>a {
3233
+ float: left!important;
3234
+ text-decoration: none!important;
3235
+ -webkit-box-shadow: unset!important;
3236
+ box-shadow: unset!important;
3237
+ -webkit-transition: unset!important;
3238
+ transition: unset!important;
3239
+ margin-bottom:5px!important;
3240
+ }
3241
+ .sfsi_small_button {
3242
+ line-height: 0px;
3243
+ height: unset;
3244
+ padding: 6px !important;
3245
+ }
3246
+ .sfsi_small_button span {
3247
+ margin-left: 10px;
3248
+ font-size: 16px;
3249
+ padding: 0px;
3250
+ line-height: 16px;
3251
+ vertical-align: -webkit-baseline-middle !important;
3252
+ margin-left: 10px;
3253
+ }
3254
+ .sfsi_small_button img {
3255
+ max-height: 16px !important;
3256
+ padding: 0px;
3257
+ line-height: 0px;
3258
+ vertical-align: -webkit-baseline-middle !important;
3259
+ }
3260
+ .sfsi_medium_button span {
3261
+ margin-left: 10px;
3262
+ font-size: 18px;
3263
+ padding: 0px;
3264
+ line-height: 16px;
3265
+ vertical-align: -webkit-baseline-middle !important;
3266
+ margin-left: 10px;
3267
+ }
3268
+ .sfsi_medium_button img {
3269
+ max-height: 16px !important;
3270
+ padding: 0px;
3271
+ line-height: 0px;
3272
+ vertical-align: -webkit-baseline-middle !important;
3273
+ }
3274
+ .sfsi_medium_button {
3275
+ line-height: 0px;
3276
+ height: unset;
3277
+ padding: 10px !important;
3278
+ }
3279
+
3280
+ .sfsi_medium_button span {
3281
+ margin-left: 10px;
3282
+ font-size: 18px;
3283
+ padding: 0px;
3284
+ line-height: 16px;
3285
+ vertical-align: -webkit-baseline-middle !important;
3286
+ margin-left: 10px;
3287
+ }
3288
+ .sfsi_medium_button img {
3289
+ max-height: 16px !important;
3290
+ padding: 0px;
3291
+ line-height: 0px;
3292
+ vertical-align: -webkit-baseline-middle !important;
3293
+ }
3294
+ .sfsi_medium_button {
3295
+ line-height: 0px;
3296
+ height: unset;
3297
+ padding: 10px !important;
3298
+ }
3299
+ .sfsi_large_button span {
3300
+ font-size: 20px;
3301
+ padding: 0px;
3302
+ line-height: 16px;
3303
+ vertical-align: -webkit-baseline-middle !important;
3304
+ display: inline;
3305
+ margin-left: 10px;
3306
+ }
3307
+ .sfsi_large_button img {
3308
+ max-height: 16px !important;
3309
+ padding: 0px;
3310
+ line-height: 0px;
3311
+ vertical-align: -webkit-baseline-middle !important;
3312
+ display: inline;
3313
+ }
3314
+ .sfsi_large_button {
3315
+ line-height: 0px;
3316
+ height: unset;
3317
+ padding: 13px !important;
3318
+ }
3319
+ .sfsi_responsive_icons_count{
3320
+ padding: 5px 10px;
3321
+ float: left !important;
3322
+ display: inline-block;
3323
+ margin-right: 0px;
3324
+ margin-top: 2px;
3325
+ }
3326
+
3327
+ .sfsi_responsive_icons_count h3{
3328
+ font-family: 'sans-serif' !important;
3329
+ font-weight: 900;
3330
+ font-size: 32px !important;
3331
+ line-height: 0px !important;
3332
+ padding: 0px;
3333
+ margin: 0px;
3334
+ }
3335
+
3336
+ .sfsi_responsive_icons_count h6{
3337
+ font-family: 'sans-serif' !important;
3338
+ font-weight: 900;
3339
+ padding: 0px;
3340
+ margin: 0px;
3341
+ }
3342
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3343
+ text-decoration: none!important;
3344
+ border: 0!important;
3345
+ }
3346
+ .sfsi_responsive_with_counter_icons{
3347
+ width: calc(100% - 100px)!important;
3348
+ }
3349
+ .sfsiresponsive_icon_preview {
3350
+ padding: 0px 0 20px 0;
3351
+ min-width: 100%;
3352
+ }
3353
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
3354
+ padding: 12px 13px 9px 13px !important;
3355
+ }
3356
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
3357
+ padding: 9px 10px 7px 10px !important;
3358
+ }
3359
+ .sfsi_responsive_icons_count.sfsi_small_button {
3360
+ padding: 7px 6px !important;
3361
+ }
3362
+ .sfsi_responsive_icons_count.sfsi_small_button {
3363
+ padding: 7px 6px !important;
3364
+ margin-top: 2px;
3365
+ }
3366
+ .sfsi_responsive_icons_count.sfsi_small_button h6 {
3367
+ display: inline-block;
3368
+ font-size: 12px !important;
3369
+ vertical-align: middle;
3370
+ }
3371
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
3372
+ padding: 9px 10px 7px 10px !important;
3373
+ }
3374
+ .sfsi_responsive_icons_count.sfsi_medium_button h3 {
3375
+ font-size: 21px !important;
3376
+ vertical-align: top;
3377
+ line-height: 8px !important;
3378
+ margin: 0px 0px 12px 0px !important;
3379
+ font-weight: 900;
3380
+ padding: 0px;
3381
+ }
3382
+ .sfsi_esponsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
3383
+ margin: 0px 0px 15px 0px !important;
3384
+ }
3385
+ .sfsi_responsive_icons_count.sfsi_large_button h3 {
3386
+ font-size: 26px !important;
3387
+ vertical-align: top;
3388
+ line-height: 6px !important;
3389
+ }
3390
+
3391
+ .sfsi_responsive_icons_count h3 {
3392
+ font-family: 'sans-serif' !important;
3393
+ font-weight: 900;
3394
+ padding: 0px;
3395
+ }
3396
+
3397
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
3398
+ font-size: 20px !important;
3399
+ display: inline-block;
3400
+ vertical-align: middle;
3401
+ }
3402
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
3403
+ margin: 0px !important;
3404
+ }
3405
+ .sfsi_responsive_icons_count h3 {
3406
+ font-family: 'sans-serif' !important;
3407
+ font-weight: 900;
3408
+ line-height: 0px !important;
3409
+ padding: 0px;
3410
+ margin: 0px;
3411
+ }
3412
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3413
+ text-decoration: none!important;
3414
+ border: 0!important;
3415
+ }
3416
+ .sfsi_responsive_icons_count.sfsi_small_button {
3417
+ padding: 7px 6px !important;
3418
+ margin-top: 2px;
3419
+ }
3420
+
3421
+ .sfsi_responsive_icons_count {
3422
+ vertical-align: top;
3423
+ }
3424
+ .sfsi_responsive_icons_count {
3425
+ float: left;
3426
+ }
3427
+ .sfsi_small_button {
3428
+ line-height: 0px;
3429
+ height: unset;
3430
+ }
3431
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3432
+ text-decoration: none!important;
3433
+ border: 0!important;
3434
+ }
3435
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
3436
+ font-size: 20px !important;
3437
+ display: inline-block;
3438
+ vertical-align: middle;
3439
+ margin: 0px !important;
3440
+ }
3441
+
3442
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3443
+ text-decoration: none!important;
3444
+ font-family: helveticaregular!important;
3445
+ border: 0!important;
3446
+ }
3447
+ .sfsi_responsive_icons_count h3 {
3448
+ line-height: 0px !important;
3449
+ padding: 0px;
3450
+ }
3451
+ .sfsi_responsive_icons_count.sfsi_small_button h6 {
3452
+ display: inline-block;
3453
+ font-size: 12px !important;
3454
+ /*vertical-align: middle;*/
3455
+ margin: 0px !important;
3456
+ line-height: initial !important;
3457
+ padding: 0;
3458
+ margin: 0;
3459
+ }
3460
+ .sfsi_responsive_icons_count h6{
3461
+ margin:0!important;
3462
+ }
3463
+ .sfsi_responsive_icons_count h6 {
3464
+ padding: 0px;
3465
+ }
3466
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6{
3467
+ text-decoration: none!important;
3468
+ font-family: helveticaregular!important;
3469
+ border: 0!important;
3470
+ }
3471
+ .sfsi_responsive_icons_count.sfsi_medium_button h6{
3472
+ font-size: 11px !important;
3473
+ line-height: 0px !important;
3474
+ margin: 0px 0px 0px 0px !important;
3475
+ }
3476
+
3477
+ /* .sfsi_widget .sfsi_shortcode_container{
3478
+ width: 100%;
3479
+ } */
3480
+
3481
+ .export_selections{
3482
+ clear: both;
3483
+ color: #afafaf;
3484
+ font-size: 23px;
3485
+ display: flex;
3486
+ height: 0px;
3487
+ position: absolute;
3488
+ top: 13px;
3489
+ right: 0;
3490
+ }
3491
+
3492
+ .save_export{
3493
+ clear: both;
3494
+ position: relative;
3495
+ }
3496
+
3497
+ .export{
3498
+ padding-right: 11px;
3499
+ text-decoration: underline;
3500
+ cursor: pointer;
3501
+ }
js/custom-admin.js CHANGED
@@ -1,3429 +1,3483 @@
1
- function sfsi_update_index() {
2
- var s = 1;
3
- SFSI("ul.icn_listing li.custom").each(function () {
4
- SFSI(this).children("span.custom-txt").html("Custom " + s), s++;
5
- }), cntt = 1, SFSI("div.cm_lnk").each(function () {
6
- SFSI(this).find("h2.custom").find("span.sfsiCtxt").html("Custom " + cntt + ":"),
7
- cntt++;
8
- }), cntt = 1, SFSI("div.custom_m").find("div.custom_section").each(function () {
9
- SFSI(this).find("label").html("Custom " + cntt + ":"), cntt++;
10
- });
11
- }
12
-
13
- function sfsicollapse(s) {
14
- var i = !0,
15
- e = SFSI(s).closest("div.ui-accordion-content").prev("h3.ui-accordion-header"),
16
- t = SFSI(s).closest("div.ui-accordion-content").first();
17
- e.toggleClass("ui-corner-all", i).toggleClass("accordion-header-active ui-state-active ui-corner-top", !i).attr("aria-selected", (!i).toString()),
18
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", i).toggleClass("ui-icon-triangle-1-s", !i),
19
- t.toggleClass("accordion-content-active", !i), i ? t.slideUp() : t.slideDown();
20
- }
21
-
22
- function sfsi_delete_CusIcon(s, i) {
23
- beForeLoad();
24
- var e = {
25
- action: "deleteIcons",
26
- icon_name: i.attr("name"),
27
- nonce: SFSI(i).parents('.custom').find('input[name="nonce"]').val()
28
- };
29
- SFSI.ajax({
30
- url: sfsi_icon_ajax_object.ajax_url,
31
- type: "post",
32
- data: e,
33
- dataType: "json",
34
- success: function (e) {
35
- if ("success" == e.res) {
36
- showErrorSuc("success", "Saved !", 1);
37
- var t = e.last_index + 1;
38
- SFSI("#total_cusotm_icons").val(e.total_up), SFSI(s).closest(".custom").remove(),
39
- SFSI("li.custom:last-child").addClass("bdr_btm_non"), SFSI(".custom-links").find("div." + i.attr("name")).remove(),
40
- SFSI(".custom_m").find("div." + i.attr("name")).remove(), SFSI(".share_icon_order").children("li." + i.attr("name")).remove(),
41
- SFSI("ul.sfsi_sample_icons").children("li." + i.attr("name")).remove();
42
-
43
- if (e.total_up == 0) {
44
- SFSI(".notice_custom_icons_premium").hide();
45
- }
46
- var n = e.total_up + 1;
47
- 4 == e.total_up && SFSI(".icn_listing").append('<li id="c' + t + '" class="custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style=" 0px 0px;"></span><input name="sfsiICON_' + t + '_display" type="checkbox" value="yes" class="styled" style="display:none;" isNew="yes" /></div> <span class="custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="CImg_' + t + '" alt="error" /> </span> <span class="custom custom-txt">Custom' + n + ' </span> <div class="right_info"> <p><span>It depends:</span> Upload a custom icon if you have other accounts/websites you want to link to.</p><div class="inputWrapper"></div></li>');
48
- } else showErrorSuc("error", "Unkown error , please try again", 1);
49
- return sfsi_update_index(), update_Sec5Iconorder(), sfsi_update_step1(), sfsi_update_step5(),
50
- afterLoad(), "suc";
51
- }
52
- });
53
- }
54
-
55
- function update_Sec5Iconorder() {
56
- SFSI("ul.share_icon_order").children("li").each(function () {
57
- SFSI(this).attr("data-index", SFSI(this).index() + 1);
58
- });
59
- }
60
-
61
- function sfsi_section_Display(s, i) {
62
- "hide" == i ? (SFSI("." + s + " :input").prop("disabled", !0), SFSI("." + s + " :button").prop("disabled", !0),
63
- SFSI("." + s).hide()) : (SFSI("." + s + " :input").removeAttr("disabled", !0), SFSI("." + s + " :button").removeAttr("disabled", !0),
64
- SFSI("." + s).show());
65
- }
66
-
67
- function sfsi_depened_sections() {
68
- if ("sfsi" == SFSI("input[name='sfsi_rss_icons']:checked").val()) {
69
- for (i = 0; 16 > i; i++) {
70
- var s = i + 1,
71
- e = 74 * i;
72
- SFSI(".row_" + s + "_2").css("background-position", "-588px -" + e + "px");
73
- }
74
- var t = SFSI(".icon_img").attr("src");
75
- if (t) {
76
- if (t.indexOf("subscribe") != -1) {
77
- var n = t.replace("subscribe.png", "sf_arow_icn.png");
78
- } else {
79
- var n = t.replace("email.png", "sf_arow_icn.png");
80
- }
81
- SFSI(".icon_img").attr("src", n);
82
- }
83
- } else {
84
- if ("email" == SFSI("input[name='sfsi_rss_icons']:checked").val()) {
85
- for (SFSI(".row_1_2").css("background-position", "-58px 0"), i = 0; 16 > i; i++) {
86
- var s = i + 1,
87
- e = 74 * i;
88
- SFSI(".row_" + s + "_2").css("background-position", "-58px -" + e + "px");
89
- }
90
- var t = SFSI(".icon_img").attr("src");
91
- if (t) {
92
- if (t.indexOf("sf_arow_icn") != -1) {
93
- var n = t.replace("sf_arow_icn.png", "email.png");
94
- } else {
95
- var n = t.replace("subscribe.png", "email.png");
96
- }
97
- SFSI(".icon_img").attr("src", n);
98
- }
99
- } else {
100
- for (SFSI(".row_1_2").css("background-position", "-649px 0"), i = 0; 16 > i; i++) {
101
- var s = i + 1,
102
- e = 74 * i;
103
- SFSI(".row_" + s + "_2").css("background-position", "-649px -" + e + "px");
104
- }
105
- var t = SFSI(".icon_img").attr("src");
106
- if (t) {
107
- if (t.indexOf("email") != -1) {
108
- var n = t.replace("email.png", "subscribe.png");
109
- } else {
110
- var n = t.replace("sf_arow_icn.png", "subscribe.png");
111
- }
112
- SFSI(".icon_img").attr("src", n);
113
- }
114
- }
115
- }
116
- SFSI("input[name='sfsi_rss_display']").prop("checked") ? sfsi_section_Display("rss_section", "show") : sfsi_section_Display("rss_section", "hide"),
117
- SFSI("input[name='sfsi_email_display']").prop("checked") ? sfsi_section_Display("email_section", "show") : sfsi_section_Display("email_section", "hide"),
118
- SFSI("input[name='sfsi_facebook_display']").prop("checked") ? sfsi_section_Display("facebook_section", "show") : sfsi_section_Display("facebook_section", "hide"),
119
- SFSI("input[name='sfsi_twitter_display']").prop("checked") ? sfsi_section_Display("twitter_section", "show") : sfsi_section_Display("twitter_section", "hide"),
120
- SFSI("input[name='sfsi_youtube_display']").prop("checked") ? sfsi_section_Display("youtube_section", "show") : sfsi_section_Display("youtube_section", "hide"),
121
- SFSI("input[name='sfsi_pinterest_display']").prop("checked") ? sfsi_section_Display("pinterest_section", "show") : sfsi_section_Display("pinterest_section", "hide"),
122
- SFSI("input[name='sfsi_telegram_display']").prop("checked") ? sfsi_section_Display("telegram_section", "show") : sfsi_section_Display("telegram_section", "hide"),
123
- SFSI("input[name='sfsi_vk_display']").prop("checked") ? sfsi_section_Display("vk_section", "show") : sfsi_section_Display("vk_section", "hide"),
124
- SFSI("input[name='sfsi_ok_display']").prop("checked") ? sfsi_section_Display("ok_section", "show") : sfsi_section_Display("ok_section", "hide"),
125
- SFSI("input[name='sfsi_wechat_display']").prop("checked") ? sfsi_section_Display("wechat_section", "show") : sfsi_section_Display("wechat_section", "hide"),
126
- SFSI("input[name='sfsi_weibo_display']").prop("checked") ? sfsi_section_Display("weibo_section", "show") : sfsi_section_Display("weibo_section", "hide"),
127
- SFSI("input[name='sfsi_instagram_display']").prop("checked") ? sfsi_section_Display("instagram_section", "show") : sfsi_section_Display("instagram_section", "hide"),
128
- SFSI("input[name='sfsi_linkedin_display']").prop("checked") ? sfsi_section_Display("linkedin_section", "show") : sfsi_section_Display("linkedin_section", "hide"),
129
- SFSI("input[element-type='cusotm-icon']").prop("checked") ? sfsi_section_Display("custom_section", "show") : sfsi_section_Display("custom_section", "hide");
130
- }
131
-
132
- function CustomIConSectionsUpdate() {
133
- sfsi_section_Display("counter".ele, show);
134
- }
135
-
136
- // Upload Custom Skin {Monad}
137
- function sfsi_customskin_upload(s, ref, nonce) {
138
- var ttl = jQuery(ref).attr("title");
139
- var i = s,
140
- e = {
141
- action: "UploadSkins",
142
- custom_imgurl: i,
143
- nonce: nonce
144
- };
145
- SFSI.ajax({
146
- url: sfsi_icon_ajax_object.ajax_url,
147
- type: "post",
148
- data: e,
149
- success: function (msg) {
150
- if (msg.res = "success") {
151
- var arr = s.split('=');
152
- jQuery(ref).prev('.imgskin').attr('src', arr[1]);
153
- jQuery(ref).prev('.imgskin').css("display", "block");
154
- jQuery(ref).text("Update");
155
- jQuery(ref).next('.dlt_btn').css("display", "block");
156
- }
157
- }
158
- });
159
- }
160
-
161
- // Delete Custom Skin {Monad}
162
- function deleteskin_icon(s) {
163
- var iconname = jQuery(s).attr("title");
164
- var nonce = jQuery(s).attr("data-nonce");
165
- var i = iconname,
166
- e = {
167
- action: "DeleteSkin",
168
- iconname: i,
169
- nonce: nonce
170
- };
171
- SFSI.ajax({
172
- url: sfsi_icon_ajax_object.ajax_url,
173
- type: "post",
174
- data: e,
175
- dataType: "json",
176
- success: function (msg) {
177
- if (msg.res === "success") {
178
- SFSI(s).prev("a").text("Upload");
179
- SFSI(s).prev("a").prev("img").attr("src", '');
180
- SFSI(s).prev("a").prev("img").css("display", "none");
181
- SFSI(s).css("display", "none");
182
- } else {
183
- alert("Whoops! something went wrong.")
184
- }
185
- }
186
- });
187
- }
188
-
189
- // Save Custom Skin {Monad}
190
- function SFSI_done(nonce) {
191
- e = {
192
- action: "Iamdone",
193
- nonce: nonce
194
- };
195
-
196
- SFSI.ajax({
197
- url: sfsi_icon_ajax_object.ajax_url,
198
- type: "post",
199
- data: e,
200
- success: function (msg) {
201
- if (msg.res === "success") {
202
-
203
-
204
- jQuery("li.cstomskins_upload").children(".icns_tab_3").html(msg);
205
- SFSI("input[name='sfsi_rss_display']").prop("checked") ? sfsi_section_Display("rss_section", "show") : sfsi_section_Display("rss_section", "hide"), SFSI("input[name='sfsi_email_display']").prop("checked") ? sfsi_section_Display("email_section", "show") : sfsi_section_Display("email_section", "hide"), SFSI("input[name='sfsi_facebook_display']").prop("checked") ? sfsi_section_Display("facebook_section", "show") : sfsi_section_Display("facebook_section", "hide"), SFSI("input[name='sfsi_twitter_display']").prop("checked") ? sfsi_section_Display("twitter_section", "show") : sfsi_section_Display("twitter_section", "hide"), SFSI("input[name='sfsi_youtube_display']").prop("checked") ? sfsi_section_Display("youtube_section", "show") : sfsi_section_Display("youtube_section", "hide"), SFSI("input[name='sfsi_pinterest_display']").prop("checked") ? sfsi_section_Display("pinterest_section", "show") : sfsi_section_Display("pinterest_section", "hide"), SFSI("input[name='sfsi_instagram_display']").prop("checked") ? sfsi_section_Display("instagram_section", "show") : sfsi_section_Display("instagram_section", "hide"), SFSI("input[name='sfsi_linkedin_display']").prop("checked") ? sfsi_section_Display("linkedin_section", "show") : sfsi_section_Display("linkedin_section", "hide"), SFSI("input[element-type='cusotm-icon']").prop("checked") ? sfsi_section_Display("custom_section", "show") : sfsi_section_Display("custom_section", "hide");
206
- SFSI(".cstmskins-overlay").hide("slow");
207
- sfsi_update_step3() && sfsicollapse(this);
208
- }
209
- }
210
- });
211
- }
212
-
213
- // Upload Custom Icons {Monad}
214
- function sfsi_newcustomicon_upload(s, nonce, nonce2) {
215
- var i = s,
216
- e = {
217
- action: "UploadIcons",
218
- custom_imgurl: i,
219
- nonce: nonce
220
- };
221
- SFSI.ajax({
222
- url: sfsi_icon_ajax_object.ajax_url,
223
- type: "post",
224
- data: e,
225
- dataType: "json",
226
- async: !0,
227
- success: function (s) {
228
- if (s.res == 'success') {
229
- afterIconSuccess(s, nonce2);
230
- } else {
231
- SFSI(".upload-overlay").hide("slow");
232
- SFSI(".uperror").html(s.res);
233
- showErrorSuc("Error", "Some Error Occured During Upload Custom Icon", 1)
234
- }
235
- }
236
- });
237
- }
238
-
239
- function sfsi_update_step1() {
240
- var nonce = SFSI("#sfsi_save1").attr("data-nonce");
241
- global_error = 0, beForeLoad(), sfsi_depened_sections();
242
- var s = !1,
243
- i = SFSI("input[name='sfsi_rss_display']:checked").val(),
244
- e = SFSI("input[name='sfsi_email_display']:checked").val(),
245
- t = SFSI("input[name='sfsi_facebook_display']:checked").val(),
246
- n = SFSI("input[name='sfsi_twitter_display']:checked").val(),
247
- r = SFSI("input[name='sfsi_youtube_display']:checked").val(),
248
- c = SFSI("input[name='sfsi_pinterest_display']:checked").val(),
249
- p = SFSI("input[name='sfsi_linkedin_display']:checked").val(),
250
- tg = SFSI("input[name='sfsi_telegram_display']:checked").val(),
251
- vk = SFSI("input[name='sfsi_vk_display']:checked").val(),
252
- ok = SFSI("input[name='sfsi_ok_display']:checked").val(),
253
- wc = SFSI("input[name='sfsi_wechat_display']:checked").val(),
254
- wb = SFSI("input[name='sfsi_weibo_display']:checked").val(),
255
- _ = SFSI("input[name='sfsi_instagram_display']:checked").val(),
256
- l = SFSI("input[name='sfsi_custom1_display']:checked").val(),
257
- S = SFSI("input[name='sfsi_custom2_display']:checked").val(),
258
- u = SFSI("input[name='sfsi_custom3_display']:checked").val(),
259
- f = SFSI("input[name='sfsi_custom4_display']:checked").val(),
260
- d = SFSI("input[name='sfsi_custom5_display']:checked").val(),
261
- I = {
262
- action: "updateSrcn1",
263
- sfsi_rss_display: i,
264
- sfsi_email_display: e,
265
- sfsi_facebook_display: t,
266
- sfsi_twitter_display: n,
267
- sfsi_youtube_display: r,
268
- sfsi_pinterest_display: c,
269
- sfsi_linkedin_display: p,
270
- sfsi_telegram_display: tg,
271
- sfsi_vk_display: vk,
272
- sfsi_ok_display: ok,
273
- sfsi_wechat_display: wc,
274
- sfsi_weibo_display: wb,
275
- sfsi_instagram_display: _,
276
- sfsi_custom1_display: l,
277
- sfsi_custom2_display: S,
278
- sfsi_custom3_display: u,
279
- sfsi_custom4_display: f,
280
- sfsi_custom5_display: d,
281
- nonce: nonce
282
- };
283
- SFSI.ajax({
284
- url: sfsi_icon_ajax_object.ajax_url,
285
- type: "post",
286
- data: I,
287
- async: !0,
288
- dataType: "json",
289
- success: function (i) {
290
- if (i == "wrong_nonce") {
291
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 1);
292
- s = !1;
293
- afterLoad();
294
- } else {
295
- "success" == i ? (showErrorSuc("success", "Saved !", 1), sfsicollapse("#sfsi_save1"),
296
- sfsi_make_popBox()) : (global_error = 1, showErrorSuc("error", "Unkown error , please try again", 1),
297
- s = !1), afterLoad();
298
- }
299
- }
300
- });
301
- }
302
-
303
- function sfsi_update_step2() {
304
-
305
- var nonce = SFSI("#sfsi_save2").attr("data-nonce");
306
- var s = sfsi_validationStep2();
307
- if (!s) return global_error = 1, !1;
308
- beForeLoad();
309
- var i = 1 == SFSI("input[name='sfsi_rss_url']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_url']").val(),
310
- e = 1 == SFSI("input[name='sfsi_rss_icons']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_icons']:checked").val(),
311
-
312
- t = 1 == SFSI("input[name='sfsi_facebookPage_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookPage_option']:checked").val(),
313
- n = 1 == SFSI("input[name='sfsi_facebookLike_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookLike_option']:checked").val(),
314
- o = 1 == SFSI("input[name='sfsi_facebookShare_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookShare_option']:checked").val(),
315
- a = SFSI("input[name='sfsi_facebookPage_url']").val(),
316
- r = 1 == SFSI("input[name='sfsi_twitter_followme']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_followme']:checked").val(),
317
- c = 1 == SFSI("input[name='sfsi_twitter_followUserName']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_followUserName']").val(),
318
- p = 1 == SFSI("input[name='sfsi_twitter_aboutPage']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_aboutPage']:checked").val(),
319
- _ = 1 == SFSI("input[name='sfsi_twitter_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_page']:checked").val(),
320
- l = SFSI("input[name='sfsi_twitter_pageURL']").val(),
321
- S = SFSI("textarea[name='sfsi_twitter_aboutPageText']").val(),
322
- m = 1 == SFSI("input[name='sfsi_youtube_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_page']:checked").val(),
323
- F = 1 == SFSI("input[name='sfsi_youtube_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_pageUrl']").val(),
324
- h = 1 == SFSI("input[name='sfsi_youtube_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_follow']:checked").val(),
325
- cls = SFSI("input[name='sfsi_youtubeusernameorid']:checked").val(),
326
- v = SFSI("input[name='sfsi_ytube_user']").val(),
327
- vchid = SFSI("input[name='sfsi_ytube_chnlid']").val(),
328
- g = 1 == SFSI("input[name='sfsi_pinterest_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_page']:checked").val(),
329
- k = 1 == SFSI("input[name='sfsi_pinterest_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_pageUrl']").val(),
330
- y = 1 == SFSI("input[name='sfsi_pinterest_pingBlog']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_pingBlog']:checked").val(),
331
- b = 1 == SFSI("input[name='sfsi_instagram_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_pageUrl']").val(),
332
- w = 1 == SFSI("input[name='sfsi_linkedin_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_page']:checked").val(),
333
- x = 1 == SFSI("input[name='sfsi_linkedin_pageURL']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_pageURL']").val(),
334
- C = 1 == SFSI("input[name='sfsi_linkedin_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_follow']:checked").val(),
335
- D = SFSI("input[name='sfsi_linkedin_followCompany']").val(),
336
- U = 1 == SFSI("input[name='sfsi_linkedin_SharePage']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_SharePage']:checked").val(),
337
- O = SFSI("input[name='sfsi_linkedin_recommendBusines']:checked").val(),
338
- T = SFSI("input[name='sfsi_linkedin_recommendProductId']").val(),
339
- j = SFSI("input[name='sfsi_linkedin_recommendCompany']").val(),
340
- tp = 1 == SFSI("input[name='sfsi_telegram_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_page']:checked").val(),
341
- tpu = SFSI("input[name='sfsi_telegram_pageURL']").val(),
342
- tm = SFSI("input[name='sfsi_telegram_message']").val(),
343
- tmn = SFSI("input[name='sfsi_telegram_username']").val(),
344
- wp = 1 == SFSI("input[name='sfsi_weibo_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_page']:checked").val(),
345
- wpu = SFSI("input[name='sfsi_weibo_pageURL']").val(),
346
- vp = 1 == SFSI("input[name='sfsi_vk_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_page']:checked").val(),
347
- vpu = SFSI("input[name='sfsi_vk_pageURL']").val(),
348
- op = 1 == SFSI("input[name='sfsi_ok_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_page']:checked").val(),
349
- opu = SFSI("input[name='sfsi_ok_pageURL']").val(),
350
- P = {};
351
- SFSI("input[name='sfsi_CustomIcon_links[]']").each(function () {
352
- P[SFSI(this).attr("file-id")] = this.value;
353
- });
354
- var M = {
355
- action: "updateSrcn2",
356
- sfsi_rss_url: i,
357
- sfsi_rss_icons: e,
358
- sfsi_facebookPage_option: t,
359
- sfsi_facebookLike_option: n,
360
- sfsi_facebookShare_option: o,
361
- sfsi_facebookPage_url: a,
362
- sfsi_twitter_followme: r,
363
- sfsi_twitter_followUserName: c,
364
- sfsi_twitter_aboutPage: p,
365
- sfsi_twitter_page: _,
366
- sfsi_twitter_pageURL: l,
367
- sfsi_twitter_aboutPageText: S,
368
- sfsi_youtube_page: m,
369
- sfsi_youtube_pageUrl: F,
370
- sfsi_youtube_follow: h,
371
- sfsi_youtubeusernameorid: cls,
372
- sfsi_ytube_user: v,
373
- sfsi_ytube_chnlid: vchid,
374
- sfsi_pinterest_page: g,
375
- sfsi_pinterest_pageUrl: k,
376
- sfsi_instagram_pageUrl: b,
377
- sfsi_pinterest_pingBlog: y,
378
- sfsi_linkedin_page: w,
379
- sfsi_linkedin_pageURL: x,
380
- sfsi_linkedin_follow: C,
381
- sfsi_linkedin_followCompany: D,
382
- sfsi_linkedin_SharePage: U,
383
- sfsi_linkedin_recommendBusines: O,
384
- sfsi_linkedin_recommendCompany: j,
385
- sfsi_linkedin_recommendProductId: T,
386
- sfsi_custom_links: P,
387
- sfsi_telegram_page: tp,
388
- sfsi_telegram_pageURL: tpu,
389
- sfsi_telegram_message: tm,
390
- sfsi_telegram_username: tmn,
391
- sfsi_weibo_page: wp,
392
- sfsi_weibo_pageURL: wpu,
393
- sfsi_vk_page: vp,
394
- sfsi_vk_pageURL: vpu,
395
- sfsi_ok_page: op,
396
- sfsi_ok_pageURL: opu,
397
- nonce: nonce
398
- };
399
- SFSI.ajax({
400
- url: sfsi_icon_ajax_object.ajax_url,
401
- type: "post",
402
- data: M,
403
- async: !0,
404
- dataType: "json",
405
- success: function (s) {
406
- if (s == "wrong_nonce") {
407
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 2);
408
- return_value = !1;
409
- afterLoad();
410
- } else {
411
- "success" == s ? (showErrorSuc("success", "Saved !", 2), sfsicollapse("#sfsi_save2"),
412
- sfsi_depened_sections()) : (global_error = 1, showErrorSuc("error", "Unkown error , please try again", 2),
413
- return_value = !1), afterLoad();
414
- }
415
- }
416
- });
417
- }
418
-
419
- function sfsi_update_step3() {
420
- var nonce = SFSI("#sfsi_save3").attr("data-nonce");
421
- var s = sfsi_validationStep3();
422
- if (!s) return global_error = 1, !1;
423
- beForeLoad();
424
- var i = SFSI("input[name='sfsi_actvite_theme']:checked").val(),
425
- e = SFSI("input[name='sfsi_mouseOver']:checked").val(),
426
- t = SFSI("input[name='sfsi_shuffle_icons']:checked").val(),
427
- n = SFSI("input[name='sfsi_shuffle_Firstload']:checked").val(),
428
- o = SFSI("input[name='sfsi_same_icons_mouseOver_effect']:checked").val(),
429
- a = SFSI("input[name='sfsi_shuffle_interval']:checked").val(),
430
- r = SFSI("input[name='sfsi_shuffle_intervalTime']").val(),
431
- c = SFSI("input[name='sfsi_specialIcon_animation']:checked").val(),
432
- p = SFSI("input[name='sfsi_specialIcon_MouseOver']:checked").val(),
433
- _ = SFSI("input[name='sfsi_specialIcon_Firstload']:checked").val(),
434
- l = SFSI("#sfsi_specialIcon_Firstload_Icons option:selected").val(),
435
- S = SFSI("input[name='sfsi_specialIcon_interval']:checked").val(),
436
- u = SFSI("input[name='sfsi_specialIcon_intervalTime']").val(),
437
- f = SFSI("#sfsi_specialIcon_intervalIcons option:selected").val();
438
-
439
- var mouseover_effect_type = 'same_icons'; //SFSI("input[name='sfsi_mouseOver_effect_type']:checked").val();
440
-
441
- d = {
442
- action: "updateSrcn3",
443
- sfsi_actvite_theme: i,
444
- sfsi_mouseOver: e,
445
- sfsi_shuffle_icons: t,
446
- sfsi_shuffle_Firstload: n,
447
- sfsi_mouseOver_effect: o,
448
- sfsi_mouseover_effect_type: mouseover_effect_type,
449
- sfsi_shuffle_interval: a,
450
- sfsi_shuffle_intervalTime: r,
451
- sfsi_specialIcon_animation: c,
452
- sfsi_specialIcon_MouseOver: p,
453
- sfsi_specialIcon_Firstload: _,
454
- sfsi_specialIcon_Firstload_Icons: l,
455
- sfsi_specialIcon_interval: S,
456
- sfsi_specialIcon_intervalTime: u,
457
- sfsi_specialIcon_intervalIcons: f,
458
- nonce: nonce
459
- };
460
- SFSI.ajax({
461
- url: sfsi_icon_ajax_object.ajax_url,
462
- type: "post",
463
- data: d,
464
- async: !0,
465
- dataType: "json",
466
- success: function (s) {
467
- if (s == "wrong_nonce") {
468
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 3);
469
- return_value = !1;
470
- afterLoad();
471
- } else {
472
- "success" == s ? (showErrorSuc("success", "Saved !", 3), sfsicollapse("#sfsi_save3")) : (showErrorSuc("error", "Unkown error , please try again", 3),
473
- return_value = !1), afterLoad();
474
- }
475
- }
476
- });
477
- }
478
-
479
- function sfsi_show_counts() {
480
- "yes" == SFSI("input[name='sfsi_display_counts']:checked").val() ? (SFSI(".count_sections").slideDown(),
481
- sfsi_showPreviewCounts()) : (SFSI(".count_sections").slideUp(), sfsi_showPreviewCounts());
482
- }
483
-
484
- function sfsi_showPreviewCounts() {
485
- var s = 0;
486
- 1 == SFSI("input[name='sfsi_rss_countsDisplay']").prop("checked") ? (SFSI("#sfsi_rss_countsDisplay").css("opacity", 1), s = 1) : SFSI("#sfsi_rss_countsDisplay").css("opacity", 0),
487
- 1 == SFSI("input[name='sfsi_email_countsDisplay']").prop("checked") ? (SFSI("#sfsi_email_countsDisplay").css("opacity", 1),
488
- s = 1) : SFSI("#sfsi_email_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_facebook_countsDisplay']").prop("checked") ? (SFSI("#sfsi_facebook_countsDisplay").css("opacity", 1),
489
- s = 1) : SFSI("#sfsi_facebook_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_twitter_countsDisplay']").prop("checked") ? (SFSI("#sfsi_twitter_countsDisplay").css("opacity", 1),
490
- s = 1) : SFSI("#sfsi_twitter_countsDisplay").css("opacity", 0),
491
- 1 == SFSI("input[name='sfsi_linkedIn_countsDisplay']").prop("checked") ? (SFSI("#sfsi_linkedIn_countsDisplay").css("opacity", 1), s = 1) : SFSI("#sfsi_linkedIn_countsDisplay").css("opacity", 0),
492
- 1 == SFSI("input[name='sfsi_youtube_countsDisplay']").prop("checked") ? (SFSI("#sfsi_youtube_countsDisplay").css("opacity", 1),
493
- s = 1) : SFSI("#sfsi_youtube_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_pinterest_countsDisplay']").prop("checked") ? (SFSI("#sfsi_pinterest_countsDisplay").css("opacity", 1),
494
- s = 1) : SFSI("#sfsi_pinterest_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_instagram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_instagram_countsDisplay").css("opacity", 1),
495
- s = 1) : SFSI("#sfsi_instagram_countsDisplay").css("opacity", 0),
496
- 1 == SFSI("input[name='sfsi_telegram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_telegram_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_telegram_countsDisplay").css("opacity", 0),
497
- 1 == SFSI("input[name='sfsi_vk_countsDisplay']").prop("checked") ? (SFSI("#sfsi_vk_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_vk_countsDisplay").css("opacity", 0),
498
- 1 == SFSI("input[name='sfsi_ok_countsDisplay']").prop("checked") ? (SFSI("#sfsi_ok_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_ok_countsDisplay").css("opacity", 0),
499
- 1 == SFSI("input[name='sfsi_weibo_countsDisplay']").prop("checked") ? (SFSI("#sfsi_weibo_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_weibo_countsDisplay").css("opacity", 0),
500
- 1 == SFSI("input[name='sfsi_wechat_countsDisplay']").prop("checked") ? (SFSI("#sfsi_wechat_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_wechat_countsDisplay").css("opacity", 0),
501
-
502
- 0 == s || "no" == SFSI("input[name='sfsi_display_counts']:checked").val() ? SFSI(".sfsi_Cdisplay").hide() : SFSI(".sfsi_Cdisplay").show();
503
- }
504
-
505
- function sfsi_show_OnpostsDisplay() {
506
- //"yes" == SFSI("input[name='sfsi_show_Onposts']:checked").val() ? SFSI(".PostsSettings_section").slideDown() :SFSI(".PostsSettings_section").slideUp();
507
- }
508
-
509
- function sfsi_update_step4() {
510
- var nonce = SFSI("#sfsi_save4").attr("data-nonce");
511
- var s = !1,
512
- i = sfsi_validationStep4();
513
- if (!i) return global_error = 1, !1;
514
- beForeLoad();
515
- var e = SFSI("input[name='sfsi_display_counts']:checked").val(),
516
- t = 1 == SFSI("input[name='sfsi_email_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_countsDisplay']:checked").val(),
517
- n = 1 == SFSI("input[name='sfsi_email_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_countsFrom']:checked").val(),
518
- o = SFSI("input[name='sfsi_email_manualCounts']").val(),
519
- r = 1 == SFSI("input[name='sfsi_rss_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_countsDisplay']:checked").val(),
520
- c = SFSI("input[name='sfsi_rss_manualCounts']").val(),
521
- p = 1 == SFSI("input[name='sfsi_facebook_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_countsDisplay']:checked").val(),
522
- _ = 1 == SFSI("input[name='sfsi_facebook_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_countsFrom']:checked").val(),
523
- mp = SFSI("input[name='sfsi_facebook_mypageCounts']").val(),
524
- l = SFSI("input[name='sfsi_facebook_manualCounts']").val(),
525
- S = 1 == SFSI("input[name='sfsi_twitter_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_countsDisplay']:checked").val(),
526
- u = 1 == SFSI("input[name='sfsi_twitter_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_countsFrom']:checked").val(),
527
- f = SFSI("input[name='sfsi_twitter_manualCounts']").val(),
528
- d = SFSI("input[name='tw_consumer_key']").val(),
529
- I = SFSI("input[name='tw_consumer_secret']").val(),
530
- m = SFSI("input[name='tw_oauth_access_token']").val(),
531
- F = SFSI("input[name='tw_oauth_access_token_secret']").val(),
532
- k = 1 == SFSI("input[name='sfsi_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val(),
533
- y = SFSI("input[name='sfsi_linkedIn_manualCounts']").val(),
534
- b = SFSI("input[name='ln_company']").val(),
535
- w = SFSI("input[name='ln_api_key']").val(),
536
- x = SFSI("input[name='ln_secret_key']").val(),
537
- C = SFSI("input[name='ln_oAuth_user_token']").val(),
538
- D = 1 == SFSI("input[name='sfsi_linkedIn_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsDisplay']:checked").val(),
539
- k = 1 == SFSI("input[name='sfsi_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val(),
540
- y = SFSI("input[name='sfsi_linkedIn_manualCounts']").val(),
541
- U = 1 == SFSI("input[name='sfsi_youtube_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_countsDisplay']:checked").val(),
542
- O = 1 == SFSI("input[name='sfsi_youtube_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_countsFrom']:checked").val(),
543
- T = SFSI("input[name='sfsi_youtube_manualCounts']").val(),
544
- j = SFSI("input[name='sfsi_youtube_user']").val(),
545
- P = 1 == SFSI("input[name='sfsi_pinterest_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_countsDisplay']:checked").val(),
546
- M = 1 == SFSI("input[name='sfsi_pinterest_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_countsFrom']:checked").val(),
547
- L = SFSI("input[name='sfsi_pinterest_manualCounts']").val(),
548
- B = SFSI("input[name='sfsi_pinterest_user']").val(),
549
- E = SFSI("input[name='sfsi_pinterest_board']").val(),
550
- z = 1 == SFSI("input[name='sfsi_instagram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_countsDisplay']:checked").val(),
551
- A = 1 == SFSI("input[name='sfsi_instagram_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_countsFrom']:checked").val(),
552
- N = SFSI("input[name='sfsi_instagram_manualCounts']").val(),
553
- H = SFSI("input[name='sfsi_instagram_User']").val(),
554
- ha = SFSI("input[name='sfsi_instagram_clientid']").val(),
555
- ia = SFSI("input[name='sfsi_instagram_appurl']").val(),
556
- ja = SFSI("input[name='sfsi_instagram_token']").val(),
557
-
558
- tc = 1 == SFSI("input[name='sfsi_telegram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_countsDisplay']:checked").val(),
559
- tm = SFSI("input[name='sfsi_telegram_manualCounts']").val(),
560
-
561
- vc = 1 == SFSI("input[name='sfsi_vk_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_countsDisplay']:checked").val(),
562
- vm = SFSI("input[name='sfsi_vk_manualCounts']").val(),
563
-
564
-
565
- oc = 1 == SFSI("input[name='sfsi_ok_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_countsDisplay']:checked").val(),
566
- om = SFSI("input[name='sfsi_ok_manualCounts']").val(),
567
-
568
-
569
- wc = 1 == SFSI("input[name='sfsi_weibo_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_countsDisplay']:checked").val(),
570
- wm = SFSI("input[name='sfsi_weibo_manualCounts']").val(),
571
-
572
- wcc = 1 == SFSI("input[name='sfsi_wechat_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_wechat_countsDisplay']:checked").val(),
573
- wcm = SFSI("input[name='sfsi_wechat_manualCounts']").val(),
574
- $ = {
575
- action: "updateSrcn4",
576
- sfsi_display_counts: e,
577
- sfsi_email_countsDisplay: t,
578
- sfsi_email_countsFrom: n,
579
- sfsi_email_manualCounts: o,
580
- sfsi_rss_countsDisplay: r,
581
- sfsi_rss_manualCounts: c,
582
- sfsi_facebook_countsDisplay: p,
583
- sfsi_facebook_countsFrom: _,
584
- sfsi_facebook_mypageCounts: mp,
585
- sfsi_facebook_manualCounts: l,
586
- sfsi_twitter_countsDisplay: S,
587
- sfsi_twitter_countsFrom: u,
588
- sfsi_twitter_manualCounts: f,
589
- tw_consumer_key: d,
590
- tw_consumer_secret: I,
591
- tw_oauth_access_token: m,
592
- tw_oauth_access_token_secret: F,
593
- sfsi_linkedIn_countsDisplay: D,
594
- sfsi_linkedIn_countsFrom: k,
595
- sfsi_linkedIn_manualCounts: y,
596
- ln_company: b,
597
- ln_api_key: w,
598
- ln_secret_key: x,
599
- ln_oAuth_user_token: C,
600
- sfsi_youtube_countsDisplay: U,
601
- sfsi_youtube_countsFrom: O,
602
- sfsi_youtube_manualCounts: T,
603
- sfsi_youtube_user: j,
604
- sfsi_youtube_channelId: SFSI("input[name='sfsi_youtube_channelId']").val(),
605
- sfsi_pinterest_countsDisplay: P,
606
- sfsi_pinterest_countsFrom: M,
607
- sfsi_pinterest_manualCounts: L,
608
- sfsi_pinterest_user: B,
609
- sfsi_pinterest_board: E,
610
- sfsi_instagram_countsDisplay: z,
611
- sfsi_instagram_countsFrom: A,
612
- sfsi_instagram_manualCounts: N,
613
- sfsi_instagram_User: H,
614
- sfsi_instagram_clientid: ha,
615
- sfsi_instagram_appurl: ia,
616
- sfsi_instagram_token: ja,
617
- sfsi_telegram_countsDisplay: tc,
618
- sfsi_telegram_manualCounts: tm,
619
- sfsi_vk_countsDisplay: vc,
620
- sfsi_vk_manualCounts: vm,
621
- sfsi_ok_countsDisplay: oc,
622
- sfsi_ok_manualCounts: om,
623
- sfsi_weibo_countsDisplay: wc,
624
- sfsi_weibo_manualCounts: wm,
625
- sfsi_wechat_countsDisplay: wcc,
626
- sfsi_wechat_manualCounts: wcm,
627
- nonce: nonce
628
- };
629
- return SFSI.ajax({
630
- url: sfsi_icon_ajax_object.ajax_url,
631
- type: "post",
632
- data: $,
633
- dataType: "json",
634
- async: !0,
635
- success: function (s) {
636
- if (s == "wrong_nonce") {
637
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 4);
638
- global_error = 1;
639
- afterLoad();
640
- } else {
641
- "success" == s.res ? (showErrorSuc("success", "Saved !", 4), sfsicollapse("#sfsi_save4"),
642
- sfsi_showPreviewCounts()) : (showErrorSuc("error", "Unkown error , please try again", 4),
643
- global_error = 1), afterLoad();
644
- }
645
- }
646
- }), s;
647
- }
648
-
649
- function sfsi_update_step5() {
650
- var nonce = SFSI("#sfsi_save5").attr("data-nonce");
651
- sfsi_update_step3();
652
-
653
- var s = sfsi_validationStep5();
654
-
655
- if (!s) return global_error = 1, !1;
656
-
657
- beForeLoad();
658
-
659
- var i = SFSI("input[name='sfsi_icons_size']").val(),
660
- e = SFSI("input[name='sfsi_icons_perRow']").val(),
661
- t = SFSI("input[name='sfsi_icons_spacing']").val(),
662
- n = SFSI("#sfsi_icons_Alignment").val(),
663
- o = SFSI("input[name='sfsi_icons_ClickPageOpen']:checked").val(),
664
-
665
- se = SFSI("input[name='sfsi_icons_suppress_errors']:checked").val(),
666
- c = SFSI("input[name='sfsi_icons_stick']:checked").val(),
667
- p = SFSI("#sfsi_rssIcon_order").attr("data-index"),
668
- _ = SFSI("#sfsi_emailIcon_order").attr("data-index"),
669
- S = SFSI("#sfsi_facebookIcon_order").attr("data-index"),
670
- u = SFSI("#sfsi_twitterIcon_order").attr("data-index"),
671
- f = SFSI("#sfsi_youtubeIcon_order").attr("data-index"),
672
- d = SFSI("#sfsi_pinterestIcon_order").attr("data-index"),
673
- I = SFSI("#sfsi_instagramIcon_order").attr("data-index"),
674
- F = SFSI("#sfsi_linkedinIcon_order").attr("data-index"),
675
- tgi = SFSI("#sfsi_telegramIcon_order").attr("data-index"),
676
- vki = SFSI("#sfsi_vkIcon_order").attr("data-index"),
677
- oki = SFSI("#sfsi_okIcon_order").attr("data-index"),
678
- wbi = SFSI("#sfsi_weiboIcon_order").attr("data-index"),
679
- wci = SFSI("#sfsi_wechatIcon_order").attr("data-index"),
680
-
681
- h = new Array();
682
-
683
- SFSI(".custom_iconOrder").each(function () {
684
- h.push({
685
- order: SFSI(this).attr("data-index"),
686
- ele: SFSI(this).attr("element-id")
687
- });
688
- });
689
-
690
- var v = 1 == SFSI("input[name='sfsi_rss_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_MouseOverText']").val(),
691
- g = 1 == SFSI("input[name='sfsi_email_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_MouseOverText']").val(),
692
- k = 1 == SFSI("input[name='sfsi_twitter_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_MouseOverText']").val(),
693
- y = 1 == SFSI("input[name='sfsi_facebook_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_MouseOverText']").val(),
694
- w = 1 == SFSI("input[name='sfsi_linkedIn_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_MouseOverText']").val(),
695
- x = 1 == SFSI("input[name='sfsi_youtube_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_MouseOverText']").val(),
696
- C = 1 == SFSI("input[name='sfsi_pinterest_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_MouseOverText']").val(),
697
- D = 1 == SFSI("input[name='sfsi_instagram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_MouseOverText']").val(),
698
- tg = 1 == SFSI("input[name='sfsi_telegram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_MouseOverText']").val(),
699
- vk = 1 == SFSI("input[name='sfsi_vk_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_MouseOverText']").val(),
700
- ok = 1 == SFSI("input[name='sfsi_ok_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_MouseOverText']").val(),
701
- wb = 1 == SFSI("input[name='sfsi_weibo_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_MouseOverText']").val(),
702
- wc = 1 == SFSI("input[name='sfsi_wechat_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_wechat_MouseOverText']").val(),
703
-
704
- O = {};
705
- SFSI("input[name='sfsi_custom_MouseOverTexts[]']").each(function () {
706
- O[SFSI(this).attr("file-id")] = this.value;
707
- });
708
-
709
- var sfsi_custom_social_hide = SFSI("input[name='sfsi_custom_social_hide']").val();
710
-
711
- var T = {
712
- action: "updateSrcn5",
713
- sfsi_icons_size: i,
714
- sfsi_icons_Alignment: n,
715
- sfsi_icons_perRow: e,
716
- sfsi_icons_spacing: t,
717
- sfsi_icons_ClickPageOpen: o,
718
- sfsi_icons_suppress_errors: se,
719
- sfsi_icons_stick: c,
720
- sfsi_rss_MouseOverText: v,
721
- sfsi_email_MouseOverText: g,
722
- sfsi_twitter_MouseOverText: k,
723
- sfsi_facebook_MouseOverText: y,
724
- sfsi_youtube_MouseOverText: x,
725
- sfsi_linkedIn_MouseOverText: w,
726
- sfsi_pinterest_MouseOverText: C,
727
- sfsi_instagram_MouseOverText: D,
728
- sfsi_telegram_MouseOverText: tg,
729
- sfsi_vk_MouseOverText: vk,
730
- sfsi_ok_MouseOverText: ok,
731
- sfsi_weibo_MouseOverText: wb,
732
- sfsi_wechat_MouseOverText: wc,
733
- sfsi_custom_MouseOverTexts: O,
734
- sfsi_rssIcon_order: p,
735
- sfsi_emailIcon_order: _,
736
- sfsi_facebookIcon_order: S,
737
- sfsi_twitterIcon_order: u,
738
- sfsi_youtubeIcon_order: f,
739
- sfsi_pinterestIcon_order: d,
740
- sfsi_instagramIcon_order: I,
741
- sfsi_linkedinIcon_order: F,
742
- sfsi_telegramIcon_order: tgi,
743
- sfsi_vkIcon_order: vki,
744
- sfsi_okIcon_order: oki,
745
- sfsi_weiboIcon_order: wbi,
746
- sfsi_wechatIcon_order: wci,
747
-
748
- sfsi_custom_orders: h,
749
- sfsi_custom_social_hide: sfsi_custom_social_hide,
750
- nonce: nonce
751
- };
752
- SFSI.ajax({
753
- url: sfsi_icon_ajax_object.ajax_url,
754
- type: "post",
755
- data: T,
756
- dataType: "json",
757
- async: !0,
758
- success: function (s) {
759
- if (s == "wrong_nonce") {
760
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 5);
761
- global_error = 1;
762
- afterLoad();
763
- } else {
764
- "success" == s ? (showErrorSuc("success", "Saved !", 5), sfsicollapse("#sfsi_save5")) : (global_error = 1,
765
- showErrorSuc("error", "Unkown error , please try again", 5)), afterLoad();
766
- }
767
- }
768
- });
769
- }
770
-
771
- function sfsi_update_step6() {
772
- var nonce = SFSI("#sfsi_save9").attr("data-nonce2");
773
- beForeLoad();
774
- var s = SFSI("input[name='sfsi_show_Onposts']:checked").val(),
775
- i = SFSI("input[name='sfsi_textBefor_icons']").val(),
776
- e = SFSI("#sfsi_icons_alignment").val(),
777
- t = SFSI("#sfsi_icons_DisplayCounts").val(),
778
- rsub = SFSI("input[name='sfsi_rectsub']:checked").val(),
779
- rfb = SFSI("input[name='sfsi_rectfb']:checked").val(),
780
- rpin = SFSI("input[name='sfsi_rectpinit']:checked").val(),
781
- rshr = SFSI("input[name='sfsi_rectshr']:checked").val(),
782
- rtwr = SFSI("input[name='sfsi_recttwtr']:checked").val(),
783
- rfbshare = SFSI("input[name='sfsi_rectfbshare']:checked").val(),
784
- a = SFSI("input[name='sfsi_display_button_type']:checked").val();
785
- countshare = SFSI("input[name='sfsi_share_count']:checked").val();
786
- endpost = SFSI("input[name='sfsi_responsive_icons_end_post']:checked").val();
787
-
788
- var responsive_icons = {
789
- "default_icons": {},
790
- "settings": {}
791
- };
792
- SFSI('.sfsi_responsive_default_icon_container input[type="checkbox"]').each(function (index, obj) {
793
- var data_obj = {};
794
- data_obj.active = ('checked' == SFSI(obj).attr('checked')) ? 'yes' : 'no';
795
- var iconname = SFSI(obj).attr('data-icon');
796
- var next_section = SFSI(obj).parent().parent();
797
- data_obj.text = next_section.find('input[name="sfsi_responsive_' + iconname + '_input"]').val();
798
- data_obj.url = next_section.find('input[name="sfsi_responsive_' + iconname + '_url_input"]').val();
799
- responsive_icons.default_icons[iconname] = data_obj;
800
- });
801
- SFSI('.sfsi_responsive_custom_icon_container input[type="checkbox"]').each(function (index, obj) {
802
- if (SFSI(obj).attr('id') != "sfsi_responsive_custom_new_display") {
803
- var data_obj = {};
804
- data_obj.active = 'checked' == SFSI(obj).attr('checked') ? 'yes' : 'no';
805
- var icon_index = SFSI(obj).attr('data-custom-index');
806
- var next_section = SFSI(obj).parent().parent();
807
- data_obj['added'] = SFSI('input[name="sfsi_responsive_custom_' + index + '_added"]').val();
808
- data_obj.icon = next_section.find('img').attr('src');
809
- data_obj["bg-color"] = next_section.find('.sfsi_bg-color-picker').val();
810
-
811
- data_obj.text = next_section.find('input[name="sfsi_responsive_custom_' + icon_index + '_input"]').val();
812
- data_obj.url = next_section.find('input[name="sfsi_responsive_custom_' + icon_index + '_url_input"]').val();
813
- responsive_icons.custom_icons[index] = data_obj;
814
- }
815
- });
816
- responsive_icons.settings.icon_size = SFSI('select[name="sfsi_responsive_icons_settings_icon_size"]').val();
817
- responsive_icons.settings.icon_width_type = SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val();
818
- responsive_icons.settings.icon_width_size = SFSI('input[name="sfsi_responsive_icons_sttings_icon_width_size"]').val();
819
- responsive_icons.settings.edge_type = SFSI('select[name="sfsi_responsive_icons_settings_edge_type"]').val();
820
- responsive_icons.settings.edge_radius = SFSI('select[name="sfsi_responsive_icons_settings_edge_radius"]').val();
821
- responsive_icons.settings.style = SFSI('select[name="sfsi_responsive_icons_settings_style"]').val();
822
- responsive_icons.settings.margin = SFSI('input[name="sfsi_responsive_icons_settings_margin"]').val();
823
- responsive_icons.settings.text_align = SFSI('select[name="sfsi_responsive_icons_settings_text_align"]').val();
824
- responsive_icons.settings.show_count = SFSI('input[name="sfsi_responsive_icon_show_count"]:checked').val();
825
- responsive_icons.settings.counter_color = SFSI('input[name="sfsi_responsive_counter_color"]').val();
826
- responsive_icons.settings.counter_bg_color = SFSI('input[name="sfsi_responsive_counter_bg_color"]').val();
827
- responsive_icons.settings.share_count_text = SFSI('input[name="sfsi_responsive_counter_share_count_text"]').val();
828
- responsive_icons.settings.show_count = countshare;
829
- n = {
830
- action: "updateSrcn6",
831
- sfsi_show_Onposts: s,
832
- sfsi_icons_DisplayCounts: t,
833
- sfsi_icons_alignment: e,
834
- sfsi_textBefor_icons: i,
835
- sfsi_rectsub: rsub,
836
- sfsi_rectfb: rfb,
837
- sfsi_rectpinit: rpin,
838
- sfsi_rectshr: rshr,
839
- sfsi_recttwtr: rtwr,
840
- sfsi_rectfbshare: rfbshare,
841
- sfsi_responsive_icons: responsive_icons,
842
- sfsi_display_button_type: a,
843
- sfsi_responsive_icons_end_post:endpost,
844
- sfsi_share_count: countshare,
845
- nonce: nonce
846
- };
847
- SFSI.ajax({
848
- url: sfsi_icon_ajax_object.ajax_url,
849
- type: "post",
850
- data: n,
851
- dataType: "json",
852
- async: !0,
853
- success: function (s) {
854
- if (s == "wrong_nonce") {
855
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
856
- global_error = 1;
857
- afterLoad();
858
- } else {
859
- "success" == s ? (showErrorSuc("success", "Saved !", 6), sfsicollapse("#sfsi_save6")) : (global_error = 1,
860
- showErrorSuc("error", "Unkown error , please try again", 6)), afterLoad();
861
- }
862
- }
863
- });
864
- }
865
-
866
- function sfsi_update_step7() {
867
- var nonce = SFSI("#sfsi_save7").attr("data-nonce");
868
- var s = sfsi_validationStep7();
869
- if (!s) return global_error = 1, !1;
870
- beForeLoad();
871
- var i = SFSI("input[name='sfsi_popup_text']").val(),
872
- e = SFSI("#sfsi_popup_font option:selected").val(),
873
- t = SFSI("#sfsi_popup_fontStyle option:selected").val(),
874
- color = SFSI("input[name='sfsi_popup_fontColor']").val(),
875
- n = SFSI("input[name='sfsi_popup_fontSize']").val(),
876
- o = SFSI("input[name='sfsi_popup_background_color']").val(),
877
- a = SFSI("input[name='sfsi_popup_border_color']").val(),
878
- r = SFSI("input[name='sfsi_popup_border_thickness']").val(),
879
- c = SFSI("input[name='sfsi_popup_border_shadow']:checked").val(),
880
- p = SFSI("input[name='sfsi_Show_popupOn']:checked").val(),
881
- _ = [];
882
- SFSI("#sfsi_Show_popupOn_PageIDs :selected").each(function (s, i) {
883
- _[s] = SFSI(i).val();
884
- });
885
- var l = SFSI("input[name='sfsi_Shown_pop']:checked").val(),
886
- S = SFSI("input[name='sfsi_Shown_popupOnceTime']").val(),
887
- u = SFSI("#sfsi_Shown_popuplimitPerUserTime").val(),
888
- f = {
889
- action: "updateSrcn7",
890
- sfsi_popup_text: i,
891
- sfsi_popup_font: e,
892
- sfsi_popup_fontColor: color,
893
- /*sfsi_popup_fontStyle: t,*/
894
- sfsi_popup_fontSize: n,
895
- sfsi_popup_background_color: o,
896
- sfsi_popup_border_color: a,
897
- sfsi_popup_border_thickness: r,
898
- sfsi_popup_border_shadow: c,
899
- sfsi_Show_popupOn: p,
900
- sfsi_Show_popupOn_PageIDs: _,
901
- sfsi_Shown_pop: l,
902
- sfsi_Shown_popupOnceTime: S,
903
- sfsi_Shown_popuplimitPerUserTime: u,
904
- nonce: nonce
905
- };
906
- SFSI.ajax({
907
- url: sfsi_icon_ajax_object.ajax_url,
908
- type: "post",
909
- data: f,
910
- dataType: "json",
911
- async: !0,
912
- success: function (s) {
913
- if (s == "wrong_nonce") {
914
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
915
- afterLoad();
916
- } else {
917
- "success" == s ? (showErrorSuc("success", "Saved !", 7), sfsicollapse("#sfsi_save7")) : showErrorSuc("error", "Unkown error , please try again", 7),
918
- afterLoad();
919
- }
920
- }
921
- });
922
- }
923
-
924
- function sfsi_update_step8() {
925
- var nonce = SFSI("#sfsi_save8").attr("data-nonce");
926
- beForeLoad();
927
- var ie = SFSI("input[name='sfsi_form_adjustment']:checked").val(),
928
- je = SFSI("input[name='sfsi_form_height']").val(),
929
- ke = SFSI("input[name='sfsi_form_width']").val(),
930
- le = SFSI("input[name='sfsi_form_border']:checked").val(),
931
- me = SFSI("input[name='sfsi_form_border_thickness']").val(),
932
- ne = SFSI("input[name='sfsi_form_border_color']").val(),
933
- oe = SFSI("input[name='sfsi_form_background']").val(),
934
-
935
- ae = SFSI("input[name='sfsi_form_heading_text']").val(),
936
- be = SFSI("#sfsi_form_heading_font option:selected").val(),
937
- ce = SFSI("#sfsi_form_heading_fontstyle option:selected").val(),
938
- de = SFSI("input[name='sfsi_form_heading_fontcolor']").val(),
939
- ee = SFSI("input[name='sfsi_form_heading_fontsize']").val(),
940
- fe = SFSI("#sfsi_form_heading_fontalign option:selected").val(),
941
-
942
- ue = SFSI("input[name='sfsi_form_field_text']").val(),
943
- ve = SFSI("#sfsi_form_field_font option:selected").val(),
944
- we = SFSI("#sfsi_form_field_fontstyle option:selected").val(),
945
- xe = SFSI("input[name='sfsi_form_field_fontcolor']").val(),
946
- ye = SFSI("input[name='sfsi_form_field_fontsize']").val(),
947
- ze = SFSI("#sfsi_form_field_fontalign option:selected").val(),
948
-
949
- i = SFSI("input[name='sfsi_form_button_text']").val(),
950
- j = SFSI("#sfsi_form_button_font option:selected").val(),
951
- k = SFSI("#sfsi_form_button_fontstyle option:selected").val(),
952
- l = SFSI("input[name='sfsi_form_button_fontcolor']").val(),
953
- m = SFSI("input[name='sfsi_form_button_fontsize']").val(),
954
- n = SFSI("#sfsi_form_button_fontalign option:selected").val(),
955
- o = SFSI("input[name='sfsi_form_button_background']").val();
956
-
957
- var f = {
958
- action: "updateSrcn8",
959
- sfsi_form_adjustment: ie,
960
- sfsi_form_height: je,
961
- sfsi_form_width: ke,
962
- sfsi_form_border: le,
963
- sfsi_form_border_thickness: me,
964
- sfsi_form_border_color: ne,
965
- sfsi_form_background: oe,
966
-
967
- sfsi_form_heading_text: ae,
968
- sfsi_form_heading_font: be,
969
- sfsi_form_heading_fontstyle: ce,
970
- sfsi_form_heading_fontcolor: de,
971
- sfsi_form_heading_fontsize: ee,
972
- sfsi_form_heading_fontalign: fe,
973
-
974
- sfsi_form_field_text: ue,
975
- sfsi_form_field_font: ve,
976
- sfsi_form_field_fontstyle: we,
977
- sfsi_form_field_fontcolor: xe,
978
- sfsi_form_field_fontsize: ye,
979
- sfsi_form_field_fontalign: ze,
980
-
981
- sfsi_form_button_text: i,
982
- sfsi_form_button_font: j,
983
- sfsi_form_button_fontstyle: k,
984
- sfsi_form_button_fontcolor: l,
985
- sfsi_form_button_fontsize: m,
986
- sfsi_form_button_fontalign: n,
987
- sfsi_form_button_background: o,
988
-
989
- nonce: nonce
990
- };
991
- SFSI.ajax({
992
- url: sfsi_icon_ajax_object.ajax_url,
993
- type: "post",
994
- data: f,
995
- dataType: "json",
996
- async: !0,
997
- success: function (s) {
998
- if (s == "wrong_nonce") {
999
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
1000
- afterLoad();
1001
- } else {
1002
- "success" == s ? (showErrorSuc("success", "Saved !", 8), sfsicollapse("#sfsi_save8"), create_suscriber_form()) : showErrorSuc("error", "Unkown error , please try again", 8),
1003
- afterLoad();
1004
- }
1005
- }
1006
- });
1007
- }
1008
-
1009
- // Queestion 3
1010
- function sfsi_update_step9() {
1011
- sfsi_update_step6();
1012
- var nonce = SFSI("#sfsi_save9").attr("data-nonce");
1013
- beForeLoad();
1014
-
1015
- var i_float = SFSI("input[name='sfsi_icons_float']:checked").val(),
1016
- i_floatP = SFSI("input[name='sfsi_icons_floatPosition']:checked").val(),
1017
- i_floatMt = SFSI("input[name='sfsi_icons_floatMargin_top']").val(),
1018
- i_floatMb = SFSI("input[name='sfsi_icons_floatMargin_bottom']").val(),
1019
- i_floatMl = SFSI("input[name='sfsi_icons_floatMargin_left']").val(),
1020
- i_floatMr = SFSI("input[name='sfsi_icons_floatMargin_right']").val(),
1021
- i_disableFloat = SFSI("input[name='sfsi_disable_floaticons']:checked").val(),
1022
-
1023
- show_via_widget = SFSI("input[name='sfsi_show_via_widget']").val(),
1024
- show_via__shortcode = SFSI("input[name='sfsi_show_via_shortcode']:checked").length==0?"no":"yes",
1025
- sfsi_show_via_afterposts = SFSI("input[name='sfsi_show_via_afterposts']").val();
1026
-
1027
- var f = {
1028
-
1029
- action: "updateSrcn9",
1030
-
1031
- sfsi_icons_float: i_float,
1032
- sfsi_icons_floatPosition: i_floatP,
1033
- sfsi_icons_floatMargin_top: i_floatMt,
1034
- sfsi_icons_floatMargin_bottom: i_floatMb,
1035
- sfsi_icons_floatMargin_left: i_floatMl,
1036
- sfsi_icons_floatMargin_right: i_floatMr,
1037
- sfsi_disable_floaticons: i_disableFloat,
1038
-
1039
- sfsi_show_via_widget: show_via_widget,
1040
- sfsi_show_via_shortcode: show_via__shortcode,
1041
- sfsi_show_via_afterposts: sfsi_show_via_afterposts,
1042
- nonce: nonce
1043
- };
1044
- SFSI.ajax({
1045
- url: sfsi_icon_ajax_object.ajax_url,
1046
- type: "post",
1047
- data: f,
1048
- dataType: "json",
1049
- async: !0,
1050
- success: function (s) {
1051
- if (s == "wrong_nonce") {
1052
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 9);
1053
- afterLoad();
1054
- } else {
1055
- "success" == s ? (showErrorSuc("success", "Saved !", 9), sfsicollapse("#sfsi_save9")) : showErrorSuc("error", "Unkown error , please try again", 9),
1056
- afterLoad();
1057
- }
1058
- }
1059
- });
1060
- }
1061
-
1062
- function sfsi_validationStep2() {
1063
- //var class_name= SFSI(element).hasAttr('sfsi_validate');
1064
- SFSI('input').removeClass('inputError'); // remove previous error
1065
- if (sfsi_validator(SFSI('input[name="sfsi_rss_display"]'), 'checked')) {
1066
- if (!sfsi_validator(SFSI('input[name="sfsi_rss_url"]'), 'url')) {
1067
- showErrorSuc("error", "Error : Invalid Rss url ", 2);
1068
- SFSI('input[name="sfsi_rss_url"]').addClass('inputError');
1069
-
1070
- return false;
1071
- }
1072
- }
1073
- /* validate facebook */
1074
- if (sfsi_validator(SFSI('input[name="sfsi_facebookPage_option"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_facebookPage_option"]'), 'checked')) {
1075
- if (!sfsi_validator(SFSI('input[name="sfsi_facebookPage_url"]'), 'blank')) {
1076
- showErrorSuc("error", "Error : Invalid Facebook page url ", 2);
1077
- SFSI('input[name="sfsi_facebookPage_url"]').addClass('inputError');
1078
-
1079
- return false;
1080
- }
1081
- }
1082
- /* validate twitter user name */
1083
- if (sfsi_validator(SFSI('input[name="sfsi_twitter_followme"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_followme"]'), 'checked')) {
1084
- if (!sfsi_validator(SFSI('input[name="sfsi_twitter_followUserName"]'), 'blank')) {
1085
- showErrorSuc("error", "Error : Invalid Twitter UserName ", 2);
1086
- SFSI('input[name="sfsi_twitter_followUserName"]').addClass('inputError');
1087
- return false;
1088
- }
1089
- }
1090
- /* validate twitter about page */
1091
- if (sfsi_validator(SFSI('input[name="sfsi_twitter_aboutPage"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_aboutPage"]'), 'checked')) {
1092
- if (!sfsi_validator(SFSI('#sfsi_twitter_aboutPageText'), 'blank')) {
1093
- showErrorSuc("error", "Error : Tweet about my page is blank ", 2);
1094
- SFSI('#sfsi_twitter_aboutPageText').addClass('inputError');
1095
- return false;
1096
- }
1097
- }
1098
- /* twitter validation */
1099
- if (sfsi_validator(SFSI('input[name="sfsi_twitter_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_page"]'), 'checked')) {
1100
- if (!sfsi_validator(SFSI('input[name="sfsi_twitter_pageURL"]'), 'blank')) {
1101
- showErrorSuc("error", "Error : Invalid twitter page Url ", 2);
1102
- SFSI('input[name="sfsi_twitter_pageURL"]').addClass('inputError');
1103
- return false;
1104
- }
1105
- }
1106
-
1107
- /* youtube validation */
1108
- if (sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'checked')) {
1109
- if (!sfsi_validator(SFSI('input[name="sfsi_youtube_pageUrl"]'), 'blank')) {
1110
- showErrorSuc("error", "Error : Invalid youtube Url ", 2);
1111
- SFSI('input[name="sfsi_youtube_pageUrl"]').addClass('inputError');
1112
- return false;
1113
- }
1114
- }
1115
- /* youtube validation */
1116
- if (sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_follow"]'), 'checked')) {
1117
- cls = SFSI("input[name='sfsi_youtubeusernameorid']:checked").val();
1118
- if (cls == 'name' && !sfsi_validator(SFSI('input[name="sfsi_ytube_user"]'), 'blank')) {
1119
- showErrorSuc("error", "Error : Invalid youtube user name", 2);
1120
- SFSI('input[name="sfsi_ytube_user"]').addClass('inputError');
1121
- return false;
1122
- }
1123
-
1124
- if (cls == 'id' && !sfsi_validator(SFSI('input[name="sfsi_ytube_chnlid"]'), 'blank')) {
1125
- showErrorSuc("error", "Error : Invalid youtube Channel ID ", 2);
1126
- SFSI('input[name="sfsi_ytube_user"]').addClass('inputError');
1127
- return false;
1128
- }
1129
- }
1130
- /* pinterest validation */
1131
- if (sfsi_validator(SFSI('input[name="sfsi_pinterest_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_pinterest_page"]'), 'checked')) {
1132
- if (!sfsi_validator(SFSI('input[name="sfsi_pinterest_pageUrl"]'), 'blank')) {
1133
- showErrorSuc("error", "Error : Invalid pinterest page url ", 2);
1134
- SFSI('input[name="sfsi_pinterest_pageUrl"]').addClass('inputError');
1135
- return false;
1136
- }
1137
- }
1138
- /* instagram validation */
1139
- if (sfsi_validator(SFSI('input[name="sfsi_instagram_display"]'), 'checked')) {
1140
- if (!sfsi_validator(SFSI('input[name="sfsi_instagram_pageUrl"]'), 'blank')) {
1141
- showErrorSuc("error", "Error : Invalid Instagram url ", 2);
1142
- SFSI('input[name="sfsi_instagram_pageUrl"]').addClass('inputError');
1143
- return false;
1144
- }
1145
- }
1146
- /* telegram validation */
1147
- if (sfsi_validator(SFSI('input[name="sfsi_telegram_display"]'), 'checked')) {
1148
- if (!sfsi_validator(SFSI('input[name="sfsi_telegram_username"]'), 'blank')) {
1149
- showErrorSuc("error", "Error : Invalid telegram username ", 2);
1150
- SFSI('input[name="sfsi_telegram_username"]').addClass('inputError');
1151
- return false;
1152
- }
1153
- }
1154
- /* telegram validation */
1155
- if (sfsi_validator(SFSI('input[name="sfsi_telegram_display"]'), 'checked')) {
1156
- if (!sfsi_validator(SFSI('input[name="sfsi_telegram_message"]'), 'blank')) {
1157
- showErrorSuc("error", "Error : Invalid Message ", 2);
1158
- SFSI('input[name="sfsi_telegram_message"]').addClass('inputError');
1159
- return false;
1160
- }
1161
- }
1162
- /* vk validation */
1163
- if (sfsi_validator(SFSI('input[name="sfsi_vk_display"]'), 'checked')) {
1164
- if (!sfsi_validator(SFSI('input[name="sfsi_vk_pageURL"]'), 'blank')) {
1165
- showErrorSuc("error", "Error : Invalid vk url ", 2);
1166
- SFSI('input[name="sfsi_vk_pageURL"]').addClass('inputError');
1167
- return false;
1168
- }
1169
- }
1170
- /* ok validation */
1171
- if (sfsi_validator(SFSI('input[name="sfsi_ok_display"]'), 'checked')) {
1172
- if (!sfsi_validator(SFSI('input[name="sfsi_ok_pageURL"]'), 'blank')) {
1173
- showErrorSuc("error", "Error : Invalid ok url ", 2);
1174
- SFSI('input[name="sfsi_ok_pageURL"]').addClass('inputError');
1175
- return false;
1176
- }
1177
- }
1178
- /* weibo validation */
1179
- if (sfsi_validator(SFSI('input[name="sfsi_weibo_display"]'), 'checked')) {
1180
- if (!sfsi_validator(SFSI('input[name="sfsi_weibo_pageURL"]'), 'blank')) {
1181
- showErrorSuc("error", "Error : Invalid weibo url ", 2);
1182
- SFSI('input[name="sfsi_weibo_pageURL"]').addClass('inputError');
1183
- return false;
1184
- }
1185
- }
1186
- /* LinkedIn validation */
1187
- if (sfsi_validator(SFSI('input[name="sfsi_linkedin_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedin_page"]'), 'checked')) {
1188
- if (!sfsi_validator(SFSI('input[name="sfsi_linkedin_pageURL"]'), 'blank')) {
1189
- showErrorSuc("error", "Error : Invalid LinkedIn page url ", 2);
1190
- SFSI('input[name="sfsi_linkedin_pageURL"]').addClass('inputError');
1191
- return false;
1192
- }
1193
- }
1194
- if (sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendBusines"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendBusines"]'), 'checked')) {
1195
- if (!sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendProductId"]'), 'blank') || !sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendCompany"]'), 'blank')) {
1196
- showErrorSuc("error", "Error : Please Enter Product Id and Company for LinkedIn Recommendation ", 2);
1197
- SFSI('input[name="sfsi_linkedin_recommendProductId"]').addClass('inputError');
1198
- SFSI('input[name="sfsi_linkedin_recommendCompany"]').addClass('inputError');
1199
- return false;
1200
- }
1201
- }
1202
- /* validate custom links */
1203
- var er = 0;
1204
- SFSI("input[name='sfsi_CustomIcon_links[]']").each(function () {
1205
-
1206
- //if(!sfsi_validator(SFSI(this),'blank') || !sfsi_validator(SFSI(SFSI(this)),'url') )
1207
- if (!sfsi_validator(SFSI(this), 'blank')) {
1208
- showErrorSuc("error", "Error : Please Enter a valid Custom link ", 2);
1209
- SFSI(this).addClass('inputError');
1210
- er = 1;
1211
- }
1212
- });
1213
- if (!er) return true;
1214
- else return false;
1215
- }
1216
-
1217
- function sfsi_validationStep3() {
1218
- SFSI('input').removeClass('inputError'); // remove previous error
1219
- /* validate shuffle effect */
1220
- if (sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'checked')) {
1221
- if ((!sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'activte') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'checked')) && (!sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'activte') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked'))) {
1222
- showErrorSuc("error", "Error : Please Chose a Shuffle option ", 3);
1223
- SFSI('input[name="sfsi_shuffle_Firstload"]').addClass('inputError');
1224
- SFSI('input[name="sfsi_shuffle_interval"]').addClass('inputError');
1225
- return false;
1226
- }
1227
- }
1228
- if (!sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'checked') && (sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'checked') || sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked'))) {
1229
- showErrorSuc("error", "Error : Please check \"Shuffle them automatically\" option also ", 3);
1230
- SFSI('input[name="sfsi_shuffle_Firstload"]').addClass('inputError');
1231
- SFSI('input[name="sfsi_shuffle_interval"]').addClass('inputError');
1232
- return false;
1233
- }
1234
-
1235
- /* validate twitter user name */
1236
- if (sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked')) {
1237
-
1238
- if (!sfsi_validator(SFSI('input[name="sfsi_shuffle_intervalTime"]'), 'blank') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_intervalTime"]'), 'int')) {
1239
- showErrorSuc("error", "Error : Invalid shuffle time interval", 3);
1240
- SFSI('input[name="sfsi_shuffle_intervalTime"]').addClass('inputError');
1241
- return false;
1242
- }
1243
- }
1244
- return true;
1245
- }
1246
-
1247
- function sfsi_validationStep4() {
1248
- //var class_name= SFSI(element).hasAttr('sfsi_validate');
1249
- /* validate email */
1250
- if (sfsi_validator(SFSI('input[name="sfsi_email_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_email_countsDisplay"]'), 'checked')) {
1251
- if (SFSI('input[name="sfsi_email_countsFrom"]:checked').val() == 'manual') {
1252
- if (!sfsi_validator(SFSI('input[name="sfsi_email_manualCounts"]'), 'blank')) {
1253
- showErrorSuc("error", "Error : Please Enter manual counts for Email icon ", 4);
1254
- SFSI('input[name="sfsi_email_manualCounts"]').addClass('inputError');
1255
- return false;
1256
- }
1257
- }
1258
- }
1259
- /* validate RSS count */
1260
- if (sfsi_validator(SFSI('input[name="sfsi_rss_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_rss_countsDisplay"]'), 'checked')) {
1261
- if (!sfsi_validator(SFSI('input[name="sfsi_rss_manualCounts"]'), 'blank')) {
1262
- showErrorSuc("error", "Error : Please Enter manual counts for Rss icon ", 4);
1263
- SFSI('input[name="sfsi_rss_countsDisplay"]').addClass('inputError');
1264
- return false;
1265
- }
1266
- }
1267
- /* validate facebook */
1268
- if (sfsi_validator(SFSI('input[name="sfsi_facebook_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_facebook_countsDisplay"]'), 'checked')) {
1269
- /*if(SFSI('input[name="sfsi_facebook_countsFrom"]:checked').val()=='likes' )
1270
- {
1271
- if(!sfsi_validator(SFSI('input[name="sfsi_facebook_PageLink"]'),'blank'))
1272
- { showErrorSuc("error","Error : Please Enter facebook page Url ",4);
1273
- SFSI('input[name="sfsi_facebook_PageLink"]').addClass('inputError');
1274
- return false;
1275
- }
1276
- } */
1277
- if (SFSI('input[name="sfsi_facebook_countsFrom"]:checked').val() == 'manual') {
1278
- if (!sfsi_validator(SFSI('input[name="sfsi_facebook_manualCounts"]'), 'blank') && !sfsi_validator(SFSI('input[name="sfsi_facebook_manualCounts"]'), 'url')) {
1279
- showErrorSuc("error", "Error : Please Enter a valid facebook manual counts ", 4);
1280
- SFSI('input[name="sfsi_facebook_manualCounts"]').addClass('inputError');
1281
- return false;
1282
- }
1283
- }
1284
- }
1285
-
1286
- /* validate twitter */
1287
- if (sfsi_validator(SFSI('input[name="sfsi_twitter_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_countsDisplay"]'), 'checked')) {
1288
- if (SFSI('input[name="sfsi_twitter_countsFrom"]:checked').val() == 'source') {
1289
- if (!sfsi_validator(SFSI('input[name="tw_consumer_key"]'), 'blank')) {
1290
- showErrorSuc("error", "Error : Please Enter a valid consumer key", 4);
1291
- SFSI('input[name="tw_consumer_key"]').addClass('inputError');
1292
- return false;
1293
- }
1294
- if (!sfsi_validator(SFSI('input[name="tw_consumer_secret"]'), 'blank')) {
1295
- showErrorSuc("error", "Error : Please Enter a valid consume secret ", 4);
1296
- SFSI('input[name="tw_consumer_secret"]').addClass('inputError');
1297
- return false;
1298
- }
1299
- if (!sfsi_validator(SFSI('input[name="tw_oauth_access_token"]'), 'blank')) {
1300
- showErrorSuc("error", "Error : Please Enter a valid oauth access token", 4);
1301
- SFSI('input[name="tw_oauth_access_token"]').addClass('inputError');
1302
- return false;
1303
- }
1304
- if (!sfsi_validator(SFSI('input[name="tw_oauth_access_token_secret"]'), 'blank')) {
1305
- showErrorSuc("error", "Error : Please Enter a oAuth access token secret", 4);
1306
- SFSI('input[name="tw_oauth_access_token_secret"]').addClass('inputError');
1307
- return false;
1308
- }
1309
- }
1310
- if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'manual') {
1311
-
1312
- if (!sfsi_validator(SFSI('input[name="sfsi_twitter_manualCounts"]'), 'blank')) {
1313
- showErrorSuc("error", "Error : Please Enter Twitter manual counts ", 4);
1314
- SFSI('input[name="sfsi_twitter_manualCounts"]').addClass('inputError');
1315
- return false;
1316
- }
1317
- }
1318
- }
1319
- /* validate LinkedIn */
1320
- if (sfsi_validator(SFSI('input[name="sfsi_linkedIn_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedIn_countsDisplay"]'), 'checked')) {
1321
- if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'follower') {
1322
- if (!sfsi_validator(SFSI('input[name="ln_company"]'), 'blank')) {
1323
- showErrorSuc("error", "Error : Please Enter a valid company name", 4);
1324
- SFSI('input[name="ln_company"]').addClass('inputError');
1325
- return false;
1326
- }
1327
- if (!sfsi_validator(SFSI('input[name="ln_api_key"]'), 'blank')) {
1328
- showErrorSuc("error", "Error : Please Enter a valid API key ", 4);
1329
- SFSI('input[name="ln_api_key"]').addClass('inputError');
1330
- return false;
1331
- }
1332
- if (!sfsi_validator(SFSI('input[name="ln_secret_key"]'), 'blank')) {
1333
- showErrorSuc("error", "Error : Please Enter a valid secret ", 4);
1334
- SFSI('input[name="ln_secret_key"]').addClass('inputError');
1335
- return false;
1336
- }
1337
- if (!sfsi_validator(SFSI('input[name="ln_oAuth_user_token"]'), 'blank')) {
1338
- showErrorSuc("error", "Error : Please Enter a oAuth Access Token", 4);
1339
- SFSI('input[name="ln_oAuth_user_token"]').addClass('inputError');
1340
- return false;
1341
- }
1342
- }
1343
- if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'manual') {
1344
- if (!sfsi_validator(SFSI('input[name="sfsi_linkedIn_manualCounts"]'), 'blank')) {
1345
- showErrorSuc("error", "Error : Please Enter LinkedIn manual counts ", 4);
1346
- SFSI('input[name="sfsi_linkedIn_manualCounts"]').addClass('inputError');
1347
- return false;
1348
- }
1349
- }
1350
- }
1351
- /* validate youtube */
1352
- if (sfsi_validator(SFSI('input[name="sfsi_youtube_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_countsDisplay"]'), 'checked')) {
1353
- if (SFSI('input[name="sfsi_youtube_countsFrom"]:checked').val() == 'subscriber') {
1354
- if (
1355
- !sfsi_validator(SFSI('input[name="sfsi_youtube_user"]'), 'blank') &&
1356
- !sfsi_validator(SFSI('input[name="sfsi_youtube_channelId"]'), 'blank')
1357
- ) {
1358
- showErrorSuc("error", "Error : Please Enter a youtube user name or channel id", 4);
1359
- SFSI('input[name="sfsi_youtube_user"]').addClass('inputError');
1360
- SFSI('input[name="sfsi_youtube_channelId"]').addClass('inputError');
1361
- return false;
1362
- }
1363
- }
1364
- if (SFSI('input[name="sfsi_youtube_countsFrom"]:checked').val() == 'manual') {
1365
- if (!sfsi_validator(SFSI('input[name="sfsi_youtube_manualCounts"]'), 'blank')) {
1366
- showErrorSuc("error", "Error : Please Enter youtube manual counts ", 4);
1367
- SFSI('input[name="sfsi_youtube_manualCounts"]').addClass('inputError');
1368
- return false;
1369
- }
1370
- }
1371
- }
1372
- /* validate pinterest */
1373
- if (sfsi_validator(SFSI('input[name="sfsi_pinterest_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_pinterest_countsDisplay"]'), 'checked')) {
1374
- if (SFSI('input[name="sfsi_pinterest_countsFrom"]:checked').val() == 'manual') {
1375
- if (!sfsi_validator(SFSI('input[name="sfsi_pinterest_manualCounts"]'), 'blank')) {
1376
- showErrorSuc("error", "Error : Please Enter Pinterest manual counts ", 4);
1377
- SFSI('input[name="sfsi_pinterest_manualCounts"]').addClass('inputError');
1378
- return false;
1379
- }
1380
- }
1381
- }
1382
- /* validate instagram */
1383
- if (sfsi_validator(SFSI('input[name="sfsi_instagram_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_instagram_countsDisplay"]'), 'checked')) {
1384
- if (SFSI('input[name="sfsi_instagram_countsFrom"]:checked').val() == 'manual') {
1385
- if (!sfsi_validator(SFSI('input[name="sfsi_instagram_manualCounts"]'), 'blank')) {
1386
- showErrorSuc("error", "Error : Please Enter Instagram manual counts ", 4);
1387
- SFSI('input[name="sfsi_instagram_manualCounts"]').addClass('inputError');
1388
- return false;
1389
- }
1390
- }
1391
- if (SFSI('input[name="sfsi_instagram_countsFrom"]:checked').val() == 'followers') {
1392
- if (!sfsi_validator(SFSI('input[name="sfsi_instagram_User"]'), 'blank')) {
1393
- showErrorSuc("error", "Error : Please Enter a instagram user name", 4);
1394
- SFSI('input[name="sfsi_instagram_User"]').addClass('inputError');
1395
- return false;
1396
- }
1397
- }
1398
- }
1399
- return true;
1400
- }
1401
-
1402
- function sfsi_validationStep5() {
1403
- //var class_name= SFSI(element).hasAttr('sfsi_validate');
1404
- /* validate size */
1405
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_size"]'), 'int')) {
1406
- showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1407
- SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1408
- return false;
1409
- }
1410
- if (parseInt(SFSI('input[name="sfsi_icons_size"]').val()) > 100) {
1411
- showErrorSuc("error", "Error : Icons Size allow 100px maximum ", 5);
1412
- SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1413
- return false;
1414
- }
1415
- if (parseInt(SFSI('input[name="sfsi_icons_size"]').val()) <= 0) {
1416
- showErrorSuc("error", "Error : Icons Size should be more than 0 ", 5);
1417
- SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1418
- return false;
1419
- }
1420
- /* validate spacing */
1421
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_spacing"]'), 'int')) {
1422
- showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1423
- SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1424
- return false;
1425
- }
1426
- if (parseInt(SFSI('input[name="sfsi_icons_spacing"]').val()) < 0) {
1427
- showErrorSuc("error", "Error : Icons Spacing should be 0 or more", 5);
1428
- SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1429
- return false;
1430
- }
1431
- /* icons per row spacing */
1432
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_perRow"]'), 'int')) {
1433
- showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1434
- SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1435
- return false;
1436
- }
1437
- if (parseInt(SFSI('input[name="sfsi_icons_perRow"]').val()) <= 0) {
1438
- showErrorSuc("error", "Error : Icons Per row should be more than 0", 5);
1439
- SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1440
- return false;
1441
- }
1442
- /* validate icons effects */
1443
- // if(SFSI('input[name="sfsi_icons_float"]:checked').val()=="yes" && SFSI('input[name="sfsi_icons_stick"]:checked').val()=="yes")
1444
- // {
1445
- // showErrorSuc("error","Error : Only one allow from Sticking & floating ",5);
1446
- // SFSI('input[name="sfsi_icons_float"][value="no"]').prop("checked", true);
1447
- // return false;
1448
- // }
1449
- return true;
1450
- }
1451
-
1452
- function sfsi_validationStep7() {
1453
- //var class_name= SFSI(element).hasAttr('sfsi_validate');
1454
- /* validate border thikness */
1455
- if (!sfsi_validator(SFSI('input[name="sfsi_popup_border_thickness"]'), 'int')) {
1456
- showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1457
- SFSI('input[name="sfsi_popup_border_thickness"]').addClass('inputError');
1458
- return false;
1459
- }
1460
- /* validate fotn size */
1461
- if (!sfsi_validator(SFSI('input[name="sfsi_popup_fontSize"]'), 'int')) {
1462
- showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1463
- SFSI('input[name="sfsi_popup_fontSize"]').addClass('inputError');
1464
- return false;
1465
- }
1466
- /* validate pop up shown */
1467
- if (SFSI('input[name="sfsi_Shown_pop"]:checked').val() == 'once') {
1468
-
1469
- if (!sfsi_validator(SFSI('input[name="sfsi_Shown_popupOnceTime"]'), 'blank') && !sfsi_validator(SFSI('input[name="sfsi_Shown_popupOnceTime"]'), 'url')) {
1470
- showErrorSuc("error", "Error : Please Enter a valid pop up shown time ", 7);
1471
- SFSI('input[name="sfsi_Shown_popupOnceTime"]').addClass('inputError');
1472
- return false;
1473
- }
1474
- }
1475
- /* validate page ids */
1476
- if (SFSI('input[name="sfsi_Show_popupOn"]:checked').val() == 'selectedpage') {
1477
- if (!sfsi_validator(SFSI('input[name="sfsi_Show_popupOn"]'), 'blank')) {
1478
- showErrorSuc("error", "Error : Please Enter page ids with comma ", 7);
1479
- SFSI('input[name="sfsi_Show_popupOn"]').addClass('inputError');
1480
- return false;
1481
- }
1482
- }
1483
- /* validate spacing */
1484
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_spacing"]'), 'int')) {
1485
- showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1486
- SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1487
- return false;
1488
- }
1489
- /* icons per row spacing */
1490
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_perRow"]'), 'int')) {
1491
- showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1492
- SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1493
- return false;
1494
- }
1495
- return true;
1496
- }
1497
-
1498
- function sfsi_validator(element, valType) {
1499
- var Vurl = new RegExp("^(http|https|ftp)\://([a-zA-Z0-9\.\-]+(\:[a-zA-Z0-9\.&amp;%\$\-]+)*@)*((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])|([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9\-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\@\?\'\\\+&amp;%\$#\=~_\-]+))*$");
1500
- //var Vurl = /http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/;
1501
-
1502
- switch (valType) {
1503
- case "blank":
1504
- if (!element.val().trim()) return false;
1505
- else return true;
1506
- break;
1507
- case "url":
1508
- if (!Vurl.test(element.val().trim())) return false;
1509
- else return true;
1510
- break;
1511
- case "checked":
1512
- if (!element.attr('checked') === true) return false;
1513
- else return true;
1514
- break;
1515
- case "activte":
1516
- if (!element.attr('disabled')) return true;
1517
- else return false;
1518
- break;
1519
- case "int":
1520
- if (!isNaN(element.val())) return true;
1521
- else return false;
1522
- break;
1523
-
1524
- }
1525
- }
1526
-
1527
- function afterIconSuccess(s, nonce) {
1528
- if (s.res = "success") {
1529
- var i = s.key + 1,
1530
- e = s.element,
1531
- t = e + 1;
1532
- SFSI("#total_cusotm_icons").val(s.element);
1533
- SFSI(".upload-overlay").hide("slow");
1534
- SFSI(".uperror").html("");
1535
- showErrorSuc("success", "Custom Icon updated successfully", 1);
1536
- d = new Date();
1537
-
1538
- var ele = SFSI(".notice_custom_icons_premium");
1539
-
1540
- SFSI("li.custom:last-child").removeClass("bdr_btm_non");
1541
- SFSI("li.custom:last-child").children("span.custom-img").children("img").attr("src", s.img_path + "?" + d.getTime());
1542
- SFSI("input[name=sfsiICON_" + s.key + "]").removeAttr("ele-type");
1543
- SFSI("input[name=sfsiICON_" + s.key + "]").removeAttr("isnew");
1544
- icons_name = SFSI("li.custom:last-child").find("input.styled").attr("name");
1545
- var n = icons_name.split("_");
1546
- s.key = s.key, s.img_path += "?" + d.getTime(), 5 > e && SFSI(".icn_listing").append('<li id="c' + i + '" class="custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style=" 0px 0px;"></span><input name="sfsiICON_' + i + '" type="checkbox" value="yes" class="styled" style="display:none;" element-type="cusotm-icon" isNew="yes" /></div> <span class="custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="CImg_' + i + '" alt="error" /> </span> <span class="custom custom-txt">Custom' + t + ' </span> <div class="right_info"> <p><span>It depends:</span> Upload a custom icon if you have other accounts/websites you want to link to.</p><div class="inputWrapper"></div></li>'),
1547
- SFSI(".custom_section").show(),
1548
- SFSI('<div class="row sfsiICON_' + s.key + ' cm_lnk"> <h2 class="custom"> <span class="customstep2-img"> <img src="' + s.img_path + "?" + d.getTime() + '" style="border-radius:48%" alt="error" /> </span> <span class="sfsiCtxt">Custom ' + e + '</span> </h2> <div class="inr_cont "><p>Where do you want this icon to link to?</p> <p class="radio_section fb_url custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>').insertBefore('.notice_custom_icons_premium');
1549
- //SFSI(".custom-links").append(' <div class="row sfsiICON_' + s.key + ' cm_lnk"> <h2 class="custom"> <span class="customstep2-img"> <img src="' + s.img_path + "?" + d.getTime() + '" style="border-radius:48%" /> </span> <span class="sfsiCtxt">Custom ' + e + '</span> </h2> <div class="inr_cont "><p>Where do you want this icon to link to?</p> <p class="radio_section fb_url custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>');
1550
- SFSI(".notice_custom_icons_premium").show();
1551
- SFSI("#c" + s.key).append('<input type="hidden" name="nonce" value="' + nonce + '">');
1552
- var o = SFSI("div.custom_m").find("div.mouseover_field").length;
1553
- SFSI("div.custom_m").append(0 == o % 2 ? '<div class="clear"> </div> <div class="mouseover_field custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>' : '<div class="cHover " ><div class="mouseover_field custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>'),
1554
- SFSI("ul.share_icon_order").append('<li class="custom_iconOrder sfsiICON_' + s.key + '" data-index="" element-id="' + s.key + '" id=""><a href="#" title="Custom Icon" ><img src="' + s.img_path + '" alt="Linked In" class="sfcm"/></a></li>'),
1555
- SFSI("ul.sfsi_sample_icons").append('<li class="sfsiICON_' + s.key + '" element-id="' + s.key + '" ><div><img src="' + s.img_path + '" alt="Linked In" class="sfcm"/><span class="sfsi_Cdisplay">12k</span></div></li>'),
1556
- sfsi_update_index(), update_Sec5Iconorder(), sfsi_update_step1(), sfsi_update_step2(),
1557
- sfsi_update_step5(), SFSI(".upload-overlay").css("pointer-events", "auto"), sfsi_showPreviewCounts(),
1558
- afterLoad();
1559
- }
1560
- }
1561
-
1562
- function beforeIconSubmit(s) {
1563
- if (SFSI(".uperror").html("Uploading....."), window.File && window.FileReader && window.FileList && window.Blob) {
1564
- SFSI(s).val() || SFSI(".uperror").html("File is empty");
1565
- var i = s.files[0].size,
1566
- e = s.files[0].type;
1567
- switch (e) {
1568
- case "image/png":
1569
- case "image/gif":
1570
- case "image/jpeg":
1571
- case "image/pjpeg":
1572
- break;
1573
-
1574
- default:
1575
- return SFSI(".uperror").html("Unsupported file"), !1;
1576
- }
1577
- return i > 1048576 ? (SFSI(".uperror").html("Image should be less than 1 MB"), !1) : !0;
1578
- }
1579
- return !0;
1580
- }
1581
-
1582
- function bytesToSize(s) {
1583
- var i = ["Bytes", "KB", "MB", "GB", "TB"];
1584
- if (0 == s) return "0 Bytes";
1585
- var e = parseInt(Math.floor(Math.log(s) / Math.log(1024)));
1586
- return Math.round(s / Math.pow(1024, e), 2) + " " + i[e];
1587
- }
1588
-
1589
- function showErrorSuc(s, i, e) {
1590
- if ("error" == s) var t = "errorMsg";
1591
- else var t = "sucMsg";
1592
- return SFSI(".tab" + e + ">." + t).html(i), SFSI(".tab" + e + ">." + t).show(),
1593
- SFSI(".tab" + e + ">." + t).effect("highlight", {}, 5e3), setTimeout(function () {
1594
- SFSI("." + t).slideUp("slow");
1595
- }, 5e3), !1;
1596
- }
1597
-
1598
- function beForeLoad() {
1599
- SFSI(".loader-img").show(), SFSI(".save_button >a").html("Saving..."), SFSI(".save_button >a").css("pointer-events", "none");
1600
- }
1601
-
1602
- function afterLoad() {
1603
- SFSI("input").removeClass("inputError"), SFSI(".save_button >a").html("Save"), SFSI(".tab10>div.save_button >a").html("Save All Settings"),
1604
- SFSI(".save_button >a").css("pointer-events", "auto"), SFSI(".save_button >a").removeAttr("onclick"),
1605
- SFSI(".loader-img").hide();
1606
- }
1607
-
1608
- function sfsi_make_popBox() {
1609
- var s = 0;
1610
- SFSI(".sfsi_sample_icons >li").each(function () {
1611
- "none" != SFSI(this).css("display") && (s = 1);
1612
- }),
1613
- 0 == s ? SFSI(".sfsi_Popinner").hide() : SFSI(".sfsi_Popinner").show(),
1614
- "" != SFSI('input[name="sfsi_popup_text"]').val() ? (SFSI(".sfsi_Popinner >h2").html(SFSI('input[name="sfsi_popup_text"]').val()),
1615
- SFSI(".sfsi_Popinner >h2").show()) : SFSI(".sfsi_Popinner >h2").hide(), SFSI(".sfsi_Popinner").css({
1616
- "border-color": SFSI('input[name="sfsi_popup_border_color"]').val(),
1617
- "border-width": SFSI('input[name="sfsi_popup_border_thickness"]').val(),
1618
- "border-style": "solid"
1619
- }),
1620
- SFSI(".sfsi_Popinner").css("background-color", SFSI('input[name="sfsi_popup_background_color"]').val()),
1621
- SFSI(".sfsi_Popinner h2").css("font-family", SFSI("#sfsi_popup_font").val()), SFSI(".sfsi_Popinner h2").css("font-style", SFSI("#sfsi_popup_fontStyle").val()),
1622
- SFSI(".sfsi_Popinner >h2").css("font-size", parseInt(SFSI('input[name="sfsi_popup_fontSize"]').val())),
1623
- SFSI(".sfsi_Popinner >h2").css("color", SFSI('input[name="sfsi_popup_fontColor"]').val() + " !important"),
1624
- "yes" == SFSI('input[name="sfsi_popup_border_shadow"]:checked').val() ? SFSI(".sfsi_Popinner").css("box-shadow", "12px 30px 18px #CCCCCC") : SFSI(".sfsi_Popinner").css("box-shadow", "none");
1625
- }
1626
-
1627
- function sfsi_stick_widget(s) {
1628
- 0 == initTop.length && (SFSI(".sfsi_widget").each(function (s) {
1629
- initTop[s] = SFSI(this).position().top;
1630
- })
1631
- );
1632
- var i = SFSI(window).scrollTop(),
1633
- e = [],
1634
- t = [];
1635
- SFSI(".sfsi_widget").each(function (s) {
1636
- e[s] = SFSI(this).position().top, t[s] = SFSI(this);
1637
- });
1638
- var n = !1;
1639
- for (var o in e) {
1640
- var a = parseInt(o) + 1;
1641
- e[o] < i && e[a] > i && a < e.length ? (SFSI(t[o]).css({
1642
- position: "fixed",
1643
- top: s
1644
- }), SFSI(t[a]).css({
1645
- position: "",
1646
- top: initTop[a]
1647
- }), n = !0) : SFSI(t[o]).css({
1648
- position: "",
1649
- top: initTop[o]
1650
- });
1651
- }
1652
- if (!n) {
1653
- var r = e.length - 1,
1654
- c = -1;
1655
- e.length > 1 && (c = e.length - 2), initTop[r] < i ? (SFSI(t[r]).css({
1656
- position: "fixed",
1657
- top: s
1658
- }), c >= 0 && SFSI(t[c]).css({
1659
- position: "",
1660
- top: initTop[c]
1661
- })) : (SFSI(t[r]).css({
1662
- position: "",
1663
- top: initTop[r]
1664
- }), c >= 0 && e[c] < i);
1665
- }
1666
- }
1667
-
1668
- function sfsi_setCookie(s, i, e) {
1669
- var t = new Date();
1670
- t.setTime(t.getTime() + 1e3 * 60 * 60 * 24 * e);
1671
- var n = "expires=" + t.toGMTString();
1672
- document.cookie = s + "=" + i + "; " + n;
1673
- }
1674
-
1675
- function sfsfi_getCookie(s) {
1676
- for (var i = s + "=", e = document.cookie.split(";"), t = 0; t < e.length; t++) {
1677
- var n = e[t].trim();
1678
- if (0 == n.indexOf(i)) return n.substring(i.length, n.length);
1679
- }
1680
- return "";
1681
- }
1682
-
1683
- function sfsi_hideFooter() {}
1684
-
1685
- window.onerror = function () {},
1686
- SFSI = jQuery,
1687
- SFSI(window).on('load', function () {
1688
- SFSI("#sfpageLoad").fadeOut(2e3);
1689
- });
1690
-
1691
- //changes done {Monad}
1692
- function selectText(containerid) {
1693
- if (document.selection) {
1694
- var range = document.body.createTextRange();
1695
- range.moveToElementText(document.getElementById(containerid));
1696
- range.select();
1697
- } else if (window.getSelection()) {
1698
- var range = document.createRange();
1699
- range.selectNode(document.getElementById(containerid));
1700
- window.getSelection().removeAllRanges();
1701
- window.getSelection().addRange(range);
1702
- }
1703
- }
1704
-
1705
- function create_suscriber_form() {
1706
- //Popbox customization
1707
- "no" == SFSI('input[name="sfsi_form_adjustment"]:checked').val() ? SFSI(".sfsi_subscribe_Popinner").css({
1708
- "width": parseInt(SFSI('input[name="sfsi_form_width"]').val()),
1709
- "height": parseInt(SFSI('input[name="sfsi_form_height"]').val())
1710
- }) : SFSI(".sfsi_subscribe_Popinner").css({
1711
- "width": '',
1712
- "height": ''
1713
- });
1714
-
1715
- "yes" == SFSI('input[name="sfsi_form_adjustment"]:checked').val() ? SFSI(".sfsi_html > .sfsi_subscribe_Popinner").css({
1716
- "width": "100%"
1717
- }) : '';
1718
-
1719
- "yes" == SFSI('input[name="sfsi_form_border"]:checked').val() ? SFSI(".sfsi_subscribe_Popinner").css({
1720
- "border": SFSI('input[name="sfsi_form_border_thickness"]').val() + "px solid " + SFSI('input[name="sfsi_form_border_color"]').val()
1721
- }) : SFSI(".sfsi_subscribe_Popinner").css("border", "none");
1722
-
1723
- SFSI('input[name="sfsi_form_background"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").css("background-color", SFSI('input[name="sfsi_form_background"]').val())) : '';
1724
-
1725
- //Heading customization
1726
- SFSI('input[name="sfsi_form_heading_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").html(SFSI('input[name="sfsi_form_heading_text"]').val())) : SFSI(".sfsi_subscribe_Popinner > form > h5").html('');
1727
-
1728
- SFSI('#sfsi_form_heading_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-family", SFSI("#sfsi_form_heading_font").val())) : '';
1729
-
1730
- if (SFSI('#sfsi_form_heading_fontstyle').val() != 'bold') {
1731
- SFSI('#sfsi_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-style", SFSI("#sfsi_form_heading_fontstyle").val())) : '';
1732
- SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-weight", '');
1733
- } else {
1734
- SFSI('#sfsi_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-weight", "bold")) : '';
1735
- SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-style", '');
1736
- }
1737
-
1738
- SFSI('input[name="sfsi_form_heading_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("color", SFSI('input[name="sfsi_form_heading_fontcolor"]').val())) : '';
1739
-
1740
- SFSI('input[name="sfsi_form_heading_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css({
1741
- "font-size": parseInt(SFSI('input[name="sfsi_form_heading_fontsize"]').val())
1742
- })) : '';
1743
-
1744
- SFSI('#sfsi_form_heading_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("text-align", SFSI("#sfsi_form_heading_fontalign").val())) : '';
1745
-
1746
- //Field customization
1747
- SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", '');
1748
-
1749
- SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".sfsi_left_container > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".sfsi_left_container > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1750
-
1751
- SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".like_pop_box > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".like_pop_box > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1752
-
1753
- SFSI('#sfsi_form_field_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-family", SFSI("#sfsi_form_field_font").val())) : '';
1754
-
1755
- if (SFSI('#sfsi_form_field_fontstyle').val() != "bold") {
1756
- SFSI('#sfsi_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", SFSI("#sfsi_form_field_fontstyle").val())) : '';
1757
- SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", '');
1758
- } else {
1759
- SFSI('#sfsi_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", 'bold')) : '';
1760
- SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", '');
1761
- }
1762
-
1763
- SFSI('input[name="sfsi_form_field_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("color", SFSI('input[name="sfsi_form_field_fontcolor"]').val())) : '';
1764
-
1765
- SFSI('input[name="sfsi_form_field_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css({
1766
- "font-size": parseInt(SFSI('input[name="sfsi_form_field_fontsize"]').val())
1767
- })) : '';
1768
-
1769
- SFSI('#sfsi_form_field_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("text-align", SFSI("#sfsi_form_field_fontalign").val())) : '';
1770
-
1771
- //Button customization
1772
- SFSI('input[name="sfsi_form_button_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').attr("value", SFSI('input[name="sfsi_form_button_text"]').val())) : '';
1773
-
1774
- SFSI('#sfsi_form_button_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-family", SFSI("#sfsi_form_button_font").val())) : '';
1775
-
1776
- if (SFSI('#sfsi_form_button_fontstyle').val() != "bold") {
1777
- SFSI('#sfsi_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", SFSI("#sfsi_form_button_fontstyle").val())) : '';
1778
- SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", '');
1779
- } else {
1780
- SFSI('#sfsi_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", 'bold')) : '';
1781
- SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", '');
1782
- }
1783
-
1784
- SFSI('input[name="sfsi_form_button_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("color", SFSI('input[name="sfsi_form_button_fontcolor"]').val())) : '';
1785
-
1786
- SFSI('input[name="sfsi_form_button_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css({
1787
- "font-size": parseInt(SFSI('input[name="sfsi_form_button_fontsize"]').val())
1788
- })) : '';
1789
-
1790
- SFSI('#sfsi_form_button_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("text-align", SFSI("#sfsi_form_button_fontalign").val())) : '';
1791
-
1792
- SFSI('input[name="sfsi_form_button_background"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("background-color", SFSI('input[name="sfsi_form_button_background"]').val())) : '';
1793
-
1794
- var innerHTML = SFSI(".sfsi_html > .sfsi_subscribe_Popinner").html();
1795
- var styleCss = SFSI(".sfsi_html > .sfsi_subscribe_Popinner").attr("style");
1796
- innerHTML = '<div style="' + styleCss + '">' + innerHTML + '</div>';
1797
- SFSI(".sfsi_subscription_html > xmp").html(innerHTML);
1798
-
1799
- /*var data = {
1800
- action:"getForm",
1801
- heading: SFSI('input[name="sfsi_form_heading_text"]').val(),
1802
- placeholder:SFSI('input[name="sfsi_form_field_text"]').val(),
1803
- button:SFSI('input[name="sfsi_form_button_text"]').val()
1804
- };
1805
- SFSI.ajax({
1806
- url:sfsi_icon_ajax_object.ajax_url,
1807
- type:"post",
1808
- data:data,
1809
- success:function(s) {
1810
- SFSI(".sfsi_subscription_html").html(s);
1811
- }
1812
- });*/
1813
- }
1814
-
1815
- var global_error = 0;
1816
- if (typeof SFSI != 'undefined') {
1817
-
1818
- function sfsi_dismiss_notice(btnClass, ajaxAction) {
1819
-
1820
- var btnClass = "." + btnClass;
1821
-
1822
- SFSI(document).on("click", btnClass, function () {
1823
-
1824
- SFSI.ajax({
1825
- url: sfsi_icon_ajax_object.ajax_url,
1826
- type: "post",
1827
- data: {
1828
- action: ajaxAction
1829
- },
1830
- success: function (e) {
1831
- if (false != e) {
1832
- SFSI(btnClass).parent().remove();
1833
- }
1834
- }
1835
- });
1836
- });
1837
- }
1838
- }
1839
-
1840
- SFSI(document).ready(function (s) {
1841
- function sfsi_open_admin_section(id){
1842
- SFSI("#ui-id-"+(id+1)).show();
1843
- SFSI("#ui-id-"+id).removeClass("ui-corner-all");
1844
- SFSI("#ui-id-"+id).addClass("ui-corner-top");
1845
- SFSI("#ui-id-"+id).addClass("accordion-header-active");
1846
- SFSI("#ui-id-"+id).addClass("ui-state-active");
1847
- SFSI("#ui-id-"+id).attr("aria-expanded","false");
1848
- SFSI("#ui-id-"+id).attr("aria-selected","true");
1849
- if(SFSI("#ui-id-"+(id+1)).length>0){
1850
- SFSI("#ui-id-"+(id+1))[0].scrollIntoView(false);
1851
- }
1852
- }
1853
- var arrDismiss = [
1854
-
1855
- {
1856
- "btnClass": "sfsi-notice-dismiss",
1857
- "action": "sfsi_dismiss_lang_notice"
1858
- },
1859
-
1860
- {
1861
- "btnClass": "sfsi-AddThis-notice-dismiss",
1862
- "action": "sfsi_dismiss_addThis_icon_notice"
1863
- },
1864
-
1865
- {
1866
- "btnClass": "sfsi_error_reporting_notice-dismiss",
1867
- "action": "sfsi_dismiss_error_reporting_notice"
1868
- }
1869
- ];
1870
-
1871
- SFSI.each(arrDismiss, function (key, valueObj) {
1872
- sfsi_dismiss_notice(valueObj.btnClass, valueObj.action);
1873
- });
1874
-
1875
- var sfsi_show_option1 = SFSI('input[name="sfsi_show_via_widget"]:checked').val()||'no';
1876
- var sfsi_show_option2 = SFSI('input[name="sfsi_icons_float"]:checked').val()||'no';
1877
- var sfsi_show_option3 = SFSI('input[name="sfsi_show_via_shortcode"]:checked').val()||'no';
1878
- var sfsi_show_option4 = SFSI('input[name="sfsi_show_via_afterposts"]:checked').val()||'no';
1879
- var sfsi_analyst_popup = SFSI('#sfsi_analyst_pop').attr('data-status');
1880
- if(sfsi_analyst_popup =="no"){
1881
- if(sfsi_show_option1=="no" && sfsi_show_option2=='no' && sfsi_show_option3 =='no' && sfsi_show_option4 == 'no'){
1882
- sfsi_open_admin_section(5);
1883
- if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1884
- setTimeout(function(){
1885
- sfsi_open_admin_section(5);
1886
- if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1887
- setTimeout(function(){
1888
- sfsi_open_admin_section(5);
1889
- if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1890
- setTimeout(function(){
1891
- sfsi_open_admin_section(5);
1892
- if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1893
- setTimeout(function(){
1894
- sfsi_open_admin_section(5);
1895
- },2000);
1896
- }
1897
- },2000);
1898
- }
1899
- },2000);
1900
- }
1901
- },2000);
1902
- }
1903
- }
1904
- }else{
1905
- SFSI("#analyst-install-skip, #analyst-install-action").click(function(){
1906
- sfsi_open_admin_section(5);
1907
- if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1908
- setTimeout(function(){
1909
- sfsi_open_admin_section(5);
1910
- if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1911
- setTimeout(function(){
1912
- sfsi_open_admin_section(5);
1913
-
1914
- if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1915
- setTimeout(function(){
1916
- sfsi_open_admin_section(5);
1917
- },2000);
1918
- }
1919
- },2000);
1920
- }
1921
- },2000);
1922
- }
1923
- })
1924
- }
1925
-
1926
- SFSI(document).on("click", "#sfsi_dummy_chat_icon", function () {
1927
- SFSI(".sfsi_wait_container").show();
1928
- });
1929
-
1930
- //changes done {Monad}
1931
- SFSI(".tab_3_icns").on("click", ".cstomskins_upload", function () {
1932
- SFSI(".cstmskins-overlay").show("slow", function () {
1933
- e = 0;
1934
- });
1935
- });
1936
- /*SFSI("#custmskin_clspop").live("click", function() {*/
1937
- SFSI(document).on("click", '#custmskin_clspop', function () {
1938
- SFSI_done();
1939
- SFSI(".cstmskins-overlay").hide("slow");
1940
- });
1941
-
1942
- create_suscriber_form();
1943
- SFSI('input[name="sfsi_form_heading_text"], input[name="sfsi_form_border_thickness"], input[name="sfsi_form_height"], input[name="sfsi_form_width"], input[name="sfsi_form_heading_fontsize"], input[name="sfsi_form_field_text"], input[name="sfsi_form_field_fontsize"], input[name="sfsi_form_button_text"], input[name="sfsi_form_button_fontsize"]').on("keyup", create_suscriber_form);
1944
-
1945
- SFSI('input[name="sfsi_form_border_color"], input[name="sfsi_form_background"] ,input[name="sfsi_form_heading_fontcolor"], input[name="sfsi_form_field_fontcolor"] ,input[name="sfsi_form_button_fontcolor"],input[name="sfsi_form_button_background"]').on("focus", create_suscriber_form);
1946
-
1947
- SFSI("#sfsi_form_heading_font, #sfsi_form_heading_fontstyle, #sfsi_form_heading_fontalign, #sfsi_form_field_font, #sfsi_form_field_fontstyle, #sfsi_form_field_fontalign, #sfsi_form_button_font, #sfsi_form_button_fontstyle, #sfsi_form_button_fontalign").on("change", create_suscriber_form);
1948
-
1949
- /*SFSI(".radio").live("click", function() {*/
1950
- SFSI(document).on("click", '.radio', function () {
1951
-
1952
- var s = SFSI(this).parent().find("input:radio:first");
1953
- var inputName = s.attr("name");
1954
- var inputChecked = s.attr("checked");
1955
-
1956
- switch (inputName) {
1957
- case 'sfsi_form_adjustment':
1958
- if (s.val() == 'no')
1959
- s.parents(".row_tab").next(".row_tab").show("fast");
1960
- else
1961
- s.parents(".row_tab").next(".row_tab").hide("fast");
1962
- create_suscriber_form()
1963
- break;
1964
- case 'sfsi_form_border':
1965
- if (s.val() == 'yes')
1966
- s.parents(".row_tab").next(".row_tab").show("fast");
1967
- else
1968
- s.parents(".row_tab").next(".row_tab").hide("fast");
1969
- create_suscriber_form()
1970
- break;
1971
- case 'sfsi_icons_suppress_errors':
1972
-
1973
- SFSI('input[name="sfsi_icons_suppress_errors"]').removeAttr('checked');
1974
-
1975
- if (s.val() == 'yes')
1976
- SFSI('input[name="sfsi_icons_suppress_errors"][value="yes"]').attr('checked', 'true');
1977
- else
1978
- SFSI('input[name="sfsi_icons_suppress_errors"][value="no"]').attr('checked', 'true');
1979
- break;
1980
- case 'sfsi_responsive_icons_end_post':
1981
- if("yes" == s.val()){
1982
- jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').show();
1983
- }else{
1984
- jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').hide();
1985
- }
1986
- }
1987
- });
1988
-
1989
- SFSI('#sfsi_form_border_color').wpColorPicker({
1990
- defaultColor: false,
1991
- change: function (event, ui) {
1992
- create_suscriber_form()
1993
- },
1994
- clear: function () {
1995
- create_suscriber_form()
1996
- },
1997
- hide: true,
1998
- palettes: true
1999
- }),
2000
- SFSI('#sfsi_form_background').wpColorPicker({
2001
- defaultColor: false,
2002
- change: function (event, ui) {
2003
- create_suscriber_form()
2004
- },
2005
- clear: function () {
2006
- create_suscriber_form()
2007
- },
2008
- hide: true,
2009
- palettes: true
2010
- }),
2011
- SFSI('#sfsi_form_heading_fontcolor').wpColorPicker({
2012
- defaultColor: false,
2013
- change: function (event, ui) {
2014
- create_suscriber_form()
2015
- },
2016
- clear: function () {
2017
- create_suscriber_form()
2018
- },
2019
- hide: true,
2020
- palettes: true
2021
- }),
2022
- SFSI('#sfsi_form_button_fontcolor').wpColorPicker({
2023
- defaultColor: false,
2024
- change: function (event, ui) {
2025
- create_suscriber_form()
2026
- },
2027
- clear: function () {
2028
- create_suscriber_form()
2029
- },
2030
- hide: true,
2031
- palettes: true
2032
- }),
2033
- SFSI('#sfsi_form_button_background').wpColorPicker({
2034
- defaultColor: false,
2035
- change: function (event, ui) {
2036
- create_suscriber_form()
2037
- },
2038
- clear: function () {
2039
- create_suscriber_form()
2040
- },
2041
- hide: true,
2042
- palettes: true
2043
- });
2044
- //changes done {Monad}
2045
-
2046
- function i() {
2047
- SFSI(".uperror").html(""), afterLoad();
2048
- var s = SFSI('input[name="' + SFSI("#upload_id").val() + '"]');
2049
- s.removeAttr("checked");
2050
- var i = SFSI(s).parent().find("span:first");
2051
- return SFSI(i).css("background-position", "0px 0px"), SFSI(".upload-overlay").hide("slow"),
2052
- !1;
2053
- }
2054
- SFSI("#accordion").accordion({
2055
- collapsible: !0,
2056
- active: !1,
2057
- heightStyle: "content",
2058
- event: "click",
2059
- beforeActivate: function (s, i) {
2060
- if (i.newHeader[0]) var e = i.newHeader,
2061
- t = e.next(".ui-accordion-content");
2062
- else var e = i.oldHeader,
2063
- t = e.next(".ui-accordion-content");
2064
- var n = "true" == e.attr("aria-selected");
2065
- return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2066
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2067
- t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2068
- }
2069
- }),
2070
- SFSI("#accordion1").accordion({
2071
- collapsible: !0,
2072
- active: !1,
2073
- heightStyle: "content",
2074
- event: "click",
2075
- beforeActivate: function (s, i) {
2076
- if (i.newHeader[0]) var e = i.newHeader,
2077
- t = e.next(".ui-accordion-content");
2078
- else var e = i.oldHeader,
2079
- t = e.next(".ui-accordion-content");
2080
- var n = "true" == e.attr("aria-selected");
2081
- return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2082
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2083
- t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2084
- }
2085
- }),
2086
-
2087
- SFSI("#accordion2").accordion({
2088
- collapsible: !0,
2089
- active: !1,
2090
- heightStyle: "content",
2091
- event: "click",
2092
- beforeActivate: function (s, i) {
2093
- if (i.newHeader[0]) var e = i.newHeader,
2094
- t = e.next(".ui-accordion-content");
2095
- else var e = i.oldHeader,
2096
- t = e.next(".ui-accordion-content");
2097
- var n = "true" == e.attr("aria-selected");
2098
- return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2099
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2100
- t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2101
- }
2102
- }),
2103
- SFSI(".closeSec").on("click", function () {
2104
- var s = !0,
2105
- i = SFSI(this).closest("div.ui-accordion-content").prev("h3.ui-accordion-header").first(),
2106
- e = SFSI(this).closest("div.ui-accordion-content").first();
2107
- i.toggleClass("ui-corner-all", s).toggleClass("accordion-header-active ui-state-active ui-corner-top", !s).attr("aria-selected", (!s).toString()),
2108
- i.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", s).toggleClass("ui-icon-triangle-1-s", !s),
2109
- e.toggleClass("accordion-content-active", !s), s ? e.slideUp() : e.slideDown();
2110
- }),
2111
- SFSI(document).click(function (s) {
2112
- var i = SFSI(".sfsi_FrntInner_chg"),
2113
- e = SFSI(".sfsi_wDiv"),
2114
- t = SFSI("#at15s");
2115
- i.is(s.target) || 0 !== i.has(s.target).length || e.is(s.target) || 0 !== e.has(s.target).length || t.is(s.target) || 0 !== t.has(s.target).length || i.fadeOut();
2116
- }),
2117
- SFSI('#sfsi_popup_background_color').wpColorPicker({
2118
- defaultColor: false,
2119
- change: function (event, ui) {
2120
- sfsi_make_popBox()
2121
- },
2122
- clear: function () {
2123
- sfsi_make_popBox()
2124
- },
2125
- hide: true,
2126
- palettes: true
2127
- }),
2128
- SFSI('#sfsi_popup_border_color').wpColorPicker({
2129
- defaultColor: false,
2130
- change: function (event, ui) {
2131
- sfsi_make_popBox()
2132
- },
2133
- clear: function () {
2134
- sfsi_make_popBox()
2135
- },
2136
- hide: true,
2137
- palettes: true
2138
- }),
2139
- SFSI('#sfsi_popup_fontColor').wpColorPicker({
2140
- defaultColor: false,
2141
- change: function (event, ui) {
2142
- sfsi_make_popBox()
2143
- },
2144
- clear: function () {
2145
- sfsi_make_popBox()
2146
- },
2147
- hide: true,
2148
- palettes: true
2149
- }),
2150
- SFSI("div#sfsiid_linkedin").find(".icon4").find("a").find("img").mouseover(function () {
2151
- SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/linkedIn_hover.svg");
2152
- }),
2153
- SFSI("div#sfsiid_linkedin").find(".icon4").find("a").find("img").mouseleave(function () {
2154
- SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/linkedIn.svg");
2155
- }),
2156
- SFSI("div#sfsiid_youtube").find(".icon1").find("a").find("img").mouseover(function () {
2157
- SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/youtube_hover.svg");
2158
- }),
2159
- SFSI("div#sfsiid_youtube").find(".icon1").find("a").find("img").mouseleave(function () {
2160
- SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/youtube.svg");
2161
- }),
2162
- SFSI("div#sfsiid_facebook").find(".icon1").find("a").find("img").mouseover(function () {
2163
- SFSI(this).css("opacity", "0.9");
2164
- }),
2165
- SFSI("div#sfsiid_facebook").find(".icon1").find("a").find("img").mouseleave(function () {
2166
- SFSI(this).css("opacity", "1");
2167
- }),
2168
- SFSI("div#sfsiid_twitter").find(".cstmicon1").find("a").find("img").mouseover(function () {
2169
- SFSI(this).css("opacity", "0.9");
2170
- }),
2171
- SFSI("div#sfsiid_twitter").find(".cstmicon1").find("a").find("img").mouseleave(function () {
2172
- SFSI(this).css("opacity", "1");
2173
- }),
2174
- SFSI("#sfsi_save1").on("click", function () {
2175
- sfsi_update_step1() && sfsicollapse(this);
2176
- }),
2177
- SFSI("#sfsi_save2").on("click", function () {
2178
- sfsi_update_step2() && sfsicollapse(this);
2179
- }),
2180
- SFSI("#sfsi_save3").on("click", function () {
2181
- sfsi_update_step3() && sfsicollapse(this);
2182
- }),
2183
- SFSI("#sfsi_save4").on("click", function () {
2184
- sfsi_update_step4() && sfsicollapse(this);
2185
- }),
2186
- SFSI("#sfsi_save5").on("click", function () {
2187
- sfsi_update_step5() && sfsicollapse(this);
2188
- }),
2189
- SFSI("#sfsi_save6").on("click", function () {
2190
- sfsi_update_step6() && sfsicollapse(this);
2191
- }),
2192
- SFSI("#sfsi_save7").on("click", function () {
2193
- sfsi_update_step7() && sfsicollapse(this);
2194
- }),
2195
- SFSI("#sfsi_save8").on("click", function () {
2196
- sfsi_update_step8() && sfsicollapse(this);
2197
- }),
2198
- SFSI("#sfsi_save9").on("click", function () {
2199
- sfsi_update_step9() && sfsicollapse(this);
2200
- }),
2201
- SFSI("#sfsi_save_export").on("click", function () {
2202
- sfsi_save_export();
2203
- }),
2204
- SFSI("#save_all_settings").on("click", function () {
2205
- return SFSI("#save_all_settings").text("Saving.."), SFSI(".save_button >a").css("pointer-events", "none"),
2206
- sfsi_update_step1(), sfsi_update_step8(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Which icons do you want to show on your site?" tab.', 8),
2207
- global_error = 0, !1) : (sfsi_update_step2(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "What do you want the icons to do?" tab.', 8),
2208
- global_error = 0, !1) : (sfsi_update_step3(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "What design & animation do you want to give your icons?" tab.', 8),
2209
- global_error = 0, !1) : (sfsi_update_step4(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display "counts" next to your icons?" tab.', 8),
2210
- global_error = 0, !1) : (sfsi_update_step5(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Any other wishes for your main icons?" tab.', 8),
2211
- global_error = 0, !1) : (sfsi_update_step6(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display icons at the end of every post?" tab.', 8),
2212
- global_error = 0, !1) : (sfsi_update_step7(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display a pop-up, asking people to subscribe?" tab.', 8),
2213
- /*global_error = 0, !1) :void (0 == global_error && showErrorSuc("success", 'Saved! Now go to the <a href="widgets.php">widget</a> area and place the widget into your sidebar (if not done already)', 8))))))));*/
2214
- global_error = 0, !1) : void(0 == global_error && showErrorSuc("success", '', 8))))))));
2215
- }),
2216
- /*SFSI(".fileUPInput").live("change", function() {*/
2217
- SFSI(document).on("change", '.fileUPInput', function () {
2218
- beForeLoad(), beforeIconSubmit(this) && (SFSI(".upload-overlay").css("pointer-events", "none"),
2219
- SFSI("#customIconFrm").ajaxForm({
2220
- dataType: "json",
2221
- success: afterIconSuccess,
2222
- resetForm: !0
2223
- }).submit());
2224
- }),
2225
- SFSI(".pop-up").on("click", function () {
2226
- ("fbex-s2" == SFSI(this).attr("data-id") || "linkex-s2" == SFSI(this).attr("data-id")) && (SFSI("." + SFSI(this).attr("data-id")).hide(),
2227
- SFSI("." + SFSI(this).attr("data-id")).css("opacity", "1"), SFSI("." + SFSI(this).attr("data-id")).css("z-index", "1000")),
2228
- SFSI("." + SFSI(this).attr("data-id")).show("slow");
2229
- }),
2230
- /*SFSI("#close_popup").live("click", function() {*/
2231
- SFSI(document).on("click", '#close_popup', function () {
2232
- SFSI(".read-overlay").hide("slow");
2233
- });
2234
-
2235
- var e = 0;
2236
- SFSI(".icn_listing").on("click", ".checkbox", function () {
2237
- if (1 == e) return !1;
2238
- "yes" == SFSI(this).attr("dynamic_ele") && (s = SFSI(this).parent().find("input:checkbox:first"),
2239
- s.is(":checked") ? SFSI(s).attr("checked", !1) : SFSI(s).attr("checked", !0)), s = SFSI(this).parent().find("input:checkbox:first"),
2240
- "yes" == SFSI(s).attr("isNew") && ("0px 0px" == SFSI(this).css("background-position") ? (SFSI(s).attr("checked", !0),
2241
- SFSI(this).css("background-position", "0px -36px")) : (SFSI(s).removeAttr("checked", !0),
2242
- SFSI(this).css("background-position", "0px 0px")));
2243
- var s = SFSI(this).parent().find("input:checkbox:first");
2244
- if (s.is(":checked") && "cusotm-icon" == s.attr("element-type")) SFSI(".fileUPInput").attr("name", "custom_icons[]"),
2245
- SFSI(".upload-overlay").show("slow", function () {
2246
- e = 0;
2247
- }), SFSI("#upload_id").val(s.attr("name"));
2248
- else if (!s.is(":checked") && "cusotm-icon" == s.attr("element-type")) return s.attr("ele-type") ? (SFSI(this).attr("checked", !0),
2249
- SFSI(this).css("background-position", "0px -36px"), e = 0, !1) : confirm("Are you sure want to delete this Icon..?? ") ? "suc" == sfsi_delete_CusIcon(this, s) ? (s.attr("checked", !1),
2250
- SFSI(this).css("background-position", "0px 0px"), e = 0, !1) : (e = 0, !1) : (s.attr("checked", !0),
2251
- SFSI(this).css("background-position", "0px -36px"), e = 0, !1);
2252
- }),
2253
- SFSI(".icn_listing").on("click", ".checkbox", function () {
2254
- checked = SFSI(this).parent().find("input:checkbox:first"), "sfsi_email_display" != checked.attr("name") || checked.is(":checked") || SFSI(".demail-1").show("slow");
2255
- }),
2256
- SFSI("#deac_email2").on("click", function () {
2257
- SFSI(".demail-1").hide("slow"), SFSI(".demail-2").show("slow");
2258
- }),
2259
- SFSI("#deac_email3").on("click", function () {
2260
- SFSI(".demail-2").hide("slow"), SFSI(".demail-3").show("slow");
2261
- }),
2262
- SFSI(".hideemailpop").on("click", function () {
2263
- SFSI('input[name="sfsi_email_display"]').attr("checked", !0), SFSI('input[name="sfsi_email_display"]').parent().find("span:first").css("background-position", "0px -36px"),
2264
- SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2265
- }),
2266
- SFSI(".hidePop").on("click", function () {
2267
- SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2268
- }),
2269
- SFSI(".activate_footer").on("click", function () {
2270
- var nonce = SFSI(this).attr("data-nonce");
2271
- SFSI(this).text("activating....");
2272
- var s = {
2273
- action: "activateFooter",
2274
- nonce: nonce
2275
- };
2276
- SFSI.ajax({
2277
- url: sfsi_icon_ajax_object.ajax_url,
2278
- type: "post",
2279
- data: s,
2280
- dataType: "json",
2281
- success: function (s) {
2282
- if (s.res == "wrong_nonce") {
2283
- SFSI(".activate_footer").css("font-size", "18px");
2284
- SFSI(".activate_footer").text("Unauthorised Request, Try again after refreshing page");
2285
- } else {
2286
- "success" == s.res && (SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"),
2287
- SFSI(".demail-3").hide("slow"), SFSI(".activate_footer").text("Ok, activate link"));
2288
- }
2289
- }
2290
- });
2291
- }),
2292
- SFSI(".sfsi_removeFooter").on("click", function () {
2293
- var nonce = SFSI(this).attr("data-nonce");
2294
- SFSI(this).text("working....");
2295
- var s = {
2296
- action: "removeFooter",
2297
- nonce: nonce
2298
- };
2299
- SFSI.ajax({
2300
- url: sfsi_icon_ajax_object.ajax_url,
2301
- type: "post",
2302
- data: s,
2303
- dataType: "json",
2304
- success: function (s) {
2305
- if (s.res == "wrong_nonce") {
2306
- SFSI(".sfsi_removeFooter").text("Unauthorised Request, Try again after refreshing page");
2307
- } else {
2308
- "success" == s.res && (SFSI(".sfsi_removeFooter").fadeOut("slow"), SFSI(".sfsi_footerLnk").fadeOut("slow"));
2309
- }
2310
- }
2311
- });
2312
- }),
2313
- /*SFSI(".radio").live("click", function() {*/
2314
- SFSI(document).on("click", '.radio', function () {
2315
- var s = SFSI(this).parent().find("input:radio:first");
2316
- "sfsi_display_counts" == s.attr("name") && sfsi_show_counts();
2317
- }),
2318
- SFSI("#close_Uploadpopup").on("click", i), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2319
- var s = SFSI(this).parent().find("input:radio:first");
2320
- "sfsi_show_Onposts" == s.attr("name") && sfsi_show_OnpostsDisplay();
2321
- }),
2322
- sfsi_show_OnpostsDisplay(), sfsi_depened_sections(), sfsi_show_counts(), sfsi_showPreviewCounts(),
2323
- SFSI(".share_icon_order").sortable({
2324
- update: function () {
2325
- SFSI(".share_icon_order li").each(function () {
2326
- SFSI(this).attr("data-index", SFSI(this).index() + 1);
2327
- });
2328
- },
2329
- revert: !0
2330
- }),
2331
-
2332
- //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post STARTS -------------------------------------//
2333
-
2334
- SFSI(document).on("click", '.checkbox', function () {
2335
-
2336
- var s = SFSI(this).parent().find("input:checkbox:first");
2337
- var backgroundPos = jQuery(this).css('background-position').split(" ");
2338
- var xPos = backgroundPos[0],
2339
- yPos = backgroundPos[1];
2340
-
2341
- var inputName = s.attr('name');
2342
- var inputChecked = s.attr("checked");
2343
-
2344
- switch (inputName) {
2345
-
2346
- case "sfsi_custom_social_hide":
2347
-
2348
- var val = (yPos == "0px") ? "no" : "yes";
2349
- SFSI('input[name="sfsi_custom_social_hide"]').val(val);
2350
-
2351
- break;
2352
-
2353
- case "sfsi_show_via_widget":
2354
- case "sfsi_show_via_widget":
2355
- case "sfsi_show_via_afterposts":
2356
- case "sfsi_custom_social_hide":
2357
-
2358
- var val = (yPos == "0px") ? "no" : "yes";
2359
- SFSI('input[name="' + s.attr('name') + '"]').val(val);
2360
-
2361
- break;
2362
-
2363
- case 'sfsi_mouseOver':
2364
-
2365
- var elem = SFSI('input[name="' + inputName + '"]');
2366
-
2367
- var togglelem = SFSI('.mouse-over-effects');
2368
-
2369
- if (inputChecked) {
2370
- togglelem.removeClass('hide').addClass('show');
2371
- } else {
2372
- togglelem.removeClass('show').addClass('hide');
2373
- }
2374
-
2375
- break;
2376
- case 'sfsi_responsive_facebook_display':
2377
- if(inputChecked){
2378
- SFSI('.sfsi_responsive_icon_facebook_container').parents('a').show();
2379
- var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2380
- if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2381
- window.sfsi_fittext_shouldDisplay=true;
2382
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2383
- if(jQuery(a_container).css('display')!=="none"){
2384
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2385
- }
2386
- })
2387
- }
2388
- }else{
2389
-
2390
- SFSI('.sfsi_responsive_icon_facebook_container').parents('a').hide();
2391
- if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2392
- window.sfsi_fittext_shouldDisplay=true;
2393
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2394
- if(jQuery(a_container).css('display')!=="none"){
2395
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2396
- }
2397
- })
2398
- }
2399
- }
2400
- break;
2401
- case 'sfsi_responsive_Twitter_display':
2402
- if(inputChecked){
2403
- SFSI('.sfsi_responsive_icon_twitter_container').parents('a').show();
2404
- var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2405
- if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2406
- window.sfsi_fittext_shouldDisplay=true;
2407
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2408
- if(jQuery(a_container).css('display')!=="none"){
2409
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2410
- }
2411
- })
2412
- }
2413
- }else{
2414
- SFSI('.sfsi_responsive_icon_twitter_container').parents('a').hide();
2415
- if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2416
- window.sfsi_fittext_shouldDisplay=true;
2417
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2418
- if(jQuery(a_container).css('display')!=="none"){
2419
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2420
- }
2421
- })
2422
- }
2423
- }
2424
- break;
2425
- case 'sfsi_responsive_Follow_display':
2426
- if(inputChecked){
2427
- SFSI('.sfsi_responsive_icon_follow_container').parents('a').show();
2428
- var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2429
- }else{
2430
- SFSI('.sfsi_responsive_icon_follow_container').parents('a').hide();
2431
- }
2432
- window.sfsi_fittext_shouldDisplay=true;
2433
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2434
- if(jQuery(a_container).css('display')!=="none"){
2435
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2436
- }
2437
- })
2438
- break;
2439
- }
2440
-
2441
- });
2442
-
2443
- //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post CLOSES -------------------------------------//
2444
-
2445
- SFSI(document).on("click", '.radio', function () {
2446
-
2447
- var s = SFSI(this).parent().find("input:radio:first");
2448
-
2449
- switch (s.attr("name")) {
2450
-
2451
- case 'sfsi_mouseOver_effect_type':
2452
-
2453
- var _val = s.val();
2454
- var _name = s.attr("name");
2455
-
2456
- if ('same_icons' == _val) {
2457
- SFSI('.same_icons_effects').removeClass('hide').addClass('show');
2458
- SFSI('.other_icons_effects_options').removeClass('show').addClass('hide');
2459
- } else if ('other_icons' == _val) {
2460
- SFSI('.same_icons_effects').removeClass('show').addClass('hide');
2461
- SFSI('.other_icons_effects_options').removeClass('hide').addClass('show');
2462
- }
2463
-
2464
- break;
2465
- }
2466
-
2467
- });
2468
-
2469
- SFSI(document).on("click", '.radio', function () {
2470
-
2471
- var s = SFSI(this).parent().find("input:radio:first");
2472
- "sfsi_email_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_email_countsDisplay"]').prop("checked", !0),
2473
- SFSI('input[name="sfsi_email_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2474
- "manual" == SFSI("input[name='sfsi_email_countsFrom']:checked").val() ? SFSI("input[name='sfsi_email_manualCounts']").slideDown() : SFSI("input[name='sfsi_email_manualCounts']").slideUp()),
2475
-
2476
- "sfsi_facebook_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_facebook_countsDisplay"]').prop("checked", !0),
2477
- SFSI('input[name="sfsi_facebook_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2478
- "mypage" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_facebook_mypageCounts']").slideDown(), SFSI(".sfsi_fbpgidwpr").slideDown()) : (SFSI("input[name='sfsi_facebook_mypageCounts']").slideUp(), SFSI(".sfsi_fbpgidwpr").slideUp()),
2479
-
2480
- "manual" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() ? SFSI("input[name='sfsi_facebook_manualCounts']").slideDown() : SFSI("input[name='sfsi_facebook_manualCounts']").slideUp()),
2481
-
2482
- "sfsi_facebook_countsFrom" == s.attr("name") && (("mypage" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() || "likes" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val()) ? (SFSI(".sfsi_facebook_pagedeasc").slideDown()) : (SFSI(".sfsi_facebook_pagedeasc").slideUp())),
2483
-
2484
- "sfsi_twitter_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_twitter_countsDisplay"]').prop("checked", !0),
2485
- SFSI('input[name="sfsi_twitter_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2486
- "manual" == SFSI("input[name='sfsi_twitter_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_twitter_manualCounts']").slideDown(),
2487
- SFSI(".tw_follow_options").slideUp()) : (SFSI("input[name='sfsi_twitter_manualCounts']").slideUp(),
2488
- SFSI(".tw_follow_options").slideDown())),
2489
-
2490
-
2491
- "sfsi_linkedIn_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_linkedIn_countsDisplay"]').prop("checked", !0),
2492
- SFSI('input[name="sfsi_linkedIn_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2493
- "manual" == SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_linkedIn_manualCounts']").slideDown(),
2494
- SFSI(".linkedIn_options").slideUp()) : (SFSI("input[name='sfsi_linkedIn_manualCounts']").slideUp(),
2495
- SFSI(".linkedIn_options").slideDown())),
2496
-
2497
- "sfsi_youtube_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_youtube_countsDisplay"]').prop("checked", !0),
2498
- SFSI('input[name="sfsi_youtube_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2499
- "manual" == SFSI("input[name='sfsi_youtube_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_youtube_manualCounts']").slideDown(),
2500
- SFSI(".youtube_options").slideUp()) : (SFSI("input[name='sfsi_youtube_manualCounts']").slideUp(),
2501
- SFSI(".youtube_options").slideDown())), "sfsi_pinterest_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_pinterest_countsDisplay"]').prop("checked", !0),
2502
- SFSI('input[name="sfsi_pinterest_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2503
- "manual" == SFSI("input[name='sfsi_pinterest_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_pinterest_manualCounts']").slideDown(),
2504
- SFSI(".pin_options").slideUp()) : SFSI("input[name='sfsi_pinterest_manualCounts']").slideUp()),
2505
-
2506
- "sfsi_instagram_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_instagram_countsDisplay"]').prop("checked", !0),
2507
- SFSI('input[name="sfsi_instagram_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2508
- "manual" == SFSI("input[name='sfsi_instagram_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_instagram_manualCounts']").slideDown(),
2509
- SFSI(".instagram_userLi").slideUp()) : (SFSI("input[name='sfsi_instagram_manualCounts']").slideUp(),
2510
- SFSI(".instagram_userLi").slideDown()));
2511
-
2512
- }),
2513
-
2514
- sfsi_make_popBox(),
2515
-
2516
- SFSI('input[name="sfsi_popup_text"] ,input[name="sfsi_popup_background_color"],input[name="sfsi_popup_border_color"],input[name="sfsi_popup_border_thickness"],input[name="sfsi_popup_fontSize"],input[name="sfsi_popup_fontColor"]').on("keyup", sfsi_make_popBox),
2517
- SFSI('input[name="sfsi_popup_text"] ,input[name="sfsi_popup_background_color"],input[name="sfsi_popup_border_color"],input[name="sfsi_popup_border_thickness"],input[name="sfsi_popup_fontSize"],input[name="sfsi_popup_fontColor"]').on("focus", sfsi_make_popBox),
2518
-
2519
- SFSI("#sfsi_popup_font ,#sfsi_popup_fontStyle").on("change", sfsi_make_popBox),
2520
-
2521
- /*SFSI(".radio").live("click", function(){*/
2522
- SFSI(document).on("click", '.radio', function () {
2523
-
2524
- var s = SFSI(this).parent().find("input:radio:first");
2525
-
2526
- if ("sfsi_icons_floatPosition" == s.attr("name")) {
2527
- SFSI('input[name="sfsi_icons_floatPosition"]').removeAttr("checked");
2528
- s.attr("checked", true);
2529
- }
2530
-
2531
- if ("sfsi_disable_floaticons" == s.attr("name")) {
2532
- SFSI('input[name="sfsi_disable_floaticons"]').removeAttr("checked");
2533
- s.attr("checked", true);
2534
- }
2535
-
2536
- "sfsi_popup_border_shadow" == s.attr("name") && sfsi_make_popBox();
2537
- }), /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ? SFSI("img.sfsi_wicon").on("click", function (s) {
2538
- s.stopPropagation();
2539
- var i = SFSI("#sfsi_floater_sec").val();
2540
- SFSI("div.sfsi_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide(),
2541
- SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_tool_tip_2").css("z-index", "0"),
2542
- SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide()),
2543
- SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2544
- "z-index": "999"
2545
- }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2546
- opacity: 1,
2547
- "z-index": 10
2548
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2549
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2550
- opacity: 1,
2551
- "z-index": 10
2552
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2553
- SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2554
- opacity: 1,
2555
- "z-index": 10
2556
- })), ("top-left" == i || "top-right" == i) && SFSI(this).parent().parent().parent().parent("#sfsi_floater").length > 0 && "sfsi_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").addClass("sfsi_plc_btm"),
2557
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2558
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2559
- opacity: 1,
2560
- "z-index": 10
2561
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2562
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").removeClass("sfsi_plc_btm"),
2563
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2564
- opacity: 1,
2565
- "z-index": 1e3
2566
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show());
2567
- }) : SFSI("img.sfsi_wicon").on("mouseenter", function () {
2568
- var s = SFSI("#sfsi_floater_sec").val();
2569
- SFSI("div.sfsi_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide(),
2570
- SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_tool_tip_2").css("z-index", "0"),
2571
- SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide()),
2572
- SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2573
- "z-index": "999"
2574
- }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2575
- opacity: 1,
2576
- "z-index": 10
2577
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2578
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2579
- opacity: 1,
2580
- "z-index": 10
2581
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2582
- SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2583
- opacity: 1,
2584
- "z-index": 10
2585
- })), ("top-left" == s || "top-right" == s) && SFSI(this).parent().parent().parent().parent("#sfsi_floater").length > 0 && "sfsi_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").addClass("sfsi_plc_btm"),
2586
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2587
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2588
- opacity: 1,
2589
- "z-index": 10
2590
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2591
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").removeClass("sfsi_plc_btm"),
2592
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2593
- opacity: 1,
2594
- "z-index": 10
2595
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show());
2596
- }), SFSI("div.sfsi_wicons").on("mouseleave", function () {
2597
- SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "fade_in" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.inerCnt").find("a.sficn").css("opacity", "0.6"),
2598
- SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "scale" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.inerCnt").find("a.sficn").removeClass("scale"),
2599
- SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "combo" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && (SFSI(this).children("div.inerCnt").find("a.sficn").css("opacity", "0.6"),
2600
- SFSI(this).children("div.inerCnt").find("a.sficn").removeClass("scale")), SFSI(this).children(".inerCnt").find("div.sfsi_tool_tip_2").hide();
2601
- }), SFSI("body").on("click", function () {
2602
- SFSI(".inerCnt").find("div.sfsi_tool_tip_2").hide();
2603
- }), SFSI(".adminTooltip >a").on("hover", function () {
2604
- SFSI(this).offset().top, SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "1"),
2605
- SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").show();
2606
- }), SFSI(".adminTooltip").on("mouseleave", function () {
2607
- "none" != SFSI(".gpls_tool_bdr").css("display") && 0 != SFSI(".gpls_tool_bdr").css("opacity") ? SFSI(".pop_up_box ").on("click", function () {
2608
- SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "0"), SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").hide();
2609
- }) : (SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "0"),
2610
- SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").hide());
2611
- }), SFSI(".expand-area").on("click", function () {
2612
- "Read more" == SFSI(this).text() ? (SFSI(this).siblings("p").children("label").fadeIn("slow"),
2613
- SFSI(this).text("Collapse")) : (SFSI(this).siblings("p").children("label").fadeOut("slow"),
2614
- SFSI(this).text("Read more"));
2615
- }), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2616
-
2617
- var s = SFSI(this).parent().find("input:radio:first");
2618
-
2619
- "sfsi_icons_float" == s.attr("name") && "yes" == s.val() && (SFSI(".float_options").slideDown("slow"),
2620
-
2621
- SFSI('input[name="sfsi_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_icons_stick"][value="yes"]').removeAttr("checked"),
2622
- SFSI('input[name="sfsi_icons_stick"][value="no"]').parent().find("span").attr("style", "0px -41px;"),
2623
- SFSI('input[name="sfsi_icons_stick"][value="yes"]').parent().find("span").attr("style", "0px -0px;")),
2624
-
2625
- //("sfsi_icons_stick" == s.attr("name") && "yes" == s.val() || "sfsi_icons_float" == s.attr("name") && "no" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2626
- ("sfsi_icons_stick" == s.attr("name") && "yes" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2627
-
2628
- SFSI('input[name="sfsi_icons_float"][value="no"]').prop("checked", !0), SFSI('input[name="sfsi_icons_float"][value="yes"]').prop("checked", !1),
2629
- SFSI('input[name="sfsi_icons_float"][value="no"]').parent().find("span.radio").attr("style", "0px -41px;"),
2630
- SFSI('input[name="sfsi_icons_float"][value="yes"]').parent().find("span.radio").attr("style", "0px -0px;"));
2631
-
2632
- }),
2633
-
2634
- SFSI(".sfsi_wDiv").length > 0 && setTimeout(function () {
2635
- var s = parseInt(SFSI(".sfsi_wDiv").height()) + 0 + "px";
2636
- SFSI(".sfsi_holders").each(function () {
2637
- SFSI(this).css("height", s);
2638
- });
2639
- }, 200),
2640
- /*SFSI(".checkbox").live("click", function() {*/
2641
- SFSI(document).on("click", '.checkbox', function () {
2642
- var s = SFSI(this).parent().find("input:checkbox:first");
2643
- ("sfsi_shuffle_Firstload" == s.attr("name") && "checked" == s.attr("checked") || "sfsi_shuffle_interval" == s.attr("name") && "checked" == s.attr("checked")) && (SFSI('input[name="sfsi_shuffle_icons"]').parent().find("span").css("background-position", "0px -36px"),
2644
- SFSI('input[name="sfsi_shuffle_icons"]').attr("checked", "checked")), "sfsi_shuffle_icons" == s.attr("name") && "checked" != s.attr("checked") && (SFSI('input[name="sfsi_shuffle_Firstload"]').removeAttr("checked"),
2645
- SFSI('input[name="sfsi_shuffle_Firstload"]').parent().find("span").css("background-position", "0px 0px"),
2646
- SFSI('input[name="sfsi_shuffle_interval"]').removeAttr("checked"), SFSI('input[name="sfsi_shuffle_interval"]').parent().find("span").css("background-position", "0px 0px"));
2647
- });
2648
-
2649
- SFSI("body").on("click", "#sfsi_getMeFullAccess", function () {
2650
- var email = SFSI(this).parents("form").find("input[type='email']").val();
2651
- var feedid = SFSI(this).parents("form").find("input[name='feed_id']").val();
2652
- var error = false;
2653
- var regEx = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/;
2654
-
2655
- if (email === '') {
2656
- error = true;
2657
- }
2658
-
2659
- if (!regEx.test(email)) {
2660
- error = true;
2661
- }
2662
-
2663
- if (!error) {
2664
- if (feedid=="" || undefined==feedid){
2665
- var nonce = SFSI(this).attr('data-nonce-fetch-feed-id');
2666
- e = {
2667
- action: "sfsi_get_feed_id",
2668
- nonce: nonce,
2669
- };
2670
- SFSI.ajax({
2671
- url: sfsi_icon_ajax_object.ajax_url,
2672
- type: "post",
2673
- data: e,
2674
- dataType: "json",
2675
- async: !0,
2676
- success: function (s) {
2677
- if (s.res == "wrong_nonce") {
2678
- alert("Error: Unauthorised Request, Try again after refreshing page.");
2679
- } else {
2680
- if("success" == s.res){
2681
- var feedid = s.feed_id;
2682
- if(feedid=="" || null == feedid){
2683
- alert("Error: Claiming didn't work. Please try again later.")
2684
- }else{
2685
- jQuery('#calimingOptimizationForm input[name="feed_id"]').val(feedid);
2686
- SFSI('#calimingOptimizationForm').submit();
2687
- }
2688
- }else{
2689
- if("failed"==s.res){
2690
- alert("Error: "+s.message+".");
2691
-
2692
- }else{
2693
- alert("Error: Please try again.");
2694
- }
2695
- }
2696
- }
2697
- }
2698
- });
2699
- }else{
2700
- SFSI(this).parents("form").submit();
2701
- }
2702
- } else {
2703
- alert("Error: Please provide your email address.");
2704
- }
2705
- });
2706
-
2707
- SFSI('form#calimingOptimizationForm').on('keypress', function (e) {
2708
- var keyCode = e.keyCode || e.which;
2709
- if (keyCode === 13) {
2710
- e.preventDefault();
2711
- return false;
2712
- }
2713
- });
2714
-
2715
- /*SFSI(".checkbox").live("click", function()
2716
- {
2717
- var s = SFSI(this).parent().find("input:checkbox:first");
2718
- "float_on_page" == s.attr("name") && "yes" == s.val() && (
2719
- SFSI('input[name="sfsi_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_icons_stick"][value="yes"]').removeAttr("checked"),
2720
- SFSI('input[name="sfsi_icons_stick"][value="no"]').parent().find("span").attr("style", "0px -41px;"),
2721
- SFSI('input[name="sfsi_icons_stick"][value="yes"]').parent().find("span").attr("style", "0px -0px;"));
2722
- });
2723
- SFSI(".radio").live("click", function()
2724
- {
2725
- var s = SFSI(this).parent().find("input:radio:first");
2726
- var a = SFSI(".cstmfltonpgstck");
2727
- ("sfsi_icons_stick" == s.attr("name") && "yes" == s.val()) && (
2728
- SFSI('input[name="float_on_page"][value="no"]').prop("checked", !0), SFSI('input[name="float_on_page"][value="yes"]').prop("checked", !1),
2729
- SFSI('input[name="float_on_page"][value="no"]').parent().find("span.checkbox").attr("style", "0px -41px;"),
2730
- SFSI('input[name="float_on_page"][value="yes"]').parent().find("span.checkbox").attr("style", "0px -0px;"),
2731
- jQuery(a).children(".checkbox").css("background-position", "0px 0px" ), toggleflotpage(a));
2732
- });*/
2733
- window.sfsi_initialization_checkbox_count = 0;
2734
- window.sfsi_initialization_checkbox = setInterval(function () {
2735
- if (jQuery('.radio_section.tb_4_ck>span.checkbox').length < jQuery('.radio_section.tb_4_ck>input.styled').length) {
2736
- window.sfsi_initialization_checkbox_count++;
2737
- if (window.sfsi_initialization_checkbox_count > 12) {
2738
- // alert('Some script from diffrent plugin is interfearing with "Ultimate Social Icons" js files and checkbox couldn\'t be initialized. ');
2739
- // window.clearInterval(window.sfsi_initialization_checkbox);
2740
- }
2741
- } else {
2742
- window.clearInterval(window.sfsi_initialization_checkbox);
2743
- }
2744
- }, 1000);
2745
- sfsi_responsive_icon_intraction_handler();
2746
-
2747
- });
2748
-
2749
- //for utube channel name and id
2750
- function showhideutube(ref) {
2751
- var chnlslctn = SFSI(ref).children("input").val();
2752
- if (chnlslctn == "name") {
2753
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideDown();
2754
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideUp();
2755
- } else {
2756
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideDown();
2757
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideUp();
2758
- }
2759
- }
2760
-
2761
- function checkforinfoslction(ref) {
2762
- var pos = jQuery(ref).children(".checkbox").css("background-position");
2763
-
2764
- var rightInfoClass = jQuery(ref).next().attr('class');
2765
-
2766
- var rightInfoPElem = jQuery(ref).next("." + rightInfoClass).children("p").first();
2767
-
2768
- var elemName = 'label';
2769
-
2770
- if (pos == "0px 0px") {
2771
- rightInfoPElem.children(elemName).hide();
2772
- } else {
2773
- rightInfoPElem.children(elemName).show();
2774
- }
2775
- }
2776
-
2777
- function checkforinfoslction_checkbox(ref) {
2778
-
2779
- var pos = jQuery(ref).children(".checkbox").css("background-position");
2780
-
2781
- var elem = jQuery(ref).parent().children('.sfsi_right_info').find('.kckslctn');
2782
-
2783
- if (pos == "0px 0px") {
2784
- elem.hide();
2785
- } else {
2786
- elem.show();
2787
- }
2788
- }
2789
-
2790
- function sfsi_toggleflotpage_que3(ref) {
2791
- var pos = jQuery(ref).children(".checkbox").css("background-position");
2792
- if (pos == "0px 0px") {
2793
- jQuery(ref).next(".sfsi_right_info").hide();
2794
-
2795
- } else {
2796
- jQuery(ref).next(".sfsi_right_info").show();
2797
- }
2798
- }
2799
-
2800
- var initTop = new Array();
2801
-
2802
- SFSI('.sfsi_navigate_to_question7').on("click", function () {
2803
-
2804
- var elem = SFSI('#ui-id-6');
2805
-
2806
- if (elem.hasClass('accordion-content-active')) {
2807
-
2808
- // Cloase tab of Question 3
2809
- elem.find('.sfsiColbtn').trigger('click');
2810
-
2811
- // Open tab of Question 7
2812
- if (!SFSI('#ui-id-14').hasClass('accordion-content-active')) {
2813
- SFSI('#ui-id-13').trigger('click');
2814
- }
2815
-
2816
- var pos = SFSI("#ui-id-13").offset();
2817
- var scrollToPos = pos.top - SFSI(window).height() * 0.99 + 30;
2818
- SFSI('html,body').animate({
2819
- scrollTop: scrollToPos
2820
- }, 500);
2821
- }
2822
- });
2823
-
2824
- SFSI("body").on("click", ".sfsi_tokenGenerateButton a", function () {
2825
- var clienId = SFSI("input[name='sfsi_instagram_clientid']").val();
2826
- var redirectUrl = SFSI("input[name='sfsi_instagram_appurl']").val();
2827
-
2828
- var scope = "basic";
2829
- var instaUrl = "https://www.instagram.com/oauth/authorize/?client_id=<id>&redirect_uri=<url>&response_type=token&scope=" + scope;
2830
-
2831
- if (clienId !== '' && redirectUrl !== '') {
2832
- instaUrl = instaUrl.replace('<id>', clienId);
2833
- instaUrl = instaUrl.replace('<url>', redirectUrl);
2834
-
2835
- window.open(instaUrl, '_blank');
2836
- } else {
2837
- alert("Please enter client id and redirect url first");
2838
- }
2839
-
2840
- });
2841
- SFSI(document).ready(function () {
2842
-
2843
- SFSI('#sfsi_jivo_offline_chat .tab-link').click(function () {
2844
- var cur = SFSI(this);
2845
- if (!cur.hasClass('active')) {
2846
- var target = cur.find('a').attr('href');
2847
- cur.parent().children().removeClass('active');
2848
- cur.addClass('active');
2849
- SFSI('#sfsi_jivo_offline_chat .tabs').children().hide();
2850
- SFSI(target).show();
2851
- }
2852
- });
2853
- SFSI('#sfsi_jivo_offline_chat #sfsi_sales form').submit(function (event) {
2854
- event & event.preventDefault();
2855
- var target = SFSI(this).parents('.tab-content');
2856
- var message = SFSI(this).find('textarea[name="question"]').val();
2857
- var email = SFSI(this).find('input[name="email"]').val();
2858
- var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
2859
- var nonce = SFSI(this).find('input[name="nonce"]').val();
2860
-
2861
- if ("" === email || false === re.test(String(email).toLowerCase())) {
2862
- SFSI(this).find('input[name="email"]').css('background-color', 'red');
2863
- SFSI(this).find('input[name="email"]').on('keyup', function () {
2864
- var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
2865
- var email = SFSI(this).val();
2866
- if ("" !== email && true === re.test(String(email).toLowerCase())) {
2867
- SFSI(this).css('background-color', '#fff');
2868
- }
2869
- })
2870
- return false;
2871
-
2872
- }
2873
- SFSI.ajax({
2874
- url: sfsi_icon_ajax_object.ajax_url,
2875
- type: "post",
2876
- data: {
2877
- action: "sfsiOfflineChatMessage",
2878
- message: message,
2879
- email: email,
2880
- 'nonce': nonce
2881
- }
2882
- }).done(function () {
2883
- target.find('.before_message_sent').hide();
2884
- target.find('.after_message_sent').show();
2885
- });
2886
- })
2887
- });
2888
-
2889
- function sfsi_close_offline_chat(e) {
2890
- e && e.preventDefault();
2891
-
2892
- SFSI('#sfsi_jivo_offline_chat').hide();
2893
- SFSI('#sfsi_dummy_chat_icon').show();
2894
- }
2895
-
2896
- function sfsi_open_quick_checkout(e) {
2897
- e && e.preventDefault();
2898
- jQuery('.sfsi_quick-pay-box').show();
2899
- }
2900
-
2901
- function sfsi_close_quickpay(e) {
2902
- e && e.preventDefault();
2903
- jQuery('.sfsi_quickpay-overlay').hide();
2904
- }
2905
-
2906
- function sfsi_quickpay_container_click(event) {
2907
- if (jQuery(event.target).hasClass('sellcodes-quick-purchase')) {
2908
- jQuery(jQuery(event.target).find('p.sc-button img')[0]).click();
2909
- }
2910
- }
2911
-
2912
-
2913
-
2914
- // <------------------------* Responsive icon *----------------------->
2915
-
2916
- function sfsi_responsive_icon_intraction_handler() {
2917
- window.sfsi_fittext_shouldDisplay = true;
2918
- SFSI('select[name="sfsi_responsive_icons_settings_edge_type"]').on('change', function () {
2919
- $target_div = (SFSI(this).parent());
2920
- if (SFSI(this).val() === "Round") {
2921
-
2922
- $target_div.parent().children().css('display', 'inline-block');
2923
- $target_div.parent().next().css("display","inline-block");
2924
- var radius = jQuery('select[name="sfsi_responsive_icons_settings_edge_radius"]').val() + 'px'
2925
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', radius);
2926
-
2927
- } else {
2928
- $target_div.parent().children().hide();
2929
- $target_div.show();
2930
- $target_div.parent().next().hide();
2931
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', 'unset');
2932
-
2933
- }
2934
- });
2935
- SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').on('change', function () {
2936
- $target_div = (SFSI(this).parent());
2937
- if (SFSI(this).val() === "Fixed icon width") {
2938
- $target_div.parent().children().css('display', 'inline-block');
2939
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width', 'auto').css('display', 'flex');
2940
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('flex-basis', 'unset');
2941
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery('input[name="sfsi_responsive_icons_sttings_icon_width_size"]').val());
2942
-
2943
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fully_container').removeClass('sfsi_icons_container_box_fully_container').addClass('sfsi_icons_container_box_fixed_container');
2944
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fixed_container').removeClass('sfsi_icons_container_box_fully_container').addClass('sfsi_icons_container_box_fixed_container');
2945
- window.sfsi_fittext_shouldDisplay = true;
2946
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2947
- if (jQuery(a_container).css('display') !== "none") {
2948
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2949
- }
2950
- })
2951
- } else {
2952
- $target_div.parent().children().hide();
2953
- $target_div.show();
2954
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width', '100%').css('display', 'flex');
2955
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('flex-basis', '100%');
2956
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', '100%');
2957
-
2958
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fixed_container').removeClass('sfsi_icons_container_box_fixed_container').addClass('sfsi_icons_container_box_fully_container');
2959
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fully_container').removeClass('sfsi_icons_container_box_fixed_container').addClass('sfsi_icons_container_box_fully_container');
2960
- window.sfsi_fittext_shouldDisplay = true;
2961
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2962
- if (jQuery(a_container).css('display') !== "none") {
2963
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2964
- }
2965
- })
2966
- }
2967
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').removeClass('sfsi_fixed_count_container').removeClass('sfsi_responsive_count_container').addClass('sfsi_' + (jQuery(this).val() == "Fully responsive" ? 'responsive' : 'fixed') + '_count_container')
2968
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container>a').removeClass('sfsi_responsive_fluid').removeClass('sfsi_responsive_fixed_width').addClass('sfsi_responsive_' + (jQuery(this).val() == "Fully responsive" ? 'fluid' : 'fixed_width'))
2969
- sfsi_resize_icons_container();
2970
-
2971
- })
2972
- jQuery(document).on('keyup', 'input[name="sfsi_responsive_icons_sttings_icon_width_size"]', function () {
2973
- if (SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
2974
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
2975
- window.sfsi_fittext_shouldDisplay = true;
2976
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2977
- if (jQuery(a_container).css('display') !== "none") {
2978
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2979
- }
2980
- })
2981
- }
2982
- sfsi_resize_icons_container();
2983
- });
2984
- jQuery(document).on('change', 'input[name="sfsi_responsive_icons_sttings_icon_width_size"]', function () {
2985
- if (SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
2986
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
2987
- }
2988
- });
2989
- jQuery(document).on('keyup', 'input[name="sfsi_responsive_icons_settings_margin"]', function () {
2990
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
2991
- });
2992
- jQuery(document).on('change', 'input[name="sfsi_responsive_icons_settings_margin"]', function () {
2993
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
2994
- // jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width',(jQuery('.sfsi_responsive_icons').width()-(jQuery('.sfsi_responsive_icons_count').width()+jQuery(this).val()))+'px');
2995
-
2996
- });
2997
- jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_text_align"]', function () {
2998
- if (jQuery(this).val() === "Centered") {
2999
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('text-align', 'center');
3000
- } else {
3001
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('text-align', 'left');
3002
- }
3003
- });
3004
- jQuery('.sfsi_responsive_default_icon_container input.sfsi_responsive_input').on('keyup', function () {
3005
- jQuery(this).parent().find('.sfsi_responsive_icon_item_container').find('span').text(jQuery(this).val());
3006
- var iconName = jQuery(this).attr('name');
3007
- var icon = iconName.replace('sfsi_responsive_', '').replace('_input', '');
3008
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_' + (icon.toLowerCase()) + '_container span').text(jQuery(this).val());
3009
- window.sfsi_fittext_shouldDisplay = true;
3010
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3011
- if (jQuery(a_container).css('display') !== "none") {
3012
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3013
- }
3014
- })
3015
- sfsi_resize_icons_container();
3016
- })
3017
- jQuery('.sfsi_responsive_custom_icon_container input.sfsi_responsive_input').on('keyup', function () {
3018
- jQuery(this).parent().find('.sfsi_responsive_icon_item_container').find('span').text(jQuery(this).val());
3019
- var iconName = jQuery(this).attr('name');
3020
- var icon = iconName.replace('sfsi_responsive_custom_', '').replace('_input', '');
3021
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_' + icon + '_container span').text(jQuery(this).val())
3022
- window.sfsi_fittext_shouldDisplay = true;
3023
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3024
- if (jQuery(a_container).css('display') !== "none") {
3025
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3026
- }
3027
- })
3028
- sfsi_resize_icons_container();
3029
-
3030
- })
3031
-
3032
- jQuery('.sfsi_responsive_default_url_toggler').click(function (event) {
3033
-
3034
- event.preventDefault();
3035
- sfsi_responsive_open_url(event);
3036
- });
3037
- jQuery('.sfsi_responsive_default_url_toggler').click(function (event) {
3038
- event.preventDefault();
3039
- sfsi_responsive_open_url(event);
3040
- })
3041
- jQuery('.sfsi_responsive_custom_url_hide, .sfsi_responsive_default_url_hide').click(function (event) {
3042
- event.preventDefault();
3043
- jQuery(event.target).parent().parent().find('.sfsi_responsive_custom_url_hide').hide();
3044
- jQuery(event.target).parent().parent().find('.sfsi_responsive_url_input').hide();
3045
- jQuery(event.target).parent().parent().find('.sfsi_responsive_default_url_hide').hide();
3046
- jQuery(event.target).parent().parent().find('.sfsi_responsive_default_url_toggler').show();
3047
- });
3048
- jQuery('select[name="sfsi_responsive_icons_settings_icon_size"]').change(function (event) {
3049
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').removeClass('sfsi_small_button').removeClass('sfsi_medium_button').removeClass('sfsi_large_button').addClass('sfsi_' + (jQuery(this).val().toLowerCase()) + '_button');
3050
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_small_button_container').removeClass('sfsi_medium_button_container').removeClass('sfsi_large_button_container').addClass('sfsi_' + (jQuery(this).val().toLowerCase()) + '_button_container')
3051
- })
3052
- jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_edge_radius"]', function (event) {
3053
- var radius = jQuery(this).val() + 'px'
3054
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', radius);
3055
-
3056
- });
3057
- jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_style"]', function (event) {
3058
- if ('Flat' === jQuery(this).val()) {
3059
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_responsive_icon_gradient');
3060
- } else {
3061
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').addClass('sfsi_responsive_icon_gradient');
3062
- }
3063
- });
3064
- jQuery(document).on('mouseenter', '.sfsi_responsive_icon_preview .sfsi_icons_container a', function () {
3065
- jQuery(this).css('opacity', 0.8);
3066
- })
3067
- jQuery(document).on('mouseleave', '.sfsi_responsive_icon_preview .sfsi_icons_container a', function () {
3068
- jQuery(this).css('opacity', 1);
3069
- })
3070
- window.sfsi_fittext_shouldDisplay = true;
3071
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3072
- if (jQuery(a_container).css('display') !== "none") {
3073
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3074
- }
3075
- })
3076
- sfsi_resize_icons_container();
3077
- jQuery('.ui-accordion-header.ui-state-default.ui-accordion-icons').click(function (data) {
3078
- window.sfsi_fittext_shouldDisplay = true;
3079
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3080
- if (jQuery(a_container).css('display') !== "none") {
3081
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3082
- }
3083
- })
3084
- sfsi_resize_icons_container();
3085
- });
3086
- jQuery('select[name="sfsi_responsive_icons_settings_text_align"]').change(function (event) {
3087
- var data = jQuery(event.target).val();
3088
- if (data == "Centered") {
3089
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_left-align_icon').addClass('sfsi_centered_icon');
3090
- } else {
3091
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_centered_icon').addClass('sfsi_left-align_icon');
3092
- }
3093
- });
3094
- jQuery('a.sfsi_responsive_custom_delete_btn').click(function (event) {
3095
- event.preventDefault();
3096
- var icon_num = jQuery(this).attr('data-id');
3097
- //reset the current block;
3098
- // var last_block = jQuery('.sfsi_responsive_custom_icon_4_container').clone();
3099
- var cur_block = jQuery('.sfsi_responsive_custom_icon_' + icon_num + '_container');
3100
- cur_block.find('.sfsi_responsive_custom_delete_btn').hide();
3101
- cur_block.find('input[name="sfsi_responsive_custom_' + icon_num + '_added"]').val('no');
3102
- cur_block.find('.sfsi_responsive_custom_' + icon_num + '_added').attr('value', 'no');
3103
- cur_block.find('.radio_section.tb_4_ck .checkbox').click();
3104
- cur_block.hide();
3105
-
3106
-
3107
- if (icon_num > 0) {
3108
- var prev_block = jQuery('.sfsi_responsive_custom_icon_' + (icon_num - 1) + '_container');
3109
- prev_block.find('.sfsi_responsive_custom_delete_btn').show();
3110
- }
3111
- // jQuery('.sfsi_responsive_custom_icon_container').each(function(index,custom_icon){
3112
- // var target= jQuery(custom_icon);
3113
- // target.find('.sfsi_responsive_custom_delete_btn');
3114
- // var custom_id = target.find('.sfsi_responsive_custom_delete_btn').attr('data-id');
3115
- // if(custom_id>icon_num){
3116
- // target.removeClass('sfsi_responsive_custom_icon_'+custom_id+'_container').addClass('sfsi_responsive_custom_icon_'+(custom_id-1)+'_container');
3117
- // target.find('input[name="sfsi_responsive_custom_'+custom_id+'_added"]').attr('name',"sfsi_responsive_custom_"+(custom_id-1)+"_added");
3118
- // target.find('#sfsi_responsive_'+custom_id+'_display').removeClass('sfsi_responsive_custom_'+custom_id+'_display').addClass('sfsi_responsive_custom_'+(custom_id-1)+'_display').attr('id','sfsi_responsive_'+(custom_id-1)+'_display').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_display').attr('data-custom-index',(custom_id-1));
3119
- // target.find('.sfsi_responsive_icon_item_container').removeClass('sfsi_responsive_icon_custom_'+custom_id+'_container').addClass('sfsi_responsive_icon_custom_'+(custom_id-1)+'_container');
3120
- // target.find('.sfsi_responsive_input').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_input');
3121
- // target.find('.sfsi_responsive_url_input').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_url_input');
3122
- // target.find('.sfsi_bg-color-picker').attr('name','sfsi_responsive_icon_'+(custom_id-1)+'_bg_color');
3123
- // target.find('.sfsi_logo_upload sfsi_logo_custom_'+custom_id+'_upload').removeClass('sfsi_logo_upload sfsi_logo_custom_'+custom_id+'_upload').addClass('sfsi_logo_upload sfsi_logo_custom_'+(custom_id-1)+'_upload');
3124
- // target.find('input[type="sfsi_responsive_icons_custom_'+custom_id+'_icon"]').attr('name','input[type="sfsi_responsive_icons_custom_'+(custom_id-1)+'_icon"]');
3125
- // target.find('.sfsi_responsive_custom_delete_btn').attr('data-id',''+(custom_id-1));
3126
- // }
3127
- // });
3128
- // // sfsi_backend_section_beforeafter_set_fixed_width();
3129
- // // jQuery(window).on('resize',sfsi_backend_section_beforeafter_set_fixed_width);
3130
- // var new_block=jQuery('.sfsi_responsive_custom_icon_container').clone();
3131
- // jQuery('.sfsi_responsive_custom_icon_container').remove();
3132
- // jQuery('.sfsi_responsive_default_icon_container').parent().append(last_block).append();
3133
- // jQuery('.sfsi_responsive_default_icon_container').parent().append(new_block);
3134
- // return false;
3135
- })
3136
- }
3137
-
3138
- function sfsi_responsive_icon_counter_tgl(hide, show, ref = null) {
3139
- if (null !== hide && '' !== hide) {
3140
- jQuery('.' + hide).hide();
3141
- }
3142
- if (null !== show && '' !== show) {
3143
- jQuery('.' + show).show();
3144
- }
3145
- }
3146
-
3147
- function sfsi_responsive_toggle_count() {
3148
- var data = jQuery('input[name="sfsi_share_count"]:checked').val();
3149
- var data2 = jQuery('input[name="sfsi_display_counts"]:checked').val();
3150
- if (data2 == "yes" && 'yes' == data) {
3151
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('display', 'inline-block');
3152
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_responsive_without_counter_icons').addClass('sfsi_responsive_with_counter_icons');
3153
- sfsi_resize_icons_container();
3154
- } else {
3155
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('display', 'none');
3156
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_responsive_with_counter_icons').addClass('sfsi_responsive_without_counter_icons');
3157
- sfsi_resize_icons_container();
3158
- }
3159
- }
3160
-
3161
- function sfsi_responsive_open_url(event) {
3162
- jQuery(event.target).parent().find('.sfsi_responsive_custom_url_hide').show();
3163
- jQuery(event.target).parent().find('.sfsi_responsive_default_url_hide').show();
3164
- jQuery(event.target).parent().find('.sfsi_responsive_url_input').show();
3165
- jQuery(event.target).hide();
3166
- }
3167
-
3168
- function sfsi_responsive_icon_hide_responsive_options() {
3169
- jQuery('.sfsi_PostsSettings_section').show();
3170
- jQuery('.sfsi_choose_post_types_section').show();
3171
- jQuery('.sfsi_not_responsive').show();
3172
- // jQuery('.sfsi_icn_listing8.sfsi_closerli').hide();
3173
- }
3174
-
3175
- function sfsi_responsive_icon_show_responsive_options() {
3176
- jQuery('.sfsi_PostsSettings_section').hide();
3177
- // jQuery('.sfsi_PostsSettings_section').show();
3178
- jQuery('.sfsi_choose_post_types_section').hide();
3179
- jQuery('.sfsi_not_responsive').hide();
3180
- window.sfsi_fittext_shouldDisplay = true;
3181
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3182
- if (jQuery(a_container).css('display') !== "none") {
3183
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3184
- }
3185
- })
3186
- sfsi_resize_icons_container();
3187
- }
3188
-
3189
- function sfsi_scroll_to_div(option_id, scroll_selector) {
3190
- jQuery('#' + option_id + '.ui-accordion-header[aria-selected="false"]').click() //opened the option
3191
- //scroll to it.
3192
- if (scroll_selector && scroll_selector !== '') {
3193
- scroll_selector = scroll_selector;
3194
- } else {
3195
- scroll_selector = '#' + option_id + '.ui-accordion-header';
3196
- }
3197
- jQuery('html, body').stop().animate({
3198
- scrollTop: jQuery(scroll_selector).offset().top
3199
- }, 1000);
3200
- }
3201
-
3202
- function sfsi_fitText(container) {
3203
- if (container.parent().parent().hasClass('sfsi_icons_container_box_fixed_container')) {
3204
- if (window.sfsi_fittext_shouldDisplay === true) {
3205
- if (jQuery('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() == "Fully responsive") {
3206
- var all_icon_width = jQuery('.sfsi_responsive_icons .sfsi_icons_container').width();
3207
- var total_active_icons = jQuery('.sfsi_responsive_icons .sfsi_icons_container a').filter(function (i, icon) {
3208
- return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3209
- }).length;
3210
-
3211
- var distance_between_icon = jQuery('input[name="sfsi_responsive_icons_settings_margin"]').val()
3212
- var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3213
- container_width = (container_width - distance_between_icon);
3214
- } else {
3215
- var container_width = container.width();
3216
- }
3217
- // var container_img_width = container.find('img').width();
3218
- var container_img_width = 70;
3219
- // var span=container.find('span').clone();
3220
- var span = container.find('span');
3221
- // var span_original_width = container.find('span').width();
3222
- var span_original_width = container_width - (container_img_width)
3223
- span
3224
- // .css('display','inline-block')
3225
- .css('white-space', 'nowrap')
3226
- // .css('width','auto')
3227
- ;
3228
- var span_flatted_width = span.width();
3229
- if (span_flatted_width == 0) {
3230
- span_flatted_width = span_original_width;
3231
- }
3232
- span
3233
- // .css('display','inline-block')
3234
- .css('white-space', 'unset')
3235
- // .css('width','auto')
3236
- ;
3237
- var shouldDisplay = ((undefined === window.sfsi_fittext_shouldDisplay) ? true : window.sfsi_fittext_shouldDisplay = true);
3238
- var fontSize = parseInt(span.css('font-size'));
3239
-
3240
- if (6 > fontSize) {
3241
- fontSize = 20;
3242
- }
3243
-
3244
- var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3245
-
3246
- if (computed_fontSize < 8) {
3247
- shouldDisplay = false;
3248
- window.sfsi_fittext_shouldDisplay = false;
3249
- computed_fontSize = 20;
3250
- }
3251
- span.css('font-size', Math.min(computed_fontSize, 20));
3252
- span
3253
- // .css('display','inline-block')
3254
- .css('white-space', 'nowrap')
3255
- // .css('width','auto')
3256
- ;
3257
- if (shouldDisplay) {
3258
- span.show();
3259
- } else {
3260
- span.hide();
3261
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container span').hide();
3262
- }
3263
- }
3264
- } else {
3265
- var span = container.find('span');
3266
- span.css('font-size', 'initial');
3267
- span.show();
3268
- }
3269
-
3270
- }
3271
-
3272
- function sfsi_fixedWidth_fitText(container) {
3273
- return;
3274
- if (window.sfsi_fittext_shouldDisplay === true) {
3275
- if (jQuery('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() == "Fixed icon width") {
3276
- var all_icon_width = jQuery('.sfsi_responsive_icons .sfsi_icons_container').width();
3277
- var total_active_icons = jQuery('.sfsi_responsive_icons .sfsi_icons_container a').filter(function (i, icon) {
3278
- return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3279
- }).length;
3280
- var distance_between_icon = jQuery('input[name="sfsi_responsive_icons_settings_margin"]').val()
3281
- var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3282
- container_width = (container_width - distance_between_icon);
3283
- } else {
3284
- var container_width = container.width();
3285
- }
3286
- // var container_img_width = container.find('img').width();
3287
- var container_img_width = 70;
3288
- // var span=container.find('span').clone();
3289
- var span = container.find('span');
3290
- // var span_original_width = container.find('span').width();
3291
- var span_original_width = container_width - (container_img_width)
3292
- span
3293
- // .css('display','inline-block')
3294
- .css('white-space', 'nowrap')
3295
- // .css('width','auto')
3296
- ;
3297
- var span_flatted_width = span.width();
3298
- if (span_flatted_width == 0) {
3299
- span_flatted_width = span_original_width;
3300
- }
3301
- span
3302
- // .css('display','inline-block')
3303
- .css('white-space', 'unset')
3304
- // .css('width','auto')
3305
- ;
3306
- var shouldDisplay = undefined === window.sfsi_fittext_shouldDisplay ? true : window.sfsi_fittext_shouldDisplay = true;;
3307
- var fontSize = parseInt(span.css('font-size'));
3308
-
3309
- if (6 > fontSize) {
3310
- fontSize = 15;
3311
- }
3312
-
3313
- var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3314
-
3315
- if (computed_fontSize < 8) {
3316
- shouldDisplay = false;
3317
- window.sfsi_fittext_shouldDisplay = false;
3318
- computed_fontSize = 15;
3319
- }
3320
- span.css('font-size', Math.min(computed_fontSize, 15));
3321
- span
3322
- // .css('display','inline-block')
3323
- .css('white-space', 'nowrap')
3324
- // .css('width','auto')
3325
- ;
3326
- // var heightOfResIcons = jQuery('.sfsi_responsive_icon_item_container').height();
3327
-
3328
- // if(heightOfResIcons < 17){
3329
- // span.show();
3330
- // }else{
3331
- // span.hide();
3332
- // }
3333
-
3334
- if (shouldDisplay) {
3335
- span.show();
3336
- } else {
3337
- span.hide();
3338
- }
3339
- }
3340
- }
3341
-
3342
- function sfsi_resize_icons_container() {
3343
- // resize icon container based on the size of count
3344
- sfsi_cloned_icon_list = jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').clone();
3345
- sfsi_cloned_icon_list.removeClass('.sfsi_responsive_icon_preview .sfsi_responsive_with_counter_icons').addClass('sfsi_responsive_cloned_list');
3346
- sfsi_cloned_icon_list.css('width', '100%');
3347
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').parent().append(sfsi_cloned_icon_list);
3348
-
3349
- // sfsi_cloned_icon_list.css({
3350
- // position: "absolute",
3351
- // left: "-10000px"
3352
- // }).appendTo("body");
3353
- actual_width = sfsi_cloned_icon_list.width();
3354
- count_width = jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').width();
3355
- jQuery('.sfsi_responsive_cloned_list').remove();
3356
- sfsi_inline_style = jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').attr('style');
3357
- // remove_width
3358
- sfsi_inline_style = sfsi_inline_style.replace(/width:auto($|!important|)(;|$)/g, '').replace(/width:\s*(-|)\d*\s*(px|%)\s*($|!important|)(;|$)/g, '');
3359
- if (!(jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').hasClass('sfsi_responsive_without_counter_icons') && jQuery('.sfsi_icons_container').hasClass('sfsi_icons_container_box_fixed_container'))) {
3360
- sfsi_inline_style += "width:" + (actual_width - count_width - 1) + 'px!important;'
3361
- } else {
3362
- sfsi_inline_style += "width:auto!important;";
3363
- }
3364
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').attr('style', sfsi_inline_style);
3365
-
3366
- }
3367
-
3368
- function sfsi_togglbtmsection(show, hide, ref) {
3369
- jQuery(ref).parent("ul").children("li.clckbltglcls").each(function (index, element) {
3370
- jQuery(this).children(".radio").css("background-position", "0px 0px");
3371
- jQuery(this).children(".styled").attr("checked", "false");
3372
- });
3373
- jQuery(ref).children(".radio").css("background-position", "0px -41px");
3374
- jQuery(ref).children(".styled").attr("checked", "true");
3375
-
3376
- jQuery("." + show).show();
3377
- jQuery("." + show).children(".radiodisplaysection").show();
3378
- jQuery("." + hide).hide();
3379
- jQuery("." + hide).children(".radiodisplaysection").hide();
3380
- }
3381
- jQuery(document).ready(function(){
3382
- var sfsi_functions_loaded = new CustomEvent('sfsi_functions_loaded',{detail:{"abc":"def"}});
3383
- window.dispatchEvent(sfsi_functions_loaded);
3384
- });
3385
-
3386
- function sfsi_show_responsive(){
3387
- var icon_type = jQuery('input[name="sfsi_display_button_type"]:checked').val();
3388
- var responsive_show = jQuery('input[name="sfsi_responsive_icons_end_post"]:checked').val();
3389
- setTimeout(function(){
3390
- if(icon_type=="responsive_button" && responsive_show=="yes"){
3391
- jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').show();
3392
- }else{
3393
- jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').hide();
3394
- }
3395
- },100);
3396
- }
3397
- function sfsi_save_export() {
3398
- var nonce = SFSI("#sfsi_save_export").attr("data-nonce");
3399
- var data = {
3400
- action: "save_export",
3401
- nonce: nonce
3402
- };
3403
- SFSI.ajax({
3404
- url: sfsi_icon_ajax_object.ajax_url,
3405
- type: "post",
3406
- data: data,
3407
- success: function (s) {
3408
- if (s == "wrong_nonce") {
3409
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
3410
- global_error = 1;
3411
- } else {
3412
- var date = new Date();
3413
- var timestamp = date.getTime();
3414
- var blob = new Blob([JSON.stringify(s, null, 2)], {
3415
- type: 'application/json'
3416
- });
3417
- var url = URL.createObjectURL(blob);
3418
- let link = document.createElement("a");
3419
- link.href = url;
3420
- link.download = "sfsi_export_options"+timestamp+".json"
3421
- link.innerText = "Open the array URL";
3422
- document.body.appendChild(link);
3423
- link.click();
3424
- "success" == s ? (sfsiplus_showErrorSuc("Settings Exported !", "Saved !", 6)) : (global_error = 1,
3425
- sfsiplus_showErrorSuc("error", "Unkown error , please try again", 6));
3426
- }
3427
- }
3428
- });
3429
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ function sfsi_update_index() {
2
+ var s = 1;
3
+ SFSI("ul.icn_listing li.custom").each(function () {
4
+ SFSI(this).children("span.custom-txt").html("Custom " + s), s++;
5
+ }), cntt = 1, SFSI("div.cm_lnk").each(function () {
6
+ SFSI(this).find("h2.custom").find("span.sfsiCtxt").html("Custom " + cntt + ":"),
7
+ cntt++;
8
+ }), cntt = 1, SFSI("div.custom_m").find("div.custom_section").each(function () {
9
+ SFSI(this).find("label").html("Custom " + cntt + ":"), cntt++;
10
+ });
11
+ }
12
+
13
+ function sfsicollapse(s) {
14
+ var i = !0,
15
+ e = SFSI(s).closest("div.ui-accordion-content").prev("h3.ui-accordion-header"),
16
+ t = SFSI(s).closest("div.ui-accordion-content").first();
17
+ e.toggleClass("ui-corner-all", i).toggleClass("accordion-header-active ui-state-active ui-corner-top", !i).attr("aria-selected", (!i).toString()),
18
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", i).toggleClass("ui-icon-triangle-1-s", !i),
19
+ t.toggleClass("accordion-content-active", !i), i ? t.slideUp() : t.slideDown();
20
+ }
21
+
22
+ function sfsi_delete_CusIcon(s, i) {
23
+ beForeLoad();
24
+ var e = {
25
+ action: "deleteIcons",
26
+ icon_name: i.attr("name"),
27
+ nonce: SFSI(i).parents('.custom').find('input[name="nonce"]').val()
28
+ };
29
+ SFSI.ajax({
30
+ url: sfsi_icon_ajax_object.ajax_url,
31
+ type: "post",
32
+ data: e,
33
+ dataType: "json",
34
+ success: function (e) {
35
+ if ("success" == e.res) {
36
+ showErrorSuc("success", "Saved !", 1);
37
+ var t = e.last_index + 1;
38
+ SFSI("#total_cusotm_icons").val(e.total_up), SFSI(s).closest(".custom").remove(),
39
+ SFSI("li.custom:last-child").addClass("bdr_btm_non"), SFSI(".custom-links").find("div." + i.attr("name")).remove(),
40
+ SFSI(".custom_m").find("div." + i.attr("name")).remove(), SFSI(".share_icon_order").children("li." + i.attr("name")).remove(),
41
+ SFSI("ul.sfsi_sample_icons").children("li." + i.attr("name")).remove();
42
+
43
+ if (e.total_up == 0) {
44
+ SFSI(".notice_custom_icons_premium").hide();
45
+ }
46
+ var n = e.total_up + 1;
47
+ 4 == e.total_up && SFSI(".icn_listing").append('<li id="c' + t + '" class="custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style=" 0px 0px;"></span><input name="sfsiICON_' + t + '_display" type="checkbox" value="yes" class="styled" style="display:none;" isNew="yes" /></div> <span class="custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="CImg_' + t + '" alt="error" /> </span> <span class="custom custom-txt">Custom' + n + ' </span> <div class="right_info"> <p><span>It depends:</span> Upload a custom icon if you have other accounts/websites you want to link to.</p><div class="inputWrapper"></div></li>');
48
+ } else showErrorSuc("error", "Unkown error , please try again", 1);
49
+ return sfsi_update_index(), update_Sec5Iconorder(), sfsi_update_step1(), sfsi_update_step5(),
50
+ afterLoad(), "suc";
51
+ }
52
+ });
53
+ }
54
+
55
+ function update_Sec5Iconorder() {
56
+ SFSI("ul.share_icon_order").children("li").each(function () {
57
+ SFSI(this).attr("data-index", SFSI(this).index() + 1);
58
+ });
59
+ }
60
+
61
+ function sfsi_section_Display(s, i) {
62
+ "hide" == i ? (SFSI("." + s + " :input").prop("disabled", !0), SFSI("." + s + " :button").prop("disabled", !0),
63
+ SFSI("." + s).hide()) : (SFSI("." + s + " :input").removeAttr("disabled", !0), SFSI("." + s + " :button").removeAttr("disabled", !0),
64
+ SFSI("." + s).show());
65
+ }
66
+
67
+ function sfsi_depened_sections() {
68
+ if ("sfsi" == SFSI("input[name='sfsi_rss_icons']:checked").val()) {
69
+ for (i = 0; 16 > i; i++) {
70
+ var s = i + 1,
71
+ e = 74 * i;
72
+ SFSI(".row_" + s + "_2").css("background-position", "-588px -" + e + "px");
73
+ }
74
+ var t = SFSI(".icon_img").attr("src");
75
+ if (t) {
76
+ if (t.indexOf("subscribe") != -1) {
77
+ var n = t.replace("subscribe.png", "sf_arow_icn.png");
78
+ } else {
79
+ var n = t.replace("email.png", "sf_arow_icn.png");
80
+ }
81
+ SFSI(".icon_img").attr("src", n);
82
+ }
83
+ } else {
84
+ if ("email" == SFSI("input[name='sfsi_rss_icons']:checked").val()) {
85
+ for (SFSI(".row_1_2").css("background-position", "-58px 0"), i = 0; 16 > i; i++) {
86
+ var s = i + 1,
87
+ e = 74 * i;
88
+ SFSI(".row_" + s + "_2").css("background-position", "-58px -" + e + "px");
89
+ }
90
+ var t = SFSI(".icon_img").attr("src");
91
+ if (t) {
92
+ if (t.indexOf("sf_arow_icn") != -1) {
93
+ var n = t.replace("sf_arow_icn.png", "email.png");
94
+ } else {
95
+ var n = t.replace("subscribe.png", "email.png");
96
+ }
97
+ SFSI(".icon_img").attr("src", n);
98
+ }
99
+ } else {
100
+ for (SFSI(".row_1_2").css("background-position", "-649px 0"), i = 0; 16 > i; i++) {
101
+ var s = i + 1,
102
+ e = 74 * i;
103
+ SFSI(".row_" + s + "_2").css("background-position", "-649px -" + e + "px");
104
+ }
105
+ var t = SFSI(".icon_img").attr("src");
106
+ if (t) {
107
+ if (t.indexOf("email") != -1) {
108
+ var n = t.replace("email.png", "subscribe.png");
109
+ } else {
110
+ var n = t.replace("sf_arow_icn.png", "subscribe.png");
111
+ }
112
+ SFSI(".icon_img").attr("src", n);
113
+ }
114
+ }
115
+ }
116
+ SFSI("input[name='sfsi_rss_display']").prop("checked") ? sfsi_section_Display("rss_section", "show") : sfsi_section_Display("rss_section", "hide"),
117
+ SFSI("input[name='sfsi_email_display']").prop("checked") ? sfsi_section_Display("email_section", "show") : sfsi_section_Display("email_section", "hide"),
118
+ SFSI("input[name='sfsi_facebook_display']").prop("checked") ? sfsi_section_Display("facebook_section", "show") : sfsi_section_Display("facebook_section", "hide"),
119
+ SFSI("input[name='sfsi_twitter_display']").prop("checked") ? sfsi_section_Display("twitter_section", "show") : sfsi_section_Display("twitter_section", "hide"),
120
+ SFSI("input[name='sfsi_youtube_display']").prop("checked") ? sfsi_section_Display("youtube_section", "show") : sfsi_section_Display("youtube_section", "hide"),
121
+ SFSI("input[name='sfsi_pinterest_display']").prop("checked") ? sfsi_section_Display("pinterest_section", "show") : sfsi_section_Display("pinterest_section", "hide"),
122
+ SFSI("input[name='sfsi_telegram_display']").prop("checked") ? sfsi_section_Display("telegram_section", "show") : sfsi_section_Display("telegram_section", "hide"),
123
+ SFSI("input[name='sfsi_vk_display']").prop("checked") ? sfsi_section_Display("vk_section", "show") : sfsi_section_Display("vk_section", "hide"),
124
+ SFSI("input[name='sfsi_ok_display']").prop("checked") ? sfsi_section_Display("ok_section", "show") : sfsi_section_Display("ok_section", "hide"),
125
+ SFSI("input[name='sfsi_wechat_display']").prop("checked") ? sfsi_section_Display("wechat_section", "show") : sfsi_section_Display("wechat_section", "hide"),
126
+ SFSI("input[name='sfsi_weibo_display']").prop("checked") ? sfsi_section_Display("weibo_section", "show") : sfsi_section_Display("weibo_section", "hide"),
127
+ SFSI("input[name='sfsi_instagram_display']").prop("checked") ? sfsi_section_Display("instagram_section", "show") : sfsi_section_Display("instagram_section", "hide"),
128
+ SFSI("input[name='sfsi_linkedin_display']").prop("checked") ? sfsi_section_Display("linkedin_section", "show") : sfsi_section_Display("linkedin_section", "hide"),
129
+ SFSI("input[element-type='cusotm-icon']").prop("checked") ? sfsi_section_Display("custom_section", "show") : sfsi_section_Display("custom_section", "hide");
130
+ }
131
+
132
+ function CustomIConSectionsUpdate() {
133
+ sfsi_section_Display("counter".ele, show);
134
+ }
135
+
136
+ // Upload Custom Skin {Monad}
137
+ function sfsi_customskin_upload(s, ref, nonce) {
138
+ var ttl = jQuery(ref).attr("title");
139
+ var i = s,
140
+ e = {
141
+ action: "UploadSkins",
142
+ custom_imgurl: i,
143
+ nonce: nonce
144
+ };
145
+ SFSI.ajax({
146
+ url: sfsi_icon_ajax_object.ajax_url,
147
+ type: "post",
148
+ data: e,
149
+ success: function (msg) {
150
+ if (msg.res = "success") {
151
+ var arr = s.split('=');
152
+ jQuery(ref).prev('.imgskin').attr('src', arr[1]);
153
+ jQuery(ref).prev('.imgskin').css("display", "block");
154
+ jQuery(ref).text("Update");
155
+ jQuery(ref).next('.dlt_btn').css("display", "block");
156
+ }
157
+ }
158
+ });
159
+ }
160
+
161
+ // Delete Custom Skin {Monad}
162
+ function deleteskin_icon(s) {
163
+ var iconname = jQuery(s).attr("title");
164
+ var nonce = jQuery(s).attr("data-nonce");
165
+ var i = iconname,
166
+ e = {
167
+ action: "DeleteSkin",
168
+ iconname: i,
169
+ nonce: nonce
170
+ };
171
+ // console.log('delete sin icon', i, iconname, nonce);
172
+ SFSI.ajax({
173
+ url: sfsi_icon_ajax_object.ajax_url,
174
+ type: "post",
175
+ data: e,
176
+ dataType: "json",
177
+ success: function (msg) {
178
+ // console.log(s, e, msg);
179
+
180
+ if (msg.res === "success") {
181
+ SFSI(s).prev("a").text("Upload");
182
+ SFSI(s).prev("a").prev("img").attr("src", '');
183
+ SFSI(s).prev("a").prev("img").css("display", "none");
184
+ SFSI(s).css("display", "none");
185
+ } else {
186
+ alert("Whoops! something went wrong.")
187
+ }
188
+ }
189
+ });
190
+ }
191
+
192
+ // Save Custom Skin {Monad}
193
+ function SFSI_done(nonce) {
194
+ e = {
195
+ action: "Iamdone",
196
+ nonce: nonce
197
+ };
198
+
199
+ SFSI.ajax({
200
+ url: sfsi_icon_ajax_object.ajax_url,
201
+ type: "post",
202
+ data: e,
203
+ success: function (msg) {
204
+ if (msg.res === "success") {
205
+
206
+
207
+ jQuery("li.cstomskins_upload").children(".icns_tab_3").html(msg);
208
+ SFSI("input[name='sfsi_rss_display']").prop("checked") ? sfsi_section_Display("rss_section", "show") : sfsi_section_Display("rss_section", "hide"), SFSI("input[name='sfsi_email_display']").prop("checked") ? sfsi_section_Display("email_section", "show") : sfsi_section_Display("email_section", "hide"), SFSI("input[name='sfsi_facebook_display']").prop("checked") ? sfsi_section_Display("facebook_section", "show") : sfsi_section_Display("facebook_section", "hide"), SFSI("input[name='sfsi_twitter_display']").prop("checked") ? sfsi_section_Display("twitter_section", "show") : sfsi_section_Display("twitter_section", "hide"), SFSI("input[name='sfsi_youtube_display']").prop("checked") ? sfsi_section_Display("youtube_section", "show") : sfsi_section_Display("youtube_section", "hide"), SFSI("input[name='sfsi_pinterest_display']").prop("checked") ? sfsi_section_Display("pinterest_section", "show") : sfsi_section_Display("pinterest_section", "hide"), SFSI("input[name='sfsi_instagram_display']").prop("checked") ? sfsi_section_Display("instagram_section", "show") : sfsi_section_Display("instagram_section", "hide"), SFSI("input[name='sfsi_linkedin_display']").prop("checked") ? sfsi_section_Display("linkedin_section", "show") : sfsi_section_Display("linkedin_section", "hide"), SFSI("input[element-type='cusotm-icon']").prop("checked") ? sfsi_section_Display("custom_section", "show") : sfsi_section_Display("custom_section", "hide");
209
+ SFSI(".cstmskins-overlay").hide("slow");
210
+ sfsi_update_step3() && sfsicollapse(this);
211
+ }
212
+ }
213
+ });
214
+ }
215
+
216
+ // Upload Custom Icons {Monad}
217
+ function sfsi_newcustomicon_upload(s, nonce, nonce2) {
218
+ var i = s,
219
+ e = {
220
+ action: "UploadIcons",
221
+ custom_imgurl: i,
222
+ nonce: nonce
223
+ };
224
+ SFSI.ajax({
225
+ url: sfsi_icon_ajax_object.ajax_url,
226
+ type: "post",
227
+ data: e,
228
+ dataType: "json",
229
+ async: !0,
230
+ success: function (s) {
231
+ if (s.res == 'success') {
232
+ afterIconSuccess(s, nonce2);
233
+ } else {
234
+ SFSI(".upload-overlay").hide("slow");
235
+ SFSI(".uperror").html(s.res);
236
+ showErrorSuc("Error", "Some Error Occured During Upload Custom Icon", 1)
237
+ }
238
+ }
239
+ });
240
+ }
241
+
242
+ function sfsi_update_step1() {
243
+ var nonce = SFSI("#sfsi_save1").attr("data-nonce");
244
+ global_error = 0, beForeLoad(), sfsi_depened_sections();
245
+ var s = !1,
246
+ i = SFSI("input[name='sfsi_rss_display']:checked").val(),
247
+ e = SFSI("input[name='sfsi_email_display']:checked").val(),
248
+ t = SFSI("input[name='sfsi_facebook_display']:checked").val(),
249
+ n = SFSI("input[name='sfsi_twitter_display']:checked").val(),
250
+ r = SFSI("input[name='sfsi_youtube_display']:checked").val(),
251
+ c = SFSI("input[name='sfsi_pinterest_display']:checked").val(),
252
+ p = SFSI("input[name='sfsi_linkedin_display']:checked").val(),
253
+ tg = SFSI("input[name='sfsi_telegram_display']:checked").val(),
254
+ vk = SFSI("input[name='sfsi_vk_display']:checked").val(),
255
+ ok = SFSI("input[name='sfsi_ok_display']:checked").val(),
256
+ wc = SFSI("input[name='sfsi_wechat_display']:checked").val(),
257
+ wb = SFSI("input[name='sfsi_weibo_display']:checked").val(),
258
+ _ = SFSI("input[name='sfsi_instagram_display']:checked").val(),
259
+ l = SFSI("input[name='sfsi_custom1_display']:checked").val(),
260
+ S = SFSI("input[name='sfsi_custom2_display']:checked").val(),
261
+ u = SFSI("input[name='sfsi_custom3_display']:checked").val(),
262
+ f = SFSI("input[name='sfsi_custom4_display']:checked").val(),
263
+ d = SFSI("input[name='sfsi_custom5_display']:checked").val(),
264
+ I = {
265
+ action: "updateSrcn1",
266
+ sfsi_rss_display: i,
267
+ sfsi_email_display: e,
268
+ sfsi_facebook_display: t,
269
+ sfsi_twitter_display: n,
270
+ sfsi_youtube_display: r,
271
+ sfsi_pinterest_display: c,
272
+ sfsi_linkedin_display: p,
273
+ sfsi_telegram_display: tg,
274
+ sfsi_vk_display: vk,
275
+ sfsi_ok_display: ok,
276
+ sfsi_wechat_display: wc,
277
+ sfsi_weibo_display: wb,
278
+ sfsi_instagram_display: _,
279
+ sfsi_custom1_display: l,
280
+ sfsi_custom2_display: S,
281
+ sfsi_custom3_display: u,
282
+ sfsi_custom4_display: f,
283
+ sfsi_custom5_display: d,
284
+ nonce: nonce
285
+ };
286
+ SFSI.ajax({
287
+ url: sfsi_icon_ajax_object.ajax_url,
288
+ type: "post",
289
+ data: I,
290
+ async: !0,
291
+ dataType: "json",
292
+ success: function (i) {
293
+ if (i == "wrong_nonce") {
294
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 1);
295
+ s = !1;
296
+ afterLoad();
297
+ } else {
298
+ "success" == i ? (showErrorSuc("success", "Saved !", 1), sfsicollapse("#sfsi_save1"),
299
+ sfsi_make_popBox()) : (global_error = 1, showErrorSuc("error", "Unkown error , please try again", 1),
300
+ s = !1), afterLoad();
301
+ }
302
+ }
303
+ });
304
+ }
305
+
306
+ function sfsi_update_step2() {
307
+
308
+ var nonce = SFSI("#sfsi_save2").attr("data-nonce");
309
+ var s = sfsi_validationStep2();
310
+ if (!s) return global_error = 1, !1;
311
+ beForeLoad();
312
+ var i = 1 == SFSI("input[name='sfsi_rss_url']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_url']").val(),
313
+ e = 1 == SFSI("input[name='sfsi_rss_icons']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_icons']:checked").val(),
314
+
315
+ t = 1 == SFSI("input[name='sfsi_facebookPage_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookPage_option']:checked").val(),
316
+ n = 1 == SFSI("input[name='sfsi_facebookLike_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookLike_option']:checked").val(),
317
+ o = 1 == SFSI("input[name='sfsi_facebookShare_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookShare_option']:checked").val(),
318
+ a = SFSI("input[name='sfsi_facebookPage_url']").val(),
319
+ r = 1 == SFSI("input[name='sfsi_twitter_followme']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_followme']:checked").val(),
320
+ c = 1 == SFSI("input[name='sfsi_twitter_followUserName']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_followUserName']").val(),
321
+ p = 1 == SFSI("input[name='sfsi_twitter_aboutPage']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_aboutPage']:checked").val(),
322
+ _ = 1 == SFSI("input[name='sfsi_twitter_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_page']:checked").val(),
323
+ l = SFSI("input[name='sfsi_twitter_pageURL']").val(),
324
+ S = SFSI("textarea[name='sfsi_twitter_aboutPageText']").val(),
325
+ m = 1 == SFSI("input[name='sfsi_youtube_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_page']:checked").val(),
326
+ F = 1 == SFSI("input[name='sfsi_youtube_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_pageUrl']").val(),
327
+ h = 1 == SFSI("input[name='sfsi_youtube_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_follow']:checked").val(),
328
+ cls = SFSI("input[name='sfsi_youtubeusernameorid']:checked").val(),
329
+ v = SFSI("input[name='sfsi_ytube_user']").val(),
330
+ vchid = SFSI("input[name='sfsi_ytube_chnlid']").val(),
331
+ g = 1 == SFSI("input[name='sfsi_pinterest_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_page']:checked").val(),
332
+ k = 1 == SFSI("input[name='sfsi_pinterest_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_pageUrl']").val(),
333
+ y = 1 == SFSI("input[name='sfsi_pinterest_pingBlog']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_pingBlog']:checked").val(),
334
+ b = 1 == SFSI("input[name='sfsi_instagram_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_pageUrl']").val(),
335
+ w = 1 == SFSI("input[name='sfsi_linkedin_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_page']:checked").val(),
336
+ x = 1 == SFSI("input[name='sfsi_linkedin_pageURL']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_pageURL']").val(),
337
+ C = 1 == SFSI("input[name='sfsi_linkedin_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_follow']:checked").val(),
338
+ D = SFSI("input[name='sfsi_linkedin_followCompany']").val(),
339
+ U = 1 == SFSI("input[name='sfsi_linkedin_SharePage']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_SharePage']:checked").val(),
340
+ O = SFSI("input[name='sfsi_linkedin_recommendBusines']:checked").val(),
341
+ T = SFSI("input[name='sfsi_linkedin_recommendProductId']").val(),
342
+ j = SFSI("input[name='sfsi_linkedin_recommendCompany']").val(),
343
+ tp = 1 == SFSI("input[name='sfsi_telegram_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_page']:checked").val(),
344
+ tpu = SFSI("input[name='sfsi_telegram_pageURL']").val(),
345
+ tm = SFSI("input[name='sfsi_telegram_message']").val(),
346
+ tmn = SFSI("input[name='sfsi_telegram_username']").val(),
347
+ wp = 1 == SFSI("input[name='sfsi_weibo_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_page']:checked").val(),
348
+ wpu = SFSI("input[name='sfsi_weibo_pageURL']").val(),
349
+ vp = 1 == SFSI("input[name='sfsi_vk_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_page']:checked").val(),
350
+ vpu = SFSI("input[name='sfsi_vk_pageURL']").val(),
351
+ op = 1 == SFSI("input[name='sfsi_ok_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_page']:checked").val(),
352
+ opu = SFSI("input[name='sfsi_ok_pageURL']").val(),
353
+ P = {};
354
+ SFSI("input[name='sfsi_CustomIcon_links[]']").each(function () {
355
+ P[SFSI(this).attr("file-id")] = this.value;
356
+ });
357
+ var M = {
358
+ action: "updateSrcn2",
359
+ sfsi_rss_url: i,
360
+ sfsi_rss_icons: e,
361
+ sfsi_facebookPage_option: t,
362
+ sfsi_facebookLike_option: n,
363
+ sfsi_facebookShare_option: o,
364
+ sfsi_facebookPage_url: a,
365
+ sfsi_twitter_followme: r,
366
+ sfsi_twitter_followUserName: c,
367
+ sfsi_twitter_aboutPage: p,
368
+ sfsi_twitter_page: _,
369
+ sfsi_twitter_pageURL: l,
370
+ sfsi_twitter_aboutPageText: S,
371
+ sfsi_youtube_page: m,
372
+ sfsi_youtube_pageUrl: F,
373
+ sfsi_youtube_follow: h,
374
+ sfsi_youtubeusernameorid: cls,
375
+ sfsi_ytube_user: v,
376
+ sfsi_ytube_chnlid: vchid,
377
+ sfsi_pinterest_page: g,
378
+ sfsi_pinterest_pageUrl: k,
379
+ sfsi_instagram_pageUrl: b,
380
+ sfsi_pinterest_pingBlog: y,
381
+ sfsi_linkedin_page: w,
382
+ sfsi_linkedin_pageURL: x,
383
+ sfsi_linkedin_follow: C,
384
+ sfsi_linkedin_followCompany: D,
385
+ sfsi_linkedin_SharePage: U,
386
+ sfsi_linkedin_recommendBusines: O,
387
+ sfsi_linkedin_recommendCompany: j,
388
+ sfsi_linkedin_recommendProductId: T,
389
+ sfsi_custom_links: P,
390
+ sfsi_telegram_page: tp,
391
+ sfsi_telegram_pageURL: tpu,
392
+ sfsi_telegram_message: tm,
393
+ sfsi_telegram_username: tmn,
394
+ sfsi_weibo_page: wp,
395
+ sfsi_weibo_pageURL: wpu,
396
+ sfsi_vk_page: vp,
397
+ sfsi_vk_pageURL: vpu,
398
+ sfsi_ok_page: op,
399
+ sfsi_ok_pageURL: opu,
400
+ nonce: nonce
401
+ };
402
+ SFSI.ajax({
403
+ url: sfsi_icon_ajax_object.ajax_url,
404
+ type: "post",
405
+ data: M,
406
+ async: !0,
407
+ dataType: "json",
408
+ success: function (s) {
409
+ if (s == "wrong_nonce") {
410
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 2);
411
+ return_value = !1;
412
+ afterLoad();
413
+ } else {
414
+ "success" == s ? (showErrorSuc("success", "Saved !", 2), sfsicollapse("#sfsi_save2"),
415
+ sfsi_depened_sections()) : (global_error = 1, showErrorSuc("error", "Unkown error , please try again", 2),
416
+ return_value = !1), afterLoad();
417
+ }
418
+ }
419
+ });
420
+ }
421
+
422
+ function sfsi_update_step3() {
423
+ var nonce = SFSI("#sfsi_save3").attr("data-nonce");
424
+ var s = sfsi_validationStep3();
425
+ if (!s) return global_error = 1, !1;
426
+ beForeLoad();
427
+ var i = SFSI("input[name='sfsi_actvite_theme']:checked").val(),
428
+ e = SFSI("input[name='sfsi_mouseOver']:checked").val(),
429
+ t = SFSI("input[name='sfsi_shuffle_icons']:checked").val(),
430
+ n = SFSI("input[name='sfsi_shuffle_Firstload']:checked").val(),
431
+ o = SFSI("input[name='sfsi_same_icons_mouseOver_effect']:checked").val(),
432
+ a = SFSI("input[name='sfsi_shuffle_interval']:checked").val(),
433
+ r = SFSI("input[name='sfsi_shuffle_intervalTime']").val(),
434
+ c = SFSI("input[name='sfsi_specialIcon_animation']:checked").val(),
435
+ p = SFSI("input[name='sfsi_specialIcon_MouseOver']:checked").val(),
436
+ _ = SFSI("input[name='sfsi_specialIcon_Firstload']:checked").val(),
437
+ l = SFSI("#sfsi_specialIcon_Firstload_Icons option:selected").val(),
438
+ S = SFSI("input[name='sfsi_specialIcon_interval']:checked").val(),
439
+ u = SFSI("input[name='sfsi_specialIcon_intervalTime']").val(),
440
+ f = SFSI("#sfsi_specialIcon_intervalIcons option:selected").val();
441
+
442
+ var mouseover_effect_type = 'same_icons'; //SFSI("input[name='sfsi_mouseOver_effect_type']:checked").val();
443
+
444
+ d = {
445
+ action: "updateSrcn3",
446
+ sfsi_actvite_theme: i,
447
+ sfsi_mouseOver: e,
448
+ sfsi_shuffle_icons: t,
449
+ sfsi_shuffle_Firstload: n,
450
+ sfsi_mouseOver_effect: o,
451
+ sfsi_mouseover_effect_type: mouseover_effect_type,
452
+ sfsi_shuffle_interval: a,
453
+ sfsi_shuffle_intervalTime: r,
454
+ sfsi_specialIcon_animation: c,
455
+ sfsi_specialIcon_MouseOver: p,
456
+ sfsi_specialIcon_Firstload: _,
457
+ sfsi_specialIcon_Firstload_Icons: l,
458
+ sfsi_specialIcon_interval: S,
459
+ sfsi_specialIcon_intervalTime: u,
460
+ sfsi_specialIcon_intervalIcons: f,
461
+ nonce: nonce
462
+ };
463
+ SFSI.ajax({
464
+ url: sfsi_icon_ajax_object.ajax_url,
465
+ type: "post",
466
+ data: d,
467
+ async: !0,
468
+ dataType: "json",
469
+ success: function (s) {
470
+ if (s == "wrong_nonce") {
471
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 3);
472
+ return_value = !1;
473
+ afterLoad();
474
+ } else {
475
+ "success" == s ? (showErrorSuc("success", "Saved !", 3), sfsicollapse("#sfsi_save3")) : (showErrorSuc("error", "Unkown error , please try again", 3),
476
+ return_value = !1), afterLoad();
477
+ }
478
+ }
479
+ });
480
+ }
481
+
482
+ function sfsi_show_counts() {
483
+ "yes" == SFSI("input[name='sfsi_display_counts']:checked").val() ? (SFSI(".count_sections").slideDown(),
484
+ sfsi_showPreviewCounts()) : (SFSI(".count_sections").slideUp(), sfsi_showPreviewCounts());
485
+ }
486
+
487
+ function sfsi_showPreviewCounts() {
488
+ var s = 0;
489
+ 1 == SFSI("input[name='sfsi_rss_countsDisplay']").prop("checked") ? (SFSI("#sfsi_rss_countsDisplay").css("opacity", 1), s = 1) : SFSI("#sfsi_rss_countsDisplay").css("opacity", 0),
490
+ 1 == SFSI("input[name='sfsi_email_countsDisplay']").prop("checked") ? (SFSI("#sfsi_email_countsDisplay").css("opacity", 1),
491
+ s = 1) : SFSI("#sfsi_email_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_facebook_countsDisplay']").prop("checked") ? (SFSI("#sfsi_facebook_countsDisplay").css("opacity", 1),
492
+ s = 1) : SFSI("#sfsi_facebook_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_twitter_countsDisplay']").prop("checked") ? (SFSI("#sfsi_twitter_countsDisplay").css("opacity", 1),
493
+ s = 1) : SFSI("#sfsi_twitter_countsDisplay").css("opacity", 0),
494
+ 1 == SFSI("input[name='sfsi_linkedIn_countsDisplay']").prop("checked") ? (SFSI("#sfsi_linkedIn_countsDisplay").css("opacity", 1), s = 1) : SFSI("#sfsi_linkedIn_countsDisplay").css("opacity", 0),
495
+ 1 == SFSI("input[name='sfsi_youtube_countsDisplay']").prop("checked") ? (SFSI("#sfsi_youtube_countsDisplay").css("opacity", 1),
496
+ s = 1) : SFSI("#sfsi_youtube_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_pinterest_countsDisplay']").prop("checked") ? (SFSI("#sfsi_pinterest_countsDisplay").css("opacity", 1),
497
+ s = 1) : SFSI("#sfsi_pinterest_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_instagram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_instagram_countsDisplay").css("opacity", 1),
498
+ s = 1) : SFSI("#sfsi_instagram_countsDisplay").css("opacity", 0),
499
+ 1 == SFSI("input[name='sfsi_telegram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_telegram_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_telegram_countsDisplay").css("opacity", 0),
500
+ 1 == SFSI("input[name='sfsi_vk_countsDisplay']").prop("checked") ? (SFSI("#sfsi_vk_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_vk_countsDisplay").css("opacity", 0),
501
+ 1 == SFSI("input[name='sfsi_ok_countsDisplay']").prop("checked") ? (SFSI("#sfsi_ok_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_ok_countsDisplay").css("opacity", 0),
502
+ 1 == SFSI("input[name='sfsi_weibo_countsDisplay']").prop("checked") ? (SFSI("#sfsi_weibo_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_weibo_countsDisplay").css("opacity", 0),
503
+ 1 == SFSI("input[name='sfsi_wechat_countsDisplay']").prop("checked") ? (SFSI("#sfsi_wechat_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_wechat_countsDisplay").css("opacity", 0),
504
+
505
+ 0 == s || "no" == SFSI("input[name='sfsi_display_counts']:checked").val() ? SFSI(".sfsi_Cdisplay").hide() : SFSI(".sfsi_Cdisplay").show();
506
+ }
507
+
508
+ function sfsi_show_OnpostsDisplay() {
509
+ //"yes" == SFSI("input[name='sfsi_show_Onposts']:checked").val() ? SFSI(".PostsSettings_section").slideDown() :SFSI(".PostsSettings_section").slideUp();
510
+ }
511
+
512
+ function sfsi_update_step4() {
513
+ var nonce = SFSI("#sfsi_save4").attr("data-nonce");
514
+ var s = !1,
515
+ i = sfsi_validationStep4();
516
+ if (!i) return global_error = 1, !1;
517
+ beForeLoad();
518
+ var e = SFSI("input[name='sfsi_display_counts']:checked").val(),
519
+ t = 1 == SFSI("input[name='sfsi_email_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_countsDisplay']:checked").val(),
520
+ n = 1 == SFSI("input[name='sfsi_email_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_countsFrom']:checked").val(),
521
+ o = SFSI("input[name='sfsi_email_manualCounts']").val(),
522
+ r = 1 == SFSI("input[name='sfsi_rss_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_countsDisplay']:checked").val(),
523
+ c = SFSI("input[name='sfsi_rss_manualCounts']").val(),
524
+ p = 1 == SFSI("input[name='sfsi_facebook_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_countsDisplay']:checked").val(),
525
+ _ = 1 == SFSI("input[name='sfsi_facebook_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_countsFrom']:checked").val(),
526
+ mp = SFSI("input[name='sfsi_facebook_mypageCounts']").val(),
527
+ l = SFSI("input[name='sfsi_facebook_manualCounts']").val(),
528
+ S = 1 == SFSI("input[name='sfsi_twitter_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_countsDisplay']:checked").val(),
529
+ u = 1 == SFSI("input[name='sfsi_twitter_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_countsFrom']:checked").val(),
530
+ f = SFSI("input[name='sfsi_twitter_manualCounts']").val(),
531
+ d = SFSI("input[name='tw_consumer_key']").val(),
532
+ I = SFSI("input[name='tw_consumer_secret']").val(),
533
+ m = SFSI("input[name='tw_oauth_access_token']").val(),
534
+ F = SFSI("input[name='tw_oauth_access_token_secret']").val(),
535
+ k = 1 == SFSI("input[name='sfsi_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val(),
536
+ y = SFSI("input[name='sfsi_linkedIn_manualCounts']").val(),
537
+ b = SFSI("input[name='ln_company']").val(),
538
+ w = SFSI("input[name='ln_api_key']").val(),
539
+ x = SFSI("input[name='ln_secret_key']").val(),
540
+ C = SFSI("input[name='ln_oAuth_user_token']").val(),
541
+ D = 1 == SFSI("input[name='sfsi_linkedIn_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsDisplay']:checked").val(),
542
+ k = 1 == SFSI("input[name='sfsi_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val(),
543
+ y = SFSI("input[name='sfsi_linkedIn_manualCounts']").val(),
544
+ U = 1 == SFSI("input[name='sfsi_youtube_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_countsDisplay']:checked").val(),
545
+ O = 1 == SFSI("input[name='sfsi_youtube_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_countsFrom']:checked").val(),
546
+ T = SFSI("input[name='sfsi_youtube_manualCounts']").val(),
547
+ j = SFSI("input[name='sfsi_youtube_user']").val(),
548
+ P = 1 == SFSI("input[name='sfsi_pinterest_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_countsDisplay']:checked").val(),
549
+ M = 1 == SFSI("input[name='sfsi_pinterest_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_countsFrom']:checked").val(),
550
+ L = SFSI("input[name='sfsi_pinterest_manualCounts']").val(),
551
+ B = SFSI("input[name='sfsi_pinterest_user']").val(),
552
+ E = SFSI("input[name='sfsi_pinterest_board']").val(),
553
+ z = 1 == SFSI("input[name='sfsi_instagram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_countsDisplay']:checked").val(),
554
+ A = 1 == SFSI("input[name='sfsi_instagram_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_countsFrom']:checked").val(),
555
+ N = SFSI("input[name='sfsi_instagram_manualCounts']").val(),
556
+ H = SFSI("input[name='sfsi_instagram_User']").val(),
557
+ ha = SFSI("input[name='sfsi_instagram_clientid']").val(),
558
+ ia = SFSI("input[name='sfsi_instagram_appurl']").val(),
559
+ ja = SFSI("input[name='sfsi_instagram_token']").val(),
560
+
561
+ tc = 1 == SFSI("input[name='sfsi_telegram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_countsDisplay']:checked").val(),
562
+ tm = SFSI("input[name='sfsi_telegram_manualCounts']").val(),
563
+
564
+ vc = 1 == SFSI("input[name='sfsi_vk_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_countsDisplay']:checked").val(),
565
+ vm = SFSI("input[name='sfsi_vk_manualCounts']").val(),
566
+
567
+
568
+ oc = 1 == SFSI("input[name='sfsi_ok_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_countsDisplay']:checked").val(),
569
+ om = SFSI("input[name='sfsi_ok_manualCounts']").val(),
570
+
571
+
572
+ wc = 1 == SFSI("input[name='sfsi_weibo_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_countsDisplay']:checked").val(),
573
+ wm = SFSI("input[name='sfsi_weibo_manualCounts']").val(),
574
+
575
+ wcc = 1 == SFSI("input[name='sfsi_wechat_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_wechat_countsDisplay']:checked").val(),
576
+ wcm = SFSI("input[name='sfsi_wechat_manualCounts']").val(),
577
+ $ = {
578
+ action: "updateSrcn4",
579
+ sfsi_display_counts: e,
580
+ sfsi_email_countsDisplay: t,
581
+ sfsi_email_countsFrom: n,
582
+ sfsi_email_manualCounts: o,
583
+ sfsi_rss_countsDisplay: r,
584
+ sfsi_rss_manualCounts: c,
585
+ sfsi_facebook_countsDisplay: p,
586
+ sfsi_facebook_countsFrom: _,
587
+ sfsi_facebook_mypageCounts: mp,
588
+ sfsi_facebook_manualCounts: l,
589
+ sfsi_twitter_countsDisplay: S,
590
+ sfsi_twitter_countsFrom: u,
591
+ sfsi_twitter_manualCounts: f,
592
+ tw_consumer_key: d,
593
+ tw_consumer_secret: I,
594
+ tw_oauth_access_token: m,
595
+ tw_oauth_access_token_secret: F,
596
+ sfsi_linkedIn_countsDisplay: D,
597
+ sfsi_linkedIn_countsFrom: k,
598
+ sfsi_linkedIn_manualCounts: y,
599
+ ln_company: b,
600
+ ln_api_key: w,
601
+ ln_secret_key: x,
602
+ ln_oAuth_user_token: C,
603
+ sfsi_youtube_countsDisplay: U,
604
+ sfsi_youtube_countsFrom: O,
605
+ sfsi_youtube_manualCounts: T,
606
+ sfsi_youtube_user: j,
607
+ sfsi_youtube_channelId: SFSI("input[name='sfsi_youtube_channelId']").val(),
608
+ sfsi_pinterest_countsDisplay: P,
609
+ sfsi_pinterest_countsFrom: M,
610
+ sfsi_pinterest_manualCounts: L,
611
+ sfsi_pinterest_user: B,
612
+ sfsi_pinterest_board: E,
613
+ sfsi_instagram_countsDisplay: z,
614
+ sfsi_instagram_countsFrom: A,
615
+ sfsi_instagram_manualCounts: N,
616
+ sfsi_instagram_User: H,
617
+ sfsi_instagram_clientid: ha,
618
+ sfsi_instagram_appurl: ia,
619
+ sfsi_instagram_token: ja,
620
+ sfsi_telegram_countsDisplay: tc,
621
+ sfsi_telegram_manualCounts: tm,
622
+ sfsi_vk_countsDisplay: vc,
623
+ sfsi_vk_manualCounts: vm,
624
+ sfsi_ok_countsDisplay: oc,
625
+ sfsi_ok_manualCounts: om,
626
+ sfsi_weibo_countsDisplay: wc,
627
+ sfsi_weibo_manualCounts: wm,
628
+ sfsi_wechat_countsDisplay: wcc,
629
+ sfsi_wechat_manualCounts: wcm,
630
+ nonce: nonce
631
+ };
632
+ // console.log($);
633
+ return SFSI.ajax({
634
+ url: sfsi_icon_ajax_object.ajax_url,
635
+ type: "post",
636
+ data: $,
637
+ dataType: "json",
638
+ async: !0,
639
+ success: function (s) {
640
+ if (s == "wrong_nonce") {
641
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 4);
642
+ global_error = 1;
643
+ afterLoad();
644
+ } else {
645
+ "success" == s.res ? (showErrorSuc("success", "Saved !", 4), sfsicollapse("#sfsi_save4"),
646
+ sfsi_showPreviewCounts()) : (showErrorSuc("error", "Unkown error , please try again", 4),
647
+ global_error = 1), afterLoad();
648
+ }
649
+ }
650
+ }), s;
651
+ }
652
+
653
+ function sfsi_update_step5() {
654
+ var nonce = SFSI("#sfsi_save5").attr("data-nonce");
655
+ sfsi_update_step3();
656
+
657
+ var s = sfsi_validationStep5();
658
+
659
+ if (!s) return global_error = 1, !1;
660
+
661
+ beForeLoad();
662
+
663
+ var i = SFSI("input[name='sfsi_icons_size']").val(),
664
+ e = SFSI("input[name='sfsi_icons_perRow']").val(),
665
+ t = SFSI("input[name='sfsi_icons_spacing']").val(),
666
+ n = SFSI("#sfsi_icons_Alignment").val(),
667
+ vw = SFSI("#sfsi_icons_Alignment_via_widget").val(),
668
+ vs = SFSI("#sfsi_icons_Alignment_via_shortcode").val(),
669
+
670
+ o = SFSI("input[name='sfsi_icons_ClickPageOpen']:checked").val(),
671
+
672
+ se = SFSI("input[name='sfsi_icons_suppress_errors']:checked").val(),
673
+ c = SFSI("input[name='sfsi_icons_stick']:checked").val(),
674
+ p = SFSI("#sfsi_rssIcon_order").attr("data-index"),
675
+ _ = SFSI("#sfsi_emailIcon_order").attr("data-index"),
676
+ S = SFSI("#sfsi_facebookIcon_order").attr("data-index"),
677
+ u = SFSI("#sfsi_twitterIcon_order").attr("data-index"),
678
+ f = SFSI("#sfsi_youtubeIcon_order").attr("data-index"),
679
+ d = SFSI("#sfsi_pinterestIcon_order").attr("data-index"),
680
+ I = SFSI("#sfsi_instagramIcon_order").attr("data-index"),
681
+ F = SFSI("#sfsi_linkedinIcon_order").attr("data-index"),
682
+ tgi = SFSI("#sfsi_telegramIcon_order").attr("data-index"),
683
+ vki = SFSI("#sfsi_vkIcon_order").attr("data-index"),
684
+ oki = SFSI("#sfsi_okIcon_order").attr("data-index"),
685
+ wbi = SFSI("#sfsi_weiboIcon_order").attr("data-index"),
686
+ wci = SFSI("#sfsi_wechatIcon_order").attr("data-index"),
687
+
688
+ h = new Array();
689
+
690
+ SFSI(".custom_iconOrder").each(function () {
691
+ h.push({
692
+ order: SFSI(this).attr("data-index"),
693
+ ele: SFSI(this).attr("element-id")
694
+ });
695
+ });
696
+
697
+ var v = 1 == SFSI("input[name='sfsi_rss_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_MouseOverText']").val(),
698
+ g = 1 == SFSI("input[name='sfsi_email_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_MouseOverText']").val(),
699
+ k = 1 == SFSI("input[name='sfsi_twitter_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_MouseOverText']").val(),
700
+ y = 1 == SFSI("input[name='sfsi_facebook_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_MouseOverText']").val(),
701
+ w = 1 == SFSI("input[name='sfsi_linkedIn_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_MouseOverText']").val(),
702
+ x = 1 == SFSI("input[name='sfsi_youtube_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_MouseOverText']").val(),
703
+ C = 1 == SFSI("input[name='sfsi_pinterest_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_MouseOverText']").val(),
704
+ D = 1 == SFSI("input[name='sfsi_instagram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_MouseOverText']").val(),
705
+ tg = 1 == SFSI("input[name='sfsi_telegram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_MouseOverText']").val(),
706
+ vk = 1 == SFSI("input[name='sfsi_vk_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_MouseOverText']").val(),
707
+ ok = 1 == SFSI("input[name='sfsi_ok_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_MouseOverText']").val(),
708
+ wb = 1 == SFSI("input[name='sfsi_weibo_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_MouseOverText']").val(),
709
+ wc = 1 == SFSI("input[name='sfsi_wechat_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_wechat_MouseOverText']").val(),
710
+
711
+ O = {};
712
+ SFSI("input[name='sfsi_custom_MouseOverTexts[]']").each(function () {
713
+ O[SFSI(this).attr("file-id")] = this.value;
714
+ });
715
+
716
+ var sfsi_custom_social_hide = SFSI("input[name='sfsi_custom_social_hide']").val();
717
+
718
+ var T = {
719
+ action: "updateSrcn5",
720
+ sfsi_icons_size: i,
721
+ sfsi_icons_Alignment: n,
722
+ sfsi_icons_Alignment_via_widget: vw,
723
+ sfsi_icons_Alignment_via_shortcode: vs,
724
+ sfsi_icons_perRow: e,
725
+ sfsi_icons_spacing: t,
726
+ sfsi_icons_ClickPageOpen: o,
727
+ sfsi_icons_suppress_errors: se,
728
+ sfsi_icons_stick: c,
729
+ sfsi_rss_MouseOverText: v,
730
+ sfsi_email_MouseOverText: g,
731
+ sfsi_twitter_MouseOverText: k,
732
+ sfsi_facebook_MouseOverText: y,
733
+ sfsi_youtube_MouseOverText: x,
734
+ sfsi_linkedIn_MouseOverText: w,
735
+ sfsi_pinterest_MouseOverText: C,
736
+ sfsi_instagram_MouseOverText: D,
737
+ sfsi_telegram_MouseOverText: tg,
738
+ sfsi_vk_MouseOverText: vk,
739
+ sfsi_ok_MouseOverText: ok,
740
+ sfsi_weibo_MouseOverText: wb,
741
+ sfsi_wechat_MouseOverText: wc,
742
+ sfsi_custom_MouseOverTexts: O,
743
+ sfsi_rssIcon_order: p,
744
+ sfsi_emailIcon_order: _,
745
+ sfsi_facebookIcon_order: S,
746
+ sfsi_twitterIcon_order: u,
747
+ sfsi_youtubeIcon_order: f,
748
+ sfsi_pinterestIcon_order: d,
749
+ sfsi_instagramIcon_order: I,
750
+ sfsi_linkedinIcon_order: F,
751
+ sfsi_telegramIcon_order: tgi,
752
+ sfsi_vkIcon_order: vki,
753
+ sfsi_okIcon_order: oki,
754
+ sfsi_weiboIcon_order: wbi,
755
+ sfsi_wechatIcon_order: wci,
756
+
757
+ sfsi_custom_orders: h,
758
+ sfsi_custom_social_hide: sfsi_custom_social_hide,
759
+ nonce: nonce
760
+ };
761
+ // console.log(T);
762
+ SFSI.ajax({
763
+ url: sfsi_icon_ajax_object.ajax_url,
764
+ type: "post",
765
+ data: T,
766
+ dataType: "json",
767
+ async: !0,
768
+ success: function (s) {
769
+ if (s == "wrong_nonce") {
770
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 5);
771
+ global_error = 1;
772
+ afterLoad();
773
+ } else {
774
+ "success" == s ? (showErrorSuc("success", "Saved !", 5), sfsicollapse("#sfsi_save5")) : (global_error = 1,
775
+ showErrorSuc("error", "Unkown error , please try again", 5)), afterLoad();
776
+ }
777
+ }
778
+ });
779
+ }
780
+
781
+ function sfsi_update_step6() {
782
+ var nonce = SFSI("#sfsi_save9").attr("data-nonce2");
783
+ beForeLoad();
784
+ var s = SFSI("input[name='sfsi_show_Onposts']:checked").val(),
785
+ i = SFSI("input[name='sfsi_textBefor_icons']").val(),
786
+ e = SFSI("#sfsi_icons_alignment").val(),
787
+ t = SFSI("#sfsi_icons_DisplayCounts").val(),
788
+ rsub = SFSI("input[name='sfsi_rectsub']:checked").val(),
789
+ rfb = SFSI("input[name='sfsi_rectfb']:checked").val(),
790
+ rpin = SFSI("input[name='sfsi_rectpinit']:checked").val(),
791
+ rshr = SFSI("input[name='sfsi_rectshr']:checked").val(),
792
+ rtwr = SFSI("input[name='sfsi_recttwtr']:checked").val(),
793
+ rfbshare = SFSI("input[name='sfsi_rectfbshare']:checked").val(),
794
+ a = SFSI("input[name='sfsi_display_button_type']:checked").val();
795
+ countshare = SFSI("input[name='sfsi_share_count']:checked").val();
796
+ endpost = SFSI("input[name='sfsi_responsive_icons_end_post']:checked").val();
797
+
798
+ var responsive_icons = {
799
+ "default_icons": {},
800
+ "settings": {}
801
+ };
802
+ SFSI('.sfsi_responsive_default_icon_container input[type="checkbox"]').each(function (index, obj) {
803
+ var data_obj = {};
804
+ data_obj.active = ('checked' == SFSI(obj).attr('checked')) ? 'yes' : 'no';
805
+ var iconname = SFSI(obj).attr('data-icon');
806
+ var next_section = SFSI(obj).parent().parent();
807
+ data_obj.text = next_section.find('input[name="sfsi_responsive_' + iconname + '_input"]').val();
808
+ data_obj.url = next_section.find('input[name="sfsi_responsive_' + iconname + '_url_input"]').val();
809
+ responsive_icons.default_icons[iconname] = data_obj;
810
+ });
811
+ SFSI('.sfsi_responsive_custom_icon_container input[type="checkbox"]').each(function (index, obj) {
812
+ if (SFSI(obj).attr('id') != "sfsi_responsive_custom_new_display") {
813
+ var data_obj = {};
814
+ data_obj.active = 'checked' == SFSI(obj).attr('checked') ? 'yes' : 'no';
815
+ var icon_index = SFSI(obj).attr('data-custom-index');
816
+ var next_section = SFSI(obj).parent().parent();
817
+ data_obj['added'] = SFSI('input[name="sfsi_responsive_custom_' + index + '_added"]').val();
818
+ data_obj.icon = next_section.find('img').attr('src');
819
+ data_obj["bg-color"] = next_section.find('.sfsi_bg-color-picker').val();
820
+
821
+ data_obj.text = next_section.find('input[name="sfsi_responsive_custom_' + icon_index + '_input"]').val();
822
+ data_obj.url = next_section.find('input[name="sfsi_responsive_custom_' + icon_index + '_url_input"]').val();
823
+ responsive_icons.custom_icons[index] = data_obj;
824
+ }
825
+ });
826
+ responsive_icons.settings.icon_size = SFSI('select[name="sfsi_responsive_icons_settings_icon_size"]').val();
827
+ responsive_icons.settings.icon_width_type = SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val();
828
+ responsive_icons.settings.icon_width_size = SFSI('input[name="sfsi_responsive_icons_sttings_icon_width_size"]').val();
829
+ responsive_icons.settings.edge_type = SFSI('select[name="sfsi_responsive_icons_settings_edge_type"]').val();
830
+ responsive_icons.settings.edge_radius = SFSI('select[name="sfsi_responsive_icons_settings_edge_radius"]').val();
831
+ responsive_icons.settings.style = SFSI('select[name="sfsi_responsive_icons_settings_style"]').val();
832
+ responsive_icons.settings.margin = SFSI('input[name="sfsi_responsive_icons_settings_margin"]').val();
833
+ responsive_icons.settings.text_align = SFSI('select[name="sfsi_responsive_icons_settings_text_align"]').val();
834
+ responsive_icons.settings.show_count = SFSI('input[name="sfsi_responsive_icon_show_count"]:checked').val();
835
+ responsive_icons.settings.counter_color = SFSI('input[name="sfsi_responsive_counter_color"]').val();
836
+ responsive_icons.settings.counter_bg_color = SFSI('input[name="sfsi_responsive_counter_bg_color"]').val();
837
+ responsive_icons.settings.share_count_text = SFSI('input[name="sfsi_responsive_counter_share_count_text"]').val();
838
+ responsive_icons.settings.show_count = countshare;
839
+ n = {
840
+ action: "updateSrcn6",
841
+ sfsi_show_Onposts: s,
842
+ sfsi_icons_DisplayCounts: t,
843
+ sfsi_icons_alignment: e,
844
+ sfsi_textBefor_icons: i,
845
+ sfsi_rectsub: rsub,
846
+ sfsi_rectfb: rfb,
847
+ sfsi_rectpinit: rpin,
848
+ sfsi_rectshr: rshr,
849
+ sfsi_recttwtr: rtwr,
850
+ sfsi_rectfbshare: rfbshare,
851
+ sfsi_responsive_icons: responsive_icons,
852
+ sfsi_display_button_type: a,
853
+ sfsi_responsive_icons_end_post:endpost,
854
+ sfsi_share_count: countshare,
855
+ nonce: nonce
856
+ };
857
+ SFSI.ajax({
858
+ url: sfsi_icon_ajax_object.ajax_url,
859
+ type: "post",
860
+ data: n,
861
+ dataType: "json",
862
+ async: !0,
863
+ success: function (s) {
864
+ if (s == "wrong_nonce") {
865
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
866
+ global_error = 1;
867
+ afterLoad();
868
+ } else {
869
+ "success" == s ? (showErrorSuc("success", "Saved !", 6), sfsicollapse("#sfsi_save6")) : (global_error = 1,
870
+ showErrorSuc("error", "Unkown error , please try again", 6)), afterLoad();
871
+ }
872
+ }
873
+ });
874
+ }
875
+
876
+ function sfsi_update_step7() {
877
+ var nonce = SFSI("#sfsi_save7").attr("data-nonce");
878
+ var s = sfsi_validationStep7();
879
+ if (!s) return global_error = 1, !1;
880
+ beForeLoad();
881
+ var i = SFSI("input[name='sfsi_popup_text']").val(),
882
+ e = SFSI("#sfsi_popup_font option:selected").val(),
883
+ t = SFSI("#sfsi_popup_fontStyle option:selected").val(),
884
+ color = SFSI("input[name='sfsi_popup_fontColor']").val(),
885
+ n = SFSI("input[name='sfsi_popup_fontSize']").val(),
886
+ o = SFSI("input[name='sfsi_popup_background_color']").val(),
887
+ a = SFSI("input[name='sfsi_popup_border_color']").val(),
888
+ r = SFSI("input[name='sfsi_popup_border_thickness']").val(),
889
+ c = SFSI("input[name='sfsi_popup_border_shadow']:checked").val(),
890
+ p = SFSI("input[name='sfsi_Show_popupOn']:checked").val(),
891
+ _ = [];
892
+ SFSI("#sfsi_Show_popupOn_PageIDs :selected").each(function (s, i) {
893
+ _[s] = SFSI(i).val();
894
+ });
895
+ var l = SFSI("input[name='sfsi_Shown_pop']:checked").val(),
896
+ S = SFSI("input[name='sfsi_Shown_popupOnceTime']").val(),
897
+ u = SFSI("#sfsi_Shown_popuplimitPerUserTime").val(),
898
+ f = {
899
+ action: "updateSrcn7",
900
+ sfsi_popup_text: i,
901
+ sfsi_popup_font: e,
902
+ sfsi_popup_fontColor: color,
903
+ /*sfsi_popup_fontStyle: t,*/
904
+ sfsi_popup_fontSize: n,
905
+ sfsi_popup_background_color: o,
906
+ sfsi_popup_border_color: a,
907
+ sfsi_popup_border_thickness: r,
908
+ sfsi_popup_border_shadow: c,
909
+ sfsi_Show_popupOn: p,
910
+ sfsi_Show_popupOn_PageIDs: _,
911
+ sfsi_Shown_pop: l,
912
+ sfsi_Shown_popupOnceTime: S,
913
+ sfsi_Shown_popuplimitPerUserTime: u,
914
+ nonce: nonce
915
+ };
916
+ SFSI.ajax({
917
+ url: sfsi_icon_ajax_object.ajax_url,
918
+ type: "post",
919
+ data: f,
920
+ dataType: "json",
921
+ async: !0,
922
+ success: function (s) {
923
+ if (s == "wrong_nonce") {
924
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
925
+ afterLoad();
926
+ } else {
927
+ "success" == s ? (showErrorSuc("success", "Saved !", 7), sfsicollapse("#sfsi_save7")) : showErrorSuc("error", "Unkown error , please try again", 7),
928
+ afterLoad();
929
+ }
930
+ }
931
+ });
932
+ }
933
+
934
+ function sfsi_update_step8() {
935
+ var nonce = SFSI("#sfsi_save8").attr("data-nonce");
936
+ beForeLoad();
937
+ var ie = SFSI("input[name='sfsi_form_adjustment']:checked").val(),
938
+ je = SFSI("input[name='sfsi_form_height']").val(),
939
+ ke = SFSI("input[name='sfsi_form_width']").val(),
940
+ le = SFSI("input[name='sfsi_form_border']:checked").val(),
941
+ me = SFSI("input[name='sfsi_form_border_thickness']").val(),
942
+ ne = SFSI("input[name='sfsi_form_border_color']").val(),
943
+ oe = SFSI("input[name='sfsi_form_background']").val(),
944
+
945
+ ae = SFSI("input[name='sfsi_form_heading_text']").val(),
946
+ be = SFSI("#sfsi_form_heading_font option:selected").val(),
947
+ ce = SFSI("#sfsi_form_heading_fontstyle option:selected").val(),
948
+ de = SFSI("input[name='sfsi_form_heading_fontcolor']").val(),
949
+ ee = SFSI("input[name='sfsi_form_heading_fontsize']").val(),
950
+ fe = SFSI("#sfsi_form_heading_fontalign option:selected").val(),
951
+
952
+ ue = SFSI("input[name='sfsi_form_field_text']").val(),
953
+ ve = SFSI("#sfsi_form_field_font option:selected").val(),
954
+ we = SFSI("#sfsi_form_field_fontstyle option:selected").val(),
955
+ xe = SFSI("input[name='sfsi_form_field_fontcolor']").val(),
956
+ ye = SFSI("input[name='sfsi_form_field_fontsize']").val(),
957
+ ze = SFSI("#sfsi_form_field_fontalign option:selected").val(),
958
+
959
+ i = SFSI("input[name='sfsi_form_button_text']").val(),
960
+ j = SFSI("#sfsi_form_button_font option:selected").val(),
961
+ k = SFSI("#sfsi_form_button_fontstyle option:selected").val(),
962
+ l = SFSI("input[name='sfsi_form_button_fontcolor']").val(),
963
+ m = SFSI("input[name='sfsi_form_button_fontsize']").val(),
964
+ n = SFSI("#sfsi_form_button_fontalign option:selected").val(),
965
+ o = SFSI("input[name='sfsi_form_button_background']").val();
966
+
967
+ var f = {
968
+ action: "updateSrcn8",
969
+ sfsi_form_adjustment: ie,
970
+ sfsi_form_height: je,
971
+ sfsi_form_width: ke,
972
+ sfsi_form_border: le,
973
+ sfsi_form_border_thickness: me,
974
+ sfsi_form_border_color: ne,
975
+ sfsi_form_background: oe,
976
+
977
+ sfsi_form_heading_text: ae,
978
+ sfsi_form_heading_font: be,
979
+ sfsi_form_heading_fontstyle: ce,
980
+ sfsi_form_heading_fontcolor: de,
981
+ sfsi_form_heading_fontsize: ee,
982
+ sfsi_form_heading_fontalign: fe,
983
+
984
+ sfsi_form_field_text: ue,
985
+ sfsi_form_field_font: ve,
986
+ sfsi_form_field_fontstyle: we,
987
+ sfsi_form_field_fontcolor: xe,
988
+ sfsi_form_field_fontsize: ye,
989
+ sfsi_form_field_fontalign: ze,
990
+
991
+ sfsi_form_button_text: i,
992
+ sfsi_form_button_font: j,
993
+ sfsi_form_button_fontstyle: k,
994
+ sfsi_form_button_fontcolor: l,
995
+ sfsi_form_button_fontsize: m,
996
+ sfsi_form_button_fontalign: n,
997
+ sfsi_form_button_background: o,
998
+
999
+ nonce: nonce
1000
+ };
1001
+ SFSI.ajax({
1002
+ url: sfsi_icon_ajax_object.ajax_url,
1003
+ type: "post",
1004
+ data: f,
1005
+ dataType: "json",
1006
+ async: !0,
1007
+ success: function (s) {
1008
+ if (s == "wrong_nonce") {
1009
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
1010
+ afterLoad();
1011
+ } else {
1012
+ "success" == s ? (showErrorSuc("success", "Saved !", 8), sfsicollapse("#sfsi_save8"), create_suscriber_form()) : showErrorSuc("error", "Unkown error , please try again", 8),
1013
+ afterLoad();
1014
+ }
1015
+ }
1016
+ });
1017
+ }
1018
+
1019
+ // Queestion 3
1020
+ function sfsi_update_step9() {
1021
+ sfsi_update_step6();
1022
+ var nonce = SFSI("#sfsi_save9").attr("data-nonce");
1023
+ beForeLoad();
1024
+
1025
+ var i_float = SFSI("input[name='sfsi_icons_float']:checked").val(),
1026
+ i_floatP = SFSI("input[name='sfsi_icons_floatPosition']:checked").val(),
1027
+ i_floatMt = SFSI("input[name='sfsi_icons_floatMargin_top']").val(),
1028
+ i_floatMb = SFSI("input[name='sfsi_icons_floatMargin_bottom']").val(),
1029
+ i_floatMl = SFSI("input[name='sfsi_icons_floatMargin_left']").val(),
1030
+ i_floatMr = SFSI("input[name='sfsi_icons_floatMargin_right']").val(),
1031
+ i_disableFloat = SFSI("input[name='sfsi_disable_floaticons']:checked").val(),
1032
+
1033
+ show_via_widget = SFSI("input[name='sfsi_show_via_widget']").val(),
1034
+ show_via__shortcode = SFSI("input[name='sfsi_show_via_shortcode']:checked").length==0?"no":"yes",
1035
+ sfsi_show_via_afterposts = SFSI("input[name='sfsi_show_via_afterposts']").val();
1036
+
1037
+ var f = {
1038
+
1039
+ action: "updateSrcn9",
1040
+
1041
+ sfsi_icons_float: i_float,
1042
+ sfsi_icons_floatPosition: i_floatP,
1043
+ sfsi_icons_floatMargin_top: i_floatMt,
1044
+ sfsi_icons_floatMargin_bottom: i_floatMb,
1045
+ sfsi_icons_floatMargin_left: i_floatMl,
1046
+ sfsi_icons_floatMargin_right: i_floatMr,
1047
+ sfsi_disable_floaticons: i_disableFloat,
1048
+
1049
+ sfsi_show_via_widget: show_via_widget,
1050
+ sfsi_show_via_shortcode: show_via__shortcode,
1051
+ sfsi_show_via_afterposts: sfsi_show_via_afterposts,
1052
+ nonce: nonce
1053
+ };
1054
+ SFSI.ajax({
1055
+ url: sfsi_icon_ajax_object.ajax_url,
1056
+ type: "post",
1057
+ data: f,
1058
+ dataType: "json",
1059
+ async: !0,
1060
+ success: function (s) {
1061
+ if (s == "wrong_nonce") {
1062
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 9);
1063
+ afterLoad();
1064
+ } else {
1065
+ "success" == s ? (showErrorSuc("success", "Saved !", 9), sfsicollapse("#sfsi_save9")) : showErrorSuc("error", "Unkown error , please try again", 9),
1066
+ afterLoad();
1067
+ }
1068
+ }
1069
+ });
1070
+ }
1071
+
1072
+ function sfsi_validationStep2() {
1073
+ //var class_name= SFSI(element).hasAttr('sfsi_validate');
1074
+ SFSI('input').removeClass('inputError'); // remove previous error
1075
+ if (sfsi_validator(SFSI('input[name="sfsi_rss_display"]'), 'checked')) {
1076
+ if (!sfsi_validator(SFSI('input[name="sfsi_rss_url"]'), 'url')) {
1077
+ showErrorSuc("error", "Error : Invalid Rss url ", 2);
1078
+ SFSI('input[name="sfsi_rss_url"]').addClass('inputError');
1079
+
1080
+ return false;
1081
+ }
1082
+ }
1083
+ /* validate facebook */
1084
+ if (sfsi_validator(SFSI('input[name="sfsi_facebookPage_option"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_facebookPage_option"]'), 'checked')) {
1085
+ if (!sfsi_validator(SFSI('input[name="sfsi_facebookPage_url"]'), 'blank')) {
1086
+ showErrorSuc("error", "Error : Invalid Facebook page url ", 2);
1087
+ SFSI('input[name="sfsi_facebookPage_url"]').addClass('inputError');
1088
+
1089
+ return false;
1090
+ }
1091
+ }
1092
+ /* validate twitter user name */
1093
+ if (sfsi_validator(SFSI('input[name="sfsi_twitter_followme"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_followme"]'), 'checked')) {
1094
+ if (!sfsi_validator(SFSI('input[name="sfsi_twitter_followUserName"]'), 'blank')) {
1095
+ showErrorSuc("error", "Error : Invalid Twitter UserName ", 2);
1096
+ SFSI('input[name="sfsi_twitter_followUserName"]').addClass('inputError');
1097
+ return false;
1098
+ }
1099
+ }
1100
+ /* validate twitter about page */
1101
+ if (sfsi_validator(SFSI('input[name="sfsi_twitter_aboutPage"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_aboutPage"]'), 'checked')) {
1102
+ if (!sfsi_validator(SFSI('#sfsi_twitter_aboutPageText'), 'blank')) {
1103
+ showErrorSuc("error", "Error : Tweet about my page is blank ", 2);
1104
+ SFSI('#sfsi_twitter_aboutPageText').addClass('inputError');
1105
+ return false;
1106
+ }
1107
+ }
1108
+ /* twitter validation */
1109
+ if (sfsi_validator(SFSI('input[name="sfsi_twitter_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_page"]'), 'checked')) {
1110
+ if (!sfsi_validator(SFSI('input[name="sfsi_twitter_pageURL"]'), 'blank')) {
1111
+ showErrorSuc("error", "Error : Invalid twitter page Url ", 2);
1112
+ SFSI('input[name="sfsi_twitter_pageURL"]').addClass('inputError');
1113
+ return false;
1114
+ }
1115
+ }
1116
+
1117
+ /* youtube validation */
1118
+ if (sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'checked')) {
1119
+ if (!sfsi_validator(SFSI('input[name="sfsi_youtube_pageUrl"]'), 'blank')) {
1120
+ showErrorSuc("error", "Error : Invalid youtube Url ", 2);
1121
+ SFSI('input[name="sfsi_youtube_pageUrl"]').addClass('inputError');
1122
+ return false;
1123
+ }
1124
+ }
1125
+ /* youtube validation */
1126
+ if (sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_follow"]'), 'checked')) {
1127
+ cls = SFSI("input[name='sfsi_youtubeusernameorid']:checked").val();
1128
+ if (cls == 'name' && !sfsi_validator(SFSI('input[name="sfsi_ytube_user"]'), 'blank')) {
1129
+ showErrorSuc("error", "Error : Invalid youtube user name", 2);
1130
+ SFSI('input[name="sfsi_ytube_user"]').addClass('inputError');
1131
+ return false;
1132
+ }
1133
+
1134
+ if (cls == 'id' && !sfsi_validator(SFSI('input[name="sfsi_ytube_chnlid"]'), 'blank')) {
1135
+ showErrorSuc("error", "Error : Invalid youtube Channel ID ", 2);
1136
+ SFSI('input[name="sfsi_ytube_user"]').addClass('inputError');
1137
+ return false;
1138
+ }
1139
+ }
1140
+ /* pinterest validation */
1141
+ if (sfsi_validator(SFSI('input[name="sfsi_pinterest_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_pinterest_page"]'), 'checked')) {
1142
+ if (!sfsi_validator(SFSI('input[name="sfsi_pinterest_pageUrl"]'), 'blank')) {
1143
+ showErrorSuc("error", "Error : Invalid pinterest page url ", 2);
1144
+ SFSI('input[name="sfsi_pinterest_pageUrl"]').addClass('inputError');
1145
+ return false;
1146
+ }
1147
+ }
1148
+ /* instagram validation */
1149
+ if (sfsi_validator(SFSI('input[name="sfsi_instagram_display"]'), 'checked')) {
1150
+ if (!sfsi_validator(SFSI('input[name="sfsi_instagram_pageUrl"]'), 'blank')) {
1151
+ showErrorSuc("error", "Error : Invalid Instagram url ", 2);
1152
+ SFSI('input[name="sfsi_instagram_pageUrl"]').addClass('inputError');
1153
+ return false;
1154
+ }
1155
+ }
1156
+ /* telegram validation */
1157
+ if (sfsi_validator(SFSI('input[name="sfsi_telegram_display"]'), 'checked')) {
1158
+ if (!sfsi_validator(SFSI('input[name="sfsi_telegram_username"]'), 'blank')) {
1159
+ showErrorSuc("error", "Error : Invalid telegram username ", 2);
1160
+ SFSI('input[name="sfsi_telegram_username"]').addClass('inputError');
1161
+ return false;
1162
+ }
1163
+ }
1164
+ /* telegram validation */
1165
+ if (sfsi_validator(SFSI('input[name="sfsi_telegram_display"]'), 'checked')) {
1166
+ if (!sfsi_validator(SFSI('input[name="sfsi_telegram_message"]'), 'blank')) {
1167
+ showErrorSuc("error", "Error : Invalid Message ", 2);
1168
+ SFSI('input[name="sfsi_telegram_message"]').addClass('inputError');
1169
+ return false;
1170
+ }
1171
+ }
1172
+ /* vk validation */
1173
+ if (sfsi_validator(SFSI('input[name="sfsi_vk_display"]'), 'checked')) {
1174
+ if (!sfsi_validator(SFSI('input[name="sfsi_vk_pageURL"]'), 'blank')) {
1175
+ showErrorSuc("error", "Error : Invalid vk url ", 2);
1176
+ SFSI('input[name="sfsi_vk_pageURL"]').addClass('inputError');
1177
+ return false;
1178
+ }
1179
+ }
1180
+ /* ok validation */
1181
+ if (sfsi_validator(SFSI('input[name="sfsi_ok_display"]'), 'checked')) {
1182
+ if (!sfsi_validator(SFSI('input[name="sfsi_ok_pageURL"]'), 'blank')) {
1183
+ showErrorSuc("error", "Error : Invalid ok url ", 2);
1184
+ SFSI('input[name="sfsi_ok_pageURL"]').addClass('inputError');
1185
+ return false;
1186
+ }
1187
+ }
1188
+ /* weibo validation */
1189
+ if (sfsi_validator(SFSI('input[name="sfsi_weibo_display"]'), 'checked')) {
1190
+ if (!sfsi_validator(SFSI('input[name="sfsi_weibo_pageURL"]'), 'blank')) {
1191
+ showErrorSuc("error", "Error : Invalid weibo url ", 2);
1192
+ SFSI('input[name="sfsi_weibo_pageURL"]').addClass('inputError');
1193
+ return false;
1194
+ }
1195
+ }
1196
+ /* LinkedIn validation */
1197
+ if (sfsi_validator(SFSI('input[name="sfsi_linkedin_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedin_page"]'), 'checked')) {
1198
+ if (!sfsi_validator(SFSI('input[name="sfsi_linkedin_pageURL"]'), 'blank')) {
1199
+ showErrorSuc("error", "Error : Invalid LinkedIn page url ", 2);
1200
+ SFSI('input[name="sfsi_linkedin_pageURL"]').addClass('inputError');
1201
+ return false;
1202
+ }
1203
+ }
1204
+ if (sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendBusines"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendBusines"]'), 'checked')) {
1205
+ if (!sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendProductId"]'), 'blank') || !sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendCompany"]'), 'blank')) {
1206
+ showErrorSuc("error", "Error : Please Enter Product Id and Company for LinkedIn Recommendation ", 2);
1207
+ SFSI('input[name="sfsi_linkedin_recommendProductId"]').addClass('inputError');
1208
+ SFSI('input[name="sfsi_linkedin_recommendCompany"]').addClass('inputError');
1209
+ return false;
1210
+ }
1211
+ }
1212
+ /* validate custom links */
1213
+ var er = 0;
1214
+ SFSI("input[name='sfsi_CustomIcon_links[]']").each(function () {
1215
+
1216
+ //if(!sfsi_validator(SFSI(this),'blank') || !sfsi_validator(SFSI(SFSI(this)),'url') )
1217
+ if (!sfsi_validator(SFSI(this), 'blank')) {
1218
+ showErrorSuc("error", "Error : Please Enter a valid Custom link ", 2);
1219
+ SFSI(this).addClass('inputError');
1220
+ er = 1;
1221
+ }
1222
+ });
1223
+ if (!er) return true;
1224
+ else return false;
1225
+ }
1226
+
1227
+ function sfsi_validationStep3() {
1228
+ SFSI('input').removeClass('inputError'); // remove previous error
1229
+ /* validate shuffle effect */
1230
+ if (sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'checked')) {
1231
+ if ((!sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'activte') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'checked')) && (!sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'activte') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked'))) {
1232
+ showErrorSuc("error", "Error : Please Chose a Shuffle option ", 3);
1233
+ SFSI('input[name="sfsi_shuffle_Firstload"]').addClass('inputError');
1234
+ SFSI('input[name="sfsi_shuffle_interval"]').addClass('inputError');
1235
+ return false;
1236
+ }
1237
+ }
1238
+ if (!sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'checked') && (sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'checked') || sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked'))) {
1239
+ showErrorSuc("error", "Error : Please check \"Shuffle them automatically\" option also ", 3);
1240
+ SFSI('input[name="sfsi_shuffle_Firstload"]').addClass('inputError');
1241
+ SFSI('input[name="sfsi_shuffle_interval"]').addClass('inputError');
1242
+ return false;
1243
+ }
1244
+
1245
+ /* validate twitter user name */
1246
+ if (sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked')) {
1247
+
1248
+ if (!sfsi_validator(SFSI('input[name="sfsi_shuffle_intervalTime"]'), 'blank') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_intervalTime"]'), 'int')) {
1249
+ showErrorSuc("error", "Error : Invalid shuffle time interval", 3);
1250
+ SFSI('input[name="sfsi_shuffle_intervalTime"]').addClass('inputError');
1251
+ return false;
1252
+ }
1253
+ }
1254
+ return true;
1255
+ }
1256
+
1257
+ function sfsi_validationStep4() {
1258
+ //var class_name= SFSI(element).hasAttr('sfsi_validate');
1259
+ /* validate email */
1260
+ if (sfsi_validator(SFSI('input[name="sfsi_email_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_email_countsDisplay"]'), 'checked')) {
1261
+ if (SFSI('input[name="sfsi_email_countsFrom"]:checked').val() == 'manual') {
1262
+ if (!sfsi_validator(SFSI('input[name="sfsi_email_manualCounts"]'), 'blank')) {
1263
+ showErrorSuc("error", "Error : Please Enter manual counts for Email icon ", 4);
1264
+ SFSI('input[name="sfsi_email_manualCounts"]').addClass('inputError');
1265
+ return false;
1266
+ }
1267
+ }
1268
+ }
1269
+ /* validate RSS count */
1270
+ if (sfsi_validator(SFSI('input[name="sfsi_rss_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_rss_countsDisplay"]'), 'checked')) {
1271
+ if (!sfsi_validator(SFSI('input[name="sfsi_rss_manualCounts"]'), 'blank')) {
1272
+ showErrorSuc("error", "Error : Please Enter manual counts for Rss icon ", 4);
1273
+ SFSI('input[name="sfsi_rss_countsDisplay"]').addClass('inputError');
1274
+ return false;
1275
+ }
1276
+ }
1277
+ /* validate facebook */
1278
+ if (sfsi_validator(SFSI('input[name="sfsi_facebook_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_facebook_countsDisplay"]'), 'checked')) {
1279
+ /*if(SFSI('input[name="sfsi_facebook_countsFrom"]:checked').val()=='likes' )
1280
+ {
1281
+ if(!sfsi_validator(SFSI('input[name="sfsi_facebook_PageLink"]'),'blank'))
1282
+ { showErrorSuc("error","Error : Please Enter facebook page Url ",4);
1283
+ SFSI('input[name="sfsi_facebook_PageLink"]').addClass('inputError');
1284
+ return false;
1285
+ }
1286
+ } */
1287
+ if (SFSI('input[name="sfsi_facebook_countsFrom"]:checked').val() == 'manual') {
1288
+ if (!sfsi_validator(SFSI('input[name="sfsi_facebook_manualCounts"]'), 'blank') && !sfsi_validator(SFSI('input[name="sfsi_facebook_manualCounts"]'), 'url')) {
1289
+ showErrorSuc("error", "Error : Please Enter a valid facebook manual counts ", 4);
1290
+ SFSI('input[name="sfsi_facebook_manualCounts"]').addClass('inputError');
1291
+ return false;
1292
+ }
1293
+ }
1294
+ }
1295
+
1296
+ /* validate twitter */
1297
+ if (sfsi_validator(SFSI('input[name="sfsi_twitter_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_countsDisplay"]'), 'checked')) {
1298
+ if (SFSI('input[name="sfsi_twitter_countsFrom"]:checked').val() == 'source') {
1299
+ if (!sfsi_validator(SFSI('input[name="tw_consumer_key"]'), 'blank')) {
1300
+ showErrorSuc("error", "Error : Please Enter a valid consumer key", 4);
1301
+ SFSI('input[name="tw_consumer_key"]').addClass('inputError');
1302
+ return false;
1303
+ }
1304
+ if (!sfsi_validator(SFSI('input[name="tw_consumer_secret"]'), 'blank')) {
1305
+ showErrorSuc("error", "Error : Please Enter a valid consume secret ", 4);
1306
+ SFSI('input[name="tw_consumer_secret"]').addClass('inputError');
1307
+ return false;
1308
+ }
1309
+ if (!sfsi_validator(SFSI('input[name="tw_oauth_access_token"]'), 'blank')) {
1310
+ showErrorSuc("error", "Error : Please Enter a valid oauth access token", 4);
1311
+ SFSI('input[name="tw_oauth_access_token"]').addClass('inputError');
1312
+ return false;
1313
+ }
1314
+ if (!sfsi_validator(SFSI('input[name="tw_oauth_access_token_secret"]'), 'blank')) {
1315
+ showErrorSuc("error", "Error : Please Enter a oAuth access token secret", 4);
1316
+ SFSI('input[name="tw_oauth_access_token_secret"]').addClass('inputError');
1317
+ return false;
1318
+ }
1319
+ }
1320
+ if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'manual') {
1321
+
1322
+ if (!sfsi_validator(SFSI('input[name="sfsi_twitter_manualCounts"]'), 'blank')) {
1323
+ showErrorSuc("error", "Error : Please Enter Twitter manual counts ", 4);
1324
+ SFSI('input[name="sfsi_twitter_manualCounts"]').addClass('inputError');
1325
+ return false;
1326
+ }
1327
+ }
1328
+ }
1329
+ /* validate LinkedIn */
1330
+ if (sfsi_validator(SFSI('input[name="sfsi_linkedIn_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedIn_countsDisplay"]'), 'checked')) {
1331
+ if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'follower') {
1332
+ if (!sfsi_validator(SFSI('input[name="ln_company"]'), 'blank')) {
1333
+ showErrorSuc("error", "Error : Please Enter a valid company name", 4);
1334
+ SFSI('input[name="ln_company"]').addClass('inputError');
1335
+ return false;
1336
+ }
1337
+ if (!sfsi_validator(SFSI('input[name="ln_api_key"]'), 'blank')) {
1338
+ showErrorSuc("error", "Error : Please Enter a valid API key ", 4);
1339
+ SFSI('input[name="ln_api_key"]').addClass('inputError');
1340
+ return false;
1341
+ }
1342
+ if (!sfsi_validator(SFSI('input[name="ln_secret_key"]'), 'blank')) {
1343
+ showErrorSuc("error", "Error : Please Enter a valid secret ", 4);
1344
+ SFSI('input[name="ln_secret_key"]').addClass('inputError');
1345
+ return false;
1346
+ }
1347
+ if (!sfsi_validator(SFSI('input[name="ln_oAuth_user_token"]'), 'blank')) {
1348
+ showErrorSuc("error", "Error : Please Enter a oAuth Access Token", 4);
1349
+ SFSI('input[name="ln_oAuth_user_token"]').addClass('inputError');
1350
+ return false;
1351
+ }
1352
+ }
1353
+ if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'manual') {
1354
+ if (!sfsi_validator(SFSI('input[name="sfsi_linkedIn_manualCounts"]'), 'blank')) {
1355
+ showErrorSuc("error", "Error : Please Enter LinkedIn manual counts ", 4);
1356
+ SFSI('input[name="sfsi_linkedIn_manualCounts"]').addClass('inputError');
1357
+ return false;
1358
+ }
1359
+ }
1360
+ }
1361
+ /* validate youtube */
1362
+ if (sfsi_validator(SFSI('input[name="sfsi_youtube_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_countsDisplay"]'), 'checked')) {
1363
+ if (SFSI('input[name="sfsi_youtube_countsFrom"]:checked').val() == 'subscriber') {
1364
+ if (
1365
+ !sfsi_validator(SFSI('input[name="sfsi_youtube_user"]'), 'blank') &&
1366
+ !sfsi_validator(SFSI('input[name="sfsi_youtube_channelId"]'), 'blank')
1367
+ ) {
1368
+ showErrorSuc("error", "Error : Please Enter a youtube user name or channel id", 4);
1369
+ SFSI('input[name="sfsi_youtube_user"]').addClass('inputError');
1370
+ SFSI('input[name="sfsi_youtube_channelId"]').addClass('inputError');
1371
+ return false;
1372
+ }
1373
+ }
1374
+ if (SFSI('input[name="sfsi_youtube_countsFrom"]:checked').val() == 'manual') {
1375
+ if (!sfsi_validator(SFSI('input[name="sfsi_youtube_manualCounts"]'), 'blank')) {
1376
+ showErrorSuc("error", "Error : Please Enter youtube manual counts ", 4);
1377
+ SFSI('input[name="sfsi_youtube_manualCounts"]').addClass('inputError');
1378
+ return false;
1379
+ }
1380
+ }
1381
+ }
1382
+ /* validate pinterest */
1383
+ if (sfsi_validator(SFSI('input[name="sfsi_pinterest_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_pinterest_countsDisplay"]'), 'checked')) {
1384
+ if (SFSI('input[name="sfsi_pinterest_countsFrom"]:checked').val() == 'manual') {
1385
+ if (!sfsi_validator(SFSI('input[name="sfsi_pinterest_manualCounts"]'), 'blank')) {
1386
+ showErrorSuc("error", "Error : Please Enter Pinterest manual counts ", 4);
1387
+ SFSI('input[name="sfsi_pinterest_manualCounts"]').addClass('inputError');
1388
+ return false;
1389
+ }
1390
+ }
1391
+ }
1392
+ /* validate instagram */
1393
+ if (sfsi_validator(SFSI('input[name="sfsi_instagram_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_instagram_countsDisplay"]'), 'checked')) {
1394
+ if (SFSI('input[name="sfsi_instagram_countsFrom"]:checked').val() == 'manual') {
1395
+ if (!sfsi_validator(SFSI('input[name="sfsi_instagram_manualCounts"]'), 'blank')) {
1396
+ showErrorSuc("error", "Error : Please Enter Instagram manual counts ", 4);
1397
+ SFSI('input[name="sfsi_instagram_manualCounts"]').addClass('inputError');
1398
+ return false;
1399
+ }
1400
+ }
1401
+ if (SFSI('input[name="sfsi_instagram_countsFrom"]:checked').val() == 'followers') {
1402
+ if (!sfsi_validator(SFSI('input[name="sfsi_instagram_User"]'), 'blank')) {
1403
+ showErrorSuc("error", "Error : Please Enter a instagram user name", 4);
1404
+ SFSI('input[name="sfsi_instagram_User"]').addClass('inputError');
1405
+ return false;
1406
+ }
1407
+ }
1408
+ }
1409
+ return true;
1410
+ }
1411
+
1412
+ function sfsi_validationStep5() {
1413
+ //var class_name= SFSI(element).hasAttr('sfsi_validate');
1414
+ /* validate size */
1415
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_size"]'), 'int')) {
1416
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1417
+ SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1418
+ return false;
1419
+ }
1420
+ if (parseInt(SFSI('input[name="sfsi_icons_size"]').val()) > 100) {
1421
+ showErrorSuc("error", "Error : Icons Size allow 100px maximum ", 5);
1422
+ SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1423
+ return false;
1424
+ }
1425
+ if (parseInt(SFSI('input[name="sfsi_icons_size"]').val()) <= 0) {
1426
+ showErrorSuc("error", "Error : Icons Size should be more than 0 ", 5);
1427
+ SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1428
+ return false;
1429
+ }
1430
+ /* validate spacing */
1431
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_spacing"]'), 'int')) {
1432
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1433
+ SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1434
+ return false;
1435
+ }
1436
+ if (parseInt(SFSI('input[name="sfsi_icons_spacing"]').val()) < 0) {
1437
+ showErrorSuc("error", "Error : Icons Spacing should be 0 or more", 5);
1438
+ SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1439
+ return false;
1440
+ }
1441
+ /* icons per row spacing */
1442
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_perRow"]'), 'int')) {
1443
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1444
+ SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1445
+ return false;
1446
+ }
1447
+ if (parseInt(SFSI('input[name="sfsi_icons_perRow"]').val()) <= 0) {
1448
+ showErrorSuc("error", "Error : Icons Per row should be more than 0", 5);
1449
+ SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1450
+ return false;
1451
+ }
1452
+ /* validate icons effects */
1453
+ // if(SFSI('input[name="sfsi_icons_float"]:checked').val()=="yes" && SFSI('input[name="sfsi_icons_stick"]:checked').val()=="yes")
1454
+ // {
1455
+ // showErrorSuc("error","Error : Only one allow from Sticking & floating ",5);
1456
+ // SFSI('input[name="sfsi_icons_float"][value="no"]').prop("checked", true);
1457
+ // return false;
1458
+ // }
1459
+ return true;
1460
+ }
1461
+
1462
+ function sfsi_validationStep7() {
1463
+ //var class_name= SFSI(element).hasAttr('sfsi_validate');
1464
+ /* validate border thikness */
1465
+ if (!sfsi_validator(SFSI('input[name="sfsi_popup_border_thickness"]'), 'int')) {
1466
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1467
+ SFSI('input[name="sfsi_popup_border_thickness"]').addClass('inputError');
1468
+ return false;
1469
+ }
1470
+ /* validate fotn size */
1471
+ if (!sfsi_validator(SFSI('input[name="sfsi_popup_fontSize"]'), 'int')) {
1472
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1473
+ SFSI('input[name="sfsi_popup_fontSize"]').addClass('inputError');
1474
+ return false;
1475
+ }
1476
+ /* validate pop up shown */
1477
+ if (SFSI('input[name="sfsi_Shown_pop"]:checked').val() == 'once') {
1478
+
1479
+ if (!sfsi_validator(SFSI('input[name="sfsi_Shown_popupOnceTime"]'), 'blank') && !sfsi_validator(SFSI('input[name="sfsi_Shown_popupOnceTime"]'), 'url')) {
1480
+ showErrorSuc("error", "Error : Please Enter a valid pop up shown time ", 7);
1481
+ SFSI('input[name="sfsi_Shown_popupOnceTime"]').addClass('inputError');
1482
+ return false;
1483
+ }
1484
+ }
1485
+ /* validate page ids */
1486
+ if (SFSI('input[name="sfsi_Show_popupOn"]:checked').val() == 'selectedpage') {
1487
+ if (!sfsi_validator(SFSI('input[name="sfsi_Show_popupOn"]'), 'blank')) {
1488
+ showErrorSuc("error", "Error : Please Enter page ids with comma ", 7);
1489
+ SFSI('input[name="sfsi_Show_popupOn"]').addClass('inputError');
1490
+ return false;
1491
+ }
1492
+ }
1493
+ /* validate spacing */
1494
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_spacing"]'), 'int')) {
1495
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1496
+ SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1497
+ return false;
1498
+ }
1499
+ /* icons per row spacing */
1500
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_perRow"]'), 'int')) {
1501
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1502
+ SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1503
+ return false;
1504
+ }
1505
+ return true;
1506
+ }
1507
+
1508
+ function sfsi_validator(element, valType) {
1509
+ var Vurl = new RegExp("^(http|https|ftp)\://([a-zA-Z0-9\.\-]+(\:[a-zA-Z0-9\.&amp;%\$\-]+)*@)*((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])|([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9\-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\@\?\'\\\+&amp;%\$#\=~_\-]+))*$");
1510
+ //var Vurl = /http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/;
1511
+
1512
+ switch (valType) {
1513
+ case "blank":
1514
+ if (!element.val().trim()) return false;
1515
+ else return true;
1516
+ break;
1517
+ case "url":
1518
+ if (!Vurl.test(element.val().trim())) return false;
1519
+ else return true;
1520
+ break;
1521
+ case "checked":
1522
+ if (!element.attr('checked') === true) return false;
1523
+ else return true;
1524
+ break;
1525
+ case "activte":
1526
+ if (!element.attr('disabled')) return true;
1527
+ else return false;
1528
+ break;
1529
+ case "int":
1530
+ if (!isNaN(element.val())) return true;
1531
+ else return false;
1532
+ break;
1533
+
1534
+ }
1535
+ }
1536
+
1537
+ function afterIconSuccess(s, nonce) {
1538
+ if (s.res = "success") {
1539
+ var i = s.key + 1,
1540
+ e = s.element,
1541
+ t = e + 1;
1542
+ SFSI("#total_cusotm_icons").val(s.element);
1543
+ SFSI(".upload-overlay").hide("slow");
1544
+ SFSI(".uperror").html("");
1545
+ showErrorSuc("success", "Custom Icon updated successfully", 1);
1546
+ d = new Date();
1547
+
1548
+ var ele = SFSI(".notice_custom_icons_premium");
1549
+
1550
+ SFSI("li.custom:last-child").removeClass("bdr_btm_non");
1551
+ SFSI("li.custom:last-child").children("span.custom-img").children("img").attr("src", s.img_path + "?" + d.getTime());
1552
+ SFSI("input[name=sfsiICON_" + s.key + "]").removeAttr("ele-type");
1553
+ SFSI("input[name=sfsiICON_" + s.key + "]").removeAttr("isnew");
1554
+ icons_name = SFSI("li.custom:last-child").find("input.styled").attr("name");
1555
+ var n = icons_name.split("_");
1556
+ s.key = s.key, s.img_path += "?" + d.getTime(), 5 > e && SFSI(".icn_listing").append('<li id="c' + i + '" class="custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style=" 0px 0px;"></span><input name="sfsiICON_' + i + '" type="checkbox" value="yes" class="styled" style="display:none;" element-type="cusotm-icon" isNew="yes" /></div> <span class="custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="CImg_' + i + '" alt="error" /> </span> <span class="custom custom-txt">Custom' + t + ' </span> <div class="right_info"> <p><span>It depends:</span> Upload a custom icon if you have other accounts/websites you want to link to.</p><div class="inputWrapper"></div></li>'),
1557
+ SFSI(".custom_section").show(),
1558
+ SFSI('<div class="row sfsiICON_' + s.key + ' cm_lnk"> <h2 class="custom"> <span class="customstep2-img"> <img src="' + s.img_path + "?" + d.getTime() + '" style="border-radius:48%" alt="error" /> </span> <span class="sfsiCtxt">Custom ' + e + '</span> </h2> <div class="inr_cont "><p>Where do you want this icon to link to?</p> <p class="radio_section fb_url custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>').insertBefore('.notice_custom_icons_premium');
1559
+ //SFSI(".custom-links").append(' <div class="row sfsiICON_' + s.key + ' cm_lnk"> <h2 class="custom"> <span class="customstep2-img"> <img src="' + s.img_path + "?" + d.getTime() + '" style="border-radius:48%" /> </span> <span class="sfsiCtxt">Custom ' + e + '</span> </h2> <div class="inr_cont "><p>Where do you want this icon to link to?</p> <p class="radio_section fb_url custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>');
1560
+ SFSI(".notice_custom_icons_premium").show();
1561
+ SFSI("#c" + s.key).append('<input type="hidden" name="nonce" value="' + nonce + '">');
1562
+ var o = SFSI("div.custom_m").find("div.mouseover_field").length;
1563
+ SFSI("div.custom_m").append(0 == o % 2 ? '<div class="clear"> </div> <div class="mouseover_field custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>' : '<div class="cHover " ><div class="mouseover_field custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>'),
1564
+ SFSI("ul.share_icon_order").append('<li class="custom_iconOrder sfsiICON_' + s.key + '" data-index="" element-id="' + s.key + '" id=""><a href="#" title="Custom Icon" ><img src="' + s.img_path + '" alt="Linked In" class="sfcm"/></a></li>'),
1565
+ SFSI("ul.sfsi_sample_icons").append('<li class="sfsiICON_' + s.key + '" element-id="' + s.key + '" ><div><img src="' + s.img_path + '" alt="Linked In" class="sfcm"/><span class="sfsi_Cdisplay">12k</span></div></li>'),
1566
+ sfsi_update_index(), update_Sec5Iconorder(), sfsi_update_step1(), sfsi_update_step2(),
1567
+ sfsi_update_step5(), SFSI(".upload-overlay").css("pointer-events", "auto"), sfsi_showPreviewCounts(),
1568
+ afterLoad();
1569
+ }
1570
+ }
1571
+
1572
+ function beforeIconSubmit(s) {
1573
+ if (SFSI(".uperror").html("Uploading....."), window.File && window.FileReader && window.FileList && window.Blob) {
1574
+ SFSI(s).val() || SFSI(".uperror").html("File is empty");
1575
+ var i = s.files[0].size,
1576
+ e = s.files[0].type;
1577
+ switch (e) {
1578
+ case "image/png":
1579
+ case "image/gif":
1580
+ case "image/jpeg":
1581
+ case "image/pjpeg":
1582
+ break;
1583
+
1584
+ default:
1585
+ return SFSI(".uperror").html("Unsupported file"), !1;
1586
+ }
1587
+ return i > 1048576 ? (SFSI(".uperror").html("Image should be less than 1 MB"), !1) : !0;
1588
+ }
1589
+ return !0;
1590
+ }
1591
+
1592
+ function bytesToSize(s) {
1593
+ var i = ["Bytes", "KB", "MB", "GB", "TB"];
1594
+ if (0 == s) return "0 Bytes";
1595
+ var e = parseInt(Math.floor(Math.log(s) / Math.log(1024)));
1596
+ return Math.round(s / Math.pow(1024, e), 2) + " " + i[e];
1597
+ }
1598
+
1599
+ function showErrorSuc(s, i, e) {
1600
+ if ("error" == s) var t = "errorMsg";
1601
+ else var t = "sucMsg";
1602
+ return SFSI(".tab" + e + ">." + t).html(i), SFSI(".tab" + e + ">." + t).show(),
1603
+ SFSI(".tab" + e + ">." + t).effect("highlight", {}, 5e3), setTimeout(function () {
1604
+ SFSI("." + t).slideUp("slow");
1605
+ }, 5e3), !1;
1606
+ }
1607
+
1608
+ function beForeLoad() {
1609
+ SFSI(".loader-img").show(), SFSI(".save_button >a").html("Saving..."), SFSI(".save_button >a").css("pointer-events", "none");
1610
+ }
1611
+
1612
+ function afterLoad() {
1613
+ SFSI("input").removeClass("inputError"), SFSI(".save_button >a").html("Save"), SFSI(".tab10>div.save_button >a").html("Save All Settings"),
1614
+ SFSI(".save_button >a").css("pointer-events", "auto"), SFSI(".save_button >a").removeAttr("onclick"),
1615
+ SFSI(".loader-img").hide();
1616
+ }
1617
+
1618
+ function sfsi_make_popBox() {
1619
+ var s = 0;
1620
+ SFSI(".sfsi_sample_icons >li").each(function () {
1621
+ "none" != SFSI(this).css("display") && (s = 1);
1622
+ }),
1623
+ 0 == s ? SFSI(".sfsi_Popinner").hide() : SFSI(".sfsi_Popinner").show(),
1624
+ "" != SFSI('input[name="sfsi_popup_text"]').val() ? (SFSI(".sfsi_Popinner >h2").html(SFSI('input[name="sfsi_popup_text"]').val()),
1625
+ SFSI(".sfsi_Popinner >h2").show()) : SFSI(".sfsi_Popinner >h2").hide(), SFSI(".sfsi_Popinner").css({
1626
+ "border-color": SFSI('input[name="sfsi_popup_border_color"]').val(),
1627
+ "border-width": SFSI('input[name="sfsi_popup_border_thickness"]').val(),
1628
+ "border-style": "solid"
1629
+ }),
1630
+ SFSI(".sfsi_Popinner").css("background-color", SFSI('input[name="sfsi_popup_background_color"]').val()),
1631
+ SFSI(".sfsi_Popinner h2").css("font-family", SFSI("#sfsi_popup_font").val()), SFSI(".sfsi_Popinner h2").css("font-style", SFSI("#sfsi_popup_fontStyle").val()),
1632
+ SFSI(".sfsi_Popinner >h2").css("font-size", parseInt(SFSI('input[name="sfsi_popup_fontSize"]').val())),
1633
+ SFSI(".sfsi_Popinner >h2").css("color", SFSI('input[name="sfsi_popup_fontColor"]').val() + " !important"),
1634
+ "yes" == SFSI('input[name="sfsi_popup_border_shadow"]:checked').val() ? SFSI(".sfsi_Popinner").css("box-shadow", "12px 30px 18px #CCCCCC") : SFSI(".sfsi_Popinner").css("box-shadow", "none");
1635
+ }
1636
+
1637
+ function sfsi_stick_widget(s) {
1638
+ 0 == initTop.length && (SFSI(".sfsi_widget").each(function (s) {
1639
+ initTop[s] = SFSI(this).position().top;
1640
+ })
1641
+ // console.log(initTop)
1642
+ );
1643
+ var i = SFSI(window).scrollTop(),
1644
+ e = [],
1645
+ t = [];
1646
+ SFSI(".sfsi_widget").each(function (s) {
1647
+ e[s] = SFSI(this).position().top, t[s] = SFSI(this);
1648
+ });
1649
+ var n = !1;
1650
+ for (var o in e) {
1651
+ var a = parseInt(o) + 1;
1652
+ e[o] < i && e[a] > i && a < e.length ? (SFSI(t[o]).css({
1653
+ position: "fixed",
1654
+ top: s
1655
+ }), SFSI(t[a]).css({
1656
+ position: "",
1657
+ top: initTop[a]
1658
+ }), n = !0) : SFSI(t[o]).css({
1659
+ position: "",
1660
+ top: initTop[o]
1661
+ });
1662
+ }
1663
+ if (!n) {
1664
+ var r = e.length - 1,
1665
+ c = -1;
1666
+ e.length > 1 && (c = e.length - 2), initTop[r] < i ? (SFSI(t[r]).css({
1667
+ position: "fixed",
1668
+ top: s
1669
+ }), c >= 0 && SFSI(t[c]).css({
1670
+ position: "",
1671
+ top: initTop[c]
1672
+ })) : (SFSI(t[r]).css({
1673
+ position: "",
1674
+ top: initTop[r]
1675
+ }), c >= 0 && e[c] < i);
1676
+ }
1677
+ }
1678
+
1679
+ function sfsi_setCookie(s, i, e) {
1680
+ var t = new Date();
1681
+ t.setTime(t.getTime() + 1e3 * 60 * 60 * 24 * e);
1682
+ var n = "expires=" + t.toGMTString();
1683
+ document.cookie = s + "=" + i + "; " + n;
1684
+ }
1685
+
1686
+ function sfsfi_getCookie(s) {
1687
+ for (var i = s + "=", e = document.cookie.split(";"), t = 0; t < e.length; t++) {
1688
+ var n = e[t].trim();
1689
+ if (0 == n.indexOf(i)) return n.substring(i.length, n.length);
1690
+ }
1691
+ return "";
1692
+ }
1693
+
1694
+ function sfsi_hideFooter() {}
1695
+
1696
+ window.onerror = function () {},
1697
+ SFSI = jQuery,
1698
+ SFSI(window).on('load', function () {
1699
+ SFSI("#sfpageLoad").fadeOut(2e3);
1700
+ });
1701
+
1702
+ //changes done {Monad}
1703
+ function selectText(containerid) {
1704
+ if (document.selection) {
1705
+ var range = document.body.createTextRange();
1706
+ range.moveToElementText(document.getElementById(containerid));
1707
+ range.select();
1708
+ } else if (window.getSelection()) {
1709
+ var range = document.createRange();
1710
+ range.selectNode(document.getElementById(containerid));
1711
+ window.getSelection().removeAllRanges();
1712
+ window.getSelection().addRange(range);
1713
+ }
1714
+ }
1715
+
1716
+ function create_suscriber_form() {
1717
+ //Popbox customization
1718
+ "no" == SFSI('input[name="sfsi_form_adjustment"]:checked').val() ? SFSI(".sfsi_subscribe_Popinner").css({
1719
+ "width": parseInt(SFSI('input[name="sfsi_form_width"]').val()),
1720
+ "height": parseInt(SFSI('input[name="sfsi_form_height"]').val())
1721
+ }) : SFSI(".sfsi_subscribe_Popinner").css({
1722
+ "width": '',
1723
+ "height": ''
1724
+ });
1725
+
1726
+ "yes" == SFSI('input[name="sfsi_form_adjustment"]:checked').val() ? SFSI(".sfsi_html > .sfsi_subscribe_Popinner").css({
1727
+ "width": "100%"
1728
+ }) : '';
1729
+
1730
+ "yes" == SFSI('input[name="sfsi_form_border"]:checked').val() ? SFSI(".sfsi_subscribe_Popinner").css({
1731
+ "border": SFSI('input[name="sfsi_form_border_thickness"]').val() + "px solid " + SFSI('input[name="sfsi_form_border_color"]').val()
1732
+ }) : SFSI(".sfsi_subscribe_Popinner").css("border", "none");
1733
+
1734
+ SFSI('input[name="sfsi_form_background"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").css("background-color", SFSI('input[name="sfsi_form_background"]').val())) : '';
1735
+
1736
+ //Heading customization
1737
+ SFSI('input[name="sfsi_form_heading_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").html(SFSI('input[name="sfsi_form_heading_text"]').val())) : SFSI(".sfsi_subscribe_Popinner > form > h5").html('');
1738
+
1739
+ SFSI('#sfsi_form_heading_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-family", SFSI("#sfsi_form_heading_font").val())) : '';
1740
+
1741
+ if (SFSI('#sfsi_form_heading_fontstyle').val() != 'bold') {
1742
+ SFSI('#sfsi_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-style", SFSI("#sfsi_form_heading_fontstyle").val())) : '';
1743
+ SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-weight", '');
1744
+ } else {
1745
+ SFSI('#sfsi_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-weight", "bold")) : '';
1746
+ SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-style", '');
1747
+ }
1748
+
1749
+ SFSI('input[name="sfsi_form_heading_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("color", SFSI('input[name="sfsi_form_heading_fontcolor"]').val())) : '';
1750
+
1751
+ SFSI('input[name="sfsi_form_heading_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css({
1752
+ "font-size": parseInt(SFSI('input[name="sfsi_form_heading_fontsize"]').val())
1753
+ })) : '';
1754
+
1755
+ SFSI('#sfsi_form_heading_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("text-align", SFSI("#sfsi_form_heading_fontalign").val())) : '';
1756
+
1757
+ //Field customization
1758
+ SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", '');
1759
+
1760
+ SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".sfsi_left_container > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".sfsi_left_container > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1761
+
1762
+ SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".like_pop_box > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".like_pop_box > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1763
+
1764
+ SFSI('#sfsi_form_field_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-family", SFSI("#sfsi_form_field_font").val())) : '';
1765
+
1766
+ if (SFSI('#sfsi_form_field_fontstyle').val() != "bold") {
1767
+ SFSI('#sfsi_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", SFSI("#sfsi_form_field_fontstyle").val())) : '';
1768
+ SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", '');
1769
+ } else {
1770
+ SFSI('#sfsi_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", 'bold')) : '';
1771
+ SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", '');
1772
+ }
1773
+
1774
+ SFSI('input[name="sfsi_form_field_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("color", SFSI('input[name="sfsi_form_field_fontcolor"]').val())) : '';
1775
+
1776
+ SFSI('input[name="sfsi_form_field_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css({
1777
+ "font-size": parseInt(SFSI('input[name="sfsi_form_field_fontsize"]').val())
1778
+ })) : '';
1779
+
1780
+ SFSI('#sfsi_form_field_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("text-align", SFSI("#sfsi_form_field_fontalign").val())) : '';
1781
+
1782
+ //Button customization
1783
+ SFSI('input[name="sfsi_form_button_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').attr("value", SFSI('input[name="sfsi_form_button_text"]').val())) : '';
1784
+
1785
+ SFSI('#sfsi_form_button_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-family", SFSI("#sfsi_form_button_font").val())) : '';
1786
+
1787
+ if (SFSI('#sfsi_form_button_fontstyle').val() != "bold") {
1788
+ SFSI('#sfsi_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", SFSI("#sfsi_form_button_fontstyle").val())) : '';
1789
+ SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", '');
1790
+ } else {
1791
+ SFSI('#sfsi_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", 'bold')) : '';
1792
+ SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", '');
1793
+ }
1794
+
1795
+ SFSI('input[name="sfsi_form_button_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("color", SFSI('input[name="sfsi_form_button_fontcolor"]').val())) : '';
1796
+
1797
+ SFSI('input[name="sfsi_form_button_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css({
1798
+ "font-size": parseInt(SFSI('input[name="sfsi_form_button_fontsize"]').val())
1799
+ })) : '';
1800
+
1801
+ SFSI('#sfsi_form_button_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("text-align", SFSI("#sfsi_form_button_fontalign").val())) : '';
1802
+
1803
+ SFSI('input[name="sfsi_form_button_background"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("background-color", SFSI('input[name="sfsi_form_button_background"]').val())) : '';
1804
+
1805
+ var innerHTML = SFSI(".sfsi_html > .sfsi_subscribe_Popinner").html();
1806
+ var styleCss = SFSI(".sfsi_html > .sfsi_subscribe_Popinner").attr("style");
1807
+ innerHTML = '<div style="' + styleCss + '">' + innerHTML + '</div>';
1808
+ SFSI(".sfsi_subscription_html > xmp").html(innerHTML);
1809
+
1810
+ /*var data = {
1811
+ action:"getForm",
1812
+ heading: SFSI('input[name="sfsi_form_heading_text"]').val(),
1813
+ placeholder:SFSI('input[name="sfsi_form_field_text"]').val(),
1814
+ button:SFSI('input[name="sfsi_form_button_text"]').val()
1815
+ };
1816
+ SFSI.ajax({
1817
+ url:sfsi_icon_ajax_object.ajax_url,
1818
+ type:"post",
1819
+ data:data,
1820
+ success:function(s) {
1821
+ SFSI(".sfsi_subscription_html").html(s);
1822
+ }
1823
+ });*/
1824
+ }
1825
+
1826
+ var global_error = 0;
1827
+ if (typeof SFSI != 'undefined') {
1828
+
1829
+ function sfsi_dismiss_notice(btnClass, ajaxAction) {
1830
+
1831
+ var btnClass = "." + btnClass;
1832
+
1833
+ SFSI(document).on("click", btnClass, function () {
1834
+
1835
+ SFSI.ajax({
1836
+ url: sfsi_icon_ajax_object.ajax_url,
1837
+ type: "post",
1838
+ data: {
1839
+ action: ajaxAction
1840
+ },
1841
+ success: function (e) {
1842
+ if (false != e) {
1843
+ SFSI(btnClass).parent().remove();
1844
+ }
1845
+ }
1846
+ });
1847
+ });
1848
+ }
1849
+ }
1850
+
1851
+ SFSI(document).ready(function (s) {
1852
+ function sfsi_open_admin_section(id){
1853
+ SFSI("#ui-id-"+(id+1)).show();
1854
+ SFSI("#ui-id-"+id).removeClass("ui-corner-all");
1855
+ SFSI("#ui-id-"+id).addClass("ui-corner-top");
1856
+ SFSI("#ui-id-"+id).addClass("accordion-header-active");
1857
+ SFSI("#ui-id-"+id).addClass("ui-state-active");
1858
+ SFSI("#ui-id-"+id).attr("aria-expanded","false");
1859
+ SFSI("#ui-id-"+id).attr("aria-selected","true");
1860
+ if(SFSI("#ui-id-"+(id+1)).length>0){
1861
+ SFSI("#ui-id-"+(id+1))[0].scrollIntoView(false);
1862
+ }
1863
+ }
1864
+ var arrDismiss = [
1865
+
1866
+ {
1867
+ "btnClass": "sfsi-notice-dismiss",
1868
+ "action": "sfsi_dismiss_lang_notice"
1869
+ },
1870
+
1871
+ {
1872
+ "btnClass": "sfsi-AddThis-notice-dismiss",
1873
+ "action": "sfsi_dismiss_addThis_icon_notice"
1874
+ },
1875
+
1876
+ {
1877
+ "btnClass": "sfsi_error_reporting_notice-dismiss",
1878
+ "action": "sfsi_dismiss_error_reporting_notice"
1879
+ }
1880
+ ];
1881
+
1882
+ SFSI.each(arrDismiss, function (key, valueObj) {
1883
+ sfsi_dismiss_notice(valueObj.btnClass, valueObj.action);
1884
+ });
1885
+
1886
+ var sfsi_show_option1 = SFSI('input[name="sfsi_show_via_widget"]:checked').val()||'no';
1887
+ var sfsi_show_option2 = SFSI('input[name="sfsi_icons_float"]:checked').val()||'no';
1888
+ var sfsi_show_option3 = SFSI('input[name="sfsi_show_via_shortcode"]:checked').val()||'no';
1889
+ var sfsi_show_option4 = SFSI('input[name="sfsi_show_via_afterposts"]:checked').val()||'no';
1890
+ var sfsi_analyst_popup = SFSI('#sfsi_analyst_pop').attr('data-status');
1891
+ // console.log(sfsi_show_option1);
1892
+ // console.log(sfsi_show_option2);
1893
+ // console.log(sfsi_show_option3);
1894
+ // console.log(sfsi_show_option4);
1895
+ if(sfsi_analyst_popup =="no"){
1896
+ if(sfsi_show_option1=="no" && sfsi_show_option2=='no' && sfsi_show_option3 =='no' && sfsi_show_option4 == 'no'){
1897
+ // console.log('should open');
1898
+ sfsi_open_admin_section(5);
1899
+ // console.log("check if exists",SFSI("#ui-id-5"), SFSI("#ui-id-5").length , SFSI("#ui-id-5").attr('aria-selected')=="false");
1900
+ if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1901
+ // console.log("'didnt'open in t0");
1902
+ setTimeout(function(){
1903
+ sfsi_open_admin_section(5);
1904
+ if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1905
+ // console.log("'didnt'open in t2");
1906
+
1907
+ setTimeout(function(){
1908
+ sfsi_open_admin_section(5);
1909
+
1910
+ if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1911
+ // console.log("'didnt'open in t4");
1912
+
1913
+ setTimeout(function(){
1914
+ sfsi_open_admin_section(5);
1915
+ if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1916
+ // console.log("'didnt'open in t6");
1917
+
1918
+ setTimeout(function(){
1919
+ sfsi_open_admin_section(5);
1920
+
1921
+ },2000);
1922
+ }
1923
+ },2000);
1924
+ }
1925
+ },2000);
1926
+ }
1927
+ // SFSI('#ui-id-5').click();
1928
+ },2000);
1929
+ }
1930
+ }
1931
+ }else{
1932
+ SFSI("#analyst-install-skip, #analyst-install-action").click(function(){
1933
+ sfsi_open_admin_section(5);
1934
+ if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1935
+ setTimeout(function(){
1936
+ sfsi_open_admin_section(5);
1937
+ if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1938
+ setTimeout(function(){
1939
+ sfsi_open_admin_section(5);
1940
+
1941
+ if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1942
+ setTimeout(function(){
1943
+ sfsi_open_admin_section(5);
1944
+ },2000);
1945
+ }
1946
+ },2000);
1947
+ }
1948
+ // SFSI('#ui-id-5').click();
1949
+ },2000);
1950
+ }
1951
+ })
1952
+ }
1953
+
1954
+ //changes done {Monad}
1955
+ SFSI(".tab_3_icns").on("click", ".cstomskins_upload", function () {
1956
+ SFSI(".cstmskins-overlay").show("slow", function () {
1957
+ e = 0;
1958
+ });
1959
+ });
1960
+ /*SFSI("#custmskin_clspop").live("click", function() {*/
1961
+ SFSI(document).on("click", '#custmskin_clspop', function () {
1962
+ SFSI_done();
1963
+ SFSI(".cstmskins-overlay").hide("slow");
1964
+ });
1965
+
1966
+ create_suscriber_form();
1967
+ SFSI('input[name="sfsi_form_heading_text"], input[name="sfsi_form_border_thickness"], input[name="sfsi_form_height"], input[name="sfsi_form_width"], input[name="sfsi_form_heading_fontsize"], input[name="sfsi_form_field_text"], input[name="sfsi_form_field_fontsize"], input[name="sfsi_form_button_text"], input[name="sfsi_form_button_fontsize"]').on("keyup", create_suscriber_form);
1968
+
1969
+ SFSI('input[name="sfsi_form_border_color"], input[name="sfsi_form_background"] ,input[name="sfsi_form_heading_fontcolor"], input[name="sfsi_form_field_fontcolor"] ,input[name="sfsi_form_button_fontcolor"],input[name="sfsi_form_button_background"]').on("focus", create_suscriber_form);
1970
+
1971
+ SFSI("#sfsi_form_heading_font, #sfsi_form_heading_fontstyle, #sfsi_form_heading_fontalign, #sfsi_form_field_font, #sfsi_form_field_fontstyle, #sfsi_form_field_fontalign, #sfsi_form_button_font, #sfsi_form_button_fontstyle, #sfsi_form_button_fontalign").on("change", create_suscriber_form);
1972
+
1973
+ /*SFSI(".radio").live("click", function() {*/
1974
+ SFSI(document).on("click", '.radio', function () {
1975
+
1976
+ var s = SFSI(this).parent().find("input:radio:first");
1977
+ var inputName = s.attr("name");
1978
+ // console.log(inputName);
1979
+
1980
+ var inputChecked = s.attr("checked");
1981
+
1982
+ switch (inputName) {
1983
+ case 'sfsi_form_adjustment':
1984
+ if (s.val() == 'no')
1985
+ s.parents(".row_tab").next(".row_tab").show("fast");
1986
+ else
1987
+ s.parents(".row_tab").next(".row_tab").hide("fast");
1988
+ create_suscriber_form()
1989
+ break;
1990
+ case 'sfsi_form_border':
1991
+ if (s.val() == 'yes')
1992
+ s.parents(".row_tab").next(".row_tab").show("fast");
1993
+ else
1994
+ s.parents(".row_tab").next(".row_tab").hide("fast");
1995
+ create_suscriber_form()
1996
+ break;
1997
+ case 'sfsi_icons_suppress_errors':
1998
+
1999
+ SFSI('input[name="sfsi_icons_suppress_errors"]').removeAttr('checked');
2000
+
2001
+ if (s.val() == 'yes')
2002
+ SFSI('input[name="sfsi_icons_suppress_errors"][value="yes"]').attr('checked', 'true');
2003
+ else
2004
+ SFSI('input[name="sfsi_icons_suppress_errors"][value="no"]').attr('checked', 'true');
2005
+ break;
2006
+ case 'sfsi_responsive_icons_end_post':
2007
+ if("yes" == s.val()){
2008
+ jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').show();
2009
+ }else{
2010
+ jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').hide();
2011
+ }
2012
+ }
2013
+ });
2014
+
2015
+ SFSI('#sfsi_form_border_color').wpColorPicker({
2016
+ defaultColor: false,
2017
+ change: function (event, ui) {
2018
+ create_suscriber_form()
2019
+ },
2020
+ clear: function () {
2021
+ create_suscriber_form()
2022
+ },
2023
+ hide: true,
2024
+ palettes: true
2025
+ }),
2026
+ SFSI('#sfsi_form_background').wpColorPicker({
2027
+ defaultColor: false,
2028
+ change: function (event, ui) {
2029
+ create_suscriber_form()
2030
+ },
2031
+ clear: function () {
2032
+ create_suscriber_form()
2033
+ },
2034
+ hide: true,
2035
+ palettes: true
2036
+ }),
2037
+ SFSI('#sfsi_form_heading_fontcolor').wpColorPicker({
2038
+ defaultColor: false,
2039
+ change: function (event, ui) {
2040
+ create_suscriber_form()
2041
+ },
2042
+ clear: function () {
2043
+ create_suscriber_form()
2044
+ },
2045
+ hide: true,
2046
+ palettes: true
2047
+ }),
2048
+ SFSI('#sfsi_form_button_fontcolor').wpColorPicker({
2049
+ defaultColor: false,
2050
+ change: function (event, ui) {
2051
+ create_suscriber_form()
2052
+ },
2053
+ clear: function () {
2054
+ create_suscriber_form()
2055
+ },
2056
+ hide: true,
2057
+ palettes: true
2058
+ }),
2059
+ SFSI('#sfsi_form_button_background').wpColorPicker({
2060
+ defaultColor: false,
2061
+ change: function (event, ui) {
2062
+ create_suscriber_form()
2063
+ },
2064
+ clear: function () {
2065
+ create_suscriber_form()
2066
+ },
2067
+ hide: true,
2068
+ palettes: true
2069
+ });
2070
+ //changes done {Monad}
2071
+
2072
+ function i() {
2073
+ SFSI(".uperror").html(""), afterLoad();
2074
+ var s = SFSI('input[name="' + SFSI("#upload_id").val() + '"]');
2075
+ s.removeAttr("checked");
2076
+ var i = SFSI(s).parent().find("span:first");
2077
+ return SFSI(i).css("background-position", "0px 0px"), SFSI(".upload-overlay").hide("slow"),
2078
+ !1;
2079
+ }
2080
+ SFSI("#accordion").accordion({
2081
+ collapsible: !0,
2082
+ active: !1,
2083
+ heightStyle: "content",
2084
+ event: "click",
2085
+ beforeActivate: function (s, i) {
2086
+ if (i.newHeader[0]) var e = i.newHeader,
2087
+ t = e.next(".ui-accordion-content");
2088
+ else var e = i.oldHeader,
2089
+ t = e.next(".ui-accordion-content");
2090
+ var n = "true" == e.attr("aria-selected");
2091
+ return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2092
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2093
+ t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2094
+ }
2095
+ }),
2096
+ SFSI("#accordion1").accordion({
2097
+ collapsible: !0,
2098
+ active: !1,
2099
+ heightStyle: "content",
2100
+ event: "click",
2101
+ beforeActivate: function (s, i) {
2102
+ if (i.newHeader[0]) var e = i.newHeader,
2103
+ t = e.next(".ui-accordion-content");
2104
+ else var e = i.oldHeader,
2105
+ t = e.next(".ui-accordion-content");
2106
+ var n = "true" == e.attr("aria-selected");
2107
+ return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2108
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2109
+ t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2110
+ }
2111
+ }),
2112
+
2113
+ SFSI("#accordion2").accordion({
2114
+ collapsible: !0,
2115
+ active: !1,
2116
+ heightStyle: "content",
2117
+ event: "click",
2118
+ beforeActivate: function (s, i) {
2119
+ if (i.newHeader[0]) var e = i.newHeader,
2120
+ t = e.next(".ui-accordion-content");
2121
+ else var e = i.oldHeader,
2122
+ t = e.next(".ui-accordion-content");
2123
+ var n = "true" == e.attr("aria-selected");
2124
+ return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2125
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2126
+ t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2127
+ }
2128
+ }),
2129
+ SFSI(".closeSec").on("click", function () {
2130
+ var s = !0,
2131
+ i = SFSI(this).closest("div.ui-accordion-content").prev("h3.ui-accordion-header").first(),
2132
+ e = SFSI(this).closest("div.ui-accordion-content").first();
2133
+ i.toggleClass("ui-corner-all", s).toggleClass("accordion-header-active ui-state-active ui-corner-top", !s).attr("aria-selected", (!s).toString()),
2134
+ i.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", s).toggleClass("ui-icon-triangle-1-s", !s),
2135
+ e.toggleClass("accordion-content-active", !s), s ? e.slideUp() : e.slideDown();
2136
+ }),
2137
+ SFSI(document).click(function (s) {
2138
+ var i = SFSI(".sfsi_FrntInner_chg"),
2139
+ e = SFSI(".sfsi_wDiv"),
2140
+ t = SFSI("#at15s");
2141
+ i.is(s.target) || 0 !== i.has(s.target).length || e.is(s.target) || 0 !== e.has(s.target).length || t.is(s.target) || 0 !== t.has(s.target).length || i.fadeOut();
2142
+ }),
2143
+ SFSI('#sfsi_popup_background_color').wpColorPicker({
2144
+ defaultColor: false,
2145
+ change: function (event, ui) {
2146
+ sfsi_make_popBox()
2147
+ },
2148
+ clear: function () {
2149
+ sfsi_make_popBox()
2150
+ },
2151
+ hide: true,
2152
+ palettes: true
2153
+ }),
2154
+ SFSI('#sfsi_popup_border_color').wpColorPicker({
2155
+ defaultColor: false,
2156
+ change: function (event, ui) {
2157
+ sfsi_make_popBox()
2158
+ },
2159
+ clear: function () {
2160
+ sfsi_make_popBox()
2161
+ },
2162
+ hide: true,
2163
+ palettes: true
2164
+ }),
2165
+ SFSI('#sfsi_popup_fontColor').wpColorPicker({
2166
+ defaultColor: false,
2167
+ change: function (event, ui) {
2168
+ sfsi_make_popBox()
2169
+ },
2170
+ clear: function () {
2171
+ sfsi_make_popBox()
2172
+ },
2173
+ hide: true,
2174
+ palettes: true
2175
+ }),
2176
+ SFSI("div#sfsiid_linkedin").find(".icon4").find("a").find("img").mouseover(function () {
2177
+ SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/linkedIn_hover.svg");
2178
+ }),
2179
+ SFSI("div#sfsiid_linkedin").find(".icon4").find("a").find("img").mouseleave(function () {
2180
+ SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/linkedIn.svg");
2181
+ }),
2182
+ SFSI("div#sfsiid_youtube").find(".icon1").find("a").find("img").mouseover(function () {
2183
+ SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/youtube_hover.svg");
2184
+ }),
2185
+ SFSI("div#sfsiid_youtube").find(".icon1").find("a").find("img").mouseleave(function () {
2186
+ SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/youtube.svg");
2187
+ }),
2188
+ SFSI("div#sfsiid_facebook").find(".icon1").find("a").find("img").mouseover(function () {
2189
+ SFSI(this).css("opacity", "0.9");
2190
+ }),
2191
+ SFSI("div#sfsiid_facebook").find(".icon1").find("a").find("img").mouseleave(function () {
2192
+ SFSI(this).css("opacity", "1");
2193
+ }),
2194
+ SFSI("div#sfsiid_twitter").find(".cstmicon1").find("a").find("img").mouseover(function () {
2195
+ SFSI(this).css("opacity", "0.9");
2196
+ }),
2197
+ SFSI("div#sfsiid_twitter").find(".cstmicon1").find("a").find("img").mouseleave(function () {
2198
+ SFSI(this).css("opacity", "1");
2199
+ }),
2200
+ SFSI("#sfsi_save1").on("click", function () {
2201
+ // console.log('save1',sfsi_update_step1());
2202
+ sfsi_update_step1() && sfsicollapse(this);
2203
+ }),
2204
+ SFSI("#sfsi_save2").on("click", function () {
2205
+ sfsi_update_step2() && sfsicollapse(this);
2206
+ }),
2207
+ SFSI("#sfsi_save3").on("click", function () {
2208
+ sfsi_update_step3() && sfsicollapse(this);
2209
+ }),
2210
+ SFSI("#sfsi_save4").on("click", function () {
2211
+ sfsi_update_step4() && sfsicollapse(this);
2212
+ }),
2213
+ SFSI("#sfsi_save5").on("click", function () {
2214
+ sfsi_update_step5() && sfsicollapse(this);
2215
+ }),
2216
+ SFSI("#sfsi_save6").on("click", function () {
2217
+ sfsi_update_step6() && sfsicollapse(this);
2218
+ }),
2219
+ SFSI("#sfsi_save7").on("click", function () {
2220
+ sfsi_update_step7() && sfsicollapse(this);
2221
+ }),
2222
+ SFSI("#sfsi_save8").on("click", function () {
2223
+ sfsi_update_step8() && sfsicollapse(this);
2224
+ }),
2225
+ SFSI("#sfsi_save9").on("click", function () {
2226
+ sfsi_update_step9() && sfsicollapse(this);
2227
+ }),
2228
+ SFSI("#sfsi_save_export").on("click", function () {
2229
+ sfsi_save_export();
2230
+ }),
2231
+ SFSI("#save_all_settings").on("click", function () {
2232
+ return SFSI("#save_all_settings").text("Saving.."), SFSI(".save_button >a").css("pointer-events", "none"),
2233
+ sfsi_update_step1(), sfsi_update_step8(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Which icons do you want to show on your site?" tab.', 8),
2234
+ global_error = 0, !1) : (sfsi_update_step2(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "What do you want the icons to do?" tab.', 8),
2235
+ global_error = 0, !1) : (sfsi_update_step3(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "What design & animation do you want to give your icons?" tab.', 8),
2236
+ global_error = 0, !1) : (sfsi_update_step4(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display "counts" next to your icons?" tab.', 8),
2237
+ global_error = 0, !1) : (sfsi_update_step5(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Any other wishes for your main icons?" tab.', 8),
2238
+ global_error = 0, !1) : (sfsi_update_step6(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display icons at the end of every post?" tab.', 8),
2239
+ global_error = 0, !1) : (sfsi_update_step7(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display a pop-up, asking people to subscribe?" tab.', 8),
2240
+ /*global_error = 0, !1) :void (0 == global_error && showErrorSuc("success", 'Saved! Now go to the <a href="widgets.php">widget</a> area and place the widget into your sidebar (if not done already)', 8))))))));*/
2241
+ global_error = 0, !1) : void(0 == global_error && showErrorSuc("success", '', 8))))))));
2242
+ }),
2243
+ /*SFSI(".fileUPInput").live("change", function() {*/
2244
+ SFSI(document).on("change", '.fileUPInput', function () {
2245
+ beForeLoad(), beforeIconSubmit(this) && (SFSI(".upload-overlay").css("pointer-events", "none"),
2246
+ SFSI("#customIconFrm").ajaxForm({
2247
+ dataType: "json",
2248
+ success: afterIconSuccess,
2249
+ resetForm: !0
2250
+ }).submit());
2251
+ }),
2252
+ SFSI(".pop-up").on("click", function () {
2253
+ ("fbex-s2" == SFSI(this).attr("data-id") || "linkex-s2" == SFSI(this).attr("data-id")) && (SFSI("." + SFSI(this).attr("data-id")).hide(),
2254
+ SFSI("." + SFSI(this).attr("data-id")).css("opacity", "1"), SFSI("." + SFSI(this).attr("data-id")).css("z-index", "1000")),
2255
+ SFSI("." + SFSI(this).attr("data-id")).show("slow");
2256
+ }),
2257
+ /*SFSI("#close_popup").live("click", function() {*/
2258
+ SFSI(document).on("click", '#close_popup', function () {
2259
+ SFSI(".read-overlay").hide("slow");
2260
+ });
2261
+
2262
+ var e = 0;
2263
+ SFSI(".icn_listing").on("click", ".checkbox", function () {
2264
+ if (1 == e) return !1;
2265
+ "yes" == SFSI(this).attr("dynamic_ele") && (s = SFSI(this).parent().find("input:checkbox:first"),
2266
+ s.is(":checked") ? SFSI(s).attr("checked", !1) : SFSI(s).attr("checked", !0)), s = SFSI(this).parent().find("input:checkbox:first"),
2267
+ "yes" == SFSI(s).attr("isNew") && ("0px 0px" == SFSI(this).css("background-position") ? (SFSI(s).attr("checked", !0),
2268
+ SFSI(this).css("background-position", "0px -36px")) : (SFSI(s).removeAttr("checked", !0),
2269
+ SFSI(this).css("background-position", "0px 0px")));
2270
+ var s = SFSI(this).parent().find("input:checkbox:first");
2271
+ if (s.is(":checked") && "cusotm-icon" == s.attr("element-type")) SFSI(".fileUPInput").attr("name", "custom_icons[]"),
2272
+ SFSI(".upload-overlay").show("slow", function () {
2273
+ e = 0;
2274
+ }), SFSI("#upload_id").val(s.attr("name"));
2275
+ else if (!s.is(":checked") && "cusotm-icon" == s.attr("element-type")) return s.attr("ele-type") ? (SFSI(this).attr("checked", !0),
2276
+ SFSI(this).css("background-position", "0px -36px"), e = 0, !1) : confirm("Are you sure want to delete this Icon..?? ") ? "suc" == sfsi_delete_CusIcon(this, s) ? (s.attr("checked", !1),
2277
+ SFSI(this).css("background-position", "0px 0px"), e = 0, !1) : (e = 0, !1) : (s.attr("checked", !0),
2278
+ SFSI(this).css("background-position", "0px -36px"), e = 0, !1);
2279
+ }),
2280
+ SFSI(".icn_listing").on("click", ".checkbox", function () {
2281
+ checked = SFSI(this).parent().find("input:checkbox:first"), "sfsi_email_display" != checked.attr("name") || checked.is(":checked") || SFSI(".demail-1").show("slow");
2282
+ }),
2283
+ SFSI("#deac_email2").on("click", function () {
2284
+ SFSI(".demail-1").hide("slow"), SFSI(".demail-2").show("slow");
2285
+ }),
2286
+ SFSI("#deac_email3").on("click", function () {
2287
+ SFSI(".demail-2").hide("slow"), SFSI(".demail-3").show("slow");
2288
+ }),
2289
+ SFSI(".hideemailpop").on("click", function () {
2290
+ SFSI('input[name="sfsi_email_display"]').attr("checked", !0), SFSI('input[name="sfsi_email_display"]').parent().find("span:first").css("background-position", "0px -36px"),
2291
+ SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2292
+ }),
2293
+ SFSI(".hidePop").on("click", function () {
2294
+ SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2295
+ }),
2296
+ SFSI(".activate_footer").on("click", function () {
2297
+ var nonce = SFSI(this).attr("data-nonce");
2298
+ SFSI(this).text("activating....");
2299
+ var s = {
2300
+ action: "activateFooter",
2301
+ nonce: nonce
2302
+ };
2303
+ SFSI.ajax({
2304
+ url: sfsi_icon_ajax_object.ajax_url,
2305
+ type: "post",
2306
+ data: s,
2307
+ dataType: "json",
2308
+ success: function (s) {
2309
+ if (s.res == "wrong_nonce") {
2310
+ SFSI(".activate_footer").css("font-size", "18px");
2311
+ SFSI(".activate_footer").text("Unauthorised Request, Try again after refreshing page");
2312
+ } else {
2313
+ "success" == s.res && (SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"),
2314
+ SFSI(".demail-3").hide("slow"), SFSI(".activate_footer").text("Ok, activate link"));
2315
+ }
2316
+ }
2317
+ });
2318
+ }),
2319
+ SFSI(".sfsi_removeFooter").on("click", function () {
2320
+ var nonce = SFSI(this).attr("data-nonce");
2321
+ SFSI(this).text("working....");
2322
+ var s = {
2323
+ action: "removeFooter",
2324
+ nonce: nonce
2325
+ };
2326
+ SFSI.ajax({
2327
+ url: sfsi_icon_ajax_object.ajax_url,
2328
+ type: "post",
2329
+ data: s,
2330
+ dataType: "json",
2331
+ success: function (s) {
2332
+ if (s.res == "wrong_nonce") {
2333
+ SFSI(".sfsi_removeFooter").text("Unauthorised Request, Try again after refreshing page");
2334
+ } else {
2335
+ "success" == s.res && (SFSI(".sfsi_removeFooter").fadeOut("slow"), SFSI(".sfsi_footerLnk").fadeOut("slow"));
2336
+ }
2337
+ }
2338
+ });
2339
+ }),
2340
+ /*SFSI(".radio").live("click", function() {*/
2341
+ SFSI(document).on("click", '.radio', function () {
2342
+ var s = SFSI(this).parent().find("input:radio:first");
2343
+ "sfsi_display_counts" == s.attr("name") && sfsi_show_counts();
2344
+ }),
2345
+ SFSI("#close_Uploadpopup").on("click", i), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2346
+ var s = SFSI(this).parent().find("input:radio:first");
2347
+ "sfsi_show_Onposts" == s.attr("name") && sfsi_show_OnpostsDisplay();
2348
+ }),
2349
+ sfsi_show_OnpostsDisplay(), sfsi_depened_sections(), sfsi_show_counts(), sfsi_showPreviewCounts(),
2350
+ SFSI(".share_icon_order").sortable({
2351
+ update: function () {
2352
+ SFSI(".share_icon_order li").each(function () {
2353
+ SFSI(this).attr("data-index", SFSI(this).index() + 1);
2354
+ });
2355
+ },
2356
+ revert: !0
2357
+ }),
2358
+
2359
+ //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post STARTS -------------------------------------//
2360
+
2361
+ SFSI(document).on("click", '.checkbox', function () {
2362
+
2363
+ var s = SFSI(this).parent().find("input:checkbox:first");
2364
+ var backgroundPos = jQuery(this).css('background-position').split(" ");
2365
+ var xPos = backgroundPos[0],
2366
+ yPos = backgroundPos[1];
2367
+
2368
+ var inputName = s.attr('name');
2369
+ var inputChecked = s.attr("checked");
2370
+
2371
+ switch (inputName) {
2372
+
2373
+ case "sfsi_custom_social_hide":
2374
+
2375
+ var val = (yPos == "0px") ? "no" : "yes";
2376
+ SFSI('input[name="sfsi_custom_social_hide"]').val(val);
2377
+
2378
+ break;
2379
+
2380
+ case "sfsi_show_via_widget":
2381
+ case "sfsi_show_via_widget":
2382
+ case "sfsi_show_via_afterposts":
2383
+ case "sfsi_custom_social_hide":
2384
+
2385
+ var val = (yPos == "0px") ? "no" : "yes";
2386
+ SFSI('input[name="' + s.attr('name') + '"]').val(val);
2387
+
2388
+ break;
2389
+
2390
+ case 'sfsi_mouseOver':
2391
+
2392
+ var elem = SFSI('input[name="' + inputName + '"]');
2393
+
2394
+ var togglelem = SFSI('.mouse-over-effects');
2395
+
2396
+ if (inputChecked) {
2397
+ togglelem.removeClass('hide').addClass('show');
2398
+ } else {
2399
+ togglelem.removeClass('show').addClass('hide');
2400
+ }
2401
+
2402
+ break;
2403
+ case 'sfsi_responsive_facebook_display':
2404
+ if(inputChecked){
2405
+ SFSI('.sfsi_responsive_icon_facebook_container').parents('a').show();
2406
+ var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2407
+ if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2408
+ window.sfsi_fittext_shouldDisplay=true;
2409
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2410
+ if(jQuery(a_container).css('display')!=="none"){
2411
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2412
+ }
2413
+ })
2414
+ }
2415
+ }else{
2416
+
2417
+ SFSI('.sfsi_responsive_icon_facebook_container').parents('a').hide();
2418
+ if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2419
+ window.sfsi_fittext_shouldDisplay=true;
2420
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2421
+ if(jQuery(a_container).css('display')!=="none"){
2422
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2423
+ }
2424
+ })
2425
+ }
2426
+ }
2427
+ break;
2428
+ case 'sfsi_responsive_Twitter_display':
2429
+ if(inputChecked){
2430
+ SFSI('.sfsi_responsive_icon_twitter_container').parents('a').show();
2431
+ var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2432
+ if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2433
+ window.sfsi_fittext_shouldDisplay=true;
2434
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2435
+ if(jQuery(a_container).css('display')!=="none"){
2436
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2437
+ }
2438
+ })
2439
+ }
2440
+ }else{
2441
+ SFSI('.sfsi_responsive_icon_twitter_container').parents('a').hide();
2442
+ if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2443
+ window.sfsi_fittext_shouldDisplay=true;
2444
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2445
+ if(jQuery(a_container).css('display')!=="none"){
2446
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2447
+ }
2448
+ })
2449
+ }
2450
+ }
2451
+ break;
2452
+ case 'sfsi_responsive_Follow_display':
2453
+ if(inputChecked){
2454
+ SFSI('.sfsi_responsive_icon_follow_container').parents('a').show();
2455
+ var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2456
+ }else{
2457
+ SFSI('.sfsi_responsive_icon_follow_container').parents('a').hide();
2458
+ }
2459
+ window.sfsi_fittext_shouldDisplay=true;
2460
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2461
+ if(jQuery(a_container).css('display')!=="none"){
2462
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2463
+ }
2464
+ })
2465
+ break;
2466
+ }
2467
+
2468
+ });
2469
+
2470
+ //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post CLOSES -------------------------------------//
2471
+
2472
+ SFSI(document).on("click", '.radio', function () {
2473
+
2474
+ var s = SFSI(this).parent().find("input:radio:first");
2475
+
2476
+ switch (s.attr("name")) {
2477
+
2478
+ case 'sfsi_mouseOver_effect_type':
2479
+
2480
+ var _val = s.val();
2481
+ var _name = s.attr("name");
2482
+
2483
+ if ('same_icons' == _val) {
2484
+ SFSI('.same_icons_effects').removeClass('hide').addClass('show');
2485
+ SFSI('.other_icons_effects_options').removeClass('show').addClass('hide');
2486
+ } else if ('other_icons' == _val) {
2487
+ SFSI('.same_icons_effects').removeClass('show').addClass('hide');
2488
+ SFSI('.other_icons_effects_options').removeClass('hide').addClass('show');
2489
+ }
2490
+
2491
+ break;
2492
+ }
2493
+
2494
+ });
2495
+
2496
+ SFSI(document).on("click", '.radio', function () {
2497
+
2498
+ var s = SFSI(this).parent().find("input:radio:first");
2499
+ "sfsi_email_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_email_countsDisplay"]').prop("checked", !0),
2500
+ SFSI('input[name="sfsi_email_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2501
+ "manual" == SFSI("input[name='sfsi_email_countsFrom']:checked").val() ? SFSI("input[name='sfsi_email_manualCounts']").slideDown() : SFSI("input[name='sfsi_email_manualCounts']").slideUp()),
2502
+
2503
+ "sfsi_facebook_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_facebook_countsDisplay"]').prop("checked", !0),
2504
+ SFSI('input[name="sfsi_facebook_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2505
+ "mypage" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_facebook_mypageCounts']").slideDown(), SFSI(".sfsi_fbpgidwpr").slideDown()) : (SFSI("input[name='sfsi_facebook_mypageCounts']").slideUp(), SFSI(".sfsi_fbpgidwpr").slideUp()),
2506
+
2507
+ "manual" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() ? SFSI("input[name='sfsi_facebook_manualCounts']").slideDown() : SFSI("input[name='sfsi_facebook_manualCounts']").slideUp()),
2508
+
2509
+ "sfsi_facebook_countsFrom" == s.attr("name") && (("mypage" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() || "likes" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val()) ? (SFSI(".sfsi_facebook_pagedeasc").slideDown()) : (SFSI(".sfsi_facebook_pagedeasc").slideUp())),
2510
+
2511
+ "sfsi_twitter_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_twitter_countsDisplay"]').prop("checked", !0),
2512
+ SFSI('input[name="sfsi_twitter_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2513
+ "manual" == SFSI("input[name='sfsi_twitter_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_twitter_manualCounts']").slideDown(),
2514
+ SFSI(".tw_follow_options").slideUp()) : (SFSI("input[name='sfsi_twitter_manualCounts']").slideUp(),
2515
+ SFSI(".tw_follow_options").slideDown())),
2516
+
2517
+
2518
+ "sfsi_linkedIn_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_linkedIn_countsDisplay"]').prop("checked", !0),
2519
+ SFSI('input[name="sfsi_linkedIn_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2520
+ "manual" == SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_linkedIn_manualCounts']").slideDown(),
2521
+ SFSI(".linkedIn_options").slideUp()) : (SFSI("input[name='sfsi_linkedIn_manualCounts']").slideUp(),
2522
+ SFSI(".linkedIn_options").slideDown())),
2523
+
2524
+ "sfsi_youtube_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_youtube_countsDisplay"]').prop("checked", !0),
2525
+ SFSI('input[name="sfsi_youtube_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2526
+ "manual" == SFSI("input[name='sfsi_youtube_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_youtube_manualCounts']").slideDown(),
2527
+ SFSI(".youtube_options").slideUp()) : (SFSI("input[name='sfsi_youtube_manualCounts']").slideUp(),
2528
+ SFSI(".youtube_options").slideDown())), "sfsi_pinterest_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_pinterest_countsDisplay"]').prop("checked", !0),
2529
+ SFSI('input[name="sfsi_pinterest_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2530
+ "manual" == SFSI("input[name='sfsi_pinterest_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_pinterest_manualCounts']").slideDown(),
2531
+ SFSI(".pin_options").slideUp()) : SFSI("input[name='sfsi_pinterest_manualCounts']").slideUp()),
2532
+
2533
+ "sfsi_instagram_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_instagram_countsDisplay"]').prop("checked", !0),
2534
+ SFSI('input[name="sfsi_instagram_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2535
+ "manual" == SFSI("input[name='sfsi_instagram_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_instagram_manualCounts']").slideDown(),
2536
+ SFSI(".instagram_userLi").slideUp()) : (SFSI("input[name='sfsi_instagram_manualCounts']").slideUp(),
2537
+ SFSI(".instagram_userLi").slideDown()));
2538
+
2539
+ }),
2540
+
2541
+ sfsi_make_popBox(),
2542
+
2543
+ SFSI('input[name="sfsi_popup_text"] ,input[name="sfsi_popup_background_color"],input[name="sfsi_popup_border_color"],input[name="sfsi_popup_border_thickness"],input[name="sfsi_popup_fontSize"],input[name="sfsi_popup_fontColor"]').on("keyup", sfsi_make_popBox),
2544
+ SFSI('input[name="sfsi_popup_text"] ,input[name="sfsi_popup_background_color"],input[name="sfsi_popup_border_color"],input[name="sfsi_popup_border_thickness"],input[name="sfsi_popup_fontSize"],input[name="sfsi_popup_fontColor"]').on("focus", sfsi_make_popBox),
2545
+
2546
+ SFSI("#sfsi_popup_font ,#sfsi_popup_fontStyle").on("change", sfsi_make_popBox),
2547
+
2548
+ /*SFSI(".radio").live("click", function(){*/
2549
+ SFSI(document).on("click", '.radio', function () {
2550
+
2551
+ var s = SFSI(this).parent().find("input:radio:first");
2552
+
2553
+ if ("sfsi_icons_floatPosition" == s.attr("name")) {
2554
+ SFSI('input[name="sfsi_icons_floatPosition"]').removeAttr("checked");
2555
+ s.attr("checked", true);
2556
+ }
2557
+
2558
+ if ("sfsi_disable_floaticons" == s.attr("name")) {
2559
+ SFSI('input[name="sfsi_disable_floaticons"]').removeAttr("checked");
2560
+ s.attr("checked", true);
2561
+ }
2562
+
2563
+ "sfsi_popup_border_shadow" == s.attr("name") && sfsi_make_popBox();
2564
+ }), /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ? SFSI("img.sfsi_wicon").on("click", function (s) {
2565
+ s.stopPropagation();
2566
+ var i = SFSI("#sfsi_floater_sec").val();
2567
+ SFSI("div.sfsi_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide(),
2568
+ SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_tool_tip_2").css("z-index", "0"),
2569
+ SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide()),
2570
+ SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2571
+ "z-index": "999"
2572
+ }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2573
+ opacity: 1,
2574
+ "z-index": 10
2575
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2576
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2577
+ opacity: 1,
2578
+ "z-index": 10
2579
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2580
+ SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2581
+ opacity: 1,
2582
+ "z-index": 10
2583
+ })), ("top-left" == i || "top-right" == i) && SFSI(this).parent().parent().parent().parent("#sfsi_floater").length > 0 && "sfsi_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").addClass("sfsi_plc_btm"),
2584
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2585
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2586
+ opacity: 1,
2587
+ "z-index": 10
2588
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2589
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").removeClass("sfsi_plc_btm"),
2590
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2591
+ opacity: 1,
2592
+ "z-index": 1e3
2593
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show());
2594
+ }) : SFSI("img.sfsi_wicon").on("mouseenter", function () {
2595
+ var s = SFSI("#sfsi_floater_sec").val();
2596
+ SFSI("div.sfsi_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide(),
2597
+ SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_tool_tip_2").css("z-index", "0"),
2598
+ SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide()),
2599
+ SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2600
+ "z-index": "999"
2601
+ }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2602
+ opacity: 1,
2603
+ "z-index": 10
2604
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2605
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2606
+ opacity: 1,
2607
+ "z-index": 10
2608
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2609
+ SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2610
+ opacity: 1,
2611
+ "z-index": 10
2612
+ })), ("top-left" == s || "top-right" == s) && SFSI(this).parent().parent().parent().parent("#sfsi_floater").length > 0 && "sfsi_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").addClass("sfsi_plc_btm"),
2613
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2614
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2615
+ opacity: 1,
2616
+ "z-index": 10
2617
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2618
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").removeClass("sfsi_plc_btm"),
2619
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2620
+ opacity: 1,
2621
+ "z-index": 10
2622
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show());
2623
+ }), SFSI("div.sfsi_wicons").on("mouseleave", function () {
2624
+ SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "fade_in" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.inerCnt").find("a.sficn").css("opacity", "0.6"),
2625
+ SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "scale" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.inerCnt").find("a.sficn").removeClass("scale"),
2626
+ SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "combo" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && (SFSI(this).children("div.inerCnt").find("a.sficn").css("opacity", "0.6"),
2627
+ SFSI(this).children("div.inerCnt").find("a.sficn").removeClass("scale")), SFSI(this).children(".inerCnt").find("div.sfsi_tool_tip_2").hide();
2628
+ }), SFSI("body").on("click", function () {
2629
+ SFSI(".inerCnt").find("div.sfsi_tool_tip_2").hide();
2630
+ }), SFSI(".adminTooltip >a").on("hover", function () {
2631
+ SFSI(this).offset().top, SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "1"),
2632
+ SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").show();
2633
+ }), SFSI(".adminTooltip").on("mouseleave", function () {
2634
+ "none" != SFSI(".gpls_tool_bdr").css("display") && 0 != SFSI(".gpls_tool_bdr").css("opacity") ? SFSI(".pop_up_box ").on("click", function () {
2635
+ SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "0"), SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").hide();
2636
+ }) : (SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "0"),
2637
+ SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").hide());
2638
+ }), SFSI(".expand-area").on("click", function () {
2639
+ "Read more" == SFSI(this).text() ? (SFSI(this).siblings("p").children("label").fadeIn("slow"),
2640
+ SFSI(this).text("Collapse")) : (SFSI(this).siblings("p").children("label").fadeOut("slow"),
2641
+ SFSI(this).text("Read more"));
2642
+ }), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2643
+
2644
+ var s = SFSI(this).parent().find("input:radio:first");
2645
+
2646
+ "sfsi_icons_float" == s.attr("name") && "yes" == s.val() && (SFSI(".float_options").slideDown("slow"),
2647
+
2648
+ SFSI('input[name="sfsi_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_icons_stick"][value="yes"]').removeAttr("checked"),
2649
+ SFSI('input[name="sfsi_icons_stick"][value="no"]').parent().find("span").attr("style", "0px -41px;"),
2650
+ SFSI('input[name="sfsi_icons_stick"][value="yes"]').parent().find("span").attr("style", "0px -0px;")),
2651
+
2652
+ //("sfsi_icons_stick" == s.attr("name") && "yes" == s.val() || "sfsi_icons_float" == s.attr("name") && "no" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2653
+ ("sfsi_icons_stick" == s.attr("name") && "yes" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2654
+
2655
+ SFSI('input[name="sfsi_icons_float"][value="no"]').prop("checked", !0), SFSI('input[name="sfsi_icons_float"][value="yes"]').prop("checked", !1),
2656
+ SFSI('input[name="sfsi_icons_float"][value="no"]').parent().find("span.radio").attr("style", "0px -41px;"),
2657
+ SFSI('input[name="sfsi_icons_float"][value="yes"]').parent().find("span.radio").attr("style", "0px -0px;"));
2658
+
2659
+ }),
2660
+
2661
+ SFSI(".sfsi_wDiv").length > 0 && setTimeout(function () {
2662
+ var s = parseInt(SFSI(".sfsi_wDiv").height()) + 0 + "px";
2663
+ SFSI(".sfsi_holders").each(function () {
2664
+ SFSI(this).css("height", s);
2665
+ });
2666
+ }, 200),
2667
+ /*SFSI(".checkbox").live("click", function() {*/
2668
+ SFSI(document).on("click", '.checkbox', function () {
2669
+ var s = SFSI(this).parent().find("input:checkbox:first");
2670
+ ("sfsi_shuffle_Firstload" == s.attr("name") && "checked" == s.attr("checked") || "sfsi_shuffle_interval" == s.attr("name") && "checked" == s.attr("checked")) && (SFSI('input[name="sfsi_shuffle_icons"]').parent().find("span").css("background-position", "0px -36px"),
2671
+ SFSI('input[name="sfsi_shuffle_icons"]').attr("checked", "checked")), "sfsi_shuffle_icons" == s.attr("name") && "checked" != s.attr("checked") && (SFSI('input[name="sfsi_shuffle_Firstload"]').removeAttr("checked"),
2672
+ SFSI('input[name="sfsi_shuffle_Firstload"]').parent().find("span").css("background-position", "0px 0px"),
2673
+ SFSI('input[name="sfsi_shuffle_interval"]').removeAttr("checked"), SFSI('input[name="sfsi_shuffle_interval"]').parent().find("span").css("background-position", "0px 0px"));
2674
+ });
2675
+
2676
+ SFSI("body").on("click", "#sfsi_getMeFullAccess", function () {
2677
+ var email = SFSI(this).parents("form").find("input[type='email']").val();
2678
+ var feedid = SFSI(this).parents("form").find("input[name='feed_id']").val();
2679
+ var error = false;
2680
+ var regEx = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/;
2681
+
2682
+ if (email === '') {
2683
+ error = true;
2684
+ }
2685
+
2686
+ if (!regEx.test(email)) {
2687
+ error = true;
2688
+ }
2689
+
2690
+ if (!error) {
2691
+ // console.log("feedid",feedid);
2692
+ if (feedid=="" || undefined==feedid){
2693
+ var nonce = SFSI(this).attr('data-nonce-fetch-feed-id');
2694
+ e = {
2695
+ action: "sfsi_get_feed_id",
2696
+ nonce: nonce,
2697
+ };
2698
+ SFSI.ajax({
2699
+ url: sfsi_icon_ajax_object.ajax_url,
2700
+ type: "post",
2701
+ data: e,
2702
+ dataType: "json",
2703
+ async: !0,
2704
+ success: function (s) {
2705
+ if (s.res == "wrong_nonce") {
2706
+ alert("Error: Unauthorised Request, Try again after refreshing page.");
2707
+ } else {
2708
+ if("success" == s.res){
2709
+ var feedid = s.feed_id;
2710
+ if(feedid=="" || null == feedid){
2711
+ alert("Error: Claiming didn't work. Please try again later.")
2712
+ }else{
2713
+ jQuery('#calimingOptimizationForm input[name="feed_id"]').val(feedid);
2714
+ // console.log("feedid",feedid,SFSI("#calimingOptimizationForm input[name='feed_id']"),SFSI('#calimingOptimizationForm input[name="feedid"]').val());
2715
+ SFSI('#calimingOptimizationForm').submit();
2716
+ }
2717
+ }else{
2718
+ if("failed"==s.res){
2719
+ alert("Error: "+s.message+".");
2720
+
2721
+ }else{
2722
+ alert("Error: Please try again.");
2723
+ }
2724
+ }
2725
+ }
2726
+ }
2727
+ });
2728
+ }else{
2729
+ SFSI(this).parents("form").submit();
2730
+ }
2731
+ } else {
2732
+ alert("Error: Please provide your email address.");
2733
+ }
2734
+ });
2735
+
2736
+ SFSI('form#calimingOptimizationForm').on('keypress', function (e) {
2737
+ var keyCode = e.keyCode || e.which;
2738
+ if (keyCode === 13) {
2739
+ e.preventDefault();
2740
+ return false;
2741
+ }
2742
+ });
2743
+
2744
+ /*SFSI(".checkbox").live("click", function()
2745
+ {
2746
+ var s = SFSI(this).parent().find("input:checkbox:first");
2747
+ "float_on_page" == s.attr("name") && "yes" == s.val() && (
2748
+ SFSI('input[name="sfsi_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_icons_stick"][value="yes"]').removeAttr("checked"),
2749
+ SFSI('input[name="sfsi_icons_stick"][value="no"]').parent().find("span").attr("style", "0px -41px;"),
2750
+ SFSI('input[name="sfsi_icons_stick"][value="yes"]').parent().find("span").attr("style", "0px -0px;"));
2751
+ });
2752
+ SFSI(".radio").live("click", function()
2753
+ {
2754
+ var s = SFSI(this).parent().find("input:radio:first");
2755
+ var a = SFSI(".cstmfltonpgstck");
2756
+ ("sfsi_icons_stick" == s.attr("name") && "yes" == s.val()) && (
2757
+ SFSI('input[name="float_on_page"][value="no"]').prop("checked", !0), SFSI('input[name="float_on_page"][value="yes"]').prop("checked", !1),
2758
+ SFSI('input[name="float_on_page"][value="no"]').parent().find("span.checkbox").attr("style", "0px -41px;"),
2759
+ SFSI('input[name="float_on_page"][value="yes"]').parent().find("span.checkbox").attr("style", "0px -0px;"),
2760
+ jQuery(a).children(".checkbox").css("background-position", "0px 0px" ), toggleflotpage(a));
2761
+ });*/
2762
+ window.sfsi_initialization_checkbox_count = 0;
2763
+ window.sfsi_initialization_checkbox = setInterval(function () {
2764
+ // console.log(jQuery('.radio_section.tb_4_ck>span.checkbox').length,jQuery('.radio_section.tb_4_ck>input.styled').length);
2765
+ if (jQuery('.radio_section.tb_4_ck>span.checkbox').length < jQuery('.radio_section.tb_4_ck>input.styled').length) {
2766
+ window.sfsi_initialization_checkbox_count++;
2767
+ // console.log('not initialized',window.sfsi_initialization_checkbox_count);
2768
+ if (window.sfsi_initialization_checkbox_count > 12) {
2769
+ // alert('Some script from diffrent plugin is interfearing with "Ultimate Social Icons" js files and checkbox couldn\'t be initialized. ');
2770
+ // window.clearInterval(window.sfsi_initialization_checkbox);
2771
+ }
2772
+ } else {
2773
+ // console.log('all initialized',window.sfsi_initialization_checkbox_count);
2774
+ window.clearInterval(window.sfsi_initialization_checkbox);
2775
+ }
2776
+ }, 1000);
2777
+ sfsi_responsive_icon_intraction_handler();
2778
+
2779
+ });
2780
+
2781
+ //for utube channel name and id
2782
+ function showhideutube(ref) {
2783
+ var chnlslctn = SFSI(ref).children("input").val();
2784
+ if (chnlslctn == "name") {
2785
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideDown();
2786
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideUp();
2787
+ } else {
2788
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideDown();
2789
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideUp();
2790
+ }
2791
+ }
2792
+
2793
+ function checkforinfoslction(ref) {
2794
+ var pos = jQuery(ref).children(".checkbox").css("background-position");
2795
+
2796
+ var rightInfoClass = jQuery(ref).next().attr('class');
2797
+
2798
+ var rightInfoPElem = jQuery(ref).next("." + rightInfoClass).children("p").first();
2799
+
2800
+ var elemName = 'label';
2801
+
2802
+ if (pos == "0px 0px") {
2803
+ rightInfoPElem.children(elemName).hide();
2804
+ } else {
2805
+ rightInfoPElem.children(elemName).show();
2806
+ }
2807
+ }
2808
+
2809
+ function checkforinfoslction_checkbox(ref) {
2810
+
2811
+ var pos = jQuery(ref).children(".checkbox").css("background-position");
2812
+
2813
+ var elem = jQuery(ref).parent().children('.sfsi_right_info').find('.kckslctn');
2814
+
2815
+ if (pos == "0px 0px") {
2816
+ elem.hide();
2817
+ } else {
2818
+ elem.show();
2819
+ }
2820
+ }
2821
+
2822
+ function sfsi_toggleflotpage_que3(ref) {
2823
+ var pos = jQuery(ref).children(".checkbox").css("background-position");
2824
+ if (pos == "0px 0px") {
2825
+ jQuery(ref).next(".sfsi_right_info").hide();
2826
+
2827
+ } else {
2828
+ jQuery(ref).next(".sfsi_right_info").show();
2829
+ }
2830
+ }
2831
+
2832
+ var initTop = new Array();
2833
+
2834
+ SFSI('.sfsi_navigate_to_question7').on("click", function () {
2835
+
2836
+ var elem = SFSI('#ui-id-6');
2837
+
2838
+ if (elem.hasClass('accordion-content-active')) {
2839
+
2840
+ // Cloase tab of Question 3
2841
+ elem.find('.sfsiColbtn').trigger('click');
2842
+
2843
+ // Open tab of Question 7
2844
+ if (!SFSI('#ui-id-14').hasClass('accordion-content-active')) {
2845
+ SFSI('#ui-id-13').trigger('click');
2846
+ }
2847
+
2848
+ var pos = SFSI("#ui-id-13").offset();
2849
+ var scrollToPos = pos.top - SFSI(window).height() * 0.99 + 30;
2850
+ SFSI('html,body').animate({
2851
+ scrollTop: scrollToPos
2852
+ }, 500);
2853
+ }
2854
+ });
2855
+
2856
+ SFSI("body").on("click", ".sfsi_tokenGenerateButton a", function () {
2857
+ var clienId = SFSI("input[name='sfsi_instagram_clientid']").val();
2858
+ var redirectUrl = SFSI("input[name='sfsi_instagram_appurl']").val();
2859
+
2860
+ var scope = "basic";
2861
+ var instaUrl = "https://www.instagram.com/oauth/authorize/?client_id=<id>&redirect_uri=<url>&response_type=token&scope=" + scope;
2862
+
2863
+ if (clienId !== '' && redirectUrl !== '') {
2864
+ instaUrl = instaUrl.replace('<id>', clienId);
2865
+ instaUrl = instaUrl.replace('<url>', redirectUrl);
2866
+
2867
+ window.open(instaUrl, '_blank');
2868
+ } else {
2869
+ alert("Please enter client id and redirect url first");
2870
+ }
2871
+
2872
+ });
2873
+ SFSI(document).ready(function () {
2874
+
2875
+ SFSI('#sfsi_jivo_offline_chat .tab-link').click(function () {
2876
+ var cur = SFSI(this);
2877
+ if (!cur.hasClass('active')) {
2878
+ var target = cur.find('a').attr('href');
2879
+ cur.parent().children().removeClass('active');
2880
+ cur.addClass('active');
2881
+ SFSI('#sfsi_jivo_offline_chat .tabs').children().hide();
2882
+ SFSI(target).show();
2883
+ }
2884
+ });
2885
+ SFSI('#sfsi_jivo_offline_chat #sfsi_sales form').submit(function (event) {
2886
+ event & event.preventDefault();
2887
+ // console.log(event);
2888
+ var target = SFSI(this).parents('.tab-content');
2889
+ var message = SFSI(this).find('textarea[name="question"]').val();
2890
+ var email = SFSI(this).find('input[name="email"]').val();
2891
+ var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
2892
+ var nonce = SFSI(this).find('input[name="nonce"]').val();
2893
+
2894
+ if ("" === email || false === re.test(String(email).toLowerCase())) {
2895
+ // console.log(SFSI(this).find('input[name="email"]'));
2896
+ SFSI(this).find('input[name="email"]').css('background-color', 'red');
2897
+ SFSI(this).find('input[name="email"]').on('keyup', function () {
2898
+ var re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
2899
+ var email = SFSI(this).val();
2900
+ // console.log(email,re.test(String(email).toLowerCase()) );
2901
+ if ("" !== email && true === re.test(String(email).toLowerCase())) {
2902
+ SFSI(this).css('background-color', '#fff');
2903
+ }
2904
+ })
2905
+ return false;
2906
+
2907
+ }
2908
+ SFSI.ajax({
2909
+ url: sfsi_icon_ajax_object.ajax_url,
2910
+ type: "post",
2911
+ data: {
2912
+ action: "sfsiOfflineChatMessage",
2913
+ message: message,
2914
+ email: email,
2915
+ 'nonce': nonce
2916
+ }
2917
+ }).done(function () {
2918
+ target.find('.before_message_sent').hide();
2919
+ target.find('.after_message_sent').show();
2920
+ });
2921
+ })
2922
+ });
2923
+
2924
+ function sfsi_close_offline_chat(e) {
2925
+ e && e.preventDefault();
2926
+
2927
+ SFSI('#sfsi_jivo_offline_chat').hide();
2928
+ SFSI('#sfsi_dummy_chat_icon').show();
2929
+ }
2930
+
2931
+ function sfsi_open_quick_checkout(e) {
2932
+ e && e.preventDefault();
2933
+ // console.log(jQuery('.sfsi_quick-pay-box'));
2934
+ jQuery('.sfsi_quick-pay-box').show();
2935
+ }
2936
+
2937
+ function sfsi_close_quickpay(e) {
2938
+ e && e.preventDefault();
2939
+ jQuery('.sfsi_quickpay-overlay').hide();
2940
+ }
2941
+
2942
+ function sfsi_quickpay_container_click(event) {
2943
+ if (jQuery(event.target).hasClass('sellcodes-quick-purchase')) {
2944
+ jQuery(jQuery(event.target).find('p.sc-button img')[0]).click();
2945
+ }
2946
+ }
2947
+
2948
+
2949
+
2950
+ // <------------------------* Responsive icon *----------------------->
2951
+
2952
+ function sfsi_responsive_icon_intraction_handler() {
2953
+ window.sfsi_fittext_shouldDisplay = true;
2954
+ SFSI('select[name="sfsi_responsive_icons_settings_edge_type"]').on('change', function () {
2955
+ $target_div = (SFSI(this).parent());
2956
+ if (SFSI(this).val() === "Round") {
2957
+ // console.log('Round', 'Round', SFSI(this).val());
2958
+
2959
+ $target_div.parent().children().css('display', 'inline-block');
2960
+ $target_div.parent().next().css("display","inline-block");
2961
+ var radius = jQuery('select[name="sfsi_responsive_icons_settings_edge_radius"]').val() + 'px'
2962
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', radius);
2963
+
2964
+ } else {
2965
+ // console.log('sharp', 'sharp', SFSI(this).val(), $target_div.parent().children(), $target_div.parent().children().hide());
2966
+
2967
+ $target_div.parent().children().hide();
2968
+ $target_div.show();
2969
+ $target_div.parent().next().hide();
2970
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', 'unset');
2971
+
2972
+ }
2973
+ });
2974
+ SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').on('change', function () {
2975
+ $target_div = (SFSI(this).parent());
2976
+ if (SFSI(this).val() === "Fixed icon width") {
2977
+ $target_div.parent().children().css('display', 'inline-block');
2978
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width', 'auto').css('display', 'flex');
2979
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('flex-basis', 'unset');
2980
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery('input[name="sfsi_responsive_icons_sttings_icon_width_size"]').val());
2981
+
2982
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fully_container').removeClass('sfsi_icons_container_box_fully_container').addClass('sfsi_icons_container_box_fixed_container');
2983
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fixed_container').removeClass('sfsi_icons_container_box_fully_container').addClass('sfsi_icons_container_box_fixed_container');
2984
+ window.sfsi_fittext_shouldDisplay = true;
2985
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2986
+ if (jQuery(a_container).css('display') !== "none") {
2987
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2988
+ }
2989
+ })
2990
+ } else {
2991
+ $target_div.parent().children().hide();
2992
+ $target_div.show();
2993
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width', '100%').css('display', 'flex');
2994
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('flex-basis', '100%');
2995
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', '100%');
2996
+
2997
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fixed_container').removeClass('sfsi_icons_container_box_fixed_container').addClass('sfsi_icons_container_box_fully_container');
2998
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fully_container').removeClass('sfsi_icons_container_box_fixed_container').addClass('sfsi_icons_container_box_fully_container');
2999
+ window.sfsi_fittext_shouldDisplay = true;
3000
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3001
+ if (jQuery(a_container).css('display') !== "none") {
3002
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3003
+ }
3004
+ })
3005
+ }
3006
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').removeClass('sfsi_fixed_count_container').removeClass('sfsi_responsive_count_container').addClass('sfsi_' + (jQuery(this).val() == "Fully responsive" ? 'responsive' : 'fixed') + '_count_container')
3007
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container>a').removeClass('sfsi_responsive_fluid').removeClass('sfsi_responsive_fixed_width').addClass('sfsi_responsive_' + (jQuery(this).val() == "Fully responsive" ? 'fluid' : 'fixed_width'))
3008
+ sfsi_resize_icons_container();
3009
+
3010
+ })
3011
+ jQuery(document).on('keyup', 'input[name="sfsi_responsive_icons_sttings_icon_width_size"]', function () {
3012
+ if (SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
3013
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
3014
+ window.sfsi_fittext_shouldDisplay = true;
3015
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3016
+ if (jQuery(a_container).css('display') !== "none") {
3017
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3018
+ }
3019
+ })
3020
+ }
3021
+ sfsi_resize_icons_container();
3022
+ });
3023
+ jQuery(document).on('change', 'input[name="sfsi_responsive_icons_sttings_icon_width_size"]', function () {
3024
+ if (SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
3025
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
3026
+ }
3027
+ });
3028
+ jQuery(document).on('keyup', 'input[name="sfsi_responsive_icons_settings_margin"]', function () {
3029
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
3030
+ });
3031
+ jQuery(document).on('change', 'input[name="sfsi_responsive_icons_settings_margin"]', function () {
3032
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
3033
+ // jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width',(jQuery('.sfsi_responsive_icons').width()-(jQuery('.sfsi_responsive_icons_count').width()+jQuery(this).val()))+'px');
3034
+
3035
+ });
3036
+ jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_text_align"]', function () {
3037
+ if (jQuery(this).val() === "Centered") {
3038
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('text-align', 'center');
3039
+ } else {
3040
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('text-align', 'left');
3041
+ }
3042
+ });
3043
+ jQuery('.sfsi_responsive_default_icon_container input.sfsi_responsive_input').on('keyup', function () {
3044
+ jQuery(this).parent().find('.sfsi_responsive_icon_item_container').find('span').text(jQuery(this).val());
3045
+ var iconName = jQuery(this).attr('name');
3046
+ var icon = iconName.replace('sfsi_responsive_', '').replace('_input', '');
3047
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_' + (icon.toLowerCase()) + '_container span').text(jQuery(this).val());
3048
+ window.sfsi_fittext_shouldDisplay = true;
3049
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3050
+ if (jQuery(a_container).css('display') !== "none") {
3051
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3052
+ }
3053
+ })
3054
+ sfsi_resize_icons_container();
3055
+ })
3056
+ jQuery('.sfsi_responsive_custom_icon_container input.sfsi_responsive_input').on('keyup', function () {
3057
+ jQuery(this).parent().find('.sfsi_responsive_icon_item_container').find('span').text(jQuery(this).val());
3058
+ var iconName = jQuery(this).attr('name');
3059
+ var icon = iconName.replace('sfsi_responsive_custom_', '').replace('_input', '');
3060
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_' + icon + '_container span').text(jQuery(this).val())
3061
+ window.sfsi_fittext_shouldDisplay = true;
3062
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3063
+ if (jQuery(a_container).css('display') !== "none") {
3064
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3065
+ }
3066
+ })
3067
+ sfsi_resize_icons_container();
3068
+
3069
+ })
3070
+
3071
+ jQuery('.sfsi_responsive_default_url_toggler').click(function (event) {
3072
+
3073
+ event.preventDefault();
3074
+ sfsi_responsive_open_url(event);
3075
+ });
3076
+ jQuery('.sfsi_responsive_default_url_toggler').click(function (event) {
3077
+ event.preventDefault();
3078
+ sfsi_responsive_open_url(event);
3079
+ })
3080
+ jQuery('.sfsi_responsive_custom_url_hide, .sfsi_responsive_default_url_hide').click(function (event) {
3081
+ event.preventDefault();
3082
+ /* console.log(event,jQuery(event.target)); */
3083
+ jQuery(event.target).parent().parent().find('.sfsi_responsive_custom_url_hide').hide();
3084
+ jQuery(event.target).parent().parent().find('.sfsi_responsive_url_input').hide();
3085
+ jQuery(event.target).parent().parent().find('.sfsi_responsive_default_url_hide').hide();
3086
+ jQuery(event.target).parent().parent().find('.sfsi_responsive_default_url_toggler').show();
3087
+ });
3088
+ jQuery('select[name="sfsi_responsive_icons_settings_icon_size"]').change(function (event) {
3089
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').removeClass('sfsi_small_button').removeClass('sfsi_medium_button').removeClass('sfsi_large_button').addClass('sfsi_' + (jQuery(this).val().toLowerCase()) + '_button');
3090
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_small_button_container').removeClass('sfsi_medium_button_container').removeClass('sfsi_large_button_container').addClass('sfsi_' + (jQuery(this).val().toLowerCase()) + '_button_container')
3091
+ })
3092
+ jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_edge_radius"]', function (event) {
3093
+ var radius = jQuery(this).val() + 'px'
3094
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', radius);
3095
+
3096
+ });
3097
+ jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_style"]', function (event) {
3098
+ if ('Flat' === jQuery(this).val()) {
3099
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_responsive_icon_gradient');
3100
+ } else {
3101
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').addClass('sfsi_responsive_icon_gradient');
3102
+ }
3103
+ });
3104
+ jQuery(document).on('mouseenter', '.sfsi_responsive_icon_preview .sfsi_icons_container a', function () {
3105
+ jQuery(this).css('opacity', 0.8);
3106
+ })
3107
+ jQuery(document).on('mouseleave', '.sfsi_responsive_icon_preview .sfsi_icons_container a', function () {
3108
+ jQuery(this).css('opacity', 1);
3109
+ })
3110
+ window.sfsi_fittext_shouldDisplay = true;
3111
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3112
+ if (jQuery(a_container).css('display') !== "none") {
3113
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3114
+ }
3115
+ })
3116
+ sfsi_resize_icons_container();
3117
+ jQuery('.ui-accordion-header.ui-state-default.ui-accordion-icons').click(function (data) {
3118
+ window.sfsi_fittext_shouldDisplay = true;
3119
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3120
+ if (jQuery(a_container).css('display') !== "none") {
3121
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3122
+ }
3123
+ })
3124
+ sfsi_resize_icons_container();
3125
+ });
3126
+ jQuery('select[name="sfsi_responsive_icons_settings_text_align"]').change(function (event) {
3127
+ var data = jQuery(event.target).val();
3128
+ if (data == "Centered") {
3129
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_left-align_icon').addClass('sfsi_centered_icon');
3130
+ } else {
3131
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_centered_icon').addClass('sfsi_left-align_icon');
3132
+ }
3133
+ });
3134
+ jQuery('a.sfsi_responsive_custom_delete_btn').click(function (event) {
3135
+ event.preventDefault();
3136
+ var icon_num = jQuery(this).attr('data-id');
3137
+ //reset the current block;
3138
+ // var last_block = jQuery('.sfsi_responsive_custom_icon_4_container').clone();
3139
+ var cur_block = jQuery('.sfsi_responsive_custom_icon_' + icon_num + '_container');
3140
+ cur_block.find('.sfsi_responsive_custom_delete_btn').hide();
3141
+ cur_block.find('input[name="sfsi_responsive_custom_' + icon_num + '_added"]').val('no');
3142
+ cur_block.find('.sfsi_responsive_custom_' + icon_num + '_added').attr('value', 'no');
3143
+ cur_block.find('.radio_section.tb_4_ck .checkbox').click();
3144
+ cur_block.hide();
3145
+
3146
+
3147
+ if (icon_num > 0) {
3148
+ var prev_block = jQuery('.sfsi_responsive_custom_icon_' + (icon_num - 1) + '_container');
3149
+ prev_block.find('.sfsi_responsive_custom_delete_btn').show();
3150
+ }
3151
+ // jQuery('.sfsi_responsive_custom_icon_container').each(function(index,custom_icon){
3152
+ // var target= jQuery(custom_icon);
3153
+ // target.find('.sfsi_responsive_custom_delete_btn');
3154
+ // var custom_id = target.find('.sfsi_responsive_custom_delete_btn').attr('data-id');
3155
+ // if(custom_id>icon_num){
3156
+ // target.removeClass('sfsi_responsive_custom_icon_'+custom_id+'_container').addClass('sfsi_responsive_custom_icon_'+(custom_id-1)+'_container');
3157
+ // target.find('input[name="sfsi_responsive_custom_'+custom_id+'_added"]').attr('name',"sfsi_responsive_custom_"+(custom_id-1)+"_added");
3158
+ // target.find('#sfsi_responsive_'+custom_id+'_display').removeClass('sfsi_responsive_custom_'+custom_id+'_display').addClass('sfsi_responsive_custom_'+(custom_id-1)+'_display').attr('id','sfsi_responsive_'+(custom_id-1)+'_display').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_display').attr('data-custom-index',(custom_id-1));
3159
+ // target.find('.sfsi_responsive_icon_item_container').removeClass('sfsi_responsive_icon_custom_'+custom_id+'_container').addClass('sfsi_responsive_icon_custom_'+(custom_id-1)+'_container');
3160
+ // target.find('.sfsi_responsive_input').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_input');
3161
+ // target.find('.sfsi_responsive_url_input').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_url_input');
3162
+ // target.find('.sfsi_bg-color-picker').attr('name','sfsi_responsive_icon_'+(custom_id-1)+'_bg_color');
3163
+ // target.find('.sfsi_logo_upload sfsi_logo_custom_'+custom_id+'_upload').removeClass('sfsi_logo_upload sfsi_logo_custom_'+custom_id+'_upload').addClass('sfsi_logo_upload sfsi_logo_custom_'+(custom_id-1)+'_upload');
3164
+ // target.find('input[type="sfsi_responsive_icons_custom_'+custom_id+'_icon"]').attr('name','input[type="sfsi_responsive_icons_custom_'+(custom_id-1)+'_icon"]');
3165
+ // target.find('.sfsi_responsive_custom_delete_btn').attr('data-id',''+(custom_id-1));
3166
+ // }
3167
+ // });
3168
+ // // sfsi_backend_section_beforeafter_set_fixed_width();
3169
+ // // jQuery(window).on('resize',sfsi_backend_section_beforeafter_set_fixed_width);
3170
+ // var new_block=jQuery('.sfsi_responsive_custom_icon_container').clone();
3171
+ // jQuery('.sfsi_responsive_custom_icon_container').remove();
3172
+ // jQuery('.sfsi_responsive_default_icon_container').parent().append(last_block).append();
3173
+ // jQuery('.sfsi_responsive_default_icon_container').parent().append(new_block);
3174
+ // return false;
3175
+ })
3176
+ }
3177
+
3178
+ function sfsi_responsive_icon_counter_tgl(hide, show, ref = null) {
3179
+ if (null !== hide && '' !== hide) {
3180
+ jQuery('.' + hide).hide();
3181
+ }
3182
+ if (null !== show && '' !== show) {
3183
+ jQuery('.' + show).show();
3184
+ }
3185
+ }
3186
+
3187
+ function sfsi_responsive_toggle_count() {
3188
+ var data = jQuery('input[name="sfsi_share_count"]:checked').val();
3189
+ var data2 = jQuery('input[name="sfsi_display_counts"]:checked').val();
3190
+ /* console.log('toggleer ',data,data2); */
3191
+ if (data2 == "yes" && 'yes' == data) {
3192
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('display', 'inline-block');
3193
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_responsive_without_counter_icons').addClass('sfsi_responsive_with_counter_icons');
3194
+ sfsi_resize_icons_container();
3195
+ } else {
3196
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('display', 'none');
3197
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_responsive_with_counter_icons').addClass('sfsi_responsive_without_counter_icons');
3198
+ sfsi_resize_icons_container();
3199
+ }
3200
+ }
3201
+
3202
+ function sfsi_responsive_open_url(event) {
3203
+ jQuery(event.target).parent().find('.sfsi_responsive_custom_url_hide').show();
3204
+ jQuery(event.target).parent().find('.sfsi_responsive_default_url_hide').show();
3205
+ jQuery(event.target).parent().find('.sfsi_responsive_url_input').show();
3206
+ jQuery(event.target).hide();
3207
+ }
3208
+
3209
+ function sfsi_responsive_icon_hide_responsive_options() {
3210
+ jQuery('.sfsi_PostsSettings_section').show();
3211
+ jQuery('.sfsi_choose_post_types_section').show();
3212
+ jQuery('.sfsi_not_responsive').show();
3213
+ // jQuery('.sfsi_icn_listing8.sfsi_closerli').hide();
3214
+ }
3215
+
3216
+ function sfsi_responsive_icon_show_responsive_options() {
3217
+ jQuery('.sfsi_PostsSettings_section').hide();
3218
+ // jQuery('.sfsi_PostsSettings_section').show();
3219
+ jQuery('.sfsi_choose_post_types_section').hide();
3220
+ jQuery('.sfsi_not_responsive').hide();
3221
+ window.sfsi_fittext_shouldDisplay = true;
3222
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3223
+ if (jQuery(a_container).css('display') !== "none") {
3224
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3225
+ }
3226
+ })
3227
+ sfsi_resize_icons_container();
3228
+ }
3229
+
3230
+ function sfsi_scroll_to_div(option_id, scroll_selector) {
3231
+ jQuery('#' + option_id + '.ui-accordion-header[aria-selected="false"]').click() //opened the option
3232
+ //scroll to it.
3233
+ if (scroll_selector && scroll_selector !== '') {
3234
+ scroll_selector = scroll_selector;
3235
+ } else {
3236
+ scroll_selector = '#' + option_id + '.ui-accordion-header';
3237
+ }
3238
+ jQuery('html, body').stop().animate({
3239
+ scrollTop: jQuery(scroll_selector).offset().top
3240
+ }, 1000);
3241
+ }
3242
+
3243
+ function sfsi_fitText(container) {
3244
+ /* console.log(container,container.parent().parent(),container.parent().parent().hasClass('sfsi_icons_container_box_fixed_container')); */
3245
+ if (container.parent().parent().hasClass('sfsi_icons_container_box_fixed_container')) {
3246
+ /* console.log(window.sfsi_fittext_shouldDisplay); */
3247
+ if (window.sfsi_fittext_shouldDisplay === true) {
3248
+ if (jQuery('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() == "Fully responsive") {
3249
+ var all_icon_width = jQuery('.sfsi_responsive_icons .sfsi_icons_container').width();
3250
+ var total_active_icons = jQuery('.sfsi_responsive_icons .sfsi_icons_container a').filter(function (i, icon) {
3251
+ return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3252
+ }).length;
3253
+
3254
+ var distance_between_icon = jQuery('input[name="sfsi_responsive_icons_settings_margin"]').val()
3255
+ var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3256
+ container_width = (container_width - distance_between_icon);
3257
+ } else {
3258
+ var container_width = container.width();
3259
+ }
3260
+ // var container_img_width = container.find('img').width();
3261
+ var container_img_width = 70;
3262
+ // var span=container.find('span').clone();
3263
+ var span = container.find('span');
3264
+ // var span_original_width = container.find('span').width();
3265
+ var span_original_width = container_width - (container_img_width)
3266
+ span
3267
+ // .css('display','inline-block')
3268
+ .css('white-space', 'nowrap')
3269
+ // .css('width','auto')
3270
+ ;
3271
+ var span_flatted_width = span.width();
3272
+ if (span_flatted_width == 0) {
3273
+ span_flatted_width = span_original_width;
3274
+ }
3275
+ span
3276
+ // .css('display','inline-block')
3277
+ .css('white-space', 'unset')
3278
+ // .css('width','auto')
3279
+ ;
3280
+ var shouldDisplay = ((undefined === window.sfsi_fittext_shouldDisplay) ? true : window.sfsi_fittext_shouldDisplay = true);
3281
+ var fontSize = parseInt(span.css('font-size'));
3282
+
3283
+ if (6 > fontSize) {
3284
+ fontSize = 20;
3285
+ }
3286
+
3287
+ var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3288
+
3289
+ if (computed_fontSize < 8) {
3290
+ shouldDisplay = false;
3291
+ window.sfsi_fittext_shouldDisplay = false;
3292
+ computed_fontSize = 20;
3293
+ }
3294
+ span.css('font-size', Math.min(computed_fontSize, 20));
3295
+ span
3296
+ // .css('display','inline-block')
3297
+ .css('white-space', 'nowrap')
3298
+ // .css('width','auto')
3299
+ ;
3300
+ if (shouldDisplay) {
3301
+ span.show();
3302
+ } else {
3303
+ span.hide();
3304
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container span').hide();
3305
+ }
3306
+ }
3307
+ } else {
3308
+ var span = container.find('span');
3309
+ /* console.log(span); */
3310
+ span.css('font-size', 'initial');
3311
+ span.show();
3312
+ }
3313
+
3314
+ }
3315
+
3316
+ function sfsi_fixedWidth_fitText(container) {
3317
+ return;
3318
+ /* console.log(sfsi_fittext_shouldDisplay); */
3319
+ if (window.sfsi_fittext_shouldDisplay === true) {
3320
+ if (jQuery('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() == "Fixed icon width") {
3321
+ var all_icon_width = jQuery('.sfsi_responsive_icons .sfsi_icons_container').width();
3322
+ var total_active_icons = jQuery('.sfsi_responsive_icons .sfsi_icons_container a').filter(function (i, icon) {
3323
+ return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3324
+ }).length;
3325
+ var distance_between_icon = jQuery('input[name="sfsi_responsive_icons_settings_margin"]').val()
3326
+ var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3327
+ container_width = (container_width - distance_between_icon);
3328
+ } else {
3329
+ var container_width = container.width();
3330
+ }
3331
+ // var container_img_width = container.find('img').width();
3332
+ var container_img_width = 70;
3333
+ // var span=container.find('span').clone();
3334
+ var span = container.find('span');
3335
+ // var span_original_width = container.find('span').width();
3336
+ var span_original_width = container_width - (container_img_width)
3337
+ span
3338
+ // .css('display','inline-block')
3339
+ .css('white-space', 'nowrap')
3340
+ // .css('width','auto')
3341
+ ;
3342
+ var span_flatted_width = span.width();
3343
+ if (span_flatted_width == 0) {
3344
+ span_flatted_width = span_original_width;
3345
+ }
3346
+ span
3347
+ // .css('display','inline-block')
3348
+ .css('white-space', 'unset')
3349
+ // .css('width','auto')
3350
+ ;
3351
+ var shouldDisplay = undefined === window.sfsi_fittext_shouldDisplay ? true : window.sfsi_fittext_shouldDisplay = true;;
3352
+ var fontSize = parseInt(span.css('font-size'));
3353
+
3354
+ if (6 > fontSize) {
3355
+ fontSize = 15;
3356
+ }
3357
+
3358
+ var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3359
+
3360
+ if (computed_fontSize < 8) {
3361
+ shouldDisplay = false;
3362
+ window.sfsi_fittext_shouldDisplay = false;
3363
+ computed_fontSize = 15;
3364
+ }
3365
+ span.css('font-size', Math.min(computed_fontSize, 15));
3366
+ span
3367
+ // .css('display','inline-block')
3368
+ .css('white-space', 'nowrap')
3369
+ // .css('width','auto')
3370
+ ;
3371
+ // var heightOfResIcons = jQuery('.sfsi_responsive_icon_item_container').height();
3372
+
3373
+ // if(heightOfResIcons < 17){
3374
+ // span.show();
3375
+ // }else{
3376
+ // span.hide();
3377
+ // }
3378
+
3379
+ if (shouldDisplay) {
3380
+ span.show();
3381
+ } else {
3382
+ span.hide();
3383
+ }
3384
+ }
3385
+ }
3386
+
3387
+ function sfsi_resize_icons_container() {
3388
+ // resize icon container based on the size of count
3389
+ sfsi_cloned_icon_list = jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').clone();
3390
+ sfsi_cloned_icon_list.removeClass('.sfsi_responsive_icon_preview .sfsi_responsive_with_counter_icons').addClass('sfsi_responsive_cloned_list');
3391
+ sfsi_cloned_icon_list.css('width', '100%');
3392
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').parent().append(sfsi_cloned_icon_list);
3393
+
3394
+ // sfsi_cloned_icon_list.css({
3395
+ // position: "absolute",
3396
+ // left: "-10000px"
3397
+ // }).appendTo("body");
3398
+ actual_width = sfsi_cloned_icon_list.width();
3399
+ count_width = jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').width();
3400
+ jQuery('.sfsi_responsive_cloned_list').remove();
3401
+ sfsi_inline_style = jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').attr('style');
3402
+ // remove_width
3403
+ sfsi_inline_style = sfsi_inline_style.replace(/width:auto($|!important|)(;|$)/g, '').replace(/width:\s*(-|)\d*\s*(px|%)\s*($|!important|)(;|$)/g, '');
3404
+ if (!(jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').hasClass('sfsi_responsive_without_counter_icons') && jQuery('.sfsi_icons_container').hasClass('sfsi_icons_container_box_fixed_container'))) {
3405
+ sfsi_inline_style += "width:" + (actual_width - count_width - 1) + 'px!important;'
3406
+ } else {
3407
+ sfsi_inline_style += "width:auto!important;";
3408
+ }
3409
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').attr('style', sfsi_inline_style);
3410
+
3411
+ }
3412
+
3413
+ function sfsi_togglbtmsection(show, hide, ref) {
3414
+ // console.log(show,hide);
3415
+ jQuery(ref).parent("ul").children("li.clckbltglcls").each(function (index, element) {
3416
+ jQuery(this).children(".radio").css("background-position", "0px 0px");
3417
+ jQuery(this).children(".styled").attr("checked", "false");
3418
+ });
3419
+ jQuery(ref).children(".radio").css("background-position", "0px -41px");
3420
+ jQuery(ref).children(".styled").attr("checked", "true");
3421
+ // console.log(show,hide);
3422
+
3423
+ jQuery("." + show).show();
3424
+ jQuery("." + show).children(".radiodisplaysection").show();
3425
+ jQuery("." + hide).hide();
3426
+ jQuery("." + hide).children(".radiodisplaysection").hide();
3427
+ }
3428
+ jQuery(document).ready(function(){
3429
+ var sfsi_functions_loaded = new CustomEvent('sfsi_functions_loaded',{detail:{"abc":"def"}});
3430
+ window.dispatchEvent(sfsi_functions_loaded);
3431
+ });
3432
+
3433
+ function sfsi_show_responsive(){
3434
+ var icon_type = jQuery('input[name="sfsi_display_button_type"]:checked').val();
3435
+ var responsive_show = jQuery('input[name="sfsi_responsive_icons_end_post"]:checked').val();
3436
+ setTimeout(function(){
3437
+ // console.log(icon_type, responsive_show,icon_type=="responsive_button" && responsive_show=="yes");
3438
+ if(icon_type=="responsive_button" && responsive_show=="yes"){
3439
+ jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').show();
3440
+ }else{
3441
+ jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').hide();
3442
+ }
3443
+ },100);
3444
+ }
3445
+
3446
+
3447
+ function sfsi_save_export() {
3448
+ var nonce = SFSI("#sfsi_save_export").attr("data-nonce");
3449
+ console.log(nonce);
3450
+ var data = {
3451
+ action: "sfsi_save_export",
3452
+ nonce: nonce
3453
+ };
3454
+ console.log(data);
3455
+ SFSI.ajax({
3456
+ url: sfsi_icon_ajax_object.ajax_url,
3457
+ type: "post",
3458
+ data: data,
3459
+ success: function (s) {
3460
+ console.log(s);
3461
+ if (s == "wrong_nonce") {
3462
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
3463
+ global_error = 1;
3464
+ } else {
3465
+ var date = new Date();
3466
+ var timestamp = date.getTime();
3467
+ var blob = new Blob([JSON.stringify(s, null, 2)], {
3468
+ type: 'application/json'
3469
+ });
3470
+ var url = URL.createObjectURL(blob);
3471
+ let link = document.createElement("a");
3472
+ link.href = url;
3473
+ link.download = "sfsi_export_options" + timestamp + ".json"
3474
+ link.innerText = "Open the array URL";
3475
+ document.body.appendChild(link);
3476
+ link.click();
3477
+ (showErrorSuc("Settings Exported !", "Settings Exported !", 10));
3478
+ }
3479
+ }
3480
+ });
3481
+
3482
+ }
3483
+
js/custom.js CHANGED
@@ -173,6 +173,7 @@ SFSI(document).ready(function(s) {
173
  //check if not mobile
174
  if(!(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent))) {
175
  //execute
 
176
  event.preventDefault();
177
  }
178
  });
@@ -300,7 +301,7 @@ SFSI(document).ready(function(s) {
300
  var s = parseInt(SFSI(".sfsi_wDiv").height()) + 15 + "px";
301
  SFSI(".sfsi_holders").each(function() {
302
  SFSI(this).css("height", s);
303
- SFSI(".sfsi_widget").css("min-height", "auto");
304
  });
305
  }, 200);
306
  });
@@ -335,6 +336,7 @@ function sfsi_mobile_wechat_share(url){
335
  }
336
  function sfsi_copy_text_parent_input(event){
337
  var target = jQuery(event.target);
 
338
  input_target= target.parent().parent().parent().find('input');
339
  input_target.select();
340
  document.execCommand('copy');
@@ -414,6 +416,7 @@ function sfsi_widget_set(){
414
  var title_hght = jQuery(this).parent(".widget.sfsi").children(".widget-title").height();
415
  var totl_hght = parseInt( title_hght ) + parseInt( wdgt_hght );
416
  jQuery(this).parent(".widget.sfsi").css("min-height", totl_hght+"px");
 
417
  }
418
  });
419
  }
173
  //check if not mobile
174
  if(!(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent))) {
175
  //execute
176
+ // console.log('abc');
177
  event.preventDefault();
178
  }
179
  });
301
  var s = parseInt(SFSI(".sfsi_wDiv").height()) + 15 + "px";
302
  SFSI(".sfsi_holders").each(function() {
303
  SFSI(this).css("height", s);
304
+ SFSI(".sfsi_widget");
305
  });
306
  }, 200);
307
  });
336
  }
337
  function sfsi_copy_text_parent_input(event){
338
  var target = jQuery(event.target);
339
+ // console.log(target);
340
  input_target= target.parent().parent().parent().find('input');
341
  input_target.select();
342
  document.execCommand('copy');
416
  var title_hght = jQuery(this).parent(".widget.sfsi").children(".widget-title").height();
417
  var totl_hght = parseInt( title_hght ) + parseInt( wdgt_hght );
418
  jQuery(this).parent(".widget.sfsi").css("min-height", totl_hght+"px");
419
+ // console.log('widget');
420
  }
421
  });
422
  }
js/jquery.form.js CHANGED
@@ -901,6 +901,7 @@ $.fn.selected = function(select) {
901
  function log() {
902
  var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');
903
  if (window.console && window.console.log) {
 
904
  }
905
  else if (window.opera && window.opera.postError) {
906
  window.opera.postError(msg);
901
  function log() {
902
  var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');
903
  if (window.console && window.console.log) {
904
+ window.console.log(msg);
905
  }
906
  else if (window.opera && window.opera.postError) {
907
  window.opera.postError(msg);
libs/controllers/sfsi_buttons_controller.php CHANGED
@@ -425,6 +425,8 @@ function sfsi_options_updater5()
425
  $sfsi_icons_size = isset($_POST["sfsi_icons_size"]) ? sanitize_text_field($_POST["sfsi_icons_size"]) : '51';
426
  $sfsi_icons_spacing = isset($_POST["sfsi_icons_spacing"]) ? sanitize_text_field($_POST["sfsi_icons_spacing"]) : '2';
427
  $sfsi_icons_Alignment = isset($_POST["sfsi_icons_Alignment"]) ? sanitize_text_field($_POST["sfsi_icons_Alignment"]) : 'center';
 
 
428
 
429
  $sfsi_icons_perRow = isset($_POST["sfsi_icons_perRow"]) ? sanitize_text_field($_POST["sfsi_icons_perRow"]) : '5';
430
  $sfsi_icons_ClickPageOpen = isset($_POST["sfsi_icons_ClickPageOpen"]) ? sanitize_text_field($_POST["sfsi_icons_ClickPageOpen"]) : 'no';
@@ -485,6 +487,8 @@ function sfsi_options_updater5()
485
  'sfsi_icons_size' => intval($sfsi_icons_size),
486
  'sfsi_icons_spacing' => intval($sfsi_icons_spacing),
487
  'sfsi_icons_Alignment' => sanitize_text_field($sfsi_icons_Alignment),
 
 
488
  'sfsi_icons_perRow' => intval($sfsi_icons_perRow),
489
  'sfsi_icons_ClickPageOpen' => sanitize_text_field($sfsi_icons_ClickPageOpen),
490
  'sfsi_icons_suppress_errors' => sanitize_text_field($sfsi_icons_suppress_errors),
@@ -526,7 +530,6 @@ function sfsi_options_updater5()
526
  if ("yes" == $sfsi_icons_suppress_errors) {
527
  update_option('sfsi_error_reporting_notice_dismissed', false);
528
  }
529
-
530
  update_option('sfsi_section5_options', serialize($up_option5));
531
  header('Content-Type: application/json');
532
  echo json_encode(array("success"));
@@ -1367,52 +1370,36 @@ function sfsi_get_feed_id()
1367
  }
1368
  wp_die();
1369
  }
1370
- /* save settings for save export */
1371
- add_action('wp_ajax_save_export', 'sfsi_save_export');
1372
- function sfsi_save_export()
1373
- {
1374
  $option1 = unserialize(get_option('sfsi_section1_options', false));
1375
- $option2 = unserialize(get_option('sfsi_section2_options', false));
1376
- $option3 = unserialize(get_option('sfsi_section3_options', false));
1377
- $option4 = unserialize(get_option('sfsi_section4_options', false));
1378
- $option5 = unserialize(get_option('sfsi_section5_options', false));
1379
- $option6 = unserialize(get_option('sfsi_section6_options', false));
1380
- $option7 = unserialize(get_option('sfsi_section7_options', false));
1381
- $option8 = unserialize(get_option('sfsi_section8_options', false));
1382
  $option9 = unserialize(get_option('sfsi_section9_options', false));
1383
- $sfsi_new_show_notification = get_option("sfsi_new_show_notification");
1384
- $sfsi_show_notification = get_option("sfsi_show_notification");
1385
- $sfsi_footer_sec = get_option("sfsi_footer_sec");
1386
- $sfsi_new_show_notification = get_option("sfsi_new_show_notification");
1387
- $sfsi_pluginVersion = get_option("sfsi_pluginVersion");
1388
- $sfsi_show_Setting_mobile_notification = get_option("sfsi_show_Setting_mobile_notification");
1389
- $sfsi_installDate = get_option("sfsi_installDate");
1390
 
1391
- /* size and spacing of icons */
1392
  $save_export_options = array(
1393
- 'option1' => $option1,
1394
- 'option2' => $option2,
1395
- 'option3' => $option3,
1396
- 'option4' => $option4,
1397
- 'option5' => $option5,
1398
- 'option6' => $option6,
1399
- 'option7' => $option7,
1400
- 'option8' => $option8,
1401
- 'option9' => $option9,
1402
- 'sfsi_new_show_notification' => $sfsi_new_show_notification,
1403
- 'sfsi_show_notification' => $sfsi_show_notification,
1404
- 'sfsi_footer_sec' => $sfsi_footer_sec,
1405
- 'sfsi_new_show_notification' => $sfsi_new_show_notification,
1406
- 'sfsi_pluginVersion' => $sfsi_pluginVersion,
1407
- 'sfsi_show_Setting_mobile_notification' => $sfsi_show_Setting_mobile_notification,
1408
- 'sfsi_installDate' => $sfsi_installDate
1409
  );
1410
-
1411
  $json = json_encode($save_export_options);
1412
  header('Content-disposition: attachment; filename=file.json');
1413
  header('Content-type: application/json');
1414
  echo $json;
1415
  exit;
1416
- }
1417
 
1418
- ?>
425
  $sfsi_icons_size = isset($_POST["sfsi_icons_size"]) ? sanitize_text_field($_POST["sfsi_icons_size"]) : '51';
426
  $sfsi_icons_spacing = isset($_POST["sfsi_icons_spacing"]) ? sanitize_text_field($_POST["sfsi_icons_spacing"]) : '2';
427
  $sfsi_icons_Alignment = isset($_POST["sfsi_icons_Alignment"]) ? sanitize_text_field($_POST["sfsi_icons_Alignment"]) : 'center';
428
+ $sfsi_icons_Alignment_via_widget = isset($_POST["sfsi_icons_Alignment_via_widget"]) ? sanitize_text_field($_POST["sfsi_icons_Alignment_via_widget"]) : 'center';
429
+ $sfsi_icons_Alignment_via_shortcode = isset($_POST["sfsi_icons_Alignment_via_shortcode"]) ? sanitize_text_field($_POST["sfsi_icons_Alignment_via_shortcode"]) : 'center';
430
 
431
  $sfsi_icons_perRow = isset($_POST["sfsi_icons_perRow"]) ? sanitize_text_field($_POST["sfsi_icons_perRow"]) : '5';
432
  $sfsi_icons_ClickPageOpen = isset($_POST["sfsi_icons_ClickPageOpen"]) ? sanitize_text_field($_POST["sfsi_icons_ClickPageOpen"]) : 'no';
487
  'sfsi_icons_size' => intval($sfsi_icons_size),
488
  'sfsi_icons_spacing' => intval($sfsi_icons_spacing),
489
  'sfsi_icons_Alignment' => sanitize_text_field($sfsi_icons_Alignment),
490
+ 'sfsi_icons_Alignment_via_widget' => sanitize_text_field($sfsi_icons_Alignment_via_widget),
491
+ 'sfsi_icons_Alignment_via_shortcode' => sanitize_text_field($sfsi_icons_Alignment_via_shortcode),
492
  'sfsi_icons_perRow' => intval($sfsi_icons_perRow),
493
  'sfsi_icons_ClickPageOpen' => sanitize_text_field($sfsi_icons_ClickPageOpen),
494
  'sfsi_icons_suppress_errors' => sanitize_text_field($sfsi_icons_suppress_errors),
530
  if ("yes" == $sfsi_icons_suppress_errors) {
531
  update_option('sfsi_error_reporting_notice_dismissed', false);
532
  }
 
533
  update_option('sfsi_section5_options', serialize($up_option5));
534
  header('Content-Type: application/json');
535
  echo json_encode(array("success"));
1370
  }
1371
  wp_die();
1372
  }
1373
+
1374
+ add_action('wp_ajax_sfsi_save_export', 'sfsi_save_export');
1375
+ function sfsi_save_export(){
 
1376
  $option1 = unserialize(get_option('sfsi_section1_options', false));
1377
+ $option2 = unserialize(get_option('sfsi_section2_options', false));
1378
+ $option3 = unserialize(get_option('sfsi_section3_options', false));
1379
+ $option4 = unserialize(get_option('sfsi_section4_options', false));
1380
+ $option5 = unserialize(get_option('sfsi_section5_options', false));
1381
+ $option6 = unserialize(get_option('sfsi_section6_options', false));
1382
+ $option7 = unserialize(get_option('sfsi_section7_options', false));
1383
+ $option8 = unserialize(get_option('sfsi_section8_options', false));
1384
  $option9 = unserialize(get_option('sfsi_section9_options', false));
1385
+ $sfsi_pluginVersion = get_option("sfsi_installDate");
 
 
 
 
 
 
1386
 
 
1387
  $save_export_options = array(
1388
+ 'option1' => $option1,
1389
+ 'option2' => $option2,
1390
+ 'option3' => $option3,
1391
+ 'option4' => $option4,
1392
+ 'option5' => $option5,
1393
+ 'option6' => $option6,
1394
+ 'option7' => $option7,
1395
+ 'option8' => $option8,
1396
+ 'option9' => $option9,
1397
+ 'sfsi_pluginVersion' => $sfsi_pluginVersion,
 
 
 
 
 
 
1398
  );
 
1399
  $json = json_encode($save_export_options);
1400
  header('Content-disposition: attachment; filename=file.json');
1401
  header('Content-type: application/json');
1402
  echo $json;
1403
  exit;
 
1404
 
1405
+ }
libs/controllers/sfsi_class_theme_check.php CHANGED
@@ -1,540 +1,540 @@
1
- <?php
2
-
3
- class sfsi_ThemeCheck
4
- {
5
- public $metaArray = null;
6
- public function sfsi_plus_string_to_arr($str){
7
-
8
- $arrSingleQuote = array();
9
-
10
- if(strlen(trim($str))>0){
11
- $arrSingleQuote = explode(",", $str);
12
- }
13
- return $arrSingleQuote;
14
- }
15
-
16
- public function sfsi_plus_getdomain($url)
17
- {
18
- $pieces = parse_url($url);
19
- $domain = isset($pieces['host']) ? $pieces['host'] : '';
20
- if (preg_match('/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.[a-z\.]{2,6})$/i', $domain, $regs)) {
21
- return $regs['domain'];
22
- }
23
- return false;
24
- }
25
-
26
- public function sfsi_plus_returningElement($element) {return $element[0];}
27
-
28
- public function sfsi_plus_get_themeData(){
29
-
30
- $keywordFile = SFSI_DOCROOT."/themedata.csv";
31
- $keywordData = @file_get_contents($keywordFile);
32
- $keywordEnglish = array_map("str_getcsv", explode("\n", $keywordData));
33
- $themeDataArr = array();
34
-
35
- if(isset($keywordEnglish) && is_array($keywordEnglish) && count($keywordEnglish)>0){
36
-
37
- unset($keywordEnglish[0]);
38
-
39
- $finalArr = array_filter(array_values($keywordEnglish));
40
-
41
- if(isset($finalArr) && is_array($finalArr) && count($finalArr)>0){
42
-
43
- for($i=0;$i<count($finalArr);$i++) {
44
-
45
- if( is_array($finalArr[$i])
46
-
47
- // Theme name should be non-empty
48
- && isset($finalArr[$i][0]) && !empty($finalArr[$i][0])
49
- ){
50
-
51
- $arrVal = $finalArr[$i];
52
-
53
- $themeArr = array();
54
- $themeArr['themeName'] = preg_replace('/^[,\s]+|[\s,]+$/', '', trim($arrVal[0]));
55
- $themeArr['noBrainerKeywords'] = $this->sfsi_plus_string_to_arr(preg_replace('/^[,\s]+|[\s,]+$/', '', trim($arrVal[1])));
56
- $themeArr['separateKeywords'] = $this->sfsi_plus_string_to_arr(preg_replace('/^[,\s]+|[\s,]+$/', '', trim($arrVal[2])));
57
- $themeArr['negativeKeywords'] = $this->sfsi_plus_string_to_arr(preg_replace('/^[,\s]+|[\s,]+$/', '', trim($arrVal[3])));
58
- $themeArr['headline'] = (isset($arrVal[6]) && strlen(trim($arrVal[6]))==0)? "You like ".trim($arrVal[0])." ?" : trim($arrVal[6]);
59
- $themeArr['themeLink'] = trim($arrVal[8]);
60
- $themeArr['bottomtext'] = (isset($arrVal[10]) && strlen(trim($arrVal[10]))==0)? "See all ".strtolower(trim($arrVal[0]))."-themed-icons": trim($arrVal[10]);
61
-
62
- array_push($themeDataArr, (object)$themeArr);
63
- }
64
- }
65
- }
66
- }
67
-
68
- return $themeDataArr;
69
- }
70
-
71
- public function sfsi_plus_get_keywordEnglish(){
72
- $keywordFile = SFSI_DOCROOT."/All_english_words_better_list.csv";
73
- $keywordData = @file_get_contents($keywordFile);
74
- $keywordEnglish = array_map("str_getcsv", explode("\n", $keywordData));
75
- $keywordEnglish = array_map('array_filter', $keywordEnglish);
76
- $keywordEnglish = array_filter(array_map(sfsi_returningElement($element), $keywordEnglish));
77
- return $keywordEnglish;
78
- }
79
- public function sfsi_plus_regex_for_keywords($arrKeyWords){
80
-
81
- $strRegex = "";
82
-
83
- if(isset($arrKeyWords) && is_array($arrKeyWords) && count($arrKeyWords)>0 && is_array($arrKeyWords)){
84
-
85
- $count = count($arrKeyWords);
86
-
87
- if($count==1){
88
- $strRegex .= "/".$arrKeyWords[0]."/im";
89
- }
90
- else{
91
- for ($i=0; $i <$count ; $i++) {
92
-
93
- $val = trim($arrKeyWords[$i]);
94
-
95
- if($i==0){
96
- $strRegex .= "/(".$val."|";
97
- }
98
- elseif ($i==$count-1) {
99
- $strRegex .= $val.")/im";
100
- }
101
- else{
102
- $strRegex.= $val."|";
103
- }
104
- }
105
- }
106
- }
107
- return $strRegex;
108
- }
109
-
110
- public function sfsi_plus_regex_forNegative_keywords($arrKeyWords){
111
-
112
- $strRegex = "";
113
-
114
- if(isset($arrKeyWords) && is_array($arrKeyWords) && count($arrKeyWords)>0 && is_array($arrKeyWords)){
115
-
116
- $count = count($arrKeyWords);
117
-
118
- if($count==1){
119
- $strRegex .= "/".$arrKeyWords[0]."/i";
120
- }
121
- else{
122
-
123
- for ($i=0; $i <$count ; $i++) {
124
-
125
- $val = trim($arrKeyWords[$i]);
126
-
127
- if($i==0){
128
- $strRegex .= "/".$val."|";
129
- }
130
- elseif ($i==$count-1) {
131
- $strRegex .= $val."/i";
132
- }
133
- else{
134
- $strRegex.= $val."|";
135
- }
136
- }
137
- }
138
- }
139
- return $strRegex;
140
- }
141
-
142
- public function sfsi_plus_match_separate_word_with_csv_data($seprateWord,$domainname){
143
- $keywordEnglish = $this->sfsi_plus_get_keywordEnglish();
144
-
145
- $finalKeywordEnglish = array();
146
-
147
- foreach ($keywordEnglish as $val) {
148
- if(is_array($val)) {
149
- array_push($finalKeywordEnglish, $val[0]);
150
- }
151
- }
152
-
153
- $catflag = false;
154
-
155
- $explode = explode($seprateWord,$domainname);
156
- $left = trim($explode[0]);
157
- $right = trim($explode[1]);
158
-
159
- $leftcatflag = false;
160
-
161
- if(!empty($left))
162
- {
163
- $left = str_split($left);
164
-
165
- $matchKeyword = ''; $j = 0;
166
- for($i = (count($left)-1); $i >= 0; $i--)
167
- {
168
- $matchKeyword = $left[$i].$matchKeyword;
169
-
170
- if($j > 0)
171
- {
172
- if(in_array($matchKeyword, $finalKeywordEnglish))
173
- {
174
- $leftcatflag = true;
175
- break;
176
- }
177
- else
178
- {
179
- continue;
180
- }
181
- }
182
- else
183
- {
184
- if(preg_match("/\.|\-|[0-9]/im", $matchKeyword))
185
- {
186
- $leftcatflag = true;
187
- break;
188
- }
189
- }
190
-
191
- $j++;
192
- }
193
- }
194
-
195
- $rightcatflag = false;
196
- if(!empty($right))
197
- {
198
- $right = str_split($right);
199
-
200
- $matchKeyword = '';
201
- for($i = 0; $i < count($right); $i++)
202
- {
203
- $matchKeyword .= $right[$i];
204
-
205
- if($i > 0)
206
- {
207
- if(in_array($matchKeyword, $finalKeywordEnglish))
208
- {
209
- $rightcatflag = true;
210
- break;
211
- }
212
- else
213
- {
214
- continue;
215
- }
216
- }
217
- else
218
- {
219
- if(preg_match("/\.|\-|[0-9]/im", $matchKeyword))
220
- {
221
- $rightcatflag = true;
222
- break;
223
- }
224
- }
225
- }
226
- }
227
-
228
- if(empty($left) && empty($right))
229
- {
230
- $catflag = true;
231
- }
232
- else
233
- {
234
- if(!empty($left) && !empty($right))
235
- {
236
- if($rightcatflag && $leftcatflag)
237
- {
238
- $catflag = true;
239
- }
240
- }
241
- elseif(empty($left) && !empty($right))
242
- {
243
- if($rightcatflag)
244
- {
245
- $catflag = true;
246
- }
247
- }
248
- elseif(!empty($left) && empty($right))
249
- {
250
- if($leftcatflag)
251
- {
252
- $catflag = true;
253
- }
254
- }
255
- }
256
-
257
- return $catflag;
258
- }
259
-
260
- public function sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$domainname){
261
-
262
- $boolSeparateWord = false;
263
-
264
- if(isset($arrSeparateKeywords) && is_array($arrSeparateKeywords) && count($arrSeparateKeywords)>0){
265
-
266
- foreach ($arrSeparateKeywords as $value) {
267
-
268
- $val = trim($value);
269
-
270
- if(isset($value) && strlen($val)>0){
271
-
272
- if(preg_match("/(".$val.")/im", $domainname)){
273
-
274
- $boolSeparateWord = $this->sfsi_plus_match_separate_word_with_csv_data($val,$domainname);
275
-
276
- if($boolSeparateWord) {
277
- break;
278
- }
279
-
280
- }
281
- }
282
- }
283
- }
284
-
285
- return $boolSeparateWord;
286
- }
287
-
288
- public function sfsi_plus_MetaKeywordCheck($arrSeparateKeywords,$domainname){
289
- $keywordInMeta = false;
290
- $metaArray = $this->sfsi_plus_GetMetaName($domainname);
291
- foreach($metaArray as $index=>$meta){
292
- if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $domainname)){
293
- $flag = true;
294
- }
295
- else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$domainname)){
296
- $flag = true;
297
- }
298
- }
299
- return $keywordInMeta;
300
- }
301
-
302
- public function sfsi_plus_GetMetaKeywords($domainname){
303
- $url = get_bloginfo('url');
304
- $res= wp_remote_get($url);
305
- $meta_local = array("title"=>array(),"description"=>array(),"keyword"=>array());
306
- if ( is_array( $res ) && ! is_wp_error( $res ) ) {
307
- $body = $res['body']; // use the content
308
- $meta = array();
309
- if(false==class_exists("DomDocument")) {
310
- $metas=array();
311
- preg_match_all( '/\<meta.+name="(\w*)".+content="(.*)"/i', $body, $metas);
312
- preg_match_all( '/\<meta.+property="og:(\w*)".+content="(.*)"/i', $body, $metas2);
313
- // $metas[1]=array_merge($metas[1],$metas2[1]);
314
- // $metas[2]=array_merge($metas[2],$metas2[2]);
315
- if(isset($metas)&&is_array($metas)&&isset($metas[1])&&isset($metas[2])){
316
- foreach($metas[1] as $index=>$meta_name){
317
- if($meta_name==="keywords" && isset($metas[2][$index])) {
318
- $meta['keywords']=$metas[2][$index];
319
- }
320
- if($meta_name === "description" && isset($metas[2][$index])){
321
- $meta['description']=$metas[2][$index];
322
- }
323
- }
324
- }
325
- if(isset($metas2)&&is_array($metas2)&&isset($metas2[1])&&isset($metas2[2])){
326
- foreach($metas2[1] as $index=>$meta_name){
327
- // var_dump($meta_name,$meta_name === "description" ,$metas2[2][$index]);
328
- if($meta_name==="keywords" && isset($metas2[2][$index])) {
329
- $meta[$meta_name]=$metas2[2][$index];
330
- }
331
- if($meta_name === "description" && isset($metas2[2][$index])&&!isset($meta[$meta_name])){
332
- $meta[$meta_name]=$metas2[2][$index];
333
- }
334
- }
335
- }
336
- // var_dump($meta);die();
337
- if(isset($meta['keywords'])){
338
- $meta_local["keyword"]=array_filter(explode(',',$meta['keywords']),function($data){
339
- return $data!=="";
340
- });
341
- }
342
- if(isset($meta['description'])){
343
- $meta['description']=preg_replace("/[^A-Za-z ]/", '', strtolower($meta['description']));
344
- $meta_local["description"]=array_filter(explode( '\s+',$meta['description']),function($data){
345
- return $data!=="";
346
- });
347
- }
348
- $preg_res=preg_match("/<title>(.+)<\/title>/i", $body, $matches);
349
- if($preg_res){
350
- $meta['title']=preg_replace("/[^A-Za-z ]/", '', strtolower($matches[1]));
351
- $meta_local["title"]=array_filter(explode('\s+',$meta['title']),function($data){
352
- return $data!=="";
353
- });
354
- }
355
-
356
- }else{
357
- $doc = new \DOMDocument();
358
- @$doc->loadHTML($body);
359
- $nodes = $doc->getElementsByTagName('meta');
360
- foreach($nodes as $index=>$node){
361
- if(null!==$node->getAttribute('name')) {
362
- $meta[$node->getAttribute('name')]=$node->getAttribute('content');
363
- }elseif(null!==$node->getAttribute('property')){
364
- $meta[$node->getAttribute('property')]=$node->getAttribute('content');
365
- }
366
- }
367
- $meta['title'] = (null!==$doc->getElementsByTagName('title'))&&count($doc->getElementsByTagName('title'))>0?$doc->getElementsByTagName('title')->item(0)->nodeValue:'';
368
- if(isset($meta['keywords'])) {
369
- $meta_local["keyword"]=array_filter(explode(',',$meta['keywords']),function($data){
370
- return $data!=="";
371
- });
372
- }
373
- if(isset($meta['description'])){
374
- $meta['description']=preg_replace("/[^A-Za-z ]/", '', strtolower($meta['description']));
375
- $meta_local["description"]=array_filter(explode( '\s+',$meta['description']),function($data){
376
- return $data!=="";
377
- });
378
- }
379
- if(count($meta_local["description"])==0 && isset($meta['og:description'])){
380
- $meta['description']=preg_replace("/[^A-Za-z ]/", '', strtolower($meta['og:description']));
381
- $meta_local["description"]=array_filter(explode( '\s+',$meta['description']),function($data){
382
- return $data!=="";
383
- });
384
- }
385
- if(isset($meta['title'])){
386
- $meta['title']=preg_replace("/[^A-Za-z ]/", '', strtolower($meta['title']));
387
- // var_dump($meta['title']);die();
388
- $meta_local["title"]= array_filter(explode('\s+',$meta['title']),function($data){
389
- return $data!=="";
390
- });
391
- }
392
- }
393
- }
394
- return $meta_local;
395
- }
396
-
397
- public function sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords,$domainname){
398
-
399
- $bflag = false;
400
-
401
- if(isset($arrNoBrainerKeywords) && is_array($arrNoBrainerKeywords) && count($arrNoBrainerKeywords)>0 && is_array($arrNoBrainerKeywords)>0){
402
-
403
- if(preg_match($this->sfsi_plus_regex_for_keywords($arrNoBrainerKeywords), $domainname)){
404
- $bflag = true;
405
- }
406
- }
407
- return $bflag;
408
- }
409
-
410
- public function sfsi_plus_check_type_of_websiteWithNoBrainerAndSeparateAndNegativeKeywords($strCheckForThemeType,$arrNoBrainerKeywords,$arrSeparateKeywords,$arrNoBrainerAndSeparateKeywords,$arrNegativeKeywords,$domainname){
411
-
412
- $flag = false;
413
-
414
- if(isset($arrNoBrainerAndSeparateKeywords) && is_array($arrNoBrainerAndSeparateKeywords) && count($arrNoBrainerAndSeparateKeywords)>0){
415
-
416
- if(preg_match($this->sfsi_plus_regex_for_keywords($arrNoBrainerAndSeparateKeywords), $domainname))
417
- {
418
- if(!empty($domainname))
419
- {
420
- if(isset($arrNegativeKeywords) && is_array($arrNegativeKeywords) && count($arrNegativeKeywords)){
421
- $domainname = preg_replace($this->sfsi_plus_regex_forNegative_keywords($arrNegativeKeywords), '', $domainname);
422
- $explode = explode(".", $domainname);
423
- $domainname = @$explode[0];
424
- }
425
- }
426
-
427
- if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $domainname)){
428
- $flag = true;
429
- }
430
- else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$domainname)){
431
- $flag = true;
432
- }
433
- }
434
- }
435
- return ($flag)? $strCheckForThemeType:$flag;
436
- }
437
-
438
- public function sfsi_plus_check_type_of_metaTitleWithNoBrainerAndSeparateAndNegativeKeywords($strCheckForThemeType,$arrNoBrainerKeywords,$arrSeparateKeywords,$arrNoBrainerAndSeparateKeywords,$arrNegativeKeywords,$domainname){
439
- $flag = false;
440
-
441
- if(isset($arrNoBrainerAndSeparateKeywords) && is_array($arrNoBrainerAndSeparateKeywords) && count($arrNoBrainerAndSeparateKeywords)>0){
442
-
443
- if(null==$this->metaArray){
444
- $this->metaArray = $this->sfsi_plus_GetMetaKeywords($domainname);
445
- }
446
- foreach($this->metaArray["title"] as $index=>$keyword){
447
- if(!empty($keyword))
448
- {
449
- if(isset($arrNegativeKeywords) && is_array($arrNegativeKeywords) && count($arrNegativeKeywords)){
450
- $keyword = preg_replace($this->sfsi_plus_regex_forNegative_keywords($arrNegativeKeywords), '', $keyword);
451
- }
452
- }
453
- if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $keyword)){
454
- $flag = true;
455
- }
456
- else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$keyword)){
457
- $flag = true;
458
- }
459
- }
460
- }
461
- return ($flag)? $strCheckForThemeType:$flag;
462
- }
463
- public function sfsi_plus_check_type_of_metaKeywordsWithNoBrainerAndSeparateAndNegativeKeywords($strCheckForThemeType,$arrNoBrainerKeywords,$arrSeparateKeywords,$arrNoBrainerAndSeparateKeywords,$arrNegativeKeywords,$domainname){
464
- $flag = false;
465
-
466
- if(isset($arrNoBrainerAndSeparateKeywords) && is_array($arrNoBrainerAndSeparateKeywords) && count($arrNoBrainerAndSeparateKeywords)>0){
467
-
468
- if(null==$this->metaArray){
469
- $this->metaArray = $this->sfsi_plus_GetMetaKeywords($domainname);
470
- }
471
- foreach($this->metaArray["keyword"] as $index=>$keyword){
472
- if(!empty($keyword))
473
- {
474
- if(isset($arrNegativeKeywords) && is_array($arrNegativeKeywords) && count($arrNegativeKeywords)){
475
- $keyword = preg_replace($this->sfsi_plus_regex_forNegative_keywords($arrNegativeKeywords), '', $keyword);
476
- }
477
- }
478
- if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $keyword)){
479
- $flag = true;
480
- }
481
- else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$keyword)){
482
- $flag = true;
483
- }
484
- }
485
- }
486
- return ($flag)? $strCheckForThemeType:$flag;
487
- }
488
- public function sfsi_plus_check_type_of_metaDescriptionWithNoBrainerAndSeparateAndNegativeKeywords($strCheckForThemeType,$arrNoBrainerKeywords,$arrSeparateKeywords,$arrNoBrainerAndSeparateKeywords,$arrNegativeKeywords,$domainname){
489
- $flag = false;
490
-
491
- if(isset($arrNoBrainerAndSeparateKeywords) && is_array($arrNoBrainerAndSeparateKeywords) && count($arrNoBrainerAndSeparateKeywords)>0){
492
-
493
- if(null==$this->metaArray){
494
- $this->metaArray = $this->sfsi_plus_GetMetaKeywords($domainname);
495
- }
496
- foreach($this->metaArray["description"] as $index=>$keyword){
497
- if(!empty($keyword))
498
- {
499
- if(isset($arrNegativeKeywords) && is_array($arrNegativeKeywords) && count($arrNegativeKeywords)){
500
- $keyword = preg_replace($this->sfsi_plus_regex_forNegative_keywords($arrNegativeKeywords), '', $keyword);
501
- }
502
- }
503
- if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $keyword)){
504
- $flag = true;
505
- }
506
- else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$keyword)){
507
- $flag = true;
508
- }
509
- }
510
- }
511
- return ($flag)? $strCheckForThemeType:$flag;
512
- }
513
-
514
- public function sfsi_plus_bannereHtml($title, $siteLink, $bannerImage, $buttonTitle)
515
- {
516
- echo '<div class="sfsi_new_notification_cat">
517
- <div class="sfsi_new_notification_header_cat">
518
- <h1>'.$title.'</h1>
519
- <h3>The <a href="'.$siteLink.'" target="_blank">Premium Plugin</a> Includes these icons...</h3>
520
- <div class="sfsi_new_notification_cross_cat">X</div>
521
- </div>
522
-
523
- <div class="sfsi_new_notification_body_link_cat">
524
- <a href="'.$siteLink.'" target="_blank">
525
- <div class="sfsi_new_notification_body_cat">
526
- <div class="sfsi_new_notification_image_cat">
527
- <img src="'.$bannerImage.'" id="newImg" alt="Banner" />
528
- </div>
529
- </div>
530
- </a>
531
- <div class="bottom_text">
532
- <a href="'.$siteLink.'">
533
- '.$buttonTitle.' >
534
- </a>
535
- </div>
536
- </div>
537
- </div>';
538
- }
539
- }
540
  ?>
1
+ <?php
2
+
3
+ class sfsi_ThemeCheck
4
+ {
5
+ public $metaArray = null;
6
+ public function sfsi_plus_string_to_arr($str){
7
+
8
+ $arrSingleQuote = array();
9
+
10
+ if(strlen(trim($str))>0){
11
+ $arrSingleQuote = explode(",", $str);
12
+ }
13
+ return $arrSingleQuote;
14
+ }
15
+
16
+ public function sfsi_plus_getdomain($url)
17
+ {
18
+ $pieces = parse_url($url);
19
+ $domain = isset($pieces['host']) ? $pieces['host'] : '';
20
+ if (preg_match('/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.[a-z\.]{2,6})$/i', $domain, $regs)) {
21
+ return $regs['domain'];
22
+ }
23
+ return false;
24
+ }
25
+
26
+ public function sfsi_plus_returningElement($element) {return $element[0];}
27
+
28
+ public function sfsi_plus_get_themeData(){
29
+
30
+ $keywordFile = SFSI_DOCROOT."/themedata.csv";
31
+ $keywordData = @file_get_contents($keywordFile);
32
+ $keywordEnglish = array_map("str_getcsv", explode("\n", $keywordData));
33
+ $themeDataArr = array();
34
+
35
+ if(isset($keywordEnglish) && is_array($keywordEnglish) && count($keywordEnglish)>0){
36
+
37
+ unset($keywordEnglish[0]);
38
+
39
+ $finalArr = array_filter(array_values($keywordEnglish));
40
+
41
+ if(isset($finalArr) && is_array($finalArr) && count($finalArr)>0){
42
+
43
+ for($i=0;$i<count($finalArr);$i++) {
44
+
45
+ if( is_array($finalArr[$i])
46
+
47
+ // Theme name should be non-empty
48
+ && isset($finalArr[$i][0]) && !empty($finalArr[$i][0])
49
+ ){
50
+
51
+ $arrVal = $finalArr[$i];
52
+
53
+ $themeArr = array();
54
+ $themeArr['themeName'] = preg_replace('/^[,\s]+|[\s,]+$/', '', trim($arrVal[0]));
55
+ $themeArr['noBrainerKeywords'] = $this->sfsi_plus_string_to_arr(preg_replace('/^[,\s]+|[\s,]+$/', '', trim($arrVal[1])));
56
+ $themeArr['separateKeywords'] = $this->sfsi_plus_string_to_arr(preg_replace('/^[,\s]+|[\s,]+$/', '', trim($arrVal[2])));
57
+ $themeArr['negativeKeywords'] = $this->sfsi_plus_string_to_arr(preg_replace('/^[,\s]+|[\s,]+$/', '', trim($arrVal[3])));
58
+ $themeArr['headline'] = (isset($arrVal[6]) && strlen(trim($arrVal[6]))==0)? "You like ".trim($arrVal[0])." ?" : trim($arrVal[6]);
59
+ $themeArr['themeLink'] = trim($arrVal[8]);
60
+ $themeArr['bottomtext'] = (isset($arrVal[10]) && strlen(trim($arrVal[10]))==0)? "See all ".strtolower(trim($arrVal[0]))."-themed-icons": trim($arrVal[10]);
61
+
62
+ array_push($themeDataArr, (object)$themeArr);
63
+ }
64
+ }
65
+ }
66
+ }
67
+
68
+ return $themeDataArr;
69
+ }
70
+
71
+ public function sfsi_plus_get_keywordEnglish(){
72
+ $keywordFile = SFSI_DOCROOT."/All_english_words_better_list.csv";
73
+ $keywordData = @file_get_contents($keywordFile);
74
+ $keywordEnglish = array_map("str_getcsv", explode("\n", $keywordData));
75
+ $keywordEnglish = array_map('array_filter', $keywordEnglish);
76
+ $keywordEnglish = array_filter(array_map(sfsi_returningElement($element), $keywordEnglish));
77
+ return $keywordEnglish;
78
+ }
79
+ public function sfsi_plus_regex_for_keywords($arrKeyWords){
80
+
81
+ $strRegex = "";
82
+
83
+ if(isset($arrKeyWords) && is_array($arrKeyWords) && count($arrKeyWords)>0 && is_array($arrKeyWords)){
84
+
85
+ $count = count($arrKeyWords);
86
+
87
+ if($count==1){
88
+ $strRegex .= "/".$arrKeyWords[0]."/im";
89
+ }
90
+ else{
91
+ for ($i=0; $i <$count ; $i++) {
92
+
93
+ $val = trim($arrKeyWords[$i]);
94
+
95
+ if($i==0){
96
+ $strRegex .= "/(".$val."|";
97
+ }
98
+ elseif ($i==$count-1) {
99
+ $strRegex .= $val.")/im";
100
+ }
101
+ else{
102
+ $strRegex.= $val."|";
103
+ }
104
+ }
105
+ }
106
+ }
107
+ return $strRegex;
108
+ }
109
+
110
+ public function sfsi_plus_regex_forNegative_keywords($arrKeyWords){
111
+
112
+ $strRegex = "";
113
+
114
+ if(isset($arrKeyWords) && is_array($arrKeyWords) && count($arrKeyWords)>0 && is_array($arrKeyWords)){
115
+
116
+ $count = count($arrKeyWords);
117
+
118
+ if($count==1){
119
+ $strRegex .= "/".$arrKeyWords[0]."/i";
120
+ }
121
+ else{
122
+
123
+ for ($i=0; $i <$count ; $i++) {
124
+
125
+ $val = trim($arrKeyWords[$i]);
126
+
127
+ if($i==0){
128
+ $strRegex .= "/".$val."|";
129
+ }
130
+ elseif ($i==$count-1) {
131
+ $strRegex .= $val."/i";
132
+ }
133
+ else{
134
+ $strRegex.= $val."|";
135
+ }
136
+ }
137
+ }
138
+ }
139
+ return $strRegex;
140
+ }
141
+
142
+ public function sfsi_plus_match_separate_word_with_csv_data($seprateWord,$domainname){
143
+ $keywordEnglish = $this->sfsi_plus_get_keywordEnglish();
144
+
145
+ $finalKeywordEnglish = array();
146
+
147
+ foreach ($keywordEnglish as $val) {
148
+ if(is_array($val)) {
149
+ array_push($finalKeywordEnglish, $val[0]);
150
+ }
151
+ }
152
+
153
+ $catflag = false;
154
+
155
+ $explode = explode($seprateWord,$domainname);
156
+ $left = trim($explode[0]);
157
+ $right = trim($explode[1]);
158
+
159
+ $leftcatflag = false;
160
+
161
+ if(!empty($left))
162
+ {
163
+ $left = str_split($left);
164
+
165
+ $matchKeyword = ''; $j = 0;
166
+ for($i = (count($left)-1); $i >= 0; $i--)
167
+ {
168
+ $matchKeyword = $left[$i].$matchKeyword;
169
+
170
+ if($j > 0)
171
+ {
172
+ if(in_array($matchKeyword, $finalKeywordEnglish))
173
+ {
174
+ $leftcatflag = true;
175
+ break;
176
+ }
177
+ else
178
+ {
179
+ continue;
180
+ }
181
+ }
182
+ else
183
+ {
184
+ if(preg_match("/\.|\-|[0-9]/im", $matchKeyword))
185
+ {
186
+ $leftcatflag = true;
187
+ break;
188
+ }
189
+ }
190
+
191
+ $j++;
192
+ }
193
+ }
194
+
195
+ $rightcatflag = false;
196
+ if(!empty($right))
197
+ {
198
+ $right = str_split($right);
199
+
200
+ $matchKeyword = '';
201
+ for($i = 0; $i < count($right); $i++)
202
+ {
203
+ $matchKeyword .= $right[$i];
204
+
205
+ if($i > 0)
206
+ {
207
+ if(in_array($matchKeyword, $finalKeywordEnglish))
208
+ {
209
+ $rightcatflag = true;
210
+ break;
211
+ }
212
+ else
213
+ {
214
+ continue;
215
+ }
216
+ }
217
+ else
218
+ {
219
+ if(preg_match("/\.|\-|[0-9]/im", $matchKeyword))
220
+ {
221
+ $rightcatflag = true;
222
+ break;
223
+ }
224
+ }
225
+ }
226
+ }
227
+
228
+ if(empty($left) && empty($right))
229
+ {
230
+ $catflag = true;
231
+ }
232
+ else
233
+ {
234
+ if(!empty($left) && !empty($right))
235
+ {
236
+ if($rightcatflag && $leftcatflag)
237
+ {
238
+ $catflag = true;
239
+ }
240
+ }
241
+ elseif(empty($left) && !empty($right))
242
+ {
243
+ if($rightcatflag)
244
+ {
245
+ $catflag = true;
246
+ }
247
+ }
248
+ elseif(!empty($left) && empty($right))
249
+ {
250
+ if($leftcatflag)
251
+ {
252
+ $catflag = true;
253
+ }
254
+ }
255
+ }
256
+
257
+ return $catflag;
258
+ }
259
+
260
+ public function sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$domainname){
261
+
262
+ $boolSeparateWord = false;
263
+
264
+ if(isset($arrSeparateKeywords) && is_array($arrSeparateKeywords) && count($arrSeparateKeywords)>0){
265
+
266
+ foreach ($arrSeparateKeywords as $value) {
267
+
268
+ $val = trim($value);
269
+
270
+ if(isset($value) && strlen($val)>0){
271
+
272
+ if(preg_match("/(".$val.")/im", $domainname)){
273
+
274
+ $boolSeparateWord = $this->sfsi_plus_match_separate_word_with_csv_data($val,$domainname);
275
+
276
+ if($boolSeparateWord) {
277
+ break;
278
+ }
279
+
280
+ }
281
+ }
282
+ }
283
+ }
284
+
285
+ return $boolSeparateWord;
286
+ }
287
+
288
+ public function sfsi_plus_MetaKeywordCheck($arrSeparateKeywords,$domainname){
289
+ $keywordInMeta = false;
290
+ $metaArray = $this->sfsi_plus_GetMetaName($domainname);
291
+ foreach($metaArray as $index=>$meta){
292
+ if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $domainname)){
293
+ $flag = true;
294
+ }
295
+ else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$domainname)){
296
+ $flag = true;
297
+ }
298
+ }
299
+ return $keywordInMeta;
300
+ }
301
+
302
+ public function sfsi_plus_GetMetaKeywords($domainname){
303
+ $url = get_bloginfo('url');
304
+ $res= wp_remote_get($url);
305
+ $meta_local = array("title"=>array(),"description"=>array(),"keyword"=>array());
306
+ if ( is_array( $res ) && ! is_wp_error( $res ) ) {
307
+ $body = $res['body']; // use the content
308
+ $meta = array();
309
+ if(false==class_exists("DomDocument")) {
310
+ $metas=array();
311
+ preg_match_all( '/\<meta.+name="(\w*)".+content="(.*)"/i', $body, $metas);
312
+ preg_match_all( '/\<meta.+property="og:(\w*)".+content="(.*)"/i', $body, $metas2);
313
+ // $metas[1]=array_merge($metas[1],$metas2[1]);
314
+ // $metas[2]=array_merge($metas[2],$metas2[2]);
315
+ if(isset($metas)&&is_array($metas)&&isset($metas[1])&&isset($metas[2])){
316
+ foreach($metas[1] as $index=>$meta_name){
317
+ if($meta_name==="keywords" && isset($metas[2][$index])) {
318
+ $meta['keywords']=$metas[2][$index];
319
+ }
320
+ if($meta_name === "description" && isset($metas[2][$index])){
321
+ $meta['description']=$metas[2][$index];
322
+ }
323
+ }
324
+ }
325
+ if(isset($metas2)&&is_array($metas2)&&isset($metas2[1])&&isset($metas2[2])){
326
+ foreach($metas2[1] as $index=>$meta_name){
327
+ // var_dump($meta_name,$meta_name === "description" ,$metas2[2][$index]);
328
+ if($meta_name==="keywords" && isset($metas2[2][$index])) {
329
+ $meta[$meta_name]=$metas2[2][$index];
330
+ }
331
+ if($meta_name === "description" && isset($metas2[2][$index])&&!isset($meta[$meta_name])){
332
+ $meta[$meta_name]=$metas2[2][$index];
333
+ }
334
+ }
335
+ }
336
+ // var_dump($meta);die();
337
+ if(isset($meta['keywords'])){
338
+ $meta_local["keyword"]=array_filter(explode(',',$meta['keywords']),function($data){
339
+ return $data!=="";
340
+ });
341
+ }
342
+ if(isset($meta['description'])){
343
+ $meta['description']=preg_replace("/[^A-Za-z ]/", '', strtolower($meta['description']));
344
+ $meta_local["description"]=array_filter(explode( '\s+',$meta['description']),function($data){
345
+ return $data!=="";
346
+ });
347
+ }
348
+ $preg_res=preg_match("/<title>(.+)<\/title>/i", $body, $matches);
349
+ if($preg_res){
350
+ $meta['title']=preg_replace("/[^A-Za-z ]/", '', strtolower($matches[1]));
351
+ $meta_local["title"]=array_filter(explode('\s+',$meta['title']),function($data){
352
+ return $data!=="";
353
+ });
354
+ }
355
+
356
+ }else{
357
+ $doc = new \DOMDocument();
358
+ @$doc->loadHTML($body);
359
+ $nodes = $doc->getElementsByTagName('meta');
360
+ foreach($nodes as $index=>$node){
361
+ if(null!==$node->getAttribute('name')) {
362
+ $meta[$node->getAttribute('name')]=$node->getAttribute('content');
363
+ }elseif(null!==$node->getAttribute('property')){
364
+ $meta[$node->getAttribute('property')]=$node->getAttribute('content');
365
+ }
366
+ }
367
+ $meta['title'] = (null!==$doc->getElementsByTagName('title'))&&count($doc->getElementsByTagName('title'))>0?$doc->getElementsByTagName('title')->item(0)->nodeValue:'';
368
+ if(isset($meta['keywords'])) {
369
+ $meta_local["keyword"]=array_filter(explode(',',$meta['keywords']),function($data){
370
+ return $data!=="";
371
+ });
372
+ }
373
+ if(isset($meta['description'])){
374
+ $meta['description']=preg_replace("/[^A-Za-z ]/", '', strtolower($meta['description']));
375
+ $meta_local["description"]=array_filter(explode( '\s+',$meta['description']),function($data){
376
+ return $data!=="";
377
+ });
378
+ }
379
+ if(count($meta_local["description"])==0 && isset($meta['og:description'])){
380
+ $meta['description']=preg_replace("/[^A-Za-z ]/", '', strtolower($meta['og:description']));
381
+ $meta_local["description"]=array_filter(explode( '\s+',$meta['description']),function($data){
382
+ return $data!=="";
383
+ });
384
+ }
385
+ if(isset($meta['title'])){
386
+ $meta['title']=preg_replace("/[^A-Za-z ]/", '', strtolower($meta['title']));
387
+ // var_dump($meta['title']);die();
388
+ $meta_local["title"]= array_filter(explode('\s+',$meta['title']),function($data){
389
+ return $data!=="";
390
+ });
391
+ }
392
+ }
393
+ }
394
+ return $meta_local;
395
+ }
396
+
397
+ public function sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords,$domainname){
398
+
399
+ $bflag = false;
400
+
401
+ if(isset($arrNoBrainerKeywords) && is_array($arrNoBrainerKeywords) && count($arrNoBrainerKeywords)>0 && is_array($arrNoBrainerKeywords)>0){
402
+
403
+ if(preg_match($this->sfsi_plus_regex_for_keywords($arrNoBrainerKeywords), $domainname)){
404
+ $bflag = true;
405
+ }
406
+ }
407
+ return $bflag;
408
+ }
409
+
410
+ public function sfsi_plus_check_type_of_websiteWithNoBrainerAndSeparateAndNegativeKeywords($strCheckForThemeType,$arrNoBrainerKeywords,$arrSeparateKeywords,$arrNoBrainerAndSeparateKeywords,$arrNegativeKeywords,$domainname){
411
+
412
+ $flag = false;
413
+
414
+ if(isset($arrNoBrainerAndSeparateKeywords) && is_array($arrNoBrainerAndSeparateKeywords) && count($arrNoBrainerAndSeparateKeywords)>0){
415
+
416
+ if(preg_match($this->sfsi_plus_regex_for_keywords($arrNoBrainerAndSeparateKeywords), $domainname))
417
+ {
418
+ if(!empty($domainname))
419
+ {
420
+ if(isset($arrNegativeKeywords) && is_array($arrNegativeKeywords) && count($arrNegativeKeywords)){
421
+ $domainname = preg_replace($this->sfsi_plus_regex_forNegative_keywords($arrNegativeKeywords), '', $domainname);
422
+ $explode = explode(".", $domainname);
423
+ $domainname = @$explode[0];
424
+ }
425
+ }
426
+
427
+ if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $domainname)){
428
+ $flag = true;
429
+ }
430
+ else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$domainname)){
431
+ $flag = true;
432
+ }
433
+ }
434
+ }
435
+ return ($flag)? $strCheckForThemeType:$flag;
436
+ }
437
+
438
+ public function sfsi_plus_check_type_of_metaTitleWithNoBrainerAndSeparateAndNegativeKeywords($strCheckForThemeType,$arrNoBrainerKeywords,$arrSeparateKeywords,$arrNoBrainerAndSeparateKeywords,$arrNegativeKeywords,$domainname){
439
+ $flag = false;
440
+
441
+ if(isset($arrNoBrainerAndSeparateKeywords) && is_array($arrNoBrainerAndSeparateKeywords) && count($arrNoBrainerAndSeparateKeywords)>0){
442
+
443
+ if(null==$this->metaArray){
444
+ $this->metaArray = $this->sfsi_plus_GetMetaKeywords($domainname);
445
+ }
446
+ foreach($this->metaArray["title"] as $index=>$keyword){
447
+ if(!empty($keyword))
448
+ {
449
+ if(isset($arrNegativeKeywords) && is_array($arrNegativeKeywords) && count($arrNegativeKeywords)){
450
+ $keyword = preg_replace($this->sfsi_plus_regex_forNegative_keywords($arrNegativeKeywords), '', $keyword);
451
+ }
452
+ }
453
+ if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $keyword)){
454
+ $flag = true;
455
+ }
456
+ else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$keyword)){
457
+ $flag = true;
458
+ }
459
+ }
460
+ }
461
+ return ($flag)? $strCheckForThemeType:$flag;
462
+ }
463
+ public function sfsi_plus_check_type_of_metaKeywordsWithNoBrainerAndSeparateAndNegativeKeywords($strCheckForThemeType,$arrNoBrainerKeywords,$arrSeparateKeywords,$arrNoBrainerAndSeparateKeywords,$arrNegativeKeywords,$domainname){
464
+ $flag = false;
465
+
466
+ if(isset($arrNoBrainerAndSeparateKeywords) && is_array($arrNoBrainerAndSeparateKeywords) && count($arrNoBrainerAndSeparateKeywords)>0){
467
+
468
+ if(null==$this->metaArray){
469
+ $this->metaArray = $this->sfsi_plus_GetMetaKeywords($domainname);
470
+ }
471
+ foreach($this->metaArray["keyword"] as $index=>$keyword){
472
+ if(!empty($keyword))
473
+ {
474
+ if(isset($arrNegativeKeywords) && is_array($arrNegativeKeywords) && count($arrNegativeKeywords)){
475
+ $keyword = preg_replace($this->sfsi_plus_regex_forNegative_keywords($arrNegativeKeywords), '', $keyword);
476
+ }
477
+ }
478
+ if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $keyword)){
479
+ $flag = true;
480
+ }
481
+ else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$keyword)){
482
+ $flag = true;
483
+ }
484
+ }
485
+ }
486
+ return ($flag)? $strCheckForThemeType:$flag;
487
+ }
488
+ public function sfsi_plus_check_type_of_metaDescriptionWithNoBrainerAndSeparateAndNegativeKeywords($strCheckForThemeType,$arrNoBrainerKeywords,$arrSeparateKeywords,$arrNoBrainerAndSeparateKeywords,$arrNegativeKeywords,$domainname){
489
+ $flag = false;
490
+
491
+ if(isset($arrNoBrainerAndSeparateKeywords) && is_array($arrNoBrainerAndSeparateKeywords) && count($arrNoBrainerAndSeparateKeywords)>0){
492
+
493
+ if(null==$this->metaArray){
494
+ $this->metaArray = $this->sfsi_plus_GetMetaKeywords($domainname);
495
+ }
496
+ foreach($this->metaArray["description"] as $index=>$keyword){
497
+ if(!empty($keyword))
498
+ {
499
+ if(isset($arrNegativeKeywords) && is_array($arrNegativeKeywords) && count($arrNegativeKeywords)){
500
+ $keyword = preg_replace($this->sfsi_plus_regex_forNegative_keywords($arrNegativeKeywords), '', $keyword);
501
+ }
502
+ }
503
+ if($this->sfsi_plus_noBrainerKeywordCheck($arrNoBrainerKeywords, $keyword)){
504
+ $flag = true;
505
+ }
506
+ else if($this->sfsi_plus_SeparateKeywordCheck($arrSeparateKeywords,$keyword)){
507
+ $flag = true;
508
+ }
509
+ }
510
+ }
511
+ return ($flag)? $strCheckForThemeType:$flag;
512
+ }
513
+
514
+ public function sfsi_plus_bannereHtml($title, $siteLink, $bannerImage, $buttonTitle)
515
+ {
516
+ echo '<div class="sfsi_new_notification_cat">
517
+ <div class="sfsi_new_notification_header_cat">
518
+ <h1>'.$title.'</h1>
519
+ <h3>The <a href="'.$siteLink.'" target="_blank">Premium Plugin</a> Includes these icons...</h3>
520
+ <div class="sfsi_new_notification_cross_cat">X</div>
521
+ </div>
522
+
523
+ <div class="sfsi_new_notification_body_link_cat">
524
+ <a href="'.$siteLink.'" target="_blank">
525
+ <div class="sfsi_new_notification_body_cat">
526
+ <div class="sfsi_new_notification_image_cat">
527
+ <img src="'.$bannerImage.'" id="newImg" alt="Banner" />
528
+ </div>
529
+ </div>
530
+ </a>
531
+ <div class="bottom_text">
532
+ <a href="'.$siteLink.'">
533
+ '.$buttonTitle.' >
534
+ </a>
535
+ </div>
536
+ </div>
537
+ </div>';
538
+ }
539
+ }
540
  ?>
libs/controllers/sfsi_frontpopUp.php CHANGED
@@ -1,240 +1,242 @@
1
- <?php
2
-
3
- /* show a pop on the as per user chose under section 7 */
4
- function sfsi_frontPopUp()
5
- {
6
- ob_start();
7
- echo sfsi_FrontPopupDiv();
8
- echo $output = ob_get_clean();
9
- }
10
- /* check where to be pop-shown */
11
- function sfsi_check_PopUp($content)
12
- {
13
- global $post;
14
- global $wpdb;
15
-
16
- $content = '';
17
-
18
- $sfsi_section7_options = unserialize(get_option('sfsi_section7_options', false));
19
-
20
- if (isset($sfsi_section7_options['sfsi_Show_popupOn']) && !empty($sfsi_section7_options['sfsi_Show_popupOn'])) {
21
-
22
- if ($sfsi_section7_options['sfsi_Show_popupOn'] == "blogpage") {
23
- if (!is_feed() && !is_home() && !is_page()) {
24
- $content = sfsi_frontPopUp() . $content;
25
- }
26
- } else if ($sfsi_section7_options['sfsi_Show_popupOn'] == "selectedpage") {
27
- if (!empty($post->ID) && !empty($sfsi_section7_options['sfsi_Show_popupOn_PageIDs'])) {
28
- if (is_page() && in_array($post->ID, unserialize($sfsi_section7_options['sfsi_Show_popupOn_PageIDs']))) {
29
- $content = sfsi_frontPopUp() . $content;
30
- }
31
- }
32
- } else if ($sfsi_section7_options['sfsi_Show_popupOn'] == "everypage") {
33
- $content = sfsi_frontPopUp() . $content;
34
- }
35
- }
36
-
37
- /* check for pop times */
38
- if (isset($sfsi_section7_options['sfsi_Shown_pop']) && !empty($sfsi_section7_options['sfsi_Shown_pop']) && $sfsi_section7_options['sfsi_Shown_pop'] == "once") {
39
- $time_popUp = (int) $sfsi_section7_options['sfsi_Shown_popupOnceTime'];
40
- $time_popUp = $time_popUp * 1000;
41
- ob_start();
42
- ?>
43
- <script>
44
-
45
- window.addEventListener('sfsi_functions_loaded', function() {
46
- if (typeof sfsi_time_pop_up == 'function') {
47
- sfsi_time_pop_up(<?php echo $time_popUp ?>);
48
- }
49
- })
50
- </script>
51
- <?php
52
- echo ob_get_clean();
53
- return $content;
54
- }
55
-
56
- if (isset($sfsi_section7_options['sfsi_Shown_pop']) && !empty($sfsi_section7_options['sfsi_Shown_pop'])) {
57
-
58
- if ($sfsi_section7_options['sfsi_Shown_pop'] == "ETscroll") {
59
- $time_popUp = (int) $sfsi_section7_options['sfsi_Shown_popupOnceTime'];
60
- $time_popUp = $time_popUp * 1000;
61
- ob_start();
62
- ?>
63
- <script>
64
- window.addEventListener('sfsi_functions_loaded', function() {
65
- if (typeof sfsi_responsive_toggle == 'function') {
66
- sfsi_responsive_toggle(<?php echo $time_popUp ?>);
67
-
68
- }
69
- })
70
- </script>
71
- <?php
72
- echo ob_get_clean();
73
- }
74
- if ($sfsi_section7_options['sfsi_Shown_pop'] == "LimitPopUp") {
75
- $time_popUp = (int) $sfsi_section7_options['sfsi_Shown_popuplimitPerUserTime'];
76
- $end_time = (int) $_COOKIE['sfsi_socialPopUp'] + ($time_popUp * 60);
77
- $time_popUp = $time_popUp * 1000;
78
-
79
- if (!empty($end_time)) {
80
- if ($end_time < time()) {
81
- ?>
82
- <script>
83
-
84
-
85
- window.addEventListener('sfsi_functions_loaded', function() {
86
- if (typeof sfsi_social_pop_up == 'function') {
87
- sfsi_social_pop_up(<?php echo $time_popUp ?>);
88
- }
89
- })
90
- </script>
91
- <?php
92
- }
93
- }
94
- echo ob_get_clean();
95
- }
96
- }
97
- return $content;
98
- }
99
- /* make front end pop div */
100
- function sfsi_FrontPopupDiv()
101
- {
102
- global $wpdb;
103
- /* get all settings for icons saved in admin */
104
- $sfsi_section1_options = unserialize(get_option('sfsi_section1_options', false));
105
- $custom_i = unserialize($sfsi_section1_options['sfsi_custom_files']);
106
- if ($sfsi_section1_options['sfsi_rss_display'] == 'no' && $sfsi_section1_options['sfsi_email_display'] == 'no' && $sfsi_section1_options['sfsi_facebook_display'] == 'no' && $sfsi_section1_options['sfsi_twitter_display'] == 'no' && $sfsi_section1_options['sfsi_youtube_display'] == 'no' && $sfsi_section1_options['sfsi_pinterest_display'] == 'no' && $sfsi_section1_options['sfsi_linkedin_display'] == 'no' && empty($custom_i)) {
107
- $icons = '';
108
- return $icons;
109
- exit;
110
- }
111
- $sfsi_section7_options = unserialize(get_option('sfsi_section7_options', false));
112
- $sfsi_section5 = unserialize(get_option('sfsi_section5_options', false));
113
- $sfsi_section4 = unserialize(get_option('sfsi_section4_options', false));
114
- /* calculate the width and icons display alignments */
115
- $heading_text = (isset($sfsi_section7_options['sfsi_popup_text'])) ? $sfsi_section7_options['sfsi_popup_text'] : 'Enjoy this site? Please follow and like us!';
116
- $div_bgColor = (isset($sfsi_section7_options['sfsi_popup_background_color'])) ? $sfsi_section7_options['sfsi_popup_background_color'] : '#fff';
117
- $div_FontFamily = (isset($sfsi_section7_options['sfsi_popup_font'])) ? $sfsi_section7_options['sfsi_popup_font'] : 'Arial';
118
- $div_BorderColor = (isset($sfsi_section7_options['sfsi_popup_border_color'])) ? $sfsi_section7_options['sfsi_popup_border_color'] : '#d3d3d3';
119
- $div_Fonttyle = (isset($sfsi_section7_options['sfsi_popup_fontStyle'])) ? $sfsi_section7_options['sfsi_popup_fontStyle'] : 'normal';
120
- $div_FontColor = (isset($sfsi_section7_options['sfsi_popup_fontColor'])) ? $sfsi_section7_options['sfsi_popup_fontColor'] : '#000';
121
- $div_FontSize = (isset($sfsi_section7_options['sfsi_popup_fontSize'])) ? $sfsi_section7_options['sfsi_popup_fontSize'] : '26';
122
- $div_BorderTheekness = (isset($sfsi_section7_options['sfsi_popup_border_thickness'])) ? $sfsi_section7_options['sfsi_popup_border_thickness'] : '1';
123
- $div_Shadow = (isset($sfsi_section7_options['sfsi_popup_border_shadow']) && $sfsi_section7_options['sfsi_popup_border_shadow'] == "yes") ? $sfsi_section7_options['sfsi_popup_border_thickness'] : 'no';
124
-
125
- $style = "background-color:" . $div_bgColor . ";border:" . $div_BorderTheekness . "px solid" . $div_BorderColor . "; font-style:" . $div_Fonttyle . ";color:" . $div_FontColor;
126
- if ($sfsi_section7_options['sfsi_popup_border_shadow'] == "yes") {
127
- $style .= ";box-shadow:12px 30px 18px #CCCCCC;";
128
- }
129
- $h_style = "font-family:" . $div_FontFamily . ";font-style:" . $div_Fonttyle . ";color:" . $div_FontColor . ";font-size:" . $div_FontSize . "px";
130
- /* get all icons including custom icons */
131
- $custom_icons_order = unserialize($sfsi_section5['sfsi_CustomIcons_order']);
132
- $icons_order = array(
133
- $sfsi_section5['sfsi_rssIcon_order'] => 'rss',
134
- $sfsi_section5['sfsi_emailIcon_order'] => 'email',
135
- $sfsi_section5['sfsi_facebookIcon_order'] => 'facebook',
136
- $sfsi_section5['sfsi_twitterIcon_order'] => 'twitter',
137
- $sfsi_section5['sfsi_youtubeIcon_order'] => 'youtube',
138
- $sfsi_section5['sfsi_pinterestIcon_order'] => 'pinterest',
139
- $sfsi_section5['sfsi_linkedinIcon_order'] => 'linkedin',
140
- $sfsi_section5['sfsi_instagramIcon_order'] => 'instagram',
141
- $sfsi_section5['sfsi_telegramIcon_order'] => 'telegram',
142
- $sfsi_section5['sfsi_vkIcon_order'] => 'vk',
143
- $sfsi_section5['sfsi_okIcon_order'] => 'ok',
144
- $sfsi_section5['sfsi_weiboIcon_order'] => 'weibo',
145
- $sfsi_section5['sfsi_wechatIcon_order'] => 'wechat',
146
-
147
- );
148
- $icons = array();
149
- $elements = array();
150
- $icons = unserialize($sfsi_section1_options['sfsi_custom_files']);
151
- if (is_array($icons)) $elements = array_keys($icons);
152
- $cnt = 0;
153
- $total = isset($custom_icons_order) && is_array($custom_icons_order) ? count($custom_icons_order) : 0;
154
- if (!empty($icons) && is_array($icons)) :
155
- foreach ($icons as $cn => $c_icons) {
156
- if (is_array($custom_icons_order)) :
157
- if (in_array($custom_icons_order[$cnt]['ele'], $elements)) :
158
- $key = key($elements);
159
- unset($elements[$key]);
160
-
161
- $icons_order[$custom_icons_order[$cnt]['order']] = array('ele' => $cn, 'img' => $c_icons);
162
- else :
163
- $icons_order[] = array('ele' => $cn, 'img' => $c_icons);
164
- endif;
165
-
166
- $cnt++;
167
- else :
168
- $icons_order[] = array('ele' => $cn, 'img' => $c_icons);
169
- endif;
170
- }
171
- endif;
172
- ksort($icons_order); /* short icons in order to display */
173
- $icons = '<div class="sfsi_outr_div" > <div class="sfsi_FrntInner_chg" style="' . $style . '">';
174
- //adding close button
175
- $icons .= '<div class="sfsiclpupwpr" onclick="sfsihidemepopup();"><img src="' . SFSI_PLUGURL . 'images/close.png" alt="error" /></div>';
176
-
177
- if (!empty($heading_text)) {
178
- $icons .= '<h2 style="' . $h_style . '">' . $heading_text . '</h2>';
179
- }
180
- $ulmargin = "";
181
- if ($sfsi_section4['sfsi_display_counts'] == "no") {
182
- $ulmargin = "margin-bottom:0px";
183
- }
184
- /* make icons with all settings saved in admin */
185
- $icons .= '<ul style="' . $ulmargin . '">';
186
- foreach ($icons_order as $index => $icn) :
187
-
188
- if (is_array($icn)) {
189
- $icon_arry = $icn;
190
- $icn = "custom";
191
- }
192
- switch ($icn): case 'rss':
193
- if ($sfsi_section1_options['sfsi_rss_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('rss', 1) . "</li>";
194
- break;
195
- case 'email':
196
- if ($sfsi_section1_options['sfsi_email_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('email', 1) . "</li>";
197
- break;
198
- case 'facebook':
199
- if ($sfsi_section1_options['sfsi_facebook_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('facebook', 1) . "</li>";
200
- break;
201
- case 'twitter':
202
- if ($sfsi_section1_options['sfsi_twitter_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('twitter', 1) . "</li>";
203
- break;
204
- case 'youtube':
205
- if ($sfsi_section1_options['sfsi_youtube_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('youtube', 1) . "</li>";
206
- break;
207
- case 'pinterest':
208
- if ($sfsi_section1_options['sfsi_pinterest_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('pinterest', 1) . "</li>";
209
- break;
210
- case 'linkedin':
211
- if ($sfsi_section1_options['sfsi_linkedin_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('linkedin', 1) . "</li>";
212
- break;
213
- case 'instagram':
214
- if ($sfsi_section1_options['sfsi_instagram_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('instagram', 1) . "</li>";
215
- break;
216
- case 'telegram':
217
- if ($sfsi_section1_options['sfsi_telegram_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('telegram', 1) . "</li>";
218
- break;
219
- case 'vk':
220
- if ($sfsi_section1_options['sfsi_vk_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('vk', 1) . "</li>";
221
- break;
222
- case 'ok':
223
- if ($sfsi_section1_options['sfsi_ok_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('ok', 1) . "</li>";
224
- break;
225
- case 'weibo':
226
- if ($sfsi_section1_options['sfsi_weibo_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('weibo', 1) . "</li>";
227
- break;
228
- case 'wechat':
229
- if ($sfsi_section1_options['sfsi_wechat_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('wechat', 1) . "</li>";
230
- break;
231
- case 'custom':
232
- $icons .= "<li>" . sfsi_prepairIcons($icon_arry['ele'], 1) . "</li>";
233
- break;
234
- endswitch;
235
- endforeach;
236
- $icons .= '</ul></div ></div >';
237
-
238
- return $icons;
239
- }
 
 
240
  ?>
1
+ <?php
2
+
3
+ /* show a pop on the as per user chose under section 7 */
4
+ function sfsi_frontPopUp()
5
+ {
6
+ ob_start();
7
+ echo sfsi_FrontPopupDiv();
8
+ echo $output = ob_get_clean();
9
+ }
10
+ /* check where to be pop-shown */
11
+ function sfsi_check_PopUp($content)
12
+ {
13
+ global $post;
14
+ global $wpdb;
15
+
16
+ $content = '';
17
+
18
+ $sfsi_section7_options = unserialize(get_option('sfsi_section7_options', false));
19
+
20
+ if (isset($sfsi_section7_options['sfsi_Show_popupOn']) && !empty($sfsi_section7_options['sfsi_Show_popupOn'])) {
21
+
22
+ if ($sfsi_section7_options['sfsi_Show_popupOn'] == "blogpage") {
23
+ if (!is_feed() && !is_home() && !is_page()) {
24
+ $content = sfsi_frontPopUp() . $content;
25
+ }
26
+ } else if ($sfsi_section7_options['sfsi_Show_popupOn'] == "selectedpage") {
27
+ if (!empty($post->ID) && !empty($sfsi_section7_options['sfsi_Show_popupOn_PageIDs'])) {
28
+ if (is_page() && in_array($post->ID, unserialize($sfsi_section7_options['sfsi_Show_popupOn_PageIDs']))) {
29
+ $content = sfsi_frontPopUp() . $content;
30
+ }
31
+ }
32
+ } else if ($sfsi_section7_options['sfsi_Show_popupOn'] == "everypage") {
33
+ $content = sfsi_frontPopUp() . $content;
34
+ }
35
+ }
36
+
37
+ /* check for pop times */
38
+ if (isset($sfsi_section7_options['sfsi_Shown_pop']) && !empty($sfsi_section7_options['sfsi_Shown_pop']) && $sfsi_section7_options['sfsi_Shown_pop'] == "once") {
39
+ $time_popUp = (int) $sfsi_section7_options['sfsi_Shown_popupOnceTime'];
40
+ $time_popUp = $time_popUp * 1000;
41
+ ob_start();
42
+ ?>
43
+ <script>
44
+
45
+ window.addEventListener('sfsi_functions_loaded', function() {
46
+ if (typeof sfsi_time_pop_up == 'function') {
47
+ sfsi_time_pop_up(<?php echo $time_popUp ?>);
48
+ }
49
+ })
50
+ </script>
51
+ <?php
52
+ echo ob_get_clean();
53
+ return $content;
54
+ }
55
+
56
+ if (isset($sfsi_section7_options['sfsi_Shown_pop']) && !empty($sfsi_section7_options['sfsi_Shown_pop'])) {
57
+
58
+ if ($sfsi_section7_options['sfsi_Shown_pop'] == "ETscroll") {
59
+ $time_popUp = (int) $sfsi_section7_options['sfsi_Shown_popupOnceTime'];
60
+ $time_popUp = $time_popUp * 1000;
61
+ ob_start();
62
+ ?>
63
+ <script>
64
+ window.addEventListener('sfsi_functions_loaded', function() {
65
+ if (typeof sfsi_responsive_toggle == 'function') {
66
+ sfsi_responsive_toggle(<?php echo $time_popUp ?>);
67
+ // console.log('sfsi_responsive_toggle');
68
+
69
+ }
70
+ })
71
+ </script>
72
+ <?php
73
+ echo ob_get_clean();
74
+ }
75
+ if ($sfsi_section7_options['sfsi_Shown_pop'] == "LimitPopUp") {
76
+ $time_popUp = (int) $sfsi_section7_options['sfsi_Shown_popuplimitPerUserTime'];
77
+ $end_time = (int) $_COOKIE['sfsi_socialPopUp'] + ($time_popUp * 60);
78
+ $time_popUp = $time_popUp * 1000;
79
+
80
+ if (!empty($end_time)) {
81
+ if ($end_time < time()) {
82
+ ?>
83
+ <script>
84
+
85
+
86
+ window.addEventListener('sfsi_functions_loaded', function() {
87
+ if (typeof sfsi_social_pop_up == 'function') {
88
+ sfsi_social_pop_up(<?php echo $time_popUp ?>);
89
+ // console.log('sfsi_social_pop_up');
90
+ }
91
+ })
92
+ </script>
93
+ <?php
94
+ }
95
+ }
96
+ echo ob_get_clean();
97
+ }
98
+ }
99
+ return $content;
100
+ }
101
+ /* make front end pop div */
102
+ function sfsi_FrontPopupDiv()
103
+ {
104
+ global $wpdb;
105
+ /* get all settings for icons saved in admin */
106
+ $sfsi_section1_options = unserialize(get_option('sfsi_section1_options', false));
107
+ $custom_i = unserialize($sfsi_section1_options['sfsi_custom_files']);
108
+ if ($sfsi_section1_options['sfsi_rss_display'] == 'no' && $sfsi_section1_options['sfsi_email_display'] == 'no' && $sfsi_section1_options['sfsi_facebook_display'] == 'no' && $sfsi_section1_options['sfsi_twitter_display'] == 'no' && $sfsi_section1_options['sfsi_youtube_display'] == 'no' && $sfsi_section1_options['sfsi_pinterest_display'] == 'no' && $sfsi_section1_options['sfsi_linkedin_display'] == 'no' && empty($custom_i)) {
109
+ $icons = '';
110
+ return $icons;
111
+ exit;
112
+ }
113
+ $sfsi_section7_options = unserialize(get_option('sfsi_section7_options', false));
114
+ $sfsi_section5 = unserialize(get_option('sfsi_section5_options', false));
115
+ $sfsi_section4 = unserialize(get_option('sfsi_section4_options', false));
116
+ /* calculate the width and icons display alignments */
117
+ $heading_text = (isset($sfsi_section7_options['sfsi_popup_text'])) ? $sfsi_section7_options['sfsi_popup_text'] : 'Enjoy this site? Please follow and like us!';
118
+ $div_bgColor = (isset($sfsi_section7_options['sfsi_popup_background_color'])) ? $sfsi_section7_options['sfsi_popup_background_color'] : '#fff';
119
+ $div_FontFamily = (isset($sfsi_section7_options['sfsi_popup_font'])) ? $sfsi_section7_options['sfsi_popup_font'] : 'Arial';
120
+ $div_BorderColor = (isset($sfsi_section7_options['sfsi_popup_border_color'])) ? $sfsi_section7_options['sfsi_popup_border_color'] : '#d3d3d3';
121
+ $div_Fonttyle = (isset($sfsi_section7_options['sfsi_popup_fontStyle'])) ? $sfsi_section7_options['sfsi_popup_fontStyle'] : 'normal';
122
+ $div_FontColor = (isset($sfsi_section7_options['sfsi_popup_fontColor'])) ? $sfsi_section7_options['sfsi_popup_fontColor'] : '#000';
123
+ $div_FontSize = (isset($sfsi_section7_options['sfsi_popup_fontSize'])) ? $sfsi_section7_options['sfsi_popup_fontSize'] : '26';
124
+ $div_BorderTheekness = (isset($sfsi_section7_options['sfsi_popup_border_thickness'])) ? $sfsi_section7_options['sfsi_popup_border_thickness'] : '1';
125
+ $div_Shadow = (isset($sfsi_section7_options['sfsi_popup_border_shadow']) && $sfsi_section7_options['sfsi_popup_border_shadow'] == "yes") ? $sfsi_section7_options['sfsi_popup_border_thickness'] : 'no';
126
+
127
+ $style = "background-color:" . $div_bgColor . ";border:" . $div_BorderTheekness . "px solid" . $div_BorderColor . "; font-style:" . $div_Fonttyle . ";color:" . $div_FontColor;
128
+ if ($sfsi_section7_options['sfsi_popup_border_shadow'] == "yes") {
129
+ $style .= ";box-shadow:12px 30px 18px #CCCCCC;";
130
+ }
131
+ $h_style = "font-family:" . $div_FontFamily . ";font-style:" . $div_Fonttyle . ";color:" . $div_FontColor . ";font-size:" . $div_FontSize . "px";
132
+ /* get all icons including custom icons */
133
+ $custom_icons_order = unserialize($sfsi_section5['sfsi_CustomIcons_order']);
134
+ $icons_order = array(
135
+ $sfsi_section5['sfsi_rssIcon_order'] => 'rss',
136
+ $sfsi_section5['sfsi_emailIcon_order'] => 'email',
137
+ $sfsi_section5['sfsi_facebookIcon_order'] => 'facebook',
138
+ $sfsi_section5['sfsi_twitterIcon_order'] => 'twitter',
139
+ $sfsi_section5['sfsi_youtubeIcon_order'] => 'youtube',
140
+ $sfsi_section5['sfsi_pinterestIcon_order'] => 'pinterest',
141
+ $sfsi_section5['sfsi_linkedinIcon_order'] => 'linkedin',
142
+ $sfsi_section5['sfsi_instagramIcon_order'] => 'instagram',
143
+ $sfsi_section5['sfsi_telegramIcon_order'] => 'telegram',
144
+ $sfsi_section5['sfsi_vkIcon_order'] => 'vk',
145
+ $sfsi_section5['sfsi_okIcon_order'] => 'ok',
146
+ $sfsi_section5['sfsi_weiboIcon_order'] => 'weibo',
147
+ $sfsi_section5['sfsi_wechatIcon_order'] => 'wechat',
148
+
149
+ );
150
+ $icons = array();
151
+ $elements = array();
152
+ $icons = unserialize($sfsi_section1_options['sfsi_custom_files']);
153
+ if (is_array($icons)) $elements = array_keys($icons);
154
+ $cnt = 0;
155
+ $total = isset($custom_icons_order) && is_array($custom_icons_order) ? count($custom_icons_order) : 0;
156
+ if (!empty($icons) && is_array($icons)) :
157
+ foreach ($icons as $cn => $c_icons) {
158
+ if (is_array($custom_icons_order)) :
159
+ if (in_array($custom_icons_order[$cnt]['ele'], $elements)) :
160
+ $key = key($elements);
161
+ unset($elements[$key]);
162
+
163
+ $icons_order[$custom_icons_order[$cnt]['order']] = array('ele' => $cn, 'img' => $c_icons);
164
+ else :
165
+ $icons_order[] = array('ele' => $cn, 'img' => $c_icons);
166
+ endif;
167
+
168
+ $cnt++;
169
+ else :
170
+ $icons_order[] = array('ele' => $cn, 'img' => $c_icons);
171
+ endif;
172
+ }
173
+ endif;
174
+ ksort($icons_order); /* short icons in order to display */
175
+ $icons = '<div class="sfsi_outr_div" > <div class="sfsi_FrntInner_chg" style="' . $style . '">';
176
+ //adding close button
177
+ $icons .= '<div class="sfsiclpupwpr" onclick="sfsihidemepopup();"><img src="' . SFSI_PLUGURL . 'images/close.png" alt="error" /></div>';
178
+
179
+ if (!empty($heading_text)) {
180
+ $icons .= '<h2 style="' . $h_style . '">' . $heading_text . '</h2>';
181
+ }
182
+ $ulmargin = "";
183
+ if ($sfsi_section4['sfsi_display_counts'] == "no") {
184
+ $ulmargin = "margin-bottom:0px";
185
+ }
186
+ /* make icons with all settings saved in admin */
187
+ $icons .= '<ul style="' . $ulmargin . '">';
188
+ foreach ($icons_order as $index => $icn) :
189
+
190
+ if (is_array($icn)) {
191
+ $icon_arry = $icn;
192
+ $icn = "custom";
193
+ }
194
+ switch ($icn): case 'rss':
195
+ if ($sfsi_section1_options['sfsi_rss_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('rss', 1) . "</li>";
196
+ break;
197
+ case 'email':
198
+ if ($sfsi_section1_options['sfsi_email_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('email', 1) . "</li>";
199
+ break;
200
+ case 'facebook':
201
+ if ($sfsi_section1_options['sfsi_facebook_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('facebook', 1) . "</li>";
202
+ break;
203
+ case 'twitter':
204
+ if ($sfsi_section1_options['sfsi_twitter_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('twitter', 1) . "</li>";
205
+ break;
206
+ case 'youtube':
207
+ if ($sfsi_section1_options['sfsi_youtube_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('youtube', 1) . "</li>";
208
+ break;
209
+ case 'pinterest':
210
+ if ($sfsi_section1_options['sfsi_pinterest_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('pinterest', 1) . "</li>";
211
+ break;
212
+ case 'linkedin':
213
+ if ($sfsi_section1_options['sfsi_linkedin_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('linkedin', 1) . "</li>";
214
+ break;
215
+ case 'instagram':
216
+ if ($sfsi_section1_options['sfsi_instagram_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('instagram', 1) . "</li>";
217
+ break;
218
+ case 'telegram':
219
+ if ($sfsi_section1_options['sfsi_telegram_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('telegram', 1) . "</li>";
220
+ break;
221
+ case 'vk':
222
+ if ($sfsi_section1_options['sfsi_vk_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('vk', 1) . "</li>";
223
+ break;
224
+ case 'ok':
225
+ if ($sfsi_section1_options['sfsi_ok_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('ok', 1) . "</li>";
226
+ break;
227
+ case 'weibo':
228
+ if ($sfsi_section1_options['sfsi_weibo_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('weibo', 1) . "</li>";
229
+ break;
230
+ case 'wechat':
231
+ if ($sfsi_section1_options['sfsi_wechat_display'] == 'yes') $icons .= "<li>" . sfsi_prepairIcons('wechat', 1) . "</li>";
232
+ break;
233
+ case 'custom':
234
+ $icons .= "<li>" . sfsi_prepairIcons($icon_arry['ele'], 1) . "</li>";
235
+ break;
236
+ endswitch;
237
+ endforeach;
238
+ $icons .= '</ul></div ></div >';
239
+
240
+ return $icons;
241
+ }
242
  ?>
libs/controllers/sfsiocns_OnPosts.php CHANGED
@@ -9,11 +9,13 @@ function sfsi_social_buttons_below($content)
9
  // if($sfsi_section9["sfsi_show_via_afterposts"]!=="yes"){
10
  // return $content;
11
  // }
12
- if($sfsi_section6["sfsi_display_button_type"]=="responsive_button"){
13
- if($sfsi_section6["sfsi_responsive_icons_end_post"]=="yes"){
14
- $content = $content . sfsi_social_responsive_buttons(null, $sfsi_section6);
 
 
15
  }
16
- }else{
17
  //checking for standard icons
18
  if (!isset($sfsi_section6['sfsi_rectsub'])) {
19
  $sfsi_section6['sfsi_rectsub'] = 'no';
@@ -56,7 +58,7 @@ function sfsi_social_buttons_below($content)
56
  }
57
  //adding wrapper div
58
  $icons .= "<div class='sfsi_socialwpr'>";
59
- if ( $sfsi_section6['sfsi_rectsub'] == 'yes' && $sfsi_section6['sfsi_show_Onposts'] == "yes") {
60
  if ($show_count) {
61
  $sfsiLikeWithsub = "93px";
62
  } else {
@@ -92,7 +94,7 @@ function sfsi_social_buttons_below($content)
92
 
93
  $icons .= "<div class='sf_fb' style='text-align:left;vertical-align: middle;width:" . $sfsiLikeWithfb . "'>" . sfsi_FBlike($permalink, $show_count) . "</div>";
94
  }
95
- if (( $sfsi_section6['sfsi_recttwtr'] == "yes" && $sfsi_section6['sfsi_show_Onposts'] == "yes")) {
96
  if ($show_count) {
97
  $sfsiLikeWithtwtr = "62px";
98
  } else {
@@ -252,11 +254,11 @@ function sfsi_footer_script()
252
  }(document, 'script', 'facebook-jssdk'));
253
  </script>
254
  <?php
255
- }
256
- }
257
- if ($sfsi_section1['sfsi_youtube_display'] == "yes") {
258
- if ($sisi_common_options_check && ($sfsi_section2['sfsi_youtube_page'] == 'yes' || ($sfsi_section2['sfsi_youtube_follow'] == 'yes'))) {
259
- ?>
260
  <script type="text/javascript">
261
  window.___gcfg = {
262
  lang: 'en-US'
@@ -282,29 +284,29 @@ function sfsi_footer_script()
282
  })();
283
  </script>
284
  <?php
285
- }
286
- }
287
 
288
- if ($sfsi_section1['sfsi_linkedin_display'] == "yes") {
289
- if ($sisi_common_options_check && ($sfsi_section2['sfsi_linkedin_page'] == 'yes' || $sfsi_section2['sfsi_linkedin_follow'] == 'yes' || $sfsi_section2['sfsi_linkedin_SharePage'] == 'yes' || $sfsi_section2['sfsi_linkedin_recommendBusines'] == 'yes')) {
290
 
291
- ?>
292
  <script src="//platform.linkedin.com/in.js" type="text/javascript">
293
  lang: en_US
294
  </script>
295
  <?php
296
- }
297
- }
298
- if ($sfsi_section1['sfsi_pinterest_display'] == "yes") {
299
- if (( $sfsi_section6['sfsi_rectpinit'] == "yes" && $sfsi_section6['sfsi_show_Onposts'] == "yes") || $sisi_common_options_check && ($sfsi_section2['sfsi_pinterest_page'] == 'yes' || $sfsi_section2['sfsi_pinterest_pingBlog'] == 'yes')) { ?>
300
  <!--pinit js -->
301
  <script type="text/javascript" src="//assets.pinterest.com/js/pinit.js"></script>
302
  <?php
303
- }
304
- }
305
 
306
- if ($sfsi_section1['sfsi_twitter_display'] == "yes") {
307
- if (( $sfsi_section6['sfsi_recttwtr'] == "yes" && $sfsi_section6['sfsi_show_Onposts'] == "yes") || ($sisi_common_options_check && ($sfsi_section2['sfsi_twitter_page'] == 'yes' || $sfsi_section2['sfsi_twitter_followme'] == 'yes' || $sfsi_section2['sfsi_twitter_aboutPage'] == 'yes'))) { ?>
308
  <!-- twitter JS End -->
309
  <script>
310
  ! function(d, s, id) {
@@ -318,197 +320,196 @@ function sfsi_footer_script()
318
  }(document, "script", "twitter-wjs");
319
  </script>
320
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  }
322
- }
323
- /* activate footer credit link */
324
- if (get_option('sfsi_footer_sec') == "yes") {
 
325
  if (!is_admin()) {
326
- //$footer_link='<div class="sfsiplus_footerLnk" style="margin: 0 auto;z-index:1000; absolute; text-align: center;">Social media & sharing icons powered by <a href="https://wordpress.org/plugins/ultimate-social-media-icons/" target="new">UltimatelySocial</a> ';
 
 
 
 
327
 
328
- $sfsi_themecheck = new sfsi_ThemeCheck();
329
- $domain = $sfsi_themecheck->sfsi_plus_getdomain(get_site_url());
330
- $firstCharacter = substr($domain, 0, 1);
331
- if (in_array($firstCharacter, array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm'))) {
332
- $footer_link = '<div class="sfsiplus_footerLnk" style="margin: 0 auto;z-index:1000; text-align: center;">Social media & sharing icons powered by <a href="https://www.ultimatelysocial.com/?utm_source=usmplus_settings_page&utm_campaign=credit_link_to_homepage&utm_medium=banner" target="new">UltimatelySocial </a>';
333
- $footer_link .= "</div>";
334
- echo $footer_link;
335
- } else if (in_array($firstCharacter, array('n', 'o', 'p', 'q', 'r', 's'))) {
336
- $footer_link = '<div class="sfsiplus_footerLnk" style="margin: 0 auto;z-index:1000; text-align: center;"><a href="https://www.ultimatelysocial.com/usm-premium/" target="new">Wordpress Social Share Plugin </a> powered by Ultimatelysocial';
337
- $footer_link .= "</div>";
338
- echo $footer_link;
339
- } else {
340
- $footer_link = '<div class="sfsiplus_footerLnk" style="margin: 0 auto;z-index:1000;text-align: center;"><a href="https://www.ultimatelysocial.com/?utm_source=usmplus_settings_page&utm_campaign=credit_link_to_homepage&utm_medium=banner" target="new">Social Share Buttons and Icons</a> powered by Ultimatelysocial';
341
- $footer_link .= "</div>";
342
- echo $footer_link;
343
- }
344
  }
345
- }
346
- }
347
- /* filter the content of post */
348
- add_filter('the_content', 'sfsi_social_buttons_below');
349
 
350
- /* update footer for frontend and admin both */
351
- if (!is_admin()) {
352
- global $post;
353
- add_action('wp_footer', 'sfsi_footer_script');
354
- add_action('wp_footer', 'sfsi_check_PopUp');
355
- add_action('wp_footer', 'sfsi_frontFloter');
356
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
357
 
358
- if (is_admin()) {
359
- add_action('in_admin_footer', 'sfsi_footer_script');
360
- }
361
- /* ping to vendor site on updation of new post */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
362
 
363
- //<---------------------* Responsive icons *----------------->
364
- function sfsi_social_responsive_buttons($content,$option6,$server_side=false)
365
- {
366
- global $wp;
367
- $count =60 ;
368
- if( ((isset($option6["sfsi_display_button_type"]) && $option6["sfsi_display_button_type"]=="responsive_button")) || $server_side ):
369
- $option2 = unserialize(get_option('sfsi_section2_options',false));
370
- $option4 = unserialize(get_option('sfsi_section4_options',false));
371
- $icons= "";
372
- $sfsi_responsive_icons = (isset($option6["sfsi_responsive_icons"])?$option6["sfsi_responsive_icons"]:null);
373
- $current_url = in_the_loop()?get_permalink():add_query_arg( $wp->query_vars, home_url( $wp->request ) );
374
- if(is_null($sfsi_responsive_icons) ){
375
- if($server_side){
376
- $sfsi_responsive_icons = array(
377
- "default_icons" => array(
378
- "facebook" => array("active" => "yes", "text" => "Share on Facebook", "url" => ""),
379
- "Twitter" => array("active" => "yes", "text" => "Tweet", "url" => ""),
380
- "Follow" => array("active" => "yes", "text" => "Follow us", "url" => "")
381
- ),
382
- "custom_icons" => array(),
383
- "settings" => array(
384
- "icon_size" => "Medium",
385
- "icon_width_type" => "Fully responsive",
386
- "icon_width_size" => 240,
387
- "edge_type" => "Round",
388
- "edge_radius" => 5,
389
- "style" => "Gradient",
390
- "margin" => 10,
391
- "text_align" => "Centered",
392
- "show_count" => "no",
393
- "counter_color" => "#aaaaaa",
394
- "counter_bg_color" => "#fff",
395
- "share_count_text" => "SHARES"
396
- )
397
- );
398
- }else{
399
- return ""; // dont return anything if options not set;
400
  }
401
- }
402
- $twitter_text = isset($option2['sfsi_twitter_aboutPageText']) && !empty($option2['sfsi_twitter_aboutPageText']) ? $option2['sfsi_twitter_aboutPageText'] : false;
403
-
404
- $icon_width_type = $sfsi_responsive_icons["settings"]["icon_width_type"];
405
- if($option4['sfsi_display_counts']=='yes' &&isset($sfsi_responsive_icons["settings"]['show_count'])&&$sfsi_responsive_icons["settings"]['show_count']=="yes"):
406
- $counter_class="sfsi_responsive_with_counter_icons";
407
- $couter_display="inline-block";
408
- $counts = sfsi_getCounts(true);
409
- $count = 0;
410
- if(isset($counts['email_count'])){
411
- $count = (int)($counts['email_count'])+$count;
412
- }
413
- if(isset($counts['fb_count'])){
414
- $count = (int)($counts['fb_count'])+$count;
415
- }
416
- if(isset($counts['twitter_count'])){
417
- $count = (int)($counts['twitter_count'])+$count;
418
- }else{}
419
 
420
- else:
421
- $counter_class="sfsi_responsive_without_counter_icons";
422
- $couter_display="none";
423
- endif;
424
- $icons .= "<div class='sfsi_responsive_icons' style='display:inline-block; ".($icon_width_type=="Fully Responsive"?"width:100%;display:flex; ":'width:100%')."' data-icon-width-type='".$icon_width_type."' data-icon-width-size='".$sfsi_responsive_icons["settings"]['icon_width_size']."' data-edge-type='".$sfsi_responsive_icons["settings"]['edge_type']."' data-edge-radius='".$sfsi_responsive_icons["settings"]['edge_radius']."' >";
425
- $sfsi_anchor_div_style="";
426
- if($sfsi_responsive_icons["settings"]["edge_type"]==="Round"){
427
- $sfsi_anchor_div_style.=" border-radius:";
428
- if($sfsi_responsive_icons["settings"]["edge_radius"]!==""){
429
- $sfsi_anchor_div_style.=$sfsi_responsive_icons["settings"]["edge_radius"].'px; ';
430
- }else{
431
- $sfsi_anchor_div_style.='0px; ';
432
  }
433
- }
434
-
435
- ob_start();?>
436
- <div class="sfsi_responsive_icons_count sfsi_<?php echo ($icon_width_type=="Fully responsive"?'responsive':'fixed'); ?>_count_container sfsi_<?php echo strtolower($sfsi_responsive_icons['settings']['icon_size']); ?>_button" style='display:<?php echo $couter_display; ?>;text-align:center; background-color:<?php echo $sfsi_responsive_icons['settings']['counter_bg_color'] ;?>;color:<?php echo $sfsi_responsive_icons['settings']['counter_color'] ;?>; <?php echo $sfsi_anchor_div_style; ?>;' >
437
- <h3 style="color:<?php echo $sfsi_responsive_icons['settings']['counter_color'] ;?>; " ><?php echo $count; ?></h3>
438
- <h6 style="color:<?php echo $sfsi_responsive_icons['settings']['counter_color'] ;?>;" ><?php echo $sfsi_responsive_icons['settings']["share_count_text"]; ?></h6>
439
- </div>
440
- <?php
441
- $icons.= ob_get_contents();
442
- ob_end_clean();
443
- $icons .= "\t<div class='sfsi_icons_container ".$counter_class." sfsi_".strtolower($sfsi_responsive_icons['settings']['icon_size'])."_button_container sfsi_icons_container_box_".($icon_width_type!=="Fixed icon width"?"fully":'fixed')."_container ' style='".($icon_width_type!=="Fixed icon width"?"width:100%;display:flex; ":'width:auto')."; text-align:center;' >";
444
- $socialObj = new sfsi_SocialHelper();
445
- //styles
446
- $sfsi_anchor_style="";
447
- if($sfsi_responsive_icons["settings"]["text_align"]=="Centered"){
448
- $sfsi_anchor_style.='text-align:center;';
449
- }
450
- if($sfsi_responsive_icons["settings"]["margin"]!==""){
451
- $sfsi_anchor_style.='margin-left:'.$sfsi_responsive_icons["settings"]["margin"]."px; ";
452
- // $sfsi_anchor_style.='margin-bottom:'.$sfsi_responsive_icons["settings"]["margin"]."px; ";
453
- }
454
- //styles
455
-
456
- if($sfsi_responsive_icons['settings']['icon_width_type']==="Fixed icon width")
457
- {
458
- $sfsi_anchor_div_style.='width:'.$sfsi_responsive_icons['settings']['icon_width_size'].'px;';
459
- }
460
- else{
461
- $sfsi_anchor_style.=" flex-basis:100%;";
462
- $sfsi_anchor_div_style.=" width:100%;";
463
- }
464
- // var_dump($sfsi_anchor_style,$sfsi_anchor_div_style);
465
- foreach($sfsi_responsive_icons['default_icons'] as $icon=>$icon_config){
466
- // var_dump($icon_config);
467
- // $current_url = $socialObj->sfsi_get_custom_share_link(strtolower($icon));
468
- switch($icon){
469
- case "facebook":$share_url="https://www.facebook.com/sharer/sharer.php?u=".urlencode($current_url); break;
470
- case "Twitter":$twitter_text = $share_url = "https://twitter.com/intent/tweet?text=".urlencode($twitter_text)."&url=".urlencode($current_url);break;
471
- case "Follow":
472
- $share_url = (isset($option2['sfsi_email_url']))
473
- ? $option2['sfsi_email_url']
474
- : 'https://specificfeeds.com/follow';
475
- break;
476
-
477
  }
478
- $icons.="\t\t"."<a ".sfsi_checkNewWindow()." href='".($icon_config['url']==""?$share_url:$icon_config['url'])."' style='".($icon_config['active']=='yes'?($sfsi_responsive_icons['settings']['icon_width_type']==="Fixed icon width"?'display:inline-flex':'display:block'):'display:none').";".$sfsi_anchor_style."' class=".($sfsi_responsive_icons['settings']['icon_width_type']==="Fixed icon width"?'sfsi_responsive_fixed_width':'sfsi_responsive_fluid')." >"."\n";
479
- $icons.="\t\t\t<div class='sfsi_responsive_icon_item_container sfsi_responsive_icon_".strtolower($icon)."_container sfsi_".strtolower($sfsi_responsive_icons['settings']['icon_size'])."_button ".($sfsi_responsive_icons['settings']['style']=="Gradient"?'sfsi_responsive_icon_gradient':'').( " sfsi_".(strtolower($sfsi_responsive_icons['settings']['text_align'])=="centered"?'centered':'left-align')."_icon")."' style='".$sfsi_anchor_div_style." ' >"."\n";
480
- $icons.="\t\t\t\t<img style='max-height: 25px;display:unset;margin:0' src='".SFSI_PLUGURL."images/responsive-icon/".$icon.('Follow'===$icon?'.png':'.svg')."'>"."\n";
481
- $icons.="\t\t\t\t<span style='color:#fff' >".($icon_config["text"])."</span>"."\n";
482
- $icons.="\t\t\t</div>"."\n";
483
- $icons.="\t\t</a>"."\n\n";
484
- }
485
- $sfsi_responsive_icons_custom_icons=array();
486
- if(!isset($sfsi_responsive_icons['custom_icons']) || !empty($sfsi_responsive_icons['custom_icons'])){
487
- $sfsi_responsive_icons_custom_icons=$sfsi_responsive_icons['custom_icons'];
488
- }else{
489
- $count=5;
490
- for($i=0;$i<$count;$i++){
491
- array_push($sfsi_responsive_icons_custom_icons,array(
492
- "added"=>"no",
493
- "active"=>"no",
494
- "text"=>"Share",
495
- "bg-color"=>"#729fcf",
496
- "url"=>"",
497
- "icon"=>''
498
- ));
499
  }
500
- }
501
- foreach($sfsi_responsive_icons_custom_icons as $icon=>$icon_config){
502
- // $current_url = $socialObj->sfsi_get_custom_share_link(strtolower($icon));
503
- $icons.="\t\t"."<a ".sfsi_checkNewWindow()." href='".($icon_config['url']==""?"":$icon_config['url'])."' style='".($icon_config['active']=='yes'?'display:inline-flex':'display:none').";".$sfsi_anchor_style."' class=".($sfsi_responsive_icons['settings']['icon_width_type']==="Fixed icon width"?'sfsi_responsive_fixed_width':'sfsi_responsive_fluid')." >"."\n";
504
- $icons.="\t\t\t<div class='sfsi_responsive_icon_item_container sfsi_responsive_custom_icon sfsi_responsive_icon_".strtolower($icon)."_container sfsi_".strtolower($sfsi_responsive_icons['settings']['icon_size'])."_button ".( "sfsi_".(strtolower($sfsi_responsive_icons['settings']['text_align'])=="centered"?'centered':'left-align')."_icon")." ".($sfsi_responsive_icons['settings']['style']=="Gradient"?'sfsi_responsive_icon_gradient':'')."' style='".$sfsi_anchor_div_style." background-color:".(isset($icon_config['bg-color'])?$icon_config['bg-color']:'#73d17c')."' >"."\n";
505
- $icons.="\t\t\t\t<img style='max-height: 25px' src='".(isset($icon_config['icon'])?$icon_config['icon']:'#')."'>"."\n";
506
- $icons.="\t\t\t\t<span style='color:#fff' >".($icon_config["text"])."</span>"."\n";
507
- $icons.="\t\t\t</div>"."\n";
508
- $icons.="\t\t</a>"."\n\n";
509
- }
510
- $icons.="</div></div><!--end responsive_icons-->";
511
- return $icons;
512
- endif;
513
- }
514
- ?>
9
  // if($sfsi_section9["sfsi_show_via_afterposts"]!=="yes"){
10
  // return $content;
11
  // }
12
+ if ($sfsi_section6["sfsi_display_button_type"] == "responsive_button") {
13
+ if ($sfsi_section6["sfsi_responsive_icons_end_post"] == "yes") {
14
+ if (is_single()) {
15
+ $content = $content . sfsi_social_responsive_buttons(null, $sfsi_section6);
16
+ }
17
  }
18
+ } else {
19
  //checking for standard icons
20
  if (!isset($sfsi_section6['sfsi_rectsub'])) {
21
  $sfsi_section6['sfsi_rectsub'] = 'no';
58
  }
59
  //adding wrapper div
60
  $icons .= "<div class='sfsi_socialwpr'>";
61
+ if ($sfsi_section6['sfsi_rectsub'] == 'yes' && $sfsi_section6['sfsi_show_Onposts'] == "yes") {
62
  if ($show_count) {
63
  $sfsiLikeWithsub = "93px";
64
  } else {
94
 
95
  $icons .= "<div class='sf_fb' style='text-align:left;vertical-align: middle;width:" . $sfsiLikeWithfb . "'>" . sfsi_FBlike($permalink, $show_count) . "</div>";
96
  }
97
+ if (($sfsi_section6['sfsi_recttwtr'] == "yes" && $sfsi_section6['sfsi_show_Onposts'] == "yes")) {
98
  if ($show_count) {
99
  $sfsiLikeWithtwtr = "62px";
100
  } else {
254
  }(document, 'script', 'facebook-jssdk'));
255
  </script>
256
  <?php
257
+ }
258
+ }
259
+ if ($sfsi_section1['sfsi_youtube_display'] == "yes") {
260
+ if ($sisi_common_options_check && ($sfsi_section2['sfsi_youtube_page'] == 'yes' || ($sfsi_section2['sfsi_youtube_follow'] == 'yes'))) {
261
+ ?>
262
  <script type="text/javascript">
263
  window.___gcfg = {
264
  lang: 'en-US'
284
  })();
285
  </script>
286
  <?php
287
+ }
288
+ }
289
 
290
+ if ($sfsi_section1['sfsi_linkedin_display'] == "yes") {
291
+ if ($sisi_common_options_check && ($sfsi_section2['sfsi_linkedin_page'] == 'yes' || $sfsi_section2['sfsi_linkedin_follow'] == 'yes' || $sfsi_section2['sfsi_linkedin_SharePage'] == 'yes' || $sfsi_section2['sfsi_linkedin_recommendBusines'] == 'yes')) {
292
 
293
+ ?>
294
  <script src="//platform.linkedin.com/in.js" type="text/javascript">
295
  lang: en_US
296
  </script>
297
  <?php
298
+ }
299
+ }
300
+ if ($sfsi_section1['sfsi_pinterest_display'] == "yes") {
301
+ if (($sfsi_section6['sfsi_rectpinit'] == "yes" && $sfsi_section6['sfsi_show_Onposts'] == "yes") || $sisi_common_options_check && ($sfsi_section2['sfsi_pinterest_page'] == 'yes' || $sfsi_section2['sfsi_pinterest_pingBlog'] == 'yes')) { ?>
302
  <!--pinit js -->
303
  <script type="text/javascript" src="//assets.pinterest.com/js/pinit.js"></script>
304
  <?php
305
+ }
306
+ }
307
 
308
+ if ($sfsi_section1['sfsi_twitter_display'] == "yes") {
309
+ if (($sfsi_section6['sfsi_recttwtr'] == "yes" && $sfsi_section6['sfsi_show_Onposts'] == "yes") || ($sisi_common_options_check && ($sfsi_section2['sfsi_twitter_page'] == 'yes' || $sfsi_section2['sfsi_twitter_followme'] == 'yes' || $sfsi_section2['sfsi_twitter_aboutPage'] == 'yes'))) { ?>
310
  <!-- twitter JS End -->
311
  <script>
312
  ! function(d, s, id) {
320
  }(document, "script", "twitter-wjs");
321
  </script>
322
  <?php
323
+ }
324
+ }
325
+ /* activate footer credit link */
326
+ if (get_option('sfsi_footer_sec') == "yes") {
327
+ if (!is_admin()) {
328
+ //$footer_link='<div class="sfsiplus_footerLnk" style="margin: 0 auto;z-index:1000; absolute; text-align: center;">Social media & sharing icons powered by <a href="https://wordpress.org/plugins/ultimate-social-media-icons/" target="new">UltimatelySocial</a> ';
329
+
330
+ $sfsi_themecheck = new sfsi_ThemeCheck();
331
+ $domain = $sfsi_themecheck->sfsi_plus_getdomain(get_site_url());
332
+ $firstCharacter = substr($domain, 0, 1);
333
+ if (in_array($firstCharacter, array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm'))) {
334
+ $footer_link = '<div class="sfsiplus_footerLnk" style="margin: 0 auto;z-index:1000; text-align: center;">Social media & sharing icons powered by <a href="https://www.ultimatelysocial.com/?utm_source=usmplus_settings_page&utm_campaign=credit_link_to_homepage&utm_medium=banner" target="new">UltimatelySocial </a>';
335
+ $footer_link .= "</div>";
336
+ echo $footer_link;
337
+ } else if (in_array($firstCharacter, array('n', 'o', 'p', 'q', 'r', 's'))) {
338
+ $footer_link = '<div class="sfsiplus_footerLnk" style="margin: 0 auto;z-index:1000; text-align: center;"><a href="https://www.ultimatelysocial.com/usm-premium/" target="new">Wordpress Social Share Plugin </a> powered by Ultimatelysocial';
339
+ $footer_link .= "</div>";
340
+ echo $footer_link;
341
+ } else {
342
+ $footer_link = '<div class="sfsiplus_footerLnk" style="margin: 0 auto;z-index:1000;text-align: center;"><a href="https://www.ultimatelysocial.com/?utm_source=usmplus_settings_page&utm_campaign=credit_link_to_homepage&utm_medium=banner" target="new">Social Share Buttons and Icons</a> powered by Ultimatelysocial';
343
+ $footer_link .= "</div>";
344
+ echo $footer_link;
345
+ }
346
+ }
347
+ }
348
  }
349
+ /* filter the content of post */
350
+ add_filter('the_content', 'sfsi_social_buttons_below');
351
+
352
+ /* update footer for frontend and admin both */
353
  if (!is_admin()) {
354
+ global $post;
355
+ add_action('wp_footer', 'sfsi_footer_script');
356
+ add_action('wp_footer', 'sfsi_check_PopUp');
357
+ add_action('wp_footer', 'sfsi_frontFloter');
358
+ }
359
 
360
+ if (is_admin()) {
361
+ add_action('in_admin_footer', 'sfsi_footer_script');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
362
  }
363
+ /* ping to vendor site on updation of new post */
 
 
 
364
 
365
+ //<---------------------* Responsive icons *----------------->
366
+ function sfsi_social_responsive_buttons($content, $option6, $server_side = false)
367
+ {
368
+ global $wp;
369
+ $count = 60;
370
+ if (((isset($option6["sfsi_display_button_type"]) && $option6["sfsi_display_button_type"] == "responsive_button")) || $server_side) :
371
+ $option2 = unserialize(get_option('sfsi_section2_options', false));
372
+ $option4 = unserialize(get_option('sfsi_section4_options', false));
373
+ $icons = "";
374
+ $sfsi_responsive_icons = (isset($option6["sfsi_responsive_icons"]) ? $option6["sfsi_responsive_icons"] : null);
375
+ $current_url = in_the_loop() ? get_permalink() : add_query_arg($wp->query_vars, home_url($wp->request));
376
+ if (is_null($sfsi_responsive_icons)) {
377
+ if ($server_side) {
378
+ $sfsi_responsive_icons = array(
379
+ "default_icons" => array(
380
+ "facebook" => array("active" => "yes", "text" => "Share on Facebook", "url" => ""),
381
+ "Twitter" => array("active" => "yes", "text" => "Tweet", "url" => ""),
382
+ "Follow" => array("active" => "yes", "text" => "Follow us", "url" => "")
383
+ ),
384
+ "custom_icons" => array(),
385
+ "settings" => array(
386
+ "icon_size" => "Medium",
387
+ "icon_width_type" => "Fully responsive",
388
+ "icon_width_size" => 240,
389
+ "edge_type" => "Round",
390
+ "edge_radius" => 5,
391
+ "style" => "Gradient",
392
+ "margin" => 10,
393
+ "text_align" => "Centered",
394
+ "show_count" => "no",
395
+ "counter_color" => "#aaaaaa",
396
+ "counter_bg_color" => "#fff",
397
+ "share_count_text" => "SHARES"
398
+ )
399
+ );
400
+ } else {
401
+ return ""; // dont return anything if options not set;
402
+ }
403
+ }
404
+ $twitter_text = isset($option2['sfsi_twitter_aboutPageText']) && !empty($option2['sfsi_twitter_aboutPageText']) ? $option2['sfsi_twitter_aboutPageText'] : false;
405
 
406
+ $icon_width_type = $sfsi_responsive_icons["settings"]["icon_width_type"];
407
+ if ($option4['sfsi_display_counts'] == 'yes' && isset($sfsi_responsive_icons["settings"]['show_count']) && $sfsi_responsive_icons["settings"]['show_count'] == "yes") :
408
+ $counter_class = "sfsi_responsive_with_counter_icons";
409
+ $couter_display = "inline-block";
410
+ $counts = sfsi_getCounts(true);
411
+ $count = 0;
412
+ if (isset($counts['email_count'])) {
413
+ $count = (int) ($counts['email_count']) + $count;
414
+ }
415
+ if (isset($counts['fb_count'])) {
416
+ $count = (int) ($counts['fb_count']) + $count;
417
+ }
418
+ if (isset($counts['twitter_count'])) {
419
+ $count = (int) ($counts['twitter_count']) + $count;
420
+ } else { } else :
421
+ $counter_class = "sfsi_responsive_without_counter_icons";
422
+ $couter_display = "none";
423
+ endif;
424
+ $icons .= "<div class='sfsi_responsive_icons' style='display:inline-block; " . ($icon_width_type == "Fully Responsive" ? "width:100%;display:flex; " : 'width:100%') . "' data-icon-width-type='" . $icon_width_type . "' data-icon-width-size='" . $sfsi_responsive_icons["settings"]['icon_width_size'] . "' data-edge-type='" . $sfsi_responsive_icons["settings"]['edge_type'] . "' data-edge-radius='" . $sfsi_responsive_icons["settings"]['edge_radius'] . "' >";
425
+ $sfsi_anchor_div_style = "";
426
+ if ($sfsi_responsive_icons["settings"]["edge_type"] === "Round") {
427
+ $sfsi_anchor_div_style .= " border-radius:";
428
+ if ($sfsi_responsive_icons["settings"]["edge_radius"] !== "") {
429
+ $sfsi_anchor_div_style .= $sfsi_responsive_icons["settings"]["edge_radius"] . 'px; ';
430
+ } else {
431
+ $sfsi_anchor_div_style .= '0px; ';
432
+ }
433
+ }
434
 
435
+ ob_start(); ?>
436
+ <div class="sfsi_responsive_icons_count sfsi_<?php echo ($icon_width_type == "Fully responsive" ? 'responsive' : 'fixed'); ?>_count_container sfsi_<?php echo strtolower($sfsi_responsive_icons['settings']['icon_size']); ?>_button" style='display:<?php echo $couter_display; ?>;text-align:center; background-color:<?php echo $sfsi_responsive_icons['settings']['counter_bg_color']; ?>;color:<?php echo $sfsi_responsive_icons['settings']['counter_color']; ?>; <?php echo $sfsi_anchor_div_style; ?>;'>
437
+ <h3 style="color:<?php echo $sfsi_responsive_icons['settings']['counter_color']; ?>; "><?php echo $count; ?></h3>
438
+ <h6 style="color:<?php echo $sfsi_responsive_icons['settings']['counter_color']; ?>;"><?php echo $sfsi_responsive_icons['settings']["share_count_text"]; ?></h6>
439
+ </div>
440
+ <?php
441
+ $icons .= ob_get_contents();
442
+ ob_end_clean();
443
+ $icons .= "\t<div class='sfsi_icons_container " . $counter_class . " sfsi_" . strtolower($sfsi_responsive_icons['settings']['icon_size']) . "_button_container sfsi_icons_container_box_" . ($icon_width_type !== "Fixed icon width" ? "fully" : 'fixed') . "_container ' style='" . ($icon_width_type !== "Fixed icon width" ? "width:100%;display:flex; " : 'width:auto') . "; text-align:center;' >";
444
+ $socialObj = new sfsi_SocialHelper();
445
+ //styles
446
+ $sfsi_anchor_style = "";
447
+ if ($sfsi_responsive_icons["settings"]["text_align"] == "Centered") {
448
+ $sfsi_anchor_style .= 'text-align:center;';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
449
  }
450
+ if ($sfsi_responsive_icons["settings"]["margin"] !== "") {
451
+ $sfsi_anchor_style .= 'margin-left:' . $sfsi_responsive_icons["settings"]["margin"] . "px; ";
452
+ // $sfsi_anchor_style.='margin-bottom:'.$sfsi_responsive_icons["settings"]["margin"]."px; ";
453
+ }
454
+ //styles
 
 
 
 
 
 
 
 
 
 
 
 
 
455
 
456
+ if ($sfsi_responsive_icons['settings']['icon_width_type'] === "Fixed icon width") {
457
+ $sfsi_anchor_div_style .= 'width:' . $sfsi_responsive_icons['settings']['icon_width_size'] . 'px;';
458
+ } else {
459
+ $sfsi_anchor_style .= " flex-basis:100%;";
460
+ $sfsi_anchor_div_style .= " width:100%;";
 
 
 
 
 
 
 
461
  }
462
+ // var_dump($sfsi_anchor_style,$sfsi_anchor_div_style);
463
+ foreach ($sfsi_responsive_icons['default_icons'] as $icon => $icon_config) {
464
+ // var_dump($icon_config);
465
+ // $current_url = $socialObj->sfsi_get_custom_share_link(strtolower($icon));
466
+ switch ($icon) {
467
+ case "facebook":
468
+ $share_url = "https://www.facebook.com/sharer/sharer.php?u=" . urlencode($current_url);
469
+ break;
470
+ case "Twitter":
471
+ $twitter_text = $share_url = "https://twitter.com/intent/tweet?text=" . urlencode($twitter_text) . "&url=" . urlencode($current_url);
472
+ break;
473
+ case "Follow":
474
+ $share_url = (isset($option2['sfsi_email_url']))
475
+ ? $option2['sfsi_email_url']
476
+ : 'https://specificfeeds.com/follow';
477
+ break;
478
+ }
479
+ $icons .= "\t\t" . "<a " . sfsi_checkNewWindow() . " href='" . ($icon_config['url'] == "" ? $share_url : $icon_config['url']) . "' style='" . ($icon_config['active'] == 'yes' ? ($sfsi_responsive_icons['settings']['icon_width_type'] === "Fixed icon width" ? 'display:inline-flex' : 'display:block') : 'display:none') . ";" . $sfsi_anchor_style . "' class=" . ($sfsi_responsive_icons['settings']['icon_width_type'] === "Fixed icon width" ? 'sfsi_responsive_fixed_width' : 'sfsi_responsive_fluid') . " >" . "\n";
480
+ $icons .= "\t\t\t<div class='sfsi_responsive_icon_item_container sfsi_responsive_icon_" . strtolower($icon) . "_container sfsi_" . strtolower($sfsi_responsive_icons['settings']['icon_size']) . "_button " . ($sfsi_responsive_icons['settings']['style'] == "Gradient" ? 'sfsi_responsive_icon_gradient' : '') . (" sfsi_" . (strtolower($sfsi_responsive_icons['settings']['text_align']) == "centered" ? 'centered' : 'left-align') . "_icon") . "' style='" . $sfsi_anchor_div_style . " ' >" . "\n";
481
+ $icons .= "\t\t\t\t<img style='max-height: 25px;display:unset;margin:0' class='sfsi_wicon' src='" . SFSI_PLUGURL . "images/responsive-icon/" . $icon . ('Follow' === $icon ? '.png' : '.svg') . "'>" . "\n";
482
+ $icons .= "\t\t\t\t<span style='color:#fff' >" . ($icon_config["text"]) . "</span>" . "\n";
483
+ $icons .= "\t\t\t</div>" . "\n";
484
+ $icons .= "\t\t</a>" . "\n\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
485
  }
486
+ $sfsi_responsive_icons_custom_icons = array();
487
+ if (!isset($sfsi_responsive_icons['custom_icons']) || !empty($sfsi_responsive_icons['custom_icons'])) {
488
+ $sfsi_responsive_icons_custom_icons = $sfsi_responsive_icons['custom_icons'];
489
+ } else {
490
+ $count = 5;
491
+ for ($i = 0; $i < $count; $i++) {
492
+ array_push($sfsi_responsive_icons_custom_icons, array(
493
+ "added" => "no",
494
+ "active" => "no",
495
+ "text" => "Share",
496
+ "bg-color" => "#729fcf",
497
+ "url" => "",
498
+ "icon" => ''
499
+ ));
500
+ }
 
 
 
 
 
 
501
  }
502
+ foreach ($sfsi_responsive_icons_custom_icons as $icon => $icon_config) {
503
+ // $current_url = $socialObj->sfsi_get_custom_share_link(strtolower($icon));
504
+ $icons .= "\t\t" . "<a " . sfsi_checkNewWindow() . " href='" . ($icon_config['url'] == "" ? "" : $icon_config['url']) . "' style='" . ($icon_config['active'] == 'yes' ? 'display:inline-flex' : 'display:none') . ";" . $sfsi_anchor_style . "' class=" . ($sfsi_responsive_icons['settings']['icon_width_type'] === "Fixed icon width" ? 'sfsi_responsive_fixed_width' : 'sfsi_responsive_fluid') . " >" . "\n";
505
+ $icons .= "\t\t\t<div class='sfsi_responsive_icon_item_container sfsi_responsive_custom_icon sfsi_responsive_icon_" . strtolower($icon) . "_container sfsi_" . strtolower($sfsi_responsive_icons['settings']['icon_size']) . "_button " . ("sfsi_" . (strtolower($sfsi_responsive_icons['settings']['text_align']) == "centered" ? 'centered' : 'left-align') . "_icon") . " " . ($sfsi_responsive_icons['settings']['style'] == "Gradient" ? 'sfsi_responsive_icon_gradient' : '') . "' style='" . $sfsi_anchor_div_style . " background-color:" . (isset($icon_config['bg-color']) ? $icon_config['bg-color'] : '#73d17c') . "' >" . "\n";
506
+ $icons .= "\t\t\t\t<img style='max-height: 25px' src='" . (isset($icon_config['icon']) ? $icon_config['icon'] : '#') . "'>" . "\n";
507
+ $icons .= "\t\t\t\t<span style='color:#fff' >" . ($icon_config["text"]) . "</span>" . "\n";
508
+ $icons .= "\t\t\t</div>" . "\n";
509
+ $icons .= "\t\t</a>" . "\n\n";
510
+ }
511
+ $icons .= "</div></div><!--end responsive_icons-->";
512
+ return $icons;
513
+ endif;
514
+ }
515
+ ?>
 
libs/sfsi_custom_social_sharing_data.php CHANGED
@@ -1,77 +1,77 @@
1
- <?php
2
-
3
- function sfsi_social_media_metabox( $post ) { ?>
4
- <style>
5
- .sfsi_new_prmium_follw p {
6
- width: 90%;
7
- color: #1a1d20 !important;
8
- font-size: 17px !important;
9
- font-family: helveticaregular !important;
10
- }
11
- .sfsi_new_prmium_follw {
12
- width: 97%;
13
- margin-top: 8px;
14
- display: inline-block;
15
- background: #f3faf6;
16
- border: 1px solid #12a252;
17
- padding: 0px 25px 0px 15px;
18
- height: 63px;
19
- clear: both;
20
- position: relative;
21
- }
22
- .sfsi_new_prmium_sharing p a {
23
- color: #12a252 !important;
24
- border-bottom: 1px solid #12a252;
25
- text-decoration: none;
26
- }
27
- .sfsi_new_prmium_follw p b {
28
- font-weight: bold;
29
- color: #1a1d20 !important;
30
- }
31
- .sfsi_hidenotice{
32
- cursor: pointer;
33
- float: right;
34
- position: absolute;
35
- right: 10px;
36
- top: 21px;
37
- color: grey;
38
- font-size: 13px;
39
- }
40
- </style>
41
-
42
- <script type="text/javascript">
43
- window.addEventListener('sfsi_functions_loaded',function(){
44
- jQuery('.sfsi_hidenotice').on('click',function(){
45
- var data = {
46
- action:"update_sharing_settings",
47
- sfsi_custom_social_hide:"yes",
48
- nonce: '<?php echo wp_create_nonce('update_sharing_settings') ?>'
49
- };
50
- jQuery.post(ajaxurl, data, function(response) {
51
- if(response){
52
- alert('Settings updated');
53
- jQuery('#sfsi-social-media').remove();
54
- }
55
- });
56
- });
57
- });
58
- </script>
59
-
60
- <div class="sfsi_new_prmium_follw"><p><b>New:</b> The Premium Plugin (Ultimate Social Media) allows you to define which picture, snippet text or tweet gets shared. <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_post_or_page&utm_campaign=define_pic_and_text&utm_medium=banner"target="_blank">See all features</a></p><a class="sfsi_hidenotice" href="javascript:void(0)">Hide this notice</a></div>
61
-
62
- <?php }
63
-
64
-
65
- function sfsi_icons_add_meta_boxes() {
66
- $screen = get_current_screen();
67
- $option5 = unserialize(get_option('sfsi_section5_options',false));
68
- $hideSectionVal = (isset($option5['sfsi_custom_social_hide'])) ? $option5['sfsi_custom_social_hide']: 'no';
69
-
70
- if($hideSectionVal=='no'){
71
- if(isset($screen->post_type) && ('page'==$screen->post_type || 'post'==$screen->post_type)){
72
- add_meta_box( 'sfsi-social-media', 'Ultimate Social Media – Sharing text & pictures', 'sfsi_social_media_metabox', $screen->post_type, 'normal', 'low' );
73
- }
74
- }
75
- }
76
- add_action( 'add_meta_boxes', 'sfsi_icons_add_meta_boxes' );
77
  ?>
1
+ <?php
2
+
3
+ function sfsi_social_media_metabox( $post ) { ?>
4
+ <style>
5
+ .sfsi_new_prmium_follw p {
6
+ width: 90%;
7
+ color: #1a1d20 !important;
8
+ font-size: 17px !important;
9
+ font-family: helveticaregular !important;
10
+ }
11
+ .sfsi_new_prmium_follw {
12
+ width: 97%;
13
+ margin-top: 8px;
14
+ display: inline-block;
15
+ background: #f3faf6;
16
+ border: 1px solid #12a252;
17
+ padding: 0px 25px 0px 15px;
18
+ height: 63px;
19
+ clear: both;
20
+ position: relative;
21
+ }
22
+ .sfsi_new_prmium_sharing p a {
23
+ color: #12a252 !important;
24
+ border-bottom: 1px solid #12a252;
25
+ text-decoration: none;
26
+ }
27
+ .sfsi_new_prmium_follw p b {
28
+ font-weight: bold;
29
+ color: #1a1d20 !important;
30
+ }
31
+ .sfsi_hidenotice{
32
+ cursor: pointer;
33
+ float: right;
34
+ position: absolute;
35
+ right: 10px;
36
+ top: 21px;
37
+ color: grey;
38
+ font-size: 13px;
39
+ }
40
+ </style>
41
+
42
+ <script type="text/javascript">
43
+ window.addEventListener('sfsi_functions_loaded',function(){
44
+ jQuery('.sfsi_hidenotice').on('click',function(){
45
+ var data = {
46
+ action:"update_sharing_settings",
47
+ sfsi_custom_social_hide:"yes",
48
+ nonce: '<?php echo wp_create_nonce('update_sharing_settings') ?>'
49
+ };
50
+ jQuery.post(ajaxurl, data, function(response) {
51
+ if(response){
52
+ alert('Settings updated');
53
+ jQuery('#sfsi-social-media').remove();
54
+ }
55
+ });
56
+ });
57
+ });
58
+ </script>
59
+
60
+ <div class="sfsi_new_prmium_follw"><p><b>New:</b> The Premium Plugin (Ultimate Social Media) allows you to define which picture, snippet text or tweet gets shared. <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_post_or_page&utm_campaign=define_pic_and_text&utm_medium=banner"target="_blank">See all features</a></p><a class="sfsi_hidenotice" href="javascript:void(0)">Hide this notice</a></div>
61
+
62
+ <?php }
63
+
64
+
65
+ function sfsi_icons_add_meta_boxes() {
66
+ $screen = get_current_screen();
67
+ $option5 = unserialize(get_option('sfsi_section5_options',false));
68
+ $hideSectionVal = (isset($option5['sfsi_custom_social_hide'])) ? $option5['sfsi_custom_social_hide']: 'no';
69
+
70
+ if($hideSectionVal=='no'){
71
+ if(isset($screen->post_type) && ('page'==$screen->post_type || 'post'==$screen->post_type)){
72
+ add_meta_box( 'sfsi-social-media', 'Ultimate Social Media – Sharing text & pictures', 'sfsi_social_media_metabox', $screen->post_type, 'normal', 'low' );
73
+ }
74
+ }
75
+ }
76
+ add_action( 'add_meta_boxes', 'sfsi_icons_add_meta_boxes' );
77
  ?>
libs/sfsi_install_uninstall.php CHANGED
@@ -39,7 +39,7 @@ function sfsi_update_plugin()
39
  update_option("sfsi_custom_icons", "yes");
40
  }
41
  //Install version
42
- update_option("sfsi_pluginVersion", "2.44");
43
 
44
  if (!get_option('sfsi_serverphpVersionnotification')) {
45
  add_option("sfsi_serverphpVersionnotification", "yes");
@@ -796,6 +796,8 @@ function sfsi_activate_plugin()
796
  'sfsi_icons_size' => '40',
797
  'sfsi_icons_spacing' => '5',
798
  'sfsi_icons_Alignment' => 'left',
 
 
799
  'sfsi_icons_perRow' => '5',
800
  'sfsi_icons_ClickPageOpen' => 'yes',
801
  'sfsi_icons_suppress_errors' => 'no',
@@ -1368,49 +1370,58 @@ function sfsi_pingVendor($post_id)
1368
  if (wp_is_post_revision($post_id))
1369
  return;
1370
  $post_data = get_post($post_id, ARRAY_A);
1371
- if ($post_data['post_status'] == 'publish' && $post_data['post_type'] == 'post') :
1372
- $categories = wp_get_post_categories($post_data['ID']);
1373
- $cats = '';
1374
- $total = count($categories);
1375
- $count = 1;
1376
- foreach ($categories as $c) {
1377
- $cat_data = get_category($c);
1378
- if ($count == $total) {
1379
- $cats .= $cat_data->name;
1380
- } else {
1381
- $cats .= $cat_data->name . ',';
1382
- }
1383
- $count++;
1384
- }
1385
- $postto_array = array(
1386
- 'feed_id' => sanitize_text_field(get_option('sfsi_feed_id')),
1387
- 'title' => $post_data['post_title'],
1388
- 'description' => $post_data['post_content'],
1389
- 'link' => $post_data['guid'],
1390
- 'author' => get_the_author_meta('user_login', $post_data['post_author']),
1391
- 'category' => $cats,
1392
- 'pubDate' => $post_data['post_modified'],
1393
- 'rssurl' => sfsi_get_bloginfo('rss2_url')
1394
- );
1395
-
1396
- $args = array(
1397
- 'body' => $postto_array,
1398
- 'blocking' => true,
1399
- 'user-agent' => 'sf rss request',
1400
- 'header' => array("Content-Type" => "application/x-www-form-urlencoded"),
1401
- 'sslverify' => true
1402
- );
1403
- $resp = wp_remote_post('http://www.specificfeeds.com/wordpress/addpostdata ', $args);
1404
- if (is_wp_error($resp)) {
1405
- // update_option("sfsi_plus_curlErrorNotices", "yes");
1406
- // update_option("sfsi_plus_curlErrorMessage", $resp->get_error_message());
1407
- return false;
1408
- } else {
1409
- // update_option("sfsi_plus_curlErrorNotices", "no");
1410
- // update_option("sfsi_plus_curlErrorMessage", "");
1411
- $resp = json_decode($resp['body']);
1412
- return true;
1413
- }
 
 
 
 
 
 
 
 
 
1414
  endif;
1415
  }
1416
  add_action('save_post', 'sfsi_pingVendor');
@@ -1444,4 +1455,8 @@ function sfsi_was_displaying_addthis()
1444
  update_option('sfsi_section6_options', serialize($sfsi_section6));
1445
  }
1446
  }
 
 
 
 
1447
  ?>
39
  update_option("sfsi_custom_icons", "yes");
40
  }
41
  //Install version
42
+ update_option("sfsi_pluginVersion", "2.45");
43
 
44
  if (!get_option('sfsi_serverphpVersionnotification')) {
45
  add_option("sfsi_serverphpVersionnotification", "yes");
796
  'sfsi_icons_size' => '40',
797
  'sfsi_icons_spacing' => '5',
798
  'sfsi_icons_Alignment' => 'left',
799
+ 'sfsi_icons_Alignment_via_widget' => 'left',
800
+ 'sfsi_icons_Alignment_via_shortcode' => 'left',
801
  'sfsi_icons_perRow' => '5',
802
  'sfsi_icons_ClickPageOpen' => 'yes',
803
  'sfsi_icons_suppress_errors' => 'no',
1370
  if (wp_is_post_revision($post_id))
1371
  return;
1372
  $post_data = get_post($post_id, ARRAY_A);
1373
+ if($post_data['post_status']=='publish' && $post_data['post_type']=='post') :
1374
+ $feed_id = sanitize_text_field(get_option('sfsi_feed_id'));
1375
+ return sfsi_setUpfeeds($feed_id);
1376
+ // $categories = wp_get_post_categories($post_data['ID']);
1377
+ // $cats='';
1378
+ // $total=count($categories);
1379
+ // $count=1;
1380
+ // foreach($categories as $c)
1381
+ // {
1382
+ // $cat_data = get_category( $c );
1383
+ // if($count==$total)
1384
+ // {
1385
+ // $cats.= $cat_data->name;
1386
+ // }
1387
+ // else
1388
+ // {
1389
+ // $cats.= $cat_data->name.',';
1390
+ // }
1391
+ // $count++;
1392
+ // }
1393
+ // $postto_array = array(
1394
+ // 'feed_id' => sanitize_text_field(get_option('sfsi_plus_feed_id')),
1395
+ // 'title' => $post_data['post_title'],
1396
+ // 'description' => $post_data['post_content'],
1397
+ // 'link' => $post_data['guid'],
1398
+ // 'author' => get_the_author_meta('user_login', $post_data['post_author']),
1399
+ // 'category' => $cats,
1400
+ // 'pubDate' => $post_data['post_modified'],
1401
+ // 'rssurl' => sfsi_plus_get_bloginfo('rss2_url')
1402
+ // );
1403
+ // $args = array(
1404
+ // 'body' => $postto_array,
1405
+ // 'blocking' => true,
1406
+ // 'user-agent' => 'sf rss request',
1407
+ // 'header' => array("Content-Type"=>"application/x-www-form-urlencoded"),
1408
+ // 'sslverify' => true
1409
+ // );
1410
+ // $data = get_option('sfsi_plus_log',array());
1411
+ // array_push($data,array("pingVendor"=>"ready to post","post_id"=>$post_id,"post_fields"=>$postto_array));
1412
+ // update_option('sfsi_plus_log',$data);
1413
+ // $resp = wp_remote_post( 'https://www.specificfeeds.com/wordpress/addpostdata', $args );
1414
+ // if ( !is_wp_error( $resp ) ) {
1415
+ // $resp = json_decode($resp['body']);
1416
+ // $data = get_option('sfsi_plus_log',array());
1417
+ // array_push($data,array("pingVendor"=>"sucess on call","post_id"=>$post_id,"response"=>$resp));
1418
+ // update_option('sfsi_plus_log',$data);
1419
+ // return true;
1420
+ // }else{
1421
+ // $data = get_option('sfsi_plus_log',array());
1422
+ // array_push($data,array("pingVendor"=>"error on call","post_id"=>$post_id,"err"=>$resp));
1423
+ // update_option('sfsi_plus_log',$data);
1424
+ // }
1425
  endif;
1426
  }
1427
  add_action('save_post', 'sfsi_pingVendor');
1455
  update_option('sfsi_section6_options', serialize($sfsi_section6));
1456
  }
1457
  }
1458
+
1459
+
1460
+
1461
+
1462
  ?>
libs/sfsi_subscribe_widget.php CHANGED
@@ -1,103 +1,103 @@
1
- <?php
2
- // Creating the widget
3
- class subscriber_widget extends WP_Widget {
4
-
5
- function __construct()
6
- {
7
- parent::__construct(
8
- // Base ID of your widget
9
- 'subscriber_widget',
10
-
11
- // Widget name will appear in UI
12
- __('Ultimate Social Subscribe Form', 'subscriber_widget_domain'),
13
-
14
- // Widget description
15
- array( 'description' => __( 'Ultimate Social Subscribe Form', 'subscriber_widget_domain' ), )
16
- );
17
- }
18
-
19
- public function widget( $args, $instance )
20
- {
21
- $title = apply_filters( 'widget_title', $instance['title'] );
22
-
23
- // before and after widget arguments are defined by themes
24
- echo $args['before_widget'];
25
-
26
- if ( ! empty( $title ) )
27
- {
28
- echo $args['before_title'] . $title . $args['after_title'];
29
- }
30
-
31
- // Call subscriber form
32
- echo do_shortcode("[USM_form]");
33
-
34
- echo $args['after_widget'];
35
- }
36
-
37
- // Widget Backend
38
- public function form( $instance )
39
- {
40
- if ( isset( $instance[ 'title' ] ))
41
- {
42
- $title = $instance[ 'title' ];
43
- }
44
- else
45
- {
46
- $title = '';
47
- }
48
- ?>
49
- <p>
50
- <label for="<?php echo $this->get_field_id( 'title' ); ?>">Title:</label>
51
- <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>"
52
- name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
53
- </p>
54
- <?php
55
- }
56
-
57
- // Updating widget replacing old instances with new
58
- public function update( $newInstance, $oldInstance )
59
- {
60
- $instance = array();
61
- $instance['title'] = ( ! empty( $newInstance['title'] ) ) ? strip_tags( $newInstance['title'] ) : '';
62
- return $instance;
63
- }
64
- }
65
- // Class wpb_widget ends here
66
-
67
- // Register and load the widget
68
- function subscriber_load_widget()
69
- {
70
- register_widget( 'subscriber_widget' );
71
- }
72
- add_action( 'widgets_init', 'subscriber_load_widget' );
73
- ?><?php
74
- add_shortcode("USM_form", "sfsi_get_subscriberForm");
75
- function sfsi_get_subscriberForm()
76
- {
77
- $option8 = unserialize(get_option('sfsi_section8_options',false));
78
- $sfsi_feediid = sanitize_text_field(get_option('sfsi_feed_id'));
79
- if($sfsi_feediid == ""){
80
- $url = "https://www.specificfeeds.com/subscribe?pub=boTZa2n0OIjC4D8PkiyzByH-uKEJSZgqMW-sJiFwbuEnoxENjKva2A";
81
- }else{
82
- $url = "https://www.specificfeeds.com/widgets/subscribeWidget/";
83
- $url = $url.$sfsi_feediid.'/8/';
84
-
85
- }
86
-
87
- $return = '';
88
- $return .= '<div class="sfsi_subscribe_Popinner">
89
- <form method="post" onsubmit="return sfsi_processfurther(this);" target="popupwindow" action="'.$url.'">
90
- <h5>'.trim(sanitize_text_field($option8['sfsi_form_heading_text'])).'</h5>
91
- <div class="sfsi_subscription_form_field">
92
- <input type="email" name="data[Widget][email]" value="" placeholder="'.trim($option8['sfsi_form_field_text']).'"/>
93
- </div>
94
- <div class="sfsi_subscription_form_field">
95
- <input type="hidden" name="data[Widget][feed_id]" value="'.$sfsi_feediid.'">
96
- <input type="hidden" name="data[Widget][feedtype]" value="8">
97
- <input type="submit" name="subscribe" @click="sfsi_plus_handle_subscription_form" value="'.sanitize_text_field($option8['sfsi_form_button_text']).'" />
98
- </div>
99
- </form>
100
- </div>';
101
- return $return;
102
- }
103
  ?>
1
+ <?php
2
+ // Creating the widget
3
+ class subscriber_widget extends WP_Widget {
4
+
5
+ function __construct()
6
+ {
7
+ parent::__construct(
8
+ // Base ID of your widget
9
+ 'subscriber_widget',
10
+
11
+ // Widget name will appear in UI
12
+ __('Ultimate Social Subscribe Form', 'subscriber_widget_domain'),
13
+
14
+ // Widget description
15
+ array( 'description' => __( 'Ultimate Social Subscribe Form', 'subscriber_widget_domain' ), )
16
+ );
17
+ }
18
+
19
+ public function widget( $args, $instance )
20
+ {
21
+ $title = apply_filters( 'widget_title', $instance['title'] );
22
+
23
+ // before and after widget arguments are defined by themes
24
+ echo $args['before_widget'];
25
+
26
+ if ( ! empty( $title ) )
27
+ {
28
+ echo $args['before_title'] . $title . $args['after_title'];
29
+ }
30
+
31
+ // Call subscriber form
32
+ echo do_shortcode("[USM_form]");
33
+
34
+ echo $args['after_widget'];
35
+ }
36
+
37
+ // Widget Backend
38
+ public function form( $instance )
39
+ {
40
+ if ( isset( $instance[ 'title' ] ))
41
+ {
42
+ $title = $instance[ 'title' ];
43
+ }
44
+ else
45
+ {
46
+ $title = '';
47
+ }
48
+ ?>
49
+ <p>
50
+ <label for="<?php echo $this->get_field_id( 'title' ); ?>">Title:</label>
51
+ <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>"
52
+ name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
53
+ </p>
54
+ <?php
55
+ }
56
+
57
+ // Updating widget replacing old instances with new
58
+ public function update( $newInstance, $oldInstance )
59
+ {
60
+ $instance = array();
61
+ $instance['title'] = ( ! empty( $newInstance['title'] ) ) ? strip_tags( $newInstance['title'] ) : '';
62
+ return $instance;
63
+ }
64
+ }
65
+ // Class wpb_widget ends here
66
+
67
+ // Register and load the widget
68
+ function subscriber_load_widget()
69
+ {
70
+ register_widget( 'subscriber_widget' );
71
+ }
72
+ add_action( 'widgets_init', 'subscriber_load_widget' );
73
+ ?><?php
74
+ add_shortcode("USM_form", "sfsi_get_subscriberForm");
75
+ function sfsi_get_subscriberForm()
76
+ {
77
+ $option8 = unserialize(get_option('sfsi_section8_options',false));
78
+ $sfsi_feediid = sanitize_text_field(get_option('sfsi_feed_id'));
79
+ if($sfsi_feediid == ""){
80
+ $url = "https://www.specificfeeds.com/subscribe?pub=boTZa2n0OIjC4D8PkiyzByH-uKEJSZgqMW-sJiFwbuEnoxENjKva2A";
81
+ }else{
82
+ $url = "https://www.specificfeeds.com/widgets/subscribeWidget/";
83
+ $url = $url.$sfsi_feediid.'/8/';
84
+
85
+ }
86
+
87
+ $return = '';
88
+ $return .= '<div class="sfsi_subscribe_Popinner">
89
+ <form method="post" onsubmit="return sfsi_processfurther(this);" target="popupwindow" action="'.$url.'">
90
+ <h5>'.trim(sanitize_text_field($option8['sfsi_form_heading_text'])).'</h5>
91
+ <div class="sfsi_subscription_form_field">
92
+ <input type="email" name="data[Widget][email]" value="" placeholder="'.trim($option8['sfsi_form_field_text']).'"/>
93
+ </div>
94
+ <div class="sfsi_subscription_form_field">
95
+ <input type="hidden" name="data[Widget][feed_id]" value="'.$sfsi_feediid.'">
96
+ <input type="hidden" name="data[Widget][feedtype]" value="8">
97
+ <input type="submit" name="subscribe" @click="sfsi_plus_handle_subscription_form" value="'.sanitize_text_field($option8['sfsi_form_button_text']).'" />
98
+ </div>
99
+ </form>
100
+ </div>';
101
+ return $return;
102
+ }
103
  ?>
libs/sfsi_widget.php CHANGED
@@ -1,1625 +1,1421 @@
1
- <?php
2
- /* create SFSI widget */
3
- class Sfsi_Widget extends WP_Widget
4
- {
5
-
6
- function __construct()
7
- {
8
- $widget_ops = array( 'classname' => 'sfsi', 'description' => __('Ultimate Social Media Icons widgets', 'Ultimate Social Media Icons ') );
9
- $control_ops = array( 'width' => 300, 'height' => 350, 'id_base' => 'sfsi-widget' );
10
-
11
- parent::__construct(
12
- // Base ID of your widget
13
- 'sfsi-widget',
14
-
15
- // Widget name will appear in UI
16
- __('Ultimate Social Media Icons', 'Ultimate Social Media Icons'),
17
-
18
- // Widget description
19
- $widget_ops,
20
-
21
- $control_ops
22
- );
23
- }
24
-
25
- function widget( $args, $instance )
26
- {
27
- extract( $args );
28
- /*Our variables from the widget settings. */
29
- $title = isset( $instance['title'] ) ? apply_filters('widget_title', $instance['title'] ) : '';
30
- // var_dump($title,'ldfjgkdfj');
31
- $show_info = isset( $instance['show_info'] ) ? $instance['show_info'] : false;
32
-
33
- global $is_floter;
34
- echo $before_widget;
35
-
36
- /* Display the widget title */
37
- if ( $title ) echo $before_title . $title . $after_title;
38
- ?>
39
- <div class="sfsi_widget" data-position="widget">
40
- <div id='sfsi_wDiv'></div>
41
- <?php
42
- /* Link the main icons function */
43
- echo sfsi_check_visiblity(0);
44
- ?>
45
- <div style="clear: both;"></div>
46
- </div>
47
- <?php
48
- if ( is_active_widget( false, false, $this->id_base, true ) ) { }
49
- echo $after_widget;
50
- }
51
-
52
- /*Update the widget */
53
- function update( $new_instance, $old_instance )
54
- {
55
- $instance = $old_instance;
56
- //Strip tags from title and name to remove HTML
57
- if($new_instance['showf']==0)
58
- {
59
- $instance['showf']=1;
60
- }
61
- else
62
- {
63
- $instance['showf']=0;
64
- }
65
- $instance['title'] = strip_tags( $new_instance['title'] );
66
- return $instance;
67
- }
68
-
69
- /* Set up some default widget settings. */
70
- function form( $instance )
71
- {
72
- $defaults = array( 'title' =>"" );
73
- $instance = wp_parse_args( (array) $instance, $defaults );
74
- if(isset($instance['showf']) && !empty($instance['showf']))
75
- {
76
- if( $instance['showf'] == 0 && empty($instance['title']))
77
- {
78
- $instance['title']='Please follow & like us :)';
79
- }
80
- else
81
- {
82
- $instance['title'];
83
- }
84
- }
85
- else
86
- {
87
- $instance['title']='Please follow & like us :)';
88
- }
89
- ?>
90
- <p>
91
- <label for="<?php echo $this->get_field_id( 'title' ); ?>">Title</label>
92
- <input id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>"
93
- value="<?php echo $instance['title']; ?>" style="width:100%;" />
94
- <input type="hidden" value="<?php echo $instance['showf'] ?>" id="<?php echo $this->get_field_id( 'showf' ); ?>"
95
- name="<?php echo $this->get_field_name( 'showf' ); ?>" />
96
- </p>
97
- <p>
98
- Please go to the <a href="admin.php?page=sfsi-options">plugin page</a> to set your preferences
99
- </p>
100
- <?php
101
- }
102
- }
103
- /* END OF widget Class */
104
- /* register widget to wordpress */
105
- function register_sfsi_widgets()
106
- {
107
- register_widget( 'sfsi_widget' );
108
- }
109
- add_action( 'widgets_init', 'register_sfsi_widgets' );
110
-
111
- /* check the icons visiblity */
112
- function sfsi_check_visiblity($isFloter=0)
113
- {
114
- global $wpdb;
115
- /* Access the saved settings in database */
116
- $sfsi_section1_options = unserialize(get_option('sfsi_section1_options',false));
117
- $sfsi_section3 = unserialize(get_option('sfsi_section3_options',false));
118
- $sfsi_section5 = unserialize(get_option('sfsi_section5_options',false));
119
- $sfsi_section9 = unserialize(get_option('sfsi_section9_options',false));
120
-
121
- /* calculate the width and icons display alignments */
122
- $icons_space = $sfsi_section5['sfsi_icons_spacing'];
123
- $icons_size = $sfsi_section5['sfsi_icons_size'];
124
- $icons_per_row = ($sfsi_section5['sfsi_icons_perRow'])? $sfsi_section5['sfsi_icons_perRow'] : '';
125
-
126
- $icons_alignment = $sfsi_section5['sfsi_icons_Alignment'];
127
- $position = 'position:absolute;';
128
- $position1 = 'position:absolute;';
129
- $jquery ='<script>';
130
-
131
- $jquery ='<script>';
132
-
133
- $jquery .='window.addEventListener("sfsi_functions_loaded", function()
134
- {
135
- if (typeof sfsi_widget_set == "function") {
136
- sfsi_widget_set();
137
- }
138
- }); ';
139
-
140
-
141
- /* check if icons shuffling is activated in admin or not */
142
- if($sfsi_section5['sfsi_icons_stick']=="yes")
143
- {
144
- if(is_admin_bar_showing())
145
- {
146
- $Ictop = "30px";
147
- }
148
- else
149
- {
150
- $Ictop = "0";
151
- }
152
-
153
- $jquery.='window.addEventListener("sfsi_functions_loaded",function(){var s = jQuery(".sfsi_widget");
154
- var pos = s.position();
155
- jQuery(window).scroll(function(){
156
- sfsi_stick_widget("'.$Ictop.'");
157
- }); }); ';
158
- }
159
-
160
- /* check if icons floating is activated in admin */
161
- if($sfsi_section9['sfsi_icons_float']=="yes")
162
- {
163
- $top = "15";
164
- switch($sfsi_section9['sfsi_icons_floatPosition'])
165
- {
166
- case "top-left" : if(is_admin_bar_showing()) : $position.="position:absolute;left:30px;top:35px;"; $top="35"; else : $position.="position:absolute;left:10px;top:2%"; $top="10"; endif;
167
- break;
168
- case "top-right" : if(is_admin_bar_showing()) : $position.="position:absolute;right:30px;top:35px;"; $top="35"; else : $position.="position:absolute;right:10px;top:2%"; $top="10"; endif;
169
- break;
170
- case "center-right" : $position.="position:absolute;right:30px;top:50%"; $top="center";
171
- break;
172
- case "center-left" : $position.="position:absolute;left:30px;top:50%"; $top="center";
173
- break;
174
- case "center-top" :
175
- if(is_admin_bar_showing())
176
- {
177
- $position .= "left:50%;top:35px;"; $top="35";
178
- }
179
- else
180
- {
181
- $position .= "left:50%;top:10px;"; $top="10";
182
- }
183
- break;
184
- case "center-bottom" :
185
- $position .= "left:50%;bottom:0px"; $top="bottom";
186
- break;
187
-
188
- case "bottom-right" : $position.="position:absolute;right:30px;bottom:0px"; $top="bottom";
189
- break;
190
- case "bottom-left" : $position.="position:absolute;left:30px;bottom:0px"; $top="bottom";
191
- break;
192
- }
193
- //$jquery.="jQuery( document ).ready(function( $ ) { sfsi_float_widget('".$top."')});";
194
- if($sfsi_section9['sfsi_icons_floatPosition'] == 'center-right' || $sfsi_section9['sfsi_icons_floatPosition'] == 'center-left')
195
- {
196
- $jquery.="window.addEventListener('sfsi_functions_loaded',function()
197
- {
198
- var topalign = ( jQuery(window).height() - jQuery('#sfsi_floater').height() ) / 2;
199
- jQuery('#sfsi_floater').css('top',topalign);
200
- sfsi_float_widget('".$top."');
201
- });";
202
- }
203
- else if($sfsi_section9['sfsi_icons_floatPosition'] == 'center-top' || $sfsi_section9['sfsi_icons_floatPosition'] == 'center-bottom'){
204
-
205
- $jquery.="window.addEventListener('sfsi_functions_loaded',function()
206
- {
207
- var leftalign = ( jQuery(window).width() - jQuery('#sfsi_floater').width() ) / 2;
208
- jQuery('#sfsi_floater').css('left',leftalign);
209
- sfsi_float_widget('".$top."');
210
- });";
211
- }
212
- else
213
- {
214
- $jquery.="window.addEventListener('sfsi_functions_loaded',function(){sfsi_float_widget('".$top."')});";
215
- }
216
- }
217
-
218
- $extra=0;
219
- if($sfsi_section3['sfsi_shuffle_icons']=="yes")
220
- {
221
- if($sfsi_section3['sfsi_shuffle_Firstload']=="yes" && $sfsi_section3['sfsi_shuffle_interval']=="yes")
222
- {
223
- $shuffle_time=(isset($sfsi_section3['sfsi_shuffle_intervalTime'])) ? $sfsi_section3['sfsi_shuffle_intervalTime'] : 3;
224
- $shuffle_time=$shuffle_time*1000;
225
- $jquery.="window.addEventListener('sfsi_functions_loaded',function(){ jQuery('.sfsi_wDiv').each(function(){ new window.Manipulator( jQuery(this)); }); setTimeout(function(){ jQuery('#sfsi_wDiv').each(function(){ jQuery(this).click(); })},2000); setInterval(function(){ jQuery('#sfsi_wDiv').each(function(){ jQuery(this).click(); })},".$shuffle_time."); });";
226
- }
227
- else if($sfsi_section3['sfsi_shuffle_Firstload']=="no" && $sfsi_section3['sfsi_shuffle_interval']=="yes")
228
- {
229
- $shuffle_time=(isset($sfsi_section3['sfsi_shuffle_intervalTime'])) ? $sfsi_section3['sfsi_shuffle_intervalTime'] : 3;
230
- $shuffle_time=$shuffle_time*1000;
231
- $jquery.="window.addEventListener('sfsi_functions_loaded',function(){ jQuery('.sfsi_wDiv').each(function(){ new window.Manipulator( jQuery(this)); }); setInterval(function(){ jQuery('#sfsi_wDiv').each(function(){ jQuery(this).click(); })},".$shuffle_time."); });";
232
- }
233
- else
234
- {
235
- $jquery.="window.addEventListener('sfsi_functions_loaded',function(){ jQuery('.sfsi_wDiv').each(function(){ new window.Manipulator( jQuery(this)); }); setTimeout(function(){ jQuery('#sfsi_wDiv').each(function(){ jQuery(this).click(); })},2000); });";
236
- }
237
- }
238
-
239
- /* magnage the icons in saved order in admin */
240
- $custom_icons_order = unserialize($sfsi_section5['sfsi_CustomIcons_order']);
241
- $icons = unserialize($sfsi_section1_options['sfsi_custom_files']);
242
- if(!isset($sfsi_section5['sfsi_telegramIcon_order'])){
243
- $sfsi_section5['sfsi_telegramIcon_order'] = '11';
244
- }
245
- if(!isset($sfsi_section5['sfsi_vkIcon_order'])){
246
- $sfsi_section5['sfsi_vkIcon_order'] = '12';
247
- }
248
- if(!isset($sfsi_section5['sfsi_okIcon_order'])){
249
- $sfsi_section5['sfsi_okIcon_order'] = '13';
250
- }
251
- if(!isset($sfsi_section5['sfsi_weiboIcon_order'])){
252
- $sfsi_section5['sfsi_weiboIcon_order'] = '14';
253
- }
254
- if(!isset($sfsi_section5['sfsi_wechatIcon_order'])){
255
- $sfsi_section5['sfsi_wechatIcon_order'] = '15';
256
- }
257
- $icons_order = array(
258
- '0' => '',
259
- $sfsi_section5['sfsi_rssIcon_order']=>'rss',
260
- $sfsi_section5['sfsi_emailIcon_order']=>'email',
261
- $sfsi_section5['sfsi_facebookIcon_order']=>'facebook',
262
- $sfsi_section5['sfsi_twitterIcon_order']=>'twitter',
263
- $sfsi_section5['sfsi_youtubeIcon_order']=>'youtube',
264
- $sfsi_section5['sfsi_pinterestIcon_order']=>'pinterest',
265
- $sfsi_section5['sfsi_linkedinIcon_order']=>'linkedin',
266
- $sfsi_section5['sfsi_instagramIcon_order']=>'instagram',
267
- $sfsi_section5['sfsi_telegramIcon_order']=>'telegram',
268
- $sfsi_section5['sfsi_vkIcon_order']=>'vk',
269
- $sfsi_section5['sfsi_okIcon_order']=>'ok',
270
- $sfsi_section5['sfsi_weiboIcon_order']=>'weibo',
271
- $sfsi_section5['sfsi_wechatIcon_order']=>'wechat',
272
- ) ;
273
- if(is_array($custom_icons_order) )
274
- {
275
- foreach($custom_icons_order as $data)
276
- {
277
- $icons_order[$data['order']] = $data;
278
- }
279
- }
280
- ksort($icons_order);
281
-
282
- /* calculate the total width of widget according to icons */
283
- if(!empty($icons_per_row))
284
- {
285
- $width = ((int)$icons_space+(int)$icons_size)*(int)$icons_per_row;
286
- $main_width = $width = $width+$extra;
287
- $main_width = $main_width."px";
288
- }
289
- else
290
- {
291
- $width = ((int)$icons_space+(int)$icons_size);
292
- $main_width = "35%";
293
- }
294
-
295
- /* built the main widget div */
296
- $icons_main = '<div class="norm_row sfsi_wDiv" style="width:'.$main_width.';text-align:'.$icons_alignment.';'.$position1.'">';
297
- $icons = "";
298
- /* loop through icons and bulit the icons with all settings applied in admin */
299
- foreach($icons_order as $index => $icn) :
300
- if(is_array($icn)) { $icon_arry=$icn; $icn="custom" ; }
301
- switch ($icn) :
302
- case 'rss' : if($sfsi_section1_options['sfsi_rss_display']=='yes') $icons.= sfsi_prepairIcons('rss');
303
- break;
304
- case 'email' : if($sfsi_section1_options['sfsi_email_display']=='yes') $icons.= sfsi_prepairIcons('email');
305
- break;
306
- case 'facebook' : if($sfsi_section1_options['sfsi_facebook_display']=='yes') $icons.= sfsi_prepairIcons('facebook');
307
- break;
308
- case 'twitter' : if($sfsi_section1_options['sfsi_twitter_display']=='yes') $icons.= sfsi_prepairIcons('twitter');
309
- break;
310
- case 'youtube' : if($sfsi_section1_options['sfsi_youtube_display']=='yes') $icons.= sfsi_prepairIcons('youtube');
311
- break;
312
- case 'pinterest' : if($sfsi_section1_options['sfsi_pinterest_display']=='yes') $icons.= sfsi_prepairIcons('pinterest');
313
- break;
314
- case 'linkedin' : if($sfsi_section1_options['sfsi_linkedin_display']=='yes') $icons.= sfsi_prepairIcons('linkedin');
315
- break;
316
- case 'instagram' : if($sfsi_section1_options['sfsi_instagram_display']=='yes') $icons.= sfsi_prepairIcons('instagram');
317
- break;
318
- case 'telegram' : if($sfsi_section1_options['sfsi_telegram_display']=='yes') $icons.= sfsi_prepairIcons('telegram');
319
- break;
320
- case 'vk' : if($sfsi_section1_options['sfsi_vk_display']=='yes') $icons.= sfsi_prepairIcons('vk');
321
- break;
322
- case 'ok' : if($sfsi_section1_options['sfsi_ok_display']=='yes') $icons.= sfsi_prepairIcons('ok');
323
- break;
324
- case 'weibo' : if($sfsi_section1_options['sfsi_weibo_display']=='yes') $icons.= sfsi_prepairIcons('weibo');
325
- break;
326
- case 'wechat' : if($sfsi_section1_options['sfsi_wechat_display']=='yes') $icons.= sfsi_prepairIcons('wechat');
327
- break;
328
- case 'custom' : $icons.= sfsi_prepairIcons($icon_arry['ele']);
329
- break;
330
- endswitch;
331
- endforeach;
332
-
333
- $jquery.="</script>";
334
- $icons.='</div >';
335
-
336
- $margin = $width+11;
337
-
338
- $icons_main.=$icons.'<div id="sfsi_holder" class="sfsi_holders" style="position: relative; float: left;width:100%;z-index:-1;"></div >'.$jquery;
339
- /* if floating of icons is active create a floater div */
340
- $icons_float='';
341
-
342
- if($sfsi_section9['sfsi_icons_float']=="yes" && $isFloter==1)
343
- {
344
- if($sfsi_section9['sfsi_icons_floatPosition'] == "top-left")
345
- {
346
- $styleMargin = "margin-top:".$sfsi_section9['sfsi_icons_floatMargin_top']."px;margin-left:".$sfsi_section9['sfsi_icons_floatMargin_left']."px;";
347
- }
348
- elseif($sfsi_section9['sfsi_icons_floatPosition'] == "top-right")
349
- {
350
- $styleMargin = "margin-top:".$sfsi_section9['sfsi_icons_floatMargin_top']."px;margin-right:".$sfsi_section9['sfsi_icons_floatMargin_right']."px;";
351
- }
352
- elseif($sfsi_section9['sfsi_icons_floatPosition'] == "center-left")
353
- {
354
- $styleMargin = "margin-left:".$sfsi_section9['sfsi_icons_floatMargin_left']."px;";
355
- }
356
- elseif($sfsi_section9['sfsi_icons_floatPosition'] == "center-right")
357
- {
358
- $styleMargin = "margin-right:".$sfsi_section9['sfsi_icons_floatMargin_right']."px;";
359
- }
360
- elseif($sfsi_section9['sfsi_icons_floatPosition'] == "bottom-left")
361
- {
362
- $styleMargin = "margin-bottom:".$sfsi_section9['sfsi_icons_floatMargin_bottom']."px;margin-left:".$sfsi_section9['sfsi_icons_floatMargin_left']."px;";
363
- }
364
- elseif($sfsi_section9['sfsi_icons_floatPosition'] == "bottom-right")
365
- {
366
- $styleMargin = "margin-bottom:".$sfsi_section9['sfsi_icons_floatMargin_bottom']."px;margin-right:".$sfsi_section9['sfsi_icons_floatMargin_right']."px;";
367
- }
368
-
369
- $icons_float = isset($styleMargin) && !empty($styleMargin) ? '<style type="text/css">#sfsi_floater { '.$styleMargin.' }</style>' : '';
370
- $icons_float .= '<div class="norm_row sfsi_wDiv" id="sfsi_floater" style="z-index: 9999;width:'.$width.'px;text-align:'.$icons_alignment.';'.$position.'">';
371
- $icons_float .= $icons;
372
- $icons_float .= "<input type='hidden' id='sfsi_floater_sec' value='".$sfsi_section9['sfsi_icons_floatPosition']."' />";
373
- $icons_float.="</div>".$jquery;
374
- return $icons_float; exit;
375
- }
376
- $icons_data=$icons_main.$icons_float;
377
- return $icons_data;
378
- }
379
-
380
- /* make all icons with saved settings in admin */
381
- function sfsi_prepairIcons($icon_name,$is_front=0)
382
- {
383
- global $wpdb; global $socialObj;
384
- $mouse_hover_effect = '';
385
- $active_theme = 'official';
386
- $sfsi_shuffle_Firstload = 'no';
387
- $sfsi_display_counts = "no";
388
- $icon = '';
389
- $url = '';
390
- $alt_text = '';
391
- $new_window = '';
392
- $class = '';
393
-
394
- /* access all saved settings in admin */
395
- $sfsi_section1_options = unserialize(get_option('sfsi_section1_options',false));
396
- $sfsi_section2_options = unserialize(get_option('sfsi_section2_options',false));
397
- $sfsi_section3_options = unserialize(get_option('sfsi_section3_options',false));
398
- $sfsi_section4_options = unserialize(get_option('sfsi_section4_options',false));
399
- $sfsi_section5_options = unserialize(get_option('sfsi_section5_options',false));
400
- $sfsi_section6_options = unserialize(get_option('sfsi_section6_options',false));
401
- $sfsi_section7_options = unserialize(get_option('sfsi_section7_options',false));
402
- /* get active theme */
403
- $border_radius='';
404
- $active_theme = $sfsi_section3_options['sfsi_actvite_theme'];
405
- if(!isset($sfsi_section2_options['sfsi_wechatShare_option'])){
406
- $sfsi_section2_options['sfsi_wechatShare_option']="yes";
407
- }
408
- /* shuffle effect */
409
- if($sfsi_section3_options['sfsi_shuffle_icons']=='yes')
410
- {
411
- $sfsi_shuffle_Firstload=$sfsi_section3_options["sfsi_shuffle_Firstload"];
412
- if($sfsi_section3_options["sfsi_shuffle_interval"]=="yes")
413
- {
414
- $sfsi_shuffle_interval = $sfsi_section3_options["sfsi_shuffle_intervalTime"];
415
- }
416
- }
417
-
418
- /* define the main url for icon access */
419
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/".$active_theme."/";
420
- $visit_iconsUrl = SFSI_PLUGURL."images/visit_icons/";
421
- $hoverSHow = 0;
422
-
423
- /* check is icon is a custom icon or default icon */
424
- if(is_numeric($icon_name)) { $icon_n=$icon_name; $icon_name="custom" ; }
425
- $counts = '';
426
- $twit_tolCls = "";
427
- $twt_margin = "";
428
- $icons_space = $sfsi_section5_options['sfsi_icons_spacing'];
429
- $padding_top = '';
430
-
431
- // $scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https" : "http";
432
- // $current_url = $scheme.'://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
433
-
434
- $current_url = sfsi_get_current_page_url();
435
-
436
- $url = "#";
437
- $cmcls = '';
438
- $toolClass = '';
439
-
440
- $socialObj = new sfsi_SocialHelper(); /* global object to access 3rd party icon's actions */
441
-
442
- switch($icon_name)
443
- {
444
- case "rss" :
445
-
446
- $url = isset($sfsi_section2_options['sfsi_rss_url']) && !empty($sfsi_section2_options['sfsi_rss_url'])? $sfsi_section2_options['sfsi_rss_url'] : '';
447
-
448
- $toolClass = "rss_tool_bdr";
449
- $hoverdiv = '';
450
- $arrow_class = "bot_rss_arow";
451
-
452
- /* fecth no of counts if active in admin section */
453
- if($sfsi_section4_options['sfsi_rss_countsDisplay']=="yes" && $sfsi_section4_options['sfsi_display_counts']=="yes")
454
- {
455
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_rss_manualCounts']);
456
- }
457
-
458
- if(!empty($sfsi_section5_options['sfsi_rss_MouseOverText']))
459
- {
460
- $alt_text = $sfsi_section5_options['sfsi_rss_MouseOverText'];
461
- }
462
- else
463
- {
464
- $alt_text = '';
465
- }
466
-
467
- //Custom Skin Support {Monad}
468
- if($active_theme == 'custom_support')
469
- {
470
- if(get_option("rss_skin"))
471
- {
472
- $icon = get_option("rss_skin");
473
- }
474
- else
475
- {
476
- $active_theme = 'default';
477
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
478
- $icon=$icons_baseUrl.$active_theme."_rss.png";
479
- }
480
- }
481
- else
482
- {
483
- $icon=$icons_baseUrl.$active_theme."_rss.png";
484
- }
485
- break;
486
-
487
- case "email" :
488
-
489
- $hoverdiv = '';
490
-
491
- $sfsi_section2_options['sfsi_email_url'];
492
- if( sanitize_text_field(get_option('sfsi_feed_id', false)) == ""){
493
- $url = "https://specificfeeds.com/follow";
494
- }else{
495
- $url = (isset($sfsi_section2_options['sfsi_email_url'])) ? $sfsi_section2_options['sfsi_email_url'] : '';
496
- }
497
- $toolClass = "email_tool_bdr";
498
- $arrow_class = "bot_eamil_arow";
499
-
500
- /* fecth no of counts if active in admin section */
501
- if(
502
- $sfsi_section4_options['sfsi_email_countsDisplay']=="yes" &&
503
- $sfsi_section4_options['sfsi_display_counts']=="yes"
504
- )
505
- {
506
- if($sfsi_section4_options['sfsi_email_countsFrom']=="manual")
507
- {
508
- $counts=$socialObj->format_num($sfsi_section4_options['sfsi_email_manualCounts']);
509
- }
510
- else
511
- {
512
- $counts = $socialObj->SFSI_getFeedSubscriber(sanitize_text_field(get_option('sfsi_feed_id',false)));
513
- }
514
- }
515
-
516
- if(!empty($sfsi_section5_options['sfsi_email_MouseOverText']))
517
- {
518
- $alt_text = $sfsi_section5_options['sfsi_email_MouseOverText'];
519
- }
520
- else
521
- {
522
- $alt_text = '';
523
- }
524
-
525
- //Custom Skin Support {Monad}
526
- if($active_theme == 'custom_support')
527
- {
528
- if(get_option("email_skin"))
529
- {
530
- $icon = get_option("email_skin");
531
- }
532
- else
533
- {
534
- $active_theme = 'default';
535
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
536
- //$icon=($sfsi_section2_options['sfsi_rss_icons']=="sfsi") ? $icons_baseUrl.$active_theme."_sf.png" : $icons_baseUrl.$active_theme."_email.png";
537
- if($sfsi_section2_options['sfsi_rss_icons']=="sfsi")
538
- {
539
- $icon = $icons_baseUrl.$active_theme."_sf.png";
540
- }
541
- elseif($sfsi_section2_options['sfsi_rss_icons']=="email")
542
- {
543
- $icon = $icons_baseUrl.$active_theme."_email.png";
544
- }
545
- else
546
- {
547
- $icon = $icons_baseUrl.$active_theme."_subscribe.png";
548
- }
549
- }
550
- }
551
- else
552
- {
553
-
554
- $rss_icons = isset($sfsi_section2_options['sfsi_rss_icons']) && !empty($sfsi_section2_options['sfsi_rss_icons']) ? $sfsi_section2_options['sfsi_rss_icons'] : false;
555
-
556
- switch ($rss_icons) {
557
-
558
- case 'email':
559
- $image = "_email.png";
560
- break;
561
-
562
- case 'subscribe':
563
- $image = "_subscribe.png";
564
- break;
565
-
566
- case 'sfsi':
567
- $image = "_sf.png";
568
- break;
569
-
570
- default:
571
- $image = "_subscribe.png";
572
- break;
573
- }
574
-
575
- $icon = $icons_baseUrl.$active_theme.$image;
576
- }
577
- break;
578
-
579
- case "facebook" :
580
-
581
- $width = 62;
582
- $totwith = $width+28+$icons_space;
583
- $twt_margin = $totwith/2;
584
- $toolClass = "fb_tool_bdr";
585
- $arrow_class = "bot_fb_arow";
586
-
587
- /* check for the over section */
588
- if(!empty($sfsi_section5_options['sfsi_facebook_MouseOverText']))
589
- {
590
- $alt_text = $sfsi_section5_options['sfsi_facebook_MouseOverText'];
591
- }
592
- else
593
- {
594
- $alt_text = "";
595
- }
596
-
597
- $visit_icon = $visit_iconsUrl."facebook.png";
598
-
599
- $url = isset($sfsi_section2_options['sfsi_facebookPage_url']) && !empty($sfsi_section2_options['sfsi_facebookPage_url']) ? $sfsi_section2_options['sfsi_facebookPage_url'] : false;
600
-
601
- $url = false != $url ? $sfsi_section2_options['sfsi_facebookPage_url']:'';
602
-
603
- $like_option = isset($sfsi_section2_options['sfsi_facebookLike_option']) && !empty($sfsi_section2_options['sfsi_facebookLike_option']) ? $sfsi_section2_options['sfsi_facebookLike_option'] : false;
604
-
605
- $page_option = isset($sfsi_section2_options['sfsi_facebookPage_option']) && !empty($sfsi_section2_options['sfsi_facebookPage_option']) ? $sfsi_section2_options['sfsi_facebookPage_option'] : false;
606
-
607
- $share_option = isset($sfsi_section2_options['sfsi_facebookShare_option']) && !empty($sfsi_section2_options['sfsi_facebookShare_option']) ? $sfsi_section2_options['sfsi_facebookShare_option'] : false;
608
-
609
- if((false != $like_option && $like_option=="yes") || (false != $share_option && $share_option=="yes"))
610
- {
611
- $url=($sfsi_section2_options['sfsi_facebookPage_url']) ? $sfsi_section2_options['sfsi_facebookPage_url']:'';
612
- $hoverSHow = 1;
613
- $hoverdiv = '';
614
-
615
- if(false != $page_option && $page_option=="yes")
616
- {
617
- $hoverdiv.="<div class='icon1'><a href='".$url."' ".sfsi_checkNewWindow($url)."><img data-pin-nopin='true' alt='".$alt_text."' title='".$alt_text."' src='".$visit_icon."' /></a></div>";
618
- }
619
- if(false!= $like_option && $like_option=="yes")
620
- {
621
- $hoverdiv.="<div class='icon2'>".$socialObj->sfsi_FBlike($current_url)."</div>";
622
- }
623
- if(false!= $share_option && $share_option=="yes")
624
- {
625
- $hoverdiv.="<div class='icon3'>".$socialObj->sfsiFB_Share($current_url)."</div>";
626
- }
627
-
628
- }
629
-
630
- /* fecth no of counts if active in admin section */
631
- if(
632
- $sfsi_section4_options['sfsi_facebook_countsDisplay']=="yes" &&
633
- $sfsi_section4_options['sfsi_display_counts']=="yes"
634
- )
635
- {
636
- if($sfsi_section4_options['sfsi_facebook_countsFrom']=="manual")
637
- {
638
- $counts=$socialObj->format_num($sfsi_section4_options['sfsi_facebook_manualCounts']);
639
- }
640
- else if($sfsi_section4_options['sfsi_facebook_countsFrom']=="likes")
641
- {
642
- $fb_data=$socialObj->sfsi_get_fb($current_url);
643
- $counts=$socialObj->format_num($fb_data['like_count']);
644
- if(empty($counts))
645
- {
646
- $counts=(string) "0";
647
- }
648
- }
649
- else if($sfsi_section4_options['sfsi_facebook_countsFrom']=="followers")
650
- {
651
- $fb_data=$socialObj->sfsi_get_fb($current_url);
652
- $counts=$socialObj->format_num($fb_data['share_count']);
653
-
654
- }
655
- else if($sfsi_section4_options['sfsi_facebook_countsFrom']=="mypage")
656
- {
657
- $current_url = $sfsi_section4_options['sfsi_facebook_mypageCounts'];
658
- $fb_data=$socialObj->sfsi_get_fb_pagelike($current_url);
659
- $counts=$socialObj->format_num($fb_data);
660
- }
661
- }
662
-
663
- //Custom Skin Support {Monad}
664
- if($active_theme == 'custom_support')
665
- {
666
- if(get_option("facebook_skin"))
667
- {
668
- $icon = get_option("facebook_skin");
669
- }
670
- else
671
- {
672
- $active_theme = 'default';
673
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
674
- $icon=$icons_baseUrl.$active_theme."_facebook.png";
675
- }
676
- }
677
- else
678
- {
679
- $icon=$icons_baseUrl.$active_theme."_facebook.png";
680
- }
681
- break;
682
- case "twitter" :
683
- $toolClass = "twt_tool_bdr";
684
- $arrow_class = "bot_twt_arow";
685
-
686
- $url = isset($sfsi_section2_options['sfsi_twitter_pageURL']) && !empty($sfsi_section2_options['sfsi_twitter_pageURL']) ? $sfsi_section2_options['sfsi_twitter_pageURL'] : '';
687
-
688
- $twitter_user = isset($sfsi_section2_options['sfsi_twitter_followUserName']) && !empty($sfsi_section2_options['sfsi_twitter_followUserName']) ? $sfsi_section2_options['sfsi_twitter_followUserName'] : false;
689
-
690
- $twitter_text = isset($sfsi_section2_options['sfsi_twitter_aboutPageText']) && !empty($sfsi_section2_options['sfsi_twitter_aboutPageText']) ? $sfsi_section2_options['sfsi_twitter_aboutPageText'] : false;
691
-
692
- $visit_icon = $visit_iconsUrl."twitter.png";
693
-
694
- $width = 59;
695
- $totwith = $width+28+$icons_space;
696
- $twt_margin = $totwith/2;
697
- /* check for icons to display */
698
- $hoverdiv='';
699
-
700
- $follow_me = isset($sfsi_section2_options['sfsi_twitter_followme']) && !empty($sfsi_section2_options['sfsi_twitter_followme']) ? $sfsi_section2_options['sfsi_twitter_followme'] : false;
701
-
702
- $about_page = isset($sfsi_section2_options['sfsi_twitter_aboutPage']) && !empty($sfsi_section2_options['sfsi_twitter_aboutPage']) ? $sfsi_section2_options['sfsi_twitter_aboutPage'] : false;
703
-
704
- if($follow_me=="yes" ||$about_page=="yes")
705
- {
706
- $hoverSHow=1;
707
- //Visit twitter page {Monad}
708
- if(isset($sfsi_section2_options['sfsi_twitter_page']) && !empty($sfsi_section2_options['sfsi_twitter_page']) && $sfsi_section2_options['sfsi_twitter_page']=="yes")
709
- {
710
- $hoverdiv.="<div class='cstmicon1'><a href='".$url."' ".sfsi_checkNewWindow($url)."><img data-pin-nopin='true' alt='Visit Us' title='Visit Us' src='".$visit_icon."' /></a></div>";
711
- }
712
- if($follow_me=="yes" && !empty($twitter_user))
713
- {
714
- $hoverdiv.="<div class='icon1'>".$socialObj->sfsi_twitterFollow($twitter_user)."</div>";
715
- }
716
- if($about_page=="yes")
717
- {
718
- $hoverdiv.="<div class='icon2'>".$socialObj->sfsi_twitterShare($current_url,$twitter_text)."</div>";
719
- }
720
-
721
- }
722
-
723
- /* fecth no of counts if active in admin section */
724
- if(
725
- $sfsi_section4_options['sfsi_twitter_countsDisplay']=="yes" &&
726
- $sfsi_section4_options['sfsi_display_counts']=="yes"
727
- )
728
- {
729
- if($sfsi_section4_options['sfsi_twitter_countsFrom']=="manual")
730
- {
731
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_twitter_manualCounts']);
732
- }
733
- else if($sfsi_section4_options['sfsi_twitter_countsFrom']=="source")
734
- {
735
- $tw_settings = array('tw_consumer_key'=>$sfsi_section4_options['tw_consumer_key'],
736
- 'tw_consumer_secret'=> $sfsi_section4_options['tw_consumer_secret'],
737
- 'tw_oauth_access_token'=> $sfsi_section4_options['tw_oauth_access_token'],
738
- 'tw_oauth_access_token_secret'=> $sfsi_section4_options['tw_oauth_access_token_secret']);
739
-
740
- $followers = $socialObj->sfsi_get_tweets($twitter_user,$tw_settings);
741
- $counts = $socialObj->format_num($followers);
742
- if(empty($counts))
743
- {
744
- $counts=(string) "0";
745
- }
746
- }
747
- }
748
-
749
- //Giving alternative text to image
750
- if(!empty($sfsi_section5_options['sfsi_twitter_MouseOverText']))
751
- {
752
- $alt_text = $sfsi_section5_options['sfsi_twitter_MouseOverText'];
753
- }
754
- else
755
- {
756
- $alt_text = "";
757
- }
758
-
759
- //Custom Skin Support {Monad}
760
- if($active_theme == 'custom_support')
761
- {
762
- if(get_option("twitter_skin"))
763
- {
764
- $icon = get_option("twitter_skin");
765
- }
766
- else
767
- {
768
- $active_theme = 'default';
769
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
770
- $icon=$icons_baseUrl.$active_theme."_twitter.png";
771
- }
772
- }
773
- else
774
- {
775
- $icon=$icons_baseUrl.$active_theme."_twitter.png";
776
- }
777
- break;
778
-
779
- case "youtube" :
780
- $toolClass = "utube_tool_bdr";
781
- $arrow_class = "bot_utube_arow";
782
- $width = 96;
783
- $totwith = $width+28+$icons_space;
784
- $twt_margin = $totwith/2;
785
- $youtube_user = (isset($sfsi_section4_options['sfsi_youtube_user']) && !empty($sfsi_section4_options['sfsi_youtube_user'])) ? $sfsi_section4_options['sfsi_youtube_user'] : 'SpecificFeeds';
786
- $visit_icon = $visit_iconsUrl."youtube.png";
787
-
788
- $url = isset($sfsi_section2_options['sfsi_youtube_pageUrl']) && !empty($sfsi_section2_options['sfsi_youtube_pageUrl']) ? $sfsi_section2_options['sfsi_youtube_pageUrl'] : '';
789
-
790
- //Giving alternative text to image
791
- if(!empty($sfsi_section5_options['sfsi_youtube_MouseOverText']))
792
- {
793
- $alt_text = $sfsi_section5_options['sfsi_youtube_MouseOverText'];
794
- }
795
- else
796
- {
797
- $alt_text = "";
798
- }
799
-
800
- /* check for icons to display */
801
- $hoverdiv="";
802
-
803
- $follow = isset($sfsi_section2_options['sfsi_youtube_follow']) && !empty($sfsi_section2_options['sfsi_youtube_follow']) ? $sfsi_section2_options['sfsi_youtube_follow'] : false;
804
-
805
- $ypage = isset($sfsi_section2_options['sfsi_youtube_page']) && !empty($sfsi_section2_options['sfsi_youtube_page']) ? $sfsi_section2_options['sfsi_youtube_page'] : false;
806
-
807
- if(false != $follow && $follow=="yes")
808
- {
809
- $hoverSHow = 1;
810
-
811
- if($ypage =="yes")
812
- {
813
- $hoverdiv.="<div class='icon1'><a href='".$url."' ".sfsi_checkNewWindow($url)."><img data-pin-nopin='true' alt='".$alt_text."' title='".$alt_text."' src='".$visit_icon."' /></a></div>";
814
- }
815
- if($follow =="yes")
816
- {
817
- $hoverdiv.="<div class='icon2'>".$socialObj->sfsi_YouTubeSub($youtube_user)."</div>";
818
- }
819
- }
820
-
821
- /* fecth no of counts if active in admin section */
822
- if(
823
- $sfsi_section4_options['sfsi_youtube_countsDisplay']=="yes" &&
824
- $sfsi_section4_options['sfsi_display_counts']=="yes"
825
- )
826
- {
827
- if($sfsi_section4_options['sfsi_youtube_countsFrom']=="manual")
828
- {
829
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_youtube_manualCounts']);
830
- }
831
- else if($sfsi_section4_options['sfsi_youtube_countsFrom']=="subscriber")
832
- {
833
- $followers = $socialObj->sfsi_get_youtube($youtube_user);
834
- $counts = $socialObj->format_num($followers);
835
- if(empty($counts))
836
- {
837
- $counts = (string) "0";
838
- }
839
- }
840
- }
841
-
842
- //Custom Skin Support {Monad}
843
- if($active_theme == 'custom_support')
844
- {
845
- if(get_option("youtube_skin"))
846
- {
847
- $icon = get_option("youtube_skin");
848
- }
849
- else
850
- {
851
- $active_theme = 'default';
852
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
853
- $icon=$icons_baseUrl.$active_theme."_youtube.png";
854
- }
855
- }
856
- else
857
- {
858
- $icon=$icons_baseUrl.$active_theme."_youtube.png";
859
- }
860
- break;
861
-
862
- case "pinterest" :
863
-
864
- $width = 73;
865
- $totwith = $width+28+$icons_space;
866
- $twt_margin = $totwith/2;
867
- $toolClass = "printst_tool_bdr";
868
- $arrow_class = "bot_pintst_arow";
869
-
870
- $pinterest_user = (isset($sfsi_section4_options['sfsi_pinterest_user']))
871
- ? $sfsi_section4_options['sfsi_pinterest_user'] : '';
872
- $pinterest_board = (isset($sfsi_section4_options['sfsi_pinterest_board']))
873
- ? $sfsi_section4_options['sfsi_pinterest_board'] : '';
874
-
875
- $visit_icon = $visit_iconsUrl."pinterest.png";
876
- $url = (isset($sfsi_section2_options['sfsi_pinterest_pageUrl'])) ? $sfsi_section2_options['sfsi_pinterest_pageUrl'] : '';
877
-
878
- //Giving alternative text to image
879
- if(isset($sfsi_section5_options['sfsi_pinterest_MouseOverText']) && !empty($sfsi_section5_options['sfsi_pinterest_MouseOverText']))
880
- {
881
- $alt_text = $sfsi_section5_options['sfsi_pinterest_MouseOverText'];
882
- }
883
- else
884
- {
885
- $alt_text = "";
886
- }
887
-
888
- /* check for icons to display */
889
- $hoverdiv="";
890
-
891
- $pingblog = isset($sfsi_section2_options['sfsi_pinterest_pingBlog']) && !empty($sfsi_section2_options['sfsi_pinterest_pingBlog']) ? $sfsi_section2_options['sfsi_pinterest_pingBlog'] : false;
892
-
893
- $page = isset($sfsi_section2_options['sfsi_pinterest_page']) && !empty($sfsi_section2_options['sfsi_pinterest_page']) ? $sfsi_section2_options['sfsi_pinterest_page'] : false;
894
-
895
- $cDisplay = isset($sfsi_section4_options['sfsi_pinterest_countsDisplay']) && !empty($sfsi_section4_options['sfsi_pinterest_countsDisplay']) ? $sfsi_section4_options['sfsi_pinterest_countsDisplay'] : false;
896
-
897
- $displayC = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
898
-
899
- $cFrom = isset($sfsi_section4_options['sfsi_pinterest_countsFrom']) && !empty($sfsi_section4_options['sfsi_pinterest_countsFrom']) ? $sfsi_section4_options['sfsi_pinterest_countsFrom'] : false;
900
- // var_dump($sfsi_section4_options['sfsi_pinterest_countsFrom'],$cFrom);die();
901
-
902
- if($pingblog=="yes" )
903
- {
904
- $hoverSHow = 1;
905
-
906
- if($page =="yes")
907
- {
908
- $hoverdiv.="<div class='icon1'><a href='".$url."' ".sfsi_checkNewWindow($url)."><img data-pin-nopin='true' alt='".$alt_text."' title='".$alt_text."' src='".$visit_icon."' /></a></div>";
909
- }
910
- if($pingblog=="yes")
911
- {
912
- $hoverdiv.="<div class='icon2'>".$socialObj->sfsi_PinIt($current_url)."</div>";
913
- }
914
- }
915
-
916
- /* fecth no of counts if active in admin section */
917
- if($cDisplay == "yes" && $displayC=="yes")
918
- {
919
- if($cFrom=="manual")
920
- {
921
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_pinterest_manualCounts']);
922
- }
923
- else if($cFrom=="pins")
924
- {
925
- $pins = $socialObj->sfsi_get_pinterest($current_url);
926
- $counts = $pins;
927
- if(empty($counts))
928
- {
929
- $counts=(string) "0";
930
- }
931
- }
932
- }
933
-
934
- //Custom Skin Support {Monad}
935
- if($active_theme == 'custom_support')
936
- {
937
- if(get_option("pintrest_skin"))
938
- {
939
- $icon = get_option("pintrest_skin");
940
- }
941
- else
942
- {
943
- $active_theme = 'default';
944
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
945
- $icon = $icons_baseUrl.$active_theme."_pinterest.png";
946
- }
947
- }
948
- else
949
- {
950
- $icon=$icons_baseUrl.$active_theme."_pinterest.png";
951
- }
952
- break;
953
-
954
- case "instagram" :
955
- $toolClass = "instagram_tool_bdr";
956
- $arrow_class = "bot_pintst_arow";
957
-
958
- $url = (isset($sfsi_section2_options['sfsi_instagram_pageUrl'])) ? $sfsi_section2_options['sfsi_instagram_pageUrl'] : '';
959
-
960
- $instagram_user_name = isset($sfsi_section4_options['sfsi_instagram_User']) && !empty($sfsi_section4_options['sfsi_instagram_User']) ? $sfsi_section4_options['sfsi_instagram_User'] : false;
961
-
962
- //Giving alternative text to image
963
- if(isset($sfsi_section5_options['sfsi_instagram_MouseOverText']) && !empty($sfsi_section5_options['sfsi_instagram_MouseOverText']))
964
- {
965
- $alt_text = $sfsi_section5_options['sfsi_instagram_MouseOverText'];
966
- }
967
- else
968
- {
969
- $alt_text = "";
970
- }
971
-
972
- $hoverdiv="";
973
-
974
- $cDisplay = isset($sfsi_section4_options['sfsi_instagram_countsDisplay']) && !empty($sfsi_section4_options['sfsi_instagram_countsDisplay']) ? $sfsi_section4_options['sfsi_instagram_countsDisplay']: false;
975
-
976
- $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts']: false;
977
-
978
- $cFrom = isset($sfsi_section4_options['sfsi_instagram_countsFrom']) && !empty($sfsi_section4_options['sfsi_instagram_countsFrom']) ? $sfsi_section4_options['sfsi_instagram_countsFrom']: false;
979
-
980
- /* fecth no of counts if active in admin section */
981
- if($cDisplay=="yes" && $Displayc=="yes")
982
- {
983
- if($cFrom=="manual")
984
- {
985
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_instagram_manualCounts']);
986
- }
987
- else if($cFrom=="followers")
988
- {
989
- $counts = $socialObj->sfsi_get_instagramFollowers($instagram_user_name);
990
- if(empty($counts))
991
- {
992
- $counts=(string) "0";
993
- }
994
- }
995
- }
996
-
997
- //Custom Skin Support {Monad}
998
- if($active_theme == 'custom_support')
999
- {
1000
- if(get_option("instagram_skin"))
1001
- {
1002
- $icon = get_option("instagram_skin");
1003
- }
1004
- else
1005
- {
1006
- $active_theme = 'default';
1007
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
1008
- $icon=$icons_baseUrl.$active_theme."_instagram.png";
1009
- }
1010
- }
1011
- else
1012
- {
1013
- $icon=$icons_baseUrl.$active_theme."_instagram.png";
1014
- }
1015
- break;
1016
-
1017
- case "telegram" :
1018
- $toolClass = "telegram_tool_bdr";
1019
- $arrow_class = "bot_pintst_arow";
1020
- $hoverdiv = '';
1021
-
1022
- // $url = (isset($sfsi_section4_options['sfsi_telegram_pageURL'])) ? $sfsi_section4_options['sfsi_telegram_pageURL'] : '';
1023
-
1024
- // $telegram_user_name = isset($sfsi_section4_options['sfsi_telegram_User']) && !empty($sfsi_section4_options['sfsi_telegram_User']) ? $sfsi_section4_options['sfsi_telegram_User'] : false;
1025
-
1026
- //Giving alternative text to image
1027
- if(isset($sfsi_section5_options['sfsi_telegram_MouseOverText']) && !empty($sfsi_section5_options['sfsi_telegram_MouseOverText']))
1028
- {
1029
- $alt_text = $sfsi_section5_options['sfsi_telegram_MouseOverText'];
1030
-
1031
- }
1032
- else
1033
- {
1034
- $alt_text = "";
1035
- }
1036
- $messageus_icon = $visit_iconsUrl.$icon_name."_message.svg";
1037
- $hoverdiv="";
1038
- $cDisplay = isset($sfsi_section4_options['sfsi_telegram_countsDisplay']) && !empty($sfsi_section4_options['sfsi_telegram_countsDisplay']) ? $sfsi_section4_options['sfsi_telegram_countsDisplay']: false;
1039
-
1040
- $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts']: false;
1041
- /* fecth no of counts if active in admin section */
1042
- if($cDisplay=="yes" && $Displayc=="yes")
1043
- {
1044
-
1045
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_telegram_manualCounts']);
1046
- }
1047
-
1048
- //Custom Skin Support {Monad}
1049
- if($active_theme == 'custom_support')
1050
- {
1051
- if(get_option("telegram_skin"))
1052
- {
1053
- $icon = get_option("telegram_skin");
1054
- }
1055
- else
1056
- {
1057
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
1058
- $icon=$icons_baseUrl."default_telegram.png";
1059
- }
1060
- }
1061
- else
1062
- {
1063
- $icon=$icons_baseUrl.$active_theme."_telegram.png";
1064
- }
1065
- if(
1066
- isset($sfsi_section2_options['sfsi_telegram_message']) && !empty($sfsi_section2_options['sfsi_telegram_message'])
1067
- &&
1068
- isset($sfsi_section2_options['sfsi_telegram_username']) && !empty($sfsi_section2_options['sfsi_telegram_username'])
1069
-
1070
- ){
1071
- $tg_username = $sfsi_section2_options['sfsi_telegram_username'];
1072
- $tg_msg = stripslashes($sfsi_section2_options['sfsi_telegram_message']);
1073
- $tg_msg = str_replace('"', '', str_replace("'", '', $tg_msg));
1074
- $tg_msg = html_entity_decode(strip_tags($tg_msg), ENT_QUOTES,'UTF-8');
1075
- $tg_msg = str_replace("%26%238230%3B", "...", $tg_msg);
1076
- $tg_msg = rawurlencode($tg_msg);
1077
-
1078
- $tele_url = "https://t.me/".$tg_username;
1079
- $url = $tele_url."?&text=".urlencode($tg_msg);
1080
- // var_dump($url);
1081
- // die();
1082
- // file_get_contents($url);
1083
- }else{
1084
- $url="#";
1085
- $sfsi_onclick="event.preventDefault();";
1086
- }
1087
- if($active_theme=="glossy"){
1088
- $sfsi_new_icons = "yes";
1089
- }
1090
- break;
1091
- case "vk" :
1092
- $toolClass = "vk_tool_bdr";
1093
- $arrow_class = "bot_pintst_arow";
1094
-
1095
- $url = (isset($sfsi_section2_options['sfsi_vk_pageURL'])) ? $sfsi_section2_options['sfsi_vk_pageURL'] : '';
1096
-
1097
- // $vk_user_name = isset($sfsi_section4_options['sfsi_vk_User']) && !empty($sfsi_section4_options['sfsi_vk_User']) ? $sfsi_section4_options['sfsi_vk_User'] : false;
1098
-
1099
- //Giving alternative text to image
1100
- if(isset($sfsi_section5_options['sfsi_vk_MouseOverText']) && !empty($sfsi_section5_options['sfsi_vk_MouseOverText']))
1101
- {
1102
- $alt_text = $sfsi_section5_options['sfsi_vk_MouseOverText'];
1103
- }
1104
- else
1105
- {
1106
- $alt_text = "";
1107
- }
1108
-
1109
- $hoverdiv="";
1110
-
1111
- $cDisplay = isset($sfsi_section4_options['sfsi_vk_countsDisplay']) && !empty($sfsi_section4_options['sfsi_vk_countsDisplay']) ? $sfsi_section4_options['sfsi_vk_countsDisplay']: false;
1112
-
1113
- $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts']: false;
1114
-
1115
- /* fecth no of counts if active in admin section */
1116
- if($cDisplay=="yes" && $Displayc=="yes")
1117
- {
1118
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_vk_manualCounts']);
1119
- }
1120
-
1121
- //Custom Skin Support {Monad}
1122
- if($active_theme == 'custom_support')
1123
- {
1124
- if(get_option("vk_skin"))
1125
- {
1126
- $icon = get_option("vk_skin");
1127
- }
1128
- else
1129
- {
1130
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
1131
- $icon=$icons_baseUrl."default_vk.png";
1132
- }
1133
- }
1134
- else
1135
- {
1136
- $icon=$icons_baseUrl.$active_theme."_vk.png";
1137
- }
1138
- if($active_theme=="glossy"){
1139
- $sfsi_new_icons = "yes";
1140
- }
1141
-
1142
- break;
1143
- case "ok" :
1144
- $toolClass = "ok_tool_bdr";
1145
- $arrow_class = "bot_pintst_arow";
1146
-
1147
- $url = (isset($sfsi_section2_options['sfsi_ok_pageURL'])) ? $sfsi_section2_options['sfsi_ok_pageURL'] : '';
1148
-
1149
- // $ok_user_name = isset($sfsi_section4_options['sfsi_ok_User']) && !empty($sfsi_section4_options['sfsi_ok_User']) ? $sfsi_section4_options['sfsi_ok_User'] : false;
1150
-
1151
- //Giving alternative text to image
1152
- if(isset($sfsi_section5_options['sfsi_ok_MouseOverText']) && !empty($sfsi_section5_options['sfsi_ok_MouseOverText']))
1153
- {
1154
- $alt_text = $sfsi_section5_options['sfsi_ok_MouseOverText'];
1155
- }
1156
- else
1157
- {
1158
- $alt_text = "";
1159
- }
1160
-
1161
- $hoverdiv="";
1162
-
1163
- $cDisplay = isset($sfsi_section4_options['sfsi_ok_countsDisplay']) && !empty($sfsi_section4_options['sfsi_ok_countsDisplay']) ? $sfsi_section4_options['sfsi_ok_countsDisplay']: false;
1164
-
1165
- $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts']: false;
1166
- /* fecth no of counts if active in admin section */
1167
- if($cDisplay=="yes" && $Displayc=="yes")
1168
- {
1169
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_ok_manualCounts']);
1170
- }
1171
-
1172
- //Custom Skin Support {Monad}
1173
- if($active_theme == 'custom_support')
1174
- {
1175
- if(get_option("ok_skin"))
1176
- {
1177
- $icon = get_option("ok_skin");
1178
- }
1179
- else
1180
- {
1181
-
1182
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
1183
- $icon=$icons_baseUrl."default_ok.png";
1184
- }
1185
- }
1186
- else
1187
- {
1188
- $icon=$icons_baseUrl.$active_theme."_ok.png";
1189
- }
1190
- if($active_theme=="glossy"){
1191
- $sfsi_new_icons = "yes";
1192
- }
1193
-
1194
- break;
1195
- case "weibo" :
1196
- $toolClass = "weibo_tool_bdr";
1197
- $arrow_class = "bot_pintst_arow";
1198
-
1199
- $url = (isset($sfsi_section2_options['sfsi_weibo_pageURL'])) ? $sfsi_section2_options['sfsi_weibo_pageURL'] : '';
1200
-
1201
- // $weibo_user_name = isset($sfsi_section4_options['sfsi_weibo_User']) && !empty($sfsi_section4_options['sfsi_weibo_User']) ? $sfsi_section4_options['sfsi_weibo_User'] : false;
1202
-
1203
- //Giving alternative text to image
1204
- if(isset($sfsi_section5_options['sfsi_weibo_MouseOverText']) && !empty($sfsi_section5_options['sfsi_weibo_MouseOverText']))
1205
- {
1206
- $alt_text = $sfsi_section5_options['sfsi_weibo_MouseOverText'];
1207
- }
1208
- else
1209
- {
1210
- $alt_text = "";
1211
- }
1212
-
1213
- $hoverdiv="";
1214
-
1215
- $cDisplay = isset($sfsi_section4_options['sfsi_weibo_countsDisplay']) && !empty($sfsi_section4_options['sfsi_weibo_countsDisplay']) ? $sfsi_section4_options['sfsi_weibo_countsDisplay']: false;
1216
-
1217
- $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts']: false;
1218
-
1219
- /* fecth no of counts if active in admin section */
1220
- if($cDisplay=="yes" && $Displayc=="yes")
1221
- {
1222
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_weibo_manualCounts']);
1223
- }
1224
-
1225
- //Custom Skin Support {Monad}
1226
- if($active_theme == 'custom_support')
1227
- {
1228
- if(get_option("weibo_skin"))
1229
- {
1230
- $icon = get_option("weibo_skin");
1231
- }
1232
- else
1233
- {
1234
-
1235
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
1236
- $icon=$icons_baseUrl."default_weibo.png";
1237
- }
1238
- }
1239
- else
1240
- {
1241
- $icon=$icons_baseUrl.$active_theme."_weibo.png";
1242
- }
1243
- if($active_theme=="glossy"){
1244
- $sfsi_new_icons = "yes";
1245
- }
1246
-
1247
- break;
1248
- case "wechat" :
1249
- $toolClass = "wechat_tool_bdr";
1250
- $arrow_class = "bot_pintst_arow";
1251
-
1252
- // $url = (isset($sfsi_section2_options['sfsi_wechat_pageURL'])) ? $sfsi_section2_options['sfsi_wechat_pageURL'] : '';
1253
-
1254
- // $wechat_user_name = isset($sfsi_section4_options['sfsi_wechat_User']) && !empty($sfsi_section4_options['sfsi_wechat_User']) ? $sfsi_section4_options['sfsi_wechat_User'] : false;
1255
-
1256
- //Giving alternative text to image
1257
- if(isset($sfsi_section5_options['sfsi_wechat_MouseOverText']) && !empty($sfsi_section5_options['sfsi_wechat_MouseOverText']))
1258
- {
1259
- $alt_text = $sfsi_section5_options['sfsi_wechat_MouseOverText'];
1260
- }
1261
- else
1262
- {
1263
- $alt_text = "";
1264
- }
1265
-
1266
- $hoverdiv="";
1267
-
1268
- $cDisplay = isset($sfsi_section4_options['sfsi_wechat_countsDisplay']) && !empty($sfsi_section4_options['sfsi_wechat_countsDisplay']) ? $sfsi_section4_options['sfsi_wechat_countsDisplay']: false;
1269
-
1270
- $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts']: false;
1271
-
1272
- /* fecth no of counts if active in admin section */
1273
- if($cDisplay=="yes" && $Displayc=="yes")
1274
- {
1275
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_wechat_manualCounts']);
1276
- }
1277
- $url = "weixin://dl/chat";
1278
- if(
1279
- (isset($sfsi_section2_options['sfsi_wechatFollow_option']) && "yes" == $sfsi_section2_options['sfsi_wechatFollow_option']) &&
1280
-
1281
- (isset($sfsi_section2_options['sfsi_wechatShare_option']) && "yes" == $sfsi_section2_options['sfsi_wechatShare_option'])
1282
- ){
1283
- $hoverSHow = 1;
1284
- $hoverdiv = "";
1285
-
1286
- if(isset($sfsi_section2_options['sfsi_wechatFollow_option']) && !empty($sfsi_section2_options['sfsi_wechatFollow_option']) && "yes" == $option2['sfsi_wechatFollow_option']
1287
-
1288
- && isset($sfsi_section2_options['sfsi_wechat_scan_image']) && !empty($sfsi_section2_options['sfsi_wechat_scan_image'])){
1289
-
1290
- $image_url = $sfsi_section2_options['sfsi_wechat_scan_image'];
1291
-
1292
- $hoverdiv.="<div class='icon1' style='text-align:center'><a href='' onclick='event.preventDefault();sfsi_wechat_follow(\"".$sfsi_section2_options['sfsi_wechat_scan_image']."\")' ><img data-pin-nopin='true' alt='".$alt_text."' title='".$alt_text."' src='".$visit_icon."' style='height:25px' /></a></div>";
1293
- }
1294
-
1295
- if(isset($sfsi_section2_options['sfsi_wechatShare_option']) && !empty($sfsi_section2_options['sfsi_wechatShare_option'])
1296
- && "yes" == $sfsi_section2_options['sfsi_wechatShare_option']){
1297
-
1298
- $hoverdiv.="<div class='icon2' style='text-align:center' ><a href='".$url."' ".sfsi_checkNewWindow($url)." onclick='event.preventDefault();sfsi_wechat_share(\"".$sfsi_section2_options['sfsi_wechat_scan_image']."\")' ><img data-pin-nopin='true' alt='".$alt_text."' title='".$alt_text."' src='".$share_icon."' style='height:25px' /></a></div>";
1299
- }
1300
- }else{
1301
-
1302
-
1303
- if(isset($sfsi_section2_options['sfsi_wechatFollow_option']) && !empty($sfsi_section2_options['sfsi_wechatFollow_option']) && "yes" == $sfsi_section2_options['sfsi_wechatFollow_option']
1304
-
1305
- && isset($sfsi_section2_options['sfsi_wechat_scan_image']) && !empty($sfsi_section2_options['sfsi_wechat_scan_image'])){
1306
-
1307
- $sfsi_onclick="event.preventDefault();sfsi_wechat_follow(\'".$sfsi_section2_options['sfsi_wechat_scan_image']."\')" ;
1308
- }
1309
-
1310
- if(isset($sfsi_section2_options['sfsi_wechatShare_option']) && 'yes'==($sfsi_section2_options['sfsi_wechatShare_option'])
1311
- && "yes" == $sfsi_section2_options['sfsi_wechatShare_option']){
1312
- if(!wp_is_mobile()){
1313
- $sfsi_onclick="event.preventDefault();sfsi_wechat_share('".trim($current_url)."')" ;
1314
- }else{
1315
- $sfsi_onclick='';
1316
- if(wp_is_mobile()){
1317
- $sfsi_onclick = "event.stopPropagation&&event.stopPropagation();";
1318
- }
1319
- $sfsi_onclick.="event.preventDefault();sfsi_mobile_wechat_share('".trim($current_url)."')" ;
1320
- }
1321
- }
1322
- $hoverSHow = 0;
1323
- }
1324
- //Custom Skin Support {Monad}
1325
- if($active_theme == 'custom_support')
1326
- {
1327
- if(get_option("wechat_skin"))
1328
- {
1329
- $icon = get_option("wechat_skin");
1330
- }
1331
- else
1332
- {
1333
-
1334
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
1335
- $icon=$icons_baseUrl."default_wechat.png";
1336
- }
1337
- }
1338
- else
1339
- {
1340
- $icon=$icons_baseUrl.$active_theme."_wechat.png";
1341
- }
1342
- if($active_theme=="glossy"){
1343
- $sfsi_new_icons = "yes";
1344
- }
1345
-
1346
- break;
1347
-
1348
-
1349
- case "linkedin" :
1350
- $width = 66;
1351
- $toolClass = "linkedin_tool_bdr";
1352
- $arrow_class = "bot_linkedin_arow";
1353
-
1354
- $linkedIn_compayId = isset($sfsi_section2_options['sfsi_linkedin_followCompany']) && !empty($sfsi_section2_options['sfsi_linkedin_followCompany']) ? $sfsi_section2_options['sfsi_linkedin_followCompany'] : false;
1355
-
1356
- $page = isset($sfsi_section2_options['sfsi_linkedin_page']) && !empty($sfsi_section2_options['sfsi_linkedin_page']) ? $sfsi_section2_options['sfsi_linkedin_page'] : false;
1357
-
1358
- $follow = isset($sfsi_section2_options['sfsi_linkedin_follow']) && !empty($sfsi_section2_options['sfsi_linkedin_follow']) ? $sfsi_section2_options['sfsi_linkedin_follow'] : false;
1359
-
1360
- $share = isset($sfsi_section2_options['sfsi_linkedin_SharePage']) && !empty($sfsi_section2_options['sfsi_linkedin_SharePage']) ? $sfsi_section2_options['sfsi_linkedin_SharePage'] : false;
1361
-
1362
- $reBusiness = isset($sfsi_section2_options['sfsi_linkedin_recommendBusines']) && !empty($sfsi_section2_options['sfsi_linkedin_recommendBusines']) ? $sfsi_section2_options['sfsi_linkedin_recommendBusines'] : false;
1363
-
1364
- $linkedIn_compay = $linkedIn_compayId;
1365
- $linkedIn_ProductId = isset($sfsi_section2_options['sfsi_linkedin_recommendProductId']) && !empty($sfsi_section2_options['sfsi_linkedin_recommendProductId']) ? $sfsi_section2_options['sfsi_linkedin_recommendProductId'] : false;
1366
-
1367
- $visit_icon = $visit_iconsUrl."linkedIn.png";
1368
-
1369
- /*check for icons to display */
1370
- $url = isset($sfsi_section2_options['sfsi_linkedin_pageURL']) && !empty($sfsi_section2_options['sfsi_linkedin_pageURL']) ? $sfsi_section2_options['sfsi_linkedin_pageURL'] : '';
1371
-
1372
- if($follow =="yes" || $share =="yes" || $reBusiness =="yes")
1373
- {
1374
- $hoverSHow = 1;
1375
- $hoverdiv = '';
1376
-
1377
- if($page=="yes")
1378
- {
1379
- $hoverdiv.="<div class='icon4'><a href='".$url."' ".sfsi_checkNewWindow($url)."><img data-pin-nopin='true' alt='".$alt_text."' title='".$alt_text."' src='".$visit_icon."' /></a></div>";
1380
- }
1381
- if($follow=="yes")
1382
- {
1383
- $hoverdiv.="<div class='icon1'>".$socialObj->sfsi_LinkedInFollow($linkedIn_compayId)."</div>";
1384
- }
1385
- if($share=="yes")
1386
- {
1387
- $hoverdiv.="<div class='icon2'>".$socialObj->sfsi_LinkedInShare()."</div>";
1388
- }
1389
- if($reBusiness=="yes")
1390
- {
1391
- $hoverdiv.="<div class='icon3'>".$socialObj->sfsi_LinkedInRecommend($linkedIn_compay,$linkedIn_ProductId)."</div>";
1392
- $width=99;
1393
- }
1394
- }
1395
-
1396
- $cFrom = isset($sfsi_section4_options['sfsi_linkedIn_countsFrom']) && !empty($sfsi_section4_options['sfsi_linkedIn_countsFrom']) ? $sfsi_section4_options['sfsi_linkedIn_countsFrom'] : false;
1397
-
1398
- $disp = isset($sfsi_section4_options['sfsi_linkedIn_countsDisplay']) && !empty($sfsi_section4_options['sfsi_linkedIn_countsDisplay']) ? $sfsi_section4_options['sfsi_linkedIn_countsDisplay'] : false;
1399
-
1400
- $dcount = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
1401
-
1402
- /* fecth no of counts if active in admin section */
1403
- if($disp=="yes" &&$dcount=="yes")
1404
- {
1405
- if($cFrom=="manual")
1406
- {
1407
- $counts = $socialObj->format_num($sfsi_section4_options['sfsi_linkedIn_manualCounts']);
1408
- }
1409
- else if($cFrom=="follower")
1410
- {
1411
- $linkedIn_compay = $sfsi_section4_options['ln_company'];
1412
- $ln_settings = array(
1413
- 'ln_api_key'=>$sfsi_section4_options['ln_api_key'],
1414
- 'ln_secret_key'=>$sfsi_section4_options['ln_secret_key'],
1415
- 'ln_oAuth_user_token'=>$sfsi_section4_options['ln_oAuth_user_token']
1416
- );
1417
-
1418
- $followers=$socialObj->sfsi_getlinkedin_follower($linkedIn_compay,$ln_settings);
1419
- (int) $followers;
1420
- $counts=$socialObj->format_num($followers);
1421
- if(empty($counts))
1422
- {
1423
- $counts = (string) "0";
1424
- }
1425
- }
1426
- }
1427
- $totwith = $width+28+$icons_space;
1428
- $twt_margin = $totwith/2;
1429
-
1430
- //Giving alternative text to image
1431
- if(isset($sfsi_section5_options['sfsi_linkedIn_MouseOverText']) && !empty($sfsi_section5_options['sfsi_linkedIn_MouseOverText']))
1432
- {
1433
- $alt_text = $sfsi_section5_options['sfsi_linkedIn_MouseOverText'];
1434
- }
1435
- else
1436
- {
1437
- $alt_text = "";
1438
- }
1439
-
1440
- //Custom Skin Support {Monad}
1441
- if($active_theme == 'custom_support')
1442
- {
1443
- if(get_option("linkedin_skin"))
1444
- {
1445
- $icon = get_option("linkedin_skin");
1446
- }
1447
- else
1448
- {
1449
- $active_theme = 'default';
1450
- $icons_baseUrl = SFSI_PLUGURL."images/icons_theme/default/";
1451
- $icon=$icons_baseUrl.$active_theme."_linkedin.png";
1452
- }
1453
- }
1454
- else
1455
- {
1456
- $icon=$icons_baseUrl.$active_theme."_linkedin.png";
1457
- }
1458
- break;
1459
-
1460
- default:
1461
- $border_radius = "";
1462
- //$border_radius =" border-radius:48%;";
1463
- $cmcls = "cmcls";
1464
- $padding_top = "";
1465
- if($active_theme=="badge")
1466
- {
1467
- //$border_radius="border-radius: 18%;";
1468
- }
1469
- if($active_theme=="cute")
1470
- {
1471
- //$border_radius="border-radius: 38%;";
1472
- }
1473
-
1474
- $custom_icon_urls = unserialize($sfsi_section2_options['sfsi_CustomIcon_links']);
1475
- $url = (isset($custom_icon_urls[$icon_n]) && !empty($custom_icon_urls[$icon_n])) ? $custom_icon_urls[$icon_n]:'';
1476
- $toolClass = "custom_lkn";
1477
- $arrow_class = "";
1478
- $custom_icons_hoverTxt = unserialize($sfsi_section5_options['sfsi_custom_MouseOverTexts']);
1479
- $icons = unserialize($sfsi_section1_options['sfsi_custom_files']);
1480
- $icon = isset($icons[$icon_n])?$icons[$icon_n]:'';
1481
-
1482
- //Giving alternative text to image
1483
- if(!empty($custom_icons_hoverTxt[$icon_n]))
1484
- {
1485
- $alt_text = $custom_icons_hoverTxt[$icon_n];
1486
- }
1487
- else
1488
- {
1489
- $alt_text = "";
1490
- }
1491
- break;
1492
- }
1493
- $icons="";
1494
- /* apply size of icon */
1495
- if($is_front==0)
1496
- {
1497
- $icons_size = $sfsi_section5_options['sfsi_icons_size'];
1498
- $itemselector = "sfsi_wicons shuffeldiv";
1499
- $innrselector = "inerCnt";
1500
- }
1501
- else
1502
- {
1503
- $icons_size = 51;
1504
- $itemselector = "sfsi_wicons";
1505
- $innrselector = "inerCnt";
1506
- }
1507
-
1508
- /* spacing and no of icons per row */
1509
- $icons_space = '';
1510
- $icons_space = $sfsi_section5_options['sfsi_icons_spacing'];
1511
- $icon_width = (int)$icons_size;
1512
- /* check for mouse hover effect */
1513
- $icon_opacity="1";
1514
-
1515
- if($sfsi_section3_options['sfsi_mouseOver']=='yes')
1516
- {
1517
- $mouse_hover_effect=$sfsi_section3_options["sfsi_mouseOver_effect"];
1518
- if($mouse_hover_effect=="fade_in" || $mouse_hover_effect=="combo")
1519
- {
1520
- $icon_opacity="0.6";
1521
- }
1522
- }
1523
-
1524
- $toolT_cls='';
1525
- if((int) $icon_width <=49 && (int) $icon_width >=30)
1526
- {
1527
- $bt_class="";
1528
- $toolT_cls="sfsiTlleft";
1529
- }
1530
- else if((int) $icon_width <=20)
1531
- {
1532
- $bt_class="sfsiSmBtn";
1533
- $toolT_cls="sfsiTlleft";
1534
- }
1535
- else
1536
- {
1537
- $bt_class="";
1538
- $toolT_cls="sfsiTlleft";
1539
- }
1540
-
1541
- if($toolClass=="rss_tool_bdr" || $toolClass=='email_tool_bdr' || $toolClass=="custom_lkn" || $toolClass=="instagram_tool_bdr" )
1542
- {
1543
- $new_window = sfsi_checkNewWindow();
1544
- $url = $url;
1545
- }
1546
- else if($hoverSHow)
1547
- {
1548
- if(!wp_is_mobile())
1549
- {
1550
- $new_window = sfsi_checkNewWindow();
1551
- $url = $url;
1552
- }
1553
- else
1554
- {
1555
- $new_window = '';
1556
- $url = "javascript:void(0)";
1557
- }
1558
- }
1559
- else
1560
- {
1561
- $new_window = sfsi_checkNewWindow();
1562
- $url = $url;
1563
- }
1564
-
1565
- if(isset($sfsi_onclick)){
1566
- $new_window ="";
1567
- }
1568
-
1569
- if(!isset($sfsi_new_icons)){
1570
- $sfsi_new_icons =false;
1571
- }
1572
- if($sfsi_new_icons){
1573
- $margin_bot="4px;";
1574
- }else{
1575
- $margin_bot="5px;";
1576
- }
1577
- if($sfsi_section4_options['sfsi_display_counts']=="yes")
1578
- {
1579
- if($sfsi_new_icons){
1580
- $margin_bot = "29px;";
1581
- }else{
1582
- $margin_bot = "30px;";
1583
- }
1584
- }
1585
- if(isset($icon) && !empty($icon) && filter_var($icon, FILTER_VALIDATE_URL))
1586
- {
1587
- $icons.= "<div style='width:".$icon_width."px; height:".$icon_width."px;margin-left:".$icons_space."px;margin-bottom:".$margin_bot." ".($sfsi_new_icons?'padding:0px':'')."' class='".$itemselector." ".$cmcls."' >";
1588
-
1589
- $icons.= "<div class='".$innrselector."'>";
1590
-
1591
- $icons.= "<a class='".$class." sficn' data-effect='".$mouse_hover_effect."' $new_window href='".$url."' ".(('vk'!==$icon_name)?"id='sfsiid_".$icon_name."'":'')." style='opacity:".$icon_opacity."' ".(isset($sfsi_onclick)?'onclick="'.$sfsi_onclick.'"':'')." >";
1592
- $icons.= "<img data-pin-nopin='true' alt='".$alt_text."' title='".$alt_text."' src='".$icon."' width='".$icons_size."' height='".$icons_size."' style='".$border_radius.$padding_top."' class='sfcm sfsi_wicon ".(in_array($icon_name,array('telegram','wechat'))?('sfsi_'.$icon_name.'_wicon sfsi_click_wicon'):(''))."' data-effect='".$mouse_hover_effect."' />";
1593
- $icons.= '</a>';
1594
- if(isset($counts) && $counts!='')
1595
- {
1596
- $icons.= '<span class="bot_no '.$bt_class.'">'.$counts.'</span>';
1597
- }
1598
- if($hoverSHow && !empty($hoverdiv))
1599
- {
1600
- $icons.= '<div class="sfsi_tool_tip_2 '.$toolClass.' '.$toolT_cls.'" style="width:'.$width.'px ;opacity:0;z-index:-1;margin-left:-'.$twt_margin.'px;" id="sfsiid_'.$icon_name.'">';
1601
- $icons.= '<span class="bot_arow '.$arrow_class.'"></span>';
1602
- $icons.= '<div class="sfsi_inside">'.$hoverdiv."</div>";
1603
- $icons.= "</div>";
1604
- }
1605
- $icons.="</div>";
1606
- $icons.="</div>";
1607
- }
1608
- return $icons;
1609
- }
1610
-
1611
- /* make url for new window */
1612
- function sfsi_checkNewWindow()
1613
- {
1614
- global $wpdb;
1615
- $sfsi_section5_options= unserialize(get_option('sfsi_section5_options',false));
1616
- if($sfsi_section5_options['sfsi_icons_ClickPageOpen']=="yes")
1617
- {
1618
- return $new_window="target='_blank'";
1619
- }
1620
- else
1621
- {
1622
- return '';
1623
- }
1624
- }
1625
- ?>
1
+ <?php
2
+ /* create SFSI widget */
3
+ class Sfsi_Widget extends WP_Widget
4
+ {
5
+
6
+ function __construct()
7
+ {
8
+ $widget_ops = array('classname' => 'sfsi', 'description' => __('Ultimate Social Media Icons widgets', 'Ultimate Social Media Icons '));
9
+ $control_ops = array('width' => 300, 'height' => 350, 'id_base' => 'sfsi-widget');
10
+
11
+ parent::__construct(
12
+ // Base ID of your widget
13
+ 'sfsi-widget',
14
+
15
+ // Widget name will appear in UI
16
+ __('Ultimate Social Media Icons', 'Ultimate Social Media Icons'),
17
+
18
+ // Widget description
19
+ $widget_ops,
20
+
21
+ $control_ops
22
+ );
23
+ }
24
+
25
+ function widget($args, $instance)
26
+ {
27
+ extract($args);
28
+ /*Our variables from the widget settings. */
29
+ $title = isset($instance['title']) ? apply_filters('widget_title', $instance['title']) : '';
30
+ // var_dump($title,'ldfjgkdfj');
31
+ $show_info = isset($instance['show_info']) ? $instance['show_info'] : false;
32
+ $sfsi_section5 = unserialize(get_option('sfsi_section5_options', false));
33
+ $icons_alignment_widget = isset($sfsi_section5["sfsi_icons_Alignment_via_widget"]) ? sanitize_text_field($sfsi_section5["sfsi_icons_Alignment_via_widget"]) : 'center';
34
+ if ($icons_alignment_widget == "right") {
35
+ $icons_alignment_widget = "flex-end";
36
+ }
37
+
38
+ global $is_floter;
39
+ echo $before_widget;
40
+
41
+ /* Display the widget title */
42
+ if ($title) echo $before_title . $title . $after_title;
43
+ ?>
44
+ <div class="sfsi_widget" data-position="widget" style="display:flex;justify-content:<?php echo $icons_alignment_widget; ?>">
45
+ <div id='sfsi_wDiv'></div>
46
+ <?php
47
+ /* Link the main icons function */
48
+ echo sfsi_check_visiblity(0);
49
+ ?>
50
+ <div style="clear: both;"></div>
51
+ </div>
52
+ <?php
53
+ if (is_active_widget(false, false, $this->id_base, true)) { }
54
+ echo $after_widget;
55
+ }
56
+
57
+ /*Update the widget */
58
+ function update($new_instance, $old_instance)
59
+ {
60
+ $instance = $old_instance;
61
+ //Strip tags from title and name to remove HTML
62
+ if ($new_instance['showf'] == 0) {
63
+ $instance['showf'] = 1;
64
+ } else {
65
+ $instance['showf'] = 0;
66
+ }
67
+ $instance['title'] = strip_tags($new_instance['title']);
68
+ return $instance;
69
+ }
70
+
71
+ /* Set up some default widget settings. */
72
+ function form($instance)
73
+ {
74
+ $defaults = array('title' => "");
75
+ $instance = wp_parse_args((array) $instance, $defaults);
76
+ if (isset($instance['showf']) && !empty($instance['showf'])) {
77
+ if ($instance['showf'] == 0 && empty($instance['title'])) {
78
+ $instance['title'] = 'Please follow & like us :)';
79
+ } else {
80
+ $instance['title'];
81
+ }
82
+ } else {
83
+ $instance['title'] = 'Please follow & like us :)';
84
+ }
85
+ ?>
86
+ <p>
87
+ <label for="<?php echo $this->get_field_id('title'); ?>">Title</label>
88
+ <input id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" value="<?php echo $instance['title']; ?>" style="width:100%;" />
89
+ <input type="hidden" value="<?php echo $instance['showf'] ?>" id="<?php echo $this->get_field_id('showf'); ?>" name="<?php echo $this->get_field_name('showf'); ?>" />
90
+ </p>
91
+ <p>
92
+ Please go to the <a href="admin.php?page=sfsi-options">plugin page</a> to set your preferences
93
+ </p>
94
+ <?php
95
+ }
96
+ }
97
+ /* END OF widget Class */
98
+ /* register widget to wordpress */
99
+ function register_sfsi_widgets()
100
+ {
101
+ register_widget('sfsi_widget');
102
+ }
103
+ add_action('widgets_init', 'register_sfsi_widgets');
104
+
105
+ /* check the icons visiblity */
106
+ function sfsi_check_visiblity($isFloter = 0, $shortcode = false)
107
+ {
108
+ global $wpdb;
109
+ /* Access the saved settings in database */
110
+ $sfsi_section1_options = unserialize(get_option('sfsi_section1_options', false));
111
+ $sfsi_section3 = unserialize(get_option('sfsi_section3_options', false));
112
+ $sfsi_section5 = unserialize(get_option('sfsi_section5_options', false));
113
+ $sfsi_section9 = unserialize(get_option('sfsi_section9_options', false));
114
+
115
+ /* calculate the width and icons display alignments */
116
+ $icons_space = $sfsi_section5['sfsi_icons_spacing'];
117
+ $icons_size = $sfsi_section5['sfsi_icons_size'];
118
+ $icons_per_row = ($sfsi_section5['sfsi_icons_perRow']) ? $sfsi_section5['sfsi_icons_perRow'] : '';
119
+
120
+ $icons_alignment = $sfsi_section5['sfsi_icons_Alignment'];
121
+ $icons_alignment_widget = $sfsi_section5['sfsi_icons_Alignment_via_widget'];
122
+ $icons_alignment_shortcode = $sfsi_section5['sfsi_icons_Alignment_via_shortcode'];
123
+
124
+ $position = 'position:absolute;';
125
+ $position1 = 'position:absolute;';
126
+ $jquery = '<script>';
127
+
128
+ $jquery = '<script>';
129
+
130
+ $jquery .= 'window.addEventListener("sfsi_functions_loaded", function()
131
+ {
132
+ if (typeof sfsi_widget_set == "function") {
133
+ sfsi_widget_set();
134
+ }
135
+ }); ';
136
+
137
+
138
+ /* check if icons shuffling is activated in admin or not */
139
+ if ($sfsi_section5['sfsi_icons_stick'] == "yes") {
140
+ if (is_admin_bar_showing()) {
141
+ $Ictop = "30px";
142
+ } else {
143
+ $Ictop = "0";
144
+ }
145
+
146
+ $jquery .= 'window.addEventListener("sfsi_functions_loaded",function(){var s = jQuery(".sfsi_widget");
147
+ var pos = s.position();
148
+ jQuery(window).scroll(function(){
149
+ sfsi_stick_widget("' . $Ictop . '");
150
+ }); }); ';
151
+ }
152
+
153
+ /* check if icons floating is activated in admin */
154
+ if ($sfsi_section9['sfsi_icons_float'] == "yes") {
155
+ $top = "15";
156
+ switch ($sfsi_section9['sfsi_icons_floatPosition']) {
157
+ case "top-left":
158
+ if (is_admin_bar_showing()) : $position .= "position:absolute;left:30px;top:35px;";
159
+ $top = "35";
160
+ else : $position .= "position:absolute;left:10px;top:2%";
161
+ $top = "10";
162
+ endif;
163
+ break;
164
+ case "top-right":
165
+ if (is_admin_bar_showing()) : $position .= "position:absolute;right:30px;top:35px;";
166
+ $top = "35";
167
+ else : $position .= "position:absolute;right:10px;top:2%";
168
+ $top = "10";
169
+ endif;
170
+ break;
171
+ case "center-right":
172
+ $position .= "position:absolute;right:30px;top:50%";
173
+ $top = "center";
174
+ break;
175
+ case "center-left":
176
+ $position .= "position:absolute;left:30px;top:50%";
177
+ $top = "center";
178
+ break;
179
+ case "center-top":
180
+ if (is_admin_bar_showing()) {
181
+ $position .= "left:50%;top:35px;";
182
+ $top = "35";
183
+ } else {
184
+ $position .= "left:50%;top:10px;";
185
+ $top = "10";
186
+ }
187
+ break;
188
+ case "center-bottom":
189
+ $position .= "left:50%;bottom:0px";
190
+ $top = "bottom";
191
+ break;
192
+
193
+ case "bottom-right":
194
+ $position .= "position:absolute;right:30px;bottom:0px";
195
+ $top = "bottom";
196
+ break;
197
+ case "bottom-left":
198
+ $position .= "position:absolute;left:30px;bottom:0px";
199
+ $top = "bottom";
200
+ break;
201
+ }
202
+ //$jquery.="jQuery( document ).ready(function( $ ) { sfsi_float_widget('".$top."')});";
203
+ if ($sfsi_section9['sfsi_icons_floatPosition'] == 'center-right' || $sfsi_section9['sfsi_icons_floatPosition'] == 'center-left') {
204
+ $jquery .= "window.addEventListener('sfsi_functions_loaded',function()
205
+ {
206
+ var topalign = ( jQuery(window).height() - jQuery('#sfsi_floater').height() ) / 2;
207
+ jQuery('#sfsi_floater').css('top',topalign);
208
+ sfsi_float_widget('" . $top . "');
209
+ });";
210
+ } else if ($sfsi_section9['sfsi_icons_floatPosition'] == 'center-top' || $sfsi_section9['sfsi_icons_floatPosition'] == 'center-bottom') {
211
+
212
+ $jquery .= "window.addEventListener('sfsi_functions_loaded',function()
213
+ {
214
+ var leftalign = ( jQuery(window).width() - jQuery('#sfsi_floater').width() ) / 2;
215
+ jQuery('#sfsi_floater').css('left',leftalign);
216
+ sfsi_float_widget('" . $top . "');
217
+ });";
218
+ } else {
219
+ $jquery .= "window.addEventListener('sfsi_functions_loaded',function(){sfsi_float_widget('" . $top . "')});";
220
+ }
221
+ }
222
+
223
+ $extra = 0;
224
+ if ($sfsi_section3['sfsi_shuffle_icons'] == "yes") {
225
+ if ($sfsi_section3['sfsi_shuffle_Firstload'] == "yes" && $sfsi_section3['sfsi_shuffle_interval'] == "yes") {
226
+ $shuffle_time = (isset($sfsi_section3['sfsi_shuffle_intervalTime'])) ? $sfsi_section3['sfsi_shuffle_intervalTime'] : 3;
227
+ $shuffle_time = $shuffle_time * 1000;
228
+ $jquery .= "window.addEventListener('sfsi_functions_loaded',function(){ jQuery('.sfsi_wDiv').each(function(){ new window.Manipulator( jQuery(this)); }); setTimeout(function(){ jQuery('#sfsi_wDiv').each(function(){ jQuery(this).click(); })},2000); setInterval(function(){ jQuery('#sfsi_wDiv').each(function(){ jQuery(this).click(); })}," . $shuffle_time . "); });";
229
+ } else if ($sfsi_section3['sfsi_shuffle_Firstload'] == "no" && $sfsi_section3['sfsi_shuffle_interval'] == "yes") {
230
+ $shuffle_time = (isset($sfsi_section3['sfsi_shuffle_intervalTime'])) ? $sfsi_section3['sfsi_shuffle_intervalTime'] : 3;
231
+ $shuffle_time = $shuffle_time * 1000;
232
+ $jquery .= "window.addEventListener('sfsi_functions_loaded',function(){ jQuery('.sfsi_wDiv').each(function(){ new window.Manipulator( jQuery(this)); }); setInterval(function(){ jQuery('#sfsi_wDiv').each(function(){ jQuery(this).click(); })}," . $shuffle_time . "); });";
233
+ } else {
234
+ $jquery .= "window.addEventListener('sfsi_functions_loaded',function(){ jQuery('.sfsi_wDiv').each(function(){ new window.Manipulator( jQuery(this)); }); setTimeout(function(){ jQuery('#sfsi_wDiv').each(function(){ jQuery(this).click(); })},2000); });";
235
+ }
236
+ }
237
+
238
+ /* magnage the icons in saved order in admin */
239
+ $custom_icons_order = unserialize($sfsi_section5['sfsi_CustomIcons_order']);
240
+ $icons = unserialize($sfsi_section1_options['sfsi_custom_files']);
241
+ if (!isset($sfsi_section5['sfsi_telegramIcon_order'])) {
242
+ $sfsi_section5['sfsi_telegramIcon_order'] = '11';
243
+ }
244
+ if (!isset($sfsi_section5['sfsi_vkIcon_order'])) {
245
+ $sfsi_section5['sfsi_vkIcon_order'] = '12';
246
+ }
247
+ if (!isset($sfsi_section5['sfsi_okIcon_order'])) {
248
+ $sfsi_section5['sfsi_okIcon_order'] = '13';
249
+ }
250
+ if (!isset($sfsi_section5['sfsi_weiboIcon_order'])) {
251
+ $sfsi_section5['sfsi_weiboIcon_order'] = '14';
252
+ }
253
+ if (!isset($sfsi_section5['sfsi_wechatIcon_order'])) {
254
+ $sfsi_section5['sfsi_wechatIcon_order'] = '15';
255
+ }
256
+ $icons_order = array(
257
+ '0' => '',
258
+ $sfsi_section5['sfsi_rssIcon_order'] => 'rss',
259
+ $sfsi_section5['sfsi_emailIcon_order'] => 'email',
260
+ $sfsi_section5['sfsi_facebookIcon_order'] => 'facebook',
261
+ $sfsi_section5['sfsi_twitterIcon_order'] => 'twitter',
262
+ $sfsi_section5['sfsi_youtubeIcon_order'] => 'youtube',
263
+ $sfsi_section5['sfsi_pinterestIcon_order'] => 'pinterest',
264
+ $sfsi_section5['sfsi_linkedinIcon_order'] => 'linkedin',
265
+ $sfsi_section5['sfsi_instagramIcon_order'] => 'instagram',
266
+ $sfsi_section5['sfsi_telegramIcon_order'] => 'telegram',
267
+ $sfsi_section5['sfsi_vkIcon_order'] => 'vk',
268
+ $sfsi_section5['sfsi_okIcon_order'] => 'ok',
269
+ $sfsi_section5['sfsi_weiboIcon_order'] => 'weibo',
270
+ $sfsi_section5['sfsi_wechatIcon_order'] => 'wechat',
271
+ );
272
+ if (is_array($custom_icons_order)) {
273
+ foreach ($custom_icons_order as $data) {
274
+ $icons_order[$data['order']] = $data;
275
+ }
276
+ }
277
+ ksort($icons_order);
278
+
279
+ /* calculate the total width of widget according to icons */
280
+ if (!empty($icons_per_row)) {
281
+ $width = ((int) $icons_space + (int) $icons_size) * (int) $icons_per_row;
282
+ $main_width = $width = $width + $extra;
283
+ $main_width = $main_width . "px";
284
+ } else {
285
+ $width = ((int) $icons_space + (int) $icons_size);
286
+ $main_width = "35%";
287
+ }
288
+
289
+
290
+
291
+ /* built the main widget div */
292
+ if ($shortcode) {
293
+ $icons_main = '<div class="norm_row sfsi_wDiv " style="width:' . $main_width . ';text-align:' . $icons_alignment . ';">';
294
+ } else {
295
+ $icons_main = '<div class="norm_row sfsi_wDiv " style="width:' . $main_width . ';text-align:' . $icons_alignment . ';' . $position1 . '">';
296
+ }
297
+ $icons = "";
298
+ /* loop through icons and bulit the icons with all settings applied in admin */
299
+ foreach ($icons_order as $index => $icn) :
300
+ if (is_array($icn)) {
301
+ $icon_arry = $icn;
302
+ $icn = "custom";
303
+ }
304
+ switch ($icn):
305
+ case 'rss':
306
+ if ($sfsi_section1_options['sfsi_rss_display'] == 'yes') $icons .= sfsi_prepairIcons('rss');
307
+ break;
308
+ case 'email':
309
+ if ($sfsi_section1_options['sfsi_email_display'] == 'yes') $icons .= sfsi_prepairIcons('email');
310
+ break;
311
+ case 'facebook':
312
+ if ($sfsi_section1_options['sfsi_facebook_display'] == 'yes') $icons .= sfsi_prepairIcons('facebook');
313
+ break;
314
+ case 'twitter':
315
+ if ($sfsi_section1_options['sfsi_twitter_display'] == 'yes') $icons .= sfsi_prepairIcons('twitter');
316
+ break;
317
+ case 'youtube':
318
+ if ($sfsi_section1_options['sfsi_youtube_display'] == 'yes') $icons .= sfsi_prepairIcons('youtube');
319
+ break;
320
+ case 'pinterest':
321
+ if ($sfsi_section1_options['sfsi_pinterest_display'] == 'yes') $icons .= sfsi_prepairIcons('pinterest');
322
+ break;
323
+ case 'linkedin':
324
+ if ($sfsi_section1_options['sfsi_linkedin_display'] == 'yes') $icons .= sfsi_prepairIcons('linkedin');
325
+ break;
326
+ case 'instagram':
327
+ if ($sfsi_section1_options['sfsi_instagram_display'] == 'yes') $icons .= sfsi_prepairIcons('instagram');
328
+ break;
329
+ case 'telegram':
330
+ if ($sfsi_section1_options['sfsi_telegram_display'] == 'yes') $icons .= sfsi_prepairIcons('telegram');
331
+ break;
332
+ case 'vk':
333
+ if ($sfsi_section1_options['sfsi_vk_display'] == 'yes') $icons .= sfsi_prepairIcons('vk');
334
+ break;
335
+ case 'ok':
336
+ if ($sfsi_section1_options['sfsi_ok_display'] == 'yes') $icons .= sfsi_prepairIcons('ok');
337
+ break;
338
+ case 'weibo':
339
+ if ($sfsi_section1_options['sfsi_weibo_display'] == 'yes') $icons .= sfsi_prepairIcons('weibo');
340
+ break;
341
+ case 'wechat':
342
+ if ($sfsi_section1_options['sfsi_wechat_display'] == 'yes') $icons .= sfsi_prepairIcons('wechat');
343
+ break;
344
+ case 'custom':
345
+ $icons .= sfsi_prepairIcons($icon_arry['ele']);
346
+ break;
347
+ endswitch;
348
+ endforeach;
349
+
350
+ $jquery .= "</script>";
351
+ $icons .= '</div >';
352
+
353
+ $margin = $width + 11;
354
+
355
+ $icons_main .= $icons . '<div id="sfsi_holder" class="sfsi_holders" style="position: relative; float: left;width:100%;z-index:-1;"></div >' . $jquery;
356
+ /* if floating of icons is active create a floater div */
357
+ $icons_float = '';
358
+
359
+ if ($sfsi_section9['sfsi_icons_float'] == "yes" && $isFloter == 1) {
360
+ if ($sfsi_section9['sfsi_icons_floatPosition'] == "top-left") {
361
+ $styleMargin = "margin-top:" . $sfsi_section9['sfsi_icons_floatMargin_top'] . "px;margin-left:" . $sfsi_section9['sfsi_icons_floatMargin_left'] . "px;";
362
+ } elseif ($sfsi_section9['sfsi_icons_floatPosition'] == "top-right") {
363
+ $styleMargin = "margin-top:" . $sfsi_section9['sfsi_icons_floatMargin_top'] . "px;margin-right:" . $sfsi_section9['sfsi_icons_floatMargin_right'] . "px;";
364
+ } elseif ($sfsi_section9['sfsi_icons_floatPosition'] == "center-left") {
365
+ $styleMargin = "margin-left:" . $sfsi_section9['sfsi_icons_floatMargin_left'] . "px;";
366
+ } elseif ($sfsi_section9['sfsi_icons_floatPosition'] == "center-right") {
367
+ $styleMargin = "margin-right:" . $sfsi_section9['sfsi_icons_floatMargin_right'] . "px;";
368
+ } elseif ($sfsi_section9['sfsi_icons_floatPosition'] == "bottom-left") {
369
+ $styleMargin = "margin-bottom:" . $sfsi_section9['sfsi_icons_floatMargin_bottom'] . "px;margin-left:" . $sfsi_section9['sfsi_icons_floatMargin_left'] . "px;";
370
+ } elseif ($sfsi_section9['sfsi_icons_floatPosition'] == "bottom-right") {
371
+ $styleMargin = "margin-bottom:" . $sfsi_section9['sfsi_icons_floatMargin_bottom'] . "px;margin-right:" . $sfsi_section9['sfsi_icons_floatMargin_right'] . "px;";
372
+ }
373
+
374
+ $icons_float = isset($styleMargin) && !empty($styleMargin) ? '<style type="text/css">#sfsi_floater { ' . $styleMargin . ' }</style>' : '';
375
+ $icons_float .= '<div class="norm_row sfsi_wDiv" id="sfsi_floater" style="z-index: 9999;width:' . $width . 'px;text-align:' . $icons_alignment . ';' . $position . '">';
376
+ $icons_float .= $icons;
377
+ $icons_float .= "<input type='hidden' id='sfsi_floater_sec' value='" . $sfsi_section9['sfsi_icons_floatPosition'] . "' />";
378
+ $icons_float .= "</div>" . $jquery;
379
+ return $icons_float;
380
+ exit;
381
+ }
382
+ $icons_data = $icons_main . $icons_float;
383
+ return $icons_data;
384
+ }
385
+
386
+ /* make all icons with saved settings in admin */
387
+ function sfsi_prepairIcons($icon_name, $is_front = 0)
388
+ {
389
+ global $wpdb;
390
+ global $socialObj;
391
+ $mouse_hover_effect = '';
392
+ $active_theme = 'official';
393
+ $sfsi_shuffle_Firstload = 'no';
394
+ $sfsi_display_counts = "no";
395
+ $icon = '';
396
+ $url = '';
397
+ $alt_text = '';
398
+ $new_window = '';
399
+ $class = '';
400
+
401
+ /* access all saved settings in admin */
402
+ $sfsi_section1_options = unserialize(get_option('sfsi_section1_options', false));
403
+ $sfsi_section2_options = unserialize(get_option('sfsi_section2_options', false));
404
+ $sfsi_section3_options = unserialize(get_option('sfsi_section3_options', false));
405
+ $sfsi_section4_options = unserialize(get_option('sfsi_section4_options', false));
406
+ $sfsi_section5_options = unserialize(get_option('sfsi_section5_options', false));
407
+ $sfsi_section6_options = unserialize(get_option('sfsi_section6_options', false));
408
+ $sfsi_section7_options = unserialize(get_option('sfsi_section7_options', false));
409
+ /* get active theme */
410
+ $border_radius = '';
411
+ $active_theme = $sfsi_section3_options['sfsi_actvite_theme'];
412
+ if (!isset($sfsi_section2_options['sfsi_wechatShare_option'])) {
413
+ $sfsi_section2_options['sfsi_wechatShare_option'] = "yes";
414
+ }
415
+ /* shuffle effect */
416
+ if ($sfsi_section3_options['sfsi_shuffle_icons'] == 'yes') {
417
+ $sfsi_shuffle_Firstload = $sfsi_section3_options["sfsi_shuffle_Firstload"];
418
+ if ($sfsi_section3_options["sfsi_shuffle_interval"] == "yes") {
419
+ $sfsi_shuffle_interval = $sfsi_section3_options["sfsi_shuffle_intervalTime"];
420
+ }
421
+ }
422
+
423
+ /* define the main url for icon access */
424
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/" . $active_theme . "/";
425
+ $visit_iconsUrl = SFSI_PLUGURL . "images/visit_icons/";
426
+ $hoverSHow = 0;
427
+
428
+ /* check is icon is a custom icon or default icon */
429
+ if (is_numeric($icon_name)) {
430
+ $icon_n = $icon_name;
431
+ $icon_name = "custom";
432
+ }
433
+ $counts = '';
434
+ $twit_tolCls = "";
435
+ $twt_margin = "";
436
+ $icons_space = $sfsi_section5_options['sfsi_icons_spacing'];
437
+ $padding_top = '';
438
+
439
+ // $scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https" : "http";
440
+ // $current_url = $scheme.'://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];
441
+
442
+ $current_url = sfsi_get_current_page_url();
443
+
444
+ $url = "#";
445
+ $cmcls = '';
446
+ $toolClass = '';
447
+
448
+ $socialObj = new sfsi_SocialHelper(); /* global object to access 3rd party icon's actions */
449
+
450
+ switch ($icon_name) {
451
+ case "rss":
452
+
453
+ $url = isset($sfsi_section2_options['sfsi_rss_url']) && !empty($sfsi_section2_options['sfsi_rss_url']) ? $sfsi_section2_options['sfsi_rss_url'] : '';
454
+
455
+ $toolClass = "rss_tool_bdr";
456
+ $hoverdiv = '';
457
+ $arrow_class = "bot_rss_arow";
458
+
459
+ /* fecth no of counts if active in admin section */
460
+ if ($sfsi_section4_options['sfsi_rss_countsDisplay'] == "yes" && $sfsi_section4_options['sfsi_display_counts'] == "yes") {
461
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_rss_manualCounts']);
462
+ }
463
+
464
+ if (!empty($sfsi_section5_options['sfsi_rss_MouseOverText'])) {
465
+ $alt_text = $sfsi_section5_options['sfsi_rss_MouseOverText'];
466
+ } else {
467
+ $alt_text = '';
468
+ }
469
+
470
+ //Custom Skin Support {Monad}
471
+ if ($active_theme == 'custom_support') {
472
+ if (get_option("rss_skin")) {
473
+ $icon = get_option("rss_skin");
474
+ } else {
475
+ $active_theme = 'default';
476
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
477
+ $icon = $icons_baseUrl . $active_theme . "_rss.png";
478
+ }
479
+ } else {
480
+ $icon = $icons_baseUrl . $active_theme . "_rss.png";
481
+ }
482
+ break;
483
+
484
+ case "email":
485
+
486
+ $hoverdiv = '';
487
+
488
+ $sfsi_section2_options['sfsi_email_url'];
489
+ if (sanitize_text_field(get_option('sfsi_feed_id', false)) == "") {
490
+ $url = "https://specificfeeds.com/follow";
491
+ } else {
492
+ $url = (isset($sfsi_section2_options['sfsi_email_url'])) ? $sfsi_section2_options['sfsi_email_url'] : '';
493
+ }
494
+ $toolClass = "email_tool_bdr";
495
+ $arrow_class = "bot_eamil_arow";
496
+
497
+ /* fecth no of counts if active in admin section */
498
+ if (
499
+ $sfsi_section4_options['sfsi_email_countsDisplay'] == "yes" &&
500
+ $sfsi_section4_options['sfsi_display_counts'] == "yes"
501
+ ) {
502
+ if ($sfsi_section4_options['sfsi_email_countsFrom'] == "manual") {
503
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_email_manualCounts']);
504
+ } else {
505
+ $counts = $socialObj->SFSI_getFeedSubscriber(sanitize_text_field(get_option('sfsi_feed_id', false)));
506
+ }
507
+ }
508
+
509
+ if (!empty($sfsi_section5_options['sfsi_email_MouseOverText'])) {
510
+ $alt_text = $sfsi_section5_options['sfsi_email_MouseOverText'];
511
+ } else {
512
+ $alt_text = '';
513
+ }
514
+
515
+ //Custom Skin Support {Monad}
516
+ if ($active_theme == 'custom_support') {
517
+ if (get_option("email_skin")) {
518
+ $icon = get_option("email_skin");
519
+ } else {
520
+ $active_theme = 'default';
521
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
522
+ //$icon=($sfsi_section2_options['sfsi_rss_icons']=="sfsi") ? $icons_baseUrl.$active_theme."_sf.png" : $icons_baseUrl.$active_theme."_email.png";
523
+ if ($sfsi_section2_options['sfsi_rss_icons'] == "sfsi") {
524
+ $icon = $icons_baseUrl . $active_theme . "_sf.png";
525
+ } elseif ($sfsi_section2_options['sfsi_rss_icons'] == "email") {
526
+ $icon = $icons_baseUrl . $active_theme . "_email.png";
527
+ } else {
528
+ $icon = $icons_baseUrl . $active_theme . "_subscribe.png";
529
+ }
530
+ }
531
+ } else {
532
+
533
+ $rss_icons = isset($sfsi_section2_options['sfsi_rss_icons']) && !empty($sfsi_section2_options['sfsi_rss_icons']) ? $sfsi_section2_options['sfsi_rss_icons'] : false;
534
+
535
+ switch ($rss_icons) {
536
+
537
+ case 'email':
538
+ $image = "_email.png";
539
+ break;
540
+
541
+ case 'subscribe':
542
+ $image = "_subscribe.png";
543
+ break;
544
+
545
+ case 'sfsi':
546
+ $image = "_sf.png";
547
+ break;
548
+
549
+ default:
550
+ $image = "_subscribe.png";
551
+ break;
552
+ }
553
+
554
+ $icon = $icons_baseUrl . $active_theme . $image;
555
+ }
556
+ break;
557
+
558
+ case "facebook":
559
+
560
+ $width = 62;
561
+ $totwith = $width + 28 + $icons_space;
562
+ $twt_margin = $totwith / 2;
563
+ $toolClass = "fb_tool_bdr";
564
+ $arrow_class = "bot_fb_arow";
565
+
566
+ /* check for the over section */
567
+ if (!empty($sfsi_section5_options['sfsi_facebook_MouseOverText'])) {
568
+ $alt_text = $sfsi_section5_options['sfsi_facebook_MouseOverText'];
569
+ } else {
570
+ $alt_text = "";
571
+ }
572
+
573
+ $visit_icon = $visit_iconsUrl . "facebook.png";
574
+
575
+ $url = isset($sfsi_section2_options['sfsi_facebookPage_url']) && !empty($sfsi_section2_options['sfsi_facebookPage_url']) ? $sfsi_section2_options['sfsi_facebookPage_url'] : false;
576
+
577
+ $url = false != $url ? $sfsi_section2_options['sfsi_facebookPage_url'] : '';
578
+
579
+ $like_option = isset($sfsi_section2_options['sfsi_facebookLike_option']) && !empty($sfsi_section2_options['sfsi_facebookLike_option']) ? $sfsi_section2_options['sfsi_facebookLike_option'] : false;
580
+
581
+ $page_option = isset($sfsi_section2_options['sfsi_facebookPage_option']) && !empty($sfsi_section2_options['sfsi_facebookPage_option']) ? $sfsi_section2_options['sfsi_facebookPage_option'] : false;
582
+
583
+ $share_option = isset($sfsi_section2_options['sfsi_facebookShare_option']) && !empty($sfsi_section2_options['sfsi_facebookShare_option']) ? $sfsi_section2_options['sfsi_facebookShare_option'] : false;
584
+
585
+ if ((false != $like_option && $like_option == "yes") || (false != $share_option && $share_option == "yes")) {
586
+ $url = ($sfsi_section2_options['sfsi_facebookPage_url']) ? $sfsi_section2_options['sfsi_facebookPage_url'] : '';
587
+ $hoverSHow = 1;
588
+ $hoverdiv = '';
589
+
590
+ if (false != $page_option && $page_option == "yes") {
591
+ $hoverdiv .= "<div class='icon1'><a href='" . $url . "' " . sfsi_checkNewWindow($url) . "><img data-pin-nopin='true' class='sfsi_wicon' alt='" . $alt_text . "' title='" . $alt_text . "' src='" . $visit_icon . "' /></a></div>";
592
+ }
593
+ if (false != $like_option && $like_option == "yes") {
594
+ $hoverdiv .= "<div class='icon2'>" . $socialObj->sfsi_FBlike($current_url) . "</div>";
595
+ }
596
+ if (false != $share_option && $share_option == "yes") {
597
+ $hoverdiv .= "<div class='icon3'>" . $socialObj->sfsiFB_Share($current_url) . "</div>";
598
+ }
599
+ }
600
+
601
+ /* fecth no of counts if active in admin section */
602
+ if (
603
+ $sfsi_section4_options['sfsi_facebook_countsDisplay'] == "yes" &&
604
+ $sfsi_section4_options['sfsi_display_counts'] == "yes"
605
+ ) {
606
+ if ($sfsi_section4_options['sfsi_facebook_countsFrom'] == "manual") {
607
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_facebook_manualCounts']);
608
+ } else if ($sfsi_section4_options['sfsi_facebook_countsFrom'] == "likes") {
609
+ $fb_data = $socialObj->sfsi_get_fb($current_url);
610
+ $counts = $socialObj->format_num($fb_data['like_count']);
611
+ if (empty($counts)) {
612
+ $counts = (string) "0";
613
+ }
614
+ } else if ($sfsi_section4_options['sfsi_facebook_countsFrom'] == "followers") {
615
+ $fb_data = $socialObj->sfsi_get_fb($current_url);
616
+ $counts = $socialObj->format_num($fb_data['share_count']);
617
+ } else if ($sfsi_section4_options['sfsi_facebook_countsFrom'] == "mypage") {
618
+ $current_url = $sfsi_section4_options['sfsi_facebook_mypageCounts'];
619
+ $fb_data = $socialObj->sfsi_get_fb_pagelike($current_url);
620
+ $counts = $socialObj->format_num($fb_data);
621
+ }
622
+ }
623
+
624
+ //Custom Skin Support {Monad}
625
+ if ($active_theme == 'custom_support') {
626
+ if (get_option("facebook_skin")) {
627
+ $icon = get_option("facebook_skin");
628
+ } else {
629
+ $active_theme = 'default';
630
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
631
+ $icon = $icons_baseUrl . $active_theme . "_facebook.png";
632
+ }
633
+ } else {
634
+ $icon = $icons_baseUrl . $active_theme . "_facebook.png";
635
+ }
636
+ break;
637
+ case "twitter":
638
+ $toolClass = "twt_tool_bdr";
639
+ $arrow_class = "bot_twt_arow";
640
+
641
+ $url = isset($sfsi_section2_options['sfsi_twitter_pageURL']) && !empty($sfsi_section2_options['sfsi_twitter_pageURL']) ? $sfsi_section2_options['sfsi_twitter_pageURL'] : '';
642
+
643
+ $twitter_user = isset($sfsi_section2_options['sfsi_twitter_followUserName']) && !empty($sfsi_section2_options['sfsi_twitter_followUserName']) ? $sfsi_section2_options['sfsi_twitter_followUserName'] : false;
644
+
645
+ $twitter_text = isset($sfsi_section2_options['sfsi_twitter_aboutPageText']) && !empty($sfsi_section2_options['sfsi_twitter_aboutPageText']) ? $sfsi_section2_options['sfsi_twitter_aboutPageText'] : false;
646
+
647
+ $visit_icon = $visit_iconsUrl . "twitter.png";
648
+
649
+ $width = 59;
650
+ $totwith = $width + 28 + $icons_space;
651
+ $twt_margin = $totwith / 2;
652
+ /* check for icons to display */
653
+ $hoverdiv = '';
654
+
655
+ $follow_me = isset($sfsi_section2_options['sfsi_twitter_followme']) && !empty($sfsi_section2_options['sfsi_twitter_followme']) ? $sfsi_section2_options['sfsi_twitter_followme'] : false;
656
+
657
+ $about_page = isset($sfsi_section2_options['sfsi_twitter_aboutPage']) && !empty($sfsi_section2_options['sfsi_twitter_aboutPage']) ? $sfsi_section2_options['sfsi_twitter_aboutPage'] : false;
658
+
659
+ if ($follow_me == "yes" || $about_page == "yes") {
660
+ $hoverSHow = 1;
661
+ //Visit twitter page {Monad}
662
+ if (isset($sfsi_section2_options['sfsi_twitter_page']) && !empty($sfsi_section2_options['sfsi_twitter_page']) && $sfsi_section2_options['sfsi_twitter_page'] == "yes") {
663
+ $hoverdiv .= "<div class='cstmicon1'><a href='" . $url . "' " . sfsi_checkNewWindow($url) . "><img data-pin-nopin='true' class='sfsi_wicon' alt='Visit Us' title='Visit Us' src='" . $visit_icon . "' /></a></div>";
664
+ }
665
+ if ($follow_me == "yes" && !empty($twitter_user)) {
666
+ $hoverdiv .= "<div class='icon1'>" . $socialObj->sfsi_twitterFollow($twitter_user) . "</div>";
667
+ }
668
+ if ($about_page == "yes") {
669
+ $hoverdiv .= "<div class='icon2'>" . $socialObj->sfsi_twitterShare($current_url, $twitter_text) . "</div>";
670
+ }
671
+ }
672
+
673
+ /* fecth no of counts if active in admin section */
674
+ if (
675
+ $sfsi_section4_options['sfsi_twitter_countsDisplay'] == "yes" &&
676
+ $sfsi_section4_options['sfsi_display_counts'] == "yes"
677
+ ) {
678
+ if ($sfsi_section4_options['sfsi_twitter_countsFrom'] == "manual") {
679
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_twitter_manualCounts']);
680
+ } else if ($sfsi_section4_options['sfsi_twitter_countsFrom'] == "source") {
681
+ $tw_settings = array(
682
+ 'tw_consumer_key' => $sfsi_section4_options['tw_consumer_key'],
683
+ 'tw_consumer_secret' => $sfsi_section4_options['tw_consumer_secret'],
684
+ 'tw_oauth_access_token' => $sfsi_section4_options['tw_oauth_access_token'],
685
+ 'tw_oauth_access_token_secret' => $sfsi_section4_options['tw_oauth_access_token_secret']
686
+ );
687
+
688
+ $followers = $socialObj->sfsi_get_tweets($twitter_user, $tw_settings);
689
+ $counts = $socialObj->format_num($followers);
690
+ if (empty($counts)) {
691
+ $counts = (string) "0";
692
+ }
693
+ }
694
+ }
695
+
696
+ //Giving alternative text to image
697
+ if (!empty($sfsi_section5_options['sfsi_twitter_MouseOverText'])) {
698
+ $alt_text = $sfsi_section5_options['sfsi_twitter_MouseOverText'];
699
+ } else {
700
+ $alt_text = "";
701
+ }
702
+
703
+ //Custom Skin Support {Monad}
704
+ if ($active_theme == 'custom_support') {
705
+ if (get_option("twitter_skin")) {
706
+ $icon = get_option("twitter_skin");
707
+ } else {
708
+ $active_theme = 'default';
709
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
710
+ $icon = $icons_baseUrl . $active_theme . "_twitter.png";
711
+ }
712
+ } else {
713
+ $icon = $icons_baseUrl . $active_theme . "_twitter.png";
714
+ }
715
+ break;
716
+
717
+ case "youtube":
718
+ $toolClass = "utube_tool_bdr";
719
+ $arrow_class = "bot_utube_arow";
720
+ $width = 96;
721
+ $totwith = $width + 28 + $icons_space;
722
+ $twt_margin = $totwith / 2;
723
+ $youtube_user = (isset($sfsi_section4_options['sfsi_youtube_user']) && !empty($sfsi_section4_options['sfsi_youtube_user'])) ? $sfsi_section4_options['sfsi_youtube_user'] : 'SpecificFeeds';
724
+ $visit_icon = $visit_iconsUrl . "youtube.png";
725
+
726
+ $url = isset($sfsi_section2_options['sfsi_youtube_pageUrl']) && !empty($sfsi_section2_options['sfsi_youtube_pageUrl']) ? $sfsi_section2_options['sfsi_youtube_pageUrl'] : '';
727
+
728
+ //Giving alternative text to image
729
+ if (!empty($sfsi_section5_options['sfsi_youtube_MouseOverText'])) {
730
+ $alt_text = $sfsi_section5_options['sfsi_youtube_MouseOverText'];
731
+ } else {
732
+ $alt_text = "";
733
+ }
734
+
735
+ /* check for icons to display */
736
+ $hoverdiv = "";
737
+
738
+ $follow = isset($sfsi_section2_options['sfsi_youtube_follow']) && !empty($sfsi_section2_options['sfsi_youtube_follow']) ? $sfsi_section2_options['sfsi_youtube_follow'] : false;
739
+
740
+ $ypage = isset($sfsi_section2_options['sfsi_youtube_page']) && !empty($sfsi_section2_options['sfsi_youtube_page']) ? $sfsi_section2_options['sfsi_youtube_page'] : false;
741
+
742
+ if (false != $follow && $follow == "yes") {
743
+ $hoverSHow = 1;
744
+
745
+ if ($ypage == "yes") {
746
+ $hoverdiv .= "<div class='icon1'><a href='" . $url . "' " . sfsi_checkNewWindow($url) . "><img data-pin-nopin='true' class='sfsi_wicon' alt='" . $alt_text . "' title='" . $alt_text . "' src='" . $visit_icon . "' /></a></div>";
747
+ }
748
+ if ($follow == "yes") {
749
+ $hoverdiv .= "<div class='icon2'>" . $socialObj->sfsi_YouTubeSub($youtube_user) . "</div>";
750
+ }
751
+ }
752
+
753
+ /* fecth no of counts if active in admin section */
754
+ if (
755
+ $sfsi_section4_options['sfsi_youtube_countsDisplay'] == "yes" &&
756
+ $sfsi_section4_options['sfsi_display_counts'] == "yes"
757
+ ) {
758
+ if ($sfsi_section4_options['sfsi_youtube_countsFrom'] == "manual") {
759
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_youtube_manualCounts']);
760
+ } else if ($sfsi_section4_options['sfsi_youtube_countsFrom'] == "subscriber") {
761
+ $followers = $socialObj->sfsi_get_youtube($youtube_user);
762
+ $counts = $socialObj->format_num($followers);
763
+ if (empty($counts)) {
764
+ $counts = (string) "0";
765
+ }
766
+ }
767
+ }
768
+
769
+ //Custom Skin Support {Monad}
770
+ if ($active_theme == 'custom_support') {
771
+ if (get_option("youtube_skin")) {
772
+ $icon = get_option("youtube_skin");
773
+ } else {
774
+ $active_theme = 'default';
775
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
776
+ $icon = $icons_baseUrl . $active_theme . "_youtube.png";
777
+ }
778
+ } else {
779
+ $icon = $icons_baseUrl . $active_theme . "_youtube.png";
780
+ }
781
+ break;
782
+
783
+ case "pinterest":
784
+
785
+ $width = 73;
786
+ $totwith = $width + 28 + $icons_space;
787
+ $twt_margin = $totwith / 2;
788
+ $toolClass = "printst_tool_bdr";
789
+ $arrow_class = "bot_pintst_arow";
790
+
791
+ $pinterest_user = (isset($sfsi_section4_options['sfsi_pinterest_user']))
792
+ ? $sfsi_section4_options['sfsi_pinterest_user'] : '';
793
+ $pinterest_board = (isset($sfsi_section4_options['sfsi_pinterest_board']))
794
+ ? $sfsi_section4_options['sfsi_pinterest_board'] : '';
795
+
796
+ $visit_icon = $visit_iconsUrl . "pinterest.png";
797
+ $url = (isset($sfsi_section2_options['sfsi_pinterest_pageUrl'])) ? $sfsi_section2_options['sfsi_pinterest_pageUrl'] : '';
798
+
799
+ //Giving alternative text to image
800
+ if (isset($sfsi_section5_options['sfsi_pinterest_MouseOverText']) && !empty($sfsi_section5_options['sfsi_pinterest_MouseOverText'])) {
801
+ $alt_text = $sfsi_section5_options['sfsi_pinterest_MouseOverText'];
802
+ } else {
803
+ $alt_text = "";
804
+ }
805
+
806
+ /* check for icons to display */
807
+ $hoverdiv = "";
808
+
809
+ $pingblog = isset($sfsi_section2_options['sfsi_pinterest_pingBlog']) && !empty($sfsi_section2_options['sfsi_pinterest_pingBlog']) ? $sfsi_section2_options['sfsi_pinterest_pingBlog'] : false;
810
+
811
+ $page = isset($sfsi_section2_options['sfsi_pinterest_page']) && !empty($sfsi_section2_options['sfsi_pinterest_page']) ? $sfsi_section2_options['sfsi_pinterest_page'] : false;
812
+
813
+ $cDisplay = isset($sfsi_section4_options['sfsi_pinterest_countsDisplay']) && !empty($sfsi_section4_options['sfsi_pinterest_countsDisplay']) ? $sfsi_section4_options['sfsi_pinterest_countsDisplay'] : false;
814
+
815
+ $displayC = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
816
+
817
+ $cFrom = isset($sfsi_section4_options['sfsi_pinterest_countsFrom']) && !empty($sfsi_section4_options['sfsi_pinterest_countsFrom']) ? $sfsi_section4_options['sfsi_pinterest_countsFrom'] : false;
818
+ // var_dump($sfsi_section4_options['sfsi_pinterest_countsFrom'],$cFrom);die();
819
+
820
+ if ($pingblog == "yes") {
821
+ $hoverSHow = 1;
822
+
823
+ if ($page == "yes") {
824
+ $hoverdiv .= "<div class='icon1'><a href='" . $url . "' " . sfsi_checkNewWindow($url) . "><img data-pin-nopin='true' class='sfsi_wicon' alt='" . $alt_text . "' title='" . $alt_text . "' src='" . $visit_icon . "' /></a></div>";
825
+ }
826
+ if ($pingblog == "yes") {
827
+ $hoverdiv .= "<div class='icon2'>" . $socialObj->sfsi_PinIt($current_url) . "</div>";
828
+ }
829
+ }
830
+
831
+ /* fecth no of counts if active in admin section */
832
+ if ($cDisplay == "yes" && $displayC == "yes") {
833
+ if ($cFrom == "manual") {
834
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_pinterest_manualCounts']);
835
+ } else if ($cFrom == "pins") {
836
+ $pins = $socialObj->sfsi_get_pinterest($current_url);
837
+ $counts = $pins;
838
+ if (empty($counts)) {
839
+ $counts = (string) "0";
840
+ }
841
+ }
842
+ }
843
+
844
+ //Custom Skin Support {Monad}
845
+ if ($active_theme == 'custom_support') {
846
+ if (get_option("pintrest_skin")) {
847
+ $icon = get_option("pintrest_skin");
848
+ } else {
849
+ $active_theme = 'default';
850
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
851
+ $icon = $icons_baseUrl . $active_theme . "_pinterest.png";
852
+ }
853
+ } else {
854
+ $icon = $icons_baseUrl . $active_theme . "_pinterest.png";
855
+ }
856
+ break;
857
+
858
+ case "instagram":
859
+ $toolClass = "instagram_tool_bdr";
860
+ $arrow_class = "bot_pintst_arow";
861
+
862
+ $url = (isset($sfsi_section2_options['sfsi_instagram_pageUrl'])) ? $sfsi_section2_options['sfsi_instagram_pageUrl'] : '';
863
+
864
+ $instagram_user_name = isset($sfsi_section4_options['sfsi_instagram_User']) && !empty($sfsi_section4_options['sfsi_instagram_User']) ? $sfsi_section4_options['sfsi_instagram_User'] : false;
865
+
866
+ //Giving alternative text to image
867
+ if (isset($sfsi_section5_options['sfsi_instagram_MouseOverText']) && !empty($sfsi_section5_options['sfsi_instagram_MouseOverText'])) {
868
+ $alt_text = $sfsi_section5_options['sfsi_instagram_MouseOverText'];
869
+ } else {
870
+ $alt_text = "";
871
+ }
872
+
873
+ $hoverdiv = "";
874
+
875
+ $cDisplay = isset($sfsi_section4_options['sfsi_instagram_countsDisplay']) && !empty($sfsi_section4_options['sfsi_instagram_countsDisplay']) ? $sfsi_section4_options['sfsi_instagram_countsDisplay'] : false;
876
+
877
+ $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
878
+
879
+ $cFrom = isset($sfsi_section4_options['sfsi_instagram_countsFrom']) && !empty($sfsi_section4_options['sfsi_instagram_countsFrom']) ? $sfsi_section4_options['sfsi_instagram_countsFrom'] : false;
880
+
881
+ /* fecth no of counts if active in admin section */
882
+ if ($cDisplay == "yes" && $Displayc == "yes") {
883
+ if ($cFrom == "manual") {
884
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_instagram_manualCounts']);
885
+ } else if ($cFrom == "followers") {
886
+ $counts = $socialObj->sfsi_get_instagramFollowers($instagram_user_name);
887
+ if (empty($counts)) {
888
+ $counts = (string) "0";
889
+ }
890
+ }
891
+ }
892
+
893
+ //Custom Skin Support {Monad}
894
+ if ($active_theme == 'custom_support') {
895
+ if (get_option("instagram_skin")) {
896
+ $icon = get_option("instagram_skin");
897
+ } else {
898
+ $active_theme = 'default';
899
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
900
+ $icon = $icons_baseUrl . $active_theme . "_instagram.png";
901
+ }
902
+ } else {
903
+ $icon = $icons_baseUrl . $active_theme . "_instagram.png";
904
+ }
905
+ break;
906
+
907
+ case "telegram":
908
+ $toolClass = "telegram_tool_bdr";
909
+ $arrow_class = "bot_pintst_arow";
910
+ $hoverdiv = '';
911
+
912
+ // $url = (isset($sfsi_section4_options['sfsi_telegram_pageURL'])) ? $sfsi_section4_options['sfsi_telegram_pageURL'] : '';
913
+
914
+ // $telegram_user_name = isset($sfsi_section4_options['sfsi_telegram_User']) && !empty($sfsi_section4_options['sfsi_telegram_User']) ? $sfsi_section4_options['sfsi_telegram_User'] : false;
915
+
916
+ //Giving alternative text to image
917
+ if (isset($sfsi_section5_options['sfsi_telegram_MouseOverText']) && !empty($sfsi_section5_options['sfsi_telegram_MouseOverText'])) {
918
+ $alt_text = $sfsi_section5_options['sfsi_telegram_MouseOverText'];
919
+ } else {
920
+ $alt_text = "";
921
+ }
922
+ $messageus_icon = $visit_iconsUrl . $icon_name . "_message.svg";
923
+ $hoverdiv = "";
924
+ $cDisplay = isset($sfsi_section4_options['sfsi_telegram_countsDisplay']) && !empty($sfsi_section4_options['sfsi_telegram_countsDisplay']) ? $sfsi_section4_options['sfsi_telegram_countsDisplay'] : false;
925
+
926
+ $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
927
+ /* fecth no of counts if active in admin section */
928
+ if ($cDisplay == "yes" && $Displayc == "yes") {
929
+
930
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_telegram_manualCounts']);
931
+ }
932
+
933
+ //Custom Skin Support {Monad}
934
+ if ($active_theme == 'custom_support') {
935
+ if (get_option("telegram_skin")) {
936
+ $icon = get_option("telegram_skin");
937
+ } else {
938
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
939
+ $icon = $icons_baseUrl . "default_telegram.png";
940
+ }
941
+ } else {
942
+ $icon = $icons_baseUrl . $active_theme . "_telegram.png";
943
+ }
944
+ if (
945
+ isset($sfsi_section2_options['sfsi_telegram_message']) && !empty($sfsi_section2_options['sfsi_telegram_message'])
946
+ &&
947
+ isset($sfsi_section2_options['sfsi_telegram_username']) && !empty($sfsi_section2_options['sfsi_telegram_username'])
948
+
949
+ ) {
950
+ $tg_username = $sfsi_section2_options['sfsi_telegram_username'];
951
+ $tg_msg = stripslashes($sfsi_section2_options['sfsi_telegram_message']);
952
+ $tg_msg = str_replace('"', '', str_replace("'", '', $tg_msg));
953
+ $tg_msg = html_entity_decode(strip_tags($tg_msg), ENT_QUOTES, 'UTF-8');
954
+ $tg_msg = str_replace("%26%238230%3B", "...", $tg_msg);
955
+ $tg_msg = rawurlencode($tg_msg);
956
+
957
+ $tele_url = "https://t.me/" . $tg_username;
958
+ $url = $tele_url . "?&text=" . urlencode($tg_msg);
959
+ // var_dump($url);
960
+ // die();
961
+ // file_get_contents($url);
962
+ } else {
963
+ $url = "#";
964
+ $sfsi_onclick = "event.preventDefault();";
965
+ }
966
+ if ($active_theme == "glossy") {
967
+ $sfsi_new_icons = "yes";
968
+ }
969
+ break;
970
+ case "vk":
971
+ $toolClass = "vk_tool_bdr";
972
+ $arrow_class = "bot_pintst_arow";
973
+
974
+ $url = (isset($sfsi_section2_options['sfsi_vk_pageURL'])) ? $sfsi_section2_options['sfsi_vk_pageURL'] : '';
975
+
976
+ // $vk_user_name = isset($sfsi_section4_options['sfsi_vk_User']) && !empty($sfsi_section4_options['sfsi_vk_User']) ? $sfsi_section4_options['sfsi_vk_User'] : false;
977
+
978
+ //Giving alternative text to image
979
+ if (isset($sfsi_section5_options['sfsi_vk_MouseOverText']) && !empty($sfsi_section5_options['sfsi_vk_MouseOverText'])) {
980
+ $alt_text = $sfsi_section5_options['sfsi_vk_MouseOverText'];
981
+ } else {
982
+ $alt_text = "";
983
+ }
984
+
985
+ $hoverdiv = "";
986
+
987
+ $cDisplay = isset($sfsi_section4_options['sfsi_vk_countsDisplay']) && !empty($sfsi_section4_options['sfsi_vk_countsDisplay']) ? $sfsi_section4_options['sfsi_vk_countsDisplay'] : false;
988
+
989
+ $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
990
+
991
+ /* fecth no of counts if active in admin section */
992
+ if ($cDisplay == "yes" && $Displayc == "yes") {
993
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_vk_manualCounts']);
994
+ }
995
+
996
+ //Custom Skin Support {Monad}
997
+ if ($active_theme == 'custom_support') {
998
+ if (get_option("vk_skin")) {
999
+ $icon = get_option("vk_skin");
1000
+ } else {
1001
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
1002
+ $icon = $icons_baseUrl . "default_vk.png";
1003
+ }
1004
+ } else {
1005
+ $icon = $icons_baseUrl . $active_theme . "_vk.png";
1006
+ }
1007
+ if ($active_theme == "glossy") {
1008
+ $sfsi_new_icons = "yes";
1009
+ }
1010
+
1011
+ break;
1012
+ case "ok":
1013
+ $toolClass = "ok_tool_bdr";
1014
+ $arrow_class = "bot_pintst_arow";
1015
+
1016
+ $url = (isset($sfsi_section2_options['sfsi_ok_pageURL'])) ? $sfsi_section2_options['sfsi_ok_pageURL'] : '';
1017
+
1018
+ // $ok_user_name = isset($sfsi_section4_options['sfsi_ok_User']) && !empty($sfsi_section4_options['sfsi_ok_User']) ? $sfsi_section4_options['sfsi_ok_User'] : false;
1019
+
1020
+ //Giving alternative text to image
1021
+ if (isset($sfsi_section5_options['sfsi_ok_MouseOverText']) && !empty($sfsi_section5_options['sfsi_ok_MouseOverText'])) {
1022
+ $alt_text = $sfsi_section5_options['sfsi_ok_MouseOverText'];
1023
+ } else {
1024
+ $alt_text = "";
1025
+ }
1026
+
1027
+ $hoverdiv = "";
1028
+
1029
+ $cDisplay = isset($sfsi_section4_options['sfsi_ok_countsDisplay']) && !empty($sfsi_section4_options['sfsi_ok_countsDisplay']) ? $sfsi_section4_options['sfsi_ok_countsDisplay'] : false;
1030
+
1031
+ $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
1032
+ /* fecth no of counts if active in admin section */
1033
+ if ($cDisplay == "yes" && $Displayc == "yes") {
1034
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_ok_manualCounts']);
1035
+ }
1036
+
1037
+ //Custom Skin Support {Monad}
1038
+ if ($active_theme == 'custom_support') {
1039
+ if (get_option("ok_skin")) {
1040
+ $icon = get_option("ok_skin");
1041
+ } else {
1042
+
1043
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
1044
+ $icon = $icons_baseUrl . "default_ok.png";
1045
+ }
1046
+ } else {
1047
+ $icon = $icons_baseUrl . $active_theme . "_ok.png";
1048
+ }
1049
+ if ($active_theme == "glossy") {
1050
+ $sfsi_new_icons = "yes";
1051
+ }
1052
+
1053
+ break;
1054
+ case "weibo":
1055
+ $toolClass = "weibo_tool_bdr";
1056
+ $arrow_class = "bot_pintst_arow";
1057
+
1058
+ $url = (isset($sfsi_section2_options['sfsi_weibo_pageURL'])) ? $sfsi_section2_options['sfsi_weibo_pageURL'] : '';
1059
+
1060
+ // $weibo_user_name = isset($sfsi_section4_options['sfsi_weibo_User']) && !empty($sfsi_section4_options['sfsi_weibo_User']) ? $sfsi_section4_options['sfsi_weibo_User'] : false;
1061
+
1062
+ //Giving alternative text to image
1063
+ if (isset($sfsi_section5_options['sfsi_weibo_MouseOverText']) && !empty($sfsi_section5_options['sfsi_weibo_MouseOverText'])) {
1064
+ $alt_text = $sfsi_section5_options['sfsi_weibo_MouseOverText'];
1065
+ } else {
1066
+ $alt_text = "";
1067
+ }
1068
+
1069
+ $hoverdiv = "";
1070
+
1071
+ $cDisplay = isset($sfsi_section4_options['sfsi_weibo_countsDisplay']) && !empty($sfsi_section4_options['sfsi_weibo_countsDisplay']) ? $sfsi_section4_options['sfsi_weibo_countsDisplay'] : false;
1072
+
1073
+ $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
1074
+
1075
+ /* fecth no of counts if active in admin section */
1076
+ if ($cDisplay == "yes" && $Displayc == "yes") {
1077
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_weibo_manualCounts']);
1078
+ }
1079
+
1080
+ //Custom Skin Support {Monad}
1081
+ if ($active_theme == 'custom_support') {
1082
+ if (get_option("weibo_skin")) {
1083
+ $icon = get_option("weibo_skin");
1084
+ } else {
1085
+
1086
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
1087
+ $icon = $icons_baseUrl . "default_weibo.png";
1088
+ }
1089
+ } else {
1090
+ $icon = $icons_baseUrl . $active_theme . "_weibo.png";
1091
+ }
1092
+ if ($active_theme == "glossy") {
1093
+ $sfsi_new_icons = "yes";
1094
+ }
1095
+
1096
+ break;
1097
+ case "wechat":
1098
+ $toolClass = "wechat_tool_bdr";
1099
+ $arrow_class = "bot_pintst_arow";
1100
+
1101
+ // $url = (isset($sfsi_section2_options['sfsi_wechat_pageURL'])) ? $sfsi_section2_options['sfsi_wechat_pageURL'] : '';
1102
+
1103
+ // $wechat_user_name = isset($sfsi_section4_options['sfsi_wechat_User']) && !empty($sfsi_section4_options['sfsi_wechat_User']) ? $sfsi_section4_options['sfsi_wechat_User'] : false;
1104
+
1105
+ //Giving alternative text to image
1106
+ if (isset($sfsi_section5_options['sfsi_wechat_MouseOverText']) && !empty($sfsi_section5_options['sfsi_wechat_MouseOverText'])) {
1107
+ $alt_text = $sfsi_section5_options['sfsi_wechat_MouseOverText'];
1108
+ } else {
1109
+ $alt_text = "";
1110
+ }
1111
+
1112
+ $hoverdiv = "";
1113
+
1114
+ $cDisplay = isset($sfsi_section4_options['sfsi_wechat_countsDisplay']) && !empty($sfsi_section4_options['sfsi_wechat_countsDisplay']) ? $sfsi_section4_options['sfsi_wechat_countsDisplay'] : false;
1115
+
1116
+ $Displayc = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
1117
+
1118
+ /* fecth no of counts if active in admin section */
1119
+ if ($cDisplay == "yes" && $Displayc == "yes") {
1120
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_wechat_manualCounts']);
1121
+ }
1122
+ $url = "weixin://dl/chat";
1123
+ if (
1124
+ (isset($sfsi_section2_options['sfsi_wechatFollow_option']) && "yes" == $sfsi_section2_options['sfsi_wechatFollow_option']) && (isset($sfsi_section2_options['sfsi_wechatShare_option']) && "yes" == $sfsi_section2_options['sfsi_wechatShare_option'])
1125
+ ) {
1126
+ $hoverSHow = 1;
1127
+ $hoverdiv = "";
1128
+
1129
+ if (
1130
+ isset($sfsi_section2_options['sfsi_wechatFollow_option']) && !empty($sfsi_section2_options['sfsi_wechatFollow_option']) && "yes" == $option2['sfsi_wechatFollow_option']
1131
+
1132
+ && isset($sfsi_section2_options['sfsi_wechat_scan_image']) && !empty($sfsi_section2_options['sfsi_wechat_scan_image'])
1133
+ ) {
1134
+
1135
+ $image_url = $sfsi_section2_options['sfsi_wechat_scan_image'];
1136
+
1137
+ $hoverdiv .= "<div class='icon1' style='text-align:center'><a href='' onclick='event.preventDefault();sfsi_wechat_follow(\"" . $sfsi_section2_options['sfsi_wechat_scan_image'] . "\")' ><img data-pin-nopin='true' alt='" . $alt_text . "' title='" . $alt_text . "' src='" . $visit_icon . "' style='height:25px' /></a></div>";
1138
+ }
1139
+
1140
+ if (
1141
+ isset($sfsi_section2_options['sfsi_wechatShare_option']) && !empty($sfsi_section2_options['sfsi_wechatShare_option'])
1142
+ && "yes" == $sfsi_section2_options['sfsi_wechatShare_option']
1143
+ ) {
1144
+
1145
+ $hoverdiv .= "<div class='icon2' style='text-align:center' ><a href='" . $url . "' " . sfsi_checkNewWindow($url) . " onclick='event.preventDefault();sfsi_wechat_share(\"" . $sfsi_section2_options['sfsi_wechat_scan_image'] . "\")' ><img data-pin-nopin='true' alt='" . $alt_text . "' title='" . $alt_text . "' src='" . $share_icon . "' style='height:25px' /></a></div>";
1146
+ }
1147
+ } else {
1148
+
1149
+
1150
+ if (
1151
+ isset($sfsi_section2_options['sfsi_wechatFollow_option']) && !empty($sfsi_section2_options['sfsi_wechatFollow_option']) && "yes" == $sfsi_section2_options['sfsi_wechatFollow_option']
1152
+
1153
+ && isset($sfsi_section2_options['sfsi_wechat_scan_image']) && !empty($sfsi_section2_options['sfsi_wechat_scan_image'])
1154
+ ) {
1155
+
1156
+ $sfsi_onclick = "event.preventDefault();sfsi_wechat_follow(\'" . $sfsi_section2_options['sfsi_wechat_scan_image'] . "\')";
1157
+ }
1158
+
1159
+ if (
1160
+ isset($sfsi_section2_options['sfsi_wechatShare_option']) && 'yes' == ($sfsi_section2_options['sfsi_wechatShare_option'])
1161
+ && "yes" == $sfsi_section2_options['sfsi_wechatShare_option']
1162
+ ) {
1163
+ if (!wp_is_mobile()) {
1164
+ $sfsi_onclick = "event.preventDefault();sfsi_wechat_share('" . trim($current_url) . "')";
1165
+ } else {
1166
+ $sfsi_onclick = '';
1167
+ if (wp_is_mobile()) {
1168
+ $sfsi_onclick = "console.log(event);event.stopPropagation&&event.stopPropagation();";
1169
+ }
1170
+ $sfsi_onclick .= "event.preventDefault();sfsi_mobile_wechat_share('" . trim($current_url) . "')";
1171
+ }
1172
+ }
1173
+ $hoverSHow = 0;
1174
+ }
1175
+ //Custom Skin Support {Monad}
1176
+ if ($active_theme == 'custom_support') {
1177
+ if (get_option("wechat_skin")) {
1178
+ $icon = get_option("wechat_skin");
1179
+ } else {
1180
+
1181
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
1182
+ $icon = $icons_baseUrl . "default_wechat.png";
1183
+ }
1184
+ } else {
1185
+ $icon = $icons_baseUrl . $active_theme . "_wechat.png";
1186
+ }
1187
+ if ($active_theme == "glossy") {
1188
+ $sfsi_new_icons = "yes";
1189
+ }
1190
+
1191
+ break;
1192
+
1193
+
1194
+ case "linkedin":
1195
+ $width = 66;
1196
+ $toolClass = "linkedin_tool_bdr";
1197
+ $arrow_class = "bot_linkedin_arow";
1198
+
1199
+ $linkedIn_compayId = isset($sfsi_section2_options['sfsi_linkedin_followCompany']) && !empty($sfsi_section2_options['sfsi_linkedin_followCompany']) ? $sfsi_section2_options['sfsi_linkedin_followCompany'] : false;
1200
+
1201
+ $page = isset($sfsi_section2_options['sfsi_linkedin_page']) && !empty($sfsi_section2_options['sfsi_linkedin_page']) ? $sfsi_section2_options['sfsi_linkedin_page'] : false;
1202
+
1203
+ $follow = isset($sfsi_section2_options['sfsi_linkedin_follow']) && !empty($sfsi_section2_options['sfsi_linkedin_follow']) ? $sfsi_section2_options['sfsi_linkedin_follow'] : false;
1204
+
1205
+ $share = isset($sfsi_section2_options['sfsi_linkedin_SharePage']) && !empty($sfsi_section2_options['sfsi_linkedin_SharePage']) ? $sfsi_section2_options['sfsi_linkedin_SharePage'] : false;
1206
+
1207
+ $reBusiness = isset($sfsi_section2_options['sfsi_linkedin_recommendBusines']) && !empty($sfsi_section2_options['sfsi_linkedin_recommendBusines']) ? $sfsi_section2_options['sfsi_linkedin_recommendBusines'] : false;
1208
+
1209
+ $linkedIn_compay = $linkedIn_compayId;
1210
+ $linkedIn_ProductId = isset($sfsi_section2_options['sfsi_linkedin_recommendProductId']) && !empty($sfsi_section2_options['sfsi_linkedin_recommendProductId']) ? $sfsi_section2_options['sfsi_linkedin_recommendProductId'] : false;
1211
+
1212
+ $visit_icon = $visit_iconsUrl . "linkedIn.png";
1213
+
1214
+ /*check for icons to display */
1215
+ $url = isset($sfsi_section2_options['sfsi_linkedin_pageURL']) && !empty($sfsi_section2_options['sfsi_linkedin_pageURL']) ? $sfsi_section2_options['sfsi_linkedin_pageURL'] : '';
1216
+
1217
+ if ($follow == "yes" || $share == "yes" || $reBusiness == "yes") {
1218
+ $hoverSHow = 1;
1219
+ $hoverdiv = '';
1220
+
1221
+ if ($page == "yes") {
1222
+ $hoverdiv .= "<div class='icon4'><a href='" . $url . "' " . sfsi_checkNewWindow($url) . "><img data-pin-nopin='true' class='sfsi_wicon' alt='" . $alt_text . "' title='" . $alt_text . "' src='" . $visit_icon . "' /></a></div>";
1223
+ }
1224
+ if ($follow == "yes") {
1225
+ $hoverdiv .= "<div class='icon1'>" . $socialObj->sfsi_LinkedInFollow($linkedIn_compayId) . "</div>";
1226
+ }
1227
+ if ($share == "yes") {
1228
+ $hoverdiv .= "<div class='icon2'>" . $socialObj->sfsi_LinkedInShare() . "</div>";
1229
+ }
1230
+ if ($reBusiness == "yes") {
1231
+ $hoverdiv .= "<div class='icon3'>" . $socialObj->sfsi_LinkedInRecommend($linkedIn_compay, $linkedIn_ProductId) . "</div>";
1232
+ $width = 99;
1233
+ }
1234
+ }
1235
+
1236
+ $cFrom = isset($sfsi_section4_options['sfsi_linkedIn_countsFrom']) && !empty($sfsi_section4_options['sfsi_linkedIn_countsFrom']) ? $sfsi_section4_options['sfsi_linkedIn_countsFrom'] : false;
1237
+
1238
+ $disp = isset($sfsi_section4_options['sfsi_linkedIn_countsDisplay']) && !empty($sfsi_section4_options['sfsi_linkedIn_countsDisplay']) ? $sfsi_section4_options['sfsi_linkedIn_countsDisplay'] : false;
1239
+
1240
+ $dcount = isset($sfsi_section4_options['sfsi_display_counts']) && !empty($sfsi_section4_options['sfsi_display_counts']) ? $sfsi_section4_options['sfsi_display_counts'] : false;
1241
+
1242
+ /* fecth no of counts if active in admin section */
1243
+ if ($disp == "yes" && $dcount == "yes") {
1244
+ if ($cFrom == "manual") {
1245
+ $counts = $socialObj->format_num($sfsi_section4_options['sfsi_linkedIn_manualCounts']);
1246
+ } else if ($cFrom == "follower") {
1247
+ $linkedIn_compay = $sfsi_section4_options['ln_company'];
1248
+ $ln_settings = array(
1249
+ 'ln_api_key' => $sfsi_section4_options['ln_api_key'],
1250
+ 'ln_secret_key' => $sfsi_section4_options['ln_secret_key'],
1251
+ 'ln_oAuth_user_token' => $sfsi_section4_options['ln_oAuth_user_token']
1252
+ );
1253
+
1254
+ $followers = $socialObj->sfsi_getlinkedin_follower($linkedIn_compay, $ln_settings);
1255
+ (int) $followers;
1256
+ $counts = $socialObj->format_num($followers);
1257
+ if (empty($counts)) {
1258
+ $counts = (string) "0";
1259
+ }
1260
+ }
1261
+ }
1262
+ $totwith = $width + 28 + $icons_space;
1263
+ $twt_margin = $totwith / 2;
1264
+
1265
+ //Giving alternative text to image
1266
+ if (isset($sfsi_section5_options['sfsi_linkedIn_MouseOverText']) && !empty($sfsi_section5_options['sfsi_linkedIn_MouseOverText'])) {
1267
+ $alt_text = $sfsi_section5_options['sfsi_linkedIn_MouseOverText'];
1268
+ } else {
1269
+ $alt_text = "";
1270
+ }
1271
+
1272
+ //Custom Skin Support {Monad}
1273
+ if ($active_theme == 'custom_support') {
1274
+ if (get_option("linkedin_skin")) {
1275
+ $icon = get_option("linkedin_skin");
1276
+ } else {
1277
+ $active_theme = 'default';
1278
+ $icons_baseUrl = SFSI_PLUGURL . "images/icons_theme/default/";
1279
+ $icon = $icons_baseUrl . $active_theme . "_linkedin.png";
1280
+ }
1281
+ } else {
1282
+ $icon = $icons_baseUrl . $active_theme . "_linkedin.png";
1283
+ }
1284
+ break;
1285
+
1286
+ default:
1287
+ $border_radius = "";
1288
+ //$border_radius =" border-radius:48%;";
1289
+ $cmcls = "cmcls";
1290
+ $padding_top = "";
1291
+ if ($active_theme == "badge") {
1292
+ //$border_radius="border-radius: 18%;";
1293
+ }
1294
+ if ($active_theme == "cute") {
1295
+ //$border_radius="border-radius: 38%;";
1296
+ }
1297
+
1298
+ $custom_icon_urls = unserialize($sfsi_section2_options['sfsi_CustomIcon_links']);
1299
+ $url = (isset($custom_icon_urls[$icon_n]) && !empty($custom_icon_urls[$icon_n])) ? $custom_icon_urls[$icon_n] : '';
1300
+ $toolClass = "custom_lkn";
1301
+ $arrow_class = "";
1302
+ $custom_icons_hoverTxt = unserialize($sfsi_section5_options['sfsi_custom_MouseOverTexts']);
1303
+ $icons = unserialize($sfsi_section1_options['sfsi_custom_files']);
1304
+ $icon = isset($icons[$icon_n]) ? $icons[$icon_n] : '';
1305
+
1306
+ //Giving alternative text to image
1307
+ if (!empty($custom_icons_hoverTxt[$icon_n])) {
1308
+ $alt_text = $custom_icons_hoverTxt[$icon_n];
1309
+ } else {
1310
+ $alt_text = "";
1311
+ }
1312
+ break;
1313
+ }
1314
+ $icons = "";
1315
+ /* apply size of icon */
1316
+ if ($is_front == 0) {
1317
+ $icons_size = $sfsi_section5_options['sfsi_icons_size'];
1318
+ $itemselector = "sfsi_wicons shuffeldiv";
1319
+ $innrselector = "inerCnt";
1320
+ } else {
1321
+ $icons_size = 51;
1322
+ $itemselector = "sfsi_wicons";
1323
+ $innrselector = "inerCnt";
1324
+ }
1325
+
1326
+ /* spacing and no of icons per row */
1327
+ $icons_space = '';
1328
+ $icons_space = $sfsi_section5_options['sfsi_icons_spacing'];
1329
+ $icon_width = (int) $icons_size;
1330
+ /* check for mouse hover effect */
1331
+ $icon_opacity = "1";
1332
+
1333
+ if ($sfsi_section3_options['sfsi_mouseOver'] == 'yes') {
1334
+ $mouse_hover_effect = $sfsi_section3_options["sfsi_mouseOver_effect"];
1335
+ if ($mouse_hover_effect == "fade_in" || $mouse_hover_effect == "combo") {
1336
+ $icon_opacity = "0.6";
1337
+ }
1338
+ }
1339
+
1340
+ $toolT_cls = '';
1341
+ if ((int) $icon_width <= 49 && (int) $icon_width >= 30) {
1342
+ $bt_class = "";
1343
+ $toolT_cls = "sfsiTlleft";
1344
+ } else if ((int) $icon_width <= 20) {
1345
+ $bt_class = "sfsiSmBtn";
1346
+ $toolT_cls = "sfsiTlleft";
1347
+ } else {
1348
+ $bt_class = "";
1349
+ $toolT_cls = "sfsiTlleft";
1350
+ }
1351
+
1352
+ if ($toolClass == "rss_tool_bdr" || $toolClass == 'email_tool_bdr' || $toolClass == "custom_lkn" || $toolClass == "instagram_tool_bdr") {
1353
+ $new_window = sfsi_checkNewWindow();
1354
+ $url = $url;
1355
+ } else if ($hoverSHow) {
1356
+ if (!wp_is_mobile()) {
1357
+ $new_window = sfsi_checkNewWindow();
1358
+ $url = $url;
1359
+ } else {
1360
+ $new_window = '';
1361
+ $url = "javascript:void(0)";
1362
+ }
1363
+ } else {
1364
+ $new_window = sfsi_checkNewWindow();
1365
+ $url = $url;
1366
+ }
1367
+
1368
+ if (isset($sfsi_onclick)) {
1369
+ $new_window = "";
1370
+ }
1371
+
1372
+ if (!isset($sfsi_new_icons)) {
1373
+ $sfsi_new_icons = false;
1374
+ }
1375
+ if ($sfsi_new_icons) {
1376
+ $margin_bot = "4px;";
1377
+ } else {
1378
+ $margin_bot = "5px;";
1379
+ }
1380
+ if ($sfsi_section4_options['sfsi_display_counts'] == "yes") {
1381
+ if ($sfsi_new_icons) {
1382
+ $margin_bot = "29px;";
1383
+ } else {
1384
+ $margin_bot = "30px;";
1385
+ }
1386
+ }
1387
+ if (isset($icon) && !empty($icon) && filter_var($icon, FILTER_VALIDATE_URL)) {
1388
+ $icons .= "<div style='width:" . $icon_width . "px; height:" . $icon_width . "px;margin-left:" . $icons_space . "px;margin-bottom:" . $margin_bot . " " . ($sfsi_new_icons ? 'padding:0px' : '') . "' class='" . $itemselector . " " . $cmcls . "' >";
1389
+
1390
+ $icons .= "<div class='" . $innrselector . "'>";
1391
+
1392
+ $icons .= "<a class='" . $class . " sficn' data-effect='" . $mouse_hover_effect . "' $new_window href='" . $url . "' " . (('vk' !== $icon_name) ? "id='sfsiid_" . $icon_name . "'" : '') . " style='opacity:" . $icon_opacity . "' " . (isset($sfsi_onclick) ? 'onclick="' . $sfsi_onclick . '"' : '') . " >";
1393
+ $icons .= "<img data-pin-nopin='true' alt='" . $alt_text . "' title='" . $alt_text . "' src='" . $icon . "' width='" . $icons_size . "' height='" . $icons_size . "' style='" . $border_radius . $padding_top . "' class='sfcm sfsi_wicon " . (in_array($icon_name, array('telegram', 'wechat')) ? ('sfsi_' . $icon_name . '_wicon sfsi_click_wicon') : ('')) . "' data-effect='" . $mouse_hover_effect . "' />";
1394
+ $icons .= '</a>';
1395
+ if (isset($counts) && $counts != '') {
1396
+ $icons .= '<span class="bot_no ' . $bt_class . '">' . $counts . '</span>';
1397
+ }
1398
+ if ($hoverSHow && !empty($hoverdiv)) {
1399
+ $icons .= '<div class="sfsi_tool_tip_2 ' . $toolClass . ' ' . $toolT_cls . '" style="width:' . $width . 'px ;opacity:0;z-index:-1;margin-left:-' . $twt_margin . 'px;" id="sfsiid_' . $icon_name . '">';
1400
+ $icons .= '<span class="bot_arow ' . $arrow_class . '"></span>';
1401
+ $icons .= '<div class="sfsi_inside">' . $hoverdiv . "</div>";
1402
+ $icons .= "</div>";
1403
+ }
1404
+ $icons .= "</div>";
1405
+ $icons .= "</div>";
1406
+ }
1407
+ return $icons;
1408
+ }
1409
+
1410
+ /* make url for new window */
1411
+ function sfsi_checkNewWindow()
1412
+ {
1413
+ global $wpdb;
1414
+ $sfsi_section5_options = unserialize(get_option('sfsi_section5_options', false));
1415
+ if ($sfsi_section5_options['sfsi_icons_ClickPageOpen'] == "yes") {
1416
+ return $new_window = "target='_blank'";
1417
+ } else {
1418
+ return '';
1419
+ }
1420
+ }
1421
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,901 +1,892 @@
1
- === Social Media Share Buttons & Social Sharing Icons ===
2
- Contributors: socialdude, socialtech
3
- Tags: social media, share, buttons, social widget, icons, share icons, share buttons, sharing icons, sharing buttons, social share, sharing, social sharing
4
- Requires at least: 3.5
5
- Tested up to: 5.3
6
- Stable tag: 2.4.4
7
- License: GPLv2
8
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
-
10
- Share buttons and share icons plugin for social media sharing on Facebook, Twitter, Instagram, Whatsapp, Pinterest etc.
11
-
12
- == Description ==
13
-
14
- Social media plugin which let's you add share icons for RSS, Email, Facebook, Twitter, LinkedIn, Pinterest, Instagram, Youtube, 'Share' (covering 200+ other social media platforms) and upload custom share icons of your choice.
15
-
16
- This free plugin has a lot to offer. Even more can be found in the Premium Plugin, please watch this short video:
17
-
18
- [vimeo https://vimeo.com/269140798]
19
-
20
- See [all features of the Premium plugin](https://www.ultimatelysocial.com/usm-premium/).
21
-
22
- The free social media plugin includes the following features:
23
-
24
- - Pick from 16 different designs for your social media share icons
25
- - Give several actions to one social media share icon (e.g. your facebook share icon can lead visitors to your Facebook page, and also give visitors the opportunity to like your page)
26
- - Decide to give your social media icons an animation (e.g. automatic shuffling, mouse-over effects) to make your visitors aware of the share icons, increasing the chance that they follow/share your blog
27
- - Make your social med