Social Share Icons & Social Share Buttons - Version 3.3.1

Version Description

  • Updated: Tweet text blank.
  • Updated: Export and import text size changed.
  • Updated: Video url changed.
  • Updated: Resolved the illigal offset error.
Download this release

Release Info

Developer socialsharepro
Plugin Icon 128x128 Social Share Icons & Social Share Buttons
Version 3.3.1
Comparing to
See all releases

Code changes from version 3.2.9 to 3.3.1

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/Collector.php CHANGED
@@ -1,217 +1,217 @@
1
- <?php
2
-
3
- namespace Analyst;
4
-
5
- use Analyst\Contracts\AnalystContract;
6
-
7
- /**
8
- * Class Collector is a set of getters
9
- * to retrieve some data from wp site
10
- */
11
- class Collector
12
- {
13
- /**
14
- * @var AnalystContract
15
- */
16
- protected $sdk;
17
-
18
- /**
19
- * @var \WP_User
20
- */
21
- protected $user;
22
-
23
- public function __construct(AnalystContract $sdk)
24
- {
25
- $this->sdk = $sdk;
26
- }
27
-
28
- /**
29
- * Load current user into memory
30
- */
31
- public function loadCurrentUser()
32
- {
33
- $this->user = wp_get_current_user();
34
- }
35
-
36
- /**
37
- * Get site url
38
- *
39
- * @return string
40
- */
41
- public function getSiteUrl()
42
- {
43
- return get_option('siteurl');
44
- }
45
-
46
- /**
47
- * Get current user email
48
- *
49
- * @return string
50
- */
51
- public function getCurrentUserEmail()
52
- {
53
- return $this->user->user_email;
54
- }
55
-
56
- /**
57
- * Get's email from general settings
58
- *
59
- * @return string
60
- */
61
- public function getGeneralEmailAddress()
62
- {
63
- return get_option('admin_email');
64
- }
65
-
66
- /**
67
- * Is this user administrator
68
- *
69
- * @return bool
70
- */
71
- public function isUserAdministrator()
72
- {
73
- return in_array('administrator', $this->user->roles);
74
- }
75
-
76
- /**
77
- * User name
78
- *
79
- * @return string
80
- */
81
- public function getCurrentUserName()
82
- {
83
- return $this->user ? $this->user->user_nicename : 'unknown';
84
- }
85
-
86
- /**
87
- * WP version
88
- *
89
- * @return string
90
- */
91
- public function getWordPressVersion()
92
- {
93
- global $wp_version;
94
-
95
- return $wp_version;
96
- }
97
-
98
- /**
99
- * PHP version
100
- *
101
- * @return string
102
- */
103
- public function getPHPVersion()
104
- {
105
- return phpversion();
106
- }
107
-
108
- /**
109
- * Resolves plugin information
110
- *
111
- * @param string $path Absolute path to plugin
112
- * @return array
113
- */
114
- public function resolvePluginData($path)
115
- {
116
- if( !function_exists('get_plugin_data') ){
117
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
118
- }
119
-
120
- return get_plugin_data($path);
121
- }
122
-
123
- /**
124
- * Get plugin name by path
125
- *
126
- * @param $path
127
- * @return string
128
- */
129
- public function getPluginName($path)
130
- {
131
- $data = $this->resolvePluginData($path);
132
-
133
- return $data['Name'];
134
- }
135
-
136
- /**
137
- * Get plugin version
138
- *
139
- * @param $path
140
- * @return string
141
- */
142
- public function getPluginVersion($path)
143
- {
144
- $data = $this->resolvePluginData($path);
145
-
146
- return $data['Version'] ? $data['Version'] : null;
147
- }
148
-
149
- /**
150
- * Get server ip
151
- *
152
- * @return string
153
- */
154
- public function getServerIp()
155
- {
156
- return $_SERVER['SERVER_ADDR'];
157
- }
158
-
159
- /**
160
- * @return string
161
- */
162
- public function getSDKVersion()
163
- {
164
- return $this->sdk->version();
165
- }
166
-
167
- /**
168
- * @return string
169
- */
170
- public function getMysqlVersion()
171
- {
172
- $conn = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
173
-
174
- $version = mysqli_get_server_info($conn);
175
-
176
- return $version ? $version : 'unknown';
177
- }
178
-
179
- /**
180
- * @return string
181
- */
182
- public function getSiteLanguage()
183
- {
184
- return get_locale();
185
- }
186
-
187
-
188
- /**
189
- * Current WP theme
190
- *
191
- * @return false|string
192
- */
193
- public function getCurrentThemeName()
194
- {
195
- return wp_get_theme()->get('Name');
196
- }
197
-
198
- /**
199
- * Get active plugins list
200
- *
201
- * @return array
202
- */
203
- public function getActivePluginsList()
204
- {
205
- if (!function_exists('get_plugins')) {
206
- require_once ABSPATH . 'wp-admin/includes/plugin.php';
207
- }
208
-
209
- $allPlugins = get_plugins();
210
-
211
- $activePluginsNames = array_map(function ($path) use ($allPlugins) {
212
- return $allPlugins[$path]['Name'];
213
- }, get_option('active_plugins'));
214
-
215
- return $activePluginsNames;
216
- }
217
- }
1
+ <?php
2
+
3
+ namespace Analyst;
4
+
5
+ use Analyst\Contracts\AnalystContract;
6
+
7
+ /**
8
+ * Class Collector is a set of getters
9
+ * to retrieve some data from wp site
10
+ */
11
+ class Collector
12
+ {
13
+ /**
14
+ * @var AnalystContract
15
+ */
16
+ protected $sdk;
17
+
18
+ /**
19
+ * @var \WP_User
20
+ */
21
+ protected $user;
22
+
23
+ public function __construct(AnalystContract $sdk)
24
+ {
25
+ $this->sdk = $sdk;
26
+ }
27
+
28
+ /**
29
+ * Load current user into memory
30
+ */
31
+ public function loadCurrentUser()
32
+ {
33
+ $this->user = wp_get_current_user();
34
+ }
35
+
36
+ /**
37
+ * Get site url
38
+ *
39
+ * @return string
40
+ */
41
+ public function getSiteUrl()
42
+ {
43
+ return get_option('siteurl');
44
+ }
45
+
46
+ /**
47
+ * Get current user email
48
+ *
49
+ * @return string
50
+ */
51
+ public function getCurrentUserEmail()
52
+ {
53
+ return $this->user->user_email;
54
+ }
55
+
56
+ /**
57
+ * Get's email from general settings
58
+ *
59
+ * @return string
60
+ */
61
+ public function getGeneralEmailAddress()
62
+ {
63
+ return get_option('admin_email');
64
+ }
65
+
66
+ /**
67
+ * Is this user administrator
68
+ *
69
+ * @return bool
70
+ */
71
+ public function isUserAdministrator()
72
+ {
73
+ return in_array('administrator', $this->user->roles);
74
+ }
75
+
76
+ /**
77
+ * User name
78
+ *
79
+ * @return string
80
+ */
81
+ public function getCurrentUserName()
82
+ {
83
+ return $this->user ? $this->user->user_nicename : 'unknown';
84
+ }
85
+
86
+ /**
87
+ * WP version
88
+ *
89
+ * @return string
90
+ */
91
+ public function getWordPressVersion()
92
+ {
93
+ global $wp_version;
94
+
95
+ return $wp_version;
96
+ }
97
+
98
+ /**
99
+ * PHP version
100
+ *
101
+ * @return string
102
+ */
103
+ public function getPHPVersion()
104
+ {
105
+ return phpversion();
106
+ }
107
+
108
+ /**
109
+ * Resolves plugin information
110
+ *
111
+ * @param string $path Absolute path to plugin
112
+ * @return array
113
+ */
114
+ public function resolvePluginData($path)
115
+ {
116
+ if( !function_exists('get_plugin_data') ){
117
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
118
+ }
119
+
120
+ return get_plugin_data($path);
121
+ }
122
+
123
+ /**
124
+ * Get plugin name by path
125
+ *
126
+ * @param $path
127
+ * @return string
128
+ */
129
+ public function getPluginName($path)
130
+ {
131
+ $data = $this->resolvePluginData($path);
132
+
133
+ return $data['Name'];
134
+ }
135
+
136
+ /**
137
+ * Get plugin version
138
+ *
139
+ * @param $path
140
+ * @return string
141
+ */
142
+ public function getPluginVersion($path)
143
+ {
144
+ $data = $this->resolvePluginData($path);
145
+
146
+ return $data['Version'] ? $data['Version'] : null;
147
+ }
148
+
149
+ /**
150
+ * Get server ip
151
+ *
152
+ * @return string
153
+ */
154
+ public function getServerIp()
155
+ {
156
+ return $_SERVER['SERVER_ADDR'];
157
+ }
158
+
159
+ /**
160
+ * @return string
161
+ */
162
+ public function getSDKVersion()
163
+ {
164
+ return $this->sdk->version();
165
+ }
166
+
167
+ /**
168
+ * @return string
169
+ */
170
+ public function getMysqlVersion()
171
+ {
172
+ $conn = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
173
+
174
+ $version = mysqli_get_server_info($conn);
175
+
176
+ return $version ? $version : 'unknown';
177
+ }
178
+
179
+ /**
180
+ * @return string
181
+ */
182
+ public function getSiteLanguage()
183
+ {
184
+ return get_locale();
185
+ }
186
+
187
+
188
+ /**
189
+ * Current WP theme
190
+ *
191
+ * @return false|string
192
+ */
193
+ public function getCurrentThemeName()
194
+ {
195
+ return wp_get_theme()->get('Name');
196
+ }
197
+
198
+ /**
199
+ * Get active plugins list
200
+ *
201
+ * @return array
202
+ */
203
+ public function getActivePluginsList()
204
+ {
205
+ if (!function_exists('get_plugins')) {
206
+ require_once ABSPATH . 'wp-admin/includes/plugin.php';
207
+ }
208
+
209
+ $allPlugins = get_plugins();
210
+
211
+ $activePluginsNames = array_map(function ($path) use ($allPlugins) {
212
+ return $allPlugins[$path]['Name'];
213
+ }, get_option('active_plugins'));
214
+
215
+ return $activePluginsNames;
216
+ }
217
+ }
analyst/src/Core/AbstractFactory.php CHANGED
@@ -1,27 +1,27 @@
1
- <?php
2
-
3
- namespace Analyst\Core;
4
-
5
- abstract class AbstractFactory
6
- {
7
- /**
8
- * Unserialize to static::class instance
9
- *
10
- * @param $raw
11
- * @return static
12
- */
13
- protected static function unserialize($raw)
14
- {
15
- $instance = @unserialize($raw);
16
-
17
- $isProperObject = is_object($instance) && $instance instanceof static;
18
-
19
- // In case for some reason unserialized object is not
20
- // static::class we make sure it is static::class
21
- if (!$isProperObject) {
22
- $instance = new static();
23
- }
24
-
25
- return $instance;
26
- }
27
- }
1
+ <?php
2
+
3
+ namespace Analyst\Core;
4
+
5
+ abstract class AbstractFactory
6
+ {
7
+ /**
8
+ * Unserialize to static::class instance
9
+ *
10
+ * @param $raw
11
+ * @return static
12
+ */
13
+ protected static function unserialize($raw)
14
+ {
15
+ $instance = @unserialize($raw);
16
+
17
+ $isProperObject = is_object($instance) && $instance instanceof static;
18
+
19
+ // In case for some reason unserialized object is not
20
+ // static::class we make sure it is static::class
21
+ if (!$isProperObject) {
22
+ $instance = new static();
23
+ }
24
+
25
+ return $instance;
26
+ }
27
+ }
analyst/templates/forms/install.php CHANGED
@@ -1,113 +1,113 @@
1
- <div id="analyst-install-modal" class="analyst-modal" style="display: none" analyst-plugin-id="<?=$pluginToInstall?>">
2
- <div class="analyst-modal-content" style="width: 450px">
3
- <div class="analyst-disable-modal-mask" id="analyst-disable-install-modal-mask" style="display: none"></div>
4
- <div style="display: flex">
5
- <div class="analyst-install-image-block">
6
- <img src="<?=$shieldImage?>"/>
7
- </div>
8
- <div class="analyst-install-description-block">
9
- <strong class="analyst-modal-header">Stay on the safe side</strong>
10
- <p class="analyst-install-description-text">Receive our plugin’s alerts in
11
- case of <strong>critical security</strong> & feature
12
- updates and allow non-sensitive
13
- diagnostic tracking.</p>
14
- </div>
15
- </div>
16
- <div class="analyst-modal-def-top-padding">
17
- <button class="analyst-btn-success" id="analyst-install-action">Allow & Continue ></button>
18
- </div>
19
- <div class="analyst-modal-def-top-padding" id="analyst-permissions-block" style="display: none">
20
- <span>You’re granting these permissions:</span>
21
- <ul class="analyst-install-permissions-list">
22
- <li><strong>Your profile information</strong> (name and email) ​</li>
23
- <li><strong>Your site information</strong> (URL, WP version, PHP info, plugins & themes)</li>
24
- <li><strong>Plugin notices</strong> (updates, announcements, marketing, no spam)</li>
25
- <li><strong>Plugin events</strong> (activation, deactivation and uninstall)​</li>
26
- </ul>
27
- </div>
28
- <div class="analyst-install-footer analyst-modal-def-top-padding">
29
- <span class="analyst-action-text" id="analyst-permissions-toggle">Learn more</span>
30
- <span id="analyst-powered-by" style="display: none;">Powered by <a href="https://sellcodes.com/blog/wordpress-feedback-system-for-plugin-creators/?utm_source=optin_screen" target="_blank" class="analyst-link">Sellcodes.com</a></span>
31
- <span class="analyst-action-text analyst-install-modal-close" id="analyst-install-skip">Skip</span>
32
- </div>
33
- <div id="analyst-install-error" class="analyst-modal-def-top-padding" style="display: none; text-align: center">
34
- <span style="color: #dc3232; font-size: 16px">Service unavailable. Please try again later</span>
35
- </div>
36
- </div>
37
- </div>
38
-
39
- <script type="text/javascript">
40
- (function ($) {
41
-
42
- var installPlugin = function (pluginId) {
43
- var $error = $('#analyst-install-error')
44
-
45
- $error.hide()
46
-
47
- $.ajax({
48
- url: ajaxurl,
49
- method: 'POST',
50
- data: {
51
- action: 'analyst_install_' + pluginId
52
- },
53
- success: function (data) {
54
- if (data && !data.success) {
55
- //error
56
- $('#analyst-install-modal').hide()
57
-
58
- return
59
- }
60
-
61
- window.location.reload()
62
- },
63
- error: function () {
64
- $('#analyst-install-modal').hide()
65
- }
66
- }).done(function () {
67
- $('#analyst-disable-install-modal-mask').hide()
68
-
69
- $('#analyst-install-action')
70
- .attr('disabled', false)
71
- .text('Allow & Continue >')
72
- })
73
- }
74
-
75
- if ($('#analyst-install-modal').attr('analyst-plugin-id')) {
76
- $('#analyst-install-modal').show()
77
- }
78
-
79
-
80
- $('.analyst-install-modal-close').click(function () {
81
- $('#analyst-install-modal').hide()
82
- })
83
-
84
- $('#analyst-install-action').click(function () {
85
- var pluginId = $('#analyst-install-modal').attr('analyst-plugin-id')
86
-
87
- $('#analyst-install-action')
88
- .attr('disabled', true)
89
- .text('Please wait...')
90
-
91
- $('#analyst-disable-install-modal-mask').show()
92
-
93
- installPlugin(pluginId)
94
- })
95
-
96
- $('#analyst-permissions-toggle').click(function () {
97
- var isVisible = $('#analyst-permissions-block').toggle().is(':visible')
98
-
99
- isVisible ? $(this).text('Close section') : $(this).text('Learn more')
100
-
101
- var poweredBy = $('#analyst-powered-by')
102
- isVisible ? poweredBy.show() : poweredBy.hide()
103
- })
104
-
105
- $('#analyst-install-skip').click(function () {
106
- var pluginId = $('#analyst-install-modal').attr('analyst-plugin-id')
107
-
108
- $.post(ajaxurl, {action: 'analyst_skip_install_' + pluginId}).done(function () {
109
- $('#analyst-install-modal').hide()
110
- })
111
- })
112
- })(jQuery)
113
- </script>
1
+ <div id="analyst-install-modal" class="analyst-modal" style="display: none" analyst-plugin-id="<?=$pluginToInstall?>">
2
+ <div class="analyst-modal-content" style="width: 450px">
3
+ <div class="analyst-disable-modal-mask" id="analyst-disable-install-modal-mask" style="display: none"></div>
4
+ <div style="display: flex">
5
+ <div class="analyst-install-image-block">
6
+ <img src="<?=$shieldImage?>"/>
7
+ </div>
8
+ <div class="analyst-install-description-block">
9
+ <strong class="analyst-modal-header">Stay on the safe side</strong>
10
+ <p class="analyst-install-description-text">Receive our plugin’s alerts in
11
+ case of <strong>critical security</strong> & feature
12
+ updates and allow non-sensitive
13
+ diagnostic tracking.</p>
14
+ </div>
15
+ </div>
16
+ <div class="analyst-modal-def-top-padding">
17
+ <button class="analyst-btn-success" id="analyst-install-action">Allow & Continue ></button>
18
+ </div>
19
+ <div class="analyst-modal-def-top-padding" id="analyst-permissions-block" style="display: none">
20
+ <span>You’re granting these permissions:</span>
21
+ <ul class="analyst-install-permissions-list">
22
+ <li><strong>Your profile information</strong> (name and email) ​</li>
23
+ <li><strong>Your site information</strong> (URL, WP version, PHP info, plugins & themes)</li>
24
+ <li><strong>Plugin notices</strong> (updates, announcements, marketing, no spam)</li>
25
+ <li><strong>Plugin events</strong> (activation, deactivation and uninstall)​</li>
26
+ </ul>
27
+ </div>
28
+ <div class="analyst-install-footer analyst-modal-def-top-padding">
29
+ <span class="analyst-action-text" id="analyst-permissions-toggle">Learn more</span>
30
+ <span id="analyst-powered-by" style="display: none;">Powered by <a href="https://sellcodes.com/blog/wordpress-feedback-system-for-plugin-creators/?utm_source=optin_screen" target="_blank" class="analyst-link">Sellcodes.com</a></span>
31
+ <span class="analyst-action-text analyst-install-modal-close" id="analyst-install-skip">Skip</span>
32
+ </div>
33
+ <div id="analyst-install-error" class="analyst-modal-def-top-padding" style="display: none; text-align: center">
34
+ <span style="color: #dc3232; font-size: 16px">Service unavailable. Please try again later</span>
35
+ </div>
36
+ </div>
37
+ </div>
38
+
39
+ <script type="text/javascript">
40
+ (function ($) {
41
+
42
+ var installPlugin = function (pluginId) {
43
+ var $error = $('#analyst-install-error')
44
+
45
+ $error.hide()
46
+
47
+ $.ajax({
48
+ url: ajaxurl,
49
+ method: 'POST',
50
+ data: {
51
+ action: 'analyst_install_' + pluginId
52
+ },
53
+ success: function (data) {
54
+ if (data && !data.success) {
55
+ //error
56
+ $('#analyst-install-modal').hide()
57
+
58
+ return
59
+ }
60
+
61
+ window.location.reload()
62
+ },
63
+ error: function () {
64
+ $('#analyst-install-modal').hide()
65
+ }
66
+ }).done(function () {
67
+ $('#analyst-disable-install-modal-mask').hide()
68
+
69
+ $('#analyst-install-action')
70
+ .attr('disabled', false)
71
+ .text('Allow & Continue >')
72
+ })
73
+ }
74
+
75
+ if ($('#analyst-install-modal').attr('analyst-plugin-id')) {
76
+ $('#analyst-install-modal').show()
77
+ }
78
+
79
+
80
+ $('.analyst-install-modal-close').click(function () {
81
+ $('#analyst-install-modal').hide()
82
+ })
83
+
84
+ $('#analyst-install-action').click(function () {
85
+ var pluginId = $('#analyst-install-modal').attr('analyst-plugin-id')
86
+
87
+ $('#analyst-install-action')
88
+ .attr('disabled', true)
89
+ .text('Please wait...')
90
+
91
+ $('#analyst-disable-install-modal-mask').show()
92
+
93
+ installPlugin(pluginId)
94
+ })
95
+
96
+ $('#analyst-permissions-toggle').click(function () {
97
+ var isVisible = $('#analyst-permissions-block').toggle().is(':visible')
98
+
99
+ isVisible ? $(this).text('Close section') : $(this).text('Learn more')
100
+
101
+ var poweredBy = $('#analyst-powered-by')
102
+ isVisible ? poweredBy.show() : poweredBy.hide()
103
+ })
104
+
105
+ $('#analyst-install-skip').click(function () {
106
+ var pluginId = $('#analyst-install-modal').attr('analyst-plugin-id')
107
+
108
+ $.post(ajaxurl, {action: 'analyst_skip_install_' + pluginId}).done(function () {
109
+ $('#analyst-install-modal').hide()
110
+ })
111
+ })
112
+ })(jQuery)
113
+ </script>
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,4983 +1,4983 @@
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'),
23
- url(fonts/helveticaneue-light.woff) format('woff'),
24
- url(fonts/helveticaneue-light.ttf) format('truetype'),
25
- url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
26
- font-weight: 400;
27
- font-style: normal;
28
- }
29
-
30
- body {
31
- margin: 0;
32
- padding: 0;
33
- }
34
-
35
- /*Tab 1*/
36
- .tab1 ul.plus_icn_listing li .custom,
37
- .tab1 ul.plus_icn_listing li .sfsicls_email,
38
- .tab1 ul.plus_icn_listing li .sfsicls_facebook,
39
- .tab1 ul.plus_icn_listing li .sfsicls_ggle_pls,
40
- .tab1 ul.plus_icn_listing li .sfsicls_instagram,
41
- .tab1 ul.plus_icn_listing li .sfsicls_telegram,
42
- .tab1 ul.plus_icn_listing li .sfsicls_ok,
43
- .tab1 ul.plus_icn_listing li .sfsicls_vk,
44
- .tab1 ul.plus_icn_listing li .sfsicls_weibo,
45
- .tab1 ul.plus_icn_listing li .sfsicls_houzz,
46
- .tab1 ul.plus_icn_listing li .sfsicls_linkdin,
47
- .tab1 ul.plus_icn_listing li .sfsicls_pinterest,
48
- .tab1 ul.plus_icn_listing li .sfsicls_rs_s,
49
- .tab1 ul.plus_icn_listing li .sfsicls_share,
50
- .tab1 ul.plus_icn_listing li .sfsicls_twt,
51
- .tab1 ul.plus_icn_listing li .sfsicls_utube,
52
- .tab1 ul.plus_icn_listing li .sfsicls_wechat {
53
- background: url(../images/tab_1_icn_list.png) no-repeat;
54
- float: left;
55
- padding: 0 0 0 59px;
56
- margin: 0 0 0 17px;
57
- height: 52px;
58
- line-height: 51px;
59
- font-family: helveticaregular;
60
- font-size: 22px;
61
- }
62
-
63
- .tab1 ul.plus_icn_listing li .sfsicls_wechat,
64
- .tab1 ul.sfsi_plus_mobile_icon_listing li .sfsicls_wechat {
65
- background-image: url('../images/icons_theme/default/default_wechat.png');
66
- -webkit-background-size: contain;
67
- -moz-background-size: contain;
68
- -o-background-size: contain;
69
- background-size: contain;
70
- }
71
-
72
- .tab2 .row h2.sfsicls_wechat {
73
- background-image: url('../images/icons_theme/default/default_wechat.png');
74
- }
75
-
76
- .tab1 ul.plus_icn_listing li .sfsicls_rs_s {
77
- background-position: 0 0;
78
- color: #f7941d;
79
- }
80
-
81
- .tab1 ul.plus_icn_listing li .sfsicls_email {
82
- background-position: 0 -73px;
83
- color: #d1c800;
84
- }
85
-
86
- .tab1 ul.plus_icn_listing li .sfsicls_facebook {
87
- background-position: 0 -145px;
88
- color: #004088;
89
- }
90
-
91
- .tab1 ul.plus_icn_listing li .sfsicls_twt {
92
- background-position: 0 -221px;
93
- color: #00abe3;
94
- }
95
-
96
- .tab1 ul.plus_icn_listing li .sfsicls_ggle_pls {
97
- background-position: 0 -295px;
98
- color: #444749;
99
- }
100
-
101
- .tab1 ul.plus_icn_listing li .sfsicls_share {
102
- background-position: 0 -372px;
103
- color: #ef4746;
104
- }
105
-
106
- .tab1 ul.plus_icn_listing li .sfsicls_utube {
107
- background-position: 0 -448px;
108
- color: #f07963;
109
- }
110
-
111
- .tab1 ul.plus_icn_listing li .sfsicls_linkdin {
112
- background-position: 0 -548px;
113
- color: #1e88c9;
114
- }
115
-
116
- .tab1 ul.plus_icn_listing li .sfsicls_pinterest {
117
- background-position: 0 -623px;
118
- color: #f15f5d;
119
- }
120
-
121
- .tab1 ul.plus_icn_listing li .sfsicls_instagram {
122
- background-position: 0 -781px;
123
- color: #369;
124
- }
125
-
126
- .tab1 ul.plus_icn_listing li .sfsicls_telegram {
127
- background-position: 0 -1889px;
128
- color: #369;
129
- }
130
-
131
- .tab1 ul.plus_icn_listing li .sfsicls_vk {
132
- background-position: 0 -1968px;
133
- color: #369;
134
- }
135
-
136
- .tab1 ul.plus_icn_listing li .sfsicls_ok {
137
- background-position: 0 -1810px;
138
- color: #369;
139
- }
140
-
141
- .sfsicls_wechat {
142
- background-image: url('../images/icons_theme/default/default_wechat.png');
143
- -webkit-background-size: contain;
144
- -moz-background-size: contain;
145
- -o-background-size: contain;
146
- background-size: contain;
147
- }
148
-
149
- .tab1 ul.plus_icn_listing li .sfsicls_weibo {
150
- background-position: 0 -2046px;
151
- color: #369;
152
- }
153
-
154
- .tab1 ul.sfsi_premium_mobile_icon_listing li .sfsicls_ok {
155
- background-position: 0 -1810px;
156
- color: #369;
157
- }
158
-
159
- .tab1 ul.plus_icn_listing li .sfsicls_houzz {
160
- background-position: 0 -939px;
161
- color: #369;
162
- }
163
-
164
- .tab1 ul.plus_icn_listing li .custom {
165
- background-position: 0 -702px;
166
- color: #5a6570;
167
- }
168
-
169
- .tab1 ul.plus_icn_listing li .sfsiplus_right_info {
170
- width: 70%;
171
- float: right;
172
- font-family: helveticaregular;
173
- margin-right: 13px;
174
- }
175
-
176
- ul.plus_icn_listing li .sfsiplus_right_info a {
177
- text-decoration: underline;
178
- color: #a4a9ad;
179
- font-size: 16px;
180
- }
181
-
182
- ul.sfsiplus_icn_listing8 li .sfsiplus_right_info a {
183
- text-decoration: underline;
184
- color: #a4a9ad;
185
- font-size: 20px;
186
- }
187
-
188
- .tab1 .tab_2_sav {
189
- padding-top: 30px;
190
- }
191
-
192
- /*Tab 2*/
193
- .tab2 .row h2.sfsicls_email,
194
- .tab2 .row h2.sfsicls_facebook,
195
- .tab2 .row h2.sfsicls_ggle_pls,
196
- .tab2 .row h2.sfsicls_instagram,
197
- .tab2 .row h2.sfsicls_houzz,
198
- .tab2 .row h2.sfsicls_linkdin,
199
- .tab2 .row h2.sfsicls_pinterest,
200
- .tab2 .row h2.sfsicls_rs_s,
201
- .tab2 .row h2.sfsicls_share,
202
- .tab2 .row h2.sfsicls_twt,
203
- .tab2 .row h2.sfsicls_utube,
204
- .tab2 .row h2.sfsicls_snapchat,
205
- .tab2 .row h2.sfsicls_whatsapp,
206
- .tab2 .row h2.sfsicls_skype,
207
- .tab2 .row h2.sfsicls_vimeo,
208
- .tab2 .row h2.sfsicls_soundcloud,
209
- .tab2 .row h2.sfsicls_yummly,
210
- .tab2 .row h2.sfsicls_flickr,
211
- .tab2 .row h2.sfsicls_reddit,
212
- .tab2 .row h2.sfsicls_tumblr,
213
- .tab2 .row h2.sfsicls_fbmessenger,
214
- .tab2 .row h2.sfsicls_mix,
215
- .tab2 .row h2.sfsicls_ok,
216
- .tab2 .row h2.sfsicls_telegram,
217
- .tab2 .row h2.sfsicls_vk,
218
- .tab2 .row h2.sfsicls_weibo,
219
- .tab2 .row h2.sfsicls_wechat,
220
- .tab2 .row h2.sfsicls_xing {
221
- background: url(../images/tab_1_icn_list.png) no-repeat;
222
- padding: 10px 0 0 70px;
223
- margin: 15px 0 7px 21px;
224
- height: 52px;
225
- line-height: 32px;
226
- font-family: helveticaregular;
227
- font-size: 22px;
228
-
229
- }
230
-
231
- .tab2 .row h2.sfsicls_rs_s {
232
- background-position: 0 0;
233
- color: #f7941d;
234
- }
235
-
236
- .tab2 .row h2.sfsicls_email {
237
- background-position: 0 -71px;
238
- color: #d1c800;
239
- }
240
-
241
- .tab2 .row h2.sfsicls_facebook {
242
- background-position: 0 -145px;
243
- color: #004088;
244
- }
245
-
246
- .tab2 .row h2.sfsicls_twt {
247
- background-position: 0 -221px;
248
- color: #00abe3;
249
- }
250
-
251
- .tab2 .row h2.sfsicls_ggle_pls {
252
- background-position: 0 -295px;
253
- color: #444749;
254
- }
255
-
256
- .tab2 .row h2.sfsicls_share {
257
- background-position: 0 -372px;
258
- color: #ef4746;
259
- }
260
-
261
- .tab2 .row h2.sfsicls_utube {
262
- background-position: 0 -448px;
263
- color: #f07963;
264
- }
265
-
266
- .tab2 .row h2.sfsicls_linkdin {
267
- background-position: 0 -548px;
268
- color: #1e88c9;
269
- }
270
-
271
- .tab2 .row h2.sfsicls_pinterest {
272
- background-position: 0 -623px;
273
- color: #f15f5d;
274
- }
275
-
276
- .tab2 .row h2.sfsicls_instagram {
277
- background-position: 0 -781px;
278
- color: #369;
279
- }
280
-
281
- .tab2 .row h2.sfsicls_houzz {
282
- background-position: 0 -939px;
283
- color: #7BC043;
284
- }
285
-
286
- .tab2 .row h2.sfsicls_snapchat {
287
- background-position: 0 -1019px;
288
- color: #369;
289
- }
290
-
291
- .tab2 .row h2.sfsicls_whatsapp {
292
- background-position: 0 -1099px;
293
- color: #369;
294
- }
295
-
296
- .tab2 .row h2.sfsicls_skype {
297
- background-position: 0 -1179px;
298
- color: #369;
299
- }
300
-
301
- .tab2 .row h2.sfsicls_vimeo {
302
- background-position: 0 -1257px;
303
- color: #369;
304
- }
305
-
306
- .tab2 .row h2.sfsicls_soundcloud {
307
- background-position: 0 -1336px;
308
- color: #369;
309
- }
310
-
311
- .tab2 .row h2.sfsicls_yummly {
312
- background-position: 0 -1415px;
313
- color: #369;
314
- }
315
-
316
- .tab2 .row h2.sfsicls_flickr {
317
- background-position: 0 -1494px;
318
- color: #369;
319
- }
320
-
321
- .tab2 .row h2.sfsicls_reddit {
322
- background-position: 0 -1573px;
323
- color: #369;
324
- }
325
-
326
- .tab2 .row h2.sfsicls_tumblr {
327
- background-position: 0 -1653px;
328
- color: #369;
329
- }
330
-
331
- .tab2 .row h2.sfsicls_fbmessenger {
332
- background-position: 0 -2206px;
333
- }
334
-
335
- .tab2 .row h2.sfsicls_mix {
336
- background-position: 0 -1732px;
337
- }
338
-
339
- .tab2 .row h2.sfsicls_ok {
340
- background-position: 0 -1810px;
341
- ;
342
- color: #DC752B;
343
- }
344
-
345
- .tab2 .row h2.sfsicls_telegram {
346
- background-position: 0 -1889px;
347
- color: #2E91BC;
348
- }
349
-
350
- .tab2 .row h2.sfsicls_vk {
351
- background-position: 0 -1968px;
352
- color: #4E77A2;
353
- }
354
-
355
- .tab2 .row h2.sfsicls_wechat {
356
- background-position: 0 -2126px;
357
- color: #56AD33;
358
- }
359
-
360
- .tab2 .row h2.sfsicls_weibo {
361
- background-position: 0 -2046px;
362
- color: #B93524;
363
- }
364
-
365
- .tab2 .row h2.sfsicls_xing {
366
- background-position: 0 -2127px;
367
- }
368
-
369
- .tab2 .inr_cont {
370
- margin: 0 0 0px 94px;
371
- }
372
-
373
- /*replace*/
374
-
375
- .tab2 .radio_section.fb_url.cus_link.instagram_space>ul {
376
- float: left;
377
- margin: 0 !important;
378
- width: 100%;
379
- }
380
-
381
- .tab2 .radio_section.fb_url.cus_link.instagram_space ul li {
382
- float: left;
383
- margin: 10px 0 20px;
384
- width: 100%;
385
- }
386
-
387
- .tab2 .sfsi_plus_pageurl_type {
388
- display: inline-block;
389
- float: none !important;
390
- vertical-align: middle;
391
- width: 100%;
392
- }
393
-
394
- .tab2 .sfsi_plus_pageurl_type .radio {
395
- display: inline-block;
396
- float: none !important;
397
- vertical-align: middle;
398
- }
399
-
400
- .tab2 .sfsi_plus_pageurl_type>label {
401
- float: none !important;
402
- width: auto !important;
403
- }
404
-
405
- .tab2 .sfsi_plus_whatsapp_share_page_container {
406
- margin-left: 170px;
407
- }
408
-
409
- .tab2 .sfsi_plus_whatsapp_share_page_container label {
410
- float: left !important;
411
- font-family: "helveticaneue-light";
412
- font-size: 16px !important;
413
- margin: 6px 0 0 19px !important;
414
- width: 100% !important;
415
- }
416
-
417
- .tab2 .sfsi_plus_email_icons_content {
418
- display: inline-block;
419
- float: none;
420
- margin: 0 !important;
421
- vertical-align: top;
422
- width: 85%;
423
- }
424
-
425
- .tab2 .sfsi_plus_email_icons_content textarea.add_txt {
426
- margin: 0 !important;
427
- }
428
-
429
- .tab2 .sfsi_plus_email_icons_content p {
430
- width: 100%;
431
- }
432
-
433
- ul.tab_2_email_sec .sf_arow {
434
- width: 52px;
435
- height: 52px;
436
- float: left;
437
- background: url(../images/sf_arow_icn.png) no-repeat;
438
- margin: 0 0px 0 6px;
439
- }
440
-
441
- ul.tab_2_email_sec .email_icn {
442
- background: url(../images/tab_1_icn_list.png) 0 -71px no-repeat;
443
- width: 60px;
444
- height: 52px;
445
- float: left;
446
- margin: 0 0 0 5px;
447
- }
448
-
449
- ul.tab_2_email_sec .subscribe_icn {
450
- background: url(../images/tab_1_icn_list.png) 0 -860px no-repeat;
451
- width: 60px;
452
- height: 52px;
453
- float: left;
454
- margin: 0 0 0 5px;
455
- }
456
-
457
- ul.tab_2_email_sec li .radio {
458
- float: left;
459
- margin: 8px 0 0;
460
- }
461
-
462
- .row ul.tab_2_email_sec li label {
463
- margin: 13px 0 0 7px;
464
- font-size: 16px;
465
- float: left;
466
- width: 160px;
467
- }
468
-
469
- .row ul.tab_2_email_sec li label span {
470
- font-size: 15px;
471
- color: #808080;
472
- width: 100%;
473
- float: left;
474
- }
475
-
476
- .tab2 .sfsi_plus_whatsapp_number_container {
477
- display: inline-block;
478
- vertical-align: middle;
479
- width: auto;
480
- }
481
-
482
- .tab2 .sfsi_plus_whatsapp_number_container label {
483
- font-family: "helveticaneue-light";
484
- font-size: 16px !important;
485
- margin: 0 0 0 20px !important;
486
- width: 100% !important;
487
- float: left !important;
488
- }
489
-
490
- .tab2 .radio_section.fb_url.twt_fld_2 p {
491
- width: 60%;
492
- float: left;
493
- margin-left: 237px;
494
- }
495
-
496
- .tab2 ul.sfsi_plus_email_functions_container,
497
- .tab2 ul.sfsi_plus_email_functions_container li {
498
- width: 100%;
499
- float: left;
500
- }
501
-
502
- .tab2 ul.sfsi_plus_email_functions_container {
503
- margin: 12px 0 18px 0;
504
- }
505
-
506
- .tab2 ul.sfsi_plus_email_functions_container li {
507
- margin-bottom: 10px;
508
- }
509
-
510
- .tab2 ul.sfsi_plus_email_functions_container li .sfsiplusicnsdvwrp,
511
- .tab2 ul.sfsi_plus_email_functions_container li p {
512
- width: auto;
513
- float: left;
514
- }
515
-
516
- .tab2 ul.sfsi_plus_email_functions_container li .sfsiplusicnsdvwrp {
517
- margin-right: 10px;
518
- }
519
-
520
- .tab2 ul.sfsi_plus_email_functions_container li p {
521
- width: 90% !important;
522
- padding-top: 5px !important;
523
- }
524
-
525
- .tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field {
526
- width: 100%;
527
- float: left;
528
- margin: 10px 10px 10px 50px;
529
- }
530
-
531
- .tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field label,
532
- .tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field input {
533
- width: 110px;
534
- float: none;
535
- display: inline-block;
536
- vertical-align: middle;
537
- }
538
-
539
- .tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field input {
540
- width: 380px;
541
- padding: 10px;
542
- }
543
-
544
- /*Tab 3*/
545
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_1,
546
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_10,
547
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_11,
548
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_2,
549
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_3,
550
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_4,
551
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_5,
552
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_6,
553
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_7,
554
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_8,
555
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_9,
556
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_1,
557
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_10,
558
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_11,
559
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_2,
560
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_3,
561
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_4,
562
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_5,
563
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_6,
564
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_7,
565
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_8,
566
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_9,
567
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_1,
568
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_10,
569
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_11,
570
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_2,
571
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_3,
572
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_4,
573
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_5,
574
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_6,
575
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_7,
576
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_8,
577
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_9,
578
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_1,
579
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_10,
580
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_11,
581
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_2,
582
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_3,
583
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_4,
584
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_5,
585
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_6,
586
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_7,
587
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_8,
588
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_9,
589
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_1,
590
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_10,
591
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_11,
592
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_2,
593
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_3,
594
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_4,
595
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_5,
596
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_6,
597
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_7,
598
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_8,
599
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_9,
600
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_1,
601
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_10,
602
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_11,
603
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_2,
604
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_3,
605
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_4,
606
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_5,
607
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_6,
608
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_7,
609
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_8,
610
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_9,
611
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_1,
612
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_10,
613
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_11,
614
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_2,
615
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_3,
616
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_4,
617
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_5,
618
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_6,
619
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_7,
620
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_8,
621
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_9,
622
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_1,
623
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_10,
624
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_11,
625
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_22,
626
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_2,
627
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_3,
628
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_4,
629
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_5,
630
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_6,
631
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_7,
632
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_8,
633
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_9,
634
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_1,
635
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_10,
636
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_11,
637
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_22,
638
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_2,
639
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_3,
640
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_4,
641
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_5,
642
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_6,
643
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_7,
644
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_8,
645
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_9,
646
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_1,
647
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_10,
648
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_11,
649
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_22,
650
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_2,
651
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_3,
652
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_4,
653
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_5,
654
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_6,
655
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_7,
656
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_8,
657
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_9,
658
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_1,
659
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_10,
660
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_11,
661
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_22,
662
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_2,
663
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_3,
664
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_4,
665
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_5,
666
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_6,
667
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_7,
668
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_8,
669
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_9,
670
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_1,
671
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_10,
672
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_11,
673
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_22,
674
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_2,
675
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_3,
676
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_4,
677
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_5,
678
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_6,
679
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_7,
680
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_8,
681
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_9,
682
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_1,
683
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_10,
684
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_11,
685
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_22,
686
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_2,
687
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_3,
688
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_4,
689
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_5,
690
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_6,
691
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_7,
692
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_8,
693
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_9,
694
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_1,
695
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_10,
696
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_11,
697
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_2,
698
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_3,
699
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_4,
700
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_5,
701
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_6,
702
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_7,
703
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_8,
704
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_9,
705
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_1,
706
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_10,
707
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_11,
708
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_2,
709
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_3,
710
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_4,
711
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_5,
712
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_6,
713
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_7,
714
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_8,
715
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_9,
716
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_1,
717
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_10,
718
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_11,
719
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_2,
720
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_3,
721
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_4,
722
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_5,
723
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_6,
724
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_7,
725
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_8,
726
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_9,
727
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_1,
728
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_2,
729
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_3,
730
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_4,
731
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_5,
732
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_6,
733
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_7,
734
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_8,
735
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_9,
736
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_10,
737
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_11,
738
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_22,
739
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_22,
740
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_22,
741
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_22,
742
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_22,
743
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_22,
744
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_22,
745
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_22,
746
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_22,
747
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_22,
748
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_22,
749
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_23,
750
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_24,
751
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_25,
752
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_23,
753
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_23,
754
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_23,
755
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_23,
756
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_23,
757
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_23,
758
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_23,
759
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_23,
760
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_23,
761
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_23,
762
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_23,
763
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_23,
764
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_23,
765
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_23,
766
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_23,
767
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_23,
768
-
769
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_24,
770
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_24,
771
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_24,
772
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_24,
773
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_24,
774
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_24,
775
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_24,
776
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_24,
777
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_24,
778
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_24,
779
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_24,
780
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_24,
781
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_24,
782
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_24,
783
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_24,
784
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_24,
785
-
786
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_25,
787
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_25,
788
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_25,
789
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_25,
790
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_25,
791
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_25,
792
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_25,
793
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_25,
794
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_25,
795
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_25,
796
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_25,
797
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_25,
798
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_25,
799
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_25,
800
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_25,
801
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_25,
802
-
803
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_26,
804
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_26,
805
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_26,
806
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_26,
807
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_26,
808
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_26,
809
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_26,
810
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_26,
811
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_26,
812
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_26,
813
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_26,
814
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_26,
815
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_26,
816
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_26,
817
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_26,
818
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_26,
819
- .sfsiplus_icns_tab_3 .sfsiplus_row_17_26 {
820
- background: url(../images/tab_3_icns.png) no-repeat;
821
- width: 53px;
822
- height: 52px;
823
- float: left;
824
- margin: 0 4px 0 0;
825
- }
826
-
827
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_1 {
828
- background-position: -1px 0;
829
- }
830
-
831
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_2 {
832
- background-position: -60px 0;
833
- }
834
-
835
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_3 {
836
- background-position: -118px 0;
837
- }
838
-
839
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_4 {
840
- background-position: -176px 0;
841
- }
842
-
843
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_5 {
844
- background-position: -235px 0;
845
- }
846
-
847
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_6 {
848
- background-position: -293px 0;
849
- }
850
-
851
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_7 {
852
- background-position: -350px 0;
853
- }
854
-
855
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_8 {
856
- background-position: -409px 0;
857
- }
858
-
859
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_9 {
860
- background-position: -467px 0;
861
- }
862
-
863
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_10 {
864
- background-position: -526px 0;
865
- }
866
-
867
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_11 {
868
- background-position: -711px 0;
869
- }
870
-
871
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_22 {
872
- background-position: -773px 0;
873
- }
874
-
875
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_23 {
876
- background-position: -838px 0;
877
- }
878
-
879
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_24 {
880
- background-position: -909px 0;
881
- }
882
-
883
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_25 {
884
- background-position: -977px 0;
885
- }
886
-
887
- .sfsiplus_icns_tab_3 .sfsiplus_row_1_26 {
888
- background-position: -1045px 0;
889
- }
890
-
891
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_1 {
892
- background-position: 0 -74px;
893
- }
894
-
895
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_2 {
896
- background-position: -60px -74px;
897
- }
898
-
899
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_3 {
900
- background-position: -118px -74px;
901
- }
902
-
903
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_4 {
904
- background-position: -176px -74px;
905
- }
906
-
907
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_5 {
908
- background-position: -235px -74px;
909
- }
910
-
911
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_6 {
912
- background-position: -293px -74px;
913
- }
914
-
915
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_7 {
916
- background-position: -350px -74px;
917
- }
918
-
919
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_8 {
920
- background-position: -409px -74px;
921
- }
922
-
923
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_9 {
924
- background-position: -467px -74px;
925
- }
926
-
927
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_10 {
928
- background-position: -526px -74px;
929
- }
930
-
931
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_11 {
932
- background-position: -711px -74px;
933
- }
934
-
935
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_22 {
936
- background-position: -773px -74px;
937
- }
938
-
939
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_23 {
940
- background-position: -838px -74px;
941
- }
942
-
943
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_24 {
944
- background-position: -909px -74px;
945
- }
946
-
947
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_25 {
948
- background-position: -977px -74px;
949
- }
950
-
951
- .sfsiplus_icns_tab_3 .sfsiplus_row_2_26 {
952
- background-position: -1045px 0;
953
- }
954
-
955
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_1 {
956
- background-position: 0 -146px;
957
- }
958
-
959
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_2 {
960
- background-position: -60px -146px;
961
- }
962
-
963
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_3 {
964
- background-position: -118px -146px;
965
- }
966
-
967
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_4 {
968
- background-position: -176px -146px;
969
- }
970
-
971
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_5 {
972
- background-position: -235px -146px;
973
- }
974
-
975
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_6 {
976
- background-position: -293px -146px;
977
- }
978
-
979
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_7 {
980
- background-position: -350px -146px;
981
- }
982
-
983
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_8 {
984
- background-position: -409px -146px;
985
- }
986
-
987
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_9 {
988
- background-position: -467px -146px;
989
- }
990
-
991
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_10 {
992
- background-position: -526px -146px;
993
- }
994
-
995
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_11 {
996
- background-position: -711px -147px;
997
- }
998
-
999
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_22 {
1000
- background-position: -773px -147px;
1001
- }
1002
-
1003
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_23 {
1004
- background-position: -838px -147px;
1005
- }
1006
-
1007
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_24 {
1008
- background-position: -909px -147px;
1009
- }
1010
-
1011
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_25 {
1012
- background-position: -977px -147px;
1013
- }
1014
-
1015
- .sfsiplus_icns_tab_3 .sfsiplus_row_3_26 {
1016
- background-position: -1045px 0;
1017
- }
1018
-
1019
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_1 {
1020
- background-position: 0 -222px;
1021
- }
1022
-
1023
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_2 {
1024
- background-position: -60px -222px;
1025
- }
1026
-
1027
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_3 {
1028
- background-position: -118px -222px;
1029
- }
1030
-
1031
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_4 {
1032
- background-position: -176px -222px;
1033
- }
1034
-
1035
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_5 {
1036
- background-position: -235px -222px;
1037
- }
1038
-
1039
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_6 {
1040
- background-position: -293px -222px;
1041
- }
1042
-
1043
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_7 {
1044
- background-position: -350px -222px;
1045
- }
1046
-
1047
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_8 {
1048
- background-position: -409px -222px;
1049
- }
1050
-
1051
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_9 {
1052
- background-position: -467px -222px;
1053
- }
1054
-
1055
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_10 {
1056
- background-position: -526px -222px;
1057
- }
1058
-
1059
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_11 {
1060
- background-position: -711px -222px;
1061
- }
1062
-
1063
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_22 {
1064
- background-position: -773px -222px;
1065
- }
1066
-
1067
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_23 {
1068
- background-position: -838px -222px;
1069
- }
1070
-
1071
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_24 {
1072
- background-position: -909px -222px;
1073
- }
1074
-
1075
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_25 {
1076
- background-position: -977px -222px;
1077
- }
1078
-
1079
- .sfsiplus_icns_tab_3 .sfsiplus_row_4_26 {
1080
- background-position: -1045px 0;
1081
- }
1082
-
1083
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_1 {
1084
- background-position: 0 -296px;
1085
- }
1086
-
1087
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_2 {
1088
- background-position: -60px -296px;
1089
- }
1090
-
1091
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_3 {
1092
- background-position: -118px -296px;
1093
- }
1094
-
1095
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_4 {
1096
- background-position: -176px -296px;
1097
- }
1098
-
1099
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_5 {
1100
- background-position: -235px -296px;
1101
- }
1102
-
1103
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_6 {
1104
- background-position: -293px -296px;
1105
- }
1106
-
1107
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_7 {
1108
- background-position: -350px -296px;
1109
- }
1110
-
1111
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_8 {
1112
- background-position: -409px -296px;
1113
- }
1114
-
1115
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_9 {
1116
- background-position: -467px -296px;
1117
- }
1118
-
1119
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_10 {
1120
- background-position: -526px -296px;
1121
- }
1122
-
1123
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_11 {
1124
- background-position: -711px -296px;
1125
- }
1126
-
1127
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_22 {
1128
- background-position: -773px -296px;
1129
- }
1130
-
1131
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_23 {
1132
- background-position: -838px -296px;
1133
- }
1134
-
1135
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_24 {
1136
- background-position: -909px -296px;
1137
- }
1138
-
1139
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_25 {
1140
- background-position: -977px -296px;
1141
- }
1142
-
1143
- .sfsiplus_icns_tab_3 .sfsiplus_row_5_26 {
1144
- background-position: -1045px 0;
1145
- }
1146
-
1147
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_1 {
1148
- background-position: 0 -370px;
1149
- }
1150
-
1151
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_2 {
1152
- background-position: -60px -370px;
1153
- }
1154
-
1155
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_3 {
1156
- background-position: -118px -370px;
1157
- }
1158
-
1159
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_4 {
1160
- background-position: -176px -370px;
1161
- }
1162
-
1163
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_5 {
1164
- background-position: -235px -370px;
1165
- }
1166
-
1167
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_6 {
1168
- background-position: -293px -370px;
1169
- }
1170
-
1171
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_7 {
1172
- background-position: -350px -370px;
1173
- }
1174
-
1175
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_8 {
1176
- background-position: -409px -370px;
1177
- }
1178
-
1179
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_9 {
1180
- background-position: -468px -370px;
1181
- }
1182
-
1183
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_10 {
1184
- background-position: -526px -370px;
1185
- }
1186
-
1187
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_11 {
1188
- background-position: -711px -370px;
1189
- }
1190
-
1191
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_22 {
1192
- background-position: -773px -370px;
1193
- }
1194
-
1195
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_23 {
1196
- background-position: -838px -370px;
1197
- }
1198
-
1199
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_24 {
1200
- background-position: -909px -370px;
1201
- }
1202
-
1203
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_25 {
1204
- background-position: -977px -370px;
1205
- }
1206
-
1207
- .sfsiplus_icns_tab_3 .sfsiplus_row_6_26 {
1208
- background-position: -1045px 0;
1209
- }
1210
-
1211
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_1 {
1212
- background-position: 0 -444px;
1213
- }
1214
-
1215
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_2 {
1216
- background-position: -60px -444px;
1217
- }
1218
-
1219
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_3 {
1220
- background-position: -118px -444px;
1221
- }
1222
-
1223
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_4 {
1224
- background-position: -176px -444px;
1225
- }
1226
-
1227
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_5 {
1228
- background-position: -235px -444px;
1229
- }
1230
-
1231
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_6 {
1232
- background-position: -293px -444px;
1233
- }
1234
-
1235
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_7 {
1236
- background-position: -350px -444px;
1237
- }
1238
-
1239
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_8 {
1240
- background-position: -409px -444px;
1241
- }
1242
-
1243
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_9 {
1244
- background-position: -466px -444px;
1245
- }
1246
-
1247
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_10 {
1248
- background-position: -526px -444px;
1249
- }
1250
-
1251
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_11 {
1252
- background-position: -711px -444px;
1253
- }
1254
-
1255
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_22 {
1256
- background-position: -773px -444px;
1257
- }
1258
-
1259
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_23 {
1260
- background-position: -838px -444px;
1261
- }
1262
-
1263
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_24 {
1264
- background-position: -909px -444px;
1265
- }
1266
-
1267
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_25 {
1268
- background-position: -977px -444px;
1269
- }
1270
-
1271
- .sfsiplus_icns_tab_3 .sfsiplus_row_7_26 {
1272
- background-position: -1045px 0;
1273
- }
1274
-
1275
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_1 {
1276
- background-position: 0 -518px;
1277
- }
1278
-
1279
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_2 {
1280
- background-position: -60px -518px;
1281
- }
1282
-
1283
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_3 {
1284
- background-position: -118px -518px;
1285
- }
1286
-
1287
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_4 {
1288
- background-position: -176px -518px;
1289
- }
1290
-
1291
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_5 {
1292
- background-position: -235px -518px;
1293
- }
1294
-
1295
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_6 {
1296
- background-position: -293px -518px;
1297
- }
1298
-
1299
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_7 {
1300
- background-position: -350px -518px;
1301
- }
1302
-
1303
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_8 {
1304
- background-position: -409px -518px;
1305
- }
1306
-
1307
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_9 {
1308
- background-position: -467px -518px;
1309
- }
1310
-
1311
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_10 {
1312
- background-position: -526px -518px;
1313
- }
1314
-
1315
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_11 {
1316
- background-position: -711px -518px;
1317
- }
1318
-
1319
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_22 {
1320
- background-position: -773px -518px;
1321
- }
1322
-
1323
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_23 {
1324
- background-position: -838px -518px;
1325
- }
1326
-
1327
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_24 {
1328
- background-position: -909px -518px;
1329
- }
1330
-
1331
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_25 {
1332
- background-position: -977px -518px;
1333
- }
1334
-
1335
- .sfsiplus_icns_tab_3 .sfsiplus_row_8_26 {
1336
- background-position: -1045px 0;
1337
- }
1338
-
1339
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_1 {
1340
- background-position: 0 -592px;
1341
- }
1342
-
1343
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_2 {
1344
- background-position: -60px -592px;
1345
- }
1346
-
1347
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_3 {
1348
- background-position: -118px -592px;
1349
- }
1350
-
1351
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_4 {
1352
- background-position: -176px -592px;
1353
- }
1354
-
1355
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_5 {
1356
- background-position: -235px -592px;
1357
- }
1358
-
1359
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_6 {
1360
- background-position: -293px -592px;
1361
- }
1362
-
1363
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_7 {
1364
- background-position: -350px -592px;
1365
- }
1366
-
1367
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_8 {
1368
- background-position: -409px -592px;
1369
- }
1370
-
1371
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_9 {
1372
- background-position: -467px -592px;
1373
- }
1374
-
1375
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_10 {
1376
- background-position: -526px -592px;
1377
- }
1378
-
1379
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_11 {
1380
- background-position: -711px -592px;
1381
- }
1382
-
1383
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_22 {
1384
- background-position: -773px -592px;
1385
- }
1386
-
1387
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_23 {
1388
- background-position: -838px -592px;
1389
- }
1390
-
1391
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_24 {
1392
- background-position: -909px -592px;
1393
- }
1394
-
1395
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_25 {
1396
- background-position: -977px -592px;
1397
- }
1398
-
1399
- .sfsiplus_icns_tab_3 .sfsiplus_row_9_26 {
1400
- background-position: -1045px 0;
1401
- }
1402
-
1403
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_1 {
1404
- background-position: 0 -666px;
1405
- }
1406
-
1407
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_2 {
1408
- background-position: -60px -666px;
1409
- }
1410
-
1411
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_3 {
1412
- background-position: -118px -666px;
1413
- }
1414
-
1415
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_4 {
1416
- background-position: -176px -666px;
1417
- }
1418
-
1419
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_5 {
1420
- background-position: -235px -666px;
1421
- }
1422
-
1423
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_6 {
1424
- background-position: -293px -666px;
1425
- }
1426
-
1427
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_7 {
1428
- background-position: -350px -666px;
1429
- }
1430
-
1431
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_8 {
1432
- background-position: -409px -666px;
1433
- }
1434
-
1435
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_9 {
1436
- background-position: -467px -666px;
1437
- }
1438
-
1439
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_10 {
1440
- background-position: -526px -666px;
1441
- }
1442
-
1443
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_11 {
1444
- background-position: -711px -666px;
1445
- }
1446
-
1447
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_22 {
1448
- background-position: -773px -666px;
1449
- }
1450
-
1451
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_23 {
1452
- background-position: -838px -666px;
1453
- }
1454
-
1455
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_24 {
1456
- background-position: -909px -666px;
1457
- }
1458
-
1459
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_25 {
1460
- background-position: -977px -666px;
1461
- }
1462
-
1463
- .sfsiplus_icns_tab_3 .sfsiplus_row_10_26 {
1464
- background-position: -1045px 0;
1465
- }
1466
-
1467
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_1 {
1468
- background-position: 0 -740px;
1469
- }
1470
-
1471
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_2 {
1472
- background-position: -60px -740px;
1473
- }
1474
-
1475
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_3 {
1476
- background-position: -118px -740px;
1477
- }
1478
-
1479
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_4 {
1480
- background-position: -176px -740px;
1481
- }
1482
-
1483
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_5 {
1484
- background-position: -235px -740px;
1485
- }
1486
-
1487
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_6 {
1488
- background-position: -293px -740px;
1489
- }
1490
-
1491
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_7 {
1492
- background-position: -350px -740px;
1493
- }
1494
-
1495
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_8 {
1496
- background-position: -409px -740px;
1497
- }
1498
-
1499
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_9 {
1500
- background-position: -467px -740px;
1501
- }
1502
-
1503
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_10 {
1504
- background-position: -526px -740px;
1505
- }
1506
-
1507
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_11 {
1508
- background-position: -711px -740px;
1509
- }
1510
-
1511
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_22 {
1512
- background-position: -773px -740px;
1513
- }
1514
-
1515
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_23 {
1516
- background-position: -838px -740px;
1517
- }
1518
-
1519
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_24 {
1520
- background-position: -909px -740px;
1521
- }
1522
-
1523
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_25 {
1524
- background-position: -977px -740px;
1525
- }
1526
-
1527
- .sfsiplus_icns_tab_3 .sfsiplus_row_11_26 {
1528
- background-position: -1045px 0;
1529
- }
1530
-
1531
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_1 {
1532
- background-position: 0 -814px;
1533
- }
1534
-
1535
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_2 {
1536
- background-position: -60px -814px;
1537
- }
1538
-
1539
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_3 {
1540
- background-position: -118px -814px;
1541
- }
1542
-
1543
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_4 {
1544
- background-position: -176px -814px;
1545
- }
1546
-
1547
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_5 {
1548
- background-position: -235px -814px;
1549
- }
1550
-
1551
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_6 {
1552
- background-position: -293px -814px;
1553
- }
1554
-
1555
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_7 {
1556
- background-position: -350px -814px;
1557
- }
1558
-
1559
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_8 {
1560
- background-position: -409px -814px;
1561
- }
1562
-
1563
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_9 {
1564
- background-position: -467px -814px;
1565
- }
1566
-
1567
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_10 {
1568
- background-position: -526px -814px;
1569
- }
1570
-
1571
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_11 {
1572
- background-position: -711px -814px;
1573
- }
1574
-
1575
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_22 {
1576
- background-position: -773px -814px;
1577
- }
1578
-
1579
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_23 {
1580
- background-position: -838px -814px;
1581
- }
1582
-
1583
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_24 {
1584
- background-position: -909px -814px;
1585
- }
1586
-
1587
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_25 {
1588
- background-position: -977px -814px;
1589
- }
1590
-
1591
- .sfsiplus_icns_tab_3 .sfsiplus_row_12_26 {
1592
- background-position: -1045px 0;
1593
- }
1594
-
1595
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_1 {
1596
- background-position: 0 -888px;
1597
- }
1598
-
1599
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_2 {
1600
- background-position: -60px -888px;
1601
- }
1602
-
1603
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_3 {
1604
- background-position: -118px -888px;
1605
- }
1606
-
1607
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_4 {
1608
- background-position: -176px -888px;
1609
- }
1610
-
1611
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_5 {
1612
- background-position: -235px -888px;
1613
- }
1614
-
1615
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_6 {
1616
- background-position: -293px -888px;
1617
- }
1618
-
1619
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_7 {
1620
- background-position: -350px -888px;
1621
- }
1622
-
1623
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_8 {
1624
- background-position: -409px -888px;
1625
- }
1626
-
1627
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_9 {
1628
- background-position: -467px -888px;
1629
- }
1630
-
1631
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_10 {
1632
- background-position: -526px -888px;
1633
- }
1634
-
1635
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_11 {
1636
- background-position: -711px -888px;
1637
- }
1638
-
1639
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_22 {
1640
- background-position: -773px -888px;
1641
- }
1642
-
1643
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_23 {
1644
- background-position: -838px -888px;
1645
- }
1646
-
1647
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_24 {
1648
- background-position: -909px -888px;
1649
- }
1650
-
1651
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_25 {
1652
- background-position: -977px -888px;
1653
- }
1654
-
1655
- .sfsiplus_icns_tab_3 .sfsiplus_row_13_26 {
1656
- background-position: -1045px 0;
1657
- }
1658
-
1659
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_1 {
1660
- background-position: 0 -962px;
1661
- }
1662
-
1663
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_2 {
1664
- background-position: -60px -962px;
1665
- }
1666
-
1667
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_3 {
1668
- background-position: -118px -962px;
1669
- }
1670
-
1671
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_4 {
1672
- background-position: -176px -962px;
1673
- }
1674
-
1675
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_5 {
1676
- background-position: -235px -962px;
1677
- }
1678
-
1679
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_6 {
1680
- background-position: -293px -962px;
1681
- }
1682
-
1683
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_7 {
1684
- background-position: -350px -962px;
1685
- }
1686
-
1687
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_8 {
1688
- background-position: -409px -962px;
1689
- }
1690
-
1691
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_9 {
1692
- background-position: -467px -962px;
1693
- }
1694
-
1695
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_10 {
1696
- background-position: -526px -962px;
1697
- }
1698
-
1699
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_11 {
1700
- background-position: -711px -962px;
1701
- }
1702
-
1703
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_22 {
1704
- background-position: -773px -962px;
1705
- }
1706
-
1707
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_23 {
1708
- background-position: -838px -962px;
1709
- }
1710
-
1711
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_24 {
1712
- background-position: -909px -962px;
1713
- }
1714
-
1715
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_25 {
1716
- background-position: -977px -962px;
1717
- }
1718
-
1719
- .sfsiplus_icns_tab_3 .sfsiplus_row_14_26 {
1720
- background-position: -1045px 0;
1721
- }
1722
-
1723
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_1 {
1724
- background-position: 0 -1036px;
1725
- }
1726
-
1727
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_2 {
1728
- background-position: -60px -1036px;
1729
- }
1730
-
1731
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_3 {
1732
- background-position: -118px -1036px;
1733
- }
1734
-
1735
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_4 {
1736
- background-position: -176px -1036px;
1737
- }
1738
-
1739
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_5 {
1740
- background-position: -235px -1036px;
1741
- }
1742
-
1743
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_6 {
1744
- background-position: -293px -1036px;
1745
- }
1746
-
1747
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_7 {
1748
- background-position: -350px -1036px;
1749
- }
1750
-
1751
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_8 {
1752
- background-position: -409px -1036px;
1753
- }
1754
-
1755
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_9 {
1756
- background-position: -467px -1036px;
1757
- }
1758
-
1759
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_10 {
1760
- background-position: -526px -1036px;
1761
- }
1762
-
1763
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_11 {
1764
- background-position: -711px -1036px;
1765
- }
1766
-
1767
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_22 {
1768
- background-position: -773px -1036px;
1769
- }
1770
-
1771
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_23 {
1772
- background-position: -838px -1036px;
1773
- }
1774
-
1775
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_24 {
1776
- background-position: -909px -1036px;
1777
- }
1778
-
1779
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_25 {
1780
- background-position: -977px -1036px;
1781
- }
1782
-
1783
- .sfsiplus_icns_tab_3 .sfsiplus_row_15_26 {
1784
- background-position: -1045px 0;
1785
- }
1786
-
1787
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_1 {
1788
- background-position: 0 -1109px;
1789
- }
1790
-
1791
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_2 {
1792
- background-position: -60px -1109px;
1793
- }
1794
-
1795
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_3 {
1796
- background-position: -118px -1109px;
1797
- }
1798
-
1799
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_4 {
1800
- background-position: -176px -1109px;
1801
- }
1802
-
1803
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_5 {
1804
- background-position: -235px -1109px;
1805
- }
1806
-
1807
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_6 {
1808
- background-position: -293px -1109px;
1809
- }
1810
-
1811
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_7 {
1812
- background-position: -350px -1109px;
1813
- }
1814
-
1815
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_8 {
1816
- background-position: -409px -1109px;
1817
- }
1818
-
1819
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_9 {
1820
- background-position: -467px -1109px;
1821
- }
1822
-
1823
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_10 {
1824
- background-position: -526px -1109px;
1825
- }
1826
-
1827
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_11 {
1828
- background-position: -711px -1109px;
1829
- }
1830
-
1831
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_22 {
1832
- background-position: -773px -1109px;
1833
- }
1834
-
1835
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_23 {
1836
- background-position: -838px -1109px;
1837
- }
1838
-
1839
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_24 {
1840
- background-position: -909px -1109px;
1841
- }
1842
-
1843
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_25 {
1844
- background-position: -977px -1109px;
1845
- }
1846
-
1847
- .sfsiplus_icns_tab_3 .sfsiplus_row_16_26 {
1848
- background-position: -1045px 0;
1849
- }
1850
-
1851
- /*Admin menu*/
1852
- ul#adminmenu li.toplevel_page_sfsi-plus-options div.wp-menu-image {
1853
- display: none;
1854
- }
1855
-
1856
- #adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options {
1857
- padding: 0 0 0 38px;
1858
- font-family: helveticabold;
1859
- }
1860
-
1861
- ul#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options {
1862
- color: #e12522;
1863
- transition: 0s;
1864
- background: url(images/left_log_icn.png) 6px 15px no-repeat #000;
1865
- background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
1866
- color: #fafafa;
1867
- }
1868
-
1869
- ul#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options:hover {
1870
- background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
1871
- color: #fafafa;
1872
- }
1873
-
1874
- ul#adminmenu li.toplevel_page_sfsi-plus-options a.wp-has-current-submenu,
1875
- ul#adminmenu li.toplevel_page_sfsi-plus-options a.wp-has-current-submenu:hover {
1876
- background: url(images/left_log_icn.png) 6px 15px no-repeat #000000;
1877
- /*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
1878
- color: #e12522;
1879
- }
1880
-
1881
- ul#adminmenu li.toplevel_page_sfsi-plus-options a.current,
1882
- ul#adminmenu li.toplevel_page_sfsi-plus-options a.current:hover {
1883
- background: url(images/left_log_icn.png) 6px 15px no-repeat #000000 !important;
1884
- /*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
1885
- color: #e12522 !important;
1886
- }
1887
-
1888
- /*tab 9 css*/
1889
- .tab9 .sfsi_plus_tab8_container {
1890
- width: 100%;
1891
- float: left;
1892
- }
1893
-
1894
- .tab9 .sfsi_plus_tab8_subcontainer {
1895
- float: left;
1896
- padding: 20px 0;
1897
- width: 100%;
1898
- }
1899
-
1900
- .tab9 h3.sfsi_plus_section_title {
1901
- font-weight: bold;
1902
- }
1903
-
1904
- .tab9 .like_pop_box {
1905
- width: 100%;
1906
- margin: 35px auto auto;
1907
- position: relative;
1908
- text-align: center;
1909
- }
1910
-
1911
- .tab9 .like_pop_box h2 {
1912
- font-family: helveticabold;
1913
- text-align: center;
1914
- color: #414951;
1915
- font-size: 26px;
1916
- }
1917
-
1918
- .tab9 .sfsi_plus_subscribe_Popinner {
1919
- display: inline-block;
1920
- padding: 18px 20px;
1921
- -webkit-box-shadow: 0 0 5px #ccc;
1922
- border: 1px solid #ededed;
1923
- background: #FFF;
1924
- position: relative;
1925
- }
1926
-
1927
- .tab9 .sfsi_plus_subscribe_Popinner .form-overlay {
1928
- height: 100%;
1929
- left: 0;
1930
- position: absolute;
1931
- top: 0;
1932
- width: 100%;
1933
- }
1934
-
1935
- .tab9 .like_pop_box .sfsi_plus_subscribe_Popinner {
1936
- box-shadow: 0 0 5px #ccc;
1937
- }
1938
-
1939
- .tab9 .like_pop_box .sfsi_plus_subscribe_Popinner h5 {
1940
- margin: 0 0 10px;
1941
- padding: 0;
1942
- color: #414951;
1943
- font-size: 22px;
1944
- text-align: center;
1945
- }
1946
-
1947
- .tab9 .sfsi_plus_subscribe_Popinner h5 {
1948
- margin: 0 0 10px;
1949
- padding: 0;
1950
- color: #414951;
1951
- font-size: 18px;
1952
- text-align: center;
1953
- }
1954
-
1955
- .tab9 .sfsi_plus_subscription_form_field {
1956
- float: left;
1957
- margin: 5px 0;
1958
- width: 100%;
1959
- }
1960
-
1961
- .tab9 .sfsi_plus_subscription_form_field input {
1962
- padding: 10px 0px;
1963
- text-align: center;
1964
- width: 100%;
1965
- }
1966
-
1967
- .tab9 .sfsi_plus_tab8_subcontainer label.sfsi_plus_label_text {
1968
- float: left;
1969
- margin: 10px 0;
1970
- width: 100%;
1971
- }
1972
-
1973
- .tab9 ul.sfsi_plus_form_info {
1974
- list-style: none !important;
1975
- margin-left: 32px;
1976
- }
1977
-
1978
- .tab9 ul.sfsi_plus_form_info li {
1979
- margin: 3px 0;
1980
- }
1981
-
1982
- .tab9 .sfsi_plus_subscription_html {
1983
- background-color: #e5e5e5;
1984
- float: left;
1985
- margin: 12px 0 0 30px;
1986
- width: 90%;
1987
- }
1988
-
1989
- .tab9 .sfsi_plus_seprater {
1990
- border-bottom: 1px solid #ccc;
1991
- }
1992
-
1993
- .tab9 .sfsi_plus_tab8_subcontainer h5.sfsi_plus_section_subtitle {
1994
- float: left;
1995
- font-size: 18px;
1996
- margin: 5px 0;
1997
- width: 100%;
1998
- }
1999
-
2000
- .tab9 .sfsi_plus_left_container {
2001
- margin-top: 30px;
2002
- text-align: center;
2003
- width: 24%;
2004
- display: inline-block;
2005
- }
2006
-
2007
- .tab9 .sfsi_plus_right_container {
2008
- display: inline-block;
2009
- margin-top: 30px;
2010
- padding: 0 20px;
2011
- vertical-align: top;
2012
- width: 72%;
2013
- }
2014
-
2015
- .tab9 .row_tab {
2016
- display: inline-block;
2017
- margin-bottom: 30px;
2018
- width: 100%;
2019
- }
2020
-
2021
- .tab9 .row_tab label {
2022
- color: #5a6570;
2023
- font-size: 16px;
2024
- }
2025
-
2026
- .tab9 .row_tab div.sfsi_plus_field {
2027
- display: inline-block;
2028
- vertical-align: middle;
2029
- width: auto;
2030
- margin-right: 25px;
2031
- }
2032
-
2033
- .tab9 .color_box {
2034
- width: 40px;
2035
- height: 34px;
2036
- border: 3px solid #fff;
2037
- box-shadow: 1px 2px 2px #ccc;
2038
- float: right;
2039
- position: relative;
2040
- margin-left: 13px;
2041
- }
2042
-
2043
- .tab9 .color_box1 {
2044
- width: 100%;
2045
- height: 34px;
2046
- background: #5a6570;
2047
- box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
2048
- }
2049
-
2050
- .tab9 .corner {
2051
- width: 10px;
2052
- height: 10px;
2053
- background: #fff;
2054
- position: absolute;
2055
- right: 0;
2056
- bottom: 0;
2057
- }
2058
-
2059
- .tab9 .sfsi_plus_right_container label {
2060
- color: #5a6570;
2061
- font-size: 18px;
2062
- }
2063
-
2064
- .tab9 label.sfsi_plus_heding {
2065
- display: inline-block;
2066
- font-weight: bold;
2067
- padding-top: 10px;
2068
- width: 303px;
2069
- }
2070
-
2071
- .tab9 .border_shadow {
2072
- display: inline-block;
2073
- vertical-align: top;
2074
- }
2075
-
2076
- .tab9 .border_shadow li {
2077
- display: inline-block;
2078
- vertical-align: top;
2079
- padding-right: 20px;
2080
- }
2081
-
2082
- .tab9 .border_shadow li span {
2083
- vertical-align: middle;
2084
- }
2085
-
2086
- .tab9 .border_shadow .radio {
2087
- margin-right: 5px;
2088
- }
2089
-
2090
- .tab9 .sfsi_plus_field .rec-inp {
2091
- background: #e5e5e5 none repeat scroll 0 0;
2092
- height: 44px;
2093
- text-align: center;
2094
- width: 54px;
2095
- }
2096
-
2097
- .tab9 .pix {
2098
- color: #5a6570;
2099
- font-size: 18px;
2100
- padding-left: 10px;
2101
- vertical-align: middle;
2102
- }
2103
-
2104
- .tab9 .sfsi_plus_heding.autowidth {
2105
- width: auto;
2106
- margin-right: 15px;
2107
- }
2108
-
2109
- .tab9 .sfsi_plus_heding.fixwidth {
2110
- width: 80px;
2111
- }
2112
-
2113
- .tab9 .small {
2114
- background-color: #e5e5e5;
2115
- height: 44px;
2116
- width: 200px;
2117
- }
2118
-
2119
- .tab9 .small.new-inp {
2120
- background-color: #e5e5e5;
2121
- height: 44px;
2122
- width: 277px;
2123
- }
2124
-
2125
- .tab9 .small.color-code {
2126
- width: 138px !important;
2127
- }
2128
-
2129
- .tab9 .select-same {
2130
- border: 1px solid #d6d6d6;
2131
- height: 47px !important;
2132
- width: 171px;
2133
- appearance: none;
2134
- -moz-appearance: none;
2135
- -webkit-appearance: none;
2136
- background-image: url(images/select-arrow.png);
2137
- background-repeat: no-repeat;
2138
- background-position: right 15px center;
2139
- }
2140
-
2141
- .tab9 .sfsi_plus_same_width {
2142
- display: inline-block;
2143
- width: 100px !important;
2144
- }
2145
-
2146
- .disabled_checkbox .sfsiplus_right_info .sfsiplus_toglepstpgspn {
2147
- color: rgba(0, 0, 0, .3);
2148
- }
2149
-
2150
- .sfsi_plus_subscription_html xmp {
2151
- display: block;
2152
- padding: 0 10px;
2153
- white-space: pre-line;
2154
- word-wrap: break-word;
2155
- }
2156
-
2157
- .sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li {
2158
- float: left;
2159
- width: 300px !important;
2160
- max-width: 300px !important;
2161
- min-width: 300px !important;
2162
- }
2163
-
2164
- .sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec label {
2165
- font-size: 17px;
2166
- padding-right: 20px;
2167
- width: 65px !important;
2168
- display: inline-block;
2169
- }
2170
-
2171
- .sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li input {
2172
- background-color: #dedede;
2173
- border: medium none;
2174
- box-shadow: none;
2175
- padding: 14px 8px;
2176
- width: 80px;
2177
- }
2178
-
2179
- .sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li ins {
2180
- font-size: 17px;
2181
- font-weight: 400;
2182
- margin-left: 15px;
2183
- text-decoration: none;
2184
- }
2185
-
2186
- @media (max-width:1160px) {
2187
- .sfsi_plus_subscription_html xmp {
2188
- display: block;
2189
- padding: 0 10px;
2190
- white-space: pre-line;
2191
- word-wrap: break-word;
2192
- }
2193
- }
2194
-
2195
- @media (max-width:1350px) {
2196
- .tab9 .sfsi_plus_left_container {
2197
- width: 100% !important;
2198
- }
2199
-
2200
- .tab9 .sfsi_plus_right_container {
2201
- width: 100%;
2202
- }
2203
-
2204
- .tab9 .border_shadow {
2205
- margin-top: 10px;
2206
- }
2207
-
2208
- .tab9 .row_tab div.sfsi_plus_field {
2209
- margin-bottom: 10px;
2210
- }
2211
- }
2212
-
2213
- @media (max-width:770px) {
2214
- #sfsi_plus_form_heading_fontstyle {
2215
- margin-left: 19px !important;
2216
- margin-top: 10px !important;
2217
- }
2218
- }
2219
-
2220
- /*poonam Style*/
2221
- .feedClaiming-overlay h1 {
2222
- font-size: 22px !important;
2223
- font-weight: bolder !important;
2224
- margin-top: 7px !important;
2225
- }
2226
-
2227
- .feedClaiming-overlay input[type="email"] {
2228
- font-size: 16px;
2229
- margin: 26px 0 0;
2230
- padding: 10px 0;
2231
- text-align: center;
2232
- width: 100%;
2233
- color: #bebebe !important;
2234
- box-shadow: none;
2235
- }
2236
-
2237
- .feedClaiming-overlay input[type="email"]::-webkit-input-placeholder {
2238
- color: #bebebe !important;
2239
- }
2240
-
2241
- .feedClaiming-overlay input[type="email"]:-moz-placeholder {
2242
- /* Firefox 18- */
2243
- color: #bebebe !important;
2244
- }
2245
-
2246
- .feedClaiming-overlay input[type="email"]::-moz-placeholder {
2247
- /* Firefox 19+ */
2248
- color: #bebebe !important;
2249
- }
2250
-
2251
- .feedClaiming-overlay input[type="email"]:-ms-input-placeholder {
2252
- color: #bebebe !important;
2253
- }
2254
-
2255
- .feedClaiming-overlay .save_button {
2256
- padding: 0 !important;
2257
- width: 100%;
2258
- }
2259
-
2260
- .feedClaiming-overlay .save_button a#getMeFullAccess {
2261
- border-radius: 4px;
2262
- font-size: 18px;
2263
- font-weight: bolder;
2264
- }
2265
-
2266
- .feedClaiming-overlay .sfsicloseBtn {
2267
- right: 8px !important;
2268
- top: 8px !important;
2269
- }
2270
-
2271
- .feedClaiming-overlay p {
2272
- text-align: center !important;
2273
- font-size: 12px !important;
2274
- line-height: 23px !important;
2275
- padding: 18px 0 0 !important;
2276
- color: #bebebe !important;
2277
- }
2278
-
2279
- .feedClaiming-overlay p a {
2280
- display: inline-block;
2281
- font-size: 12px;
2282
- margin: 0;
2283
- padding: 0;
2284
- width: auto;
2285
- color: #274da3 !important;
2286
- }
2287
-
2288
- .feedClaiming-overlay .pop_up_box {
2289
- padding: 25px 30px !important;
2290
- width: 435px !important;
2291
- min-height: 220px;
2292
- }
2293
-
2294
- .follows-btn {
2295
- float: left;
2296
- width: 25%;
2297
- }
2298
-
2299
- .preview-btn {
2300
- float: left;
2301
- width: 10%;
2302
- }
2303
-
2304
- .social-img-link {
2305
- float: left;
2306
- width: 15%;
2307
- }
2308
-
2309
- .social-img-link img {
2310
- vertical-align: middle;
2311
- }
2312
-
2313
- .language-field {
2314
- float: left;
2315
- width: 24%;
2316
- }
2317
-
2318
- .language-field select {
2319
- width: 100%;
2320
- }
2321
-
2322
- .icons_size {
2323
- clear: both;
2324
- }
2325
-
2326
- .plus_custom-img img,
2327
- .sfsiplus_custom_section img,
2328
- .sfsiplus_custom_iconOrder img,
2329
- .plus_sfsi_sample_icons img {
2330
- width: 51px;
2331
- }
2332
-
2333
- .cstomskins_upload span.sfsi_plus-bgimage {
2334
- background-size: 51px 51px !important;
2335
- }
2336
-
2337
- /* poonam */
2338
- .sfsi_plus_premium_brdr_box {
2339
- box-sizing: border-box;
2340
- }
2341
-
2342
- .sf_si_plus_our_prmium_plugin-add,
2343
- .sfsi_plus_prem_icons_added,
2344
- .sfsi_plus_new_prmium_follw {
2345
- background: #f3faf6;
2346
- border: 1px solid #12a252;
2347
- padding: 25px 38px 35px 40px;
2348
- clear: both;
2349
- }
2350
-
2351
- .banner_custom_icon {
2352
- margin-left: 94px !important;
2353
- float: left;
2354
- }
2355
-
2356
- .banner_custom_icon p a {
2357
- font-family: helveticabold !important
2358
- }
2359
-
2360
- .sf_si_plus_our_prmium_plugin-add {
2361
- padding: 25px 38px 45px 44px;
2362
- }
2363
-
2364
- .sf_si_plus_default_design ul {
2365
- padding: 0;
2366
- margin: 0;
2367
- }
2368
-
2369
- .sf_si_plus_default_design ul li {
2370
- list-style: none;
2371
- font-size: 20px;
2372
- color: #1a1d20;
2373
- clear: both;
2374
- }
2375
-
2376
- .sf_si_plus_default_design ul li b {
2377
- font-weight: bold;
2378
- }
2379
-
2380
- .sf_si_plus_default_design ul li img {
2381
- vertical-align: middle;
2382
- }
2383
-
2384
- .sf_si_plus_default_design ul li h4 {
2385
- color: #1a1d20 !important;
2386
- font-size: 20px !important;
2387
- font-weight: bold;
2388
- padding-bottom: 21px !important;
2389
- }
2390
-
2391
- .sf_si_plus_default_design ul li h4 span {
2392
- font-weight: normal;
2393
- }
2394
-
2395
- .sf_si_plus_default_design ul li b span {
2396
- font-weight: normal !important;
2397
- }
2398
-
2399
- .sf_si_plus_default_design ul li {
2400
- margin: 0 !important;
2401
- }
2402
-
2403
- .sf_si_plus_default_design ul li h4.sfsi_plus_second_themedTitle {
2404
- padding-bottom: 16px !important;
2405
- }
2406
-
2407
- .sfsi_plus_row_table {
2408
- clear: both;
2409
- }
2410
-
2411
- .sfsi_plus_first_icon_field,
2412
- .sfsi_plus_second_icon_img {
2413
- display: table-cell;
2414
- vertical-align: middle;
2415
- padding: 5px 0;
2416
- }
2417
-
2418
- .sfsi_plus_first_icon_field {
2419
- width: 125px;
2420
- }
2421
-
2422
- .sfsi_plus_first_icon_field h2 {
2423
- font-size: 18px !important;
2424
- color: #1a1d20 !important;
2425
- margin: 0 !important;
2426
- font-weight: bold !important;
2427
- }
2428
-
2429
- .sfsi_plus_first_icon_field p {
2430
- color: #1a1d20 !important;
2431
- font-size: 12px !important;
2432
- margin: 0 !important;
2433
- padding: 0 !important;
2434
- line-height: 18px !important;
2435
- }
2436
-
2437
- .sfsi_plus_cool_font_weight h2 {
2438
- font-weight: normal !important;
2439
- }
2440
-
2441
- .sf_si_plus_prmium_head span {
2442
- font-weight: normal;
2443
- }
2444
-
2445
- .sf_si_plus_prmium_head h2 {
2446
- font-size: 26px;
2447
- color: #000;
2448
- font-weight: bold !important;
2449
- padding-bottom: 13px !important;
2450
- margin-top: 0;
2451
- }
2452
-
2453
- .sf_si_plus_our_prmium_plugin-add .sf_si_plus_prmium_head h2 {
2454
- padding-bottom: 23px !important;
2455
- }
2456
-
2457
- .sfsi_plus_premium_row {
2458
- clear: both;
2459
- }
2460
-
2461
- .sfsi_plus_prem_cmn_rowlisting {
2462
- width: 225px;
2463
- float: left;
2464
- margin-top: 10px;
2465
- margin-bottom: 1px;
2466
- }
2467
-
2468
- .sfsi_plus_prem_cmn_rowlisting span {
2469
- color: #1a1d20;
2470
- font-size: 20px;
2471
- display: table-cell;
2472
- vertical-align: middle;
2473
- padding-right: 10px;
2474
- }
2475
-
2476
- .sfsi_mainContainer .sfsi_plus_prem_cmn_rowlisting img {
2477
- width: 52px;
2478
- height: 52px;
2479
- vertical-align: middle;
2480
- }
2481
-
2482
- .sfsi_plus_need_another_tell_us,
2483
- .sfsi_plus_need_another_one_link {
2484
- clear: both;
2485
- }
2486
-
2487
- .sfsi_plus_need_another_one_link p {
2488
- color: #c1c3c5;
2489
- font-size: 18.9px !important;
2490
- }
2491
-
2492
- .sfsi_plus_need_another_one_link p a {
2493
- color: #12a252 !important;
2494
- text-decoration: none;
2495
- }
2496
-
2497
- .sfsi_plus_need_another_one_link {
2498
- padding: 23px 0 20px 5px;
2499
- }
2500
-
2501
- .sf_si_plus_all_features_premium a,
2502
- .sfsi_plus_need_another_tell_us a {
2503
- color: #12a252 !important;
2504
- font-size: 18.9px;
2505
- font-weight: bold;
2506
- border-bottom: 1px solid #12a252;
2507
- text-decoration: none;
2508
- }
2509
-
2510
- .sfsi_plus_need_another_tell_us a {
2511
- margin-left: 5px;
2512
- padding-top: 25px;
2513
- }
2514
-
2515
- .sfsi_plus_new_prmium_follw {
2516
- margin-top: 20px;
2517
- display: inline-block;
2518
- padding: 15px 75px 20px 24px;
2519
- float: left;
2520
- }
2521
-
2522
- .sfsi_plus_new_prmium_follw p {
2523
- margin: 0 !important;
2524
- }
2525
-
2526
- .sfsi_plus_new_prmium_follw p {
2527
- color: #1a1d20 !important;
2528
- font-size: 20px !important;
2529
- font-family: helveticaregular !important;
2530
- }
2531
-
2532
- .sfsi_plus_new_prmium_follw p a {
2533
- color: #12a252 !important;
2534
- border-bottom: 1px solid #12a252;
2535
- text-decoration: none;
2536
- }
2537
-
2538
- .sfsi_plus_new_prmium_follw p b {
2539
- font-weight: bold;
2540
- color: #1a1d20 !important;
2541
- }
2542
-
2543
- p.sfsi_plus_prem_plu_desc a,
2544
- p.sfsi_plus_prem_plu_desc_define a {
2545
- text-decoration: none !important;
2546
- color: #00a0d2 !important;
2547
- }
2548
-
2549
- p.sfsi_plus_prem_plu_desc {
2550
- font-size: 18px !important;
2551
- }
2552
-
2553
- p.sfsi_plus_prem_plu_desc_define {
2554
- font-size: 18px !important;
2555
- border-left: 0px solid transparent !important;
2556
- }
2557
-
2558
- .sfsi_plus_icons_prem_disc {
2559
- float: left;
2560
- padding-top: 20px;
2561
- }
2562
-
2563
- .sfsi_plus_prem_show {
2564
- padding-top: 140px !important;
2565
- }
2566
-
2567
- .sfsi_plus_first_icon_more h2 {
2568
- font-size: 18px !important;
2569
- color: #1a1d20 !important;
2570
- margin: 0 !important;
2571
- padding-top: 17px !important;
2572
- padding-bottom: 22px !important;
2573
- }
2574
-
2575
- .sfsi_plus_fbpaget {
2576
- float: left !important;
2577
- padding: 4px 0 0 0px !important;
2578
- width: 100% !important;
2579
- }
2580
-
2581
- .sfsi_plus_fbpaget .sfsi_plus_facebook_count {
2582
- width: 100% !important;
2583
- padding: 4px 0 0 0px !important;
2584
- }
2585
-
2586
- .sfsi_plus_facebook_pagedeasc {
2587
- font-size: 14px !important;
2588
- padding: 15px 0 0 60px;
2589
- width: 42%;
2590
- float: right;
2591
- line-height: 22px;
2592
- color: #080808;
2593
- }
2594
-
2595
- p.sfsi_plus_instagram_shared_premium,
2596
- p.sfsi_plus_shared_premium {
2597
- color: #1a1d20 !important;
2598
- font-family: helveticaregular !important;
2599
- padding-top: 0 !important;
2600
- }
2601
-
2602
- p.sfsi_plus_shared_premium a,
2603
- p.sfsi_plus_instagram_shared_premium a {
2604
- text-decoration: none;
2605
- color: #00a0d2 !important;
2606
- }
2607
-
2608
- p.sfsi_plus_shared_premium b,
2609
- p.sfsi_plus_instagram_shared_premium b {
2610
- font-weight: bold;
2611
- }
2612
-
2613
- p.sfsi_plus_instagram_shared_premium {
2614
- float: right;
2615
- width: 41%;
2616
- line-height: 20px;
2617
- color: #1f1d1d;
2618
- font-size: 13px;
2619
- }
2620
-
2621
- .sfsi_plus_fb_popup_contain {
2622
- width: 50%;
2623
- display: inline-block;
2624
- }
2625
-
2626
- .sfsi_plus_icons_align_other {
2627
- width: auto;
2628
- font-size: 15px !important;
2629
- }
2630
-
2631
- /* notification css*/
2632
- .sfsi_plus_new_notification {
2633
- background-color: #fff;
2634
- border: 4px dashed #00c853;
2635
- margin-bottom: 30px;
2636
- width: 100%;
2637
- }
2638
-
2639
- .sfsi_plus_new_notification_header {
2640
- background-color: #e8faef;
2641
- display: -webkit-box;
2642
- display: -webkit-flex;
2643
- display: -ms-flexbox;
2644
- display: flex;
2645
- -webkit-box-align: center;
2646
- -webkit-align-items: center;
2647
- -ms-flex-align: center;
2648
- align-items: center;
2649
- -webkit-box-pack: justify;
2650
- -webkit-justify-content: space-between;
2651
- -ms-flex-pack: justify;
2652
- justify-content: space-between;
2653
- padding: 10px 0 12px 0;
2654
- }
2655
-
2656
- .sfsi_plus_new_notification_header h1 {
2657
- margin: 0 !important;
2658
- color: #00c853;
2659
- font-size: 18px;
2660
- margin: 0 auto !important;
2661
- font-family: Arial, Helvetica, sans-serif;
2662
- }
2663
-
2664
- .sfsi_plus_new_notification_header h1 a {
2665
- margin: 0 !important;
2666
- color: #00c853;
2667
- font-size: 18px;
2668
- margin: 0 auto !important;
2669
- font-family: Arial, Helvetica, sans-serif;
2670
- text-decoration: none;
2671
- }
2672
-
2673
- .sfsi_plus_new_notification_cross {
2674
- float: right;
2675
- font-size: 18px;
2676
- font-weight: 700;
2677
- line-height: 1;
2678
- color: #00c853;
2679
- font-family: Arial, Helvetica, sans-serif;
2680
- margin-right: 15px;
2681
- cursor: pointer;
2682
- }
2683
-
2684
- .sfsi_plus_new_notification_body {
2685
- width: 100%;
2686
- background-color: #fff;
2687
- display: -webkit-box;
2688
- display: -webkit-flex;
2689
- display: -ms-flexbox;
2690
- display: flex;
2691
- -webkit-box-align: center;
2692
- -webkit-align-items: center;
2693
- -ms-flex-align: center;
2694
- align-items: center;
2695
- -webkit-box-pack: justify;
2696
- -webkit-justify-content: space-between;
2697
- -ms-flex-pack: justify;
2698
- justify-content: space-between;
2699
- }
2700
-
2701
- .sfsi_plus_new_notification_image {
2702
- margin: 0 20px 0px 20px;
2703
- width: 100%;
2704
- text-align: center;
2705
- overflow: hidden;
2706
- }
2707
-
2708
- .sfsi_plus_new_notification_image img {
2709
- width: auto;
2710
- }
2711
-
2712
- .sfsi_plus_new_notification_learnmore {
2713
- float: right;
2714
- }
2715
-
2716
- .sfsi_plus_new_notification_learnmore {
2717
- background-color: #00c853;
2718
- display: block;
2719
- text-decoration: none;
2720
- text-align: center;
2721
- font-size: 20px;
2722
- font-family: Arial, Helvetica, sans-serif;
2723
- width: 150px;
2724
- margin-bottom: -4px;
2725
- margin-right: -4px;
2726
- position: relative;
2727
- color: #fff;
2728
- padding: 70px 10px;
2729
- }
2730
-
2731
- .sfsi_plus_new_notification_body_link a {
2732
- display: block;
2733
- text-decoration: none;
2734
- text-align: center;
2735
- font-size: 20px;
2736
- font-family: Arial, Helvetica, sans-serif;
2737
- color: #fff;
2738
- }
2739
-
2740
- /*Tab 4*/
2741
- .tab4 .sfsi_plus_tokenGenerateButton {
2742
- margin: 25px 0;
2743
- }
2744
-
2745
- .tab4 .sfsi_plus_tokenGenerateButton p {
2746
- display: inline-block;
2747
- margin-bottom: 11px;
2748
- vertical-align: middle;
2749
- width: 100%;
2750
- }
2751
-
2752
- .tab4 .sfsi_plus_tokenGenerateButton a {
2753
- background-color: #12a252;
2754
- color: #fff;
2755
- padding: 10px 20px;
2756
- text-decoration: none;
2757
- }
2758
-
2759
- .tab4 .sfsi_plus_instagramInstruction {
2760
- float: left;
2761
- margin-bottom: 12px;
2762
- width: 450px;
2763
- }
2764
-
2765
- .tab4 .sfsi_plus_instagramInstruction ul {
2766
- padding-left: 14px !important;
2767
- }
2768
-
2769
- .tab4 .sfsi_plus_instagramInstruction ul li {
2770
- font-size: 13px !important;
2771
- line-height: 20px !important;
2772
- list-style: outside none bullets !important;
2773
- margin-top: 5px !important;
2774
- padding: 0 !important;
2775
- }
2776
-
2777
- .tab4 .sfsi_instagram_follower {
2778
- width: 50%;
2779
- float: left;
2780
- }
2781
-
2782
- /* tab2 emailsection */
2783
- .sfsi_plus_service_row {
2784
- margin-right: -15px;
2785
- margin-left: -15px;
2786
- }
2787
-
2788
- .sfsi_plus_service_column {
2789
- float: left;
2790
- margin-bottom: 40px;
2791
- margin-top: 15px;
2792
- padding-left: 30px;
2793
- width: 47%;
2794
- }
2795
-
2796
- .sfsi_plus_service_column ul {
2797
- margin-left: 11% !important;
2798
- }
2799
-
2800
- .sfsi_plus_service_column ul li {
2801
- padding-bottom: 10px;
2802
- font-size: 16px;
2803
- line-height: 25px;
2804
- }
2805
-
2806
- .sfsi_plus_service_column ul li span {
2807
- color: #12a252;
2808
- }
2809
-
2810
- .sfsi_plus_service_column ul li::before {
2811
- content: url(../images/tick-icon.png);
2812
- position: relative;
2813
- top: 0px;
2814
- right: 10px;
2815
- text-indent: -22px;
2816
- float: left;
2817
- }
2818
-
2819
- .sfsi_plus_inputbtn {
2820
- clear: both;
2821
- display: block;
2822
- }
2823
-
2824
- .sfsi_plus_inputbtn input {
2825
- width: 100%;
2826
- padding: 15px 0px;
2827
- text-align: center;
2828
- margin-bottom: 10px;
2829
- }
2830
-
2831
- .sfsi_plus_email_services_text {
2832
- clear: both;
2833
- }
2834
-
2835
- .sfsi_plus_email_services_paragraph {
2836
- width: 600px;
2837
- float: left;
2838
- margin-top: 10px;
2839
- margin-bottom: 40px;
2840
- }
2841
-
2842
- .sfsi_plus_more_services_link a {
2843
- background-color: #12a252;
2844
- color: #fff !important;
2845
- padding: 20px 0px;
2846
- text-decoration: none;
2847
- text-align: center;
2848
- font-size: 20px;
2849
- display: block;
2850
- clear: both;
2851
- font-weight: bold;
2852
- }
2853
-
2854
- .sfsi_plus_subscribe_popbox_link a {
2855
- color: #00a0d2 !important;
2856
- }
2857
-
2858
- .sfsi_plus_email_services_paragraph ul {
2859
- margin-left: 11% !important;
2860
- }
2861
-
2862
- .sfsi_plus_email_services_paragraph ul li {
2863
- padding-bottom: 10px;
2864
- font-size: 16px;
2865
- }
2866
-
2867
- .sfsi_plus_email_services_paragraph ul li span {
2868
- color: #12a252;
2869
- }
2870
-
2871
- .sfsi_plus_email_services_paragraph ul li::before {
2872
- content: url(../images/tick-icon.png);
2873
- position: relative;
2874
- top: 5px;
2875
- right: 10px;
2876
- text-indent: -22px;
2877
- float: left;
2878
- }
2879
-
2880
- .sfsi_plus_email_last_paragraph {
2881
- width: 60%;
2882
- text-align: center !important;
2883
- margin: 20px auto ! important;
2884
- font-size: 16px !important;
2885
- color: #a4a9ad !important;
2886
- padding-top: 0px !important;
2887
- }
2888
-
2889
- .sfsi_plus_email_last_paragraph a {
2890
- color: #12a252 !important;
2891
- font-family: 'helveticaneue-light' !important;
2892
- }
2893
-
2894
- .pop_up_box.sfsi_pop_up.sfsi_pop_box {
2895
- padding: 25px 30px 0 !important;
2896
- }
2897
-
2898
- #adminmenu #toplevel_page_sfsi-plus-options ul .wp-first-item {
2899
- display: none;
2900
- }
2901
-
2902
- ul#adminmenu li.toplevel_page_sfsi-plus-options ul.wp-submenu a.current,
2903
- ul#adminmenu li.toplevel_page_sfsi-plus-options ul.wp-submenu a.current:hover {
2904
- background: none !important;
2905
-
2906
- }
2907
-
2908
- /*new banner styles*/
2909
- .sfsi_plus_new_notification_cat {
2910
- width: 100%;
2911
- min-height: 300px;
2912
- max-width: 700px;
2913
- }
2914
-
2915
- .sfsi_plus_new_notification_cat {
2916
- background-color: #fff;
2917
- margin: 30px auto;
2918
- width: 100%;
2919
- }
2920
-
2921
- .sfsi_plus_new_notification_header_cat {
2922
- background-color: #e8faef;
2923
- padding: 21px 0 21px 0;
2924
- text-align: center;
2925
- }
2926
-
2927
- .sfsi_plus_new_notification_header_cat h1 {
2928
- margin: 0;
2929
- color: #000000;
2930
- font-size: 24px;
2931
- margin: 0 auto !important;
2932
- font-family: Arial, Helvetica, sans-serif;
2933
- font-weight: bold !important;
2934
- }
2935
-
2936
- .sfsi_plus_new_notification_header_cat h3 {
2937
- margin-top: 10px !important;
2938
- font-size: 16px;
2939
- color: #000000;
2940
- }
2941
-
2942
- .sfsi_plus_new_notification_header_cat h3 a {
2943
- text-decoration: none;
2944
- color: #38B54A;
2945
- }
2946
-
2947
- .sfsi_plus_new_notification_header_cat h1 a {
2948
- margin: 0;
2949
- color: #00c853;
2950
- font-size: 18px;
2951
- margin: 0 auto;
2952
- font-family: Arial, Helvetica, sans-serif;
2953
- text-decoration: none;
2954
- }
2955
-
2956
- .sfsi_plus_new_notification_cross_cat {
2957
- float: right;
2958
- font-size: 18px;
2959
- font-weight: 700;
2960
- line-height: 1;
2961
- color: #000000;
2962
- font-family: Arial, Helvetica, sans-serif;
2963
- margin-right: 15px;
2964
- cursor: pointer;
2965
- margin-top: -50px;
2966
- }
2967
-
2968
- .sfsi_plus_new_notification_body_link_cat a {
2969
- display: block;
2970
- text-decoration: none;
2971
- text-align: center;
2972
- font-size: 20px;
2973
- font-family: Arial, Helvetica, sans-serif;
2974
- color: #fff;
2975
- }
2976
-
2977
- .sfsi_plus_new_notification_body_cat {
2978
- width: 100%;
2979
- background-color: #fff;
2980
- }
2981
-
2982
- .sfsi_plus_new_notification_image_cat {
2983
- width: 100%;
2984
- text-align: center;
2985
- overflow: hidden;
2986
- }
2987
-
2988
- .sfsi_plus_new_notification_image_cat img {
2989
- width: auto;
2990
- border: 0;
2991
- vertical-align: middle;
2992
- }
2993
-
2994
- .sfsiplus_bottom_text {
2995
- background: #38B54A;
2996
- text-align: center;
2997
- padding: 15px 0px;
2998
- font-size: 18px;
2999
- font-weight: bold;
3000
- color: #fff;
3001
- }
3002
-
3003
- .sfsi_plus_new_notification_image_cat p {
3004
- color: #000000;
3005
- padding: 10px;
3006
- font-size: 16px;
3007
- }
3008
-
3009
- .sfsi_plus_new_notification_body_link_cat .sfsi_plus_tailored_icons_img {
3010
- display: block;
3011
- text-decoration: none;
3012
- text-align: center;
3013
- font-size: 20px;
3014
- font-family: Arial, Helvetica, sans-serif;
3015
- color: #fff;
3016
- margin: 28px 0px;
3017
- }
3018
-
3019
- /**curl error box*/
3020
- .sfsiplus_curlerror {
3021
- margin: 0px 0px 10px 94px;
3022
- background: rgba(244, 67, 54, 0.08);
3023
- padding: 20px;
3024
- line-height: 20px;
3025
- }
3026
-
3027
- .sfsi_plus_versionNotification .sfsiplus_curlerror {
3028
- background: rgba(244, 67, 54, 0.08);
3029
- padding: 20px;
3030
- line-height: 20px;
3031
- margin: 0px 0px 10px 0px;
3032
- }
3033
-
3034
- .sfsi_plus_curlerror_cross {
3035
- float: right;
3036
- text-decoration: underline;
3037
- margin-top: 10px;
3038
- }
3039
-
3040
- .sfsiplus_curlerrortab4 a {
3041
- color: #0073aa !important;
3042
- }
3043
-
3044
- .sfsiplus_curlerror a {
3045
- color: #0073aa !important;
3046
- }
3047
-
3048
- .social_data_post_types {
3049
- float: left;
3050
- width: 100%;
3051
- margin-top: 10px;
3052
- }
3053
-
3054
- .social_data_post_types .checkbox {
3055
- float: left;
3056
- margin-top: 5px;
3057
- margin-right: 5px;
3058
- }
3059
-
3060
- .social_data_post_types ul {
3061
- float: left;
3062
- margin-top: 5px;
3063
- }
3064
-
3065
- .social_data_post_types li {
3066
- float: left;
3067
- min-width: 90px;
3068
- }
3069
-
3070
- .social_data_post_types .radio_section.tb_4_ck {
3071
- float: left;
3072
- margin-right: 5px;
3073
- }
3074
-
3075
- .social_data_post_types .radio_section.tb_4_ck .cstmdsplsub {
3076
- font-size: 16px;
3077
- }
3078
-
3079
- .social_data_post_types ul {
3080
- float: left;
3081
- width: 84%;
3082
- }
3083
-
3084
- .social_data_post_types .radio_section.tb_4_ck input.styled {
3085
- margin-top: 20px;
3086
- }
3087
-
3088
- ul.sfsi_show_hide_section {
3089
- float: right;
3090
- width: 14%;
3091
- }
3092
-
3093
- .sfsi_social_sharing {
3094
- margin-bottom: 15px;
3095
- float: left;
3096
- width: 51%;
3097
- }
3098
-
3099
- .socialPostTypesUl span {
3100
- pointer-events: none
3101
- }
3102
-
3103
- .sfsiplus_pinterest_section .sfsi_plus_new_prmium_follw a {
3104
- font-weight: bold;
3105
- }
3106
-
3107
- /*support forum*/
3108
- .welcometext {
3109
- float: left;
3110
- width: 78%;
3111
- }
3112
-
3113
- .welcometext p {
3114
- margin-bottom: 8px !important;
3115
- margin-top: 15px !important;
3116
- }
3117
-
3118
- .supportforum {
3119
- float: right;
3120
- width: auto;
3121
- background: #fff;
3122
- text-align: center;
3123
- padding: 0 20px 3px 7px;
3124
- }
3125
-
3126
- .support-container p {
3127
- font-family: helveticaregular !important;
3128
- }
3129
-
3130
- .support-container {
3131
- padding: 7px 4px;
3132
- }
3133
-
3134
- .have-questions {
3135
- text-align: center;
3136
- font-size: 20px;
3137
- }
3138
-
3139
- .have-questions img {
3140
- width: 45px;
3141
- display: inline-block;
3142
- }
3143
-
3144
- .have-questions .have-quest {
3145
- display: inline-block;
3146
- font-size: 20px;
3147
- font-weight: 700;
3148
- margin: 0;
3149
- vertical-align: top;
3150
- margin-top: 13px;
3151
- }
3152
-
3153
- .have-questions .ask-question {
3154
- margin-bottom: 3px !important;
3155
- margin-top: 2px !important;
3156
- }
3157
-
3158
- .support-forum-green-bg {
3159
- margin-top: 5px;
3160
- margin-left: 20px;
3161
- background: #26B654;
3162
- width: 145px;
3163
- border-radius: 5px;
3164
- padding: 10px 16px 8px 15px;
3165
- }
3166
-
3167
- .support-forum-green-bg img {
3168
- display: inline-block;
3169
- padding-right: 5px;
3170
- vertical-align: top;
3171
- margin-top: 3px;
3172
- }
3173
-
3174
- .support-forum-green-div p.support-forum {
3175
- display: inline-block;
3176
- color: #fff;
3177
- font-weight: 700;
3178
- margin: 0 !important;
3179
- }
3180
-
3181
- .support-forum-green-div a {
3182
- text-decoration: none !important;
3183
- }
3184
-
3185
- .respond-text p {
3186
- margin: 10px 0 0 0px !important
3187
- }
3188
-
3189
- .respond-text {
3190
- margin-left: 20px;
3191
- float: left;
3192
- margin-bottom: 8px;
3193
- }
3194
-
3195
- #accordion,
3196
- #accordion1 {
3197
- float: left;
3198
- clear: both;
3199
- width: 100%;
3200
- }
3201
-
3202
- @media (min-width: 1631px) and (max-width: 1631px) {
3203
- .premiumComponent {
3204
- width: 52% !important;
3205
- }
3206
-
3207
- .premiumButtonsContainer {
3208
- width: 44% !important;
3209
- }
3210
-
3211
- .premiumButtonsContainer .premiumSection2 {
3212
- width: 41% !important;
3213
- }
3214
-
3215
- .premiumButtonsContainer .premiumSection3 {
3216
- width: 41% !important;
3217
- }
3218
- }
3219
-
3220
- /* Link to support forum for different languages */
3221
- #sfsi_plus_langnotice {
3222
- position: relative;
3223
- padding: 15px 10px;
3224
- margin: 0px 15px 35px 0px;
3225
- }
3226
-
3227
- #sfsi_plus_langnotice .sfsi-notice-dismiss {
3228
- position: absolute;
3229
- right: 1px;
3230
- border: none;
3231
- margin: 0;
3232
- padding: 9px;
3233
- background: none;
3234
- color: #72777c;
3235
- cursor: pointer;
3236
- top: 5px;
3237
- }
3238
-
3239
- /* Link to support forum left of every Save button */
3240
- .ui-accordion .ui-accordion-content {
3241
- position: relative;
3242
- }
3243
-
3244
- .sfsi_plus_askforhelp {
3245
- float: left;
3246
- width: auto;
3247
- position: absolute;
3248
- bottom: 30px;
3249
- }
3250
-
3251
- .sfsi_plus_askforhelp img {
3252
- float: left;
3253
- width: 35px;
3254
- height: 35px;
3255
- vertical-align: middle;
3256
- }
3257
-
3258
- .sfsi_plus_askforhelp span {
3259
- float: left;
3260
- margin-left: 6px;
3261
- margin-top: 8px;
3262
- }
3263
-
3264
- .askhelpInview2 {
3265
- bottom: 25px;
3266
- }
3267
-
3268
- .askhelpInview3 {
3269
- bottom: 51px;
3270
- }
3271
-
3272
- .askhelpInview7 {
3273
- bottom: 50px;
3274
- }
3275
-
3276
- .ulSuppressErrors {
3277
- margin-top: 20px !important;
3278
- }
3279
-
3280
- .ulSuppressErrors li {
3281
- float: left;
3282
- }
3283
-
3284
- div#sfsi_plus_addThis_removal_notice {
3285
- padding: 10px;
3286
- margin-left: 0px;
3287
- position: relative;
3288
- }
3289
-
3290
- div#sfsi_plus_langnotice {
3291
- padding: 10px;
3292
- margin-left: 0px;
3293
- position: relative;
3294
- }
3295
-
3296
-
3297
- .clear {
3298
- clear: both;
3299
- }
3300
-
3301
- .show {
3302
- display: block;
3303
- }
3304
-
3305
- .hide {
3306
- display: none;
3307
- }
3308
-
3309
- .zeropadding {
3310
- padding: 0px !important;
3311
- }
3312
-
3313
- .zerotoppadding {
3314
- padding-top: 0px !important;
3315
- }
3316
-
3317
- .zerobottompadding {
3318
- padding-bottom: 0px !important;
3319
- }
3320
-
3321
- .zerotopmargin {
3322
- margin-top: 0px !important;
3323
- }
3324
-
3325
- .rowpadding10 {
3326
- padding: 10px 0 !important;
3327
- }
3328
-
3329
- .rowmarginleft15 {
3330
- margin-left: 15px !important;
3331
- }
3332
-
3333
- .rowmarginleft25 {
3334
- margin-left: 25px !important;
3335
- }
3336
-
3337
- .rowmarginleft45 {
3338
- margin-left: 45px !important;
3339
- }
3340
-
3341
- .bottommargin20 {
3342
- margin-bottom: 20px !important;
3343
- }
3344
-
3345
- .bottommargin30 {
3346
- margin-bottom: 30px !important;
3347
- }
3348
-
3349
- .bottommargin40 {
3350
- margin-bottom: 40px !important;
3351
- }
3352
-
3353
- .inactiveSection {
3354
- opacity: 0.2;
3355
- pointer-events: none;
3356
- }
3357
-
3358
- /* */
3359
- .tab3 .sub_row {
3360
- float: left;
3361
- margin: 35px 0 0 4%;
3362
- width: 80%;
3363
- }
3364
-
3365
- .tab3 .sub_row label {
3366
- float: left;
3367
- margin: 0 0px 0 10px;
3368
- line-height: 36px;
3369
- font-size: 18px;
3370
- }
3371
-
3372
- .tab3 .sub_row .effectContainer {
3373
- float: left;
3374
- width: 100%;
3375
- margin-left: 45px;
3376
- }
3377
-
3378
- .tab3 .sub_row .effectName {
3379
- float: left;
3380
- width: 25%;
3381
- }
3382
-
3383
- .tab3 .tab_3_sav {
3384
- padding-top: 0;
3385
- margin: 0px auto 10px;
3386
- position: relative;
3387
- z-index: 9;
3388
- }
3389
-
3390
- .tab3 .Shuffle_auto {
3391
- float: left;
3392
- width: 80%;
3393
- clear: both;
3394
- }
3395
-
3396
- .tab3 #animationSection label {
3397
- font-family: 'helveticaneue-light';
3398
- }
3399
-
3400
- .tab3 select[name='mouseover_other_icons_transition_effect'] {
3401
- margin-left: 10px;
3402
- padding: 0px 11px;
3403
- margin-top: 4px;
3404
- font-size: 15px;
3405
- border-radius: 5px;
3406
- }
3407
-
3408
- .tab3 .other_icons_effects_options .mouseover_other_icon_label {
3409
- float: left;
3410
- width: 30%;
3411
- font-size: 16px;
3412
- }
3413
-
3414
- .tab3 .mouse-over-effects span.radio {
3415
- float: left;
3416
- display: inline-block;
3417
- }
3418
-
3419
- .tab3 .same_icons_effects label span {
3420
- float: left;
3421
- clear: both;
3422
- line-height: 20px;
3423
- }
3424
-
3425
- .tab3 .same_icons_effects label span:nth-child(2) {
3426
- font-size: 14px;
3427
- }
3428
-
3429
- .tab3 .other_icons_effects_options .mouseover_other_icon_img {
3430
- float: left;
3431
- width: 40px;
3432
- height: 40px;
3433
- }
3434
-
3435
- .tab3 .other_icons_effects_options .mouseover_other_icon_change_link,
3436
- .tab3 .other_icons_effects_options .mouseover_other_icon_revert_link {
3437
- float: left;
3438
- color: #337ab7;
3439
- margin-left: 15px;
3440
- padding: 5px 0px;
3441
- font-size: 15px;
3442
- text-decoration: underline;
3443
- }
3444
-
3445
- /* MZ CSS */
3446
- .notopborder {
3447
- border-top: none !important;
3448
- }
3449
-
3450
-
3451
- /* MZ CSS END */
3452
- .mouseover-premium-notice {}
3453
-
3454
- .mouseover-premium-notice label {
3455
- width: auto !important;
3456
- margin: 0 !important;
3457
- }
3458
-
3459
- .mouseover-premium-notice a {
3460
- float: left;
3461
- color: #12a252 !important;
3462
- padding-top: 5px;
3463
- margin-left: 5px;
3464
- font-size: 18px;
3465
- }
3466
-
3467
- @media (min-width:414px) and (max-width: 736px) and (orientation:portrait) {
3468
- .tab3 .sub_row {
3469
- width: 100%;
3470
- }
3471
-
3472
- .tab3 .sub_row .effectContainer {
3473
- margin-left: 25px;
3474
- margin-bottom: 0px;
3475
- clear: both;
3476
- }
3477
-
3478
- .tab3 .sub_row .effectName {
3479
- width: 100%;
3480
- margin-bottom: 25px
3481
- }
3482
-
3483
- .rowmarginleft45 {
3484
- margin-left: 0px !important;
3485
- }
3486
-
3487
- .bottommargin40 {
3488
- margin-bottom: 0px !important;
3489
- }
3490
- }
3491
-
3492
- @media (min-width:414px) and (max-width: 736px) and (orientation:landscape) {
3493
- .tab3 .sub_row {
3494
- width: 100%;
3495
- }
3496
-
3497
- .tab3 .sub_row .effectContainer {
3498
- margin-left: 25px;
3499
- margin-bottom: 0px;
3500
- clear: both;
3501
- }
3502
-
3503
- .tab3 .sub_row .effectName {
3504
- width: 50%;
3505
- margin-bottom: 25px
3506
- }
3507
-
3508
- .rowmarginleft45 {
3509
- margin-left: 25px !important;
3510
- }
3511
-
3512
- .bottommargin40 {
3513
- margin-bottom: 0px !important;
3514
- }
3515
- }
3516
-
3517
- @media (min-width:1024px) and (max-width: 1366px) and (orientation:portrait) {}
3518
-
3519
- @media (min-width:1024px) and (max-width: 1366px) and (orientation:landscape) {
3520
- .tab3 .sub_row .effectName {
3521
- width: 40%;
3522
- }
3523
-
3524
- .tab3 .sub_row label {
3525
- width: 75%;
3526
- }
3527
- }
3528
-
3529
- @media (min-width:768px) and (max-width: 1024px) and (orientation:portrait) {
3530
- .tab3 .sub_row {
3531
- width: 100%;
3532
- }
3533
-
3534
- .tab3 .sub_row .effectContainer {
3535
- margin-bottom: 25px;
3536
- clear: both;
3537
- }
3538
-
3539
- .tab3 .sub_row .effectName {
3540
- width: 50%;
3541
- }
3542
-
3543
- .tab3 .sub_row label {
3544
- width: 77%;
3545
- }
3546
- }
3547
-
3548
- /* */
3549
-
3550
- .col-lg-1,
3551
- .col-lg-10,
3552
- .col-lg-11,
3553
- .col-lg-12,
3554
- .col-lg-2,
3555
- .col-lg-3,
3556
- .col-lg-4,
3557
- .col-lg-5,
3558
- .col-lg-6,
3559
- .col-lg-7,
3560
- .col-lg-8,
3561
- .col-lg-9,
3562
- .col-md-1,
3563
- .col-md-10,
3564
- .col-md-11,
3565
- .col-md-12,
3566
- .col-md-2,
3567
- .col-md-3,
3568
- .col-md-4,
3569
- .col-md-5,
3570
- .col-md-6,
3571
- .col-md-7,
3572
- .col-md-8,
3573
- .col-md-9,
3574
- .col-sm-1,
3575
- .col-sm-10,
3576
- .col-sm-11,
3577
- .col-sm-12,
3578
- .col-sm-2,
3579
- .col-sm-3,
3580
- .col-sm-4,
3581
- .col-sm-5,
3582
- .col-sm-6,
3583
- .col-sm-7,
3584
- .col-sm-8,
3585
- .col-sm-9,
3586
- .col-xs-1,
3587
- .col-xs-10,
3588
- .col-xs-11,
3589
- .col-xs-12,
3590
- .col-xs-2,
3591
- .col-xs-3,
3592
- .col-xs-4,
3593
- .col-xs-5,
3594
- .col-xs-6,
3595
- .col-xs-7,
3596
- .col-xs-8,
3597
- .col-xs-9 {
3598
- position: relative;
3599
- min-height: 1px;
3600
- padding-right: 15px;
3601
- padding-left: 15px;
3602
- }
3603
-
3604
- @media (min-width: 992px) {
3605
- .col-md-3 {
3606
- width: 25%;
3607
- }
3608
-
3609
- .col-md-1,
3610
- .col-md-10,
3611
- .col-md-11,
3612
- .col-md-12,
3613
- .col-md-2,
3614
- .col-md-3,
3615
- .col-md-4,
3616
- .col-md-5,
3617
- .col-md-6,
3618
- .col-md-7,
3619
- .col-md-8,
3620
- .col-md-9 {
3621
- float: left;
3622
- }
3623
-
3624
- .col-md-12 {
3625
- width: 100%
3626
- }
3627
-
3628
- .col-md-11 {
3629
- width: 91.66666667%
3630
- }
3631
-
3632
- .col-md-10 {
3633
- width: 83.33333333%
3634
- }
3635
-
3636
- .col-md-9 {
3637
- width: 75%
3638
- }
3639
-
3640
- .col-md-8 {
3641
- width: 66.66666667%
3642
- }
3643
-
3644
- .col-md-7 {
3645
- width: 58.33333333%
3646
- }
3647
-
3648
- .col-md-6 {
3649
- width: 50%
3650
- }
3651
-
3652
- .col-md-5 {
3653
- width: 41.66666667%
3654
- }
3655
-
3656
- .col-md-4 {
3657
- width: 33.33333333%
3658
- }
3659
-
3660
- .col-md-3 {
3661
- width: 25%
3662
- }
3663
-
3664
- .col-md-2 {
3665
- width: 16.66666667%
3666
- }
3667
-
3668
- .col-md-1 {
3669
- width: 8.33333333%
3670
- }
3671
-
3672
- .col-md-pull-12 {
3673
- right: 100%
3674
- }
3675
-
3676
- .col-md-pull-11 {
3677
- right: 91.66666667%
3678
- }
3679
-
3680
- .col-md-pull-10 {
3681
- right: 83.33333333%
3682
- }
3683
-
3684
- .col-md-pull-9 {
3685
- right: 75%
3686
- }
3687
-
3688
- .col-md-pull-8 {
3689
- right: 66.66666667%
3690
- }
3691
-
3692
- .col-md-pull-7 {
3693
- right: 58.33333333%
3694
- }
3695
-
3696
- .col-md-pull-6 {
3697
- right: 50%
3698
- }
3699
-
3700
- .col-md-pull-5 {
3701
- right: 41.66666667%
3702
- }
3703
-
3704
- .col-md-pull-4 {
3705
- right: 33.33333333%
3706
- }
3707
-
3708
- .col-md-pull-3 {
3709
- right: 25%
3710
- }
3711
-
3712
- .col-md-pull-2 {
3713
- right: 16.66666667%
3714
- }
3715
-
3716
- .col-md-pull-1 {
3717
- right: 8.33333333%
3718
- }
3719
-
3720
- .col-md-pull-0 {
3721
- right: auto
3722
- }
3723
-
3724
- .col-md-push-12 {
3725
- left: 100%
3726
- }
3727
-
3728
- .col-md-push-11 {
3729
- left: 91.66666667%
3730
- }
3731
-
3732
- .col-md-push-10 {
3733
- left: 83.33333333%
3734
- }
3735
-
3736
- .col-md-push-9 {
3737
- left: 75%
3738
- }
3739
-
3740
- .col-md-push-8 {
3741
- left: 66.66666667%
3742
- }
3743
-
3744
- .col-md-push-7 {
3745
- left: 58.33333333%
3746
- }
3747
-
3748
- .col-md-push-6 {
3749
- left: 50%
3750
- }
3751
-
3752
- .col-md-push-5 {
3753
- left: 41.66666667%
3754
- }
3755
-
3756
- .col-md-push-4 {
3757
- left: 33.33333333%
3758
- }
3759
-
3760
- .col-md-push-3 {
3761
- left: 25%
3762
- }
3763
-
3764
- .col-md-push-2 {
3765
- left: 16.66666667%
3766
- }
3767
-
3768
- .col-md-push-1 {
3769
- left: 8.33333333%
3770
- }
3771
-
3772
- .col-md-push-0 {
3773
- left: auto
3774
- }
3775
-
3776
- .col-md-offset-12 {
3777
- margin-left: 100%
3778
- }
3779
-
3780
- .col-md-offset-11 {
3781
- margin-left: 91.66666667%
3782
- }
3783
-
3784
- .col-md-offset-10 {
3785
- margin-left: 83.33333333%
3786
- }
3787
-
3788
- .col-md-offset-9 {
3789
- margin-left: 75%
3790
- }
3791
-
3792
- .col-md-offset-8 {
3793
- margin-left: 66.66666667%
3794
- }
3795
-
3796
- .col-md-offset-7 {
3797
- margin-left: 58.33333333%
3798
- }
3799
-
3800
- .col-md-offset-6 {
3801
- margin-left: 50%
3802
- }
3803
-
3804
- .col-md-offset-5 {
3805
- margin-left: 41.66666667%
3806
- }
3807
-
3808
- .col-md-offset-4 {
3809
- margin-left: 33.33333333%
3810
- }
3811
-
3812
- .col-md-offset-3 {
3813
- margin-left: 25%
3814
- }
3815
-
3816
- .col-md-offset-2 {
3817
- margin-left: 16.66666667%
3818
- }
3819
-
3820
- .col-md-offset-1 {
3821
- margin-left: 8.33333333%
3822
- }
3823
-
3824
- .col-md-offset-0 {
3825
- margin-left: 0
3826
- }
3827
- }
3828
-
3829
- @media (min-width:768px) {
3830
-
3831
- .col-sm-1,
3832
- .col-sm-10,
3833
- .col-sm-11,
3834
- .col-sm-12,
3835
- .col-sm-2,
3836
- .col-sm-3,
3837
- .col-sm-4,
3838
- .col-sm-5,
3839
- .col-sm-6,
3840
- .col-sm-7,
3841
- .col-sm-8,
3842
- .col-sm-9 {
3843
- float: left
3844
- }
3845
-
3846
- .col-sm-12 {
3847
- width: 100%
3848
- }
3849
-
3850
- .col-sm-11 {
3851
- width: 91.66666667%
3852
- }
3853
-
3854
- .col-sm-10 {
3855
- width: 83.33333333%
3856
- }
3857
-
3858
- .col-sm-9 {
3859
- width: 75%
3860
- }
3861
-
3862
- .col-sm-8 {
3863
- width: 66.66666667%
3864
- }
3865
-
3866
- .col-sm-7 {
3867
- width: 58.33333333%
3868
- }
3869
-
3870
- .col-sm-6 {
3871
- width: 50%
3872
- }
3873
-
3874
- .col-sm-5 {
3875
- width: 41.66666667%
3876
- }
3877
-
3878
- .col-sm-4 {
3879
- width: 33.33333333%
3880
- }
3881
-
3882
- .col-sm-3 {
3883
- width: 25%
3884
- }
3885
-
3886
- .col-sm-2 {
3887
- width: 16.66666667%
3888
- }
3889
-
3890
- .col-sm-1 {
3891
- width: 8.33333333%
3892
- }
3893
-
3894
- .col-sm-pull-12 {
3895
- right: 100%
3896
- }
3897
-
3898
- .col-sm-pull-11 {
3899
- right: 91.66666667%
3900
- }
3901
-
3902
- .col-sm-pull-10 {
3903
- right: 83.33333333%
3904
- }
3905
-
3906
- .col-sm-pull-9 {
3907
- right: 75%
3908
- }
3909
-
3910
- .col-sm-pull-8 {
3911
- right: 66.66666667%
3912
- }
3913
-
3914
- .col-sm-pull-7 {
3915
- right: 58.33333333%
3916
- }
3917
-
3918
- .col-sm-pull-6 {
3919
- right: 50%
3920
- }
3921
-
3922
- .col-sm-pull-5 {
3923
- right: 41.66666667%
3924
- }
3925
-
3926
- .col-sm-pull-4 {
3927
- right: 33.33333333%
3928
- }
3929
-
3930
- .col-sm-pull-3 {
3931
- right: 25%
3932
- }
3933
-
3934
- .col-sm-pull-2 {
3935
- right: 16.66666667%
3936
- }
3937
-
3938
- .col-sm-pull-1 {
3939
- right: 8.33333333%
3940
- }
3941
-
3942
- .col-sm-pull-0 {
3943
- right: auto
3944
- }
3945
-
3946
- .col-sm-push-12 {
3947
- left: 100%
3948
- }
3949
-
3950
- .col-sm-push-11 {
3951
- left: 91.66666667%
3952
- }
3953
-
3954
- .col-sm-push-10 {
3955
- left: 83.33333333%
3956
- }
3957
-
3958
- .col-sm-push-9 {
3959
- left: 75%
3960
- }
3961
-
3962
- .col-sm-push-8 {
3963
- left: 66.66666667%
3964
- }
3965
-
3966
- .col-sm-push-7 {
3967
- left: 58.33333333%
3968
- }
3969
-
3970
- .col-sm-push-6 {
3971
- left: 50%
3972
- }
3973
-
3974
- .col-sm-push-5 {
3975
- left: 41.66666667%
3976
- }
3977
-
3978
- .col-sm-push-4 {
3979
- left: 33.33333333%
3980
- }
3981
-
3982
- .col-sm-push-3 {
3983
- left: 25%
3984
- }
3985
-
3986
- .col-sm-push-2 {
3987
- left: 16.66666667%
3988
- }
3989
-
3990
- .col-sm-push-1 {
3991
- left: 8.33333333%
3992
- }
3993
-
3994
- .col-sm-push-0 {
3995
- left: auto
3996
- }
3997
-
3998
- .col-sm-offset-12 {
3999
- margin-left: 100%
4000
- }
4001
-
4002
- .col-sm-offset-11 {
4003
- margin-left: 91.66666667%
4004
- }
4005
-
4006
- .col-sm-offset-10 {
4007
- margin-left: 83.33333333%
4008
- }
4009
-
4010
- .col-sm-offset-9 {
4011
- margin-left: 75%
4012
- }
4013
-
4014
- .col-sm-offset-8 {
4015
- margin-left: 66.66666667%
4016
- }
4017
-
4018
- .col-sm-offset-7 {
4019
- margin-left: 58.33333333%
4020
- }
4021
-
4022
- .col-sm-offset-6 {
4023
- margin-left: 50%
4024
- }
4025
-
4026
- .col-sm-offset-5 {
4027
- margin-left: 41.66666667%
4028
- }
4029
-
4030
- .col-sm-offset-4 {
4031
- margin-left: 33.33333333%
4032
- }
4033
-
4034
- .col-sm-offset-3 {
4035
- margin-left: 25%
4036
- }
4037
-
4038
- .col-sm-offset-2 {
4039
- margin-left: 16.66666667%
4040
- }
4041
-
4042
- .col-sm-offset-1 {
4043
- margin-left: 8.33333333%
4044
- }
4045
-
4046
- .col-sm-offset-0 {
4047
- margin-left: 0
4048
- }
4049
- }
4050
-
4051
- @media (min-width:1200px) {
4052
-
4053
- .col-lg-1,
4054
- .col-lg-10,
4055
- .col-lg-11,
4056
- .col-lg-12,
4057
- .col-lg-2,
4058
- .col-lg-3,
4059
- .col-lg-4,
4060
- .col-lg-5,
4061
- .col-lg-6,
4062
- .col-lg-7,
4063
- .col-lg-8,
4064
- .col-lg-9 {
4065
- float: left
4066
- }
4067
-
4068
- .col-lg-12 {
4069
- width: 100%
4070
- }
4071
-
4072
- .col-lg-11 {
4073
- width: 91.66666667%
4074
- }
4075
-
4076
- .col-lg-10 {
4077
- width: 83.33333333%
4078
- }
4079
-
4080
- .col-lg-9 {
4081
- width: 75%
4082
- }
4083
-
4084
- .col-lg-8 {
4085
- width: 66.66666667%
4086
- }
4087
-
4088
- .col-lg-7 {
4089
- width: 58.33333333%
4090
- }
4091
-
4092
- .col-lg-6 {
4093
- width: 50%
4094
- }
4095
-
4096
- .col-lg-5 {
4097
- width: 41.66666667%
4098
- }
4099
-
4100
- .col-lg-4 {
4101
- width: 33.33333333%
4102
- }
4103
-
4104
- .col-lg-3 {
4105
- width: 25%
4106
- }
4107
-
4108
- .col-lg-2 {
4109
- width: 16.66666667%
4110
- }
4111
-
4112
- .col-lg-1 {
4113
- width: 8.33333333%
4114
- }
4115
-
4116
- .col-lg-pull-12 {
4117
- right: 100%
4118
- }
4119
-
4120
- .col-lg-pull-11 {
4121
- right: 91.66666667%
4122
- }
4123
-
4124
- .col-lg-pull-10 {
4125
- right: 83.33333333%
4126
- }
4127
-
4128
- .col-lg-pull-9 {
4129
- right: 75%
4130
- }
4131
-
4132
- .col-lg-pull-8 {
4133
- right: 66.66666667%
4134
- }
4135
-
4136
- .col-lg-pull-7 {
4137
- right: 58.33333333%
4138
- }
4139
-
4140
- .col-lg-pull-6 {
4141
- right: 50%
4142
- }
4143
-
4144
- .col-lg-pull-5 {
4145
- right: 41.66666667%
4146
- }
4147
-
4148
- .col-lg-pull-4 {
4149
- right: 33.33333333%
4150
- }
4151
-
4152
- .col-lg-pull-3 {
4153
- right: 25%
4154
- }
4155
-
4156
- .col-lg-pull-2 {
4157
- right: 16.66666667%
4158
- }
4159
-
4160
- .col-lg-pull-1 {
4161
- right: 8.33333333%
4162
- }
4163
-
4164
- .col-lg-pull-0 {
4165
- right: auto
4166
- }
4167
-
4168
- .col-lg-push-12 {
4169
- left: 100%
4170
- }
4171
-
4172
- .col-lg-push-11 {
4173
- left: 91.66666667%
4174
- }
4175
-
4176
- .col-lg-push-10 {
4177
- left: 83.33333333%
4178
- }
4179
-
4180
- .col-lg-push-9 {
4181
- left: 75%
4182
- }
4183
-
4184
- .col-lg-push-8 {
4185
- left: 66.66666667%
4186
- }
4187
-
4188
- .col-lg-push-7 {
4189
- left: 58.33333333%
4190
- }
4191
-
4192
- .col-lg-push-6 {
4193
- left: 50%
4194
- }
4195
-
4196
- .col-lg-push-5 {
4197
- left: 41.66666667%
4198
- }
4199
-
4200
- .col-lg-push-4 {
4201
- left: 33.33333333%
4202
- }
4203
-
4204
- .col-lg-push-3 {
4205
- left: 25%
4206
- }
4207
-
4208
- .col-lg-push-2 {
4209
- left: 16.66666667%
4210
- }
4211
-
4212
- .col-lg-push-1 {
4213
- left: 8.33333333%
4214
- }
4215
-
4216
- .col-lg-push-0 {
4217
- left: auto
4218
- }
4219
-
4220
- .col-lg-offset-12 {
4221
- margin-left: 100%
4222
- }
4223
-
4224
- .col-lg-offset-11 {
4225
- margin-left: 91.66666667%
4226
- }
4227
-
4228
- .col-lg-offset-10 {
4229
- margin-left: 83.33333333%
4230
- }
4231
-
4232
- .col-lg-offset-9 {
4233
- margin-left: 75%
4234
- }
4235
-
4236
- .col-lg-offset-8 {
4237
- margin-left: 66.66666667%
4238
- }
4239
-
4240
- .col-lg-offset-7 {
4241
- margin-left: 58.33333333%
4242
- }
4243
-
4244
- .col-lg-offset-6 {
4245
- margin-left: 50%
4246
- }
4247
-
4248
- .col-lg-offset-5 {
4249
- margin-left: 41.66666667%
4250
- }
4251
-
4252
- .col-lg-offset-4 {
4253
- margin-left: 33.33333333%
4254
- }
4255
-
4256
- .col-lg-offset-3 {
4257
- margin-left: 25%
4258
- }
4259
-
4260
- .col-lg-offset-2 {
4261
- margin-left: 16.66666667%
4262
- }
4263
-
4264
- .col-lg-offset-1 {
4265
- margin-left: 8.33333333%
4266
- }
4267
-
4268
- .col-lg-offset-0 {
4269
- margin-left: 0
4270
- }
4271
- }
4272
-
4273
- #sfsi_plus_jivo_offline_chat {
4274
- position: fixed;
4275
- bottom: 0;
4276
- right: 30px;
4277
- height: 350px;
4278
- min-width: 45%;
4279
- background: #fff;
4280
- border-top-left-radius: 30px;
4281
- border-top-right-radius: 30px;
4282
- padding: 10px;
4283
- border: 3px solid #ddd;
4284
- border-bottom: 0;
4285
- }
4286
-
4287
- #sfsi_plus_jivo_offline_chat .heading-text {
4288
- font-size: 16px;
4289
- font-weight: 500;
4290
- color: #999;
4291
- }
4292
-
4293
- #sfsi_plus_jivo_offline_chat .heading-text a {
4294
- font-size: 16px;
4295
- font-weight: 900;
4296
- color: #999;
4297
- }
4298
-
4299
- #sfsi_plus_jivo_offline_chat .tab-changer {
4300
- /*width:100%;*/
4301
- padding: 0 15px;
4302
-
4303
- }
4304
-
4305
- #sfsi_plus_jivo_offline_chat .tab-changer .tab-link {
4306
- float: left;
4307
- width: 50%;
4308
- text-align: center;
4309
- background: #eee;
4310
- border-bottom: 5px solid #24497B;
4311
- }
4312
-
4313
- #sfsi_plus_jivo_offline_chat .tab-changer .tab-link:first-child {
4314
- border-top-left-radius: 8px;
4315
- }
4316
-
4317
- #sfsi_plus_jivo_offline_chat .tab-changer .tab-link:last-child {
4318
- border-top-right-radius: 8px;
4319
- }
4320
-
4321
- #sfsi_plus_jivo_offline_chat .tab-changer .tab-link p {
4322
- background: #eee;
4323
- padding: 5px 0;
4324
- margin: 0;
4325
- border-top-left-radius: 10px;
4326
- border-top-right-radius: 10px;
4327
- font-size: 25px;
4328
- cursor: pointer;
4329
- line-height: 1;
4330
- }
4331
-
4332
- #sfsi_plus_jivo_offline_chat .tab-changer .tab-link p span {
4333
- font-size: 15px;
4334
- }
4335
-
4336
- #sfsi_plus_jivo_offline_chat .tab-changer .tab-link.active p {
4337
- background: #24497B;
4338
- color: #fff;
4339
- }
4340
-
4341
- #sfsi_plus_jivo_offline_chat .tabs {
4342
- /*background: #dbeef4;*/
4343
- background: #ddd;
4344
- margin: -6px 15px 0 15px;
4345
- min-height: 250px;
4346
- }
4347
-
4348
- #sfsi_plus_jivo_offline_chat #sfsi_technical {
4349
- padding: 50px;
4350
- }
4351
-
4352
- #sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div {
4353
- margin: 10px 0;
4354
- }
4355
-
4356
- #sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div a {
4357
- padding: 20px 26px 18px 25px;
4358
- width: 245px;
4359
- margin: 0;
4360
- }
4361
-
4362
- #sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div a img {
4363
- margin-top: 11px;
4364
- }
4365
-
4366
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_technical p {
4367
- font-size: 20px;
4368
- padding-top: 5px;
4369
- margin: 0;
4370
- }
4371
-
4372
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales {
4373
- padding: 15px;
4374
- }
4375
-
4376
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .right-message {
4377
- width: 50%;
4378
- float: right;
4379
- text-align: right;
4380
- margin: 0;
4381
- }
4382
-
4383
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales form>div {
4384
- margin-top: 5px;
4385
- }
4386
-
4387
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales label {
4388
- font-size: 20px;
4389
- color: #000;
4390
- font-weight: 900;
4391
- padding-bottom: 5px;
4392
- }
4393
-
4394
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input,
4395
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales textarea {
4396
- margin-top: 5px;
4397
- width: 100%;
4398
- border: 0;
4399
- box-shadow: 0 0 5px 0 #888;
4400
- }
4401
-
4402
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input {
4403
- height: 40px;
4404
- }
4405
-
4406
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales textarea {
4407
- height: 80px;
4408
- resize: none;
4409
- }
4410
-
4411
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4412
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4413
- border: 0;
4414
- background: #079345;
4415
- color: #fff;
4416
- margin-top: 23px;
4417
- width: 100%;
4418
- font-size: 16px;
4419
- border-radius: 4px;
4420
- cursor: pointer;
4421
- box-shadow: none;
4422
- }
4423
-
4424
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent {
4425
- text-align: center;
4426
- }
4427
-
4428
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4429
- font-size: 35px;
4430
- }
4431
-
4432
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4433
- font-size: 25px;
4434
- font-weight: 300;
4435
- }
4436
-
4437
- #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4438
- width: auto;
4439
- margin-top: 0;
4440
- padding: 10px;
4441
- }
4442
-
4443
- #sfsi_plus_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4444
- font-size: 13px !important;
4445
- font-weight: 900;
4446
- float: right;
4447
- text-align: right;
4448
- margin-top: -40px !important;
4449
- }
4450
-
4451
- #sfsi_plus_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4452
- background-image: url('images/select-arrow.png');
4453
- width: 15px;
4454
- height: 9px;
4455
- display: inline-block;
4456
- -webkit-transform: rotate(90deg);
4457
- -moz-transform: rotate(90deg);
4458
- -ms-transform: rotate(90deg);
4459
- -o-transform: rotate(90deg);
4460
- transform: rotate(90deg);
4461
- }
4462
-
4463
- @media (max-width: 543px) {
4464
- #sfsi_plus_jivo_offline_chat {
4465
- width: 400px;
4466
- }
4467
- }
4468
-
4469
- /* MZ CSS */
4470
-
4471
- .sfsiLabel {
4472
- float: left;
4473
- margin-top: -29px;
4474
- margin-left: 37px;
4475
- color: #5a6570;
4476
- text-align: left;
4477
- font-family: 'helveticaneue-light';
4478
- font-size: 17px;
4479
- line-height: 26px;
4480
- min-width: 200px;
4481
- }
4482
-
4483
- .sfsiLabel1 {
4484
- float: left;
4485
- margin-top: 32px;
4486
- margin-left: 100px;
4487
- color: #5a6570;
4488
- text-align: left;
4489
- font-family: 'helveticaneue-light';
4490
- font-size: 17px;
4491
- line-height: 26px;
4492
- min-width: 200px;
4493
- }
4494
-
4495
- .infoLabel {
4496
- margin-left: 89px;
4497
- margin-bottom: 32px;
4498
- float: left;
4499
- margin-top: -13px;
4500
-
4501
- color: #5a6570;
4502
- text-align: left;
4503
- font-family: 'helveticaneue-light';
4504
- font-size: 17px;
4505
- line-height: 26px;
4506
- min-width: 200px;
4507
- }
4508
-
4509
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_1_26 {
4510
- background: url('../images/icons_theme/default/default_wechat.png');
4511
- background-size: contain;
4512
- }
4513
-
4514
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_2_26 {
4515
- background: url('../images/icons_theme/flat/flat_wechat.png');
4516
- background-size: contain;
4517
- }
4518
-
4519
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_3_26 {
4520
- background: url('../images/icons_theme/thin/thin_wechat.png');
4521
- background-size: contain;
4522
- }
4523
-
4524
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_4_26 {
4525
- background: url('../images/icons_theme/cute/cute_wechat.png');
4526
- background-size: contain;
4527
- }
4528
-
4529
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_5_26 {
4530
- background: url('../images/icons_theme/cubes/cubes_wechat.png');
4531
- background-size: contain;
4532
- }
4533
-
4534
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_6_26 {
4535
- background: url('../images/icons_theme/chrome_blue/chrome_blue_wechat.png');
4536
- background-size: contain;
4537
- }
4538
-
4539
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_7_26 {
4540
- background: url('../images/icons_theme/chrome_grey/chrome_grey_wechat.png');
4541
- background-size: contain;
4542
- }
4543
-
4544
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_8_26 {
4545
- background: url('../images/icons_theme/splash/splash_wechat.png');
4546
- background-size: contain;
4547
- }
4548
-
4549
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_9_26 {
4550
- background: url('../images/icons_theme/orange/orange_wechat.png');
4551
- background-size: contain;
4552
- }
4553
-
4554
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_10_26 {
4555
- background: url('../images/icons_theme/crystal/crystal_wechat.png');
4556
- background-size: contain;
4557
- }
4558
-
4559
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_11_26 {
4560
- background: url('../images/icons_theme/glossy/glossy_wechat.png');
4561
- background-size: contain;
4562
- }
4563
-
4564
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_12_26 {
4565
- background: url('../images/icons_theme/black/black_wechat.png');
4566
- background-size: contain;
4567
- }
4568
-
4569
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_13_26 {
4570
- background: url('../images/icons_theme/silver/silver_wechat.png');
4571
- background-size: contain;
4572
- }
4573
-
4574
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_14_26 {
4575
- background: url('../images/icons_theme/shaded_dark/shaded_dark_wechat.png');
4576
- background-size: contain;
4577
- }
4578
-
4579
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_15_26 {
4580
- background: url('../images/icons_theme/shaded_light/shaded_light_wechat.png');
4581
- background-size: contain;
4582
- }
4583
-
4584
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_16_26 {
4585
- background: url('../images/icons_theme/transparent/transparent_wechat.png');
4586
- background-size: contain;
4587
- }
4588
-
4589
- .tab3 .sfsiplus_wechat_section.sfsiplus_row_17_26 {
4590
- background: url('../images/icons_theme/default/default_wechat.png');
4591
- background-size: contain;
4592
- background-position: 0 0;
4593
- }
4594
-
4595
- .sfsi_plus_font_inherit {
4596
- font-family: inherit !important;
4597
- border: 0 !important;
4598
- font-weight: normal !important;
4599
- }
4600
-
4601
- .sfisi_plus_font_bold {
4602
- font-family: helveticabold !important;
4603
- }
4604
-
4605
- .sfsi_plus_instagramInstruction ul>li {
4606
- list-style-type: decimal !important;
4607
- }
4608
-
4609
- .sfsi_plus_instagramInstruction>p {
4610
- list-style-type: decimal !important;
4611
- }
4612
-
4613
- .sfsiplus_houzz_section .sfsiLabel,
4614
- .sfsiplus_ok_section .sfsiLabel,
4615
- .sfsiplus_vk_section .sfsiLabel,
4616
- .sfsiplus_weibo_section .sfsiLabel,
4617
- .sfsiplus_telegram_section .sfsiLabel1 {
4618
- margin-left: 0 !important;
4619
- }
4620
-
4621
- .pop-up {
4622
- font-weight: bold;
4623
- }
4624
-
4625
- .sfsi_plus_quickpay-overlay a {
4626
- display: inline !important;
4627
- font-size: inherit !important;
4628
- text-decoration: underline !important;
4629
- font-weight: 900;
4630
- color: #666;
4631
- }
4632
-
4633
- .sfsi_plus_col_6 {
4634
- width: 49%;
4635
- display: inline-block;
4636
- }
4637
-
4638
- .sfsi_plus_col_6>div {
4639
- padding: 18px 30px !important;
4640
- margin: 20px 0 0 0;
4641
- border: 1px solid #999;
4642
- display: inline-block;
4643
- float: none;
4644
- }
4645
-
4646
- .sfsi_plus_col_6>div:hover {
4647
- background-image: radial-gradient(circle, #fff, #eee);
4648
- }
4649
-
4650
- .vertical-align {
4651
- display: flex;
4652
- align-items: center;
4653
- justify-content: space-between;
4654
- }
4655
-
4656
- .sfsi_vertical_center {
4657
- display: flex;
4658
- align-items: center;
4659
- }
4660
-
4661
- .sfsi_plus_border_left_0 {
4662
- border-left: 0 !important;
4663
- }
4664
-
4665
- .tab8 .sfsi_plus_inputSec input {
4666
- width: 140px !important;
4667
- padding: 13px;
4668
- }
4669
-
4670
- .tab8 .sfsi_plus_inputSec span {
4671
- width: auto;
4672
- }
4673
-
4674
- .tab8 .sfsi_plus_inputSec span {
4675
- display: inline-block;
4676
- font-size: 18px;
4677
- vertical-align: middle;
4678
- width: 200px;
4679
- color: #5A6570;
4680
- }
4681
-
4682
- .sfsi_plus_responsive_icon_item_container {
4683
- height: 40px;
4684
- vertical-align: middle;
4685
- margin-top: auto;
4686
- margin-bottom: auto;
4687
- }
4688
-
4689
- .sfsi_plus_responsive_icon_item_container img {
4690
- padding: 7px;
4691
- vertical-align: middle !important;
4692
- box-shadow: unset !important;
4693
- -webkit-box-shadow: unset !important;
4694
- max-width: 40px !important;
4695
- max-height: 40px;
4696
- }
4697
-
4698
- .sfsi_plus_responsive_icon_item_container span {
4699
- padding: 7px;
4700
- vertical-align: middle !important;
4701
- box-shadow: unset !important;
4702
- -webkit-box-shadow: unset !important;
4703
- line-height: 40px
4704
- }
4705
-
4706
-
4707
- .sfsi_plus_responsive_icon_facebook_container {
4708
- background-color: #336699;
4709
- }
4710
-
4711
- .sfsi_plus_responsive_icon_follow_container {
4712
- background-color: #00B04E;
4713
- }
4714
-
4715
- .sfsi_plus_responsive_icon_twitter_container {
4716
- background-color: #55ACEE;
4717
- }
4718
-
4719
-
4720
- .sfsi_plus_icons_container_box_fully_container {
4721
- flex-wrap: wrap;
4722
- }
4723
-
4724
- .sfsi_plus_icons_container_box_fully_container a {
4725
- flex-basis: auto !important;
4726
- flex-grow: 1;
4727
- flex-shrink: 1;
4728
- }
4729
-
4730
- .sfsi_plus_responsive_icons .sfsi_plus_icons_container span {
4731
- font-family: sans-serif;
4732
- font-size: 15px;
4733
- }
4734
-
4735
- .sfsi_plus_widget_title {
4736
- font-weight: 700;
4737
- line-height: 1.2;
4738
- font-size: 27px;
4739
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
4740
-
4741
- }
4742
-
4743
- .sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container,
4744
- .sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container {
4745
- padding: 0px 20px;
4746
- width: 245px;
4747
- text-align: center;
4748
- margin-right: 8px;
4749
- margin-top: -5px;
4750
- }
4751
-
4752
- .sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container img,
4753
- .sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container img {
4754
- max-height: 25px !important;
4755
- max-width: 40px !important;
4756
- float: left;
4757
- height: 25px;
4758
- }
4759
-
4760
- .sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container span,
4761
- .sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container span {
4762
- color: #ffffff;
4763
- font-size: 20px;
4764
- padding: 0 10px;
4765
- letter-spacing: 0.5px;
4766
- font-weight: 500;
4767
- }
4768
-
4769
- .tab8 .sfsi_plus_responsive_default_icon_container,
4770
- .tab8 .sfsi_plus_responsive_custom_icon_container {
4771
- width: 100% !important;
4772
- max-width: unset !important;
4773
- /* padding-left: 60px!important; */
4774
- }
4775
-
4776
- .tab8 .sfsi_plus_responsive_default_icon_container input,
4777
- .tab8 .sfsi_plus_responsive_custom_icon_container input {
4778
- padding: 8px 11px;
4779
- height: 39px;
4780
- }
4781
-
4782
- .tab8 .heading-label {
4783
- font-size: 18px !important;
4784
- font-weight: 400;
4785
- }
4786
-
4787
- .sfsi_plus_responsive_default_icon_container,
4788
- .sfsi_plus_responsive_custom_icon_container {
4789
- padding: 2px 0 !important;
4790
- }
4791
-
4792
- .sfsi_plus_responsive_default_icon_container .sfsi_plus_responsive_default_url_toggler,
4793
- .sfsi_plus_responsive_custom_icon_container .sfsi_plus_responsive_default_url_toggler,
4794
- .sfsi_plus_responsive_default_icon_container .sfsi_plus_responsive_default_url_hide {
4795
- color: #337ab7 !important;
4796
- font-size: 18px !important;
4797
- letter-spacing: 1px;
4798
- font-weight: 500;
4799
- margin-left: 20px;
4800
- text-decoration: none !important
4801
- }
4802
-
4803
- .sfsi_plus_responsive_fluid {
4804
- text-decoration: none !important;
4805
- }
4806
-
4807
- .sfsi_plus_large_button_container {
4808
- width: calc(100% - 81px) !important;
4809
- }
4810
-
4811
- .sfsi_plus_medium_button_container {
4812
- width: calc(100% - 70px) !important;
4813
- }
4814
-
4815
- .sfsi_plus_small_button_container {
4816
- width: calc(100% - 100px) !important;
4817
- }
4818
-
4819
- /* .sfsi_plus_responsive_custom_icon{line-height: 6px;} */
4820
- /* .sfsi_plus_responsive_fixed_width .sfsi_plus_responsive_custom_icon{line-height: 6px;} */
4821
- /*Override for front end - icon of right height*/
4822
- /* .sfsi_plus_responsive_fluid .sfsi_plus_large_button{padding: 13px !important;} */
4823
- /* .sfsi_plus_responsive_fluid .sfsi_plus_medium_button{padding: 10px !important;} */
4824
-
4825
- .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button {
4826
- padding: 12px 13px 9px 13px !important;
4827
- }
4828
-
4829
- .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button h3 {
4830
- margin: 0px 0px 15px 0px !important;
4831
- }
4832
-
4833
- .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_medium_button {
4834
- padding: 9px 10px 7px 10px !important;
4835
- }
4836
-
4837
- .sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button {
4838
- padding: 12px 13px 9px 13px !important;
4839
- }
4840
-
4841
- .sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button h3 {
4842
- margin: 0px 0px 15px 0px !important;
4843
- }
4844
-
4845
- .sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_medium_button {
4846
- padding: 9px 10px 7px 10px !important;
4847
- }
4848
-
4849
- .sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a .sfsi_plus_responsive_icon_item_container {
4850
- /* white-space: nowrap;
4851
- overflow: hidden;
4852
- text-overflow: ellipsis;*/
4853
- display: inline-block;
4854
- }
4855
-
4856
- .sfsiplus_right_info ul .sfsi_plus_responsive_icon_option_li .options .field .sfsi_plus_responsive_icons_icon_width input,
4857
- .sfsiplus_right_info ul .sfsi_plus_responsive_icon_option_li .options .field input {
4858
- width: 75px !important;
4859
- background: #ffffff;
4860
- box-shadow: none;
4861
- border: 1px solid rgb(221, 221, 221);
4862
- border-radius: 0px;
4863
- }
4864
-
4865
- input[type="number"] {
4866
- height: 45px !important;
4867
- }
4868
- .sfsi_plus_small_button {
4869
- line-height: 0px;
4870
- height: unset;
4871
- padding: 6px !important;
4872
- }
4873
- .sfsi_plus_small_button span {
4874
- margin-left: 10px;
4875
- font-size: 16px;
4876
- padding: 0px;
4877
- line-height: 16px;
4878
- vertical-align: -webkit-baseline-middle !important;
4879
- margin-left: 10px;
4880
- }
4881
- .sfsi_plus_small_button img {
4882
- max-height: 16px !important;
4883
- padding: 0px;
4884
- line-height: 0px;
4885
- vertical-align: -webkit-baseline-middle !important;
4886
- }
4887
- .sfsi_plus_medium_button span {
4888
- margin-left: 10px;
4889
- font-size: 18px;
4890
- padding: 0px;
4891
- line-height: 16px;
4892
- vertical-align: -webkit-baseline-middle !important;
4893
- margin-left: 10px;
4894
- }
4895
- .sfsi_plus_medium_button img {
4896
- max-height: 16px !important;
4897
- padding: 0px;
4898
- line-height: 0px;
4899
- vertical-align: -webkit-baseline-middle !important;
4900
- }
4901
- .sfsi_plus_medium_button {
4902
- line-height: 0px;
4903
- height: unset;
4904
- padding: 10px !important;
4905
- }
4906
-
4907
- .sfsi_plus_medium_button span {
4908
- margin-left: 10px;
4909
- font-size: 18px;
4910
- padding: 0px;
4911
- line-height: 16px;
4912
- vertical-align: -webkit-baseline-middle !important;
4913
- margin-left: 10px;
4914
- }
4915
- .sfsi_plus_medium_button img {
4916
- max-height: 16px !important;
4917
- padding: 0px;
4918
- line-height: 0px;
4919
- vertical-align: -webkit-baseline-middle !important;
4920
- }
4921
- .sfsi_plus_medium_button {
4922
- line-height: 0px;
4923
- height: unset;
4924
- padding: 10px !important;
4925
- }
4926
- .sfsi_plus_large_button span {
4927
- font-size: 20px;
4928
- padding: 0px;
4929
- line-height: 16px;
4930
- vertical-align: -webkit-baseline-middle !important;
4931
- display: inline;
4932
- margin-left: 10px;
4933
- }
4934
- .sfsi_plus_large_button img {
4935
- max-height: 16px !important;
4936
- padding: 0px;
4937
- line-height: 0px;
4938
- vertical-align: -webkit-baseline-middle !important;
4939
- display: inline;
4940
- }
4941
- .sfsi_plus_large_button {
4942
- line-height: 0px;
4943
- height: unset;
4944
- padding: 13px !important;
4945
- }
4946
- .tab8 .sfsi_float_position_icon_label {
4947
- border: 1px solid #ccc;
4948
- border-radius: 18px;
4949
- margin-top: 3px;
4950
- position: relative;
4951
- width: 189px;
4952
- height: 148px;
4953
- float: left;
4954
- }
4955
- .tab8 .sfsi_float_position_icon_label img {
4956
- margin-left: auto;
4957
- margin-right: auto;
4958
- display: block;
4959
- margin-top: 7px;
4960
- }
4961
- .tab8 .sfsi_float_position_icon_label img.sfsi_img_center_bottom {
4962
- position: absolute;
4963
- bottom: 0px;
4964
- left: 18%;
4965
- }
4966
- .tab8 .flthmonpg .radio {
4967
- margin-top: 55px;
4968
- }
4969
- .tab8 ul li .radio {
4970
- float: left;
4971
- }
4972
- @media screen and (max-width: 1366px) and (min-width: 1366px){
4973
- .tab8 .sfsi_flicnsoptn3 {
4974
- font-size: 18px !important;
4975
- min-width: 113px !important;
4976
- margin: 60px 0px 0 10px !important;
4977
- width: auto !important;
4978
- }
4979
- }
4980
- .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns li{
4981
- width:33%;
4982
- min-width:33%;
4983
  }
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'),
23
+ url(fonts/helveticaneue-light.woff) format('woff'),
24
+ url(fonts/helveticaneue-light.ttf) format('truetype'),
25
+ url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
26
+ font-weight: 400;
27
+ font-style: normal;
28
+ }
29
+
30
+ body {
31
+ margin: 0;
32
+ padding: 0;
33
+ }
34
+
35
+ /*Tab 1*/
36
+ .tab1 ul.plus_icn_listing li .custom,
37
+ .tab1 ul.plus_icn_listing li .sfsicls_email,
38
+ .tab1 ul.plus_icn_listing li .sfsicls_facebook,
39
+ .tab1 ul.plus_icn_listing li .sfsicls_ggle_pls,
40
+ .tab1 ul.plus_icn_listing li .sfsicls_instagram,
41
+ .tab1 ul.plus_icn_listing li .sfsicls_telegram,
42
+ .tab1 ul.plus_icn_listing li .sfsicls_ok,
43
+ .tab1 ul.plus_icn_listing li .sfsicls_vk,
44
+ .tab1 ul.plus_icn_listing li .sfsicls_weibo,
45
+ .tab1 ul.plus_icn_listing li .sfsicls_houzz,
46
+ .tab1 ul.plus_icn_listing li .sfsicls_linkdin,
47
+ .tab1 ul.plus_icn_listing li .sfsicls_pinterest,
48
+ .tab1 ul.plus_icn_listing li .sfsicls_rs_s,
49
+ .tab1 ul.plus_icn_listing li .sfsicls_share,
50
+ .tab1 ul.plus_icn_listing li .sfsicls_twt,
51
+ .tab1 ul.plus_icn_listing li .sfsicls_utube,
52
+ .tab1 ul.plus_icn_listing li .sfsicls_wechat {
53
+ background: url(../images/tab_1_icn_list.png) no-repeat;
54
+ float: left;
55
+ padding: 0 0 0 59px;
56
+ margin: 0 0 0 17px;
57
+ height: 52px;
58
+ line-height: 51px;
59
+ font-family: helveticaregular;
60
+ font-size: 22px;
61
+ }
62
+
63
+ .tab1 ul.plus_icn_listing li .sfsicls_wechat,
64
+ .tab1 ul.sfsi_plus_mobile_icon_listing li .sfsicls_wechat {
65
+ background-image: url('../images/icons_theme/default/default_wechat.png');
66
+ -webkit-background-size: contain;
67
+ -moz-background-size: contain;
68
+ -o-background-size: contain;
69
+ background-size: contain;
70
+ }
71
+
72
+ .tab2 .row h2.sfsicls_wechat {
73
+ background-image: url('../images/icons_theme/default/default_wechat.png');
74
+ }
75
+
76
+ .tab1 ul.plus_icn_listing li .sfsicls_rs_s {
77
+ background-position: 0 0;
78
+ color: #f7941d;
79
+ }
80
+
81
+ .tab1 ul.plus_icn_listing li .sfsicls_email {
82
+ background-position: 0 -73px;
83
+ color: #d1c800;
84
+ }
85
+
86
+ .tab1 ul.plus_icn_listing li .sfsicls_facebook {
87
+ background-position: 0 -145px;
88
+ color: #004088;
89
+ }
90
+
91
+ .tab1 ul.plus_icn_listing li .sfsicls_twt {
92
+ background-position: 0 -221px;
93
+ color: #00abe3;
94
+ }
95
+
96
+ .tab1 ul.plus_icn_listing li .sfsicls_ggle_pls {
97
+ background-position: 0 -295px;
98
+ color: #444749;
99
+ }
100
+
101
+ .tab1 ul.plus_icn_listing li .sfsicls_share {
102
+ background-position: 0 -372px;
103
+ color: #ef4746;
104
+ }
105
+
106
+ .tab1 ul.plus_icn_listing li .sfsicls_utube {
107
+ background-position: 0 -448px;
108
+ color: #f07963;
109
+ }
110
+
111
+ .tab1 ul.plus_icn_listing li .sfsicls_linkdin {
112
+ background-position: 0 -548px;
113
+ color: #1e88c9;
114
+ }
115
+
116
+ .tab1 ul.plus_icn_listing li .sfsicls_pinterest {
117
+ background-position: 0 -623px;
118
+ color: #f15f5d;
119
+ }
120
+
121
+ .tab1 ul.plus_icn_listing li .sfsicls_instagram {
122
+ background-position: 0 -781px;
123
+ color: #369;
124
+ }
125
+
126
+ .tab1 ul.plus_icn_listing li .sfsicls_telegram {
127
+ background-position: 0 -1889px;
128
+ color: #369;
129
+ }
130
+
131
+ .tab1 ul.plus_icn_listing li .sfsicls_vk {
132
+ background-position: 0 -1968px;
133
+ color: #369;
134
+ }
135
+
136
+ .tab1 ul.plus_icn_listing li .sfsicls_ok {
137
+ background-position: 0 -1810px;
138
+ color: #369;
139
+ }
140
+
141
+ .sfsicls_wechat {
142
+ background-image: url('../images/icons_theme/default/default_wechat.png');
143
+ -webkit-background-size: contain;
144
+ -moz-background-size: contain;
145
+ -o-background-size: contain;
146
+ background-size: contain;
147
+ }
148
+
149
+ .tab1 ul.plus_icn_listing li .sfsicls_weibo {
150
+ background-position: 0 -2046px;
151
+ color: #369;
152
+ }
153
+
154
+ .tab1 ul.sfsi_premium_mobile_icon_listing li .sfsicls_ok {
155
+ background-position: 0 -1810px;
156
+ color: #369;
157
+ }
158
+
159
+ .tab1 ul.plus_icn_listing li .sfsicls_houzz {
160
+ background-position: 0 -939px;
161
+ color: #369;
162
+ }
163
+
164
+ .tab1 ul.plus_icn_listing li .custom {
165
+ background-position: 0 -702px;
166
+ color: #5a6570;
167
+ }
168
+
169
+ .tab1 ul.plus_icn_listing li .sfsiplus_right_info {
170
+ width: 70%;
171
+ float: right;
172
+ font-family: helveticaregular;
173
+ margin-right: 13px;
174
+ }
175
+
176
+ ul.plus_icn_listing li .sfsiplus_right_info a {
177
+ text-decoration: underline;
178
+ color: #a4a9ad;
179
+ font-size: 16px;
180
+ }
181
+
182
+ ul.sfsiplus_icn_listing8 li .sfsiplus_right_info a {
183
+ text-decoration: underline;
184
+ color: #a4a9ad;
185
+ font-size: 20px;
186
+ }
187
+
188
+ .tab1 .tab_2_sav {
189
+ padding-top: 30px;
190
+ }
191
+
192
+ /*Tab 2*/
193
+ .tab2 .row h2.sfsicls_email,
194
+ .tab2 .row h2.sfsicls_facebook,
195
+ .tab2 .row h2.sfsicls_ggle_pls,
196
+ .tab2 .row h2.sfsicls_instagram,
197
+ .tab2 .row h2.sfsicls_houzz,
198
+ .tab2 .row h2.sfsicls_linkdin,
199
+ .tab2 .row h2.sfsicls_pinterest,
200
+ .tab2 .row h2.sfsicls_rs_s,
201
+ .tab2 .row h2.sfsicls_share,
202
+ .tab2 .row h2.sfsicls_twt,
203
+ .tab2 .row h2.sfsicls_utube,
204
+ .tab2 .row h2.sfsicls_snapchat,
205
+ .tab2 .row h2.sfsicls_whatsapp,
206
+ .tab2 .row h2.sfsicls_skype,
207
+ .tab2 .row h2.sfsicls_vimeo,
208
+ .tab2 .row h2.sfsicls_soundcloud,
209
+ .tab2 .row h2.sfsicls_yummly,
210
+ .tab2 .row h2.sfsicls_flickr,
211
+ .tab2 .row h2.sfsicls_reddit,
212
+ .tab2 .row h2.sfsicls_tumblr,
213
+ .tab2 .row h2.sfsicls_fbmessenger,
214
+ .tab2 .row h2.sfsicls_mix,
215
+ .tab2 .row h2.sfsicls_ok,
216
+ .tab2 .row h2.sfsicls_telegram,
217
+ .tab2 .row h2.sfsicls_vk,
218
+ .tab2 .row h2.sfsicls_weibo,
219
+ .tab2 .row h2.sfsicls_wechat,
220
+ .tab2 .row h2.sfsicls_xing {
221
+ background: url(../images/tab_1_icn_list.png) no-repeat;
222
+ padding: 10px 0 0 70px;
223
+ margin: 15px 0 7px 21px;
224
+ height: 52px;
225
+ line-height: 32px;
226
+ font-family: helveticaregular;
227
+ font-size: 22px;
228
+
229
+ }
230
+
231
+ .tab2 .row h2.sfsicls_rs_s {
232
+ background-position: 0 0;
233
+ color: #f7941d;
234
+ }
235
+
236
+ .tab2 .row h2.sfsicls_email {
237
+ background-position: 0 -71px;
238
+ color: #d1c800;
239
+ }
240
+
241
+ .tab2 .row h2.sfsicls_facebook {
242
+ background-position: 0 -145px;
243
+ color: #004088;
244
+ }
245
+
246
+ .tab2 .row h2.sfsicls_twt {
247
+ background-position: 0 -221px;
248
+ color: #00abe3;
249
+ }
250
+
251
+ .tab2 .row h2.sfsicls_ggle_pls {
252
+ background-position: 0 -295px;
253
+ color: #444749;
254
+ }
255
+
256
+ .tab2 .row h2.sfsicls_share {
257
+ background-position: 0 -372px;
258
+ color: #ef4746;
259
+ }
260
+
261
+ .tab2 .row h2.sfsicls_utube {
262
+ background-position: 0 -448px;
263
+ color: #f07963;
264
+ }
265
+
266
+ .tab2 .row h2.sfsicls_linkdin {
267
+ background-position: 0 -548px;
268
+ color: #1e88c9;
269
+ }
270
+
271
+ .tab2 .row h2.sfsicls_pinterest {
272
+ background-position: 0 -623px;
273
+ color: #f15f5d;
274
+ }
275
+
276
+ .tab2 .row h2.sfsicls_instagram {
277
+ background-position: 0 -781px;
278
+ color: #369;
279
+ }
280
+
281
+ .tab2 .row h2.sfsicls_houzz {
282
+ background-position: 0 -939px;
283
+ color: #7BC043;
284
+ }
285
+
286
+ .tab2 .row h2.sfsicls_snapchat {
287
+ background-position: 0 -1019px;
288
+ color: #369;
289
+ }
290
+
291
+ .tab2 .row h2.sfsicls_whatsapp {
292
+ background-position: 0 -1099px;
293
+ color: #369;
294
+ }
295
+
296
+ .tab2 .row h2.sfsicls_skype {
297
+ background-position: 0 -1179px;
298
+ color: #369;
299
+ }
300
+
301
+ .tab2 .row h2.sfsicls_vimeo {
302
+ background-position: 0 -1257px;
303
+ color: #369;
304
+ }
305
+
306
+ .tab2 .row h2.sfsicls_soundcloud {
307
+ background-position: 0 -1336px;
308
+ color: #369;
309
+ }
310
+
311
+ .tab2 .row h2.sfsicls_yummly {
312
+ background-position: 0 -1415px;
313
+ color: #369;
314
+ }
315
+
316
+ .tab2 .row h2.sfsicls_flickr {
317
+ background-position: 0 -1494px;
318
+ color: #369;
319
+ }
320
+
321
+ .tab2 .row h2.sfsicls_reddit {
322
+ background-position: 0 -1573px;
323
+ color: #369;
324
+ }
325
+
326
+ .tab2 .row h2.sfsicls_tumblr {
327
+ background-position: 0 -1653px;
328
+ color: #369;
329
+ }
330
+
331
+ .tab2 .row h2.sfsicls_fbmessenger {
332
+ background-position: 0 -2206px;
333
+ }
334
+
335
+ .tab2 .row h2.sfsicls_mix {
336
+ background-position: 0 -1732px;
337
+ }
338
+
339
+ .tab2 .row h2.sfsicls_ok {
340
+ background-position: 0 -1810px;
341
+ ;
342
+ color: #DC752B;
343
+ }
344
+
345
+ .tab2 .row h2.sfsicls_telegram {
346
+ background-position: 0 -1889px;
347
+ color: #2E91BC;
348
+ }
349
+
350
+ .tab2 .row h2.sfsicls_vk {
351
+ background-position: 0 -1968px;
352
+ color: #4E77A2;
353
+ }
354
+
355
+ .tab2 .row h2.sfsicls_wechat {
356
+ background-position: 0 -2126px;
357
+ color: #56AD33;
358
+ }
359
+
360
+ .tab2 .row h2.sfsicls_weibo {
361
+ background-position: 0 -2046px;
362
+ color: #B93524;
363
+ }
364
+
365
+ .tab2 .row h2.sfsicls_xing {
366
+ background-position: 0 -2127px;
367
+ }
368
+
369
+ .tab2 .inr_cont {
370
+ margin: 0 0 0px 94px;
371
+ }
372
+
373
+ /*replace*/
374
+
375
+ .tab2 .radio_section.fb_url.cus_link.instagram_space>ul {
376
+ float: left;
377
+ margin: 0 !important;
378
+ width: 100%;
379
+ }
380
+
381
+ .tab2 .radio_section.fb_url.cus_link.instagram_space ul li {
382
+ float: left;
383
+ margin: 10px 0 20px;
384
+ width: 100%;
385
+ }
386
+
387
+ .tab2 .sfsi_plus_pageurl_type {
388
+ display: inline-block;
389
+ float: none !important;
390
+ vertical-align: middle;
391
+ width: 100%;
392
+ }
393
+
394
+ .tab2 .sfsi_plus_pageurl_type .radio {
395
+ display: inline-block;
396
+ float: none !important;
397
+ vertical-align: middle;
398
+ }
399
+
400
+ .tab2 .sfsi_plus_pageurl_type>label {
401
+ float: none !important;
402
+ width: auto !important;
403
+ }
404
+
405
+ .tab2 .sfsi_plus_whatsapp_share_page_container {
406
+ margin-left: 170px;
407
+ }
408
+
409
+ .tab2 .sfsi_plus_whatsapp_share_page_container label {
410
+ float: left !important;
411
+ font-family: "helveticaneue-light";
412
+ font-size: 16px !important;
413
+ margin: 6px 0 0 19px !important;
414
+ width: 100% !important;
415
+ }
416
+
417
+ .tab2 .sfsi_plus_email_icons_content {
418
+ display: inline-block;
419
+ float: none;
420
+ margin: 0 !important;
421
+ vertical-align: top;
422
+ width: 85%;
423
+ }
424
+
425
+ .tab2 .sfsi_plus_email_icons_content textarea.add_txt {
426
+ margin: 0 !important;
427
+ }
428
+
429
+ .tab2 .sfsi_plus_email_icons_content p {
430
+ width: 100%;
431
+ }
432
+
433
+ ul.tab_2_email_sec .sf_arow {
434
+ width: 52px;
435
+ height: 52px;
436
+ float: left;
437
+ background: url(../images/sf_arow_icn.png) no-repeat;
438
+ margin: 0 0px 0 6px;
439
+ }
440
+
441
+ ul.tab_2_email_sec .email_icn {
442
+ background: url(../images/tab_1_icn_list.png) 0 -71px no-repeat;
443
+ width: 60px;
444
+ height: 52px;
445
+ float: left;
446
+ margin: 0 0 0 5px;
447
+ }
448
+
449
+ ul.tab_2_email_sec .subscribe_icn {
450
+ background: url(../images/tab_1_icn_list.png) 0 -860px no-repeat;
451
+ width: 60px;
452
+ height: 52px;
453
+ float: left;
454
+ margin: 0 0 0 5px;
455
+ }
456
+
457
+ ul.tab_2_email_sec li .radio {
458
+ float: left;
459
+ margin: 8px 0 0;
460
+ }
461
+
462
+ .row ul.tab_2_email_sec li label {
463
+ margin: 13px 0 0 7px;
464
+ font-size: 16px;
465
+ float: left;
466
+ width: 160px;
467
+ }
468
+
469
+ .row ul.tab_2_email_sec li label span {
470
+ font-size: 15px;
471
+ color: #808080;
472
+ width: 100%;
473
+ float: left;
474
+ }
475
+
476
+ .tab2 .sfsi_plus_whatsapp_number_container {
477
+ display: inline-block;
478
+ vertical-align: middle;
479
+ width: auto;
480
+ }
481
+
482
+ .tab2 .sfsi_plus_whatsapp_number_container label {
483
+ font-family: "helveticaneue-light";
484
+ font-size: 16px !important;
485
+ margin: 0 0 0 20px !important;
486
+ width: 100% !important;
487
+ float: left !important;
488
+ }
489
+
490
+ .tab2 .radio_section.fb_url.twt_fld_2 p {
491
+ width: 60%;
492
+ float: left;
493
+ margin-left: 237px;
494
+ }
495
+
496
+ .tab2 ul.sfsi_plus_email_functions_container,
497
+ .tab2 ul.sfsi_plus_email_functions_container li {
498
+ width: 100%;
499
+ float: left;
500
+ }
501
+
502
+ .tab2 ul.sfsi_plus_email_functions_container {
503
+ margin: 12px 0 18px 0;
504
+ }
505
+
506
+ .tab2 ul.sfsi_plus_email_functions_container li {
507
+ margin-bottom: 10px;
508
+ }
509
+
510
+ .tab2 ul.sfsi_plus_email_functions_container li .sfsiplusicnsdvwrp,
511
+ .tab2 ul.sfsi_plus_email_functions_container li p {
512
+ width: auto;
513
+ float: left;
514
+ }
515
+
516
+ .tab2 ul.sfsi_plus_email_functions_container li .sfsiplusicnsdvwrp {
517
+ margin-right: 10px;
518
+ }
519
+
520
+ .tab2 ul.sfsi_plus_email_functions_container li p {
521
+ width: 90% !important;
522
+ padding-top: 5px !important;
523
+ }
524
+
525
+ .tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field {
526
+ width: 100%;
527
+ float: left;
528
+ margin: 10px 10px 10px 50px;
529
+ }
530
+
531
+ .tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field label,
532
+ .tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field input {
533
+ width: 110px;
534
+ float: none;
535
+ display: inline-block;
536
+ vertical-align: middle;
537
+ }
538
+
539
+ .tab2 ul.sfsi_plus_email_functions_container li .sfsi_plus_field input {
540
+ width: 380px;
541
+ padding: 10px;
542
+ }
543
+
544
+ /*Tab 3*/
545
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_1,
546
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_10,
547
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_11,
548
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_2,
549
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_3,
550
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_4,
551
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_5,
552
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_6,
553
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_7,
554
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_8,
555
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_9,
556
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_1,
557
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_10,
558
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_11,
559
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_2,
560
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_3,
561
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_4,
562
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_5,
563
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_6,
564
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_7,
565
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_8,
566
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_9,
567
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_1,
568
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_10,
569
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_11,
570
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_2,
571
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_3,
572
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_4,
573
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_5,
574
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_6,
575
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_7,
576
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_8,
577
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_9,
578
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_1,
579
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_10,
580
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_11,
581
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_2,
582
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_3,
583
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_4,
584
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_5,
585
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_6,
586
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_7,
587
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_8,
588
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_9,
589
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_1,
590
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_10,
591
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_11,
592
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_2,
593
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_3,
594
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_4,
595
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_5,
596
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_6,
597
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_7,
598
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_8,
599
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_9,
600
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_1,
601
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_10,
602
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_11,
603
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_2,
604
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_3,
605
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_4,
606
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_5,
607
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_6,
608
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_7,
609
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_8,
610
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_9,
611
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_1,
612
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_10,
613
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_11,
614
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_2,
615
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_3,
616
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_4,
617
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_5,
618
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_6,
619
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_7,
620
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_8,
621
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_9,
622
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_1,
623
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_10,
624
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_11,
625
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_22,
626
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_2,
627
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_3,
628
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_4,
629
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_5,
630
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_6,
631
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_7,
632
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_8,
633
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_9,
634
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_1,
635
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_10,
636
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_11,
637
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_22,
638
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_2,
639
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_3,
640
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_4,
641
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_5,
642
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_6,
643
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_7,
644
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_8,
645
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_9,
646
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_1,
647
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_10,
648
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_11,
649
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_22,
650
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_2,
651
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_3,
652
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_4,
653
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_5,
654
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_6,
655
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_7,
656
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_8,
657
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_9,
658
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_1,
659
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_10,
660
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_11,
661
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_22,
662
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_2,
663
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_3,
664
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_4,
665
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_5,
666
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_6,
667
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_7,
668
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_8,
669
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_9,
670
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_1,
671
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_10,
672
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_11,
673
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_22,
674
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_2,
675
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_3,
676
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_4,
677
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_5,
678
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_6,
679
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_7,
680
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_8,
681
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_9,
682
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_1,
683
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_10,
684
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_11,
685
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_22,
686
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_2,
687
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_3,
688
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_4,
689
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_5,
690
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_6,
691
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_7,
692
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_8,
693
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_9,
694
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_1,
695
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_10,
696
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_11,
697
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_2,
698
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_3,
699
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_4,
700
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_5,
701
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_6,
702
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_7,
703
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_8,
704
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_9,
705
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_1,
706
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_10,
707
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_11,
708
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_2,
709
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_3,
710
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_4,
711
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_5,
712
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_6,
713
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_7,
714
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_8,
715
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_9,
716
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_1,
717
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_10,
718
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_11,
719
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_2,
720
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_3,
721
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_4,
722
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_5,
723
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_6,
724
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_7,
725
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_8,
726
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_9,
727
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_1,
728
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_2,
729
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_3,
730
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_4,
731
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_5,
732
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_6,
733
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_7,
734
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_8,
735
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_9,
736
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_10,
737
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_11,
738
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_22,
739
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_22,
740
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_22,
741
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_22,
742
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_22,
743
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_22,
744
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_22,
745
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_22,
746
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_22,
747
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_22,
748
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_22,
749
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_23,
750
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_24,
751
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_25,
752
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_23,
753
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_23,
754
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_23,
755
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_23,
756
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_23,
757
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_23,
758
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_23,
759
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_23,
760
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_23,
761
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_23,
762
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_23,
763
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_23,
764
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_23,
765
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_23,
766
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_23,
767
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_23,
768
+
769
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_24,
770
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_24,
771
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_24,
772
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_24,
773
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_24,
774
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_24,
775
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_24,
776
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_24,
777
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_24,
778
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_24,
779
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_24,
780
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_24,
781
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_24,
782
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_24,
783
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_24,
784
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_24,
785
+
786
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_25,
787
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_25,
788
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_25,
789
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_25,
790
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_25,
791
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_25,
792
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_25,
793
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_25,
794
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_25,
795
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_25,
796
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_25,
797
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_25,
798
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_25,
799
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_25,
800
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_25,
801
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_25,
802
+
803
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_26,
804
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_26,
805
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_26,
806
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_26,
807
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_26,
808
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_26,
809
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_26,
810
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_26,
811
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_26,
812
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_26,
813
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_26,
814
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_26,
815
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_26,
816
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_26,
817
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_26,
818
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_26,
819
+ .sfsiplus_icns_tab_3 .sfsiplus_row_17_26 {
820
+ background: url(../images/tab_3_icns.png) no-repeat;
821
+ width: 53px;
822
+ height: 52px;
823
+ float: left;
824
+ margin: 0 4px 0 0;
825
+ }
826
+
827
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_1 {
828
+ background-position: -1px 0;
829
+ }
830
+
831
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_2 {
832
+ background-position: -60px 0;
833
+ }
834
+
835
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_3 {
836
+ background-position: -118px 0;
837
+ }
838
+
839
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_4 {
840
+ background-position: -176px 0;
841
+ }
842
+
843
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_5 {
844
+ background-position: -235px 0;
845
+ }
846
+
847
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_6 {
848
+ background-position: -293px 0;
849
+ }
850
+
851
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_7 {
852
+ background-position: -350px 0;
853
+ }
854
+
855
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_8 {
856
+ background-position: -409px 0;
857
+ }
858
+
859
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_9 {
860
+ background-position: -467px 0;
861
+ }
862
+
863
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_10 {
864
+ background-position: -526px 0;
865
+ }
866
+
867
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_11 {
868
+ background-position: -711px 0;
869
+ }
870
+
871
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_22 {
872
+ background-position: -773px 0;
873
+ }
874
+
875
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_23 {
876
+ background-position: -838px 0;
877
+ }
878
+
879
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_24 {
880
+ background-position: -909px 0;
881
+ }
882
+
883
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_25 {
884
+ background-position: -977px 0;
885
+ }
886
+
887
+ .sfsiplus_icns_tab_3 .sfsiplus_row_1_26 {
888
+ background-position: -1045px 0;
889
+ }
890
+
891
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_1 {
892
+ background-position: 0 -74px;
893
+ }
894
+
895
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_2 {
896
+ background-position: -60px -74px;
897
+ }
898
+
899
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_3 {
900
+ background-position: -118px -74px;
901
+ }
902
+
903
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_4 {
904
+ background-position: -176px -74px;
905
+ }
906
+
907
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_5 {
908
+ background-position: -235px -74px;
909
+ }
910
+
911
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_6 {
912
+ background-position: -293px -74px;
913
+ }
914
+
915
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_7 {
916
+ background-position: -350px -74px;
917
+ }
918
+
919
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_8 {
920
+ background-position: -409px -74px;
921
+ }
922
+
923
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_9 {
924
+ background-position: -467px -74px;
925
+ }
926
+
927
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_10 {
928
+ background-position: -526px -74px;
929
+ }
930
+
931
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_11 {
932
+ background-position: -711px -74px;
933
+ }
934
+
935
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_22 {
936
+ background-position: -773px -74px;
937
+ }
938
+
939
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_23 {
940
+ background-position: -838px -74px;
941
+ }
942
+
943
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_24 {
944
+ background-position: -909px -74px;
945
+ }
946
+
947
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_25 {
948
+ background-position: -977px -74px;
949
+ }
950
+
951
+ .sfsiplus_icns_tab_3 .sfsiplus_row_2_26 {
952
+ background-position: -1045px 0;
953
+ }
954
+
955
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_1 {
956
+ background-position: 0 -146px;
957
+ }
958
+
959
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_2 {
960
+ background-position: -60px -146px;
961
+ }
962
+
963
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_3 {
964
+ background-position: -118px -146px;
965
+ }
966
+
967
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_4 {
968
+ background-position: -176px -146px;
969
+ }
970
+
971
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_5 {
972
+ background-position: -235px -146px;
973
+ }
974
+
975
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_6 {
976
+ background-position: -293px -146px;
977
+ }
978
+
979
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_7 {
980
+ background-position: -350px -146px;
981
+ }
982
+
983
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_8 {
984
+ background-position: -409px -146px;
985
+ }
986
+
987
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_9 {
988
+ background-position: -467px -146px;
989
+ }
990
+
991
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_10 {
992
+ background-position: -526px -146px;
993
+ }
994
+
995
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_11 {
996
+ background-position: -711px -147px;
997
+ }
998
+
999
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_22 {
1000
+ background-position: -773px -147px;
1001
+ }
1002
+
1003
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_23 {
1004
+ background-position: -838px -147px;
1005
+ }
1006
+
1007
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_24 {
1008
+ background-position: -909px -147px;
1009
+ }
1010
+
1011
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_25 {
1012
+ background-position: -977px -147px;
1013
+ }
1014
+
1015
+ .sfsiplus_icns_tab_3 .sfsiplus_row_3_26 {
1016
+ background-position: -1045px 0;
1017
+ }
1018
+
1019
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_1 {
1020
+ background-position: 0 -222px;
1021
+ }
1022
+
1023
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_2 {
1024
+ background-position: -60px -222px;
1025
+ }
1026
+
1027
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_3 {
1028
+ background-position: -118px -222px;
1029
+ }
1030
+
1031
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_4 {
1032
+ background-position: -176px -222px;
1033
+ }
1034
+
1035
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_5 {
1036
+ background-position: -235px -222px;
1037
+ }
1038
+
1039
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_6 {
1040
+ background-position: -293px -222px;
1041
+ }
1042
+
1043
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_7 {
1044
+ background-position: -350px -222px;
1045
+ }
1046
+
1047
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_8 {
1048
+ background-position: -409px -222px;
1049
+ }
1050
+
1051
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_9 {
1052
+ background-position: -467px -222px;
1053
+ }
1054
+
1055
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_10 {
1056
+ background-position: -526px -222px;
1057
+ }
1058
+
1059
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_11 {
1060
+ background-position: -711px -222px;
1061
+ }
1062
+
1063
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_22 {
1064
+ background-position: -773px -222px;
1065
+ }
1066
+
1067
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_23 {
1068
+ background-position: -838px -222px;
1069
+ }
1070
+
1071
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_24 {
1072
+ background-position: -909px -222px;
1073
+ }
1074
+
1075
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_25 {
1076
+ background-position: -977px -222px;
1077
+ }
1078
+
1079
+ .sfsiplus_icns_tab_3 .sfsiplus_row_4_26 {
1080
+ background-position: -1045px 0;
1081
+ }
1082
+
1083
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_1 {
1084
+ background-position: 0 -296px;
1085
+ }
1086
+
1087
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_2 {
1088
+ background-position: -60px -296px;
1089
+ }
1090
+
1091
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_3 {
1092
+ background-position: -118px -296px;
1093
+ }
1094
+
1095
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_4 {
1096
+ background-position: -176px -296px;
1097
+ }
1098
+
1099
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_5 {
1100
+ background-position: -235px -296px;
1101
+ }
1102
+
1103
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_6 {
1104
+ background-position: -293px -296px;
1105
+ }
1106
+
1107
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_7 {
1108
+ background-position: -350px -296px;
1109
+ }
1110
+
1111
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_8 {
1112
+ background-position: -409px -296px;
1113
+ }
1114
+
1115
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_9 {
1116
+ background-position: -467px -296px;
1117
+ }
1118
+
1119
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_10 {
1120
+ background-position: -526px -296px;
1121
+ }
1122
+
1123
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_11 {
1124
+ background-position: -711px -296px;
1125
+ }
1126
+
1127
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_22 {
1128
+ background-position: -773px -296px;
1129
+ }
1130
+
1131
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_23 {
1132
+ background-position: -838px -296px;
1133
+ }
1134
+
1135
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_24 {
1136
+ background-position: -909px -296px;
1137
+ }
1138
+
1139
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_25 {
1140
+ background-position: -977px -296px;
1141
+ }
1142
+
1143
+ .sfsiplus_icns_tab_3 .sfsiplus_row_5_26 {
1144
+ background-position: -1045px 0;
1145
+ }
1146
+
1147
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_1 {
1148
+ background-position: 0 -370px;
1149
+ }
1150
+
1151
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_2 {
1152
+ background-position: -60px -370px;
1153
+ }
1154
+
1155
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_3 {
1156
+ background-position: -118px -370px;
1157
+ }
1158
+
1159
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_4 {
1160
+ background-position: -176px -370px;
1161
+ }
1162
+
1163
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_5 {
1164
+ background-position: -235px -370px;
1165
+ }
1166
+
1167
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_6 {
1168
+ background-position: -293px -370px;
1169
+ }
1170
+
1171
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_7 {
1172
+ background-position: -350px -370px;
1173
+ }
1174
+
1175
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_8 {
1176
+ background-position: -409px -370px;
1177
+ }
1178
+
1179
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_9 {
1180
+ background-position: -468px -370px;
1181
+ }
1182
+
1183
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_10 {
1184
+ background-position: -526px -370px;
1185
+ }
1186
+
1187
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_11 {
1188
+ background-position: -711px -370px;
1189
+ }
1190
+
1191
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_22 {
1192
+ background-position: -773px -370px;
1193
+ }
1194
+
1195
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_23 {
1196
+ background-position: -838px -370px;
1197
+ }
1198
+
1199
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_24 {
1200
+ background-position: -909px -370px;
1201
+ }
1202
+
1203
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_25 {
1204
+ background-position: -977px -370px;
1205
+ }
1206
+
1207
+ .sfsiplus_icns_tab_3 .sfsiplus_row_6_26 {
1208
+ background-position: -1045px 0;
1209
+ }
1210
+
1211
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_1 {
1212
+ background-position: 0 -444px;
1213
+ }
1214
+
1215
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_2 {
1216
+ background-position: -60px -444px;
1217
+ }
1218
+
1219
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_3 {
1220
+ background-position: -118px -444px;
1221
+ }
1222
+
1223
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_4 {
1224
+ background-position: -176px -444px;
1225
+ }
1226
+
1227
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_5 {
1228
+ background-position: -235px -444px;
1229
+ }
1230
+
1231
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_6 {
1232
+ background-position: -293px -444px;
1233
+ }
1234
+
1235
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_7 {
1236
+ background-position: -350px -444px;
1237
+ }
1238
+
1239
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_8 {
1240
+ background-position: -409px -444px;
1241
+ }
1242
+
1243
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_9 {
1244
+ background-position: -466px -444px;
1245
+ }
1246
+
1247
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_10 {
1248
+ background-position: -526px -444px;
1249
+ }
1250
+
1251
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_11 {
1252
+ background-position: -711px -444px;
1253
+ }
1254
+
1255
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_22 {
1256
+ background-position: -773px -444px;
1257
+ }
1258
+
1259
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_23 {
1260
+ background-position: -838px -444px;
1261
+ }
1262
+
1263
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_24 {
1264
+ background-position: -909px -444px;
1265
+ }
1266
+
1267
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_25 {
1268
+ background-position: -977px -444px;
1269
+ }
1270
+
1271
+ .sfsiplus_icns_tab_3 .sfsiplus_row_7_26 {
1272
+ background-position: -1045px 0;
1273
+ }
1274
+
1275
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_1 {
1276
+ background-position: 0 -518px;
1277
+ }
1278
+
1279
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_2 {
1280
+ background-position: -60px -518px;
1281
+ }
1282
+
1283
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_3 {
1284
+ background-position: -118px -518px;
1285
+ }
1286
+
1287
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_4 {
1288
+ background-position: -176px -518px;
1289
+ }
1290
+
1291
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_5 {
1292
+ background-position: -235px -518px;
1293
+ }
1294
+
1295
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_6 {
1296
+ background-position: -293px -518px;
1297
+ }
1298
+
1299
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_7 {
1300
+ background-position: -350px -518px;
1301
+ }
1302
+
1303
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_8 {
1304
+ background-position: -409px -518px;
1305
+ }
1306
+
1307
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_9 {
1308
+ background-position: -467px -518px;
1309
+ }
1310
+
1311
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_10 {
1312
+ background-position: -526px -518px;
1313
+ }
1314
+
1315
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_11 {
1316
+ background-position: -711px -518px;
1317
+ }
1318
+
1319
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_22 {
1320
+ background-position: -773px -518px;
1321
+ }
1322
+
1323
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_23 {
1324
+ background-position: -838px -518px;
1325
+ }
1326
+
1327
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_24 {
1328
+ background-position: -909px -518px;
1329
+ }
1330
+
1331
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_25 {
1332
+ background-position: -977px -518px;
1333
+ }
1334
+
1335
+ .sfsiplus_icns_tab_3 .sfsiplus_row_8_26 {
1336
+ background-position: -1045px 0;
1337
+ }
1338
+
1339
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_1 {
1340
+ background-position: 0 -592px;
1341
+ }
1342
+
1343
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_2 {
1344
+ background-position: -60px -592px;
1345
+ }
1346
+
1347
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_3 {
1348
+ background-position: -118px -592px;
1349
+ }
1350
+
1351
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_4 {
1352
+ background-position: -176px -592px;
1353
+ }
1354
+
1355
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_5 {
1356
+ background-position: -235px -592px;
1357
+ }
1358
+
1359
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_6 {
1360
+ background-position: -293px -592px;
1361
+ }
1362
+
1363
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_7 {
1364
+ background-position: -350px -592px;
1365
+ }
1366
+
1367
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_8 {
1368
+ background-position: -409px -592px;
1369
+ }
1370
+
1371
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_9 {
1372
+ background-position: -467px -592px;
1373
+ }
1374
+
1375
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_10 {
1376
+ background-position: -526px -592px;
1377
+ }
1378
+
1379
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_11 {
1380
+ background-position: -711px -592px;
1381
+ }
1382
+
1383
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_22 {
1384
+ background-position: -773px -592px;
1385
+ }
1386
+
1387
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_23 {
1388
+ background-position: -838px -592px;
1389
+ }
1390
+
1391
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_24 {
1392
+ background-position: -909px -592px;
1393
+ }
1394
+
1395
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_25 {
1396
+ background-position: -977px -592px;
1397
+ }
1398
+
1399
+ .sfsiplus_icns_tab_3 .sfsiplus_row_9_26 {
1400
+ background-position: -1045px 0;
1401
+ }
1402
+
1403
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_1 {
1404
+ background-position: 0 -666px;
1405
+ }
1406
+
1407
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_2 {
1408
+ background-position: -60px -666px;
1409
+ }
1410
+
1411
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_3 {
1412
+ background-position: -118px -666px;
1413
+ }
1414
+
1415
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_4 {
1416
+ background-position: -176px -666px;
1417
+ }
1418
+
1419
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_5 {
1420
+ background-position: -235px -666px;
1421
+ }
1422
+
1423
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_6 {
1424
+ background-position: -293px -666px;
1425
+ }
1426
+
1427
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_7 {
1428
+ background-position: -350px -666px;
1429
+ }
1430
+
1431
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_8 {
1432
+ background-position: -409px -666px;
1433
+ }
1434
+
1435
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_9 {
1436
+ background-position: -467px -666px;
1437
+ }
1438
+
1439
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_10 {
1440
+ background-position: -526px -666px;
1441
+ }
1442
+
1443
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_11 {
1444
+ background-position: -711px -666px;
1445
+ }
1446
+
1447
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_22 {
1448
+ background-position: -773px -666px;
1449
+ }
1450
+
1451
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_23 {
1452
+ background-position: -838px -666px;
1453
+ }
1454
+
1455
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_24 {
1456
+ background-position: -909px -666px;
1457
+ }
1458
+
1459
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_25 {
1460
+ background-position: -977px -666px;
1461
+ }
1462
+
1463
+ .sfsiplus_icns_tab_3 .sfsiplus_row_10_26 {
1464
+ background-position: -1045px 0;
1465
+ }
1466
+
1467
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_1 {
1468
+ background-position: 0 -740px;
1469
+ }
1470
+
1471
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_2 {
1472
+ background-position: -60px -740px;
1473
+ }
1474
+
1475
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_3 {
1476
+ background-position: -118px -740px;
1477
+ }
1478
+
1479
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_4 {
1480
+ background-position: -176px -740px;
1481
+ }
1482
+
1483
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_5 {
1484
+ background-position: -235px -740px;
1485
+ }
1486
+
1487
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_6 {
1488
+ background-position: -293px -740px;
1489
+ }
1490
+
1491
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_7 {
1492
+ background-position: -350px -740px;
1493
+ }
1494
+
1495
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_8 {
1496
+ background-position: -409px -740px;
1497
+ }
1498
+
1499
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_9 {
1500
+ background-position: -467px -740px;
1501
+ }
1502
+
1503
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_10 {
1504
+ background-position: -526px -740px;
1505
+ }
1506
+
1507
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_11 {
1508
+ background-position: -711px -740px;
1509
+ }
1510
+
1511
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_22 {
1512
+ background-position: -773px -740px;
1513
+ }
1514
+
1515
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_23 {
1516
+ background-position: -838px -740px;
1517
+ }
1518
+
1519
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_24 {
1520
+ background-position: -909px -740px;
1521
+ }
1522
+
1523
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_25 {
1524
+ background-position: -977px -740px;
1525
+ }
1526
+
1527
+ .sfsiplus_icns_tab_3 .sfsiplus_row_11_26 {
1528
+ background-position: -1045px 0;
1529
+ }
1530
+
1531
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_1 {
1532
+ background-position: 0 -814px;
1533
+ }
1534
+
1535
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_2 {
1536
+ background-position: -60px -814px;
1537
+ }
1538
+
1539
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_3 {
1540
+ background-position: -118px -814px;
1541
+ }
1542
+
1543
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_4 {
1544
+ background-position: -176px -814px;
1545
+ }
1546
+
1547
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_5 {
1548
+ background-position: -235px -814px;
1549
+ }
1550
+
1551
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_6 {
1552
+ background-position: -293px -814px;
1553
+ }
1554
+
1555
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_7 {
1556
+ background-position: -350px -814px;
1557
+ }
1558
+
1559
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_8 {
1560
+ background-position: -409px -814px;
1561
+ }
1562
+
1563
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_9 {
1564
+ background-position: -467px -814px;
1565
+ }
1566
+
1567
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_10 {
1568
+ background-position: -526px -814px;
1569
+ }
1570
+
1571
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_11 {
1572
+ background-position: -711px -814px;
1573
+ }
1574
+
1575
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_22 {
1576
+ background-position: -773px -814px;
1577
+ }
1578
+
1579
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_23 {
1580
+ background-position: -838px -814px;
1581
+ }
1582
+
1583
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_24 {
1584
+ background-position: -909px -814px;
1585
+ }
1586
+
1587
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_25 {
1588
+ background-position: -977px -814px;
1589
+ }
1590
+
1591
+ .sfsiplus_icns_tab_3 .sfsiplus_row_12_26 {
1592
+ background-position: -1045px 0;
1593
+ }
1594
+
1595
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_1 {
1596
+ background-position: 0 -888px;
1597
+ }
1598
+
1599
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_2 {
1600
+ background-position: -60px -888px;
1601
+ }
1602
+
1603
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_3 {
1604
+ background-position: -118px -888px;
1605
+ }
1606
+
1607
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_4 {
1608
+ background-position: -176px -888px;
1609
+ }
1610
+
1611
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_5 {
1612
+ background-position: -235px -888px;
1613
+ }
1614
+
1615
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_6 {
1616
+ background-position: -293px -888px;
1617
+ }
1618
+
1619
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_7 {
1620
+ background-position: -350px -888px;
1621
+ }
1622
+
1623
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_8 {
1624
+ background-position: -409px -888px;
1625
+ }
1626
+
1627
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_9 {
1628
+ background-position: -467px -888px;
1629
+ }
1630
+
1631
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_10 {
1632
+ background-position: -526px -888px;
1633
+ }
1634
+
1635
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_11 {
1636
+ background-position: -711px -888px;
1637
+ }
1638
+
1639
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_22 {
1640
+ background-position: -773px -888px;
1641
+ }
1642
+
1643
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_23 {
1644
+ background-position: -838px -888px;
1645
+ }
1646
+
1647
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_24 {
1648
+ background-position: -909px -888px;
1649
+ }
1650
+
1651
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_25 {
1652
+ background-position: -977px -888px;
1653
+ }
1654
+
1655
+ .sfsiplus_icns_tab_3 .sfsiplus_row_13_26 {
1656
+ background-position: -1045px 0;
1657
+ }
1658
+
1659
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_1 {
1660
+ background-position: 0 -962px;
1661
+ }
1662
+
1663
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_2 {
1664
+ background-position: -60px -962px;
1665
+ }
1666
+
1667
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_3 {
1668
+ background-position: -118px -962px;
1669
+ }
1670
+
1671
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_4 {
1672
+ background-position: -176px -962px;
1673
+ }
1674
+
1675
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_5 {
1676
+ background-position: -235px -962px;
1677
+ }
1678
+
1679
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_6 {
1680
+ background-position: -293px -962px;
1681
+ }
1682
+
1683
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_7 {
1684
+ background-position: -350px -962px;
1685
+ }
1686
+
1687
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_8 {
1688
+ background-position: -409px -962px;
1689
+ }
1690
+
1691
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_9 {
1692
+ background-position: -467px -962px;
1693
+ }
1694
+
1695
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_10 {
1696
+ background-position: -526px -962px;
1697
+ }
1698
+
1699
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_11 {
1700
+ background-position: -711px -962px;
1701
+ }
1702
+
1703
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_22 {
1704
+ background-position: -773px -962px;
1705
+ }
1706
+
1707
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_23 {
1708
+ background-position: -838px -962px;
1709
+ }
1710
+
1711
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_24 {
1712
+ background-position: -909px -962px;
1713
+ }
1714
+
1715
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_25 {
1716
+ background-position: -977px -962px;
1717
+ }
1718
+
1719
+ .sfsiplus_icns_tab_3 .sfsiplus_row_14_26 {
1720
+ background-position: -1045px 0;
1721
+ }
1722
+
1723
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_1 {
1724
+ background-position: 0 -1036px;
1725
+ }
1726
+
1727
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_2 {
1728
+ background-position: -60px -1036px;
1729
+ }
1730
+
1731
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_3 {
1732
+ background-position: -118px -1036px;
1733
+ }
1734
+
1735
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_4 {
1736
+ background-position: -176px -1036px;
1737
+ }
1738
+
1739
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_5 {
1740
+ background-position: -235px -1036px;
1741
+ }
1742
+
1743
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_6 {
1744
+ background-position: -293px -1036px;
1745
+ }
1746
+
1747
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_7 {
1748
+ background-position: -350px -1036px;
1749
+ }
1750
+
1751
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_8 {
1752
+ background-position: -409px -1036px;
1753
+ }
1754
+
1755
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_9 {
1756
+ background-position: -467px -1036px;
1757
+ }
1758
+
1759
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_10 {
1760
+ background-position: -526px -1036px;
1761
+ }
1762
+
1763
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_11 {
1764
+ background-position: -711px -1036px;
1765
+ }
1766
+
1767
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_22 {
1768
+ background-position: -773px -1036px;
1769
+ }
1770
+
1771
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_23 {
1772
+ background-position: -838px -1036px;
1773
+ }
1774
+
1775
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_24 {
1776
+ background-position: -909px -1036px;
1777
+ }
1778
+
1779
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_25 {
1780
+ background-position: -977px -1036px;
1781
+ }
1782
+
1783
+ .sfsiplus_icns_tab_3 .sfsiplus_row_15_26 {
1784
+ background-position: -1045px 0;
1785
+ }
1786
+
1787
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_1 {
1788
+ background-position: 0 -1109px;
1789
+ }
1790
+
1791
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_2 {
1792
+ background-position: -60px -1109px;
1793
+ }
1794
+
1795
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_3 {
1796
+ background-position: -118px -1109px;
1797
+ }
1798
+
1799
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_4 {
1800
+ background-position: -176px -1109px;
1801
+ }
1802
+
1803
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_5 {
1804
+ background-position: -235px -1109px;
1805
+ }
1806
+
1807
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_6 {
1808
+ background-position: -293px -1109px;
1809
+ }
1810
+
1811
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_7 {
1812
+ background-position: -350px -1109px;
1813
+ }
1814
+
1815
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_8 {
1816
+ background-position: -409px -1109px;
1817
+ }
1818
+
1819
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_9 {
1820
+ background-position: -467px -1109px;
1821
+ }
1822
+
1823
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_10 {
1824
+ background-position: -526px -1109px;
1825
+ }
1826
+
1827
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_11 {
1828
+ background-position: -711px -1109px;
1829
+ }
1830
+
1831
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_22 {
1832
+ background-position: -773px -1109px;
1833
+ }
1834
+
1835
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_23 {
1836
+ background-position: -838px -1109px;
1837
+ }
1838
+
1839
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_24 {
1840
+ background-position: -909px -1109px;
1841
+ }
1842
+
1843
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_25 {
1844
+ background-position: -977px -1109px;
1845
+ }
1846
+
1847
+ .sfsiplus_icns_tab_3 .sfsiplus_row_16_26 {
1848
+ background-position: -1045px 0;
1849
+ }
1850
+
1851
+ /*Admin menu*/
1852
+ ul#adminmenu li.toplevel_page_sfsi-plus-options div.wp-menu-image {
1853
+ display: none;
1854
+ }
1855
+
1856
+ #adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options {
1857
+ padding: 0 0 0 38px;
1858
+ font-family: helveticabold;
1859
+ }
1860
+
1861
+ ul#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options {
1862
+ color: #e12522;
1863
+ transition: 0s;
1864
+ background: url(images/left_log_icn.png) 6px 15px no-repeat #000;
1865
+ background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
1866
+ color: #fafafa;
1867
+ }
1868
+
1869
+ ul#adminmenu li.toplevel_page_sfsi-plus-options a.toplevel_page_sfsi-plus-options:hover {
1870
+ background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
1871
+ color: #fafafa;
1872
+ }
1873
+
1874
+ ul#adminmenu li.toplevel_page_sfsi-plus-options a.wp-has-current-submenu,
1875
+ ul#adminmenu li.toplevel_page_sfsi-plus-options a.wp-has-current-submenu:hover {
1876
+ background: url(images/left_log_icn.png) 6px 15px no-repeat #000000;
1877
+ /*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
1878
+ color: #e12522;
1879
+ }
1880
+
1881
+ ul#adminmenu li.toplevel_page_sfsi-plus-options a.current,
1882
+ ul#adminmenu li.toplevel_page_sfsi-plus-options a.current:hover {
1883
+ background: url(images/left_log_icn.png) 6px 15px no-repeat #000000 !important;
1884
+ /*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
1885
+ color: #e12522 !important;
1886
+ }
1887
+
1888
+ /*tab 9 css*/
1889
+ .tab9 .sfsi_plus_tab8_container {
1890
+ width: 100%;
1891
+ float: left;
1892
+ }
1893
+
1894
+ .tab9 .sfsi_plus_tab8_subcontainer {
1895
+ float: left;
1896
+ padding: 20px 0;
1897
+ width: 100%;
1898
+ }
1899
+
1900
+ .tab9 h3.sfsi_plus_section_title {
1901
+ font-weight: bold;
1902
+ }
1903
+
1904
+ .tab9 .like_pop_box {
1905
+ width: 100%;
1906
+ margin: 35px auto auto;
1907
+ position: relative;
1908
+ text-align: center;
1909
+ }
1910
+
1911
+ .tab9 .like_pop_box h2 {
1912
+ font-family: helveticabold;
1913
+ text-align: center;
1914
+ color: #414951;
1915
+ font-size: 26px;
1916
+ }
1917
+
1918
+ .tab9 .sfsi_plus_subscribe_Popinner {
1919
+ display: inline-block;
1920
+ padding: 18px 20px;
1921
+ -webkit-box-shadow: 0 0 5px #ccc;
1922
+ border: 1px solid #ededed;
1923
+ background: #FFF;
1924
+ position: relative;
1925
+ }
1926
+
1927
+ .tab9 .sfsi_plus_subscribe_Popinner .form-overlay {
1928
+ height: 100%;
1929
+ left: 0;
1930
+ position: absolute;
1931
+ top: 0;
1932
+ width: 100%;
1933
+ }
1934
+
1935
+ .tab9 .like_pop_box .sfsi_plus_subscribe_Popinner {
1936
+ box-shadow: 0 0 5px #ccc;
1937
+ }
1938
+
1939
+ .tab9 .like_pop_box .sfsi_plus_subscribe_Popinner h5 {
1940
+ margin: 0 0 10px;
1941
+ padding: 0;
1942
+ color: #414951;
1943
+ font-size: 22px;
1944
+ text-align: center;
1945
+ }
1946
+
1947
+ .tab9 .sfsi_plus_subscribe_Popinner h5 {
1948
+ margin: 0 0 10px;
1949
+ padding: 0;
1950
+ color: #414951;
1951
+ font-size: 18px;
1952
+ text-align: center;
1953
+ }
1954
+
1955
+ .tab9 .sfsi_plus_subscription_form_field {
1956
+ float: left;
1957
+ margin: 5px 0;
1958
+ width: 100%;
1959
+ }
1960
+
1961
+ .tab9 .sfsi_plus_subscription_form_field input {
1962
+ padding: 10px 0px;
1963
+ text-align: center;
1964
+ width: 100%;
1965
+ }
1966
+
1967
+ .tab9 .sfsi_plus_tab8_subcontainer label.sfsi_plus_label_text {
1968
+ float: left;
1969
+ margin: 10px 0;
1970
+ width: 100%;
1971
+ }
1972
+
1973
+ .tab9 ul.sfsi_plus_form_info {
1974
+ list-style: none !important;
1975
+ margin-left: 32px;
1976
+ }
1977
+
1978
+ .tab9 ul.sfsi_plus_form_info li {
1979
+ margin: 3px 0;
1980
+ }
1981
+
1982
+ .tab9 .sfsi_plus_subscription_html {
1983
+ background-color: #e5e5e5;
1984
+ float: left;
1985
+ margin: 12px 0 0 30px;
1986
+ width: 90%;
1987
+ }
1988
+
1989
+ .tab9 .sfsi_plus_seprater {
1990
+ border-bottom: 1px solid #ccc;
1991
+ }
1992
+
1993
+ .tab9 .sfsi_plus_tab8_subcontainer h5.sfsi_plus_section_subtitle {
1994
+ float: left;
1995
+ font-size: 18px;
1996
+ margin: 5px 0;
1997
+ width: 100%;
1998
+ }
1999
+
2000
+ .tab9 .sfsi_plus_left_container {
2001
+ margin-top: 30px;
2002
+ text-align: center;
2003
+ width: 24%;
2004
+ display: inline-block;
2005
+ }
2006
+
2007
+ .tab9 .sfsi_plus_right_container {
2008
+ display: inline-block;
2009
+ margin-top: 30px;
2010
+ padding: 0 20px;
2011
+ vertical-align: top;
2012
+ width: 72%;
2013
+ }
2014
+
2015
+ .tab9 .row_tab {
2016
+ display: inline-block;
2017
+ margin-bottom: 30px;
2018
+ width: 100%;
2019
+ }
2020
+
2021
+ .tab9 .row_tab label {
2022
+ color: #5a6570;
2023
+ font-size: 16px;
2024
+ }
2025
+
2026
+ .tab9 .row_tab div.sfsi_plus_field {
2027
+ display: inline-block;
2028
+ vertical-align: middle;
2029
+ width: auto;
2030
+ margin-right: 25px;
2031
+ }
2032
+
2033
+ .tab9 .color_box {
2034
+ width: 40px;
2035
+ height: 34px;
2036
+ border: 3px solid #fff;
2037
+ box-shadow: 1px 2px 2px #ccc;
2038
+ float: right;
2039
+ position: relative;
2040
+ margin-left: 13px;
2041
+ }
2042
+
2043
+ .tab9 .color_box1 {
2044
+ width: 100%;
2045
+ height: 34px;
2046
+ background: #5a6570;
2047
+ box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
2048
+ }
2049
+
2050
+ .tab9 .corner {
2051
+ width: 10px;
2052
+ height: 10px;
2053
+ background: #fff;
2054
+ position: absolute;
2055
+ right: 0;
2056
+ bottom: 0;
2057
+ }
2058
+
2059
+ .tab9 .sfsi_plus_right_container label {
2060
+ color: #5a6570;
2061
+ font-size: 18px;
2062
+ }
2063
+
2064
+ .tab9 label.sfsi_plus_heding {
2065
+ display: inline-block;
2066
+ font-weight: bold;
2067
+ padding-top: 10px;
2068
+ width: 303px;
2069
+ }
2070
+
2071
+ .tab9 .border_shadow {
2072
+ display: inline-block;
2073
+ vertical-align: top;
2074
+ }
2075
+
2076
+ .tab9 .border_shadow li {
2077
+ display: inline-block;
2078
+ vertical-align: top;
2079
+ padding-right: 20px;
2080
+ }
2081
+
2082
+ .tab9 .border_shadow li span {
2083
+ vertical-align: middle;
2084
+ }
2085
+
2086
+ .tab9 .border_shadow .radio {
2087
+ margin-right: 5px;
2088
+ }
2089
+
2090
+ .tab9 .sfsi_plus_field .rec-inp {
2091
+ background: #e5e5e5 none repeat scroll 0 0;
2092
+ height: 44px;
2093
+ text-align: center;
2094
+ width: 54px;
2095
+ }
2096
+
2097
+ .tab9 .pix {
2098
+ color: #5a6570;
2099
+ font-size: 18px;
2100
+ padding-left: 10px;
2101
+ vertical-align: middle;
2102
+ }
2103
+
2104
+ .tab9 .sfsi_plus_heding.autowidth {
2105
+ width: auto;
2106
+ margin-right: 15px;
2107
+ }
2108
+
2109
+ .tab9 .sfsi_plus_heding.fixwidth {
2110
+ width: 80px;
2111
+ }
2112
+
2113
+ .tab9 .small {
2114
+ background-color: #e5e5e5;
2115
+ height: 44px;
2116
+ width: 200px;
2117
+ }
2118
+
2119
+ .tab9 .small.new-inp {
2120
+ background-color: #e5e5e5;
2121
+ height: 44px;
2122
+ width: 277px;
2123
+ }
2124
+
2125
+ .tab9 .small.color-code {
2126
+ width: 138px !important;
2127
+ }
2128
+
2129
+ .tab9 .select-same {
2130
+ border: 1px solid #d6d6d6;
2131
+ height: 47px !important;
2132
+ width: 171px;
2133
+ appearance: none;
2134
+ -moz-appearance: none;
2135
+ -webkit-appearance: none;
2136
+ background-image: url(images/select-arrow.png);
2137
+ background-repeat: no-repeat;
2138
+ background-position: right 15px center;
2139
+ }
2140
+
2141
+ .tab9 .sfsi_plus_same_width {
2142
+ display: inline-block;
2143
+ width: 100px !important;
2144
+ }
2145
+
2146
+ .disabled_checkbox .sfsiplus_right_info .sfsiplus_toglepstpgspn {
2147
+ color: rgba(0, 0, 0, .3);
2148
+ }
2149
+
2150
+ .sfsi_plus_subscription_html xmp {
2151
+ display: block;
2152
+ padding: 0 10px;
2153
+ white-space: pre-line;
2154
+ word-wrap: break-word;
2155
+ }
2156
+
2157
+ .sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li {
2158
+ float: left;
2159
+ width: 300px !important;
2160
+ max-width: 300px !important;
2161
+ min-width: 300px !important;
2162
+ }
2163
+
2164
+ .sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec label {
2165
+ font-size: 17px;
2166
+ padding-right: 20px;
2167
+ width: 65px !important;
2168
+ display: inline-block;
2169
+ }
2170
+
2171
+ .sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li input {
2172
+ background-color: #dedede;
2173
+ border: medium none;
2174
+ box-shadow: none;
2175
+ padding: 14px 8px;
2176
+ width: 80px;
2177
+ }
2178
+
2179
+ .sfsiplus_right_info ul.sfsi_plus_floaticon_margin_sec li ins {
2180
+ font-size: 17px;
2181
+ font-weight: 400;
2182
+ margin-left: 15px;
2183
+ text-decoration: none;
2184
+ }
2185
+
2186
+ @media (max-width:1160px) {
2187
+ .sfsi_plus_subscription_html xmp {
2188
+ display: block;
2189
+ padding: 0 10px;
2190
+ white-space: pre-line;
2191
+ word-wrap: break-word;
2192
+ }
2193
+ }
2194
+
2195
+ @media (max-width:1350px) {
2196
+ .tab9 .sfsi_plus_left_container {
2197
+ width: 100% !important;
2198
+ }
2199
+
2200
+ .tab9 .sfsi_plus_right_container {
2201
+ width: 100%;
2202
+ }
2203
+
2204
+ .tab9 .border_shadow {
2205
+ margin-top: 10px;
2206
+ }
2207
+
2208
+ .tab9 .row_tab div.sfsi_plus_field {
2209
+ margin-bottom: 10px;
2210
+ }
2211
+ }
2212
+
2213
+ @media (max-width:770px) {
2214
+ #sfsi_plus_form_heading_fontstyle {
2215
+ margin-left: 19px !important;
2216
+ margin-top: 10px !important;
2217
+ }
2218
+ }
2219
+
2220
+ /*poonam Style*/
2221
+ .feedClaiming-overlay h1 {
2222
+ font-size: 22px !important;
2223
+ font-weight: bolder !important;
2224
+ margin-top: 7px !important;
2225
+ }
2226
+
2227
+ .feedClaiming-overlay input[type="email"] {
2228
+ font-size: 16px;
2229
+ margin: 26px 0 0;
2230
+ padding: 10px 0;
2231
+ text-align: center;
2232
+ width: 100%;
2233
+ color: #bebebe !important;
2234
+ box-shadow: none;
2235
+ }
2236
+
2237
+ .feedClaiming-overlay input[type="email"]::-webkit-input-placeholder {
2238
+ color: #bebebe !important;
2239
+ }
2240
+
2241
+ .feedClaiming-overlay input[type="email"]:-moz-placeholder {
2242
+ /* Firefox 18- */
2243
+ color: #bebebe !important;
2244
+ }
2245
+
2246
+ .feedClaiming-overlay input[type="email"]::-moz-placeholder {
2247
+ /* Firefox 19+ */
2248
+ color: #bebebe !important;
2249
+ }
2250
+
2251
+ .feedClaiming-overlay input[type="email"]:-ms-input-placeholder {
2252
+ color: #bebebe !important;
2253
+ }
2254
+
2255
+ .feedClaiming-overlay .save_button {
2256
+ padding: 0 !important;
2257
+ width: 100%;
2258
+ }
2259
+
2260
+ .feedClaiming-overlay .save_button a#getMeFullAccess {
2261
+ border-radius: 4px;
2262
+ font-size: 18px;
2263
+ font-weight: bolder;
2264
+ }
2265
+
2266
+ .feedClaiming-overlay .sfsicloseBtn {
2267
+ right: 8px !important;
2268
+ top: 8px !important;
2269
+ }
2270
+
2271
+ .feedClaiming-overlay p {
2272
+ text-align: center !important;
2273
+ font-size: 12px !important;
2274
+ line-height: 23px !important;
2275
+ padding: 18px 0 0 !important;
2276
+ color: #bebebe !important;
2277
+ }
2278
+
2279
+ .feedClaiming-overlay p a {
2280
+ display: inline-block;
2281
+ font-size: 12px;
2282
+ margin: 0;
2283
+ padding: 0;
2284
+ width: auto;
2285
+ color: #274da3 !important;
2286
+ }
2287
+
2288
+ .feedClaiming-overlay .pop_up_box {
2289
+ padding: 25px 30px !important;
2290
+ width: 435px !important;
2291
+ min-height: 220px;
2292
+ }
2293
+
2294
+ .follows-btn {
2295
+ float: left;
2296
+ width: 25%;
2297
+ }
2298
+
2299
+ .preview-btn {
2300
+ float: left;
2301
+ width: 10%;
2302
+ }
2303
+
2304
+ .social-img-link {
2305
+ float: left;
2306
+ width: 15%;
2307
+ }
2308
+
2309
+ .social-img-link img {
2310
+ vertical-align: middle;
2311
+ }
2312
+
2313
+ .language-field {
2314
+ float: left;
2315
+ width: 24%;
2316
+ }
2317
+
2318
+ .language-field select {
2319
+ width: 100%;
2320
+ }
2321
+
2322
+ .icons_size {
2323
+ clear: both;
2324
+ }
2325
+
2326
+ .plus_custom-img img,
2327
+ .sfsiplus_custom_section img,
2328
+ .sfsiplus_custom_iconOrder img,
2329
+ .plus_sfsi_sample_icons img {
2330
+ width: 51px;
2331
+ }
2332
+
2333
+ .cstomskins_upload span.sfsi_plus-bgimage {
2334
+ background-size: 51px 51px !important;
2335
+ }
2336
+
2337
+ /* poonam */
2338
+ .sfsi_plus_premium_brdr_box {
2339
+ box-sizing: border-box;
2340
+ }
2341
+
2342
+ .sf_si_plus_our_prmium_plugin-add,
2343
+ .sfsi_plus_prem_icons_added,
2344
+ .sfsi_plus_new_prmium_follw {
2345
+ background: #f3faf6;
2346
+ border: 1px solid #12a252;
2347
+ padding: 25px 38px 35px 40px;
2348
+ clear: both;
2349
+ }
2350
+
2351
+ .banner_custom_icon {
2352
+ margin-left: 94px !important;
2353
+ float: left;
2354
+ }
2355
+
2356
+ .banner_custom_icon p a {
2357
+ font-family: helveticabold !important
2358
+ }
2359
+
2360
+ .sf_si_plus_our_prmium_plugin-add {
2361
+ padding: 25px 38px 45px 44px;
2362
+ }
2363
+
2364
+ .sf_si_plus_default_design ul {
2365
+ padding: 0;
2366
+ margin: 0;
2367
+ }
2368
+
2369
+ .sf_si_plus_default_design ul li {
2370
+ list-style: none;
2371
+ font-size: 20px;
2372
+ color: #1a1d20;
2373
+ clear: both;
2374
+ }
2375
+
2376
+ .sf_si_plus_default_design ul li b {
2377
+ font-weight: bold;
2378
+ }
2379
+
2380
+ .sf_si_plus_default_design ul li img {
2381
+ vertical-align: middle;
2382
+ }
2383
+
2384
+ .sf_si_plus_default_design ul li h4 {
2385
+ color: #1a1d20 !important;
2386
+ font-size: 20px !important;
2387
+ font-weight: bold;
2388
+ padding-bottom: 21px !important;
2389
+ }
2390
+
2391
+ .sf_si_plus_default_design ul li h4 span {
2392
+ font-weight: normal;
2393
+ }
2394
+
2395
+ .sf_si_plus_default_design ul li b span {
2396
+ font-weight: normal !important;
2397
+ }
2398
+
2399
+ .sf_si_plus_default_design ul li {
2400
+ margin: 0 !important;
2401
+ }
2402
+
2403
+ .sf_si_plus_default_design ul li h4.sfsi_plus_second_themedTitle {
2404
+ padding-bottom: 16px !important;
2405
+ }
2406
+
2407
+ .sfsi_plus_row_table {
2408
+ clear: both;
2409
+ }
2410
+
2411
+ .sfsi_plus_first_icon_field,
2412
+ .sfsi_plus_second_icon_img {
2413
+ display: table-cell;
2414
+ vertical-align: middle;
2415
+ padding: 5px 0;
2416
+ }
2417
+
2418
+ .sfsi_plus_first_icon_field {
2419
+ width: 125px;
2420
+ }
2421
+
2422
+ .sfsi_plus_first_icon_field h2 {
2423
+ font-size: 18px !important;
2424
+ color: #1a1d20 !important;
2425
+ margin: 0 !important;
2426
+ font-weight: bold !important;
2427
+ }
2428
+
2429
+ .sfsi_plus_first_icon_field p {
2430
+ color: #1a1d20 !important;
2431
+ font-size: 12px !important;
2432
+ margin: 0 !important;
2433
+ padding: 0 !important;
2434
+ line-height: 18px !important;
2435
+ }
2436
+
2437
+ .sfsi_plus_cool_font_weight h2 {
2438
+ font-weight: normal !important;
2439
+ }
2440
+
2441
+ .sf_si_plus_prmium_head span {
2442
+ font-weight: normal;
2443
+ }
2444
+
2445
+ .sf_si_plus_prmium_head h2 {
2446
+ font-size: 26px;
2447
+ color: #000;
2448
+ font-weight: bold !important;
2449
+ padding-bottom: 13px !important;
2450
+ margin-top: 0;
2451
+ }
2452
+
2453
+ .sf_si_plus_our_prmium_plugin-add .sf_si_plus_prmium_head h2 {
2454
+ padding-bottom: 23px !important;
2455
+ }
2456
+
2457
+ .sfsi_plus_premium_row {
2458
+ clear: both;
2459
+ }
2460
+
2461
+ .sfsi_plus_prem_cmn_rowlisting {
2462
+ width: 225px;
2463
+ float: left;
2464
+ margin-top: 10px;
2465
+ margin-bottom: 1px;
2466
+ }
2467
+
2468
+ .sfsi_plus_prem_cmn_rowlisting span {
2469
+ color: #1a1d20;
2470
+ font-size: 20px;
2471
+ display: table-cell;
2472
+ vertical-align: middle;
2473
+ padding-right: 10px;
2474
+ }
2475
+
2476
+ .sfsi_mainContainer .sfsi_plus_prem_cmn_rowlisting img {
2477
+ width: 52px;
2478
+ height: 52px;
2479
+ vertical-align: middle;
2480
+ }
2481
+
2482
+ .sfsi_plus_need_another_tell_us,
2483
+ .sfsi_plus_need_another_one_link {
2484
+ clear: both;
2485
+ }
2486
+
2487
+ .sfsi_plus_need_another_one_link p {
2488
+ color: #c1c3c5;
2489
+ font-size: 18.9px !important;
2490
+ }
2491
+
2492
+ .sfsi_plus_need_another_one_link p a {
2493
+ color: #12a252 !important;
2494
+ text-decoration: none;
2495
+ }
2496
+
2497
+ .sfsi_plus_need_another_one_link {
2498
+ padding: 23px 0 20px 5px;
2499
+ }
2500
+
2501
+ .sf_si_plus_all_features_premium a,
2502
+ .sfsi_plus_need_another_tell_us a {
2503
+ color: #12a252 !important;
2504
+ font-size: 18.9px;
2505
+ font-weight: bold;
2506
+ border-bottom: 1px solid #12a252;
2507
+ text-decoration: none;
2508
+ }
2509
+
2510
+ .sfsi_plus_need_another_tell_us a {
2511
+ margin-left: 5px;
2512
+ padding-top: 25px;
2513
+ }
2514
+
2515
+ .sfsi_plus_new_prmium_follw {
2516
+ margin-top: 20px;
2517
+ display: inline-block;
2518
+ padding: 15px 75px 20px 24px;
2519
+ float: left;
2520
+ }
2521
+
2522
+ .sfsi_plus_new_prmium_follw p {
2523
+ margin: 0 !important;
2524
+ }
2525
+
2526
+ .sfsi_plus_new_prmium_follw p {
2527
+ color: #1a1d20 !important;
2528
+ font-size: 20px !important;
2529
+ font-family: helveticaregular !important;
2530
+ }
2531
+
2532
+ .sfsi_plus_new_prmium_follw p a {
2533
+ color: #12a252 !important;
2534
+ border-bottom: 1px solid #12a252;
2535
+ text-decoration: none;
2536
+ }
2537
+
2538
+ .sfsi_plus_new_prmium_follw p b {
2539
+ font-weight: bold;
2540
+ color: #1a1d20 !important;
2541
+ }
2542
+
2543
+ p.sfsi_plus_prem_plu_desc a,
2544
+ p.sfsi_plus_prem_plu_desc_define a {
2545
+ text-decoration: none !important;
2546
+ color: #00a0d2 !important;
2547
+ }
2548
+
2549
+ p.sfsi_plus_prem_plu_desc {
2550
+ font-size: 18px !important;
2551
+ }
2552
+
2553
+ p.sfsi_plus_prem_plu_desc_define {
2554
+ font-size: 18px !important;
2555
+ border-left: 0px solid transparent !important;
2556
+ }
2557
+
2558
+ .sfsi_plus_icons_prem_disc {
2559
+ float: left;
2560
+ padding-top: 20px;
2561
+ }
2562
+
2563
+ .sfsi_plus_prem_show {
2564
+ padding-top: 140px !important;
2565
+ }
2566
+
2567
+ .sfsi_plus_first_icon_more h2 {
2568
+ font-size: 18px !important;
2569
+ color: #1a1d20 !important;
2570
+ margin: 0 !important;
2571
+ padding-top: 17px !important;
2572
+ padding-bottom: 22px !important;
2573
+ }
2574
+
2575
+ .sfsi_plus_fbpaget {
2576
+ float: left !important;
2577
+ padding: 4px 0 0 0px !important;
2578
+ width: 100% !important;
2579
+ }
2580
+
2581
+ .sfsi_plus_fbpaget .sfsi_plus_facebook_count {
2582
+ width: 100% !important;
2583
+ padding: 4px 0 0 0px !important;
2584
+ }
2585
+
2586
+ .sfsi_plus_facebook_pagedeasc {
2587
+ font-size: 14px !important;
2588
+ padding: 15px 0 0 60px;
2589
+ width: 42%;
2590
+ float: right;
2591
+ line-height: 22px;
2592
+ color: #080808;
2593
+ }
2594
+
2595
+ p.sfsi_plus_instagram_shared_premium,
2596
+ p.sfsi_plus_shared_premium {
2597
+ color: #1a1d20 !important;
2598
+ font-family: helveticaregular !important;
2599
+ padding-top: 0 !important;
2600
+ }
2601
+
2602
+ p.sfsi_plus_shared_premium a,
2603
+ p.sfsi_plus_instagram_shared_premium a {
2604
+ text-decoration: none;
2605
+ color: #00a0d2 !important;
2606
+ }
2607
+
2608
+ p.sfsi_plus_shared_premium b,
2609
+ p.sfsi_plus_instagram_shared_premium b {
2610
+ font-weight: bold;
2611
+ }
2612
+
2613
+ p.sfsi_plus_instagram_shared_premium {
2614
+ float: right;
2615
+ width: 41%;
2616
+ line-height: 20px;
2617
+ color: #1f1d1d;
2618
+ font-size: 13px;
2619
+ }
2620
+
2621
+ .sfsi_plus_fb_popup_contain {
2622
+ width: 50%;
2623
+ display: inline-block;
2624
+ }
2625
+
2626
+ .sfsi_plus_icons_align_other {
2627
+ width: auto;
2628
+ font-size: 15px !important;
2629
+ }
2630
+
2631
+ /* notification css*/
2632
+ .sfsi_plus_new_notification {
2633
+ background-color: #fff;
2634
+ border: 4px dashed #00c853;
2635
+ margin-bottom: 30px;
2636
+ width: 100%;
2637
+ }
2638
+
2639
+ .sfsi_plus_new_notification_header {
2640
+ background-color: #e8faef;
2641
+ display: -webkit-box;
2642
+ display: -webkit-flex;
2643
+ display: -ms-flexbox;
2644
+ display: flex;
2645
+ -webkit-box-align: center;
2646
+ -webkit-align-items: center;
2647
+ -ms-flex-align: center;
2648
+ align-items: center;
2649
+ -webkit-box-pack: justify;
2650
+ -webkit-justify-content: space-between;
2651
+ -ms-flex-pack: justify;
2652
+ justify-content: space-between;
2653
+ padding: 10px 0 12px 0;
2654
+ }
2655
+
2656
+ .sfsi_plus_new_notification_header h1 {
2657
+ margin: 0 !important;
2658
+ color: #00c853;
2659
+ font-size: 18px;
2660
+ margin: 0 auto !important;
2661
+ font-family: Arial, Helvetica, sans-serif;
2662
+ }
2663
+
2664
+ .sfsi_plus_new_notification_header h1 a {
2665
+ margin: 0 !important;
2666
+ color: #00c853;
2667
+ font-size: 18px;
2668
+ margin: 0 auto !important;
2669
+ font-family: Arial, Helvetica, sans-serif;
2670
+ text-decoration: none;
2671
+ }
2672
+
2673
+ .sfsi_plus_new_notification_cross {
2674
+ float: right;
2675
+ font-size: 18px;
2676
+ font-weight: 700;
2677
+ line-height: 1;
2678
+ color: #00c853;
2679
+ font-family: Arial, Helvetica, sans-serif;
2680
+ margin-right: 15px;
2681
+ cursor: pointer;
2682
+ }
2683
+
2684
+ .sfsi_plus_new_notification_body {
2685
+ width: 100%;
2686
+ background-color: #fff;
2687
+ display: -webkit-box;
2688
+ display: -webkit-flex;
2689
+ display: -ms-flexbox;
2690
+ display: flex;
2691
+ -webkit-box-align: center;
2692
+ -webkit-align-items: center;
2693
+ -ms-flex-align: center;
2694
+ align-items: center;
2695
+ -webkit-box-pack: justify;
2696
+ -webkit-justify-content: space-between;
2697
+ -ms-flex-pack: justify;
2698
+ justify-content: space-between;
2699
+ }
2700
+
2701
+ .sfsi_plus_new_notification_image {
2702
+ margin: 0 20px 0px 20px;
2703
+ width: 100%;
2704
+ text-align: center;
2705
+ overflow: hidden;
2706
+ }
2707
+
2708
+ .sfsi_plus_new_notification_image img {
2709
+ width: auto;
2710
+ }
2711
+
2712
+ .sfsi_plus_new_notification_learnmore {
2713
+ float: right;
2714
+ }
2715
+
2716
+ .sfsi_plus_new_notification_learnmore {
2717
+ background-color: #00c853;
2718
+ display: block;
2719
+ text-decoration: none;
2720
+ text-align: center;
2721
+ font-size: 20px;
2722
+ font-family: Arial, Helvetica, sans-serif;
2723
+ width: 150px;
2724
+ margin-bottom: -4px;
2725
+ margin-right: -4px;
2726
+ position: relative;
2727
+ color: #fff;
2728
+ padding: 70px 10px;
2729
+ }
2730
+
2731
+ .sfsi_plus_new_notification_body_link a {
2732
+ display: block;
2733
+ text-decoration: none;
2734
+ text-align: center;
2735
+ font-size: 20px;
2736
+ font-family: Arial, Helvetica, sans-serif;
2737
+ color: #fff;
2738
+ }
2739
+
2740
+ /*Tab 4*/
2741
+ .tab4 .sfsi_plus_tokenGenerateButton {
2742
+ margin: 25px 0;
2743
+ }
2744
+
2745
+ .tab4 .sfsi_plus_tokenGenerateButton p {
2746
+ display: inline-block;
2747
+ margin-bottom: 11px;
2748
+ vertical-align: middle;
2749
+ width: 100%;
2750
+ }
2751
+
2752
+ .tab4 .sfsi_plus_tokenGenerateButton a {
2753
+ background-color: #12a252;
2754
+ color: #fff;
2755
+ padding: 10px 20px;
2756
+ text-decoration: none;
2757
+ }
2758
+
2759
+ .tab4 .sfsi_plus_instagramInstruction {
2760
+ float: left;
2761
+ margin-bottom: 12px;
2762
+ width: 450px;
2763
+ }
2764
+
2765
+ .tab4 .sfsi_plus_instagramInstruction ul {
2766
+ padding-left: 14px !important;
2767
+ }
2768
+
2769
+ .tab4 .sfsi_plus_instagramInstruction ul li {
2770
+ font-size: 13px !important;
2771
+ line-height: 20px !important;
2772
+ list-style: outside none bullets !important;
2773
+ margin-top: 5px !important;
2774
+ padding: 0 !important;
2775
+ }
2776
+
2777
+ .tab4 .sfsi_instagram_follower {
2778
+ width: 50%;
2779
+ float: left;
2780
+ }
2781
+
2782
+ /* tab2 emailsection */
2783
+ .sfsi_plus_service_row {
2784
+ margin-right: -15px;
2785
+ margin-left: -15px;
2786
+ }
2787
+
2788
+ .sfsi_plus_service_column {
2789
+ float: left;
2790
+ margin-bottom: 40px;
2791
+ margin-top: 15px;
2792
+ padding-left: 30px;
2793
+ width: 47%;
2794
+ }
2795
+
2796
+ .sfsi_plus_service_column ul {
2797
+ margin-left: 11% !important;
2798
+ }
2799
+
2800
+ .sfsi_plus_service_column ul li {
2801
+ padding-bottom: 10px;
2802
+ font-size: 16px;
2803
+ line-height: 25px;
2804
+ }
2805
+
2806
+ .sfsi_plus_service_column ul li span {
2807
+ color: #12a252;
2808
+ }
2809
+
2810
+ .sfsi_plus_service_column ul li::before {
2811
+ content: url(../images/tick-icon.png);
2812
+ position: relative;
2813
+ top: 0px;
2814
+ right: 10px;
2815
+ text-indent: -22px;
2816
+ float: left;
2817
+ }
2818
+
2819
+ .sfsi_plus_inputbtn {
2820
+ clear: both;
2821
+ display: block;
2822
+ }
2823
+
2824
+ .sfsi_plus_inputbtn input {
2825
+ width: 100%;
2826
+ padding: 15px 0px;
2827
+ text-align: center;
2828
+ margin-bottom: 10px;
2829
+ }
2830
+
2831
+ .sfsi_plus_email_services_text {
2832
+ clear: both;
2833
+ }
2834
+
2835
+ .sfsi_plus_email_services_paragraph {
2836
+ width: 600px;
2837
+ float: left;
2838
+ margin-top: 10px;
2839
+ margin-bottom: 40px;
2840
+ }
2841
+
2842
+ .sfsi_plus_more_services_link a {
2843
+ background-color: #12a252;
2844
+ color: #fff !important;
2845
+ padding: 20px 0px;
2846
+ text-decoration: none;
2847
+ text-align: center;
2848
+ font-size: 20px;
2849
+ display: block;
2850
+ clear: both;
2851
+ font-weight: bold;
2852
+ }
2853
+
2854
+ .sfsi_plus_subscribe_popbox_link a {
2855
+ color: #00a0d2 !important;
2856
+ }
2857
+
2858
+ .sfsi_plus_email_services_paragraph ul {
2859
+ margin-left: 11% !important;
2860
+ }
2861
+
2862
+ .sfsi_plus_email_services_paragraph ul li {
2863
+ padding-bottom: 10px;
2864
+ font-size: 16px;
2865
+ }
2866
+
2867
+ .sfsi_plus_email_services_paragraph ul li span {
2868
+ color: #12a252;
2869
+ }
2870
+
2871
+ .sfsi_plus_email_services_paragraph ul li::before {
2872
+ content: url(../images/tick-icon.png);
2873
+ position: relative;
2874
+ top: 5px;
2875
+ right: 10px;
2876
+ text-indent: -22px;
2877
+ float: left;
2878
+ }
2879
+
2880
+ .sfsi_plus_email_last_paragraph {
2881
+ width: 60%;
2882
+ text-align: center !important;
2883
+ margin: 20px auto ! important;
2884
+ font-size: 16px !important;
2885
+ color: #a4a9ad !important;
2886
+ padding-top: 0px !important;
2887
+ }
2888
+
2889
+ .sfsi_plus_email_last_paragraph a {
2890
+ color: #12a252 !important;
2891
+ font-family: 'helveticaneue-light' !important;
2892
+ }
2893
+
2894
+ .pop_up_box.sfsi_pop_up.sfsi_pop_box {
2895
+ padding: 25px 30px 0 !important;
2896
+ }
2897
+
2898
+ #adminmenu #toplevel_page_sfsi-plus-options ul .wp-first-item {
2899
+ display: none;
2900
+ }
2901
+
2902
+ ul#adminmenu li.toplevel_page_sfsi-plus-options ul.wp-submenu a.current,
2903
+ ul#adminmenu li.toplevel_page_sfsi-plus-options ul.wp-submenu a.current:hover {
2904
+ background: none !important;
2905
+
2906
+ }
2907
+
2908
+ /*new banner styles*/
2909
+ .sfsi_plus_new_notification_cat {
2910
+ width: 100%;
2911
+ min-height: 300px;
2912
+ max-width: 700px;
2913
+ }
2914
+
2915
+ .sfsi_plus_new_notification_cat {
2916
+ background-color: #fff;
2917
+ margin: 30px auto;
2918
+ width: 100%;
2919
+ }
2920
+
2921
+ .sfsi_plus_new_notification_header_cat {
2922
+ background-color: #e8faef;
2923
+ padding: 21px 0 21px 0;
2924
+ text-align: center;
2925
+ }
2926
+
2927
+ .sfsi_plus_new_notification_header_cat h1 {
2928
+ margin: 0;
2929
+ color: #000000;
2930
+ font-size: 24px;
2931
+ margin: 0 auto !important;
2932
+ font-family: Arial, Helvetica, sans-serif;
2933
+ font-weight: bold !important;
2934
+ }
2935
+
2936
+ .sfsi_plus_new_notification_header_cat h3 {
2937
+ margin-top: 10px !important;
2938
+ font-size: 16px;
2939
+ color: #000000;
2940
+ }
2941
+
2942
+ .sfsi_plus_new_notification_header_cat h3 a {
2943
+ text-decoration: none;
2944
+ color: #38B54A;
2945
+ }
2946
+
2947
+ .sfsi_plus_new_notification_header_cat h1 a {
2948
+ margin: 0;
2949
+ color: #00c853;
2950
+ font-size: 18px;
2951
+ margin: 0 auto;
2952
+ font-family: Arial, Helvetica, sans-serif;
2953
+ text-decoration: none;
2954
+ }
2955
+
2956
+ .sfsi_plus_new_notification_cross_cat {
2957
+ float: right;
2958
+ font-size: 18px;
2959
+ font-weight: 700;
2960
+ line-height: 1;
2961
+ color: #000000;
2962
+ font-family: Arial, Helvetica, sans-serif;
2963
+ margin-right: 15px;
2964
+ cursor: pointer;
2965
+ margin-top: -50px;
2966
+ }
2967
+
2968
+ .sfsi_plus_new_notification_body_link_cat a {
2969
+ display: block;
2970
+ text-decoration: none;
2971
+ text-align: center;
2972
+ font-size: 20px;
2973
+ font-family: Arial, Helvetica, sans-serif;
2974
+ color: #fff;
2975
+ }
2976
+
2977
+ .sfsi_plus_new_notification_body_cat {
2978
+ width: 100%;
2979
+ background-color: #fff;
2980
+ }
2981
+
2982
+ .sfsi_plus_new_notification_image_cat {
2983
+ width: 100%;
2984
+ text-align: center;
2985
+ overflow: hidden;
2986
+ }
2987
+
2988
+ .sfsi_plus_new_notification_image_cat img {
2989
+ width: auto;
2990
+ border: 0;
2991
+ vertical-align: middle;
2992
+ }
2993
+
2994
+ .sfsiplus_bottom_text {
2995
+ background: #38B54A;
2996
+ text-align: center;
2997
+ padding: 15px 0px;
2998
+ font-size: 18px;
2999
+ font-weight: bold;
3000
+ color: #fff;
3001
+ }
3002
+
3003
+ .sfsi_plus_new_notification_image_cat p {
3004
+ color: #000000;
3005
+ padding: 10px;
3006
+ font-size: 16px;
3007
+ }
3008
+
3009
+ .sfsi_plus_new_notification_body_link_cat .sfsi_plus_tailored_icons_img {
3010
+ display: block;
3011
+ text-decoration: none;
3012
+ text-align: center;
3013
+ font-size: 20px;
3014
+ font-family: Arial, Helvetica, sans-serif;
3015
+ color: #fff;
3016
+ margin: 28px 0px;
3017
+ }
3018
+
3019
+ /**curl error box*/
3020
+ .sfsiplus_curlerror {
3021
+ margin: 0px 0px 10px 94px;
3022
+ background: rgba(244, 67, 54, 0.08);
3023
+ padding: 20px;
3024
+ line-height: 20px;
3025
+ }
3026
+
3027
+ .sfsi_plus_versionNotification .sfsiplus_curlerror {
3028
+ background: rgba(244, 67, 54, 0.08);
3029
+ padding: 20px;
3030
+ line-height: 20px;
3031
+ margin: 0px 0px 10px 0px;
3032
+ }
3033
+
3034
+ .sfsi_plus_curlerror_cross {
3035
+ float: right;
3036
+ text-decoration: underline;
3037
+ margin-top: 10px;
3038
+ }
3039
+
3040
+ .sfsiplus_curlerrortab4 a {
3041
+ color: #0073aa !important;
3042
+ }
3043
+
3044
+ .sfsiplus_curlerror a {
3045
+ color: #0073aa !important;
3046
+ }
3047
+
3048
+ .social_data_post_types {
3049
+ float: left;
3050
+ width: 100%;
3051
+ margin-top: 10px;
3052
+ }
3053
+
3054
+ .social_data_post_types .checkbox {
3055
+ float: left;
3056
+ margin-top: 5px;
3057
+ margin-right: 5px;
3058
+ }
3059
+
3060
+ .social_data_post_types ul {
3061
+ float: left;
3062
+ margin-top: 5px;
3063
+ }
3064
+
3065
+ .social_data_post_types li {
3066
+ float: left;
3067
+ min-width: 90px;
3068
+ }
3069
+
3070
+ .social_data_post_types .radio_section.tb_4_ck {
3071
+ float: left;
3072
+ margin-right: 5px;
3073
+ }
3074
+
3075
+ .social_data_post_types .radio_section.tb_4_ck .cstmdsplsub {
3076
+ font-size: 16px;
3077
+ }
3078
+
3079
+ .social_data_post_types ul {
3080
+ float: left;
3081
+ width: 84%;
3082
+ }
3083
+
3084
+ .social_data_post_types .radio_section.tb_4_ck input.styled {
3085
+ margin-top: 20px;
3086
+ }
3087
+
3088
+ ul.sfsi_show_hide_section {
3089
+ float: right;
3090
+ width: 14%;
3091
+ }
3092
+
3093
+ .sfsi_social_sharing {
3094
+ margin-bottom: 15px;
3095
+ float: left;
3096
+ width: 51%;
3097
+ }
3098
+
3099
+ .socialPostTypesUl span {
3100
+ pointer-events: none
3101
+ }
3102
+
3103
+ .sfsiplus_pinterest_section .sfsi_plus_new_prmium_follw a {
3104
+ font-weight: bold;
3105
+ }
3106
+
3107
+ /*support forum*/
3108
+ .welcometext {
3109
+ float: left;
3110
+ width: 78%;
3111
+ }
3112
+
3113
+ .welcometext p {
3114
+ margin-bottom: 8px !important;
3115
+ margin-top: 15px !important;
3116
+ }
3117
+
3118
+ .supportforum {
3119
+ float: right;
3120
+ width: auto;
3121
+ background: #fff;
3122
+ text-align: center;
3123
+ padding: 0 20px 3px 7px;
3124
+ }
3125
+
3126
+ .support-container p {
3127
+ font-family: helveticaregular !important;
3128
+ }
3129
+
3130
+ .support-container {
3131
+ padding: 7px 4px;
3132
+ }
3133
+
3134
+ .have-questions {
3135
+ text-align: center;
3136
+ font-size: 20px;
3137
+ }
3138
+
3139
+ .have-questions img {
3140
+ width: 45px;
3141
+ display: inline-block;
3142
+ }
3143
+
3144
+ .have-questions .have-quest {
3145
+ display: inline-block;
3146
+ font-size: 20px;
3147
+ font-weight: 700;
3148
+ margin: 0;
3149
+ vertical-align: top;
3150
+ margin-top: 13px;
3151
+ }
3152
+
3153
+ .have-questions .ask-question {
3154
+ margin-bottom: 3px !important;
3155
+ margin-top: 2px !important;
3156
+ }
3157
+
3158
+ .support-forum-green-bg {
3159
+ margin-top: 5px;
3160
+ margin-left: 20px;
3161
+ background: #26B654;
3162
+ width: 145px;
3163
+ border-radius: 5px;
3164
+ padding: 10px 16px 8px 15px;
3165
+ }
3166
+
3167
+ .support-forum-green-bg img {
3168
+ display: inline-block;
3169
+ padding-right: 5px;
3170
+ vertical-align: top;
3171
+ margin-top: 3px;
3172
+ }
3173
+
3174
+ .support-forum-green-div p.support-forum {
3175
+ display: inline-block;
3176
+ color: #fff;
3177
+ font-weight: 700;
3178
+ margin: 0 !important;
3179
+ }
3180
+
3181
+ .support-forum-green-div a {
3182
+ text-decoration: none !important;
3183
+ }
3184
+
3185
+ .respond-text p {
3186
+ margin: 10px 0 0 0px !important
3187
+ }
3188
+
3189
+ .respond-text {
3190
+ margin-left: 20px;
3191
+ float: left;
3192
+ margin-bottom: 8px;
3193
+ }
3194
+
3195
+ #accordion,
3196
+ #accordion1 {
3197
+ float: left;
3198
+ clear: both;
3199
+ width: 100%;
3200
+ }
3201
+
3202
+ @media (min-width: 1631px) and (max-width: 1631px) {
3203
+ .premiumComponent {
3204
+ width: 52% !important;
3205
+ }
3206
+
3207
+ .premiumButtonsContainer {
3208
+ width: 44% !important;
3209
+ }
3210
+
3211
+ .premiumButtonsContainer .premiumSection2 {
3212
+ width: 41% !important;
3213
+ }
3214
+
3215
+ .premiumButtonsContainer .premiumSection3 {
3216
+ width: 41% !important;
3217
+ }
3218
+ }
3219
+
3220
+ /* Link to support forum for different languages */
3221
+ #sfsi_plus_langnotice {
3222
+ position: relative;
3223
+ padding: 15px 10px;
3224
+ margin: 0px 15px 35px 0px;
3225
+ }
3226
+
3227
+ #sfsi_plus_langnotice .sfsi-notice-dismiss {
3228
+ position: absolute;
3229
+ right: 1px;
3230
+ border: none;
3231
+ margin: 0;
3232
+ padding: 9px;
3233
+ background: none;
3234
+ color: #72777c;
3235
+ cursor: pointer;
3236
+ top: 5px;
3237
+ }
3238
+
3239
+ /* Link to support forum left of every Save button */
3240
+ .ui-accordion .ui-accordion-content {
3241
+ position: relative;
3242
+ }
3243
+
3244
+ .sfsi_plus_askforhelp {
3245
+ float: left;
3246
+ width: auto;
3247
+ position: absolute;
3248
+ bottom: 30px;
3249
+ }
3250
+
3251
+ .sfsi_plus_askforhelp img {
3252
+ float: left;
3253
+ width: 35px;
3254
+ height: 35px;
3255
+ vertical-align: middle;
3256
+ }
3257
+
3258
+ .sfsi_plus_askforhelp span {
3259
+ float: left;
3260
+ margin-left: 6px;
3261
+ margin-top: 8px;
3262
+ }
3263
+
3264
+ .askhelpInview2 {
3265
+ bottom: 25px;
3266
+ }
3267
+
3268
+ .askhelpInview3 {
3269
+ bottom: 51px;
3270
+ }
3271
+
3272
+ .askhelpInview7 {
3273
+ bottom: 50px;
3274
+ }
3275
+
3276
+ .ulSuppressErrors {
3277
+ margin-top: 20px !important;
3278
+ }
3279
+
3280
+ .ulSuppressErrors li {
3281
+ float: left;
3282
+ }
3283
+
3284
+ div#sfsi_plus_addThis_removal_notice {
3285
+ padding: 10px;
3286
+ margin-left: 0px;
3287
+ position: relative;
3288
+ }
3289
+
3290
+ div#sfsi_plus_langnotice {
3291
+ padding: 10px;
3292
+ margin-left: 0px;
3293
+ position: relative;
3294
+ }
3295
+
3296
+
3297
+ .clear {
3298
+ clear: both;
3299
+ }
3300
+
3301
+ .show {
3302
+ display: block;
3303
+ }
3304
+
3305
+ .hide {
3306
+ display: none;
3307
+ }
3308
+
3309
+ .zeropadding {
3310
+ padding: 0px !important;
3311
+ }
3312
+
3313
+ .zerotoppadding {
3314
+ padding-top: 0px !important;
3315
+ }
3316
+
3317
+ .zerobottompadding {
3318
+ padding-bottom: 0px !important;
3319
+ }
3320
+
3321
+ .zerotopmargin {
3322
+ margin-top: 0px !important;
3323
+ }
3324
+
3325
+ .rowpadding10 {
3326
+ padding: 10px 0 !important;
3327
+ }
3328
+
3329
+ .rowmarginleft15 {
3330
+ margin-left: 15px !important;
3331
+ }
3332
+
3333
+ .rowmarginleft25 {
3334
+ margin-left: 25px !important;
3335
+ }
3336
+
3337
+ .rowmarginleft45 {
3338
+ margin-left: 45px !important;
3339
+ }
3340
+
3341
+ .bottommargin20 {
3342
+ margin-bottom: 20px !important;
3343
+ }
3344
+
3345
+ .bottommargin30 {
3346
+ margin-bottom: 30px !important;
3347
+ }
3348
+
3349
+ .bottommargin40 {
3350
+ margin-bottom: 40px !important;
3351
+ }
3352
+
3353
+ .inactiveSection {
3354
+ opacity: 0.2;
3355
+ pointer-events: none;
3356
+ }
3357
+
3358
+ /* */
3359
+ .tab3 .sub_row {
3360
+ float: left;
3361
+ margin: 35px 0 0 4%;
3362
+ width: 80%;
3363
+ }
3364
+
3365
+ .tab3 .sub_row label {
3366
+ float: left;
3367
+ margin: 0 0px 0 10px;
3368
+ line-height: 36px;
3369
+ font-size: 18px;
3370
+ }
3371
+
3372
+ .tab3 .sub_row .effectContainer {
3373
+ float: left;
3374
+ width: 100%;
3375
+ margin-left: 45px;
3376
+ }
3377
+
3378
+ .tab3 .sub_row .effectName {
3379
+ float: left;
3380
+ width: 25%;
3381
+ }
3382
+
3383
+ .tab3 .tab_3_sav {
3384
+ padding-top: 0;
3385
+ margin: 0px auto 10px;
3386
+ position: relative;
3387
+ z-index: 9;
3388
+ }
3389
+
3390
+ .tab3 .Shuffle_auto {
3391
+ float: left;
3392
+ width: 80%;
3393
+ clear: both;
3394
+ }
3395
+
3396
+ .tab3 #animationSection label {
3397
+ font-family: 'helveticaneue-light';
3398
+ }
3399
+
3400
+ .tab3 select[name='mouseover_other_icons_transition_effect'] {
3401
+ margin-left: 10px;
3402
+ padding: 0px 11px;
3403
+ margin-top: 4px;
3404
+ font-size: 15px;
3405
+ border-radius: 5px;
3406
+ }
3407
+
3408
+ .tab3 .other_icons_effects_options .mouseover_other_icon_label {
3409
+ float: left;
3410
+ width: 30%;
3411
+ font-size: 16px;
3412
+ }
3413
+
3414
+ .tab3 .mouse-over-effects span.radio {
3415
+ float: left;
3416
+ display: inline-block;
3417
+ }
3418
+
3419
+ .tab3 .same_icons_effects label span {
3420
+ float: left;
3421
+ clear: both;
3422
+ line-height: 20px;
3423
+ }
3424
+
3425
+ .tab3 .same_icons_effects label span:nth-child(2) {
3426
+ font-size: 14px;
3427
+ }
3428
+
3429
+ .tab3 .other_icons_effects_options .mouseover_other_icon_img {
3430
+ float: left;
3431
+ width: 40px;
3432
+ height: 40px;
3433
+ }
3434
+
3435
+ .tab3 .other_icons_effects_options .mouseover_other_icon_change_link,
3436
+ .tab3 .other_icons_effects_options .mouseover_other_icon_revert_link {
3437
+ float: left;
3438
+ color: #337ab7;
3439
+ margin-left: 15px;
3440
+ padding: 5px 0px;
3441
+ font-size: 15px;
3442
+ text-decoration: underline;
3443
+ }
3444
+
3445
+ /* MZ CSS */
3446
+ .notopborder {
3447
+ border-top: none !important;
3448
+ }
3449
+
3450
+
3451
+ /* MZ CSS END */
3452
+ .mouseover-premium-notice {}
3453
+
3454
+ .mouseover-premium-notice label {
3455
+ width: auto !important;
3456
+ margin: 0 !important;
3457
+ }
3458
+
3459
+ .mouseover-premium-notice a {
3460
+ float: left;
3461
+ color: #12a252 !important;
3462
+ padding-top: 5px;
3463
+ margin-left: 5px;
3464
+ font-size: 18px;
3465
+ }
3466
+
3467
+ @media (min-width:414px) and (max-width: 736px) and (orientation:portrait) {
3468
+ .tab3 .sub_row {
3469
+ width: 100%;
3470
+ }
3471
+
3472
+ .tab3 .sub_row .effectContainer {
3473
+ margin-left: 25px;
3474
+ margin-bottom: 0px;
3475
+ clear: both;
3476
+ }
3477
+
3478
+ .tab3 .sub_row .effectName {
3479
+ width: 100%;
3480
+ margin-bottom: 25px
3481
+ }
3482
+
3483
+ .rowmarginleft45 {
3484
+ margin-left: 0px !important;
3485
+ }
3486
+
3487
+ .bottommargin40 {
3488
+ margin-bottom: 0px !important;
3489
+ }
3490
+ }
3491
+
3492
+ @media (min-width:414px) and (max-width: 736px) and (orientation:landscape) {
3493
+ .tab3 .sub_row {
3494
+ width: 100%;
3495
+ }
3496
+
3497
+ .tab3 .sub_row .effectContainer {
3498
+ margin-left: 25px;
3499
+ margin-bottom: 0px;
3500
+ clear: both;
3501
+ }
3502
+
3503
+ .tab3 .sub_row .effectName {
3504
+ width: 50%;
3505
+ margin-bottom: 25px
3506
+ }
3507
+
3508
+ .rowmarginleft45 {
3509
+ margin-left: 25px !important;
3510
+ }
3511
+
3512
+ .bottommargin40 {
3513
+ margin-bottom: 0px !important;
3514
+ }
3515
+ }
3516
+
3517
+ @media (min-width:1024px) and (max-width: 1366px) and (orientation:portrait) {}
3518
+
3519
+ @media (min-width:1024px) and (max-width: 1366px) and (orientation:landscape) {
3520
+ .tab3 .sub_row .effectName {
3521
+ width: 40%;
3522
+ }
3523
+
3524
+ .tab3 .sub_row label {
3525
+ width: 75%;
3526
+ }
3527
+ }
3528
+
3529
+ @media (min-width:768px) and (max-width: 1024px) and (orientation:portrait) {
3530
+ .tab3 .sub_row {
3531
+ width: 100%;
3532
+ }
3533
+
3534
+ .tab3 .sub_row .effectContainer {
3535
+ margin-bottom: 25px;
3536
+ clear: both;
3537
+ }
3538
+
3539
+ .tab3 .sub_row .effectName {
3540
+ width: 50%;
3541
+ }
3542
+
3543
+ .tab3 .sub_row label {
3544
+ width: 77%;
3545
+ }
3546
+ }
3547
+
3548
+ /* */
3549
+
3550
+ .col-lg-1,
3551
+ .col-lg-10,
3552
+ .col-lg-11,
3553
+ .col-lg-12,
3554
+ .col-lg-2,
3555
+ .col-lg-3,
3556
+ .col-lg-4,
3557
+ .col-lg-5,
3558
+ .col-lg-6,
3559
+ .col-lg-7,
3560
+ .col-lg-8,
3561
+ .col-lg-9,
3562
+ .col-md-1,
3563
+ .col-md-10,
3564
+ .col-md-11,
3565
+ .col-md-12,
3566
+ .col-md-2,
3567
+ .col-md-3,
3568
+ .col-md-4,
3569
+ .col-md-5,
3570
+ .col-md-6,
3571
+ .col-md-7,
3572
+ .col-md-8,
3573
+ .col-md-9,
3574
+ .col-sm-1,
3575
+ .col-sm-10,
3576
+ .col-sm-11,
3577
+ .col-sm-12,
3578
+ .col-sm-2,
3579
+ .col-sm-3,
3580
+ .col-sm-4,
3581
+ .col-sm-5,
3582
+ .col-sm-6,
3583
+ .col-sm-7,
3584
+ .col-sm-8,
3585
+ .col-sm-9,
3586
+ .col-xs-1,
3587
+ .col-xs-10,
3588
+ .col-xs-11,
3589
+ .col-xs-12,
3590
+ .col-xs-2,
3591
+ .col-xs-3,
3592
+ .col-xs-4,
3593
+ .col-xs-5,
3594
+ .col-xs-6,
3595
+ .col-xs-7,
3596
+ .col-xs-8,
3597
+ .col-xs-9 {
3598
+ position: relative;
3599
+ min-height: 1px;
3600
+ padding-right: 15px;
3601
+ padding-left: 15px;
3602
+ }
3603
+
3604
+ @media (min-width: 992px) {
3605
+ .col-md-3 {
3606
+ width: 25%;
3607
+ }
3608
+
3609
+ .col-md-1,
3610
+ .col-md-10,
3611
+ .col-md-11,
3612
+ .col-md-12,
3613
+ .col-md-2,
3614
+ .col-md-3,
3615
+ .col-md-4,
3616
+ .col-md-5,
3617
+ .col-md-6,
3618
+ .col-md-7,
3619
+ .col-md-8,
3620
+ .col-md-9 {
3621
+ float: left;
3622
+ }
3623
+
3624
+ .col-md-12 {
3625
+ width: 100%
3626
+ }
3627
+
3628
+ .col-md-11 {
3629
+ width: 91.66666667%
3630
+ }
3631
+
3632
+ .col-md-10 {
3633
+ width: 83.33333333%
3634
+ }
3635
+
3636
+ .col-md-9 {
3637
+ width: 75%
3638
+ }
3639
+
3640
+ .col-md-8 {
3641
+ width: 66.66666667%
3642
+ }
3643
+
3644
+ .col-md-7 {
3645
+ width: 58.33333333%
3646
+ }
3647
+
3648
+ .col-md-6 {
3649
+ width: 50%
3650
+ }
3651
+
3652
+ .col-md-5 {
3653
+ width: 41.66666667%
3654
+ }
3655
+
3656
+ .col-md-4 {
3657
+ width: 33.33333333%
3658
+ }
3659
+
3660
+ .col-md-3 {
3661
+ width: 25%
3662
+ }
3663
+
3664
+ .col-md-2 {
3665
+ width: 16.66666667%
3666
+ }
3667
+
3668
+ .col-md-1 {
3669
+ width: 8.33333333%
3670
+ }
3671
+
3672
+ .col-md-pull-12 {
3673
+ right: 100%
3674
+ }
3675
+
3676
+ .col-md-pull-11 {
3677
+ right: 91.66666667%
3678
+ }
3679
+
3680
+ .col-md-pull-10 {
3681
+ right: 83.33333333%
3682
+ }
3683
+
3684
+ .col-md-pull-9 {
3685
+ right: 75%
3686
+ }
3687
+
3688
+ .col-md-pull-8 {
3689
+ right: 66.66666667%
3690
+ }
3691
+
3692
+ .col-md-pull-7 {
3693
+ right: 58.33333333%
3694
+ }
3695
+
3696
+ .col-md-pull-6 {
3697
+ right: 50%
3698
+ }
3699
+
3700
+ .col-md-pull-5 {
3701
+ right: 41.66666667%
3702
+ }
3703
+
3704
+ .col-md-pull-4 {
3705
+ right: 33.33333333%
3706
+ }
3707
+
3708
+ .col-md-pull-3 {
3709
+ right: 25%
3710
+ }
3711
+
3712
+ .col-md-pull-2 {
3713
+ right: 16.66666667%
3714
+ }
3715
+
3716
+ .col-md-pull-1 {
3717
+ right: 8.33333333%
3718
+ }
3719
+
3720
+ .col-md-pull-0 {
3721
+ right: auto
3722
+ }
3723
+
3724
+ .col-md-push-12 {
3725
+ left: 100%
3726
+ }
3727
+
3728
+ .col-md-push-11 {
3729
+ left: 91.66666667%
3730
+ }
3731
+
3732
+ .col-md-push-10 {
3733
+ left: 83.33333333%
3734
+ }
3735
+
3736
+ .col-md-push-9 {
3737
+ left: 75%
3738
+ }
3739
+
3740
+ .col-md-push-8 {
3741
+ left: 66.66666667%
3742
+ }
3743
+
3744
+ .col-md-push-7 {
3745
+ left: 58.33333333%
3746
+ }
3747
+
3748
+ .col-md-push-6 {
3749
+ left: 50%
3750
+ }
3751
+
3752
+ .col-md-push-5 {
3753
+ left: 41.66666667%
3754
+ }
3755
+
3756
+ .col-md-push-4 {
3757
+ left: 33.33333333%
3758
+ }
3759
+
3760
+ .col-md-push-3 {
3761
+ left: 25%
3762
+ }
3763
+
3764
+ .col-md-push-2 {
3765
+ left: 16.66666667%
3766
+ }
3767
+
3768
+ .col-md-push-1 {
3769
+ left: 8.33333333%
3770
+ }
3771
+
3772
+ .col-md-push-0 {
3773
+ left: auto
3774
+ }
3775
+
3776
+ .col-md-offset-12 {
3777
+ margin-left: 100%
3778
+ }
3779
+
3780
+ .col-md-offset-11 {
3781
+ margin-left: 91.66666667%
3782
+ }
3783
+
3784
+ .col-md-offset-10 {
3785
+ margin-left: 83.33333333%
3786
+ }
3787
+
3788
+ .col-md-offset-9 {
3789
+ margin-left: 75%
3790
+ }
3791
+
3792
+ .col-md-offset-8 {
3793
+ margin-left: 66.66666667%
3794
+ }
3795
+
3796
+ .col-md-offset-7 {
3797
+ margin-left: 58.33333333%
3798
+ }
3799
+
3800
+ .col-md-offset-6 {
3801
+ margin-left: 50%
3802
+ }
3803
+
3804
+ .col-md-offset-5 {
3805
+ margin-left: 41.66666667%
3806
+ }
3807
+
3808
+ .col-md-offset-4 {
3809
+ margin-left: 33.33333333%
3810
+ }
3811
+
3812
+ .col-md-offset-3 {
3813
+ margin-left: 25%
3814
+ }
3815
+
3816
+ .col-md-offset-2 {
3817
+ margin-left: 16.66666667%
3818
+ }
3819
+
3820
+ .col-md-offset-1 {
3821
+ margin-left: 8.33333333%
3822
+ }
3823
+
3824
+ .col-md-offset-0 {
3825
+ margin-left: 0
3826
+ }
3827
+ }
3828
+
3829
+ @media (min-width:768px) {
3830
+
3831
+ .col-sm-1,
3832
+ .col-sm-10,
3833
+ .col-sm-11,
3834
+ .col-sm-12,
3835
+ .col-sm-2,
3836
+ .col-sm-3,
3837
+ .col-sm-4,
3838
+ .col-sm-5,
3839
+ .col-sm-6,
3840
+ .col-sm-7,
3841
+ .col-sm-8,
3842
+ .col-sm-9 {
3843
+ float: left
3844
+ }
3845
+
3846
+ .col-sm-12 {
3847
+ width: 100%
3848
+ }
3849
+
3850
+ .col-sm-11 {
3851
+ width: 91.66666667%
3852
+ }
3853
+
3854
+ .col-sm-10 {
3855
+ width: 83.33333333%
3856
+ }
3857
+
3858
+ .col-sm-9 {
3859
+ width: 75%
3860
+ }
3861
+
3862
+ .col-sm-8 {
3863
+ width: 66.66666667%
3864
+ }
3865
+
3866
+ .col-sm-7 {
3867
+ width: 58.33333333%
3868
+ }
3869
+
3870
+ .col-sm-6 {
3871
+ width: 50%
3872
+ }
3873
+
3874
+ .col-sm-5 {
3875
+ width: 41.66666667%
3876
+ }
3877
+
3878
+ .col-sm-4 {
3879
+ width: 33.33333333%
3880
+ }
3881
+
3882
+ .col-sm-3 {
3883
+ width: 25%
3884
+ }
3885
+
3886
+ .col-sm-2 {
3887
+ width: 16.66666667%
3888
+ }
3889
+
3890
+ .col-sm-1 {
3891
+ width: 8.33333333%
3892
+ }
3893
+
3894
+ .col-sm-pull-12 {
3895
+ right: 100%
3896
+ }
3897
+
3898
+ .col-sm-pull-11 {
3899
+ right: 91.66666667%
3900
+ }
3901
+
3902
+ .col-sm-pull-10 {
3903
+ right: 83.33333333%
3904
+ }
3905
+
3906
+ .col-sm-pull-9 {
3907
+ right: 75%
3908
+ }
3909
+
3910
+ .col-sm-pull-8 {
3911
+ right: 66.66666667%
3912
+ }
3913
+
3914
+ .col-sm-pull-7 {
3915
+ right: 58.33333333%
3916
+ }
3917
+
3918
+ .col-sm-pull-6 {
3919
+ right: 50%
3920
+ }
3921
+
3922
+ .col-sm-pull-5 {
3923
+ right: 41.66666667%
3924
+ }
3925
+
3926
+ .col-sm-pull-4 {
3927
+ right: 33.33333333%
3928
+ }
3929
+
3930
+ .col-sm-pull-3 {
3931
+ right: 25%
3932
+ }
3933
+
3934
+ .col-sm-pull-2 {
3935
+ right: 16.66666667%
3936
+ }
3937
+
3938
+ .col-sm-pull-1 {
3939
+ right: 8.33333333%
3940
+ }
3941
+
3942
+ .col-sm-pull-0 {
3943
+ right: auto
3944
+ }
3945
+
3946
+ .col-sm-push-12 {
3947
+ left: 100%
3948
+ }
3949
+
3950
+ .col-sm-push-11 {
3951
+ left: 91.66666667%
3952
+ }
3953
+
3954
+ .col-sm-push-10 {
3955
+ left: 83.33333333%
3956
+ }
3957
+
3958
+ .col-sm-push-9 {
3959
+ left: 75%
3960
+ }
3961
+
3962
+ .col-sm-push-8 {
3963
+ left: 66.66666667%
3964
+ }
3965
+
3966
+ .col-sm-push-7 {
3967
+ left: 58.33333333%
3968
+ }
3969
+
3970
+ .col-sm-push-6 {
3971
+ left: 50%
3972
+ }
3973
+
3974
+ .col-sm-push-5 {
3975
+ left: 41.66666667%
3976
+ }
3977
+
3978
+ .col-sm-push-4 {
3979
+ left: 33.33333333%
3980
+ }
3981
+
3982
+ .col-sm-push-3 {
3983
+ left: 25%
3984
+ }
3985
+
3986
+ .col-sm-push-2 {
3987
+ left: 16.66666667%
3988
+ }
3989
+
3990
+ .col-sm-push-1 {
3991
+ left: 8.33333333%
3992
+ }
3993
+
3994
+ .col-sm-push-0 {
3995
+ left: auto
3996
+ }
3997
+
3998
+ .col-sm-offset-12 {
3999
+ margin-left: 100%
4000
+ }
4001
+
4002
+ .col-sm-offset-11 {
4003
+ margin-left: 91.66666667%
4004
+ }
4005
+
4006
+ .col-sm-offset-10 {
4007
+ margin-left: 83.33333333%
4008
+ }
4009
+
4010
+ .col-sm-offset-9 {
4011
+ margin-left: 75%
4012
+ }
4013
+
4014
+ .col-sm-offset-8 {
4015
+ margin-left: 66.66666667%
4016
+ }
4017
+
4018
+ .col-sm-offset-7 {
4019
+ margin-left: 58.33333333%
4020
+ }
4021
+
4022
+ .col-sm-offset-6 {
4023
+ margin-left: 50%
4024
+ }
4025
+
4026
+ .col-sm-offset-5 {
4027
+ margin-left: 41.66666667%
4028
+ }
4029
+
4030
+ .col-sm-offset-4 {
4031
+ margin-left: 33.33333333%
4032
+ }
4033
+
4034
+ .col-sm-offset-3 {
4035
+ margin-left: 25%
4036
+ }
4037
+
4038
+ .col-sm-offset-2 {
4039
+ margin-left: 16.66666667%
4040
+ }
4041
+
4042
+ .col-sm-offset-1 {
4043
+ margin-left: 8.33333333%
4044
+ }
4045
+
4046
+ .col-sm-offset-0 {
4047
+ margin-left: 0
4048
+ }
4049
+ }
4050
+
4051
+ @media (min-width:1200px) {
4052
+
4053
+ .col-lg-1,
4054
+ .col-lg-10,
4055
+ .col-lg-11,
4056
+ .col-lg-12,
4057
+ .col-lg-2,
4058
+ .col-lg-3,
4059
+ .col-lg-4,
4060
+ .col-lg-5,
4061
+ .col-lg-6,
4062
+ .col-lg-7,
4063
+ .col-lg-8,
4064
+ .col-lg-9 {
4065
+ float: left
4066
+ }
4067
+
4068
+ .col-lg-12 {
4069
+ width: 100%
4070
+ }
4071
+
4072
+ .col-lg-11 {
4073
+ width: 91.66666667%
4074
+ }
4075
+
4076
+ .col-lg-10 {
4077
+ width: 83.33333333%
4078
+ }
4079
+
4080
+ .col-lg-9 {
4081
+ width: 75%
4082
+ }
4083
+
4084
+ .col-lg-8 {
4085
+ width: 66.66666667%
4086
+ }
4087
+
4088
+ .col-lg-7 {
4089
+ width: 58.33333333%
4090
+ }
4091
+
4092
+ .col-lg-6 {
4093
+ width: 50%
4094
+ }
4095
+
4096
+ .col-lg-5 {
4097
+ width: 41.66666667%
4098
+ }
4099
+
4100
+ .col-lg-4 {
4101
+ width: 33.33333333%
4102
+ }
4103
+
4104
+ .col-lg-3 {
4105
+ width: 25%
4106
+ }
4107
+
4108
+ .col-lg-2 {
4109
+ width: 16.66666667%
4110
+ }
4111
+
4112
+ .col-lg-1 {
4113
+ width: 8.33333333%
4114
+ }
4115
+
4116
+ .col-lg-pull-12 {
4117
+ right: 100%
4118
+ }
4119
+
4120
+ .col-lg-pull-11 {
4121
+ right: 91.66666667%
4122
+ }
4123
+
4124
+ .col-lg-pull-10 {
4125
+ right: 83.33333333%
4126
+ }
4127
+
4128
+ .col-lg-pull-9 {
4129
+ right: 75%
4130
+ }
4131
+
4132
+ .col-lg-pull-8 {
4133
+ right: 66.66666667%
4134
+ }
4135
+
4136
+ .col-lg-pull-7 {
4137
+ right: 58.33333333%
4138
+ }
4139
+
4140
+ .col-lg-pull-6 {
4141
+ right: 50%
4142
+ }
4143
+
4144
+ .col-lg-pull-5 {
4145
+ right: 41.66666667%
4146
+ }
4147
+
4148
+ .col-lg-pull-4 {
4149
+ right: 33.33333333%
4150
+ }
4151
+
4152
+ .col-lg-pull-3 {
4153
+ right: 25%
4154
+ }
4155
+
4156
+ .col-lg-pull-2 {
4157
+ right: 16.66666667%
4158
+ }
4159
+
4160
+ .col-lg-pull-1 {
4161
+ right: 8.33333333%
4162
+ }
4163
+
4164
+ .col-lg-pull-0 {
4165
+ right: auto
4166
+ }
4167
+
4168
+ .col-lg-push-12 {
4169
+ left: 100%
4170
+ }
4171
+
4172
+ .col-lg-push-11 {
4173
+ left: 91.66666667%
4174
+ }
4175
+
4176
+ .col-lg-push-10 {
4177
+ left: 83.33333333%
4178
+ }
4179
+
4180
+ .col-lg-push-9 {
4181
+ left: 75%
4182
+ }
4183
+
4184
+ .col-lg-push-8 {
4185
+ left: 66.66666667%
4186
+ }
4187
+
4188
+ .col-lg-push-7 {
4189
+ left: 58.33333333%
4190
+ }
4191
+
4192
+ .col-lg-push-6 {
4193
+ left: 50%
4194
+ }
4195
+
4196
+ .col-lg-push-5 {
4197
+ left: 41.66666667%
4198
+ }
4199
+
4200
+ .col-lg-push-4 {
4201
+ left: 33.33333333%
4202
+ }
4203
+
4204
+ .col-lg-push-3 {
4205
+ left: 25%
4206
+ }
4207
+
4208
+ .col-lg-push-2 {
4209
+ left: 16.66666667%
4210
+ }
4211
+
4212
+ .col-lg-push-1 {
4213
+ left: 8.33333333%
4214
+ }
4215
+
4216
+ .col-lg-push-0 {
4217
+ left: auto
4218
+ }
4219
+
4220
+ .col-lg-offset-12 {
4221
+ margin-left: 100%
4222
+ }
4223
+
4224
+ .col-lg-offset-11 {
4225
+ margin-left: 91.66666667%
4226
+ }
4227
+
4228
+ .col-lg-offset-10 {
4229
+ margin-left: 83.33333333%
4230
+ }
4231
+
4232
+ .col-lg-offset-9 {
4233
+ margin-left: 75%
4234
+ }
4235
+
4236
+ .col-lg-offset-8 {
4237
+ margin-left: 66.66666667%
4238
+ }
4239
+
4240
+ .col-lg-offset-7 {
4241
+ margin-left: 58.33333333%
4242
+ }
4243
+
4244
+ .col-lg-offset-6 {
4245
+ margin-left: 50%
4246
+ }
4247
+
4248
+ .col-lg-offset-5 {
4249
+ margin-left: 41.66666667%
4250
+ }
4251
+
4252
+ .col-lg-offset-4 {
4253
+ margin-left: 33.33333333%
4254
+ }
4255
+
4256
+ .col-lg-offset-3 {
4257
+ margin-left: 25%
4258
+ }
4259
+
4260
+ .col-lg-offset-2 {
4261
+ margin-left: 16.66666667%
4262
+ }
4263
+
4264
+ .col-lg-offset-1 {
4265
+ margin-left: 8.33333333%
4266
+ }
4267
+
4268
+ .col-lg-offset-0 {
4269
+ margin-left: 0
4270
+ }
4271
+ }
4272
+
4273
+ #sfsi_plus_jivo_offline_chat {
4274
+ position: fixed;
4275
+ bottom: 0;
4276
+ right: 30px;
4277
+ height: 350px;
4278
+ min-width: 45%;
4279
+ background: #fff;
4280
+ border-top-left-radius: 30px;
4281
+ border-top-right-radius: 30px;
4282
+ padding: 10px;
4283
+ border: 3px solid #ddd;
4284
+ border-bottom: 0;
4285
+ }
4286
+
4287
+ #sfsi_plus_jivo_offline_chat .heading-text {
4288
+ font-size: 16px;
4289
+ font-weight: 500;
4290
+ color: #999;
4291
+ }
4292
+
4293
+ #sfsi_plus_jivo_offline_chat .heading-text a {
4294
+ font-size: 16px;
4295
+ font-weight: 900;
4296
+ color: #999;
4297
+ }
4298
+
4299
+ #sfsi_plus_jivo_offline_chat .tab-changer {
4300
+ /*width:100%;*/
4301
+ padding: 0 15px;
4302
+
4303
+ }
4304
+
4305
+ #sfsi_plus_jivo_offline_chat .tab-changer .tab-link {
4306
+ float: left;
4307
+ width: 50%;
4308
+ text-align: center;
4309
+ background: #eee;
4310
+ border-bottom: 5px solid #24497B;
4311
+ }
4312
+
4313
+ #sfsi_plus_jivo_offline_chat .tab-changer .tab-link:first-child {
4314
+ border-top-left-radius: 8px;
4315
+ }
4316
+
4317
+ #sfsi_plus_jivo_offline_chat .tab-changer .tab-link:last-child {
4318
+ border-top-right-radius: 8px;
4319
+ }
4320
+
4321
+ #sfsi_plus_jivo_offline_chat .tab-changer .tab-link p {
4322
+ background: #eee;
4323
+ padding: 5px 0;
4324
+ margin: 0;
4325
+ border-top-left-radius: 10px;
4326
+ border-top-right-radius: 10px;
4327
+ font-size: 25px;
4328
+ cursor: pointer;
4329
+ line-height: 1;
4330
+ }
4331
+
4332
+ #sfsi_plus_jivo_offline_chat .tab-changer .tab-link p span {
4333
+ font-size: 15px;
4334
+ }
4335
+
4336
+ #sfsi_plus_jivo_offline_chat .tab-changer .tab-link.active p {
4337
+ background: #24497B;
4338
+ color: #fff;
4339
+ }
4340
+
4341
+ #sfsi_plus_jivo_offline_chat .tabs {
4342
+ /*background: #dbeef4;*/
4343
+ background: #ddd;
4344
+ margin: -6px 15px 0 15px;
4345
+ min-height: 250px;
4346
+ }
4347
+
4348
+ #sfsi_plus_jivo_offline_chat #sfsi_technical {
4349
+ padding: 50px;
4350
+ }
4351
+
4352
+ #sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div {
4353
+ margin: 10px 0;
4354
+ }
4355
+
4356
+ #sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div a {
4357
+ padding: 20px 26px 18px 25px;
4358
+ width: 245px;
4359
+ margin: 0;
4360
+ }
4361
+
4362
+ #sfsi_plus_jivo_offline_chat .tabs .support-forum-green-div a img {
4363
+ margin-top: 11px;
4364
+ }
4365
+
4366
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_technical p {
4367
+ font-size: 20px;
4368
+ padding-top: 5px;
4369
+ margin: 0;
4370
+ }
4371
+
4372
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales {
4373
+ padding: 15px;
4374
+ }
4375
+
4376
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .right-message {
4377
+ width: 50%;
4378
+ float: right;
4379
+ text-align: right;
4380
+ margin: 0;
4381
+ }
4382
+
4383
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales form>div {
4384
+ margin-top: 5px;
4385
+ }
4386
+
4387
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales label {
4388
+ font-size: 20px;
4389
+ color: #000;
4390
+ font-weight: 900;
4391
+ padding-bottom: 5px;
4392
+ }
4393
+
4394
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input,
4395
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales textarea {
4396
+ margin-top: 5px;
4397
+ width: 100%;
4398
+ border: 0;
4399
+ box-shadow: 0 0 5px 0 #888;
4400
+ }
4401
+
4402
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input {
4403
+ height: 40px;
4404
+ }
4405
+
4406
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales textarea {
4407
+ height: 80px;
4408
+ resize: none;
4409
+ }
4410
+
4411
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4412
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4413
+ border: 0;
4414
+ background: #079345;
4415
+ color: #fff;
4416
+ margin-top: 23px;
4417
+ width: 100%;
4418
+ font-size: 16px;
4419
+ border-radius: 4px;
4420
+ cursor: pointer;
4421
+ box-shadow: none;
4422
+ }
4423
+
4424
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent {
4425
+ text-align: center;
4426
+ }
4427
+
4428
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4429
+ font-size: 35px;
4430
+ }
4431
+
4432
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4433
+ font-size: 25px;
4434
+ font-weight: 300;
4435
+ }
4436
+
4437
+ #sfsi_plus_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4438
+ width: auto;
4439
+ margin-top: 0;
4440
+ padding: 10px;
4441
+ }
4442
+
4443
+ #sfsi_plus_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4444
+ font-size: 13px !important;
4445
+ font-weight: 900;
4446
+ float: right;
4447
+ text-align: right;
4448
+ margin-top: -40px !important;
4449
+ }
4450
+
4451
+ #sfsi_plus_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4452
+ background-image: url('images/select-arrow.png');
4453
+ width: 15px;
4454
+ height: 9px;
4455
+ display: inline-block;
4456
+ -webkit-transform: rotate(90deg);
4457
+ -moz-transform: rotate(90deg);
4458
+ -ms-transform: rotate(90deg);
4459
+ -o-transform: rotate(90deg);
4460
+ transform: rotate(90deg);
4461
+ }
4462
+
4463
+ @media (max-width: 543px) {
4464
+ #sfsi_plus_jivo_offline_chat {
4465
+ width: 400px;
4466
+ }
4467
+ }
4468
+
4469
+ /* MZ CSS */
4470
+
4471
+ .sfsiLabel {
4472
+ float: left;
4473
+ margin-top: -29px;
4474
+ margin-left: 37px;
4475
+ color: #5a6570;
4476
+ text-align: left;
4477
+ font-family: 'helveticaneue-light';
4478
+ font-size: 17px;
4479
+ line-height: 26px;
4480
+ min-width: 200px;
4481
+ }
4482
+
4483
+ .sfsiLabel1 {
4484
+ float: left;
4485
+ margin-top: 32px;
4486
+ margin-left: 100px;
4487
+ color: #5a6570;
4488
+ text-align: left;
4489
+ font-family: 'helveticaneue-light';
4490
+ font-size: 17px;
4491
+ line-height: 26px;
4492
+ min-width: 200px;
4493
+ }
4494
+
4495
+ .infoLabel {
4496
+ margin-left: 89px;
4497
+ margin-bottom: 32px;
4498
+ float: left;
4499
+ margin-top: -13px;
4500
+
4501
+ color: #5a6570;
4502
+ text-align: left;
4503
+ font-family: 'helveticaneue-light';
4504
+ font-size: 17px;
4505
+ line-height: 26px;
4506
+ min-width: 200px;
4507
+ }
4508
+
4509
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_1_26 {
4510
+ background: url('../images/icons_theme/default/default_wechat.png');
4511
+ background-size: contain;
4512
+ }
4513
+
4514
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_2_26 {
4515
+ background: url('../images/icons_theme/flat/flat_wechat.png');
4516
+ background-size: contain;
4517
+ }
4518
+
4519
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_3_26 {
4520
+ background: url('../images/icons_theme/thin/thin_wechat.png');
4521
+ background-size: contain;
4522
+ }
4523
+
4524
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_4_26 {
4525
+ background: url('../images/icons_theme/cute/cute_wechat.png');
4526
+ background-size: contain;
4527
+ }
4528
+
4529
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_5_26 {
4530
+ background: url('../images/icons_theme/cubes/cubes_wechat.png');
4531
+ background-size: contain;
4532
+ }
4533
+
4534
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_6_26 {
4535
+ background: url('../images/icons_theme/chrome_blue/chrome_blue_wechat.png');
4536
+ background-size: contain;
4537
+ }
4538
+
4539
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_7_26 {
4540
+ background: url('../images/icons_theme/chrome_grey/chrome_grey_wechat.png');
4541
+ background-size: contain;
4542
+ }
4543
+
4544
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_8_26 {
4545
+ background: url('../images/icons_theme/splash/splash_wechat.png');
4546
+ background-size: contain;
4547
+ }
4548
+
4549
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_9_26 {
4550
+ background: url('../images/icons_theme/orange/orange_wechat.png');
4551
+ background-size: contain;
4552
+ }
4553
+
4554
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_10_26 {
4555
+ background: url('../images/icons_theme/crystal/crystal_wechat.png');
4556
+ background-size: contain;
4557
+ }
4558
+
4559
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_11_26 {
4560
+ background: url('../images/icons_theme/glossy/glossy_wechat.png');
4561
+ background-size: contain;
4562
+ }
4563
+
4564
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_12_26 {
4565
+ background: url('../images/icons_theme/black/black_wechat.png');
4566
+ background-size: contain;
4567
+ }
4568
+
4569
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_13_26 {
4570
+ background: url('../images/icons_theme/silver/silver_wechat.png');
4571
+ background-size: contain;
4572
+ }
4573
+
4574
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_14_26 {
4575
+ background: url('../images/icons_theme/shaded_dark/shaded_dark_wechat.png');
4576
+ background-size: contain;
4577
+ }
4578
+
4579
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_15_26 {
4580
+ background: url('../images/icons_theme/shaded_light/shaded_light_wechat.png');
4581
+ background-size: contain;
4582
+ }
4583
+
4584
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_16_26 {
4585
+ background: url('../images/icons_theme/transparent/transparent_wechat.png');
4586
+ background-size: contain;
4587
+ }
4588
+
4589
+ .tab3 .sfsiplus_wechat_section.sfsiplus_row_17_26 {
4590
+ background: url('../images/icons_theme/default/default_wechat.png');
4591
+ background-size: contain;
4592
+ background-position: 0 0;
4593
+ }
4594
+
4595
+ .sfsi_plus_font_inherit {
4596
+ font-family: inherit !important;
4597
+ border: 0 !important;
4598
+ font-weight: normal !important;
4599
+ }
4600
+
4601
+ .sfisi_plus_font_bold {
4602
+ font-family: helveticabold !important;
4603
+ }
4604
+
4605
+ .sfsi_plus_instagramInstruction ul>li {
4606
+ list-style-type: decimal !important;
4607
+ }
4608
+
4609
+ .sfsi_plus_instagramInstruction>p {
4610
+ list-style-type: decimal !important;
4611
+ }
4612
+
4613
+ .sfsiplus_houzz_section .sfsiLabel,
4614
+ .sfsiplus_ok_section .sfsiLabel,
4615
+ .sfsiplus_vk_section .sfsiLabel,
4616
+ .sfsiplus_weibo_section .sfsiLabel,
4617
+ .sfsiplus_telegram_section .sfsiLabel1 {
4618
+ margin-left: 0 !important;
4619
+ }
4620
+
4621
+ .pop-up {
4622
+ font-weight: bold;
4623
+ }
4624
+
4625
+ .sfsi_plus_quickpay-overlay a {
4626
+ display: inline !important;
4627
+ font-size: inherit !important;
4628
+ text-decoration: underline !important;
4629
+ font-weight: 900;
4630
+ color: #666;
4631
+ }
4632
+
4633
+ .sfsi_plus_col_6 {
4634
+ width: 49%;
4635
+ display: inline-block;
4636
+ }
4637
+
4638
+ .sfsi_plus_col_6>div {
4639
+ padding: 18px 30px !important;
4640
+ margin: 20px 0 0 0;
4641
+ border: 1px solid #999;
4642
+ display: inline-block;
4643
+ float: none;
4644
+ }
4645
+
4646
+ .sfsi_plus_col_6>div:hover {
4647
+ background-image: radial-gradient(circle, #fff, #eee);
4648
+ }
4649
+
4650
+ .vertical-align {
4651
+ display: flex;
4652
+ align-items: center;
4653
+ justify-content: space-between;
4654
+ }
4655
+
4656
+ .sfsi_vertical_center {
4657
+ display: flex;
4658
+ align-items: center;
4659
+ }
4660
+
4661
+ .sfsi_plus_border_left_0 {
4662
+ border-left: 0 !important;
4663
+ }
4664
+
4665
+ .tab8 .sfsi_plus_inputSec input {
4666
+ width: 140px !important;
4667
+ padding: 13px;
4668
+ }
4669
+
4670
+ .tab8 .sfsi_plus_inputSec span {
4671
+ width: auto;
4672
+ }
4673
+
4674
+ .tab8 .sfsi_plus_inputSec span {
4675
+ display: inline-block;
4676
+ font-size: 18px;
4677
+ vertical-align: middle;
4678
+ width: 200px;
4679
+ color: #5A6570;
4680
+ }
4681
+
4682
+ .sfsi_plus_responsive_icon_item_container {
4683
+ height: 40px;
4684
+ vertical-align: middle;
4685
+ margin-top: auto;
4686
+ margin-bottom: auto;
4687
+ }
4688
+
4689
+ .sfsi_plus_responsive_icon_item_container img {
4690
+ padding: 7px;
4691
+ vertical-align: middle !important;
4692
+ box-shadow: unset !important;
4693
+ -webkit-box-shadow: unset !important;
4694
+ max-width: 40px !important;
4695
+ max-height: 40px;
4696
+ }
4697
+
4698
+ .sfsi_plus_responsive_icon_item_container span {
4699
+ padding: 7px;
4700
+ vertical-align: middle !important;
4701
+ box-shadow: unset !important;
4702
+ -webkit-box-shadow: unset !important;
4703
+ line-height: 40px
4704
+ }
4705
+
4706
+
4707
+ .sfsi_plus_responsive_icon_facebook_container {
4708
+ background-color: #336699;
4709
+ }
4710
+
4711
+ .sfsi_plus_responsive_icon_follow_container {
4712
+ background-color: #00B04E;
4713
+ }
4714
+
4715
+ .sfsi_plus_responsive_icon_twitter_container {
4716
+ background-color: #55ACEE;
4717
+ }
4718
+
4719
+
4720
+ .sfsi_plus_icons_container_box_fully_container {
4721
+ flex-wrap: wrap;
4722
+ }
4723
+
4724
+ .sfsi_plus_icons_container_box_fully_container a {
4725
+ flex-basis: auto !important;
4726
+ flex-grow: 1;
4727
+ flex-shrink: 1;
4728
+ }
4729
+
4730
+ .sfsi_plus_responsive_icons .sfsi_plus_icons_container span {
4731
+ font-family: sans-serif;
4732
+ font-size: 15px;
4733
+ }
4734
+
4735
+ .sfsi_plus_widget_title {
4736
+ font-weight: 700;
4737
+ line-height: 1.2;
4738
+ font-size: 27px;
4739
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
4740
+
4741
+ }
4742
+
4743
+ .sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container,
4744
+ .sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container {
4745
+ padding: 0px 20px;
4746
+ width: 245px;
4747
+ text-align: center;
4748
+ margin-right: 8px;
4749
+ margin-top: -5px;
4750
+ }
4751
+
4752
+ .sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container img,
4753
+ .sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container img {
4754
+ max-height: 25px !important;
4755
+ max-width: 40px !important;
4756
+ float: left;
4757
+ height: 25px;
4758
+ }
4759
+
4760
+ .sfsi_plus_responsive_default_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container span,
4761
+ .sfsi_plus_responsive_custom_icon_container .sfsi_plus_icon_container .sfsi_plus_responsive_icon_item_container span {
4762
+ color: #ffffff;
4763
+ font-size: 20px;
4764
+ padding: 0 10px;
4765
+ letter-spacing: 0.5px;
4766
+ font-weight: 500;
4767
+ }
4768
+
4769
+ .tab8 .sfsi_plus_responsive_default_icon_container,
4770
+ .tab8 .sfsi_plus_responsive_custom_icon_container {
4771
+ width: 100% !important;
4772
+ max-width: unset !important;
4773
+ /* padding-left: 60px!important; */
4774
+ }
4775
+
4776
+ .tab8 .sfsi_plus_responsive_default_icon_container input,
4777
+ .tab8 .sfsi_plus_responsive_custom_icon_container input {
4778
+ padding: 8px 11px;
4779
+ height: 39px;
4780
+ }
4781
+
4782
+ .tab8 .heading-label {
4783
+ font-size: 18px !important;
4784
+ font-weight: 400;
4785
+ }
4786
+
4787
+ .sfsi_plus_responsive_default_icon_container,
4788
+ .sfsi_plus_responsive_custom_icon_container {
4789
+ padding: 2px 0 !important;
4790
+ }
4791
+
4792
+ .sfsi_plus_responsive_default_icon_container .sfsi_plus_responsive_default_url_toggler,
4793
+ .sfsi_plus_responsive_custom_icon_container .sfsi_plus_responsive_default_url_toggler,
4794
+ .sfsi_plus_responsive_default_icon_container .sfsi_plus_responsive_default_url_hide {
4795
+ color: #337ab7 !important;
4796
+ font-size: 18px !important;
4797
+ letter-spacing: 1px;
4798
+ font-weight: 500;
4799
+ margin-left: 20px;
4800
+ text-decoration: none !important
4801
+ }
4802
+
4803
+ .sfsi_plus_responsive_fluid {
4804
+ text-decoration: none !important;
4805
+ }
4806
+
4807
+ .sfsi_plus_large_button_container {
4808
+ width: calc(100% - 81px) !important;
4809
+ }
4810
+
4811
+ .sfsi_plus_medium_button_container {
4812
+ width: calc(100% - 70px) !important;
4813
+ }
4814
+
4815
+ .sfsi_plus_small_button_container {
4816
+ width: calc(100% - 100px) !important;
4817
+ }
4818
+
4819
+ /* .sfsi_plus_responsive_custom_icon{line-height: 6px;} */
4820
+ /* .sfsi_plus_responsive_fixed_width .sfsi_plus_responsive_custom_icon{line-height: 6px;} */
4821
+ /*Override for front end - icon of right height*/
4822
+ /* .sfsi_plus_responsive_fluid .sfsi_plus_large_button{padding: 13px !important;} */
4823
+ /* .sfsi_plus_responsive_fluid .sfsi_plus_medium_button{padding: 10px !important;} */
4824
+
4825
+ .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button {
4826
+ padding: 12px 13px 9px 13px !important;
4827
+ }
4828
+
4829
+ .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button h3 {
4830
+ margin: 0px 0px 15px 0px !important;
4831
+ }
4832
+
4833
+ .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_medium_button {
4834
+ padding: 9px 10px 7px 10px !important;
4835
+ }
4836
+
4837
+ .sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button {
4838
+ padding: 12px 13px 9px 13px !important;
4839
+ }
4840
+
4841
+ .sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button h3 {
4842
+ margin: 0px 0px 15px 0px !important;
4843
+ }
4844
+
4845
+ .sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_medium_button {
4846
+ padding: 9px 10px 7px 10px !important;
4847
+ }
4848
+
4849
+ .sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a .sfsi_plus_responsive_icon_item_container {
4850
+ /* white-space: nowrap;
4851
+ overflow: hidden;
4852
+ text-overflow: ellipsis;*/
4853
+ display: inline-block;
4854
+ }
4855
+
4856
+ .sfsiplus_right_info ul .sfsi_plus_responsive_icon_option_li .options .field .sfsi_plus_responsive_icons_icon_width input,
4857
+ .sfsiplus_right_info ul .sfsi_plus_responsive_icon_option_li .options .field input {
4858
+ width: 75px !important;
4859
+ background: #ffffff;
4860
+ box-shadow: none;
4861
+ border: 1px solid rgb(221, 221, 221);
4862
+ border-radius: 0px;
4863
+ }
4864
+
4865
+ input[type="number"] {
4866
+ height: 45px !important;
4867
+ }
4868
+ .sfsi_plus_small_button {
4869
+ line-height: 0px;
4870
+ height: unset;
4871
+ padding: 6px !important;
4872
+ }
4873
+ .sfsi_plus_small_button span {
4874
+ margin-left: 10px;
4875
+ font-size: 16px;
4876
+ padding: 0px;
4877
+ line-height: 16px;
4878
+ vertical-align: -webkit-baseline-middle !important;
4879
+ margin-left: 10px;
4880
+ }
4881
+ .sfsi_plus_small_button img {
4882
+ max-height: 16px !important;
4883
+ padding: 0px;
4884
+ line-height: 0px;
4885
+ vertical-align: -webkit-baseline-middle !important;
4886
+ }
4887
+ .sfsi_plus_medium_button span {
4888
+ margin-left: 10px;
4889
+ font-size: 18px;
4890
+ padding: 0px;
4891
+ line-height: 16px;
4892
+ vertical-align: -webkit-baseline-middle !important;
4893
+ margin-left: 10px;
4894
+ }
4895
+ .sfsi_plus_medium_button img {
4896
+ max-height: 16px !important;
4897
+ padding: 0px;
4898
+ line-height: 0px;
4899
+ vertical-align: -webkit-baseline-middle !important;
4900
+ }
4901
+ .sfsi_plus_medium_button {
4902
+ line-height: 0px;
4903
+ height: unset;
4904
+ padding: 10px !important;
4905
+ }
4906
+
4907
+ .sfsi_plus_medium_button span {
4908
+ margin-left: 10px;
4909
+ font-size: 18px;
4910
+ padding: 0px;
4911
+ line-height: 16px;
4912
+ vertical-align: -webkit-baseline-middle !important;
4913
+ margin-left: 10px;
4914
+ }
4915
+ .sfsi_plus_medium_button img {
4916
+ max-height: 16px !important;
4917
+ padding: 0px;
4918
+ line-height: 0px;
4919
+ vertical-align: -webkit-baseline-middle !important;
4920
+ }
4921
+ .sfsi_plus_medium_button {
4922
+ line-height: 0px;
4923
+ height: unset;
4924
+ padding: 10px !important;
4925
+ }
4926
+ .sfsi_plus_large_button span {
4927
+ font-size: 20px;
4928
+ padding: 0px;
4929
+ line-height: 16px;
4930
+ vertical-align: -webkit-baseline-middle !important;
4931
+ display: inline;
4932
+ margin-left: 10px;
4933
+ }
4934
+ .sfsi_plus_large_button img {
4935
+ max-height: 16px !important;
4936
+ padding: 0px;
4937
+ line-height: 0px;
4938
+ vertical-align: -webkit-baseline-middle !important;
4939
+ display: inline;
4940
+ }
4941
+ .sfsi_plus_large_button {
4942
+ line-height: 0px;
4943
+ height: unset;
4944
+ padding: 13px !important;
4945
+ }
4946
+ .tab8 .sfsi_float_position_icon_label {
4947
+ border: 1px solid #ccc;
4948
+ border-radius: 18px;
4949
+ margin-top: 3px;
4950
+ position: relative;
4951
+ width: 189px;
4952
+ height: 148px;
4953
+ float: left;
4954
+ }
4955
+ .tab8 .sfsi_float_position_icon_label img {
4956
+ margin-left: auto;
4957
+ margin-right: auto;
4958
+ display: block;
4959
+ margin-top: 7px;
4960
+ }
4961
+ .tab8 .sfsi_float_position_icon_label img.sfsi_img_center_bottom {
4962
+ position: absolute;
4963
+ bottom: 0px;
4964
+ left: 18%;
4965
+ }
4966
+ .tab8 .flthmonpg .radio {
4967
+ margin-top: 55px;
4968
+ }
4969
+ .tab8 ul li .radio {
4970
+ float: left;
4971
+ }
4972
+ @media screen and (max-width: 1366px) and (min-width: 1366px){
4973
+ .tab8 .sfsi_flicnsoptn3 {
4974
+ font-size: 18px !important;
4975
+ min-width: 113px !important;
4976
+ margin: 60px 0px 0 10px !important;
4977
+ width: auto !important;
4978
+ }
4979
+ }
4980
+ .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns li{
4981
+ width:33%;
4982
+ min-width:33%;
4983
  }
css/sfsi-style.css CHANGED
@@ -1,3786 +1,4789 @@
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
-
17
- @font-face {
18
- font-family: helveticaneue-light;
19
- src: url(fonts/helveticaneue-light.eot);
20
- src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'),
21
- url(fonts/helveticaneue-light.woff) format('woff'),
22
- url(fonts/helveticaneue-light.ttf) format('truetype'),
23
- url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
24
- font-weight: 400;
25
- font-style: normal;
26
- }
27
- body {
28
- margin: 0;
29
- padding: 0;
30
- }
31
- .clear {
32
- clear: both;
33
- }
34
- .space {
35
- clear: both;
36
- padding: 30px 0 0;
37
- width: 100%;
38
- float: left;
39
- }
40
- .sfsi_mainContainer {
41
- font-family: helveticaregular;
42
- }
43
- .sfsi_mainContainer h1, .sfsi_mainContainer h2, .sfsi_mainContainer h3, .sfsi_mainContainer h4, .sfsi_mainContainer h5, .sfsi_mainContainer h6, .sfsi_mainContainer li, .sfsi_mainContainer p, .sfsi_mainContainer ul {
44
- margin: 0;
45
- padding: 0;
46
- font-weight: 400;
47
- }
48
- .sfsi_mainContainer img {
49
- border: 0;
50
- }
51
- .main_contant p, .ui-accordion .ui-accordion-header {
52
- font-family: 'helveticaneue-light';
53
- }
54
- .sfsi_mainContainer input, .sfsi_mainContainer select {
55
- outline: 0;
56
- }
57
- .wapper {
58
- padding: 48px 106px 40px 20px;
59
- display: block;
60
- background: #f1f1f1;
61
- }
62
- .main_contant {
63
- margin: 0;
64
- padding: 0;
65
- }
66
- .main_contant h1 {
67
- padding: 0;
68
- color: #1a1d20;
69
- font-family: helveticabold;
70
- font-size: 28px;
71
- }
72
- .main_contant p {
73
- padding: 0;
74
- color: #414951;
75
- font-size: 17px;
76
- line-height: 26px;
77
- }
78
- .main_contant p span {
79
- text-decoration: underline;
80
- font-family: helveticabold;
81
- }
82
- .like_txt {
83
- margin: 30px 0 0;
84
- padding: 0;
85
- color: #12a252;
86
- font-family: helveticaregular;
87
- font-size: 20px;
88
- line-height: 20px;
89
- text-align: center;
90
- }
91
- .like_txt a {
92
- color: #12a252;
93
- }
94
- #accordion p, #accordion1 p {
95
- color: #5a6570;
96
- text-align: left;
97
- font-family: 'helveticaneue-light';
98
- font-size: 17px;
99
- line-height: 26px;
100
- padding-top: 19px;
101
- }
102
- .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .cstmdisplaysharingtxt { float: left; }
103
- #accordion p:first-child, #accordion1 p:first-child {
104
- padding-top: 0;
105
- }
106
- #accordion h4, #accordion1 h4 {
107
- margin: 0;
108
- padding: 30px 0 0;
109
- color: #414951;
110
- font-size: 20px;
111
- line-height: 22px;
112
- font-family: helveticaregular;
113
- }
114
- #accordion h4:first-child, #accordion1 h4:first-child {
115
- padding-top: 0;
116
- }
117
-
118
- #accordion .tab8 h4:first-child, #accordion1 h4:first-child { margin-left: 0 !important}
119
-
120
- .tab1, .tab2, .tab3, .tab4, .tab5, .tab6, .tab7 {
121
- color: #5a6570;
122
- text-align: left;
123
- font-family: helveticaregular;
124
- font-size: 18px;
125
- line-height: 26px;
126
- }
127
- .tab4 ul.like_icon {
128
- margin: 0;
129
- padding: 20px 0 0;
130
- list-style: none;
131
- text-align: center;
132
- }
133
- .tab4 ul.like_icon li {
134
- margin: 0;
135
- padding: 0;
136
- list-style: none;
137
- display: inline-block;
138
- }
139
- .tab4 ul.like_icon li span {
140
- margin: 0;
141
- width: 54px;
142
- display: block;
143
- background: url(../images/count_bg.png) no-repeat;
144
- height: 24px;
145
- overflow: hidden;
146
- padding: 10px 2px 2px;
147
- font-size: 17px;
148
- text-align: center;
149
- line-height: 24px;
150
- color: #5a6570;
151
- }
152
- .tab4 ul.like_icon li a {
153
- color: #5a6570;
154
- text-decoration: none;
155
- }
156
- .tab4 ul.enough_waffling {
157
- margin: 0;
158
- padding: 25px 0 27px;
159
- list-style: none;
160
- text-align: center;
161
- }
162
- .tab4 ul.enough_waffling li {
163
- margin: 0 22px;
164
- padding: 0;
165
- list-style: none;
166
- display: inline-block;
167
- }
168
- .tab4 ul.enough_waffling li span {
169
- float: left;
170
- }
171
- .tab4 ul.enough_waffling li label {
172
- margin: 0 0 0 20px;
173
- float: left;
174
- font-family: helveticaregular;
175
- font-size: 18px;
176
- font-weight: 400;
177
- text-align: center;
178
- line-height: 38px;
179
- color: #5a6570;
180
- }
181
- .sfsi_mainContainer .checkbox {
182
- width: 31px;
183
- height: 31px;
184
- background: url(../images/check_bg.jpg) no-repeat;
185
- display: inherit;
186
- }
187
- .tab8 .social_icon_like1 li span.checkbox {
188
- width: 31px;
189
- height: 31px;
190
- background: url(../images/check_bg.jpg) no-repeat;
191
- display: inherit;
192
- }
193
- .tab8 .social_icon_like1 li a
194
- {
195
- float: left;
196
- }
197
- .sfsi_mainContainer .radio {
198
- width: 40px;
199
- height: 40px;
200
- background: url(../images/radio_bg.png) no-repeat;
201
- display: inherit;
202
- }
203
- .sfsi_mainContainer .select {
204
- width: 127px;
205
- height: 47px;
206
- font-size: 17px;
207
- background: url(../images/select_bg.jpg) no-repeat;
208
- display: block;
209
- padding-left: 16px;
210
- line-height: 49px;
211
- }
212
- .sfsi_mainContainer .line {
213
- background: #eaebee;
214
- height: 1px;
215
- font-size: 0;
216
- margin: 15px 0 0;
217
- clear: both;
218
- width: 100%;
219
- float: left;
220
- }
221
- .sfsiplus_specify_counts {
222
- display: block;
223
- margin-top: 15px;
224
- padding-top: 15px;
225
- clear: both;
226
- width: 100%;
227
- float: left;
228
- border-top: 1px solid #eaebee;
229
- }
230
- .sfsiplus_specify_counts .radio_section {
231
- width: 30px;
232
- float: left;
233
- margin: 12px 10px 0 0;
234
- }
235
- .sfsiplus_specify_counts .social_icon_like {
236
- width: 54px;
237
- float: left;
238
- margin: 0 15px 0 0;
239
- }
240
- .sfsiplus_specify_counts .social_icon_like ul {
241
- margin: 0;
242
- padding: 0 !important;
243
- list-style: none;
244
- text-align: center;
245
- }
246
- .sfsiplus_specify_counts .social_icon_like li {
247
- margin: 0;
248
- padding: 0;
249
- list-style: none;
250
- display: inline-block;
251
- }
252
- .sfsiplus_specify_counts .social_icon_like li span {
253
- margin: 0;
254
- width: 54px;
255
- display: block;
256
- background: url(../images/count_bg.jpg) no-repeat;
257
- height: 24px;
258
- overflow: hidden;
259
- padding: 10px 2px 2px;
260
- font-family: helveticaregular;
261
- font-size: 16px;
262
- text-align: center;
263
- line-height: 24px;
264
- color: #5a6570;
265
- }
266
- .sfsiplus_specify_counts .social_icon_like li a {
267
- color: #5a6570;
268
- text-decoration: none;
269
- }
270
- .sfsiplus_specify_counts .social_icon_like img{
271
- width: 54px;
272
- }
273
- .sfsiplus_specify_counts .listing {
274
- width: 88%;
275
- margin-top: -5px;
276
- display: inherit;
277
- float: left;
278
- }
279
- .sfsiplus_specify_counts .listing ul {
280
- margin: 0;
281
- padding: 0;
282
- list-style: none;
283
- text-align: left;
284
- }
285
- .sfsiplus_specify_counts .listing li {
286
- margin: 15px 0 0;
287
- padding: 0;
288
- list-style: none;
289
- clear: both;
290
- line-height: 39px;
291
- font-size: 17px;
292
- }
293
- .sfsiplus_specify_counts .listing li span {
294
- float: left;
295
- margin-right: 20px;
296
- }
297
- .sfsiplus_specify_counts .listing li .input {
298
- background: #e5e5e5;
299
- box-shadow: 2px 2px 3px #dcdcdc inset;
300
- border: 0;
301
- padding: 10px;
302
- margin-left: 25px;
303
- }
304
- .sfsiplus_specify_counts .listing li .input_facebook {
305
- width: 288px;
306
- background: #e5e5e5;
307
- box-shadow: 2px 2px 3px #dcdcdc inset;
308
- border: 0;
309
- padding: 10px;
310
- margin-left: 16px;
311
- }
312
- .save_button {
313
- width: 450px;
314
- padding-top: 30px !important;
315
- clear: both;
316
- margin: auto;
317
- }
318
- .save_button a {
319
- background: #12a252;
320
- text-align: center;
321
- font-size: 23px;
322
- color: #FFF!important;
323
- display: block;
324
- padding: 11px 0;
325
- text-decoration: none;
326
- }
327
- .save_button a:hover { background:#079345 }
328
-
329
- .tab5 ul.plus_share_icon_order {
330
- margin: 0;
331
- padding: 0;
332
- list-style: none;
333
- text-align: left;
334
- }
335
- .tab5 ul.plus_share_icon_order li {
336
- margin: 22px 6px 0 0;
337
- padding: 0;
338
- list-style: none;
339
- float: left;
340
- line-height: 37px;
341
- }
342
- .tab5 ul.plus_share_icon_order li:last-child {
343
- margin: 22px 0 0 3px;
344
- }
345
- .tab5 .row {
346
- border-top: 1px solid #eaebee;
347
- margin-top: 25px;
348
- padding-top: 15px;
349
- clear: both;
350
- display: block;
351
- width: 100%;
352
- float: left;
353
- font-family: helveticaregular;
354
- line-height: 42px;
355
- }
356
- .tab5 .icons_size {
357
- position: relative;
358
- }
359
- .tab5 .icons_size span {
360
- margin-right: 18px;
361
- display: block;
362
- float: left;
363
- font-size: 18px;
364
- font-weight: 400;
365
- line-height: 46px;
366
- }
367
- .tab5 .icons_size span.last {
368
- margin-left: 55px;
369
- }
370
- .tab5 .icons_size input {
371
- width: 73px;
372
- background: #e5e5e5;
373
- box-shadow: 2px 2px 3px #dcdcdc inset;
374
- border: 0;
375
- padding: 13px 13px 12px;
376
- margin-right: 18px;
377
- float: left;
378
- display: block;
379
- }
380
- .tab5 .icons_size select.styled {
381
- position: absolute;
382
- left: 0;
383
- width: 135px;
384
- height: 46px;
385
- line-height: 46px;
386
- }
387
- .tab5 .icons_size .field {
388
- position: relative;
389
- float: left;
390
- display: block;
391
- margin-right: 20px;
392
- }
393
- .tab5 .icons_size ins {
394
- margin-right: 25px;
395
- float: left;
396
- font-size: 17px;
397
- font-weight: 400;
398
- text-decoration: none;
399
- }
400
- .tab5 .icons_size ins.leave_empty {
401
- line-height: 23px;
402
- }
403
- .tab5 .icons_size {
404
- padding-top: 15px;
405
- }
406
- .tab5 ul.enough_waffling {
407
- margin: -5px 0 0;
408
- padding: 0;
409
- list-style: none;
410
- text-align: center;
411
- }
412
- .tab5 .new_wind .sfsiplus_row_onl ul.enough_waffling {
413
- margin: 20px 0 0 0;
414
- padding: 0;
415
- list-style: none;
416
- height: 38px;
417
- text-align: left;
418
- }
419
- .tab5 ul.enough_waffling li {
420
- margin: 0 22px;
421
- padding: 0;
422
- list-style: none;
423
- display: inline-block;
424
- }
425
- .tab5 ul.enough_waffling li span {
426
- float: left;
427
- }
428
- .tab5 ul.enough_waffling li label {
429
- margin: 0 0 0 20px;
430
- float: left;
431
- font-family: helveticaregular;
432
- font-size: 18px;
433
- font-weight: 400;
434
- text-align: center;
435
- line-height: 38px;
436
- color: #5a6570;
437
- }
438
- .sticking p {
439
- float: left;
440
- font-size: 18px!important;
441
- }
442
- .sticking p.list {
443
- width: 168px;
444
- }
445
- .sticking p.link {
446
- margin: 3px 0 0 12px;
447
- padding: 0!important;
448
- float: left;
449
- }
450
- .sticking .float {
451
- margin-left: 188px;
452
- margin-top: 3px;
453
- float: left;
454
- font-size: 17px;
455
- }
456
- .sticking ul {
457
- margin: 0;
458
- padding: 30px 0 0;
459
- list-style: none;
460
- float: left;
461
- }
462
- .sticking a {
463
- color: #a4a9ad;
464
- text-decoration: none;
465
- }
466
- .sticking .field {
467
- position: relative;
468
- float: left;
469
- display: block;
470
- margin-left: 20px;
471
- }
472
- .sticking .field .select {
473
- width: 206px;
474
- height: 47px;
475
- background: url(../images/select_bg1.jpg) no-repeat;
476
- display: block;
477
- padding-left: 10px;
478
- }
479
- .sticking .field select.styled {
480
- position: absolute;
481
- left: 0;
482
- top: 0;
483
- width: 211px;
484
- line-height: 46px;
485
- height: 46px;
486
- }
487
- .mouseover_field {
488
- width: 455px;
489
- float: left;
490
- font-size: 18px;
491
- margin-top: 10px;
492
- }
493
- .mouseover_field label {
494
- width: 125px;
495
- float: left;
496
- }
497
- .mouseover_field input {
498
- width: 256px;
499
- float: left;
500
- background: #e5e5e5;
501
- box-shadow: 2px 2px 3px #dcdcdc inset;
502
- border: 0;
503
- padding: 10px;
504
- }
505
- .tab6 .social_icon_like1 {
506
- width: 100%;
507
- float: left;
508
- margin: 0;
509
- padding: 35px 0 0;
510
- text-align: center;
511
- }
512
- .tab6 .social_icon_like1 ul {
513
- margin: 0;
514
- padding: 0;
515
- list-style: none;
516
- text-align: center;
517
- }
518
- .tab6 .social_icon_like1 li {
519
- margin: 0 20px;
520
- padding: 0;
521
- width: auto;
522
- list-style: none;
523
- display: inline-block;
524
- }
525
- .tab6 .social_icon_like1 li span, .tab8 .social_icon_like1 li span {
526
- margin: 0;
527
- width: 44px;
528
- display: block;
529
- background: url(../images/count_bg1.png) no-repeat;
530
- height: 22px;
531
- overflow: hidden;
532
- padding: 2px 2px 2px 10px;
533
- font-family: helveticaregular;
534
- font-size: 15px;
535
- text-align: center;
536
- line-height: 20px;
537
- color: #5a6570;
538
- float: left;
539
- }
540
- .tab6 .social_icon_like1 li img {
541
- float: left;
542
- margin-right: 5px;
543
- display: block;
544
- }
545
- .tab6 .social_icon_like1 li a {
546
- color: #5a6570;
547
- text-decoration: none;
548
- display: block;
549
- }
550
- .tab6 ul.usually {
551
- margin: 28px 0 6px 60px;
552
- padding: 0;
553
- list-style: none;
554
- }
555
- .tab6 ul.usually li {
556
- margin: 0;
557
- padding: 0;
558
- width: auto;
559
- list-style: none;
560
- text-align: left;
561
- font-size: 17px;
562
- }
563
- .tab6 ul.enough_waffling {
564
- margin: 25px 0 0;
565
- padding: 0;
566
- list-style: none;
567
- text-align: center;
568
- }
569
- .tab6 ul.enough_waffling li {
570
- margin: 0 22px;
571
- padding: 0;
572
- list-style: none;
573
- display: inline-block;
574
- }
575
- .tab6 ul.enough_waffling li span {
576
- float: left;
577
- }
578
- .tab6 ul.enough_waffling li label {
579
- margin: 0 0 0 20px;
580
- float: left;
581
- font-family: helveticaregular;
582
- font-size: 18px;
583
- font-weight: 400;
584
- text-align: center;
585
- line-height: 38px;
586
- color: #5a6570;
587
- }
588
- .tab6 .row {
589
- border-top: 1px solid #eaebee;
590
- margin-top: 25px;
591
- padding-top: 15px;
592
- clear: both;
593
- display: block;
594
- width: 100%;
595
- float: left;
596
- font-family: helveticaregular;
597
- line-height: 42px;
598
- }
599
- .tab6 .options {
600
- margin-top: 25px;
601
- clear: both;
602
- width: 100%;
603
- float: left;
604
- }
605
- .tab6 .options label {
606
- width: 345px;
607
- float: left;
608
- font-size: 18px;
609
- font-family: helveticaregular;
610
- color: #5a6570;
611
- line-height: 46px;
612
- }
613
- .tab6 .options label.first {
614
- font-family: helveticaregular;
615
- font-size: 18px;
616
- }
617
- .tab6 .options input {
618
- width: 308px;
619
- float: left;
620
- background: #e5e5e5;
621
- box-shadow: 2px 2px 3px #dcdcdc inset;
622
- border: 0;
623
- padding: 10px;
624
- }
625
- .tab6 .options .field {
626
- width: 223px;
627
- float: left;
628
- position: relative;
629
- }
630
- .tab6 .options .field .select {
631
- width: 207px;
632
- background: url(../images/select_bg1.jpg) no-repeat;
633
- display: block;
634
- padding-left: 17px;
635
- font-family: helveticaregular;
636
- }
637
- .tab6 .options .field select.styled {
638
- position: absolute;
639
- left: 0;
640
- top: 0;
641
- width: 213px;
642
- line-height: 46px;
643
- height: 46px;
644
- }
645
- .tab7 h3 {
646
- margin: 14px 0 6px;
647
- padding: 0;
648
- color: #a7a9ac;
649
- font-family: helveticaregular;
650
- font-size: 20px;
651
- text-align: left;
652
- }
653
- .tab7 .close {
654
- position: absolute;
655
- right: 18px;
656
- top: 18px;
657
- }
658
- .tab7 .text_options {
659
- width: 400px;
660
- float: left;
661
- }
662
- .tab7 .text_options.layout {
663
- margin-left: 35px;
664
- }
665
- .tab7 .sfsiplus_row_tab {
666
- margin-top: 10px;
667
- width: 100%;
668
- float: left;
669
- }
670
- .tab7 .text_options label {
671
- width: 121px;
672
- float: left;
673
- line-height: 46px;
674
- font-size: 18px;
675
- }
676
- .tab7 .text_options.layout label {
677
- line-height: 20px;
678
- font-size: 18px;
679
- }
680
- .tab7 .text_options.layout label.border {
681
- line-height: 46px;
682
- }
683
- .tab7 .text_options input {
684
- width: 274px;
685
- float: left;
686
- background: #e5e5e5;
687
- box-shadow: 2px 2px 3px #dcdcdc inset;
688
- border: 0;
689
- padding: 13px 10px;
690
- font-size: 17px;
691
- color: #5a6570;
692
- }
693
- .tab7 .text_options input.small {
694
- width: 138px;
695
- }
696
- .tab7 .text_options .field {
697
- width: 223px;
698
- float: left;
699
- position: relative;
700
- }
701
- .tab7 .text_options .field .select {
702
- width: 183px;
703
- padding-right: 21px;
704
- height: 47px;
705
- background: url(../images/select_bg1.jpg) no-repeat;
706
- display: block;
707
- padding-left: 10px;
708
- line-height: 46px;
709
- font-size: 17px;
710
- color: #414951;
711
- }
712
- .tab7 .text_options .field select.styled {
713
- position: absolute;
714
- left: 0;
715
- top: 0;
716
- width: 213px;
717
- line-height: 46px;
718
- height: 46px;
719
- }
720
- .tab7 .color_box {
721
- width: 40px;
722
- height: 34px;
723
- border: 3px solid #fff;
724
- box-shadow: 1px 2px 2px #ccc;
725
- float: left;
726
- position: relative;
727
- margin-left: 13px;
728
- }
729
- .tab7 .color_box1 {
730
- width: 100%;
731
- height: 34px;
732
- background: #5a6570;
733
- box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
734
- }
735
- .tab7 .corner {
736
- width: 10px;
737
- height: 10px;
738
- background: #fff;
739
- position: absolute;
740
- right: 0;
741
- bottom: 0;
742
- }
743
- .tab7 ul.border_shadow {
744
- margin: 0;
745
- padding: 5px 0 0;
746
- list-style: none;
747
- float: left;
748
- width: 257px;
749
- }
750
- .tab7 ul.border_shadow li {
751
- margin: 0;
752
- padding: 0 0 0 40px;
753
- list-style: none;
754
- float: left;
755
- }
756
- .tab7 ul.border_shadow li:first-child {
757
- padding: 0;
758
- }
759
- .tab7 ul.border_shadow li span {
760
- float: left;
761
- }
762
- .tab7 ul.border_shadow li label {
763
- float: left;
764
- width: auto;
765
- font-family: helveticaregular;
766
- font-size: 18px;
767
- font-weight: 400;
768
- text-align: center;
769
- line-height: 40px!important;
770
- color: #5a6570;
771
- padding: 0 0 0 20px;
772
- }
773
- .tab7 .row {
774
- border-top: 1px solid #eaebee;
775
- margin-top: 25px;
776
- padding-top: 15px;
777
- clear: both;
778
- display: block;
779
- width: 100%;
780
- float: left;
781
- font-family: helveticaregular;
782
- line-height: 42px;
783
- }
784
- .tab7 .pop_up_show {
785
- width: 100%;
786
- float: left;
787
- margin-top: 20px;
788
- }
789
- .tab7 .pop_up_show span {
790
- float: left;
791
- }
792
- .tab7 .pop_up_show label {
793
- float: left;
794
- width: auto;
795
- font-size: 18px;
796
- font-weight: 400;
797
- text-align: center;
798
- line-height: 38px!important;
799
- color: #5a6570;
800
- padding: 0 0 0 20px;
801
- }
802
- .tab7 .pop_up_show input.add {
803
- width: 257px;
804
- float: left;
805
- background: #e5e5e5;
806
- box-shadow: 2px 2px 3px #dcdcdc inset;
807
- border: 0;
808
- padding: 10px;
809
- margin-left: 40px;
810
- }
811
- .tab7 .pop_up_show input.seconds {
812
- width: 60px;
813
- background: #e5e5e5;
814
- box-shadow: 2px 2px 3px #dcdcdc inset;
815
- border: 0;
816
- padding: 10px;
817
- margin: 0 7px;
818
- }
819
- .tab7 .pop_up_show a {
820
- text-decoration: underline;
821
- color: #a4a9ad;
822
- font-size: 16px;
823
- margin-left: 20px;
824
- }
825
- .tab7 .pop_up_show .field {
826
- width: 135px;
827
- float: left;
828
- position: relative;
829
- margin-left: 20px;
830
- font-size: 17px;
831
- font-family: helveticaregular;
832
- }
833
- .tab7 .pop_up_show .field .select {
834
- width: 127px;
835
- height: 48px;
836
- background: url(../images/select_bg.jpg) no-repeat;
837
- display: block;
838
- padding-left: 10px;
839
- line-height: 46px;
840
- font-size: 16px;
841
- color: #5a6570;
842
- }
843
- .tab7 .pop_up_show .field select.styled {
844
- position: absolute;
845
- left: 0;
846
- top: 0;
847
- width: 135px;
848
- line-height: 46px;
849
- height: 46px;
850
- }
851
- .pop_up_box {
852
- width: 474px;
853
- background: #FFF;
854
- box-shadow: 0 0 5px 3px #d8d8d8;
855
- margin: 200px auto;
856
- padding: 20px 25px 0;
857
- font-family: helveticaregular;
858
- color: #5a6570;
859
- min-height: 250px;
860
- position: relative;
861
- }
862
- .pop_up_box h4, .pop_up_box_ex h4 {
863
- font-size: 20px;
864
- color: #5a6570;
865
- text-align: center;
866
- margin: 0;
867
- padding: 0;
868
- line-height: 22px;
869
- }
870
- .pop_up_box p, .pop_up_box_ex p {
871
- font-size: 17px;
872
- line-height: 28px;
873
- color: #5a6570;
874
- text-align: left;
875
- margin: 0;
876
- padding: 25px 0 0;
877
- font-family: helveticaregular;
878
- }
879
- .sfsi_popupcntnr {
880
- float: left;
881
- width: 100%}
882
- .sfsi_popupcntnr>h3 {
883
- color: #000;
884
- float: left;
885
- font-weight: 700;
886
- margin-bottom: 5px;
887
- width: 100%}
888
- ul.flwstep {
889
- float: left;
890
- width: 100%}
891
- ul.flwstep>li {
892
- color: #000;
893
- font-size: 16px;
894
- margin: 5px;
895
- }
896
- .upldbtn {
897
- float: left;
898
- text-align: center;
899
- width: 100%}
900
- .upload_butt {
901
- background-color: #12a252;
902
- border: none;
903
- color: #fff;
904
- font-weight: 700;
905
- margin-top: 10px;
906
- padding: 5px 27px;
907
- width: auto;
908
- cursor: pointer;
909
- font-size: 15px !important;
910
-
911
- }
912
- @media (min-width: 295px) and (max-width: 558px){
913
- .sfsi_premium_wechat_follow_overlay .upload_butt{
914
- padding:5px;
915
- }
916
- }
917
- @media (max-width: 295px){
918
- .sfsi_premium_upload_butt_container{
919
- width:100%!important;
920
- padding-bottom:5px!important;
921
- }
922
- }
923
- .pop_up_box .button {
924
- background: #12a252;
925
- font-size: 22px;
926
- line-height: 24px;
927
- color: #5a6570;
928
- text-align: center;
929
- min-height: 80px;
930
- margin-top: 32px;
931
- box-shadow: none;
932
- word-wrap: break-word;
933
- white-space: normal;
934
- }
935
- .pop_up_box .button:hover {
936
- box-shadow: none!important;
937
- }
938
- .pop_up_box .button a.activate {
939
- padding: 0px 0;
940
- }
941
- .pop_up_box a, .pop_up_box_ex a {
942
- color: #a4a9ad;
943
- font-size: 20px;
944
- text-decoration: none;
945
- text-align: center;
946
- display: inline-block;
947
- margin-top: 20px;
948
- width: 100%;
949
- }
950
- .pop_up_box .upload {
951
- width: 100%;
952
- float: left;
953
- text-align: left;
954
- margin-top: 15px;
955
- height: 46px;
956
- }
957
- .pop_up_box .upload label {
958
- width: 135px;
959
- float: left;
960
- line-height: 45px;
961
- font-size: 18px;
962
- font-family: helveticaregular;
963
- text-align: left;
964
- }
965
- .pop_up_box .upload input[type=text] {
966
- width: 248px;
967
- float: left;
968
- background: #e5e5e5;
969
- box-shadow: 2px 2px 3px #dcdcdc inset;
970
- border: 0;
971
- padding: 0 10px;
972
- font-size: 16px;
973
- height: 44px;
974
- text-align: left;
975
- color: #5a6570;
976
- font-family: helveticaregular;
977
- }
978
- .pop_up_box .upload input.upload_butt {
979
- width: 100px;
980
- background: #12a252;
981
- box-shadow: 0 0 0;
982
- border: 0;
983
- text-align: center;
984
- font-size: 18px;
985
- color: #fff;
986
- font-family: helveticaregular;
987
- height: 45px;
988
- right: 32px;
989
- top: 71px;
990
- position: absolute;
991
- }
992
- .pop_up_box .upload a {
993
- color: #12a252;
994
- font-size: 18px;
995
- text-decoration: underline;
996
- font-family: helveticaregular;
997
- margin: 0 0 16px 140px;
998
- }
999
- .pop_up_box a:hover, .pop_up_box_ex a:hover {
1000
- color: #a4a9ad;
1001
- }
1002
- .tab1 ul.plus_icn_listing {
1003
- list-style: none;
1004
- overflow: hidden;
1005
- border-top: #e7e8eb solid 1px;
1006
- margin: 35px 0 0;
1007
- }
1008
- .tab1 ul.plus_icn_listing li {
1009
- border-bottom: #eaebed solid 1px;
1010
- padding: 11px 0 11px 8px;
1011
- float: left;
1012
- width: 100%}
1013
- ul.plus_icn_listing li .tb_4_ck {
1014
- float: left;
1015
- margin: 10px 0 0;
1016
- }
1017
- .upload_pop_up .upload_butt {
1018
- line-height: 27px;
1019
- margin-left: 6px
1020
- }
1021
- ul.sfsiplus_icn_listing8 li .tb_4_ck {
1022
- float: left;
1023
- margin: 10px 0 0;
1024
- }
1025
- .tab8 .cstmdsplyulwpr .radio_section.tb_4_ck
1026
- {
1027
- margin-right: 10px !important;
1028
- }
1029
- .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplsub{margin-top: 3px;}
1030
- .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdspllke{margin-top: 3px;}
1031
- .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplggpls{margin-top: 3px;}
1032
- .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdspltwtr{margin-top: 4px;}
1033
- .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplshr{margin-top: 3px;}
1034
- .tab2 {
1035
- overflow: hidden;
1036
- }
1037
- .tab2 .rss_url_row {
1038
- width: 100%;
1039
- float: left;
1040
- margin: 0 0 10px;
1041
- }
1042
- .tab2 .rss_url_row h4 {
1043
- float: left;
1044
- line-height: 43px!important;
1045
- }
1046
- .tab2 .inr_cont input.add, .tab2 .inr_cont textarea.add_txt, .tab2 .rss_url_row input.add {
1047
- width: 363px;
1048
- float: left;
1049
- background: #e5e5e5;
1050
- box-shadow: 2px 2px 3px #dcdcdc inset;
1051
- border: 0;
1052
- padding: 12px 10px 11px;
1053
- margin-left: 227px;
1054
- margin-top: -38px;
1055
- }
1056
- .tab2 .rss_url_row input.add {
1057
- margin-left:10px;
1058
- margin-top:0;
1059
- }
1060
- .tab2 .inr_cont input.add1, .tab2 .rss_url_row input.add1 {
1061
- width: 363px;
1062
- float: left;
1063
- background: #e5e5e5;
1064
- box-shadow: 2px 2px 3px #dcdcdc inset;
1065
- border: 0;
1066
- padding: 12px 10px 11px;
1067
- margin-left: 284px;
1068
- margin-top: -34px;
1069
- }
1070
- .tab2 .rss_url_row a.rit_link {
1071
- float: left;
1072
- margin: 10px 0 0 16px;
1073
- font-size: 17px;
1074
- }
1075
- .tab2 .row {
1076
- float: left;
1077
- border-top: 2px solid #f2f3f4;
1078
- clear: both;
1079
- padding: 0 0 15px;
1080
- width: 100%}
1081
- .tab2 .row .tab_2_email_sec {
1082
- list-style: none;
1083
- margin: 17px 0 0;
1084
- overflow: hidden;
1085
- }
1086
- .row ul.tab_2_email_sec li {
1087
- float: left;
1088
- margin-right: 10px;
1089
- width: 32%;
1090
- }
1091
- .sfsiplusicnsdvwrp
1092
- {
1093
- width: 110px;
1094
- float: left;
1095
- }
1096
- .row ul.tab_2_email_sec:first-child {
1097
- margin-right: 2%
1098
- }
1099
- .inr_cont .fb_url {
1100
- clear: both;
1101
- }
1102
- .inr_cont .fb_url .checkbox, .inr_cont .fb_url input.add, .inr_cont .fb_url label, .inr_cont .fb_url lable {
1103
- float: left;
1104
- }
1105
- .inr_cont .fb_url input.add {
1106
- margin-left: 19px;
1107
- margin-top:0;
1108
- }
1109
- .inr_cont .fb_url .checkbox {
1110
- margin: 6px 0 0;
1111
- }
1112
- .inr_cont .fb_url label {
1113
- line-height: 41px;
1114
- margin: 0 0 0 15px;
1115
- font-size: 18px;
1116
- }
1117
- .inr_cont textarea.add_txt {
1118
- resize: none;
1119
- margin: 0 0 0 19px!important;
1120
- height: 60px;
1121
- }
1122
- .tab2 .inr_cont textarea.add_txt {
1123
- width: 382px!important;
1124
- height: 90px;
1125
- overflow: hidden;
1126
- }
1127
- .tab2 .inr_cont input.add {
1128
- width: 417px;
1129
- }
1130
- .red_txt, .tab2 .red_txt {
1131
- color: #ef4745!important;
1132
- text-align: center!important;
1133
- padding-top: 5px!important;
1134
- }
1135
- .green_txt {
1136
- color: #12A252!important;
1137
- text-align: center!important;
1138
- padding-top: 5px!important;
1139
- }
1140
- .red_txt {
1141
- color: #f80000!important;
1142
- text-align: center!important;
1143
- padding-top: 5px!important;
1144
- }
1145
- .linked_tab_2 .fb_url label {
1146
- width: 32%}
1147
- .twt_tab_2 label {
1148
- width: 18%}
1149
- .bdr_top {
1150
- border-top: none!important;
1151
- }
1152
- .linked_tab_2 .fb_url input.link_dbl {
1153
- margin-bottom: 6px;
1154
- }
1155
- .tab3 {
1156
- overflow: hidden;
1157
- }
1158
- .tab3 .row {
1159
- padding: 15px 0;
1160
- clear: both;
1161
- overflow: hidden;
1162
- }
1163
- .tab3 .row.sfsiplusmousetxt
1164
- {
1165
- border: medium none;
1166
- }
1167
- .tab3 ul.tab_3_list {
1168
- overflow: hidden;
1169
- margin: 4px 0 11px;
1170
- }
1171
- .tab8 .sfsiplus_toglepstpgspn {
1172
- font-weight: bold;
1173
- }
1174
- ul.tab_3_list li {
1175
- background: url(../images/tab_3_list_bg.jpg) 13px 7px no-repeat;
1176
- padding: 0 0 0 30px;
1177
- color: #778088;
1178
- font-family: helveticaregular;
1179
- font-size: 17px;
1180
- margin-bottom: 4px;
1181
- }
1182
- .tab5 ul.tab_3_list li
1183
- {
1184
- background: url(../images/tab_3_list_bg.jpg) 13px 18px no-repeat;
1185
- }
1186
- .tab3 .row h3 {
1187
- margin: 0 0 20px;
1188
- color: #414951;
1189
- font-family: helveticabold;
1190
- font-size: 20px;
1191
- }
1192
- ul.sfsiplus_tab_3_icns {
1193
- list-style: none;
1194
- margin: 34px 0 0;
1195
- overflow: hidden;
1196
- }
1197
- ul.sfsiplus_tab_3_icns li {
1198
- width: 100%;
1199
- margin: 0 0 21px;
1200
- float: left;
1201
- }
1202
- ul.sfsiplus_tab_3_icns label {
1203
- float: left;
1204
- line-height: 42px;
1205
- color: #69737C;
1206
- font-size: 18px;
1207
- font-family: helveticaregular;
1208
- min-width: 120px;
1209
- }
1210
- ul.sfsiplus_tab_3_icns li .sfsiplus_icns_tab_3, ul.sfsiplus_tab_3_icns li .radio {
1211
- float: left;
1212
- }
1213
- .tab3 .sub_row {
1214
- float: left;
1215
- margin: 35px 0 0 4%;
1216
- width: 90%
1217
- }
1218
- .tab3 .sub_row h4 {
1219
- color: #a4a9ad!important;
1220
- }
1221
- .tab3 .sub_row p {
1222
- padding-top: 18px!important;
1223
- clear: both;
1224
- overflow: hidden;
1225
- }
1226
- .sub_row .sub_sub_box p {
1227
- padding-top: 18px!important;
1228
- }
1229
- .tab3 .sub_row .checkbox {
1230
- float: left;
1231
- margin-top: 4px;
1232
- }
1233
- .tab3 .sub_row .sub_sub_box {
1234
- width: 80%;
1235
- margin: 7px 0 15px 10%;
1236
- float: left;
1237
- }
1238
- .tab3 .sub_row input.smal_inpt {
1239
- width: 73px;
1240
- background: #e5e5e5;
1241
- box-shadow: 2px 2px 3px #dcdcdc inset;
1242
- border: 0;
1243
- padding: 10px;
1244
- float: left;
1245
- }
1246
- .tab3 .sub_row .drop_lst {
1247
- border: 1px solid #d6d6d6;
1248
- font-size: 16px;
1249
- color: #5a6570;
1250
- width: 120px;
1251
- }
1252
- .tab3 .first_row, .tab3 .first_row p, .tab3 .first_row p .radio, .tab3 .first_row p label {
1253
- float: left;
1254
- }
1255
- .tab3 .first_row {
1256
- width: 90%;
1257
- float: left;
1258
- }
1259
- .tab3 .first_row p {
1260
- padding: 0!important;
1261
- }
1262
- .tab3 .first_row p label {
1263
- line-height: 44px;
1264
- margin: 0 10px;
1265
- }
1266
- .tab3 .first_row p:last-child {
1267
- margin-left: 27%}
1268
- .tab3 .tab_1_sav {
1269
- padding-top: 20px!important;
1270
- margin: 10px auto 20px;
1271
- }
1272
- .suc_msg {
1273
- background: #12A252;
1274
- color: #FFF;
1275
- display: none;
1276
- font-size: 23px;
1277
- padding: 10px;
1278
- text-align: left;
1279
- text-decoration: none;
1280
- }
1281
- .error_msg {
1282
- background: #D22B30;
1283
- color: #FFF;
1284
- display: none;
1285
- font-size: 23px;
1286
- padding: 10px;
1287
- text-align: left;
1288
- text-decoration: none;
1289
- }
1290
- .fileUPInput {
1291
- cursor: pointer;
1292
- position: relative;
1293
- top: -43px;
1294
- right: 0;
1295
- z-index: 99;
1296
- height: 42px;
1297
- font-size: 5px;
1298
- opacity: 0;
1299
- -moz-opacity: 0;
1300
- filter: alpha(opacity=0);
1301
- width: 100%}
1302
- .inputWrapper {
1303
- height: 20px;
1304
- width: 50px;
1305
- overflow: hidden;
1306
- position: relative;
1307
- cursor: pointer;
1308
- }
1309
- .sfsiplus_custom-txt {
1310
- background: none!important;
1311
- padding-left: 2px!important;
1312
- }
1313
- .plus_custom-img {
1314
- float: left;
1315
- margin-left: 20px;
1316
- }
1317
- .loader-img {
1318
- float: left;
1319
- margin-left: -70px;
1320
- display: none;
1321
- }
1322
- .pop-overlay {
1323
- position: fixed;
1324
- top: 0;
1325
- left: 0;
1326
- width: 100%;
1327
- height: 100%;
1328
- background-color: #d3d3d3;
1329
- z-index: 10;
1330
- padding: 20px;
1331
- display: none;
1332
- }
1333
- .fb-overlay {
1334
- position: fixed;
1335
- top: 0;
1336
- left: 0;
1337
- width: 100%;
1338
- height: 100%;
1339
- background-color: #d3d3d3;
1340
- z-index: -1000;
1341
- padding: 20px;
1342
- opacity: 0;
1343
- display: block;
1344
- }
1345
- .inputError {
1346
- border: 1px solid #f80000!important;
1347
- }
1348
- .sfsicloseBtn {
1349
- position: absolute;
1350
- top: 0;
1351
- right: 0;
1352
- cursor: pointer;
1353
- }
1354
- .top_arow {
1355
- background: url(../images/top_aro.png) no-repeat;
1356
- position: absolute;
1357
- top: -29px;
1358
- left: 38%;
1359
- width: 33px;
1360
- height: 29px;
1361
- background-color: #fff;
1362
- }
1363
- .sfsi_plus_tool_tip_2 .top_arow .sfsi_plus_inside, .top_arow .sfsi_plus_inside {
1364
- float: left;
1365
- }
1366
- .sfsi_plus_tool_tip_2 .tool_tip>img, .tool_tip>img {
1367
- display: inline-block;
1368
- margin-right: 4px;
1369
- float: left;
1370
- }
1371
- .sfsiplus_norm_row {
1372
- float: left;
1373
- min-width: 25px;
1374
- }
1375
- .sfsiplus_norm_row a {
1376
- border: none;
1377
- display: inline-block;
1378
- position: relative;
1379
- }
1380
- .sfsi_plus_widget
1381
- {
1382
- min-height: 55px;
1383
- }
1384
- .sfsi_plus_tool_tip_2 a {
1385
- min-height: 0!important;
1386
- }
1387
- .sfsi_plus_widget a img {
1388
- box-shadow: none!important;
1389
- outline: 0;
1390
- }
1391
- .sfsi_plus_wicons {
1392
- display: inline-block;
1393
- color: #000;
1394
- }
1395
- .sel-active {
1396
- background-color: #f7941d;
1397
- }
1398
- .sfsi_plus_outr_div .close {
1399
- position: absolute;
1400
- right: 18px;
1401
- top: 18px;
1402
- }
1403
- .sfsi_plus_outr_div h2 {
1404
- color: #778088;
1405
- font-family: helveticaregular;
1406
- font-size: 26px;
1407
- margin: 0 0 9px;
1408
- padding: 0;
1409
- text-align: center;
1410
- font-weight: 400;
1411
- }
1412
- .sfsi_plus_outr_div ul li a {
1413
- color: #5A6570;
1414
- text-decoration: none;
1415
- }
1416
- .sfsi_plus_outr_div ul li {
1417
- display: inline-block;
1418
- list-style: none;
1419
- margin: 0;
1420
- padding: 0;
1421
- float: none;
1422
- }
1423
- .expanded-area {
1424
- display: none;
1425
- }
1426
- .sfsi_plus_wicons a {
1427
- -webkit-transition: all .2s ease-in-out;
1428
- -moz-transition: all .2s ease-in-out;
1429
- -o-transition: all .2s ease-in-out;
1430
- -ms-transition: all .2s ease-in-out;
1431
- }
1432
- .scale, .scale-div {
1433
- -webkit-transform: scale(1.1);
1434
- -moz-transform: scale(1.1);
1435
- -o-transform: scale(1.1);
1436
- transform: scale(1.1);
1437
- }
1438
- .sfsi_plus_Sicons {
1439
- float: left;
1440
- }
1441
- .sfsi_pop_up .button a:hover {
1442
- color: #fff;
1443
- }
1444
- .sfsi_pop_up .button:hover {
1445
- background: #12a252;
1446
- color: #fff;
1447
- border: none;
1448
- }
1449
- ul.plus_icn_listing li .sfsiplus_right_info a {
1450
- outline: 0;
1451
- font-family: helveticaregular;
1452
- }
1453
- ul.sfsiplus_icn_listing8 li .sfsiplus_right_info a {
1454
- outline: 0;
1455
- font-family: helveticaregular;
1456
- }
1457
- .upload_pop_up .upload_butt {
1458
- line-height: 27px;
1459
- margin-left: 6px;
1460
- }
1461
- .drop_lsts {
1462
- left: 220px;
1463
- position: relative;
1464
- top: -40px;
1465
- }
1466
- .drop_lsts .styled {
1467
- top: -42px;
1468
- width: 127px;
1469
- height: 33px;
1470
- }
1471
- .drop_lsts span {
1472
- line-height: 50px;
1473
- }
1474
- .drag_drp {
1475
- left: 11px;
1476
- position: relative;
1477
- top: 38px;
1478
- font-size: 17px;
1479
- }
1480
- .listing ul li label {
1481
- width: 224px;
1482
- float: left;
1483
- }
1484
- .sfsiplus_row_onl {
1485
- width: 100%;
1486
- float: left;
1487
- }
1488
- #sfsi_plus_Show_popupOn_PageIDs option.sel-active {
1489
- background: #f7941d;
1490
- }
1491
- .sfsi_plus_inside div iframe {
1492
- float: left;
1493
- margin: 0;
1494
- }
1495
- .sfsi_plus_inside div #___plus_0, .sfsi_plus_inside div #___plusone_0 {
1496
- height: 27px;
1497
- }
1498
- .sfsi_plus_outr_div li {
1499
- float: left;
1500
- }
1501
- .sfsi_plus_tool_tip_2 .sfsi_plus_inside div {
1502
- min-height: 0;
1503
- }
1504
- #___plus_1>iframe {
1505
- height: 30px;
1506
- }
1507
- .main_contant h1 {
1508
- margin: 0 0 19px;
1509
- }
1510
- .main_contant p {
1511
- margin: 0 0 26px;
1512
- }
1513
- .main_contant p>a {
1514
- color: #1a1d20;
1515
- text-decoration: underline;
1516
- }
1517
- .tab1 .gary_bg {
1518
- background: #f1f1f1;
1519
- }
1520
- #accordion {
1521
- margin-top: 4px;
1522
- }
1523
- .main_contant p>a, .tab1 p span {
1524
- font-family: helveticabold;
1525
- }
1526
- .wapper .ui-accordion-header-active {
1527
- margin-top: 20px!important;
1528
- }
1529
- .wapper .tab2 {
1530
- padding: 20px 33px 12px 34px!important;
1531
- }
1532
- .wapper .tab2 p {
1533
- margin-bottom: 6px;
1534
- }
1535
- .tab2 .twt_tab_2 label {
1536
- width: 175px;
1537
- }
1538
- .tab2 .twt_fld {
1539
- margin: 16px 0 23px;
1540
- float: left;
1541
- }
1542
- .tab2 .twt_fld_2 {
1543
- margin: 0 0 12px;
1544
- float: left;
1545
- }
1546
- .tab2 .utube_inn {
1547
- padding-bottom: 2px;
1548
- float: left;
1549
- }
1550
- .tab2 .utube_inn label {
1551
- max-width: 90%}
1552
- .tab2 .utube_inn label span {
1553
- font-family: helveticabold;
1554
- }
1555
- .tab2 .inr_cont p>a {
1556
- font-family: helveticabold;
1557
- color: #778088;
1558
- text-decoration: none;
1559
- }
1560
- .sfsiplus_pinterest_section .inr_cont .pint_url {
1561
- float: left;
1562
- padding-top: 6px;
1563
- clear: both;
1564
- }
1565
- .sfsiplus_pinterest_section .inr_cont .add {
1566
- width: 417px!important;
1567
- }
1568
- .sfsiplus_linkedin_section .link_1, .sfsiplus_linkedin_section .link_2, .sfsiplus_linkedin_section .link_3, .sfsiplus_linkedin_section .link_4 {
1569
- float: left;
1570
- width: 100%}
1571
- .sfsiplus_linkedin_section .link_1 input.add, .sfsiplus_linkedin_section .link_2 input.add, .sfsiplus_linkedin_section .link_3 input.add, .sfsiplus_linkedin_section .link_4 input.add {
1572
- width: 417px;
1573
- }
1574
- .sfsiplus_linkedin_section .link_1 {
1575
- margin-bottom: 7px;
1576
- }
1577
- .sfsiplus_linkedin_section .link_2 {
1578
- margin-bottom: 12px;
1579
- }
1580
- .sfsiplus_linkedin_section .link_3, .sfsiplus_linkedin_section .link_4 {
1581
- margin-bottom: 13px;
1582
- }
1583
- .tab2 .sfsiplus_linkedin_section .link_4 {
1584
- margin-bottom: 0;
1585
- }
1586
- .sfsiplus_telegram_section .link_1 , .sfsiplus_linkedin_section .link_2{
1587
- margin-bottom: 12px;
1588
- }
1589
- ul.tab_3_list li span {
1590
- font-family: helveticabold;
1591
- }
1592
- #accordion .tab4 h4, #accordion1 .tab4 h4 {
1593
-
1594
- color: #414951;
1595
- font-size: 20px;
1596
- }
1597
- .sfsiplus_specify_counts .listing li .input {
1598
- width: 73px;
1599
- }
1600
- .sfsiplus_fbpgidwpr{width: 160px; float: left; font-weight: bold; font-size: 17px; color: #000000;}
1601
- .sfsiplus_fbpgiddesc{font-weight: normal; width: 100%; font-size: 14px; color: #888888;padding: 4px 0 0 60px; }
1602
- .sfsiplus_fbpgiddesc code
1603
- {
1604
- background: none repeat scroll 0 0 transparent;
1605
- padding-right: 0px;
1606
- padding-left: 0px;
1607
-
1608
- }
1609
- .sfsiplus_specify_counts .listing li .input.mypginpt {
1610
- width: 288px;
1611
- }
1612
- .tab3 .Shuffle_auto .sub_sub_box .tab_3_option {
1613
- padding-top: 0!important;
1614
- margin-bottom: 10px!important;
1615
- }
1616
- .tab3 .sub_row {
1617
- margin-top: 10px!important;
1618
- }
1619
- .tab4 {
1620
- padding-top: 35px!important;
1621
- }
1622
- .tab4 .save_button {
1623
- padding-top: 46px;
1624
- }
1625
- .tab5 {
1626
- padding-top: 31px!important;
1627
- }
1628
- .tab6, .tab7 {
1629
- padding-top: 28px!important;
1630
- }
1631
- .tab5 .sfsiplus_row_onl {
1632
- margin-top: 15px;
1633
- }
1634
- .tab5 .sticking .link>a {
1635
- color: #a4a9ad;
1636
- text-decoration: underline;
1637
- }
1638
- .tab5 .mouse_txt h4 {
1639
- margin-bottom: 8px!important;
1640
- }
1641
- .tab5 .save_button {
1642
- padding-top: 54px;
1643
- }
1644
- .tab7 .like_pop_box h2 {
1645
- font-family: helveticabold;
1646
- text-align: center;
1647
- color: #414951;
1648
- font-size: 26px;
1649
- }
1650
- .tab1 ul.plus_icn_listing li .sfsiplus_right_info label:hover {
1651
- text-decoration: none!important;
1652
- }
1653
- .tab1 ul.plus_icn_listing li .sfsiplus_right_info label.expanded-area {
1654
- clear: both;
1655
- float: left;
1656
- margin-top: 14px;
1657
- }
1658
- .tab7 .space {
1659
- margin-top: 14px;
1660
- }
1661
- .tab7 .pop_up_show label {
1662
- font-family: helveticaregular!important;
1663
- }
1664
- .tab7 .save_button {
1665
- padding-top: 78px;
1666
- }
1667
- .like_txt a {
1668
- text-decoration: none;
1669
- font-family: helveticaregular;
1670
- }
1671
- .bdr_btm_non {
1672
- border-bottom: none!important;
1673
- }
1674
- .tab1 .tab_1_sav {
1675
- padding-top: 13px;
1676
- }
1677
- #accordion .tab2 .sfsiplus_facebook_section .inr_cont p.extra_sp, #accordion1 .tab2 .sfsiplus_facebook_section .inr_cont p.extra_sp {
1678
- padding-top: 7px;
1679
- }
1680
- .tab2 .sfsiplus_custom_section {
1681
- width: 100%}
1682
- .tab7 {
1683
- padding-bottom: 40px!important;
1684
- }
1685
- .tab8 .save_button {
1686
- padding-top: 0px;
1687
- }
1688
- .tab10 .save_button a {
1689
- padding: 16px 0;
1690
- }
1691
- .tab2 .sfsiplus_twitter_section .twt_fld input.add, .tab2 .sfsiplus_twitter_section .twt_fld_2 textarea.add_txt {
1692
- width: 464px!important;
1693
- }
1694
- .tab2 .utube_inn .fb_url label span {
1695
- font-family: helveticaregular;
1696
- }
1697
- .tab1 label, .tab2 label, .tab3 label, .tab4 label, .tab5 label, .tab6 label, .tab7 label, .tab8 label, .tab9 label {
1698
- cursor: default!important;
1699
- }
1700
- .tab5 .new_wind h4 {
1701
- margin-bottom: 11px!important;
1702
- }
1703
- .pop_up_box .fb_2 span {
1704
- height: 28px!important;
1705
- }
1706
- .pop_up_box .sfsi_plus_tool_tip_2 .fbb .fb_1 a {
1707
- margin-top: 0;
1708
- }
1709
- .tab6 .social_icon_like1 ul li span {
1710
- margin-top: -1px;
1711
- }
1712
- #sfpluspageLoad {
1713
- background: url(../images/ajax-loader.gif) 50% 50% no-repeat #F9F9F9;
1714
- height: 100%;
1715
- left: 160px;
1716
- opacity: 1;
1717
- position: fixed;
1718
- top: 0;
1719
- width: 89%;
1720
- z-index: 9999;
1721
- }
1722
- .sfsi_plus_tool_tip_2, .tool_tip {
1723
- background: #FFF;
1724
- border: 1px solid #e7e7e7;
1725
- box-shadow: #e7e7e7 0 0 2px 1px;
1726
- display: block;
1727
- float: left;
1728
- margin: 0 0 0 -52px;
1729
- /*padding: 5px 14px 5px 14px;*/
1730
- position: absolute;
1731
- z-index: 10000;
1732
- border-bottom: #e5e5e5 solid 4px;
1733
- width: 100px;
1734
- }
1735
- .sfsi_plus_tool_tip_2 {
1736
- display: inline-table;
1737
- }
1738
- .sfsiplus_inerCnt, .sfsiplus_inerCnt:hover, .sfsiplus_inerCnt>a, .sfsiplus_inerCnt>a:hover, .widget-area .widget a {
1739
- outline: 0;
1740
- }
1741
- .sfsi_plus_tool_tip_2_inr {
1742
- bottom: 90%;
1743
- left: 20%;
1744
- opacity: 0;
1745
- }
1746
- .sfsi_plus_tool_tip_2 .bot_arow {
1747
- background: url(../images/bot_tip_icn.png) no-repeat;
1748
- position: absolute;
1749
- bottom: -21px;
1750
- left: 50%;
1751
- width: 15px;
1752
- height: 21px;
1753
- margin-left: -10px;
1754
- }
1755
- .sfsi_plus_tool_tip_2 .top_big_arow {
1756
- position: absolute;
1757
- -webkit-transform: rotate(180deg);
1758
- -moz-transform: rotate(180deg);
1759
- -ms-transform: rotate(180deg);
1760
- -o-transform: rotate(180deg);
1761
- transform: rotate(180deg);
1762
- top: -21px;
1763
- left: 46%;
1764
- width: 15px;
1765
- height: 21px;
1766
- margin-right: -5px;
1767
- }
1768
- .sfsi_plus_tool_tip_2_inr .gpls_visit>a, .sfsi_plus_tool_tip_2_inr .prints_visit_1 a, .sfsi_plus_tool_tip_2_inr .utub_visit>a {
1769
- margin-top: 0;
1770
- }
1771
- .sfsi_plus_tool_tip_2_inr .linkin_1 a, .sfsi_plus_tool_tip_2_inr .linkin_2 a, .sfsi_plus_tool_tip_2_inr .linkin_3 a, .sfsi_plus_tool_tip_2_inr .linkin_4 a, .sfsi_plus_tool_tip_2_inr .prints_visit a {
1772
- margin: 0;
1773
- }
1774
- .sfsiTlleftBig {
1775
- bottom: 121%;
1776
- left: 22%;
1777
- margin-left: -54%}
1778
- .sfsi_plus_Tlleft {
1779
- bottom: 100%;
1780
- left: 50%;
1781
- margin-left: -66px !important;
1782
- margin-bottom: 2px;
1783
- }
1784
- .sfsi_plc_btm {
1785
- bottom: auto;
1786
- top: 100%;
1787
- left: 50%;
1788
- margin-left: -63px;
1789
- margin-top: 8px;
1790
- margin-bottom: auto;
1791
- }
1792
- .sfsiplus_inerCnt {
1793
- position: relative;
1794
- z-index: inherit!important;
1795
- float: left;
1796
- width: 100%;
1797
- float: left;
1798
- }
1799
- .sfsi_plus_wicons {
1800
- margin-bottom: 30px;
1801
- position: relative;
1802
- padding-top: 5px;
1803
- }
1804
- .sfsiplus_norm_row .bot_no {
1805
- position: absolute;
1806
- padding: 1px 0;
1807
- font-size: 12px!important;
1808
- text-align: center;
1809
- line-height: 12px!important;
1810
- background: #fff;
1811
- border-radius: 5px;
1812
- left: 50%;
1813
- margin-left: -20px;
1814
- z-index: 9;
1815
- border: 1px solid #333;
1816
- top: 100%;
1817
- white-space: pre;
1818
- -webkit-box-sizing: border-box;
1819
- -moz-box-sizing: border-box;
1820
- box-sizing: border-box;
1821
- margin-top: 10px;
1822
- width: 40px;
1823
- }
1824
- .sfsiplus_norm_row .bot_no:before {
1825
- content: url(images/count_top_arow.png);
1826
- position: absolute;
1827
- height: 9px;
1828
- margin-left: -7.5px;
1829
- top: -10px;
1830
- left: 50%;
1831
- width: 15px;
1832
- }
1833
- /*.sf_subscrbe .bot_no:before
1834
- {
1835
- content: url(images/count_left_arow.png);
1836
- height: 9px;
1837
- left: 0;
1838
- margin-left: -12px;
1839
- position: absolute;
1840
- top: 0px;
1841
- width: 15px;
1842
- }*/
1843
- .sf_subscrbe .bot_no
1844
- {
1845
- background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
1846
- font-size: 12px !important;
1847
- left: 67px;
1848
- line-height: 17px !important;
1849
- margin-left: 0px;
1850
- /* margin-top: 9px;*/
1851
- padding: 1px 0;
1852
- /*position: absolute;*/
1853
- text-align: center;
1854
- /*top: -8px;*/
1855
- white-space: pre;
1856
- width: 33px;
1857
- height: 19px;
1858
- z-index: 9;
1859
- display:inline-block;
1860
- }
1861
- .bot_no.sfsiSmBtn {
1862
- font-size: 10px;
1863
- margin-top: 4px;
1864
- }
1865
- .bot_no.sfsiSmBtn:before {
1866
- margin-left: -8px;
1867
- top: -9px;
1868
- }
1869
- .sfsiplus_norm_row .cbtn_vsmall {
1870
- font-size: 9px;
1871
- left: -28%;
1872
- top: 4px;
1873
- }
1874
- .sfsiplus_norm_row .cbtn_vsmall:before {
1875
- left: 31%;
1876
- top: -9px;
1877
- margin-left: -31%}
1878
- h2.optional {
1879
- font-family: helveticaregular;
1880
- font-size: 25px;
1881
- margin: 25px 0 19px;
1882
- color: #5a6570;
1883
- float: left;
1884
- }
1885
- .utube_tool_bdr .utub_visit {
1886
- margin: 9px 0 0;
1887
- height: 24px;
1888
- display: inline-block;
1889
- float: none;
1890
- }
1891
- .utube_tool_bdr .utub_2 {
1892
- margin: 9px 0 0;
1893
- height: 24px;
1894
- width: 86px;
1895
- display: inline-block;
1896
- float: none;
1897
- }
1898
- .sfsi_plus_printst_tool_bdr {
1899
- width: 79px;
1900
- }
1901
- .sfsi_plus_printst_tool_bdr .prints_visit {
1902
- margin: 0 0 10px -22px;
1903
- }
1904
- .sfsi_plus_printst_tool_bdr .prints_visit_1 {
1905
- margin: 0 0 0 -53px;
1906
- }
1907
- .sfsi_plus_fb_tool_bdr {
1908
- width: 68px;
1909
- height: auto;
1910
- }
1911
- .sfsi_plus_fb_tool_bdr .sfsi_plus_inside {
1912
- text-align: center;
1913
- width: 100%;
1914
- float: left;
1915
- overflow: hidden;
1916
- }
1917
- .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1 {
1918
- margin: 2px 0 -5px 0;
1919
- height: 28px;
1920
- /*display: inline-block;*/
1921
- float: none;
1922
- /* width: 62px;s*/
1923
- }
1924
- #sfsi_plus_floater .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1 {
1925
- margin: -16px 0 16px 0;
1926
- }
1927
- .sfsi_plus_inside img
1928
- {
1929
- vertical-align:sub !important;
1930
- }
1931
- .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon2
1932
- {
1933
- margin: 2px 0 2px 0 ;
1934
- height: 20px;
1935
- /* width: 49px;*/
1936
- display:block;
1937
- overflow: hidden;
1938
- }
1939
- .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon3 {
1940
- margin: 2px 0 2px 0;
1941
- height: 20px;
1942
- /* width: 62px;*/
1943
- display:inline-block;
1944
- float: none;
1945
- }
1946
- #sfsi_plus_floater .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon3 {
1947
- margin: 3px 0 0 0;
1948
- }
1949
- .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_1, .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_2, .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_3 {
1950
- margin: 9px 0 0;
1951
- height: 25px;
1952
- }
1953
- .sfsi_plus_printst_tool_bdr .sfsi_plus_inside {
1954
- text-align: center;
1955
- float: left;
1956
- width: 100%}
1957
- .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1{
1958
- margin: 2px 0;
1959
- height: 24px;
1960
- display: inline-block;
1961
- float: none;
1962
- /*width: 73px;*/
1963
- }
1964
- #sfsi_plus_floater .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1{
1965
- margin:0px 0;
1966
- }
1967
- #sfsi_plus_floater .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2{
1968
- margin:-5px 0 17px 0;
1969
- display:inherit;
1970
- }
1971
- .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2 {
1972
- margin: 2px 0;
1973
- height: 20px;
1974
- display:inline-block;
1975
- float: none;
1976
- /*max-width: 73px;*/
1977
- width: 100%;
1978
- }
1979
- .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .prints_visit, .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .prints_visit_1 {
1980
- margin: 9px 0 0;
1981
- height: 20px;
1982
- float: none;
1983
- display: inline-block;
1984
- }
1985
- .sfsi_plus_printst_tool_bdr {
1986
- /* margin-left: -59px;*/
1987
- }
1988
- .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1>a>img, .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1>a>img, .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1>a>img, .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4>a>img, .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1>a>img, .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2>a>img, .utube_tool_bdr .sfsi_plus_inside .icon1>a>img {
1989
- padding-top: 0;
1990
- }
1991
- .sfsi_plus_gpls_tool_bdr {
1992
- width: 76px;
1993
- }
1994
- .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1>a>img {
1995
- padding-top: 0;
1996
- }
1997
- .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside {
1998
- text-align: center;
1999
- width: 100%;
2000
- float: left;
2001
- }
2002
- .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1 {
2003
- margin: 2px 0 -5px 0;
2004
- display: inline-block;
2005
- float: none;
2006
- height: 29px;
2007
- /*width: 76px;*/
2008
- }
2009
- .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon2 {
2010
- margin: 2px 0 2px 0;
2011
- display:inline-block;
2012
- float: none;
2013
- height: 24px;
2014
- width:100%;
2015
- /* width: 38px;*/
2016
- }
2017
- .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon3 {
2018
- margin: 2px 0 2px 0;
2019
- display:block;
2020
- float: none;
2021
- height: 24px;
2022
- /* width: 76px;
2023
- */}
2024
- .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gpls_visit, .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gtalk_2, .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gtalk_3 {
2025
- margin: 9px 0 0;
2026
- height: 29px;
2027
- }
2028
- .sfsi_plus_fb_tool_bdr, .sfsi_plus_gpls_tool_bdr, .sfsi_plus_linkedin_tool_bdr, .sfsi_plus_printst_tool_bdr, .sfsi_plus_twt_tool_bdr {
2029
- bottom: auto;
2030
- left: 50%;
2031
- margin-bottom: 2px;
2032
- }
2033
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside {
2034
- text-align: center;
2035
- width: 100%;
2036
- float: left;
2037
- }
2038
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 {
2039
- margin: 2px 0!important;
2040
- display: inline-block;
2041
- float: none;
2042
- vertical-align: middle;
2043
- overflow: hidden;
2044
- /*width: 100%;*/
2045
- }
2046
- #sfsi_plus_floater .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 {
2047
- margin: -7px 0 -14px 0!important;
2048
- /* height: 41px; */
2049
- vertical-align: bottom;
2050
- }
2051
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a {
2052
- display: inline-block;
2053
- vertical-align: middle;
2054
- /*width: 100%;*/
2055
- width:auto;
2056
- }
2057
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a img{
2058
- float: left;
2059
- }
2060
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 {
2061
- margin: 1px 24px 3px !important;
2062
- display: inline-block;
2063
- float: none;
2064
- /*width: 61px;*/
2065
- overflow: hidden;
2066
- height: 20px;
2067
- }
2068
- #sfsi_plus_floater .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1{
2069
- margin: 1px 24px -12px !important;
2070
- }
2071
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 iframe {
2072
- /* width: 61px!important;*/
2073
- }
2074
- .sfsi_plus_tool_tip_2, .sfsi_plus_fb_tool_bdr, .sfsi_plus_twt_tool_bdr, .sfsi_plus_linkedin_tool_bdr, .sfsi_plus_printst_tool_bdr, .sfsi_plus_gpls_tool_bdr, .sfsi_plus_Tlleft {width:140px !important; padding:6px 0;}
2075
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon2 {
2076
- margin: 0px 0!important;
2077
- display:inline-block;
2078
- float: none;
2079
- height: 20px;
2080
- /* width: 58px;s*/
2081
- }
2082
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_1 {
2083
- margin: 9px 0 0;
2084
- display: inline-block;
2085
- float: none;
2086
- width: 58px;
2087
- height: 20px;
2088
- overflow: hidden;
2089
- }
2090
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_1 iframe {
2091
- width: 100%!important;
2092
- }
2093
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_2 {
2094
- margin: 9px 0 0;
2095
- height: 20px;
2096
- display: inline-block;
2097
- float: none;
2098
- width: 58px;
2099
- }
2100
- .utube_tool_bdr .sfsi_plus_inside {
2101
- text-align: center;
2102
- width: 100%;
2103
- float: left;
2104
- }
2105
- .sfsi_plus_inside > div {}
2106
- .utube_tool_bdr .sfsi_plus_inside .icon1{
2107
- margin: 2px 0 2px;
2108
- height: 24px;
2109
- display: inline-block;
2110
- float: none;
2111
- width: 87px;
2112
- }
2113
- #sfsi_plus_floater .utube_tool_bdr .sfsi_plus_inside .icon1{
2114
- margin:0px 0px 19px 0;
2115
- }
2116
- .utube_tool_bdr .sfsi_plus_inside .icon2 {
2117
- margin: 2px 0 2px;
2118
- height: 24px;
2119
- display:inline-block;
2120
- float: none;
2121
- min-width: 100px;
2122
- width: auto;
2123
- }
2124
- .utube_tool_bdr {
2125
- width: 93px;
2126
- bottom: auto;
2127
- left: 50%;
2128
- margin-bottom: 2px;
2129
- }
2130
- .sfsi_plus_linkedin_tool_bdr {
2131
- width: 66px;
2132
- }
2133
- .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside {
2134
- text-align: center;
2135
- float: left;
2136
- width: 100%}
2137
- .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1{
2138
- margin: -5px 0 8px 0;
2139
- display: inline-block;
2140
- float: none;
2141
- height: 23px;
2142
- width: 100%;
2143
- }
2144
- #sfsi_plus_floater .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1{
2145
- margin: -6px 0 16px 0;
2146
- display: inherit;
2147
- }
2148
- .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon2{
2149
- margin: 1px 0;
2150
- display:inline-block;
2151
- float: none;
2152
- height: 23px;
2153
- width: 100%;
2154
- }
2155
- #sfsi_plus_floater .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon2{
2156
- margin: -15px 0 3px 0;
2157
- display: inherit;
2158
- }
2159
- .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon3 {
2160
- margin: 2px 0;
2161
- display:inline-block;
2162
- float: none;
2163
- height: 23px;
2164
- width: 100%;
2165
- }
2166
-
2167
-
2168
- .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4 {
2169
- margin: 2px 0;
2170
- display: inline-block;
2171
- float: none;
2172
- height: 28px;
2173
- width: 66px;
2174
- }
2175
- .sfsi_plus_FrntInner .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1{ margin: 2px 0;}
2176
- .sfsi_plus_widget .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4,
2177
- .sfsi_plus_widget .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1{ height: auto}
2178
-
2179
- .sfsi_plus_linkedin_tool_bdr .linkin_1, .sfsi_plus_linkedin_tool_bdr .linkin_2, .sfsi_plus_linkedin_tool_bdr .linkin_3, .sfsi_plus_linkedin_tool_bdr .linkin_4 {
2180
- margin: 9px 0 0!important;
2181
- height: 20px;
2182
- display: inline-block;
2183
- float: none;
2184
- overflow: hidden;
2185
- }
2186
- .sfsi_plus_twt_tool_bdr {
2187
- width: 62px;
2188
- height: auto;
2189
- }
2190
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1>iframe {
2191
- margin: 0px auto!important;
2192
- float: left !important;
2193
- width: 100%}
2194
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1>iframe #widget {
2195
- text-align: center;
2196
- }
2197
- .sfsi_pop_up .button {
2198
- border: none;
2199
- padding: 0;
2200
- }
2201
- .pop_up_box .button a {
2202
- color: #fff;
2203
- line-height: normal;
2204
- font-size: 22px;
2205
- text-decoration: none;
2206
- text-align: center;
2207
- width: 482px;
2208
- height: 80px;
2209
- margin: 0;
2210
- display: table-cell;
2211
- vertical-align: middle;
2212
- font-family: helveticabold;
2213
- padding: 0 10px;
2214
- }
2215
- .tab3 ul.sfsiplus_tab_3_icns li .radio {
2216
- margin-top: 7px;
2217
- }
2218
- .tab3 ul.sfsiplus_tab_3_icns li label { line-height: 50px!important; margin-left: 20px;}
2219
- .sfsi_mainContainer input[type=email], .sfsi_mainContainer input[type=number], .sfsi_mainContainer input[type=password], .sfsi_mainContainer input[type=search], .sfsi_mainContainer input[type=tel], .sfsi_mainContainer input[type=text], .sfsi_mainContainer input[type=url], .sfsi_mainContainer select, .sfsi_mainContainer textarea {
2220
- color: #5a6570!important;
2221
- }
2222
- .adminTooltip {
2223
- left: 142px;
2224
- position: absolute;
2225
- }
2226
- .adPopWidth {
2227
- min-height: 100px!important;
2228
- }
2229
- .main_contant p>a.lit_txt, .tab4 p>a {
2230
- font-family: helveticaregular;
2231
- color: #414951;
2232
- }
2233
- .tab1 ul.plus_icn_listing li .sfsiplus_custom-txt {
2234
- margin-left: 5px;
2235
- }
2236
- .tab1 ul.plus_icn_listing li .custom-img {
2237
- margin-left: 18px;
2238
- }
2239
- .sfsiplus_linkedin_section .link_4>label.anthr_labl {
2240
- height: 94px;
2241
- }
2242
- .tab3 .tab_3_sav {
2243
- padding-top: 0;
2244
- margin: -69px auto 20px;
2245
- position: relative;
2246
- z-index: 9;
2247
- }
2248
- .mediam_txt {
2249
- font-family: helveticabold;
2250
- }
2251
- .sfsiCtxt {
2252
- line-height: 51px;
2253
- font-family: helveticaregular;
2254
- font-size: 22px;
2255
- float: left;
2256
- padding-left: 19px;
2257
- color: #5a6570;
2258
- }
2259
- .customstep2-img {
2260
- width: 51px;
2261
- float: left;
2262
- }
2263
- .tab2 .row h2.custom {
2264
- margin: 15px 0 7px 21px;
2265
- height: 52px;
2266
- line-height: 51px;
2267
- font-family: helveticaregular;
2268
- font-size: 22px;
2269
- }
2270
- .plus_custom-links p.cus_link label {
2271
- margin-left: 0;
2272
- }
2273
- .pop_up_box .sfsi_plus_tool_tip_2 .fbb .fb_1 a>img:hover {
2274
- opacity: .9;
2275
- }
2276
- .tab2 .rss_url_row .sfrsTxt {
2277
- font-size: 17px;
2278
- line-height: 41px;
2279
- margin: 0 0 0 4px;
2280
- font-family: helveticaregular;
2281
- }
2282
- .tab2 .rss_url_row .sfrsTxt>strong {
2283
- font-family: helveticaregular;
2284
- }
2285
- .tab2 .utube_inn p.extra_pp {
2286
- float: left;
2287
- width: 100%;
2288
- margin: 0 0 0 48px;
2289
- }
2290
- .tab2 .utube_inn p.extra_pp label {
2291
- float: left;
2292
- line-height: 41px;
2293
- margin-right: 8px;
2294
- }
2295
- .sfsi_inside .icon2 .fb_iframe_widget span {
2296
- /* width: 500px!important; sunil*/
2297
- }
2298
- @media (max-width:767px) {
2299
- .icon2 .fb_iframe_widget span {
2300
- width: auto;
2301
- }
2302
- .sfsi_plus_outr_div
2303
- {
2304
- top: 10%
2305
- }
2306
- .sfsi_plus_outr_div h2
2307
- {
2308
- font-size: 22px!important;
2309
- line-height: 28px;
2310
- }
2311
- .sfsi_plus_wicons {
2312
- padding-top: 0;
2313
- }
2314
- }
2315
- .sfsiplus_specify_counts .listing li .high_prb {
2316
- height: 41px;
2317
- }
2318
- .sfsi_plus_Sicons {
2319
- position: relative;
2320
- }
2321
- .sfsi_plus_Sicons .sf_subscrbe{ margin: 2px 3px 0 0; line-height: 0px;}
2322
- .sfsi_plus_Sicons .sf_fb{ margin: 0 4px 0 5px; line-height: 0px;}
2323
- .sfsi_plus_Sicons .sf_twiter{ margin: 1px 7px 0 4px; line-height: 0px;}
2324
-
2325
- .sfsi_plus_Sicons.left .sf_subscrbe{ margin: 2px 8px 0 0;}
2326
- .sfsi_plus_Sicons.left .sf_fb{ margin: 0 8px 0 0;}
2327
- .sfsi_plus_Sicons.left .sf_twiter{ margin: 1px 8px 0 0;}
2328
-
2329
- .sfsi_plus_Sicons.right .sf_subscrbe{ margin: 2px 0 0; }
2330
- .sfsi_plus_Sicons.right .sf_fb{ margin: 0 0 0 7px; }
2331
- .sfsi_plus_Sicons.right .sf_twiter{ margin: 1px 0 0 8px; }
2332
-
2333
- .sfsi_plus_Sicons .sf_subscrbe, .sfsi_plus_Sicons .sf_twiter
2334
- {
2335
- position: relative;
2336
- width: 75px;
2337
- }
2338
- .sfsi_plus_Sicons .sf_twiter iframe
2339
- {
2340
- margin: 0px;
2341
- height: 20px !important;
2342
- overflow: visible !important;
2343
- }
2344
- .sfsi_plus_Sicons .sf_twiter iframe #widget
2345
- {
2346
- overflow: visible !important;
2347
-
2348
- }
2349
- .sfsi_plus_Sicons .sf_subscrbe a
2350
- {
2351
- width: auto;
2352
- float: left;
2353
- border: medium none;
2354
- padding-top: 0px;
2355
- }
2356
- .sfsi_plus_Sicons .sf_subscrbe a:focus
2357
- {
2358
- outline: medium none;
2359
- }
2360
- .sfsi_plus_Sicons .sf_subscrbe a img
2361
- {
2362
- float: left;
2363
- height: 20px !important;
2364
- }
2365
- .sfsi_plus_Sicons .sf_fb {
2366
- position: relative;
2367
- width: 75px;
2368
- }
2369
- .sfsi_plus_Sicons .fb_iframe_widget {
2370
- float: none;
2371
- width: auto;
2372
- vertical-align: middle;
2373
- margin: 2px 0 0;
2374
- }
2375
- /*absolute commented as for standard icon it was giving issue while icon was to be aligned centerd.*/
2376
- .sfsi_plus_Sicons .sf_fb .fb_iframe_widget>span {
2377
- position: relative;
2378
- /*width: 450px!important;*/
2379
- float: left;
2380
- }
2381
-
2382
- .tab2 .utube_inn label {
2383
- font-size: 18px;
2384
- }
2385
- .sfsi_plc_btm {
2386
- padding: 5px 14px 9px;
2387
- }
2388
- .tab7 .field {
2389
- margin-top: 7px;
2390
- }
2391
- .sfsi_plus_outr_div ul li .cmcls img {
2392
- margin-top: 0!important;
2393
- }
2394
- .sfsi_plus_outr_div ul li .sfsiplus_inerCnt {
2395
- float: left;
2396
- }
2397
- .sfsi_plus_outr_div ul li .sfsiplus_inerCnt .bot_no {
2398
- position: absolute;
2399
- padding: 1px 0;
2400
- font-size: 12px!important;
2401
- line-height: 12px!important;
2402
- text-align: center;
2403
- background: #fff;
2404
- border-radius: 5px;
2405
- display: block;
2406
- left: 50%;
2407
- margin-left: -20px;
2408
- border: 1px solid #333;
2409
- white-space: pre;
2410
- -webkit-box-sizing: border-box;
2411
- -moz-box-sizing: border-box;
2412
- box-sizing: border-box;
2413
- margin-top: 6px;
2414
- width: 40px;
2415
- word-break: break-all;
2416
- word-wrap: break-word;
2417
- }
2418
- .sfsi_plus_outr_div ul li .sfsiplus_inerCnt .bot_no:before {
2419
- content: url(images/count_top_arow.png);
2420
- position: absolute;
2421
- height: 9px;
2422
- margin-left: -7.5px;
2423
- top: -10px;
2424
- left: 50%;
2425
- width: 15px;
2426
- }
2427
- .sfsi_plus_outr_div {
2428
- position: fixed;
2429
- width: 100%;
2430
- float: none;
2431
- left: 50%;
2432
- top: 20%;
2433
- margin-left: -50%;
2434
- opacity: 0;
2435
- z-index: -1;
2436
- display: block;
2437
- text-align: center;
2438
- }
2439
- .sfsi_plus_outr_div .sfsi_plus_FrntInner {
2440
- display: inline-block;
2441
- padding: 15px 17px 27px 18px;
2442
- background: #FFF;
2443
- border: 1px solid #EDEDED;
2444
- box-shadow: 0 0 5px #CCC;
2445
- margin: 20px;
2446
- position: relative;
2447
- }
2448
- .sfsi_plus_FrntInner .sfsiclpupwpr
2449
- {
2450
- position: absolute;
2451
- right: -10px;
2452
- top: -10px;
2453
- width: 25px;
2454
- cursor: pointer;
2455
- }
2456
- .sfsi_plus_FrntInner .sfsiclpupwpr img
2457
- {
2458
- width: auto;
2459
- float: left;
2460
- border: medium none;
2461
- }
2462
- .tab7 .like_pop_box {
2463
- width: 100%;
2464
- margin: 35px auto auto;
2465
- position: relative;
2466
- text-align: center;
2467
- }
2468
- .tab7 .like_pop_box .sfsi_plus_Popinner {
2469
- display: inline-block;
2470
- padding: 18px 20px;
2471
- box-shadow: 0 0 5px #ccc;
2472
- -webkit-box-shadow: 0 0 5px #ccc;
2473
- border: 1px solid #ededed;
2474
- background: #FFF;
2475
- }
2476
- .tab7 .like_pop_box .sfsi_plus_Popinner h2 {
2477
- margin: 0 0 23px;
2478
- padding: 0;
2479
- color: #414951;
2480
- font-family: helveticabold;
2481
- font-size: 26px;
2482
- text-align: center;
2483
- }
2484
- .tab7 .like_pop_box .sfsi_plus_Popinner ul {
2485
- margin: 0;
2486
- padding: 0;
2487
- list-style: none;
2488
- text-align: center;
2489
- }
2490
- .tab7 .like_pop_box .sfsi_plus_Popinner ul li {
2491
- margin: 0;
2492
- padding: 0;
2493
- list-style: none;
2494
- display: inline-block;
2495
- }
2496
- .tab7 .like_pop_box .sfsi_plus_Popinner ul li span {
2497
- margin: 0;
2498
- width: 54px;
2499
- display: block;
2500
- background: url(../images/count_bg.png) no-repeat;
2501
- height: 24px;
2502
- overflow: hidden;
2503
- padding: 10px 2px 2px;
2504
- font-family: helveticaregular;
2505
- font-size: 16px;
2506
- text-align: center;
2507
- line-height: 24px;
2508
- color: #5a6570;
2509
- }
2510
- .tab7 .like_pop_box .sfsi_plus_Popinner ul li a {
2511
- color: #5a6570;
2512
- text-decoration: none;
2513
- }
2514
- .sfsi_plus_outr_div .sfsi_plus_FrntInner .sfsi_plus_wicons {
2515
- margin-bottom: 0;
2516
- }
2517
- .sfsi_plus_outr_div ul {
2518
- list-style: none;
2519
- margin: 0 0 24px;
2520
- padding: 0;
2521
- text-align: center;
2522
- }
2523
- a.sfsiColbtn {
2524
- color: #5a6570!important;
2525
- float: right;
2526
- font-size: 14px;
2527
- margin: -35px -30px 0 0;
2528
- position: relative;
2529
- right: 0;
2530
- font-family: helveticaregular;
2531
- width: 100px;
2532
- text-decoration: none;
2533
- }
2534
- .tab3 a.sfsiColbtn {
2535
- margin-top: -55px;
2536
- }
2537
- .sfsi_plus_FrntInner ul li:first-of-type .sfsi_plus_wicons {
2538
- margin-left: 0!important;
2539
- }
2540
- ul.sfsiplus_tab_3_icns li .trans_bg {
2541
- background: #000;
2542
- padding-left: 3px;
2543
- }
2544
- .tab2 .sfsiplus_instagram_section {
2545
- padding-bottom: 20px;
2546
- }
2547
- h1.abt_titl {
2548
- text-align: center;
2549
- margin: 19% 0 0;
2550
- }
2551
- .sfcm.sfsi_wicon { padding: 0; width: 100% !important; border: medium none !important; height: auto !important;}
2552
- .fb_iframe_widget span {
2553
- vertical-align: top!important;
2554
- }
2555
- .sfsi_plus_outr_div .sfsi_plus_FrntInner ul {
2556
- margin: 0 0 0 3px;
2557
- }
2558
- .sfsi_plus_outr_div .sfsi_plus_FrntInner ul li {
2559
- margin: 0 3px 0 0;
2560
- }
2561
- @-moz-document url-prefix() {
2562
- .sfcm.sfsi_wicon {
2563
- margin: -1px;
2564
- padding: 0;
2565
- }
2566
- }@media (min-width:320px) and (max-width:480px) {
2567
- .sfsi_plus_tool_tip_2, .tool_tip {
2568
- padding: 5px 14px 0;
2569
- }
2570
- .sfsi_plus_inside:last-child {
2571
- margin-bottom: 18px;
2572
- clear: both;
2573
- }
2574
- .sfsi_plus_outr_div {
2575
- top: 10%}
2576
- .sfsi_plus_FrntInner .sfsi_plus_wicons {
2577
- width: 31px!important;
2578
- height: 31px!important;
2579
- }
2580
- .sfsi_plus_FrntInner .sfsi_plus_wicons img {
2581
- width: 100%}
2582
- }
2583
- @media (max-width:320px) {
2584
- .sfsi_plus_tool_tip_2, .tool_tip {
2585
- padding: 5px 14px 0;
2586
- }
2587
- .sfsi_plus_inside:last-child {
2588
- margin-bottom: 18px;
2589
- clear: both;
2590
- }
2591
- .sfsi_plus_FrntInner .sfsi_plus_wicons {
2592
- width: 31px!important;
2593
- height: 31px!important;
2594
- }
2595
- .sfsi_plus_FrntInner .sfsi_plus_wicons img {
2596
- width: 100%}
2597
- }
2598
- ul.SFSI_lsngfrm {
2599
- float: left;
2600
- width: 61%}
2601
- ul.SFSI_instructions {
2602
- float: left;
2603
- width: 39%}
2604
- ul.SFSI_instructions li {
2605
- font-size: 12px!important;
2606
- line-height: 25px!important;
2607
- margin: 0!important;
2608
- padding: 0 0 0 15px!important;
2609
- width: 100%}
2610
-
2611
- /*{Monad}*/
2612
- /*Upload Skins css*/
2613
- .cstmskin_popup
2614
- {
2615
- width: 500px;
2616
- background: #FFF;
2617
- box-shadow: 0 0 5px 3px #d8d8d8;
2618
- margin: 40px 0px auto;
2619
- padding: 20px 25px 20px;
2620
- font-family: helveticaregular;
2621
- color: #5a6570;
2622
- height: auto;
2623
- float: left;
2624
- position: relative;
2625
- left: 35%;
2626
- }
2627
- .cstomskins_wrpr {
2628
- float: left;
2629
- width: 100%;
2630
- }
2631
- .custskinmsg {
2632
- float: left;
2633
- font-size: 15px;
2634
- margin-top: 10px;
2635
- width: 100%;
2636
- }
2637
- .custskinmsg > ul {
2638
- color: #000;
2639
- float: left;
2640
- margin-top: 8px;
2641
- width: 100%;
2642
- }
2643
- ul.cstmskin_iconlist {
2644
- float: left;
2645
- margin-top: 10px;
2646
- width: 100%;
2647
- height: 53vh;
2648
- overflow-y: scroll;
2649
- }
2650
- .cstmskin_iconlist > li {
2651
- float: left;
2652
- margin: 3px 0;
2653
- width: 100%;
2654
- }
2655
- .cstm_icnname {
2656
- float: left;
2657
- width: 30%;
2658
- }
2659
- .cstmskins_btn > img {
2660
- float: left;
2661
- margin-right: 25px;
2662
- }
2663
- .cstmskin_btn
2664
- {
2665
- width: auto;
2666
- float: left;
2667
- padding: 3px 20px;
2668
- color: #fff;
2669
- background-color:#12a252;
2670
- text-decoration: none;
2671
- margin: 0 10px;
2672
- }
2673
- .cstmskins_sbmt
2674
- {
2675
- width: 100%;
2676
- float: left;
2677
- text-align: center;
2678
- margin-top: 15px;
2679
- }
2680
- .done_btn
2681
- {
2682
- width: auto;
2683
- padding: 3px 80px;
2684
- color: #fff;
2685
- background-color:#12a252;
2686
- text-decoration: none;
2687
- font-size: 18px;
2688
- }
2689
- .cstmskin_btn:hover, .done_btn:hover, .cstmskin_btn:focus, .done_btn:focus
2690
- {
2691
- color: #fff;
2692
- }
2693
- .skswrpr, .dlt_btn
2694
- {
2695
- display: none;
2696
- }
2697
- .cstmutbewpr
2698
- {
2699
- width: 100%;
2700
- float: left;
2701
- margin-top: 10px;
2702
- }
2703
- .cstmutbewpr ul.enough_waffling li
2704
- {
2705
- width: auto;
2706
- float: left;
2707
- margin-right: 20px;
2708
- }
2709
- .cstmutbewpr ul.enough_waffling li span
2710
- {
2711
- float: left;
2712
- }
2713
- .cstmutbewpr ul.enough_waffling li label
2714
- {
2715
- width: auto;
2716
- float: left;
2717
- margin-top: 10px;
2718
- margin-left: 10px;
2719
- }
2720
- .cstmutbewpr .cstmutbtxtwpr
2721
- {
2722
- width: 100%;
2723
- float: left;
2724
- padding-top: 10px;
2725
- }
2726
- .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr
2727
- {
2728
- width: 100%;
2729
- float: left;
2730
- display: none;
2731
- }
2732
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p, #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p
2733
- {
2734
- margin-left: 0px;
2735
- }
2736
- .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr
2737
- {
2738
- width: 100%;
2739
- float: left;
2740
- display: none;
2741
- }
2742
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p label, #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p label
2743
- {
2744
- width: 120px;
2745
- }
2746
- .sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a, .sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a.sficn
2747
- {
2748
- padding: 0px;
2749
- margin: 0px;
2750
- width: 100%;
2751
- /*float: left;*/
2752
- border: medium none;
2753
- }
2754
- .sfsi_socialwpr
2755
- {
2756
- width: auto;
2757
- float: left;
2758
- }
2759
- .sfsi_socialwpr .sf_fb
2760
- {
2761
- float:left;
2762
- margin:5px 5px 5px 5px;
2763
- min-height: 20px;
2764
- }
2765
-
2766
- .sfsipyplfrm
2767
- {
2768
- float: left;
2769
- margin-top: 10px;
2770
- width: 100%;
2771
- }
2772
- .sfsipyplfrm input[type="submit"]
2773
- {
2774
- background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
2775
- border: medium none;
2776
- color: #0074a2;
2777
- cursor: pointer;
2778
- font-weight: normal;
2779
- margin: 0;
2780
- padding: 5px 10px;
2781
- text-decoration: underline;
2782
- }
2783
- .sfsipyplfrm input[type="submit"]:hover
2784
- {
2785
- color: #2ea2cc
2786
- }
2787
- .pop_up_box_ex {
2788
- background: none repeat scroll 0 0 #fff;
2789
- box-shadow: 0 0 5px 3px #d8d8d8;
2790
- color: #5a6570;
2791
- font-family: helveticaregular;
2792
- margin: 200px auto;
2793
- min-height: 150px;
2794
- padding: 20px 25px 0px;
2795
- position: relative;
2796
- width: 290px;
2797
- }
2798
- .pop_up_box_ex {
2799
- color: #5a6570;
2800
- font-family: helveticaregular;
2801
- }
2802
-
2803
- .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_right_info {
2804
- font-family: helveticaregular;
2805
- width: 94.7%;
2806
- float: left;
2807
- }
2808
- .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_right_info p label.ckckslctn
2809
- {
2810
- display: none;
2811
- }
2812
-
2813
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr > li {
2814
- width:100% !important;
2815
- max-width:100% !important;
2816
- border-left: 45px solid transparent;
2817
- -webkit-box-sizing: border-box;
2818
- -moz-box-sizing: border-box;;
2819
- -ms-box-sizing: border-box;
2820
- -o-box-sizing: border-box;
2821
- box-sizing: border-box;
2822
- }
2823
-
2824
- .tab8 .icons_size > input {
2825
- background:none repeat scroll 0 0 #e5e5e5;
2826
- width:80px;
2827
- float:left;
2828
- padding:10px 0;
2829
- text-align:center;
2830
- }
2831
- .tab8 .icons_size > ins { margin-left:19px; }
2832
- .tab8 .icons_size > span.last { width: auto !important; clear: left }
2833
- .tab8 .radio_section.tb_4_ck { margin: 0 20px 0 0 !important; }
2834
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row,
2835
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr p,
2836
- .tab8 .options {
2837
- float: none;
2838
- width: 100%;
2839
- border-left: 60px solid transparent;
2840
- -webkit-box-sizing: border-box;
2841
- -moz-box-sizing: border-box;
2842
- -o-box-sizing: border-box;
2843
- -ms-box-sizing: border-box;
2844
- box-sizing: border-box;
2845
- }
2846
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr label { width: auto; }
2847
-
2848
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .social_icon_like1 ul { margin-left: 15px}
2849
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .social_icon_like1 li { width: auto; min-width: auto; margin: 0 50px 0 0 }
2850
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .usually > li { width:85% !important; max-width: 100% !important; margin-left: 70px; font-family: 'helveticaneue-light'; padding-bottom: 5px}
2851
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .options > label { width:356px !important; margin:0; width: auto; margin-bottom: 0; margin-top: 0px; }
2852
- .tab8 .row.sfsiplus_PostsSettings_section .options .first.chcklbl { float: left !important; width: 335px !important; }
2853
- .tab8 .row.sfsiplus_PostsSettings_section .options .chckwpr { width:400px; float:right; }
2854
- .tab8 .row.sfsiplus_PostsSettings_section .options {
2855
- width:90%;
2856
- margin:0;
2857
- font-family: 'helveticaneue-light';
2858
- float: left;
2859
- margin-bottom: 10px;
2860
- max-width: 895px;
2861
- border-left: none;
2862
- }
2863
- .sfsiplus_toggleonlystndrshrng { margin-bottom: 30px !important}
2864
- .tab8 .row.sfsiplus_PostsSettings_section .options.shareicontextfld { margin: 15px 0; }
2865
- .tab8 .sfsiplus_tab_3_icns.flthmonpg .radio { margin-top:55px !important; }
2866
- .tab8 .radiodisplaysection { float: left;}
2867
-
2868
-
2869
-
2870
- /*palak css end*/
2871
- /*modify by palak*/
2872
- .tab8 ul.sfsiplus_icn_listing8 li {
2873
- float: left;
2874
- padding: 11px 0 26px 0;
2875
- width: 100%;
2876
- /*max-width: 1000px;*/
2877
- margin: 0
2878
- }
2879
- .sfsiplusplacethemanulywpr { max-width: 98% !important}
2880
-
2881
- /*modify by palak*/
2882
- /*modify by palak*/
2883
- .tab8 ul.sfsiplus_icn_listing8 {
2884
- list-style: outside none none;
2885
- margin: 5px 0 0;
2886
- overflow: hidden;
2887
- }
2888
- /*modify by palak*/
2889
- .sfsiplus_right_info label.sfsiplus_sub-subtitle
2890
- {
2891
- font-size: 16px !important;
2892
- font-weight: normal;
2893
- }
2894
- ul.plus_icn_listing li .sfsiplus_right_info label.sfsiplus_sub-subtitle a
2895
- {
2896
- font-size: 13px;
2897
- }
2898
- .tab8 ul.sfsiplus_tab_3_icns li .radio {
2899
- margin-top: 7px;
2900
- }
2901
-
2902
- .tab8 ul.sfsiplus_tab_3_icns li label {
2903
- line-height: 50px !important;
2904
- }
2905
- .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns li {
2906
- width: 50%;
2907
- max-width: 450px;
2908
- min-width: 420px;
2909
- padding-left: 0;
2910
- padding-bottom: 15px
2911
- }
2912
-
2913
- .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(1),
2914
- .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(2),
2915
- .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(3) { width: 33% !important}
2916
- .space.disblfltonmbl p.list { width: 100%; margin-bottom: 28px}
2917
-
2918
-
2919
- #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p { display: table}
2920
-
2921
- /*modify by palak*/
2922
- .tab8 .row
2923
- {
2924
- clear: both;
2925
- display: block;
2926
- float: left;
2927
- font-family: helveticaregular;
2928
- line-height: 42px;
2929
- margin-top: 25px;
2930
- padding-top: 15px;
2931
- width: 100%;
2932
- }
2933
- /*modify by palak*/
2934
- .tab8 .icons_size { margin-top: -12px; }
2935
- .tab8 .icons_size { position: relative; font-family: 'helveticaneue-light'; width: 538px; float: right }
2936
- .tab8 .icons_size span {
2937
- display: block;
2938
- float: left;
2939
- font-size: 20px;
2940
- font-weight: 400;
2941
- line-height: 42px;
2942
- margin-right: 18px;
2943
- }
2944
-
2945
- .tab8.icons_size span.last
2946
- {
2947
- margin-left: 55px;
2948
- }
2949
- .tab8 .icons_size ins
2950
- {
2951
- float: left;
2952
- font-size: 17px;
2953
- font-weight: 400;
2954
- margin-right: 25px;
2955
- text-decoration: none;
2956
- margin-bottom: 20px;
2957
- }
2958
- .tab8 .social_icon_like1 {
2959
- float: left;
2960
- margin: 0;
2961
- padding: 30px 0 0;
2962
- text-align: center;
2963
- width: 100%;
2964
- }
2965
- .tab8 .social_icon_like1 ul {
2966
- list-style: outside none none;
2967
- margin: 0;
2968
- padding: 0;
2969
- text-align: center;
2970
- }
2971
- .tab8 .social_icon_like1 li {
2972
- display: inline-block;
2973
- list-style: outside none none;
2974
- margin: 0 0 0 45px !important;
2975
- padding: 0;
2976
- width: auto !important;
2977
- min-width: 100px !important;
2978
- }
2979
- .tab8 .social_icon_like1 li a {
2980
- color: #5a6570;
2981
- display: block;
2982
- text-decoration: none;
2983
- }
2984
- .tab8 .social_icon_like1 li img {
2985
- display: block;
2986
- float: left;
2987
- margin-right: 5px;
2988
- }
2989
- .tab8 ul.usually {
2990
- list-style: outside none none;
2991
- margin: 28px 0 15px 60px;
2992
- padding: 0;
2993
- float: left
2994
- }
2995
- .tab8 ul.usually li {
2996
- font-size: 17px;
2997
- list-style: outside none none;
2998
- margin: 0;
2999
- padding: 0;
3000
- text-align: left;
3001
- width: auto;
3002
- }
3003
- .tab8 ul.enough_waffling {
3004
- list-style: outside none none;
3005
- margin: 25px 0 0;
3006
- padding: 0;
3007
- text-align: center;
3008
- }
3009
- .tab8 ul.enough_waffling li {
3010
- display: inline-block;
3011
- list-style: outside none none;
3012
- margin: 0 22px;
3013
- padding: 0;
3014
- }
3015
- .tab8 ul.enough_waffling li span {
3016
- float: left;
3017
- }
3018
- .tab8 ul.enough_waffling li label {
3019
- color: #5a6570;
3020
- float: left;
3021
- font-family: helveticaregular;
3022
- font-size: 18px;
3023
- font-weight: 400;
3024
- line-height: 38px;
3025
- margin: 0 0 0 20px;
3026
- text-align: center;
3027
- }
3028
- /*modify by palak*/
3029
- .tab8 .row {
3030
- clear: both;
3031
- display: block;
3032
- float: left;
3033
- font-family: helveticaregular;
3034
- line-height: 42px;
3035
- margin-top: 0px;
3036
- padding-top: 10px;
3037
- width: 100%;
3038
- }
3039
- /*modify by palak*/
3040
- .tab8 .options {
3041
- clear: both;
3042
- float: left;
3043
- margin-top: 25px;
3044
- width: auto;
3045
- float: none;
3046
- }
3047
- .tab8 .options label.first {
3048
- font-family: 'helveticaneue-light';
3049
- font-size: 18px;
3050
- }
3051
- .tab8 .options label {
3052
- color: #5a6570;
3053
- float: left;
3054
- font-family: 'helveticaneue-light';
3055
- font-size: 18px;
3056
- line-height: 46px;
3057
- width: 345px;
3058
- }
3059
- .tab8 .options input {
3060
- background: none repeat scroll 0 0 #e5e5e5;
3061
- border: 0 none;
3062
- box-shadow: 2px 2px 3px #dcdcdc inset;
3063
- float: left;
3064
- padding: 10px;
3065
- width: 308px;
3066
- }
3067
- .tab8 .options .field {
3068
- float: left;
3069
- position: relative;
3070
-
3071
- }
3072
- .tab8 .options .field .select {
3073
- background: url(../images/select_bg1.jpg) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
3074
- display: block;
3075
- font-family: helveticaregular;
3076
- padding-left: 17px;
3077
- width: 207px;
3078
- }
3079
- .tab8 .options .field select.styled {
3080
- height: 46px;
3081
- left: 0;
3082
- line-height: 46px;
3083
- position: absolute;
3084
- top: 0;
3085
- width: 213px;
3086
- }
3087
- .tab8 .options .field select.styled {
3088
- line-height: 46px;
3089
- }
3090
- .tab8 ul.sfsiplus_icn_listing8 li .snglchckcntr .sfsiplus_right_info {
3091
- float: left;
3092
- margin-right: 0;
3093
- text-align: left;
3094
- width: auto;
3095
- font-family: 'helveticaneue-light';
3096
- font-size: 18px;
3097
- line-height: 30px;
3098
- }
3099
- .chckwpr .snglchckcntr:first-child { float:left; }
3100
- .chckwpr .snglchckcntr:last-child { float:left; margin-left: 110px; }
3101
- .chckwpr
3102
- {
3103
- width:100%;
3104
- float:left;
3105
- }
3106
- .cstmutbchnlidwpr .utbe_instruction,.cstmutbchnlnmewpr .utbe_instruction, .lnkdin_instruction {
3107
- float: left;
3108
- line-height: 22px;
3109
- margin-top: 10px;
3110
- width: 100%;
3111
- }
3112
- #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p
3113
- {
3114
- font-size: 20px;
3115
- }
3116
- #accordion .tab8 ul.sfsiplus_tab_3_icns { margin-top: 25px; }
3117
- #accordion .tab8 ul.sfsiplus_tab_3_icns.flthmonpg { margin-left: 45px}
3118
- #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisplaysharingtxt { padding-top: 5px; display: inline;}
3119
- #accordion .tab8 ul.sfsiplus_shwthmbfraftr .labelhdng4,
3120
- #accordion .tab8 ul.sfsiplus_shwthmbfraftr .row h4.labelhdng4 { color: #555; font-size: 20px; margin-left: 20px; font-family: 'helveticaregular'}
3121
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row.sfsiplus_PostsSettings_section { border-left: 105px solid transparent; float: left; padding-top: 0}
3122
- .sfsiplus_toggleonlystndrshrng { margin-bottom: 0 !important}
3123
- .radiodisplaysection { float: left}
3124
- .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row.sfsiplus_PostsSettings_section>.labelhdng4 { margin-bottom: 20px !important}
3125
- .sfsiplus_shwthmbfraftr { margin-top: 5px !important}
3126
- label.sfsiplus_toglpstpgsbttl { float: left; margin-top: 5px !important}
3127
- #accordion .tab8 ul.sfsiplus_shwthmbfraftr .row h4 {
3128
- font-family: 'helveticaneue-light';
3129
- font-weight: normal;
3130
- font-size: 18px;
3131
- color: #69737c;
3132
- float: left
3133
- }
3134
- .tab8 .row.sfsiplus_PostsSettings_section .options .seconds.chcklbl { float: right; width: 400px !important; }
3135
- .sfsibeforpstwpr
3136
- {
3137
- width: 100%;
3138
- float: left;
3139
- line-height: 18px;
3140
- margin: 5px 0;
3141
- }
3142
- .sfsiaftrpstwpr
3143
- {
3144
- width: 100%;
3145
- float: left;
3146
- line-height: 18px;
3147
- margin: 5px 0;
3148
- }
3149
- .sfsibeforpstwpr .sfsi_plus_Sicons span
3150
- {
3151
- font-size: 20px;
3152
- }
3153
- .sfsiaftrpstwpr .sfsi_plus_Sicons span
3154
- {
3155
- font-size: 20px;
3156
- }
3157
- .sfsibeforpstwpr .sfsi_plus_Sicons
3158
- {
3159
-
3160
- }
3161
- .sfsiaftrpstwpr .sfsi_plus_Sicons
3162
- {
3163
-
3164
- }
3165
- .sfsibeforpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr
3166
- {
3167
- width: auto;
3168
- float: left;
3169
- }
3170
- .sfsiaftrpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr
3171
- {
3172
- width: auto;
3173
- float: left;
3174
- }
3175
- .sfsibeforpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr .sfsi_plus_wicons
3176
- {
3177
- float: left;
3178
- }
3179
- .sfsiaftrpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr .sfsi_plus_wicons
3180
- {
3181
- float: left;
3182
- }
3183
- .sfsi_flicnsoptn3
3184
- {
3185
- color: #69737c;
3186
- float: left;
3187
- font-size: 20px;
3188
- margin: 62px 5px 0 20px;
3189
- font-family: 'helveticaneue-light';
3190
-
3191
- width: 120px;
3192
- }
3193
-
3194
- .sfsi_ckckslctnlbl
3195
- {
3196
- font-weight: bold;
3197
- }
3198
- .sfsibeforpstwpr iframe{max-width: none; vertical-align: middle;}
3199
- .sfsiaftrpstwpr iframe{max-width: none; vertical-align: middle;}
3200
- .sfwp_fivestar_ul li { display: block; padding-right: 20px; }
3201
- .fb_iframe_widget iframe
3202
- {
3203
- max-width: none;
3204
- }
3205
- .sfsi_mainContainer p.bldtxtmsg{float: left; font-size: 15px; /*font-weight: bold;*/ margin-top: 12px; width: 100%;}
3206
- .sfsi_mainContainer p.translatelilne{float: left; font-size: 15px;font-weight: bold;color: #414951; margin-top: 12px; width: 100%;}
3207
- .sfsiplus_icn_listing8 li > div{width: auto; float: left;}
3208
- #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng
3209
- {
3210
- padding-bottom: 30px;
3211
- float: left;
3212
- }
3213
- #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng
3214
- {
3215
- background: none;
3216
- }
3217
- #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng code
3218
- {
3219
- background: none repeat scroll 0 0 transparent;
3220
- padding-left: 0px;
3221
- padding-right: 0px;
3222
- }
3223
- .options.sfsipluspstvwpr {
3224
- margin-left: 17% !important;
3225
- margin-left: 0% !important;
3226
- }
3227
- .tab8 .row.sfsiplus_PostsSettings_section .options.sfsipluspstvwpr .first.chcklbl
3228
- {
3229
- width: 180px !important;
3230
- }
3231
- .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr {
3232
- overflow: visible;
3233
- }
3234
- /*.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1{margin: 2px 35px 2px !important;clear:both;}*/
3235
- .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a img{margin: 2px 12px 2px !important;clear:both;text-align:center;float:none;}
3236
- .cstmicon1{text-align:center;}
3237
- .sfsi_plus_Sicons img, .sfsiplusid_facebook img, .sfsiplusid_twitter img { height: 20px;}
3238
-
3239
- .sfsi_plus_wicons a.sficn, .sfsi_plus_wicons .sfsi_plus_inside a, .sfsi_plus_Sicons div a
3240
- {
3241
- box-shadow: none;
3242
- border: none;
3243
- }
3244
-
3245
- .sfsi_plus_Sicons .sf_pinit
3246
- {
3247
- margin-right: 4px;
3248
- }
3249
- .sfsi_plus_Sicons .sf_pinit > span
3250
- {
3251
- height: 22px !important;
3252
- vertical-align: middle;
3253
- }
3254
- .sfsi_plus_Sicons .sf_pinit > span
3255
- {
3256
- height: 20px !important;
3257
- vertical-align: middle;
3258
- }
3259
-
3260
- /*.sfsi_plus_Sicons .sf_pinit > span > span
3261
- {
3262
- display: inline-block;
3263
- width: 47px !important;
3264
- position: relative !important;
3265
- margin-left: 40px;
3266
- vertical-align: top;
3267
- right: 0 !important;
3268
- }*/
3269
- .sfsibeforpstwpr .sfsi_plus_Sicons .sf_pinit span{font-size:11px !important;}
3270
- .sfsiaftrpstwpr .sfsi_plus_Sicons .sf_pinit span{font-size:11px !important;}
3271
- .sfsibeforpstwpr .sfsi_plus_Sicons .sfsi_plus_inside .icon2 span{font-size:11px !important;}
3272
- .sfsiaftrpstwpr .sfsi_plus_Sicons .sfsi_plus_inside .icon2 span{font-size:11px !important;}
3273
- .sfsi_plus_wicons a {box-shadow: none !important;}
3274
- .sfsi_plus_inside .fb_iframe_widget { -webkit-appearance:none !important; }
3275
-
3276
- .sfsi_plus_inside img {
3277
- margin-bottom: 0;
3278
- vertical-align: bottom!important;
3279
- }
3280
- .sfsi_plus_Sicons .sf_pinit{
3281
- margin:0 0 0 10px;
3282
- }
3283
- .wp-block-ultimate-social-media-plus-sfsi-plus-share-block .sfsi_plus_block_text_before_icon{
3284
- display:inline-block;
3285
- vertical-align:top;
3286
- }
3287
- .wp-block-ultimate-social-media-plus-sfsi-plus-share-block .sfsi_plus_block{
3288
- display:inline-block
3289
- }
3290
-
3291
- /* MZ CODE START */
3292
- .sfsi_plus_vk_tool_bdr {
3293
- width: 68px;
3294
- height: auto
3295
- }
3296
- .sfsi_plus_vk_tool_bdr .sfsi_plus_inside {
3297
- text-align: center;
3298
- width: 100%;
3299
- float: left;
3300
- overflow: hidden
3301
- }
3302
- .sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon1 {
3303
- margin: 2px 0 2px 0;
3304
- height: 28px;
3305
- display: inline-block;
3306
- float: none
3307
- }
3308
- .sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon2 {
3309
- margin: 5px auto;
3310
- min-height: 25px !important;
3311
- display: block;
3312
- overflow: hidden;
3313
- }
3314
- .sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon3 {
3315
- margin: 2px 0 2px 0;
3316
- height: 20px;
3317
- display: inline-block;
3318
- float: none
3319
- }
3320
- .sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon4 {
3321
- display: inline-block!important;
3322
- float: none!important;
3323
- vertical-align: middle!important;
3324
- width: 100%!important
3325
- }
3326
-
3327
- .sfsiplusid_telegram .sfsi_plus_inside .icon2 img,.sfsiplusid_vk .sfsi_plus_inside .icon2 img,
3328
- .sfsiplusid_weibo .sfsi_plus_inside .icon2 img,.sfsiplusid_xing .sfsi_plus_inside .icon2 img {
3329
- width: 80px;height: 24px;
3330
- }
3331
-
3332
- .sfsiplusid_vk .sfsi_plus_inside .icon1 img,.sfsiplusid_weibo .sfsi_plus_inside .icon1 img,
3333
- .sfsiplusid_xing .sfsi_plus_inside .icon1 img{width: 80px;}
3334
- /* MZ CODE END */
3335
- .sfsiplusid_ok .sfsi_plus_inside, .sfsiplusid_telegram .sfsi_plus_inside{
3336
- text-align:center;
3337
- }
3338
- .sfsiplusid_ok .sfsi_plus_inside .icon3 img ,.sfsiplusid_telegram .sfsi_plus_inside .icon1 img {
3339
- width: 107px;
3340
- height: 37px;
3341
- }
3342
- .sfsiplusid_ok .sfsi_plus_inside .icon2 img {
3343
- width: 65px;
3344
- height: 30px;
3345
- margin-top: 5px;
3346
- }
3347
- .sfsiplusid_ok .sfsi_plus_inside .icon1 img {
3348
- width: 103px;
3349
- height: 25px;
3350
- }
3351
- .sfsiplusid_vk .sfsi_plus_inside .icon1 img, .sfsiplusid_weibo .sfsi_plus_inside .icon1 img, .sfsiplusid_xing .sfsi_plus_inside .icon1 img {
3352
- width: 80px;
3353
- }
3354
- .sfsiplusid_wechat .sfsi_plus_inside .icon1 {
3355
- margin:10px;
3356
- }
3357
- .sfsiplusid_round_icon_wechat{
3358
- border-radius:20px;
3359
- }
3360
- .sfsi_plus_overlay{
3361
- background: rgba(0,0,0,.8);
3362
- width: 100%;
3363
- height: 100%;
3364
- top: 0;
3365
- left: 0;
3366
- z-index: 99999999;
3367
- position: fixed;
3368
- }
3369
- .sfsi_plus_wechat_scan .sfsi_plus_inner_display{
3370
- text-align: center;
3371
- vertical-align: middle;
3372
- margin-top: 50px;
3373
- }
3374
- .sfsi_plus_overlay a.close_btn{
3375
- position: absolute;
3376
- top: 20px;
3377
- right: 20px;
3378
- background: #fff;
3379
- border-radius: 15px;
3380
- width: 30px;
3381
- height: 30px;
3382
- line-height: 30px;
3383
- text-align:center;
3384
- }
3385
- .hide{display:none;}.show{display:block;}
3386
-
3387
- .sfsiplusid_facebook .icon3 span{
3388
- width:62px!important;
3389
- height:20px!important;
3390
- }
3391
- .sfsiplusid_facebook .icon3 iframe{
3392
- width:unset!important;
3393
- height:unset!important;
3394
- }
3395
- .sfsiplusid_twitter .icon2 iframe{
3396
- width:62px!important;
3397
- height:20px!important;
3398
- }
3399
- a.pop-up .radio{
3400
- opacity: 0.5;
3401
- background-position: 0px 0px !important;
3402
- }
3403
- .tab8 .sfsi_plus_responsive_icon_option_li .options .first.first.first {
3404
- width: 25%!important;
3405
- }
3406
- .sfsi_plus_responsive_icon_gradient{
3407
- background-image: -webkit-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3408
- background-image: -moz-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3409
- background-image: linear-gradient(to bottom,rgba(0,0,0,.17) 0%,rgba(255,255,255,.17) 100%);
3410
- }
3411
- .sfsi_plus_responsive_icons a{
3412
- text-decoration: none!important;
3413
- box-shadow: none!important;
3414
- }
3415
- .sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_facebook_container{ background-color:#336699;}
3416
- .sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_follow_container{ background-color:#00B04E;}
3417
- .sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_twitter_container{ background-color:#55ACEE;}
3418
- .sfsi_plus_small_button {
3419
- line-height: 0px;
3420
- height: unset;
3421
- padding: 6px !important;
3422
- }
3423
- .sfsi_plus_small_button span {
3424
- margin-left: 10px;
3425
- font-size: 16px;
3426
- padding: 0px;
3427
- line-height: 16px;
3428
- vertical-align: -webkit-baseline-middle !important;
3429
- margin-left: 10px;
3430
- }
3431
- .sfsi_plus_small_button img {
3432
- max-height: 16px !important;
3433
- padding: 0px;
3434
- line-height: 0px;
3435
- vertical-align: -webkit-baseline-middle !important;
3436
- }
3437
- .sfsi_plus_medium_button span {
3438
- margin-left: 10px;
3439
- font-size: 18px;
3440
- padding: 0px;
3441
- line-height: 16px;
3442
- vertical-align: -webkit-baseline-middle !important;
3443
- margin-left: 10px;
3444
- }
3445
- .sfsi_plus_medium_button img {
3446
- max-height: 16px !important;
3447
- padding: 0px;
3448
- line-height: 0px;
3449
- vertical-align: -webkit-baseline-middle !important;
3450
- }
3451
- .sfsi_plus_medium_button {
3452
- line-height: 0px;
3453
- height: unset;
3454
- padding: 10px !important;
3455
- }
3456
-
3457
- .sfsi_plus_medium_button span {
3458
- margin-left: 10px;
3459
- font-size: 18px;
3460
- padding: 0px;
3461
- line-height: 16px;
3462
- vertical-align: -webkit-baseline-middle !important;
3463
- margin-left: 10px;
3464
- }
3465
- .sfsi_plus_medium_button img {
3466
- max-height: 16px !important;
3467
- padding: 0px;
3468
- line-height: 0px;
3469
- vertical-align: -webkit-baseline-middle !important;
3470
- }
3471
- .sfsi_plus_medium_button {
3472
- line-height: 0px;
3473
- height: unset;
3474
- padding: 10px !important;
3475
- }
3476
- .sfsi_plus_large_button span {
3477
- font-size: 20px;
3478
- padding: 0px;
3479
- line-height: 16px;
3480
- vertical-align: -webkit-baseline-middle !important;
3481
- display: inline;
3482
- margin-left: 10px;
3483
- }
3484
- .sfsi_plus_large_button img {
3485
- max-height: 16px !important;
3486
- padding: 0px;
3487
- line-height: 0px;
3488
- vertical-align: -webkit-baseline-middle !important;
3489
- display: inline;
3490
- }
3491
- .sfsi_plus_large_button {
3492
- line-height: 0px;
3493
- height: unset;
3494
- padding: 13px !important;
3495
- }
3496
- .sfsi_plus_responsive_icons .sfsi_plus_icons_container span {
3497
- font-family: sans-serif;
3498
- font-size: 15px;
3499
- }
3500
- .sfsi_plus_icons_container_box_fully_container {
3501
- flex-wrap: wrap;
3502
- }
3503
- .sfsi_plus_icons_container_box_fully_container a {
3504
- flex-basis: auto !important;
3505
- flex-grow: 1;
3506
- flex-shrink: 1;
3507
- margin-bottom: 5px;
3508
- }
3509
- .sfsi_plus_icons_container>a {
3510
- float: left!important;
3511
- text-decoration: none!important;
3512
- -webkit-box-shadow: unset!important;
3513
- box-shadow: unset!important;
3514
- -webkit-transition: unset!important;
3515
- transition: unset!important;
3516
- margin-bottom:5px!important;
3517
- }
3518
- .sfsi_plus_small_button {
3519
- line-height: 0px;
3520
- height: unset;
3521
- padding: 6px !important;
3522
- }
3523
- .sfsi_plus_small_button span {
3524
- margin-left: 10px;
3525
- font-size: 16px;
3526
- padding: 0px;
3527
- line-height: 16px;
3528
- vertical-align: -webkit-baseline-middle !important;
3529
- margin-left: 10px;
3530
- }
3531
- .sfsi_plus_small_button img {
3532
- max-height: 16px !important;
3533
- padding: 0px;
3534
- line-height: 0px;
3535
- vertical-align: -webkit-baseline-middle !important;
3536
- }
3537
- .sfsi_plus_medium_button span {
3538
- margin-left: 10px;
3539
- font-size: 18px;
3540
- padding: 0px;
3541
- line-height: 16px;
3542
- vertical-align: -webkit-baseline-middle !important;
3543
- margin-left: 10px;
3544
- }
3545
- .sfsi_plus_medium_button img {
3546
- max-height: 16px !important;
3547
- padding: 0px;
3548
- line-height: 0px;
3549
- vertical-align: -webkit-baseline-middle !important;
3550
- }
3551
- .sfsi_plus_medium_button {
3552
- line-height: 0px;
3553
- height: unset;
3554
- padding: 10px !important;
3555
- }
3556
-
3557
- .sfsi_plus_medium_button span {
3558
- margin-left: 10px;
3559
- font-size: 18px;
3560
- padding: 0px;
3561
- line-height: 16px;
3562
- vertical-align: -webkit-baseline-middle !important;
3563
- margin-left: 10px;
3564
- }
3565
- .sfsi_plus_medium_button img {
3566
- max-height: 16px !important;
3567
- padding: 0px;
3568
- line-height: 0px;
3569
- vertical-align: -webkit-baseline-middle !important;
3570
- }
3571
- .sfsi_plus_medium_button {
3572
- line-height: 0px;
3573
- height: unset;
3574
- padding: 10px !important;
3575
- }
3576
- .sfsi_plus_large_button span {
3577
- font-size: 20px;
3578
- padding: 0px;
3579
- line-height: 16px;
3580
- vertical-align: -webkit-baseline-middle !important;
3581
- display: inline;
3582
- margin-left: 10px;
3583
- }
3584
- .sfsi_plus_large_button img {
3585
- max-height: 16px !important;
3586
- padding: 0px;
3587
- line-height: 0px;
3588
- vertical-align: -webkit-baseline-middle !important;
3589
- display: inline;
3590
- }
3591
- .sfsi_plus_large_button {
3592
- line-height: 0px;
3593
- height: unset;
3594
- padding: 13px !important;
3595
- }
3596
- .sfsi_plus_responsive_icons_count{
3597
- padding: 5px 10px;
3598
- float: left !important;
3599
- display: inline-block;
3600
- margin-right: 0px;
3601
- margin-top: 2px;
3602
- }
3603
-
3604
- .sfsi_plus_responsive_icons_count h3{
3605
- font-family: 'sans-serif' !important;
3606
- font-weight: 900;
3607
- font-size: 32px !important;
3608
- line-height: 0px !important;
3609
- padding: 0px;
3610
- margin: 0px;
3611
- }
3612
-
3613
- .sfsi_plus_responsive_icons_count h6{
3614
- font-family: 'sans-serif' !important;
3615
- font-weight: 900;
3616
- padding: 0px;
3617
- margin: 0px;
3618
- }
3619
- .sfsi_plus_responsive_icons a, .sfsi_plus_responsive_icons h3, .sfsi_plus_responsive_icons h6 {
3620
- text-decoration: none!important;
3621
- border: 0!important;
3622
- }
3623
- .sfsi_plus_responsive_with_counter_icons{
3624
- width: calc(100% - 100px)!important;
3625
- }
3626
- .sfsiresponsive_icon_preview {
3627
- padding: 0px 0 20px 0;
3628
- min-width: 100%;
3629
- }
3630
- .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button {
3631
- padding: 12px 13px 9px 13px !important;
3632
- }
3633
- .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_medium_button {
3634
- padding: 9px 10px 7px 10px !important;
3635
- }
3636
- .sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
3637
- padding: 7px 6px !important;
3638
- }
3639
- .sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
3640
- padding: 7px 6px !important;
3641
- margin-top: 2px;
3642
- }
3643
- .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h6 {
3644
- display: inline-block;
3645
- font-size: 12px !important;
3646
- vertical-align: middle;
3647
- }
3648
- .sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_medium_button {
3649
- padding: 9px 10px 7px 10px !important;
3650
- }
3651
- .sfsi_plus_responsive_icons_count.sfsi_plus_medium_button h3 {
3652
- font-size: 21px !important;
3653
- vertical-align: top;
3654
- line-height: 8px !important;
3655
- margin: 0px 0px 12px 0px !important;
3656
- font-weight: 900;
3657
- padding: 0px;
3658
- }
3659
- .sfsi_plus_esponsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button h3 {
3660
- margin: 0px 0px 15px 0px !important;
3661
- }
3662
- .sfsi_plus_responsive_icons_count.sfsi_plus_large_button h3 {
3663
- font-size: 26px !important;
3664
- vertical-align: top;
3665
- line-height: 6px !important;
3666
- }
3667
-
3668
- .sfsi_plus_responsive_icons_count h3 {
3669
- font-family: 'sans-serif' !important;
3670
- font-weight: 900;
3671
- padding: 0px;
3672
- }
3673
-
3674
- .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
3675
- font-size: 20px !important;
3676
- display: inline-block;
3677
- vertical-align: middle;
3678
- }
3679
- .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
3680
- margin: 0px !important;
3681
- }
3682
- .sfsi_plus_responsive_icons_count h3 {
3683
- font-family: 'sans-serif' !important;
3684
- font-weight: 900;
3685
- line-height: 0px !important;
3686
- padding: 0px;
3687
- margin: 0px;
3688
- }
3689
- .sfsi_plus_responsive_icons a, .sfsi_plus_responsive_icons h3, .sfsi_plus_responsive_icons h6 {
3690
- text-decoration: none!important;
3691
- border: 0!important;
3692
- }
3693
- .sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
3694
- padding: 7px 6px !important;
3695
- margin-top: 2px;
3696
- }
3697
- .sfsi_plus_responsive_icons_count.sfsi_plus_large_button h3 {
3698
- margin-top:0!important;
3699
- margin-bottom:8px!important;
3700
- }
3701
- .sfsi_plus_responsive_icons_count.sfsi_plus_large_button h6 {
3702
- font-size:13px!important;
3703
- }
3704
-
3705
- .sfsi_plus_responsive_icons_count {
3706
- vertical-align: top;
3707
- }
3708
- .sfsi_plus_responsive_icons_count {
3709
- float: left;
3710
- }
3711
- .sfsi_plus_small_button {
3712
- line-height: 0px;
3713
- height: unset;
3714
- }
3715
- .sfsi_plus_responsive_icons a, .sfsi_plus_responsive_icons h3, .sfsi_plus_responsive_icons h6 {
3716
- text-decoration: none!important;
3717
- border: 0!important;
3718
- }
3719
- .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
3720
- font-size: 20px !important;
3721
- display: inline-block;
3722
- vertical-align: middle;
3723
- margin: 0px !important;
3724
- }
3725
-
3726
- .sfsi_plus_responsive_icons a, .sfsi_plus_responsive_icons h3, .sfsi_plus_responsive_icons h6 {
3727
- text-decoration: none!important;
3728
- font-family: helveticaregular!important;
3729
- border: 0!important;
3730
- }
3731
- .sfsi_plus_responsive_icons_count h3 {
3732
- line-height: 0px !important;
3733
- padding: 0px;
3734
- }
3735
- .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h6 {
3736
- display: inline-block;
3737
- font-size: 12px !important;
3738
- /*vertical-align: middle;*/
3739
- margin: 0px !important;
3740
- line-height: initial !important;
3741
- padding: 0;
3742
- margin: 0;
3743
- }
3744
- .sfsi_plus_responsive_icons_count h6{
3745
- margin:0!important;
3746
- }
3747
- .sfsi_plus_responsive_icons_count h6 {
3748
- padding: 0px;
3749
- }
3750
- .sfsi_plus_responsive_icons a, .sfsi_plus_responsive_icons h3, .sfsi_plus_responsive_icons h6{
3751
- text-decoration: none!important;
3752
- font-family: helveticaregular!important;
3753
- border: 0!important;
3754
- }
3755
- .sfsi_plus_responsive_icons_count.sfsi_plus_medium_button h6{
3756
- font-size: 11px !important;
3757
- line-height: 0px !important;
3758
- margin: 0px 0px 0px 0px !important;
3759
- }
3760
-
3761
-
3762
- .sfsi_plus.sfsi_plus_widget_main_container .sfsi_plus_widget_sub_container{
3763
- float: none;
3764
- }
3765
-
3766
- .export_selections{
3767
- clear: both;
3768
- color: #afafaf;
3769
- font-size: 23px;
3770
- display: flex;
3771
- height: 0px;
3772
- position: absolute;
3773
- top: 13px;
3774
- right: 0;
3775
- }
3776
-
3777
- .save_export{
3778
- clear: both;
3779
- position: relative;
3780
- }
3781
-
3782
- .export{
3783
- padding-right: 11px;
3784
- text-decoration: underline;
3785
- cursor: pointer;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3786
  }
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'),
23
+ url(fonts/helveticaneue-light.woff) format('woff'),
24
+ url(fonts/helveticaneue-light.ttf) format('truetype'),
25
+ url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
26
+ font-weight: 400;
27
+ font-style: normal;
28
+ }
29
+
30
+ body {
31
+ margin: 0;
32
+ padding: 0;
33
+ }
34
+
35
+ .clear {
36
+ clear: both;
37
+ }
38
+
39
+ .space {
40
+ clear: both;
41
+ padding: 30px 0 0;
42
+ width: 100%;
43
+ float: left;
44
+ }
45
+
46
+ .sfsi_mainContainer {
47
+ font-family: helveticaregular;
48
+ }
49
+
50
+ .sfsi_mainContainer h1,
51
+ .sfsi_mainContainer h2,
52
+ .sfsi_mainContainer h3,
53
+ .sfsi_mainContainer h4,
54
+ .sfsi_mainContainer h5,
55
+ .sfsi_mainContainer h6,
56
+ .sfsi_mainContainer li,
57
+ .sfsi_mainContainer p,
58
+ .sfsi_mainContainer ul {
59
+ margin: 0;
60
+ padding: 0;
61
+ font-weight: 400;
62
+ }
63
+
64
+ .sfsi_mainContainer img {
65
+ border: 0;
66
+ }
67
+
68
+ .main_contant p,
69
+ .ui-accordion .ui-accordion-header {
70
+ font-family: 'helveticaneue-light';
71
+ }
72
+
73
+ .sfsi_mainContainer input,
74
+ .sfsi_mainContainer select {
75
+ outline: 0;
76
+ }
77
+
78
+ .wapper {
79
+ padding: 48px 106px 40px 20px;
80
+ display: block;
81
+ background: #f1f1f1;
82
+ }
83
+
84
+ .main_contant {
85
+ margin: 0;
86
+ padding: 0;
87
+ }
88
+
89
+ .main_contant h1 {
90
+ padding: 0;
91
+ color: #1a1d20;
92
+ font-family: helveticabold;
93
+ font-size: 28px;
94
+ }
95
+
96
+ .main_contant p {
97
+ padding: 0;
98
+ color: #414951;
99
+ font-size: 17px;
100
+ line-height: 26px;
101
+ }
102
+
103
+ .main_contant p span {
104
+ text-decoration: underline;
105
+ font-family: helveticabold;
106
+ }
107
+
108
+ .like_txt {
109
+ margin: 30px 0 0;
110
+ padding: 0;
111
+ color: #12a252;
112
+ font-family: helveticaregular;
113
+ font-size: 20px;
114
+ line-height: 20px;
115
+ text-align: center;
116
+ }
117
+
118
+ .like_txt a {
119
+ color: #12a252;
120
+ }
121
+
122
+ #accordion p,
123
+ #accordion1 p {
124
+ color: #5a6570;
125
+ text-align: left;
126
+ font-family: 'helveticaneue-light';
127
+ font-size: 17px;
128
+ line-height: 26px;
129
+ padding-top: 19px;
130
+ }
131
+
132
+ .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .cstmdisplaysharingtxt {
133
+ float: left;
134
+ }
135
+
136
+ #accordion p:first-child,
137
+ #accordion1 p:first-child {
138
+ padding-top: 0;
139
+ }
140
+
141
+ #accordion h4,
142
+ #accordion1 h4 {
143
+ margin: 0;
144
+ padding: 30px 0 0;
145
+ color: #414951;
146
+ font-size: 20px;
147
+ line-height: 22px;
148
+ font-family: helveticaregular;
149
+ }
150
+
151
+ #accordion h4:first-child,
152
+ #accordion1 h4:first-child {
153
+ padding-top: 0;
154
+ }
155
+
156
+ #accordion .tab8 h4:first-child,
157
+ #accordion1 h4:first-child {
158
+ margin-left: 0 !important
159
+ }
160
+
161
+ .tab1,
162
+ .tab2,
163
+ .tab3,
164
+ .tab4,
165
+ .tab5,
166
+ .tab6,
167
+ .tab7 {
168
+ color: #5a6570;
169
+ text-align: left;
170
+ font-family: helveticaregular;
171
+ font-size: 18px;
172
+ line-height: 26px;
173
+ }
174
+
175
+ .tab4 ul.like_icon {
176
+ margin: 0;
177
+ padding: 20px 0 0;
178
+ list-style: none;
179
+ text-align: center;
180
+ }
181
+
182
+ .tab4 ul.like_icon li {
183
+ margin: 0;
184
+ padding: 0;
185
+ list-style: none;
186
+ display: inline-block;
187
+ }
188
+
189
+ .tab4 ul.like_icon li span {
190
+ margin: 0;
191
+ width: 54px;
192
+ display: block;
193
+ background: url(../images/count_bg.png) no-repeat;
194
+ height: 24px;
195
+ overflow: hidden;
196
+ padding: 10px 2px 2px;
197
+ font-size: 17px;
198
+ text-align: center;
199
+ line-height: 24px;
200
+ color: #5a6570;
201
+ }
202
+
203
+ .tab4 ul.like_icon li a {
204
+ color: #5a6570;
205
+ text-decoration: none;
206
+ }
207
+
208
+ .tab4 ul.enough_waffling {
209
+ margin: 0;
210
+ padding: 25px 0 27px;
211
+ list-style: none;
212
+ text-align: center;
213
+ }
214
+
215
+ .tab4 ul.enough_waffling li {
216
+ margin: 0 22px;
217
+ padding: 0;
218
+ list-style: none;
219
+ display: inline-block;
220
+ }
221
+
222
+ .tab4 ul.enough_waffling li span {
223
+ float: left;
224
+ }
225
+
226
+ .tab4 ul.enough_waffling li label {
227
+ margin: 0 0 0 20px;
228
+ float: left;
229
+ font-family: helveticaregular;
230
+ font-size: 18px;
231
+ font-weight: 400;
232
+ text-align: center;
233
+ line-height: 38px;
234
+ color: #5a6570;
235
+ }
236
+
237
+ .sfsi_mainContainer .checkbox {
238
+ width: 31px;
239
+ height: 31px;
240
+ background: url(../images/check_bg.jpg) no-repeat;
241
+ display: inherit;
242
+ }
243
+
244
+ .tab8 .social_icon_like1 li span.checkbox {
245
+ width: 31px;
246
+ height: 31px;
247
+ background: url(../images/check_bg.jpg) no-repeat;
248
+ display: inherit;
249
+ }
250
+
251
+ .tab8 .social_icon_like1 li a {
252
+ float: left;
253
+ }
254
+
255
+ .sfsi_mainContainer .radio {
256
+ width: 40px;
257
+ height: 40px;
258
+ background: url(../images/radio_bg.png) no-repeat;
259
+ display: inherit;
260
+ }
261
+
262
+ .sfsi_mainContainer .select {
263
+ width: 127px;
264
+ height: 47px;
265
+ font-size: 17px;
266
+ background: url(../images/select_bg.jpg) no-repeat;
267
+ display: block;
268
+ padding-left: 16px;
269
+ line-height: 49px;
270
+ }
271
+
272
+ .sfsi_mainContainer .line {
273
+ background: #eaebee;
274
+ height: 1px;
275
+ font-size: 0;
276
+ margin: 15px 0 0;
277
+ clear: both;
278
+ width: 100%;
279
+ float: left;
280
+ }
281
+
282
+ .sfsiplus_specify_counts {
283
+ display: block;
284
+ margin-top: 15px;
285
+ padding-top: 15px;
286
+ clear: both;
287
+ width: 100%;
288
+ float: left;
289
+ border-top: 1px solid #eaebee;
290
+ }
291
+
292
+ .sfsiplus_specify_counts .radio_section {
293
+ width: 30px;
294
+ float: left;
295
+ margin: 12px 10px 0 0;
296
+ }
297
+
298
+ .sfsiplus_specify_counts .social_icon_like {
299
+ width: 54px;
300
+ float: left;
301
+ margin: 0 15px 0 0;
302
+ }
303
+
304
+ .sfsiplus_specify_counts .social_icon_like ul {
305
+ margin: 0;
306
+ padding: 0 !important;
307
+ list-style: none;
308
+ text-align: center;
309
+ }
310
+
311
+ .sfsiplus_specify_counts .social_icon_like li {
312
+ margin: 0;
313
+ padding: 0;
314
+ list-style: none;
315
+ display: inline-block;
316
+ }
317
+
318
+ .sfsiplus_specify_counts .social_icon_like li span {
319
+ margin: 0;
320
+ width: 54px;
321
+ display: block;
322
+ background: url(../images/count_bg.jpg) no-repeat;
323
+ height: 24px;
324
+ overflow: hidden;
325
+ padding: 10px 2px 2px;
326
+ font-family: helveticaregular;
327
+ font-size: 16px;
328
+ text-align: center;
329
+ line-height: 24px;
330
+ color: #5a6570;
331
+ }
332
+
333
+ .sfsiplus_specify_counts .social_icon_like li a {
334
+ color: #5a6570;
335
+ text-decoration: none;
336
+ }
337
+
338
+ .sfsiplus_specify_counts .social_icon_like img {
339
+ width: 54px;
340
+ }
341
+
342
+ .sfsiplus_specify_counts .listing {
343
+ width: 88%;
344
+ margin-top: -5px;
345
+ display: inherit;
346
+ float: left;
347
+ }
348
+
349
+ .sfsiplus_specify_counts .listing ul {
350
+ margin: 0;
351
+ padding: 0;
352
+ list-style: none;
353
+ text-align: left;
354
+ }
355
+
356
+ .sfsiplus_specify_counts .listing li {
357
+ margin: 15px 0 0;
358
+ padding: 0;
359
+ list-style: none;
360
+ clear: both;
361
+ line-height: 39px;
362
+ font-size: 17px;
363
+ }
364
+
365
+ .sfsiplus_specify_counts .listing li span {
366
+ float: left;
367
+ margin-right: 20px;
368
+ }
369
+
370
+ .sfsiplus_specify_counts .listing li .input {
371
+ background: #e5e5e5;
372
+ box-shadow: 2px 2px 3px #dcdcdc inset;
373
+ border: 0;
374
+ padding: 10px;
375
+ margin-left: 25px;
376
+ }
377
+
378
+ .sfsiplus_specify_counts .listing li .input_facebook {
379
+ width: 288px;
380
+ background: #e5e5e5;
381
+ box-shadow: 2px 2px 3px #dcdcdc inset;
382
+ border: 0;
383
+ padding: 10px;
384
+ margin-left: 16px;
385
+ }
386
+
387
+ .save_button {
388
+ width: 450px;
389
+ padding-top: 30px !important;
390
+ clear: both;
391
+ margin: auto;
392
+ }
393
+
394
+ .save_button a {
395
+ background: #12a252;
396
+ text-align: center;
397
+ font-size: 23px;
398
+ color: #FFF !important;
399
+ display: block;
400
+ padding: 11px 0;
401
+ text-decoration: none;
402
+ }
403
+
404
+ .save_button a:hover {
405
+ background: #079345
406
+ }
407
+
408
+ .tab5 ul.plus_share_icon_order {
409
+ margin: 0;
410
+ padding: 0;
411
+ list-style: none;
412
+ text-align: left;
413
+ }
414
+
415
+ .tab5 ul.plus_share_icon_order li {
416
+ margin: 22px 6px 0 0;
417
+ padding: 0;
418
+ list-style: none;
419
+ float: left;
420
+ line-height: 37px;
421
+ }
422
+
423
+ .tab5 ul.plus_share_icon_order li:last-child {
424
+ margin: 22px 0 0 3px;
425
+ }
426
+
427
+ .tab5 .row {
428
+ border-top: 1px solid #eaebee;
429
+ margin-top: 25px;
430
+ padding-top: 15px;
431
+ clear: both;
432
+ display: block;
433
+ width: 100%;
434
+ float: left;
435
+ font-family: helveticaregular;
436
+ line-height: 42px;
437
+ }
438
+
439
+ .tab5 .icons_size {
440
+ position: relative;
441
+ }
442
+
443
+ .tab5 .icons_size span {
444
+ margin-right: 18px;
445
+ display: block;
446
+ float: left;
447
+ font-size: 18px;
448
+ font-weight: 400;
449
+ line-height: 46px;
450
+ }
451
+
452
+ .tab5 .icons_size span.last {
453
+ margin-left: 55px;
454
+ }
455
+
456
+ .tab5 .icons_size input {
457
+ width: 73px;
458
+ background: #e5e5e5;
459
+ box-shadow: 2px 2px 3px #dcdcdc inset;
460
+ border: 0;
461
+ padding: 13px 13px 12px;
462
+ margin-right: 18px;
463
+ float: left;
464
+ display: block;
465
+ }
466
+
467
+ .tab5 .icons_size select.styled {
468
+ position: absolute;
469
+ left: 0;
470
+ width: 135px;
471
+ height: 46px;
472
+ line-height: 46px;
473
+ }
474
+
475
+ .tab5 .icons_size .field {
476
+ position: relative;
477
+ float: left;
478
+ display: block;
479
+ margin-right: 20px;
480
+ }
481
+
482
+ .tab5 .icons_size ins {
483
+ margin-right: 25px;
484
+ float: left;
485
+ font-size: 17px;
486
+ font-weight: 400;
487
+ text-decoration: none;
488
+ }
489
+
490
+ .tab5 .icons_size ins.leave_empty {
491
+ line-height: 23px;
492
+ }
493
+
494
+ .tab5 .icons_size {
495
+ padding-top: 15px;
496
+ }
497
+
498
+ .tab5 ul.enough_waffling {
499
+ margin: -5px 0 0;
500
+ padding: 0;
501
+ list-style: none;
502
+ text-align: center;
503
+ }
504
+
505
+ .tab5 .new_wind .sfsiplus_row_onl ul.enough_waffling {
506
+ margin: 20px 0 0 0;
507
+ padding: 0;
508
+ list-style: none;
509
+ height: 38px;
510
+ text-align: left;
511
+ }
512
+
513
+ .tab5 ul.enough_waffling li {
514
+ margin: 0 22px;
515
+ padding: 0;
516
+ list-style: none;
517
+ display: inline-block;
518
+ }
519
+
520
+ .tab5 ul.enough_waffling li span {
521
+ float: left;
522
+ }
523
+
524
+ .tab5 ul.enough_waffling li label {
525
+ margin: 0 0 0 20px;
526
+ float: left;
527
+ font-family: helveticaregular;
528
+ font-size: 18px;
529
+ font-weight: 400;
530
+ text-align: center;
531
+ line-height: 38px;
532
+ color: #5a6570;
533
+ }
534
+
535
+ .sticking p {
536
+ float: left;
537
+ font-size: 18px !important;
538
+ }
539
+
540
+ .sticking p.list {
541
+ width: 168px;
542
+ }
543
+
544
+ .sticking p.link {
545
+ margin: 3px 0 0 12px;
546
+ padding: 0 !important;
547
+ float: left;
548
+ }
549
+
550
+ .sticking .float {
551
+ margin-left: 188px;
552
+ margin-top: 3px;
553
+ float: left;
554
+ font-size: 17px;
555
+ }
556
+
557
+ .sticking ul {
558
+ margin: 0;
559
+ padding: 30px 0 0;
560
+ list-style: none;
561
+ float: left;
562
+ }
563
+
564
+ .sticking a {
565
+ color: #a4a9ad;
566
+ text-decoration: none;
567
+ }
568
+
569
+ .sticking .field {
570
+ position: relative;
571
+ float: left;
572
+ display: block;
573
+ margin-left: 20px;
574
+ }
575
+
576
+ .sticking .field .select {
577
+ width: 206px;
578
+ height: 47px;
579
+ background: url(../images/select_bg1.jpg) no-repeat;
580
+ display: block;
581
+ padding-left: 10px;
582
+ }
583
+
584
+ .sticking .field select.styled {
585
+ position: absolute;
586
+ left: 0;
587
+ top: 0;
588
+ width: 211px;
589
+ line-height: 46px;
590
+ height: 46px;
591
+ }
592
+
593
+ .mouseover_field {
594
+ width: 455px;
595
+ float: left;
596
+ font-size: 18px;
597
+ margin-top: 10px;
598
+ }
599
+
600
+ .mouseover_field label {
601
+ width: 125px;
602
+ float: left;
603
+ }
604
+
605
+ .mouseover_field input {
606
+ width: 256px;
607
+ float: left;
608
+ background: #e5e5e5;
609
+ box-shadow: 2px 2px 3px #dcdcdc inset;
610
+ border: 0;
611
+ padding: 10px;
612
+ }
613
+
614
+ .tab6 .social_icon_like1 {
615
+ width: 100%;
616
+ float: left;
617
+ margin: 0;
618
+ padding: 35px 0 0;
619
+ text-align: center;
620
+ }
621
+
622
+ .tab6 .social_icon_like1 ul {
623
+ margin: 0;
624
+ padding: 0;
625
+ list-style: none;
626
+ text-align: center;
627
+ }
628
+
629
+ .tab6 .social_icon_like1 li {
630
+ margin: 0 20px;
631
+ padding: 0;
632
+ width: auto;
633
+ list-style: none;
634
+ display: inline-block;
635
+ }
636
+
637
+ .tab6 .social_icon_like1 li span,
638
+ .tab8 .social_icon_like1 li span {
639
+ margin: 0;
640
+ width: 44px;
641
+ display: block;
642
+ background: url(../images/count_bg1.png) no-repeat;
643
+ height: 22px;
644
+ overflow: hidden;
645
+ padding: 2px 2px 2px 10px;
646
+ font-family: helveticaregular;
647
+ font-size: 15px;
648
+ text-align: center;
649
+ line-height: 20px;
650
+ color: #5a6570;
651
+ float: left;
652
+ }
653
+
654
+ .tab6 .social_icon_like1 li img {
655
+ float: left;
656
+ margin-right: 5px;
657
+ display: block;
658
+ }
659
+
660
+ .tab6 .social_icon_like1 li a {
661
+ color: #5a6570;
662
+ text-decoration: none;
663
+ display: block;
664
+ }
665
+
666
+ .tab6 ul.usually {
667
+ margin: 28px 0 6px 60px;
668
+ padding: 0;
669
+ list-style: none;
670
+ }
671
+
672
+ .tab6 ul.usually li {
673
+ margin: 0;
674
+ padding: 0;
675
+ width: auto;
676
+ list-style: none;
677
+ text-align: left;
678
+ font-size: 17px;
679
+ }
680
+
681
+ .tab6 ul.enough_waffling {
682
+ margin: 25px 0 0;
683
+ padding: 0;
684
+ list-style: none;
685
+ text-align: center;
686
+ }
687
+
688
+ .tab6 ul.enough_waffling li {
689
+ margin: 0 22px;
690
+ padding: 0;
691
+ list-style: none;
692
+ display: inline-block;
693
+ }
694
+
695
+ .tab6 ul.enough_waffling li span {
696
+ float: left;
697
+ }
698
+
699
+ .tab6 ul.enough_waffling li label {
700
+ margin: 0 0 0 20px;
701
+ float: left;
702
+ font-family: helveticaregular;
703
+ font-size: 18px;
704
+ font-weight: 400;
705
+ text-align: center;
706
+ line-height: 38px;
707
+ color: #5a6570;
708
+ }
709
+
710
+ .tab6 .row {
711
+ border-top: 1px solid #eaebee;
712
+ margin-top: 25px;
713
+ padding-top: 15px;
714
+ clear: both;
715
+ display: block;
716
+ width: 100%;
717
+ float: left;
718
+ font-family: helveticaregular;
719
+ line-height: 42px;
720
+ }
721
+
722
+ .tab6 .options {
723
+ margin-top: 25px;
724
+ clear: both;
725
+ width: 100%;
726
+ float: left;
727
+ }
728
+
729
+ .tab6 .options label {
730
+ width: 345px;
731
+ float: left;
732
+ font-size: 18px;
733
+ font-family: helveticaregular;
734
+ color: #5a6570;
735
+ line-height: 46px;
736
+ }
737
+
738
+ .tab6 .options label.first {
739
+ font-family: helveticaregular;
740
+ font-size: 18px;
741
+ }
742
+
743
+ .tab6 .options input {
744
+ width: 308px;
745
+ float: left;
746
+ background: #e5e5e5;
747
+ box-shadow: 2px 2px 3px #dcdcdc inset;
748
+ border: 0;
749
+ padding: 10px;
750
+ }
751
+
752
+ .tab6 .options .field {
753
+ width: 223px;
754
+ float: left;
755
+ position: relative;
756
+ }
757
+
758
+ .tab6 .options .field .select {
759
+ width: 207px;
760
+ background: url(../images/select_bg1.jpg) no-repeat;
761
+ display: block;
762
+ padding-left: 17px;
763
+ font-family: helveticaregular;
764
+ }
765
+
766
+ .tab6 .options .field select.styled {
767
+ position: absolute;
768
+ left: 0;
769
+ top: 0;
770
+ width: 213px;
771
+ line-height: 46px;
772
+ height: 46px;
773
+ }
774
+
775
+ .tab7 h3 {
776
+ margin: 14px 0 6px;
777
+ padding: 0;
778
+ color: #a7a9ac;
779
+ font-family: helveticaregular;
780
+ font-size: 20px;
781
+ text-align: left;
782
+ }
783
+
784
+ .tab7 .close {
785
+ position: absolute;
786
+ right: 18px;
787
+ top: 18px;
788
+ }
789
+
790
+ .tab7 .text_options {
791
+ width: 400px;
792
+ float: left;
793
+ }
794
+
795
+ .tab7 .text_options.layout {
796
+ margin-left: 35px;
797
+ }
798
+
799
+ .tab7 .sfsiplus_row_tab {
800
+ margin-top: 10px;
801
+ width: 100%;
802
+ float: left;
803
+ }
804
+
805
+ .tab7 .text_options label {
806
+ width: 121px;
807
+ float: left;
808
+ line-height: 46px;
809
+ font-size: 18px;
810
+ }
811
+
812
+ .tab7 .text_options.layout label {
813
+ line-height: 20px;
814
+ font-size: 18px;
815
+ }
816
+
817
+ .tab7 .text_options.layout label.border {
818
+ line-height: 46px;
819
+ }
820
+
821
+ .tab7 .text_options input {
822
+ width: 274px;
823
+ float: left;
824
+ background: #e5e5e5;
825
+ box-shadow: 2px 2px 3px #dcdcdc inset;
826
+ border: 0;
827
+ padding: 13px 10px;
828
+ font-size: 17px;
829
+ color: #5a6570;
830
+ }
831
+
832
+ .tab7 .text_options input.small {
833
+ width: 138px;
834
+ }
835
+
836
+ .tab7 .text_options .field {
837
+ width: 223px;
838
+ float: left;
839
+ position: relative;
840
+ }
841
+
842
+ .tab7 .text_options .field .select {
843
+ width: 183px;
844
+ padding-right: 21px;
845
+ height: 47px;
846
+ background: url(../images/select_bg1.jpg) no-repeat;
847
+ display: block;
848
+ padding-left: 10px;
849
+ line-height: 46px;
850
+ font-size: 17px;
851
+ color: #414951;
852
+ }
853
+
854
+ .tab7 .text_options .field select.styled {
855
+ position: absolute;
856
+ left: 0;
857
+ top: 0;
858
+ width: 213px;
859
+ line-height: 46px;
860
+ height: 46px;
861
+ }
862
+
863
+ .tab7 .color_box {
864
+ width: 40px;
865
+ height: 34px;
866
+ border: 3px solid #fff;
867
+ box-shadow: 1px 2px 2px #ccc;
868
+ float: left;
869
+ position: relative;
870
+ margin-left: 13px;
871
+ }
872
+
873
+ .tab7 .color_box1 {
874
+ width: 100%;
875
+ height: 34px;
876
+ background: #5a6570;
877
+ box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
878
+ }
879
+
880
+ .tab7 .corner {
881
+ width: 10px;
882
+ height: 10px;
883
+ background: #fff;
884
+ position: absolute;
885
+ right: 0;
886
+ bottom: 0;
887
+ }
888
+
889
+ .tab7 ul.border_shadow {
890
+ margin: 0;
891
+ padding: 5px 0 0;
892
+ list-style: none;
893
+ float: left;
894
+ width: 257px;
895
+ }
896
+
897
+ .tab7 ul.border_shadow li {
898
+ margin: 0;
899
+ padding: 0 0 0 40px;
900
+ list-style: none;
901
+ float: left;
902
+ }
903
+
904
+ .tab7 ul.border_shadow li:first-child {
905
+ padding: 0;
906
+ }
907
+
908
+ .tab7 ul.border_shadow li span {
909
+ float: left;
910
+ }
911
+
912
+ .tab7 ul.border_shadow li label {
913
+ float: left;
914
+ width: auto;
915
+ font-family: helveticaregular;
916
+ font-size: 18px;
917
+ font-weight: 400;
918
+ text-align: center;
919
+ line-height: 40px !important;
920
+ color: #5a6570;
921
+ padding: 0 0 0 20px;
922
+ }
923
+
924
+ .tab7 .row {
925
+ border-top: 1px solid #eaebee;
926
+ margin-top: 25px;
927
+ padding-top: 15px;
928
+ clear: both;
929
+ display: block;
930
+ width: 100%;
931
+ float: left;
932
+ font-family: helveticaregular;
933
+ line-height: 42px;
934
+ }
935
+
936
+ .tab7 .pop_up_show {
937
+ width: 100%;
938
+ float: left;
939
+ margin-top: 20px;
940
+ }
941
+
942
+ .tab7 .pop_up_show span {
943
+ float: left;
944
+ }
945
+
946
+ .tab7 .pop_up_show label {
947
+ float: left;
948
+ width: auto;
949
+ font-size: 18px;
950
+ font-weight: 400;
951
+ text-align: center;
952
+ line-height: 38px !important;
953
+ color: #5a6570;
954
+ padding: 0 0 0 20px;
955
+ }
956
+
957
+ .tab7 .pop_up_show input.add {
958
+ width: 257px;
959
+ float: left;
960
+ background: #e5e5e5;
961
+ box-shadow: 2px 2px 3px #dcdcdc inset;
962
+ border: 0;
963
+ padding: 10px;
964
+ margin-left: 40px;
965
+ }
966
+
967
+ .tab7 .pop_up_show input.seconds {
968
+ width: 60px;
969
+ background: #e5e5e5;
970
+ box-shadow: 2px 2px 3px #dcdcdc inset;
971
+ border: 0;
972
+ padding: 10px;
973
+ margin: 0 7px;
974
+ }
975
+
976
+ .tab7 .pop_up_show a {
977
+ text-decoration: underline;
978
+ color: #a4a9ad;
979
+ font-size: 16px;
980
+ margin-left: 20px;
981
+ }
982
+
983
+ .tab7 .pop_up_show .field {
984
+ width: 135px;
985
+ float: left;
986
+ position: relative;
987
+ margin-left: 20px;
988
+ font-size: 17px;
989
+ font-family: helveticaregular;
990
+ }
991
+
992
+ .tab7 .pop_up_show .field .select {
993
+ width: 127px;
994
+ height: 48px;
995
+ background: url(../images/select_bg.jpg) no-repeat;
996
+ display: block;
997
+ padding-left: 10px;
998
+ line-height: 46px;
999
+ font-size: 16px;
1000
+ color: #5a6570;
1001
+ }
1002
+
1003
+ .tab7 .pop_up_show .field select.styled {
1004
+ position: absolute;
1005
+ left: 0;
1006
+ top: 0;
1007
+ width: 135px;
1008
+ line-height: 46px;
1009
+ height: 46px;
1010
+ }
1011
+
1012
+ .pop_up_box {
1013
+ width: 474px;
1014
+ background: #FFF;
1015
+ box-shadow: 0 0 5px 3px #d8d8d8;
1016
+ margin: 200px auto;
1017
+ padding: 20px 25px 0;
1018
+ font-family: helveticaregular;
1019
+ color: #5a6570;
1020
+ min-height: 250px;
1021
+ position: relative;
1022
+ }
1023
+
1024
+ .pop_up_box h4,
1025
+ .pop_up_box_ex h4 {
1026
+ font-size: 20px;
1027
+ color: #5a6570;
1028
+ text-align: center;
1029
+ margin: 0;
1030
+ padding: 0;
1031
+ line-height: 22px;
1032
+ }
1033
+
1034
+ .pop_up_box p,
1035
+ .pop_up_box_ex p {
1036
+ font-size: 17px;
1037
+ line-height: 28px;
1038
+ color: #5a6570;
1039
+ text-align: left;
1040
+ margin: 0;
1041
+ padding: 25px 0 0;
1042
+ font-family: helveticaregular;
1043
+ }
1044
+
1045
+ .sfsi_popupcntnr {
1046
+ float: left;
1047
+ width: 100%
1048
+ }
1049
+
1050
+ .sfsi_popupcntnr>h3 {
1051
+ color: #000;
1052
+ float: left;
1053
+ font-weight: 700;
1054
+ margin-bottom: 5px;
1055
+ width: 100%
1056
+ }
1057
+
1058
+ ul.flwstep {
1059
+ float: left;
1060
+ width: 100%
1061
+ }
1062
+
1063
+ ul.flwstep>li {
1064
+ color: #000;
1065
+ font-size: 16px;
1066
+ margin: 5px;
1067
+ }
1068
+
1069
+ .upldbtn {
1070
+ float: left;
1071
+ text-align: center;
1072
+ width: 100%
1073
+ }
1074
+
1075
+ .upload_butt {
1076
+ background-color: #12a252;
1077
+ border: none;
1078
+ color: #fff;
1079
+ font-weight: 700;
1080
+ margin-top: 10px;
1081
+ padding: 5px 27px;
1082
+ width: auto;
1083
+ cursor: pointer;
1084
+ font-size: 15px !important;
1085
+
1086
+ }
1087
+
1088
+ @media (min-width: 295px) and (max-width: 558px) {
1089
+ .sfsi_premium_wechat_follow_overlay .upload_butt {
1090
+ padding: 5px;
1091
+ }
1092
+ }
1093
+
1094
+ @media (max-width: 295px) {
1095
+ .sfsi_premium_upload_butt_container {
1096
+ width: 100% !important;
1097
+ padding-bottom: 5px !important;
1098
+ }
1099
+ }
1100
+
1101
+ .pop_up_box .button {
1102
+ background: #12a252;
1103
+ font-size: 22px;
1104
+ line-height: 24px;
1105
+ color: #5a6570;
1106
+ text-align: center;
1107
+ min-height: 80px;
1108
+ margin-top: 32px;
1109
+ box-shadow: none;
1110
+ word-wrap: break-word;
1111
+ white-space: normal;
1112
+ }
1113
+
1114
+ .pop_up_box .button:hover {
1115
+ box-shadow: none !important;
1116
+ }
1117
+
1118
+ .pop_up_box .button a.activate {
1119
+ padding: 0px 0;
1120
+ }
1121
+
1122
+ .pop_up_box a,
1123
+ .pop_up_box_ex a {
1124
+ color: #a4a9ad;
1125
+ font-size: 20px;
1126
+ text-decoration: none;
1127
+ text-align: center;
1128
+ display: inline-block;
1129
+ margin-top: 20px;
1130
+ width: 100%;
1131
+ }
1132
+
1133
+ .pop_up_box .upload {
1134
+ width: 100%;
1135
+ float: left;
1136
+ text-align: left;
1137
+ margin-top: 15px;
1138
+ height: 46px;
1139
+ }
1140
+
1141
+ .pop_up_box .upload label {
1142
+ width: 135px;
1143
+ float: left;
1144
+ line-height: 45px;
1145
+ font-size: 18px;
1146
+ font-family: helveticaregular;
1147
+ text-align: left;
1148
+ }
1149
+
1150
+ .pop_up_box .upload input[type=text] {
1151
+ width: 248px;
1152
+ float: left;
1153
+ background: #e5e5e5;
1154
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1155
+ border: 0;
1156
+ padding: 0 10px;
1157
+ font-size: 16px;
1158
+ height: 44px;
1159
+ text-align: left;
1160
+ color: #5a6570;
1161
+ font-family: helveticaregular;
1162
+ }
1163
+
1164
+ .pop_up_box .upload input.upload_butt {
1165
+ width: 100px;
1166
+ background: #12a252;
1167
+ box-shadow: 0 0 0;
1168
+ border: 0;
1169
+ text-align: center;
1170
+ font-size: 18px;
1171
+ color: #fff;
1172
+ font-family: helveticaregular;
1173
+ height: 45px;
1174
+ right: 32px;
1175
+ top: 71px;
1176
+ position: absolute;
1177
+ }
1178
+
1179
+ .pop_up_box .upload a {
1180
+ color: #12a252;
1181
+ font-size: 18px;
1182
+ text-decoration: underline;
1183
+ font-family: helveticaregular;
1184
+ margin: 0 0 16px 140px;
1185
+ }
1186
+
1187
+ .pop_up_box a:hover,
1188
+ .pop_up_box_ex a:hover {
1189
+ color: #a4a9ad;
1190
+ }
1191
+
1192
+ .tab1 ul.plus_icn_listing {
1193
+ list-style: none;
1194
+ overflow: hidden;
1195
+ border-top: #e7e8eb solid 1px;
1196
+ margin: 35px 0 0;
1197
+ }
1198
+
1199
+ .tab1 ul.plus_icn_listing li {
1200
+ border-bottom: #eaebed solid 1px;
1201
+ padding: 11px 0 11px 8px;
1202
+ float: left;
1203
+ width: 100%
1204
+ }
1205
+
1206
+ ul.plus_icn_listing li .tb_4_ck {
1207
+ float: left;
1208
+ margin: 10px 0 0;
1209
+ }
1210
+
1211
+ .upload_pop_up .upload_butt {
1212
+ line-height: 27px;
1213
+ margin-left: 6px
1214
+ }
1215
+
1216
+ ul.sfsiplus_icn_listing8 li .tb_4_ck {
1217
+ float: left;
1218
+ margin: 10px 0 0;
1219
+ }
1220
+
1221
+ .tab8 .cstmdsplyulwpr .radio_section.tb_4_ck {
1222
+ margin-right: 10px !important;
1223
+ }
1224
+
1225
+ .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplsub {
1226
+ margin-top: 3px;
1227
+ }
1228
+
1229
+ .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdspllke {
1230
+ margin-top: 3px;
1231
+ }
1232
+
1233
+ .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplggpls {
1234
+ margin-top: 3px;
1235
+ }
1236
+
1237
+ .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdspltwtr {
1238
+ margin-top: 4px;
1239
+ }
1240
+
1241
+ .tab8 .social_icon_like1.cstmdsplyulwpr .cstmdsplshr {
1242
+ margin-top: 3px;
1243
+ }
1244
+
1245
+ .tab2 {
1246
+ overflow: hidden;
1247
+ }
1248
+
1249
+ .tab2 .rss_url_row {
1250
+ width: 100%;
1251
+ float: left;
1252
+ margin: 0 0 10px;
1253
+ }
1254
+
1255
+ .tab2 .rss_url_row h4 {
1256
+ float: left;
1257
+ line-height: 43px !important;
1258
+ }
1259
+
1260
+ .tab2 .inr_cont input.add,
1261
+ .tab2 .inr_cont textarea.add_txt,
1262
+ .tab2 .rss_url_row input.add {
1263
+ width: 363px;
1264
+ float: left;
1265
+ background: #e5e5e5;
1266
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1267
+ border: 0;
1268
+ padding: 12px 10px 11px;
1269
+ margin-left: 227px;
1270
+ margin-top: -38px;
1271
+ }
1272
+
1273
+ .tab2 .rss_url_row input.add {
1274
+ margin-left: 10px;
1275
+ margin-top: 0;
1276
+ }
1277
+
1278
+ .tab2 .inr_cont input.add1,
1279
+ .tab2 .rss_url_row input.add1 {
1280
+ width: 363px;
1281
+ float: left;
1282
+ background: #e5e5e5;
1283
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1284
+ border: 0;
1285
+ padding: 12px 10px 11px;
1286
+ margin-left: 284px;
1287
+ margin-top: -34px;
1288
+ }
1289
+
1290
+ .tab2 .rss_url_row a.rit_link {
1291
+ float: left;
1292
+ margin: 10px 0 0 16px;
1293
+ font-size: 17px;
1294
+ }
1295
+
1296
+ .tab2 .row {
1297
+ float: left;
1298
+ border-top: 2px solid #f2f3f4;
1299
+ clear: both;
1300
+ padding: 0 0 15px;
1301
+ width: 100%
1302
+ }
1303
+
1304
+ .tab2 .row .tab_2_email_sec {
1305
+ list-style: none;
1306
+ margin: 17px 0 0;
1307
+ overflow: hidden;
1308
+ }
1309
+
1310
+ .row ul.tab_2_email_sec li {
1311
+ float: left;
1312
+ margin-right: 10px;
1313
+ width: 32%;
1314
+ }
1315
+
1316
+ .sfsiplusicnsdvwrp {
1317
+ width: 110px;
1318
+ float: left;
1319
+ }
1320
+
1321
+ .row ul.tab_2_email_sec:first-child {
1322
+ margin-right: 2%
1323
+ }
1324
+
1325
+ .inr_cont .fb_url {
1326
+ clear: both;
1327
+ }
1328
+
1329
+ .inr_cont .fb_url .checkbox,
1330
+ .inr_cont .fb_url input.add,
1331
+ .inr_cont .fb_url label,
1332
+ .inr_cont .fb_url lable {
1333
+ float: left;
1334
+ }
1335
+
1336
+ .inr_cont .fb_url input.add {
1337
+ margin-left: 19px;
1338
+ margin-top: 0;
1339
+ }
1340
+
1341
+ .inr_cont .fb_url .checkbox {
1342
+ margin: 6px 0 0;
1343
+ }
1344
+
1345
+ .inr_cont .fb_url label {
1346
+ line-height: 41px;
1347
+ margin: 0 0 0 15px;
1348
+ font-size: 18px;
1349
+ }
1350
+
1351
+ .inr_cont textarea.add_txt {
1352
+ resize: none;
1353
+ margin: 0 0 0 19px !important;
1354
+ height: 60px;
1355
+ }
1356
+
1357
+ .tab2 .inr_cont textarea.add_txt {
1358
+ width: 382px !important;
1359
+ height: 90px;
1360
+ overflow: hidden;
1361
+ }
1362
+
1363
+ .tab2 .inr_cont input.add {
1364
+ width: 417px;
1365
+ }
1366
+
1367
+ .red_txt,
1368
+ .tab2 .red_txt {
1369
+ color: #ef4745 !important;
1370
+ text-align: center !important;
1371
+ padding-top: 5px !important;
1372
+ }
1373
+
1374
+ .green_txt {
1375
+ color: #12A252 !important;
1376
+ text-align: center !important;
1377
+ padding-top: 5px !important;
1378
+ }
1379
+
1380
+ .red_txt {
1381
+ color: #f80000 !important;
1382
+ text-align: center !important;
1383
+ padding-top: 5px !important;
1384
+ }
1385
+
1386
+ .linked_tab_2 .fb_url label {
1387
+ width: 32%
1388
+ }
1389
+
1390
+ .twt_tab_2 label {
1391
+ width: 18%
1392
+ }
1393
+
1394
+ .bdr_top {
1395
+ border-top: none !important;
1396
+ }
1397
+
1398
+ .linked_tab_2 .fb_url input.link_dbl {
1399
+ margin-bottom: 6px;
1400
+ }
1401
+
1402
+ .tab3 {
1403
+ overflow: hidden;
1404
+ }
1405
+
1406
+ .tab3 .row {
1407
+ padding: 15px 0;
1408
+ clear: both;
1409
+ overflow: hidden;
1410
+ }
1411
+
1412
+ .tab3 .row.sfsiplusmousetxt {
1413
+ border: medium none;
1414
+ }
1415
+
1416
+ .tab3 ul.tab_3_list {
1417
+ overflow: hidden;
1418
+ margin: 4px 0 11px;
1419
+ }
1420
+
1421
+ .tab8 .sfsiplus_toglepstpgspn {
1422
+ font-weight: bold;
1423
+ }
1424
+
1425
+ ul.tab_3_list li {
1426
+ background: url(../images/tab_3_list_bg.jpg) 13px 7px no-repeat;
1427
+ padding: 0 0 0 30px;
1428
+ color: #778088;
1429
+ font-family: helveticaregular;
1430
+ font-size: 17px;
1431
+ margin-bottom: 4px;
1432
+ }
1433
+
1434
+ .tab5 ul.tab_3_list li {
1435
+ background: url(../images/tab_3_list_bg.jpg) 13px 18px no-repeat;
1436
+ }
1437
+
1438
+ .tab3 .row h3 {
1439
+ margin: 0 0 20px;
1440
+ color: #414951;
1441
+ font-family: helveticabold;
1442
+ font-size: 20px;
1443
+ }
1444
+
1445
+ ul.sfsiplus_tab_3_icns {
1446
+ list-style: none;
1447
+ margin: 34px 0 0;
1448
+ overflow: hidden;
1449
+ }
1450
+
1451
+ ul.sfsiplus_tab_3_icns li {
1452
+ width: 100%;
1453
+ margin: 0 0 21px;
1454
+ float: left;
1455
+ }
1456
+
1457
+ ul.sfsiplus_tab_3_icns label {
1458
+ float: left;
1459
+ line-height: 42px;
1460
+ color: #69737C;
1461
+ font-size: 18px;
1462
+ font-family: helveticaregular;
1463
+ min-width: 120px;
1464
+ }
1465
+
1466
+ ul.sfsiplus_tab_3_icns li .sfsiplus_icns_tab_3,
1467
+ ul.sfsiplus_tab_3_icns li .radio {
1468
+ float: left;
1469
+ }
1470
+
1471
+ .tab3 .sub_row {
1472
+ float: left;
1473
+ margin: 35px 0 0 4%;
1474
+ width: 90%
1475
+ }
1476
+
1477
+ .tab3 .sub_row h4 {
1478
+ color: #a4a9ad !important;
1479
+ }
1480
+
1481
+ .tab3 .sub_row p {
1482
+ padding-top: 18px !important;
1483
+ clear: both;
1484
+ overflow: hidden;
1485
+ }
1486
+
1487
+ .sub_row .sub_sub_box p {
1488
+ padding-top: 18px !important;
1489
+ }
1490
+
1491
+ .tab3 .sub_row .checkbox {
1492
+ float: left;
1493
+ margin-top: 4px;
1494
+ }
1495
+
1496
+ .tab3 .sub_row .sub_sub_box {
1497
+ width: 80%;
1498
+ margin: 7px 0 15px 10%;
1499
+ float: left;
1500
+ }
1501
+
1502
+ .tab3 .sub_row input.smal_inpt {
1503
+ width: 73px;
1504
+ background: #e5e5e5;
1505
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1506
+ border: 0;
1507
+ padding: 10px;
1508
+ float: left;
1509
+ }
1510
+
1511
+ .tab3 .sub_row .drop_lst {
1512
+ border: 1px solid #d6d6d6;
1513
+ font-size: 16px;
1514
+ color: #5a6570;
1515
+ width: 120px;
1516
+ }
1517
+
1518
+ .tab3 .first_row,
1519
+ .tab3 .first_row p,
1520
+ .tab3 .first_row p .radio,
1521
+ .tab3 .first_row p label {
1522
+ float: left;
1523
+ }
1524
+
1525
+ .tab3 .first_row {
1526
+ width: 90%;
1527
+ float: left;
1528
+ }
1529
+
1530
+ .tab3 .first_row p {
1531
+ padding: 0 !important;
1532
+ }
1533
+
1534
+ .tab3 .first_row p label {
1535
+ line-height: 44px;
1536
+ margin: 0 10px;
1537
+ }
1538
+
1539
+ .tab3 .first_row p:last-child {
1540
+ margin-left: 27%
1541
+ }
1542
+
1543
+ .tab3 .tab_1_sav {
1544
+ padding-top: 20px !important;
1545
+ margin: 10px auto 20px;
1546
+ }
1547
+
1548
+ .suc_msg {
1549
+ background: #12A252;
1550
+ color: #FFF;
1551
+ display: none;
1552
+ font-size: 23px;
1553
+ padding: 10px;
1554
+ text-align: left;
1555
+ text-decoration: none;
1556
+ }
1557
+
1558
+ .error_msg {
1559
+ background: #D22B30;
1560
+ color: #FFF;
1561
+ display: none;
1562
+ font-size: 23px;
1563
+ padding: 10px;
1564
+ text-align: left;
1565
+ text-decoration: none;
1566
+ }
1567
+
1568
+ .fileUPInput {
1569
+ cursor: pointer;
1570
+ position: relative;
1571
+ top: -43px;
1572
+ right: 0;
1573
+ z-index: 99;
1574
+ height: 42px;
1575
+ font-size: 5px;
1576
+ opacity: 0;
1577
+ -moz-opacity: 0;
1578
+ filter: alpha(opacity=0);
1579
+ width: 100%
1580
+ }
1581
+
1582
+ .inputWrapper {
1583
+ height: 20px;
1584
+ width: 50px;
1585
+ overflow: hidden;
1586
+ position: relative;
1587
+ cursor: pointer;
1588
+ }
1589
+
1590
+ .sfsiplus_custom-txt {
1591
+ background: none !important;
1592
+ padding-left: 2px !important;
1593
+ }
1594
+
1595
+ .plus_custom-img {
1596
+ float: left;
1597
+ margin-left: 20px;
1598
+ }
1599
+
1600
+ .loader-img {
1601
+ float: left;
1602
+ margin-left: -70px;
1603
+ display: none;
1604
+ }
1605
+
1606
+ .pop-overlay {
1607
+ position: fixed;
1608
+ top: 0;
1609
+ left: 0;
1610
+ width: 100%;
1611
+ height: 100%;
1612
+ background-color: #d3d3d3;
1613
+ z-index: 10;
1614
+ padding: 20px;
1615
+ display: none;
1616
+ }
1617
+
1618
+ .fb-overlay {
1619
+ position: fixed;
1620
+ top: 0;
1621
+ left: 0;
1622
+ width: 100%;
1623
+ height: 100%;
1624
+ background-color: #d3d3d3;
1625
+ z-index: -1000;
1626
+ padding: 20px;
1627
+ opacity: 0;
1628
+ display: block;
1629
+ }
1630
+
1631
+ .inputError {
1632
+ border: 1px solid #f80000 !important;
1633
+ }
1634
+
1635
+ .sfsicloseBtn {
1636
+ position: absolute;
1637
+ top: 0;
1638
+ right: 0;
1639
+ cursor: pointer;
1640
+ }
1641
+
1642
+
1643
+ .sfsi_plus_tool_tip_2 .tool_tip>img,
1644
+ .tool_tip>img {
1645
+ display: inline-block;
1646
+ margin-right: 4px;
1647
+ float: left;
1648
+ }
1649
+
1650
+ .sfsiplus_norm_row {
1651
+ float: left;
1652
+ min-width: 25px;
1653
+ }
1654
+
1655
+ .sfsiplus_norm_row a {
1656
+ border: none;
1657
+ display: inline-block;
1658
+ position: relative;
1659
+ }
1660
+
1661
+ .sfsi_plus_widget {
1662
+ min-height: 55px;
1663
+ }
1664
+
1665
+ .sfsi_plus_tool_tip_2 a {
1666
+ min-height: 0 !important;
1667
+ }
1668
+
1669
+ .sfsi_plus_widget a img {
1670
+ box-shadow: none !important;
1671
+ outline: 0;
1672
+ }
1673
+
1674
+ .sfsi_plus_wicons {
1675
+ display: inline-block;
1676
+ color: #000;
1677
+ }
1678
+
1679
+ .sel-active {
1680
+ background-color: #f7941d;
1681
+ }
1682
+
1683
+ .sfsi_plus_outr_div .close {
1684
+ position: absolute;
1685
+ right: 18px;
1686
+ top: 18px;
1687
+ }
1688
+
1689
+ .sfsi_plus_outr_div h2 {
1690
+ color: #778088;
1691
+ font-family: helveticaregular;
1692
+ font-size: 26px;
1693
+ margin: 0 0 9px;
1694
+ padding: 0;
1695
+ text-align: center;
1696
+ font-weight: 400;
1697
+ }
1698
+
1699
+ .sfsi_plus_outr_div ul li a {
1700
+ color: #5A6570;
1701
+ text-decoration: none;
1702
+ }
1703
+
1704
+ .sfsi_plus_outr_div ul li {
1705
+ display: inline-block;
1706
+ list-style: none;
1707
+ margin: 0;
1708
+ padding: 0;
1709
+ float: none;
1710
+ }
1711
+
1712
+ .expanded-area {
1713
+ display: none;
1714
+ }
1715
+
1716
+ .sfsi_plus_wicons a {
1717
+ -webkit-transition: all .2s ease-in-out;
1718
+ -moz-transition: all .2s ease-in-out;
1719
+ -o-transition: all .2s ease-in-out;
1720
+ -ms-transition: all .2s ease-in-out;
1721
+ }
1722
+
1723
+ .scale,
1724
+ .scale-div {
1725
+ -webkit-transform: scale(1.1);
1726
+ -moz-transform: scale(1.1);
1727
+ -o-transform: scale(1.1);
1728
+ transform: scale(1.1);
1729
+ }
1730
+
1731
+ .sfsi_plus_Sicons {
1732
+ float: left;
1733
+ }
1734
+
1735
+ .sfsi_pop_up .button a:hover {
1736
+ color: #fff;
1737
+ }
1738
+
1739
+ .sfsi_pop_up .button:hover {
1740
+ background: #12a252;
1741
+ color: #fff;
1742
+ border: none;
1743
+ }
1744
+
1745
+ ul.plus_icn_listing li .sfsiplus_right_info a {
1746
+ outline: 0;
1747
+ font-family: helveticaregular;
1748
+ }
1749
+
1750
+ ul.sfsiplus_icn_listing8 li .sfsiplus_right_info a {
1751
+ outline: 0;
1752
+ font-family: helveticaregular;
1753
+ }
1754
+
1755
+ .upload_pop_up .upload_butt {
1756
+ line-height: 27px;
1757
+ margin-left: 6px;
1758
+ }
1759
+
1760
+ .drop_lsts {
1761
+ left: 220px;
1762
+ position: relative;
1763
+ top: -40px;
1764
+ }
1765
+
1766
+ .drop_lsts .styled {
1767
+ top: -42px;
1768
+ width: 127px;
1769
+ height: 33px;
1770
+ }
1771
+
1772
+ .drop_lsts span {
1773
+ line-height: 50px;
1774
+ }
1775
+
1776
+ .drag_drp {
1777
+ left: 11px;
1778
+ position: relative;
1779
+ top: 38px;
1780
+ font-size: 17px;
1781
+ }
1782
+
1783
+ .listing ul li label {
1784
+ width: 224px;
1785
+ float: left;
1786
+ }
1787
+
1788
+ .sfsiplus_row_onl {
1789
+ width: 100%;
1790
+ float: left;
1791
+ }
1792
+
1793
+ #sfsi_plus_Show_popupOn_PageIDs option.sel-active {
1794
+ background: #f7941d;
1795
+ }
1796
+
1797
+ .sfsi_plus_inside div iframe {
1798
+ float: left;
1799
+ margin: 0;
1800
+ }
1801
+
1802
+ .sfsi_plus_inside div #___plus_0,
1803
+ .sfsi_plus_inside div #___plusone_0 {
1804
+ height: 27px;
1805
+ }
1806
+
1807
+ .sfsi_plus_outr_div li {
1808
+ float: left;
1809
+ }
1810
+
1811
+ .sfsi_plus_tool_tip_2 .sfsi_plus_inside div {
1812
+ min-height: 0;
1813
+ }
1814
+
1815
+ #___plus_1>iframe {
1816
+ height: 30px;
1817
+ }
1818
+
1819
+ .main_contant h1 {
1820
+ margin: 0 0 19px;
1821
+ }
1822
+
1823
+ .main_contant p {
1824
+ margin: 0 0 26px;
1825
+ }
1826
+
1827
+ .main_contant p>a {
1828
+ color: #1a1d20;
1829
+ text-decoration: underline;
1830
+ }
1831
+
1832
+ .tab1 .gary_bg {
1833
+ background: #f1f1f1;
1834
+ }
1835
+
1836
+ #accordion {
1837
+ margin-top: 4px;
1838
+ }
1839
+
1840
+ .main_contant p>a,
1841
+ .tab1 p span {
1842
+ font-family: helveticabold;
1843
+ }
1844
+
1845
+ .wapper .ui-accordion-header-active {
1846
+ margin-top: 20px !important;
1847
+ }
1848
+
1849
+ .wapper .tab2 {
1850
+ padding: 20px 33px 12px 34px !important;
1851
+ }
1852
+
1853
+ .wapper .tab2 p {
1854
+ margin-bottom: 6px;
1855
+ }
1856
+
1857
+ .tab2 .twt_tab_2 label {
1858
+ width: 175px;
1859
+ }
1860
+
1861
+ .tab2 .twt_fld {
1862
+ margin: 16px 0 23px;
1863
+ float: left;
1864
+ }
1865
+
1866
+ .tab2 .twt_fld_2 {
1867
+ margin: 0 0 12px;
1868
+ float: left;
1869
+ }
1870
+
1871
+ .tab2 .utube_inn {
1872
+ padding-bottom: 2px;
1873
+ float: left;
1874
+ }
1875
+
1876
+ .tab2 .utube_inn label {
1877
+ max-width: 90%
1878
+ }
1879
+
1880
+ .tab2 .utube_inn label span {
1881
+ font-family: helveticabold;
1882
+ }
1883
+
1884
+ .tab2 .inr_cont p>a {
1885
+ font-family: helveticabold;
1886
+ color: #778088;
1887
+ text-decoration: none;
1888
+ }
1889
+
1890
+ .sfsiplus_pinterest_section .inr_cont .pint_url {
1891
+ float: left;
1892
+ padding-top: 6px;
1893
+ clear: both;
1894
+ }
1895
+
1896
+ .sfsiplus_pinterest_section .inr_cont .add {
1897
+ width: 417px !important;
1898
+ }
1899
+
1900
+ .sfsiplus_linkedin_section .link_1,
1901
+ .sfsiplus_linkedin_section .link_2,
1902
+ .sfsiplus_linkedin_section .link_3,
1903
+ .sfsiplus_linkedin_section .link_4 {
1904
+ float: left;
1905
+ width: 100%
1906
+ }
1907
+
1908
+ .sfsiplus_linkedin_section .link_1 input.add,
1909
+ .sfsiplus_linkedin_section .link_2 input.add,
1910
+ .sfsiplus_linkedin_section .link_3 input.add,
1911
+ .sfsiplus_linkedin_section .link_4 input.add {
1912
+ width: 417px;
1913
+ }
1914
+
1915
+ .sfsiplus_linkedin_section .link_1 {
1916
+ margin-bottom: 7px;
1917
+ }
1918
+
1919
+ .sfsiplus_linkedin_section .link_2 {
1920
+ margin-bottom: 12px;
1921
+ }
1922
+
1923
+ .sfsiplus_linkedin_section .link_3,
1924
+ .sfsiplus_linkedin_section .link_4 {
1925
+ margin-bottom: 13px;
1926
+ }
1927
+
1928
+ .tab2 .sfsiplus_linkedin_section .link_4 {
1929
+ margin-bottom: 0;
1930
+ }
1931
+
1932
+ .sfsiplus_telegram_section .link_1,
1933
+ .sfsiplus_linkedin_section .link_2 {
1934
+ margin-bottom: 12px;
1935
+ }
1936
+
1937
+ ul.tab_3_list li span {
1938
+ font-family: helveticabold;
1939
+ }
1940
+
1941
+ #accordion .tab4 h4,
1942
+ #accordion1 .tab4 h4 {
1943
+
1944
+ color: #414951;
1945
+ font-size: 20px;
1946
+ }
1947
+
1948
+ .sfsiplus_specify_counts .listing li .input {
1949
+ width: 73px;
1950
+ }
1951
+
1952
+ .sfsiplus_fbpgidwpr {
1953
+ width: 160px;
1954
+ float: left;
1955
+ font-weight: bold;
1956
+ font-size: 17px;
1957
+ color: #000000;
1958
+ }
1959
+
1960
+ .sfsiplus_fbpgiddesc {
1961
+ font-weight: normal;
1962
+ width: 100%;
1963
+ font-size: 14px;
1964
+ color: #888888;
1965
+ padding: 4px 0 0 60px;
1966
+ }
1967
+
1968
+ .sfsiplus_fbpgiddesc code {
1969
+ background: none repeat scroll 0 0 transparent;
1970
+ padding-right: 0px;
1971
+ padding-left: 0px;
1972
+
1973
+ }
1974
+
1975
+ .sfsiplus_specify_counts .listing li .input.mypginpt {
1976
+ width: 288px;
1977
+ }
1978
+
1979
+ .tab3 .Shuffle_auto .sub_sub_box .tab_3_option {
1980
+ padding-top: 0 !important;
1981
+ margin-bottom: 10px !important;
1982
+ }
1983
+
1984
+ .tab3 .sub_row {
1985
+ margin-top: 10px !important;
1986
+ }
1987
+
1988
+ .tab4 {
1989
+ padding-top: 35px !important;
1990
+ }
1991
+
1992
+ .tab4 .save_button {
1993
+ padding-top: 46px;
1994
+ }
1995
+
1996
+ .tab5 {
1997
+ padding-top: 31px !important;
1998
+ }
1999
+
2000
+ .tab6,
2001
+ .tab7 {
2002
+ padding-top: 28px !important;
2003
+ }
2004
+
2005
+ .tab5 .sfsiplus_row_onl {
2006
+ margin-top: 15px;
2007
+ }
2008
+
2009
+ .tab5 .sticking .link>a {
2010
+ color: #a4a9ad;
2011
+ text-decoration: underline;
2012
+ }
2013
+
2014
+ .tab5 .mouse_txt h4 {
2015
+ margin-bottom: 8px !important;
2016
+ }
2017
+
2018
+ .tab5 .save_button {
2019
+ padding-top: 54px;
2020
+ }
2021
+
2022
+ .tab7 .like_pop_box h2 {
2023
+ font-family: helveticabold;
2024
+ text-align: center;
2025
+ color: #414951;
2026
+ font-size: 26px;
2027
+ }
2028
+
2029
+ .tab1 ul.plus_icn_listing li .sfsiplus_right_info label:hover {
2030
+ text-decoration: none !important;
2031
+ }
2032
+
2033
+ .tab1 ul.plus_icn_listing li .sfsiplus_right_info label.expanded-area {
2034
+ clear: both;
2035
+ float: left;
2036
+ margin-top: 14px;
2037
+ }
2038
+
2039
+ .tab7 .space {
2040
+ margin-top: 14px;
2041
+ }
2042
+
2043
+ .tab7 .pop_up_show label {
2044
+ font-family: helveticaregular !important;
2045
+ }
2046
+
2047
+ .tab7 .save_button {
2048
+ padding-top: 78px;
2049
+ }
2050
+
2051
+ .like_txt a {
2052
+ text-decoration: none;
2053
+ font-family: helveticaregular;
2054
+ }
2055
+
2056
+ .bdr_btm_non {
2057
+ border-bottom: none !important;
2058
+ }
2059
+
2060
+ .tab1 .tab_1_sav {
2061
+ padding-top: 13px;
2062
+ }
2063
+
2064
+ #accordion .tab2 .sfsiplus_facebook_section .inr_cont p.extra_sp,
2065
+ #accordion1 .tab2 .sfsiplus_facebook_section .inr_cont p.extra_sp {
2066
+ padding-top: 7px;
2067
+ }
2068
+
2069
+ .tab2 .sfsiplus_custom_section {
2070
+ width: 100%
2071
+ }
2072
+
2073
+ .tab7 {
2074
+ padding-bottom: 40px !important;
2075
+ }
2076
+
2077
+ .tab8 .save_button {
2078
+ padding-top: 0px;
2079
+ }
2080
+
2081
+ .tab10 .save_button a {
2082
+ padding: 16px 0;
2083
+ }
2084
+
2085
+ .tab2 .sfsiplus_twitter_section .twt_fld input.add,
2086
+ .tab2 .sfsiplus_twitter_section .twt_fld_2 textarea.add_txt {
2087
+ width: 464px !important;
2088
+ }
2089
+
2090
+ .tab2 .utube_inn .fb_url label span {
2091
+ font-family: helveticaregular;
2092
+ }
2093
+
2094
+ .tab1 label,
2095
+ .tab2 label,
2096
+ .tab3 label,
2097
+ .tab4 label,
2098
+ .tab5 label,
2099
+ .tab6 label,
2100
+ .tab7 label,
2101
+ .tab8 label,
2102
+ .tab9 label {
2103
+ cursor: default !important;
2104
+ }
2105
+
2106
+ .tab5 .new_wind h4 {
2107
+ margin-bottom: 11px !important;
2108
+ }
2109
+
2110
+ .pop_up_box .fb_2 span {
2111
+ height: 28px !important;
2112
+ }
2113
+
2114
+ .pop_up_box .sfsi_plus_tool_tip_2 .fbb .fb_1 a {
2115
+ margin-top: 0;
2116
+ }
2117
+
2118
+ .tab6 .social_icon_like1 ul li span {
2119
+ margin-top: -1px;
2120
+ }
2121
+
2122
+ #sfpluspageLoad {
2123
+ background: url(../images/ajax-loader.gif) 50% 50% no-repeat #F9F9F9;
2124
+ height: 100%;
2125
+ left: 160px;
2126
+ opacity: 1;
2127
+ position: fixed;
2128
+ top: 0;
2129
+ width: 89%;
2130
+ z-index: 9999;
2131
+ }
2132
+
2133
+ .sfsi_plus_tool_tip_2,
2134
+ .tool_tip {
2135
+ background: #FFF;
2136
+ border: 1px solid #e7e7e7;
2137
+ box-shadow: #e7e7e7 0 0 2px 1px;
2138
+ display: block;
2139
+ float: left;
2140
+ margin: 0 0 0 -52px;
2141
+ /*padding: 5px 14px 5px 14px;*/
2142
+ position: absolute;
2143
+ z-index: 10000;
2144
+ border-bottom: #e5e5e5 solid 4px;
2145
+ width: 100px;
2146
+ }
2147
+
2148
+ .sfsi_plus_tool_tip_2 {
2149
+ display: inline-table;
2150
+ }
2151
+
2152
+ .sfsiplus_inerCnt,
2153
+ .sfsiplus_inerCnt:hover,
2154
+ .sfsiplus_inerCnt>a,
2155
+ .sfsiplus_inerCnt>a:hover,
2156
+ .widget-area .widget a {
2157
+ outline: 0;
2158
+ }
2159
+
2160
+ .sfsi_plus_tool_tip_2_inr {
2161
+ bottom: 90%;
2162
+ left: 20%;
2163
+ opacity: 0;
2164
+ }
2165
+
2166
+ .sfsi_plus_tool_tip_2 .bot_arow {
2167
+ background: url(../images/bot_tip_icn.png) no-repeat;
2168
+ position: absolute;
2169
+ bottom: -21px;
2170
+ left: 50%;
2171
+ width: 15px;
2172
+ height: 21px;
2173
+ margin-left: -10px;
2174
+ }
2175
+
2176
+ .sfsi_plus_tool_tip_2 .top_big_arow {
2177
+ position: absolute;
2178
+ -webkit-transform: rotate(180deg);
2179
+ -moz-transform: rotate(180deg);
2180
+ -ms-transform: rotate(180deg);
2181
+ -o-transform: rotate(180deg);
2182
+ transform: rotate(180deg);
2183
+ top: -21px;
2184
+ left: 46%;
2185
+ width: 15px;
2186
+ height: 21px;
2187
+ margin-right: -5px;
2188
+ }
2189
+
2190
+ .sfsi_plus_tool_tip_2_inr .gpls_visit>a,
2191
+ .sfsi_plus_tool_tip_2_inr .prints_visit_1 a,
2192
+ .sfsi_plus_tool_tip_2_inr .utub_visit>a {
2193
+ margin-top: 0;
2194
+ }
2195
+
2196
+ .sfsi_plus_tool_tip_2_inr .linkin_1 a,
2197
+ .sfsi_plus_tool_tip_2_inr .linkin_2 a,
2198
+ .sfsi_plus_tool_tip_2_inr .linkin_3 a,
2199
+ .sfsi_plus_tool_tip_2_inr .linkin_4 a,
2200
+ .sfsi_plus_tool_tip_2_inr .prints_visit a {
2201
+ margin: 0;
2202
+ }
2203
+
2204
+ .sfsiTlleftBig {
2205
+ bottom: 121%;
2206
+ left: 22%;
2207
+ margin-left: -54%
2208
+ }
2209
+
2210
+ .sfsi_plus_Tlleft {
2211
+ bottom: 100%;
2212
+ left: 50%;
2213
+ margin-left: -66px !important;
2214
+ margin-bottom: 2px;
2215
+ }
2216
+
2217
+ .sfsi_plc_btm {
2218
+ bottom: auto;
2219
+ top: 100%;
2220
+ left: 50%;
2221
+ margin-left: -63px;
2222
+ margin-top: 8px;
2223
+ margin-bottom: auto;
2224
+ }
2225
+
2226
+ .sfsiplus_inerCnt {
2227
+ position: relative;
2228
+ z-index: inherit !important;
2229
+ float: left;
2230
+ width: 100%;
2231
+ float: left;
2232
+ }
2233
+
2234
+ .sfsi_plus_wicons {
2235
+ margin-bottom: 30px;
2236
+ position: relative;
2237
+ padding-top: 5px;
2238
+ }
2239
+
2240
+ .sfsiplus_norm_row .bot_no {
2241
+ position: absolute;
2242
+ padding: 1px 0;
2243
+ font-size: 12px !important;
2244
+ text-align: center;
2245
+ line-height: 12px !important;
2246
+ background: #fff;
2247
+ border-radius: 5px;
2248
+ left: 50%;
2249
+ margin-left: -20px;
2250
+ z-index: 9;
2251
+ border: 1px solid #333;
2252
+ top: 100%;
2253
+ white-space: pre;
2254
+ -webkit-box-sizing: border-box;
2255
+ -moz-box-sizing: border-box;
2256
+ box-sizing: border-box;
2257
+ margin-top: 10px;
2258
+ width: 40px;
2259
+ }
2260
+
2261
+ .sfsiplus_norm_row .bot_no:before {
2262
+ content: url(images/count_top_arow.png);
2263
+ position: absolute;
2264
+ height: 9px;
2265
+ margin-left: -7.5px;
2266
+ top: -10px;
2267
+ left: 50%;
2268
+ width: 15px;
2269
+ }
2270
+
2271
+ /*.sf_subscrbe .bot_no:before
2272
+ {
2273
+ content: url(images/count_left_arow.png);
2274
+ height: 9px;
2275
+ left: 0;
2276
+ margin-left: -12px;
2277
+ position: absolute;
2278
+ top: 0px;
2279
+ width: 15px;
2280
+ }*/
2281
+ .sf_subscrbe .bot_no {
2282
+ background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
2283
+ font-size: 12px !important;
2284
+ left: 67px;
2285
+ line-height: 17px !important;
2286
+ margin-left: 0px;
2287
+ /* margin-top: 9px;*/
2288
+ padding: 1px 0;
2289
+ /*position: absolute;*/
2290
+ text-align: center;
2291
+ /*top: -8px;*/
2292
+ white-space: pre;
2293
+ width: 33px;
2294
+ height: 19px;
2295
+ z-index: 9;
2296
+ display: inline-block;
2297
+ }
2298
+
2299
+ .bot_no.sfsiSmBtn {
2300
+ font-size: 10px;
2301
+ margin-top: 4px;
2302
+ }
2303
+
2304
+ .bot_no.sfsiSmBtn:before {
2305
+ margin-left: -8px;
2306
+ top: -9px;
2307
+ }
2308
+
2309
+ .sfsiplus_norm_row .cbtn_vsmall {
2310
+ font-size: 9px;
2311
+ left: -28%;
2312
+ top: 4px;
2313
+ }
2314
+
2315
+ .sfsiplus_norm_row .cbtn_vsmall:before {
2316
+ left: 31%;
2317
+ top: -9px;
2318
+ margin-left: -31%
2319
+ }
2320
+
2321
+ h2.optional {
2322
+ font-family: helveticaregular;
2323
+ font-size: 25px;
2324
+ margin: 25px 0 19px;
2325
+ color: #5a6570;
2326
+ float: left;
2327
+ }
2328
+
2329
+ .utube_tool_bdr .utub_visit {
2330
+ margin: 9px 0 0;
2331
+ height: 24px;
2332
+ display: inline-block;
2333
+ float: none;
2334
+ }
2335
+
2336
+ .utube_tool_bdr .utub_2 {
2337
+ margin: 9px 0 0;
2338
+ height: 24px;
2339
+ width: 86px;
2340
+ display: inline-block;
2341
+ float: none;
2342
+ }
2343
+
2344
+ .sfsi_plus_printst_tool_bdr {
2345
+ width: 79px;
2346
+ }
2347
+
2348
+ .sfsi_plus_printst_tool_bdr .prints_visit {
2349
+ margin: 0 0 10px -22px;
2350
+ }
2351
+
2352
+ .sfsi_plus_printst_tool_bdr .prints_visit_1 {
2353
+ margin: 0 0 0 -53px;
2354
+ }
2355
+
2356
+ .sfsi_plus_fb_tool_bdr {
2357
+ width: 68px;
2358
+ height: auto;
2359
+ }
2360
+
2361
+ .sfsi_plus_fb_tool_bdr .sfsi_plus_inside {
2362
+ text-align: center;
2363
+ width: 100%;
2364
+ float: left;
2365
+ overflow: hidden;
2366
+ }
2367
+
2368
+ .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1 {
2369
+ margin: 2px 0 -5px 0;
2370
+ height: 28px;
2371
+ /*display: inline-block;*/
2372
+ float: none;
2373
+ /* width: 62px;s*/
2374
+ }
2375
+
2376
+ #sfsi_plus_floater .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1 {
2377
+ margin: -16px 0 16px 0;
2378
+ }
2379
+
2380
+ .sfsi_plus_inside img {
2381
+ vertical-align: sub !important;
2382
+ }
2383
+
2384
+ .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon2 {
2385
+ margin: 2px 0 2px 0;
2386
+ height: 20px;
2387
+ /* width: 49px;*/
2388
+ display: block;
2389
+ overflow: hidden;
2390
+ }
2391
+
2392
+ .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon3 {
2393
+ margin: 2px 0 2px 0;
2394
+ height: 20px;
2395
+ /* width: 62px;*/
2396
+ display: inline-block;
2397
+ float: none;
2398
+ }
2399
+
2400
+ #sfsi_plus_floater .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon3 {
2401
+ margin: 3px 0 0 0;
2402
+ }
2403
+
2404
+ .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_1,
2405
+ .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_2,
2406
+ .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .fb_3 {
2407
+ margin: 9px 0 0;
2408
+ height: 25px;
2409
+ }
2410
+
2411
+ .sfsi_plus_printst_tool_bdr .sfsi_plus_inside {
2412
+ text-align: center;
2413
+ float: left;
2414
+ width: 100%
2415
+ }
2416
+
2417
+ .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1 {
2418
+ margin: 2px 0;
2419
+ height: 24px;
2420
+ display: inline-block;
2421
+ float: none;
2422
+ /*width: 73px;*/
2423
+ }
2424
+
2425
+ #sfsi_plus_floater .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1 {
2426
+ margin: 0px 0;
2427
+ }
2428
+
2429
+ #sfsi_plus_floater .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2 {
2430
+ margin: -5px 0 17px 0;
2431
+ display: inherit;
2432
+ }
2433
+
2434
+ .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2 {
2435
+ margin: 2px 0;
2436
+ height: 20px;
2437
+ display: inline-block;
2438
+ float: none;
2439
+ /*max-width: 73px;*/
2440
+ width: 100%;
2441
+ }
2442
+
2443
+ .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .prints_visit,
2444
+ .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .prints_visit_1 {
2445
+ margin: 9px 0 0;
2446
+ height: 20px;
2447
+ float: none;
2448
+ display: inline-block;
2449
+ }
2450
+
2451
+ .sfsi_plus_printst_tool_bdr {
2452
+ /* margin-left: -59px;*/
2453
+ }
2454
+
2455
+ .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1>a>img,
2456
+ .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1>a>img,
2457
+ .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1>a>img,
2458
+ .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4>a>img,
2459
+ .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon1>a>img,
2460
+ .sfsi_plus_printst_tool_bdr .sfsi_plus_inside .icon2>a>img,
2461
+ .utube_tool_bdr .sfsi_plus_inside .icon1>a>img {
2462
+ padding-top: 0;
2463
+ }
2464
+
2465
+ .sfsi_plus_gpls_tool_bdr {
2466
+ width: 76px;
2467
+ }
2468
+
2469
+ .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1>a>img {
2470
+ padding-top: 0;
2471
+ }
2472
+
2473
+ .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside {
2474
+ text-align: center;
2475
+ width: 100%;
2476
+ float: left;
2477
+ }
2478
+
2479
+ .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1 {
2480
+ margin: 2px 0 -5px 0;
2481
+ display: inline-block;
2482
+ float: none;
2483
+ height: 29px;
2484
+ /*width: 76px;*/
2485
+ }
2486
+
2487
+ .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon2 {
2488
+ margin: 2px 0 2px 0;
2489
+ display: inline-block;
2490
+ float: none;
2491
+ height: 24px;
2492
+ width: 100%;
2493
+ /* width: 38px;*/
2494
+ }
2495
+
2496
+ .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon3 {
2497
+ margin: 2px 0 2px 0;
2498
+ display: block;
2499
+ float: none;
2500
+ height: 24px;
2501
+ /* width: 76px;
2502
+ */
2503
+ }
2504
+
2505
+ .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gpls_visit,
2506
+ .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gtalk_2,
2507
+ .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .gtalk_3 {
2508
+ margin: 9px 0 0;
2509
+ height: 29px;
2510
+ }
2511
+
2512
+ .sfsi_plus_fb_tool_bdr,
2513
+ .sfsi_plus_gpls_tool_bdr,
2514
+ .sfsi_plus_linkedin_tool_bdr,
2515
+ .sfsi_plus_printst_tool_bdr,
2516
+ .sfsi_plus_twt_tool_bdr {
2517
+ bottom: auto;
2518
+ left: 50%;
2519
+ margin-bottom: 2px;
2520
+ }
2521
+
2522
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside {
2523
+ text-align: center;
2524
+ width: 100%;
2525
+ float: left;
2526
+ }
2527
+
2528
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 {
2529
+ margin: 2px 0 !important;
2530
+ display: inline-block;
2531
+ float: none;
2532
+ vertical-align: middle;
2533
+ overflow: hidden;
2534
+ /*width: 100%;*/
2535
+ }
2536
+
2537
+ #sfsi_plus_floater .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 {
2538
+ margin: -7px 0 -14px 0 !important;
2539
+ /* height: 41px; */
2540
+ vertical-align: bottom;
2541
+ }
2542
+
2543
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a {
2544
+ display: inline-block;
2545
+ vertical-align: middle;
2546
+ /*width: 100%;*/
2547
+ width: auto;
2548
+ }
2549
+
2550
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a img {
2551
+ float: left;
2552
+ }
2553
+
2554
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 {
2555
+ margin: 1px 24px 3px !important;
2556
+ display: inline-block;
2557
+ float: none;
2558
+ /*width: 61px;*/
2559
+ overflow: hidden;
2560
+ height: 20px;
2561
+ }
2562
+
2563
+ #sfsi_plus_floater .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 {
2564
+ margin: 1px 24px -12px !important;
2565
+ }
2566
+
2567
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1 iframe {
2568
+ /* width: 61px!important;*/
2569
+ }
2570
+
2571
+ .sfsi_plus_tool_tip_2,
2572
+ .sfsi_plus_fb_tool_bdr,
2573
+ .sfsi_plus_twt_tool_bdr,
2574
+ .sfsi_plus_linkedin_tool_bdr,
2575
+ .sfsi_plus_printst_tool_bdr,
2576
+ .sfsi_plus_gpls_tool_bdr,
2577
+ .sfsi_plus_Tlleft {
2578
+ width: 140px !important;
2579
+ padding: 6px 0;
2580
+ }
2581
+
2582
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon2 {
2583
+ margin: 0px 0 !important;
2584
+ display: inline-block;
2585
+ float: none;
2586
+ height: 20px;
2587
+ /* width: 58px;s*/
2588
+ }
2589
+
2590
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_1 {
2591
+ margin: 9px 0 0;
2592
+ display: inline-block;
2593
+ float: none;
2594
+ width: 58px;
2595
+ height: 20px;
2596
+ overflow: hidden;
2597
+ }
2598
+
2599
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_1 iframe {
2600
+ width: 100% !important;
2601
+ }
2602
+
2603
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .twt_2 {
2604
+ margin: 9px 0 0;
2605
+ height: 20px;
2606
+ display: inline-block;
2607
+ float: none;
2608
+ width: 58px;
2609
+ }
2610
+
2611
+ .utube_tool_bdr .sfsi_plus_inside {
2612
+ text-align: center;
2613
+ width: 100%;
2614
+ float: left;
2615
+ }
2616
+
2617
+ .sfsi_plus_inside>div {}
2618
+
2619
+ .utube_tool_bdr .sfsi_plus_inside .icon1 {
2620
+ margin: 2px 0 2px;
2621
+ height: 24px;
2622
+ display: inline-block;
2623
+ float: none;
2624
+ width: 87px;
2625
+ }
2626
+
2627
+ #sfsi_plus_floater .utube_tool_bdr .sfsi_plus_inside .icon1 {
2628
+ margin: 0px 0px 19px 0;
2629
+ }
2630
+
2631
+ .utube_tool_bdr .sfsi_plus_inside .icon2 {
2632
+ margin: 2px 0 2px;
2633
+ height: 24px;
2634
+ display: inline-block;
2635
+ float: none;
2636
+ min-width: 100px;
2637
+ width: auto;
2638
+ }
2639
+
2640
+ .utube_tool_bdr {
2641
+ width: 93px;
2642
+ bottom: auto;
2643
+ left: 50%;
2644
+ margin-bottom: 2px;
2645
+ }
2646
+
2647
+ .sfsi_plus_linkedin_tool_bdr {
2648
+ width: 66px;
2649
+ }
2650
+
2651
+ .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside {
2652
+ text-align: center;
2653
+ float: left;
2654
+ width: 100%
2655
+ }
2656
+
2657
+ .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1 {
2658
+ margin: -5px 0 8px 0;
2659
+ display: inline-block;
2660
+ float: none;
2661
+ height: 23px;
2662
+ width: 100%;
2663
+ }
2664
+
2665
+ #sfsi_plus_floater .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1 {
2666
+ margin: -6px 0 16px 0;
2667
+ display: inherit;
2668
+ }
2669
+
2670
+ .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon2 {
2671
+ margin: 1px 0;
2672
+ display: inline-block;
2673
+ float: none;
2674
+ height: 23px;
2675
+ width: 100%;
2676
+ }
2677
+
2678
+ #sfsi_plus_floater .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon2 {
2679
+ margin: -15px 0 3px 0;
2680
+ display: inherit;
2681
+ }
2682
+
2683
+ .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon3 {
2684
+ margin: 2px 0;
2685
+ display: inline-block;
2686
+ float: none;
2687
+ height: 23px;
2688
+ width: 100%;
2689
+ }
2690
+
2691
+
2692
+ .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4 {
2693
+ margin: 2px 0;
2694
+ display: inline-block;
2695
+ float: none;
2696
+ height: 28px;
2697
+ width: 66px;
2698
+ }
2699
+
2700
+ .sfsi_plus_FrntInner .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon1 {
2701
+ margin: 2px 0;
2702
+ }
2703
+
2704
+ .sfsi_plus_widget .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4,
2705
+ .sfsi_plus_widget .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1 {
2706
+ height: auto
2707
+ }
2708
+
2709
+ .sfsi_plus_linkedin_tool_bdr .linkin_1,
2710
+ .sfsi_plus_linkedin_tool_bdr .linkin_2,
2711
+ .sfsi_plus_linkedin_tool_bdr .linkin_3,
2712
+ .sfsi_plus_linkedin_tool_bdr .linkin_4 {
2713
+ margin: 9px 0 0 !important;
2714
+ height: 20px;
2715
+ display: inline-block;
2716
+ float: none;
2717
+ overflow: hidden;
2718
+ }
2719
+
2720
+ .sfsi_plus_twt_tool_bdr {
2721
+ width: 62px;
2722
+ height: auto;
2723
+ }
2724
+
2725
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1>iframe {
2726
+ margin: 0px auto !important;
2727
+ float: left !important;
2728
+ width: 100%
2729
+ }
2730
+
2731
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1>iframe #widget {
2732
+ text-align: center;
2733
+ }
2734
+
2735
+ .sfsi_pop_up .button {
2736
+ border: none;
2737
+ padding: 0;
2738
+ }
2739
+
2740
+ .pop_up_box .button a {
2741
+ color: #fff;
2742
+ line-height: normal;
2743
+ font-size: 22px;
2744
+ text-decoration: none;
2745
+ text-align: center;
2746
+ width: 482px;
2747
+ height: 80px;
2748
+ margin: 0;
2749
+ display: table-cell;
2750
+ vertical-align: middle;
2751
+ font-family: helveticabold;
2752
+ padding: 0 10px;
2753
+ }
2754
+
2755
+ .tab3 ul.sfsiplus_tab_3_icns li .radio {
2756
+ margin-top: 7px;
2757
+ }
2758
+
2759
+ .tab3 ul.sfsiplus_tab_3_icns li label {
2760
+ line-height: 50px !important;
2761
+ margin-left: 20px;
2762
+ }
2763
+
2764
+ .sfsi_mainContainer input[type=email],
2765
+ .sfsi_mainContainer input[type=number],
2766
+ .sfsi_mainContainer input[type=password],
2767
+ .sfsi_mainContainer input[type=search],
2768
+ .sfsi_mainContainer input[type=tel],
2769
+ .sfsi_mainContainer input[type=text],
2770
+ .sfsi_mainContainer input[type=url],
2771
+ .sfsi_mainContainer select,
2772
+ .sfsi_mainContainer textarea {
2773
+ color: #5a6570 !important;
2774
+ }
2775
+
2776
+ .adminTooltip {
2777
+ left: 142px;
2778
+ position: absolute;
2779
+ }
2780
+
2781
+ .adPopWidth {
2782
+ min-height: 100px !important;
2783
+ }
2784
+
2785
+ .main_contant p>a.lit_txt,
2786
+ .tab4 p>a {
2787
+ font-family: helveticaregular;
2788
+ color: #414951;
2789
+ }
2790
+
2791
+ .tab1 ul.plus_icn_listing li .sfsiplus_custom-txt {
2792
+ margin-left: 5px;
2793
+ }
2794
+
2795
+ .tab1 ul.plus_icn_listing li .custom-img {
2796
+ margin-left: 18px;
2797
+ }
2798
+
2799
+ .sfsiplus_linkedin_section .link_4>label.anthr_labl {
2800
+ height: 94px;
2801
+ }
2802
+
2803
+ .tab3 .tab_3_sav {
2804
+ padding-top: 0;
2805
+ margin: -69px auto 20px;
2806
+ position: relative;
2807
+ z-index: 9;
2808
+ }
2809
+
2810
+ .mediam_txt {
2811
+ font-family: helveticabold;
2812
+ }
2813
+
2814
+ .sfsiCtxt {
2815
+ line-height: 51px;
2816
+ font-family: helveticaregular;
2817
+ font-size: 22px;
2818
+ float: left;
2819
+ padding-left: 19px;
2820
+ color: #5a6570;
2821
+ }
2822
+
2823
+ .customstep2-img {
2824
+ width: 51px;
2825
+ float: left;
2826
+ }
2827
+
2828
+ .tab2 .row h2.custom {
2829
+ margin: 15px 0 7px 21px;
2830
+ height: 52px;
2831
+ line-height: 51px;
2832
+ font-family: helveticaregular;
2833
+ font-size: 22px;
2834
+ }
2835
+
2836
+ .plus_custom-links p.cus_link label {
2837
+ margin-left: 0;
2838
+ }
2839
+
2840
+ .pop_up_box .sfsi_plus_tool_tip_2 .fbb .fb_1 a>img:hover {
2841
+ opacity: .9;
2842
+ }
2843
+
2844
+ .tab2 .rss_url_row .sfrsTxt {
2845
+ font-size: 17px;
2846
+ line-height: 41px;
2847
+ margin: 0 0 0 4px;
2848
+ font-family: helveticaregular;
2849
+ }
2850
+
2851
+ .tab2 .rss_url_row .sfrsTxt>strong {
2852
+ font-family: helveticaregular;
2853
+ }
2854
+
2855
+ .tab2 .utube_inn p.extra_pp {
2856
+ float: left;
2857
+ width: 100%;
2858
+ margin: 0 0 0 48px;
2859
+ }
2860
+
2861
+ .tab2 .utube_inn p.extra_pp label {
2862
+ float: left;
2863
+ line-height: 41px;
2864
+ margin-right: 8px;
2865
+ }
2866
+
2867
+ .sfsi_inside .icon2 .fb_iframe_widget span {
2868
+ /* width: 500px!important; sunil*/
2869
+ }
2870
+
2871
+ @media (max-width:767px) {
2872
+ .icon2 .fb_iframe_widget span {
2873
+ width: auto;
2874
+ }
2875
+
2876
+ .sfsi_plus_outr_div {
2877
+ top: 10%
2878
+ }
2879
+
2880
+ .sfsi_plus_outr_div h2 {
2881
+ font-size: 22px !important;
2882
+ line-height: 28px;
2883
+ }
2884
+
2885
+ .sfsi_plus_wicons {
2886
+ padding-top: 0;
2887
+ }
2888
+ }
2889
+
2890
+ .sfsiplus_specify_counts .listing li .high_prb {
2891
+ height: 41px;
2892
+ }
2893
+
2894
+ .sfsi_plus_Sicons {
2895
+ position: relative;
2896
+ }
2897
+
2898
+ .sfsi_plus_Sicons .sf_subscrbe {
2899
+ margin: 2px 3px 0 0;
2900
+ line-height: 0px;
2901
+ }
2902
+
2903
+ .sfsi_plus_Sicons .sf_fb {
2904
+ margin: 0 4px 0 5px;
2905
+ line-height: 0px;
2906
+ }
2907
+
2908
+ .sfsi_plus_Sicons .sf_twiter {
2909
+ margin: 1px 7px 0 4px;
2910
+ line-height: 0px;
2911
+ }
2912
+
2913
+ .sfsi_plus_Sicons.left .sf_subscrbe {
2914
+ margin: 2px 8px 0 0;
2915
+ }
2916
+
2917
+ .sfsi_plus_Sicons.left .sf_fb {
2918
+ margin: 0 8px 0 0;
2919
+ }
2920
+
2921
+ .sfsi_plus_Sicons.left .sf_twiter {
2922
+ margin: 1px 8px 0 0;
2923
+ }
2924
+
2925
+ .sfsi_plus_Sicons.right .sf_subscrbe {
2926
+ margin: 2px 0 0;
2927
+ }
2928
+
2929
+ .sfsi_plus_Sicons.right .sf_fb {
2930
+ margin: 0 0 0 7px;
2931
+ }
2932
+
2933
+ .sfsi_plus_Sicons.right .sf_twiter {
2934
+ margin: 1px 0 0 8px;
2935
+ }
2936
+
2937
+ .sfsi_plus_Sicons .sf_subscrbe,
2938
+ .sfsi_plus_Sicons .sf_twiter {
2939
+ position: relative;
2940
+ width: 75px;
2941
+ }
2942
+
2943
+ .sfsi_plus_Sicons .sf_twiter iframe {
2944
+ margin: 0px;
2945
+ height: 20px !important;
2946
+ overflow: visible !important;
2947
+ }
2948
+
2949
+ .sfsi_plus_Sicons .sf_twiter iframe #widget {
2950
+ overflow: visible !important;
2951
+
2952
+ }
2953
+
2954
+ .sfsi_plus_Sicons .sf_subscrbe a {
2955
+ width: auto;
2956
+ float: left;
2957
+ border: medium none;
2958
+ padding-top: 0px;
2959
+ }
2960
+
2961
+ .sfsi_plus_Sicons .sf_subscrbe a:focus {
2962
+ outline: medium none;
2963
+ }
2964
+
2965
+ .sfsi_plus_Sicons .sf_subscrbe a img {
2966
+ float: left;
2967
+ height: 20px !important;
2968
+ }
2969
+
2970
+ .sfsi_plus_Sicons .sf_fb {
2971
+ position: relative;
2972
+ width: 75px;
2973
+ }
2974
+
2975
+ .sfsi_plus_Sicons .fb_iframe_widget {
2976
+ float: none;
2977
+ width: auto;
2978
+ vertical-align: middle;
2979
+ margin: 2px 0 0;
2980
+ }
2981
+
2982
+ /*absolute commented as for standard icon it was giving issue while icon was to be aligned centerd.*/
2983
+ .sfsi_plus_Sicons .sf_fb .fb_iframe_widget>span {
2984
+ position: relative;
2985
+ /*width: 450px!important;*/
2986
+ float: left;
2987
+ }
2988
+
2989
+ .tab2 .utube_inn label {
2990
+ font-size: 18px;
2991
+ }
2992
+
2993
+ .sfsi_plc_btm {
2994
+ padding: 5px 14px 9px;
2995
+ }
2996
+
2997
+ .tab7 .field {
2998
+ margin-top: 7px;
2999
+ }
3000
+
3001
+ .sfsi_plus_outr_div ul li .cmcls img {
3002
+ margin-top: 0 !important;
3003
+ }
3004
+
3005
+ .sfsi_plus_outr_div ul li .sfsiplus_inerCnt {
3006
+ float: left;
3007
+ }
3008
+
3009
+ .sfsi_plus_outr_div ul li .sfsiplus_inerCnt .bot_no {
3010
+ position: absolute;
3011
+ padding: 1px 0;
3012
+ font-size: 12px !important;
3013
+ line-height: 12px !important;
3014
+ text-align: center;
3015
+ background: #fff;
3016
+ border-radius: 5px;
3017
+ display: block;
3018
+ left: 50%;
3019
+ margin-left: -20px;
3020
+ border: 1px solid #333;
3021
+ white-space: pre;
3022
+ -webkit-box-sizing: border-box;
3023
+ -moz-box-sizing: border-box;
3024
+ box-sizing: border-box;
3025
+ margin-top: 6px;
3026
+ width: 40px;
3027
+ word-break: break-all;
3028
+ word-wrap: break-word;
3029
+ }
3030
+
3031
+ .sfsi_plus_outr_div ul li .sfsiplus_inerCnt .bot_no:before {
3032
+ content: url(images/count_top_arow.png);
3033
+ position: absolute;
3034
+ height: 9px;
3035
+ margin-left: -7.5px;
3036
+ top: -10px;
3037
+ left: 50%;
3038
+ width: 15px;
3039
+ }
3040
+
3041
+ .sfsi_plus_outr_div {
3042
+ position: fixed;
3043
+ width: 100%;
3044
+ float: none;
3045
+ left: 50%;
3046
+ top: 20%;
3047
+ margin-left: -50%;
3048
+ opacity: 0;
3049
+ z-index: -1;
3050
+ display: block;
3051
+ text-align: center;
3052
+ }
3053
+
3054
+ .sfsi_plus_outr_div .sfsi_plus_FrntInner {
3055
+ display: inline-block;
3056
+ padding: 15px 17px 27px 18px;
3057
+ background: #FFF;
3058
+ border: 1px solid #EDEDED;
3059
+ box-shadow: 0 0 5px #CCC;
3060
+ margin: 20px;
3061
+ position: relative;
3062
+ }
3063
+
3064
+ .sfsi_plus_FrntInner .sfsiclpupwpr {
3065
+ position: absolute;
3066
+ right: -10px;
3067
+ top: -10px;
3068
+ width: 25px;
3069
+ cursor: pointer;
3070
+ }
3071
+
3072
+ .sfsi_plus_FrntInner .sfsiclpupwpr img {
3073
+ width: auto;
3074
+ float: left;
3075
+ border: medium none;
3076
+ }
3077
+
3078
+ .tab7 .like_pop_box {
3079
+ width: 100%;
3080
+ margin: 35px auto auto;
3081
+ position: relative;
3082
+ text-align: center;
3083
+ }
3084
+
3085
+ .tab7 .like_pop_box .sfsi_plus_Popinner {
3086
+ display: inline-block;
3087
+ padding: 18px 20px;
3088
+ box-shadow: 0 0 5px #ccc;
3089
+ -webkit-box-shadow: 0 0 5px #ccc;
3090
+ border: 1px solid #ededed;
3091
+ background: #FFF;
3092
+ }
3093
+
3094
+ .tab7 .like_pop_box .sfsi_plus_Popinner h2 {
3095
+ margin: 0 0 23px;
3096
+ padding: 0;
3097
+ color: #414951;
3098
+ font-family: helveticabold;
3099
+ font-size: 26px;
3100
+ text-align: center;
3101
+ }
3102
+
3103
+ .tab7 .like_pop_box .sfsi_plus_Popinner ul {
3104
+ margin: 0;
3105
+ padding: 0;
3106
+ list-style: none;
3107
+ text-align: center;
3108
+ }
3109
+
3110
+ .tab7 .like_pop_box .sfsi_plus_Popinner ul li {
3111
+ margin: 0;
3112
+ padding: 0;
3113
+ list-style: none;
3114
+ display: inline-block;
3115
+ }
3116
+
3117
+ .tab7 .like_pop_box .sfsi_plus_Popinner ul li span {
3118
+ margin: 0;
3119
+ width: 54px;
3120
+ display: block;
3121
+ background: url(../images/count_bg.png) no-repeat;
3122
+ height: 24px;
3123
+ overflow: hidden;
3124
+ padding: 10px 2px 2px;
3125
+ font-family: helveticaregular;
3126
+ font-size: 16px;
3127
+ text-align: center;
3128
+ line-height: 24px;
3129
+ color: #5a6570;
3130
+ }
3131
+
3132
+ .tab7 .like_pop_box .sfsi_plus_Popinner ul li a {
3133
+ color: #5a6570;
3134
+ text-decoration: none;
3135
+ }
3136
+
3137
+ .sfsi_plus_outr_div .sfsi_plus_FrntInner .sfsi_plus_wicons {
3138
+ margin-bottom: 0;
3139
+ }
3140
+
3141
+ .sfsi_plus_outr_div ul {
3142
+ list-style: none;
3143
+ margin: 0 0 24px;
3144
+ padding: 0;
3145
+ text-align: center;
3146
+ }
3147
+
3148
+ a.sfsiColbtn {
3149
+ color: #5a6570 !important;
3150
+ float: right;
3151
+ font-size: 14px;
3152
+ margin: -35px -30px 0 0;
3153
+ position: relative;
3154
+ right: 0;
3155
+ font-family: helveticaregular;
3156
+ width: 100px;
3157
+ text-decoration: none;
3158
+ }
3159
+
3160
+ .tab3 a.sfsiColbtn {
3161
+ margin-top: -55px;
3162
+ }
3163
+
3164
+ .sfsi_plus_FrntInner ul li:first-of-type .sfsi_plus_wicons {
3165
+ margin-left: 0 !important;
3166
+ }
3167
+
3168
+ ul.sfsiplus_tab_3_icns li .trans_bg {
3169
+ background: #000;
3170
+ padding-left: 3px;
3171
+ }
3172
+
3173
+ .tab2 .sfsiplus_instagram_section {
3174
+ padding-bottom: 20px;
3175
+ }
3176
+
3177
+ h1.abt_titl {
3178
+ text-align: center;
3179
+ margin: 19% 0 0;
3180
+ }
3181
+
3182
+ .sfcm.sfsi_wicon {
3183
+ padding: 0;
3184
+ width: 100% !important;
3185
+ border: medium none !important;
3186
+ height: auto !important;
3187
+ }
3188
+
3189
+ .fb_iframe_widget span {
3190
+ vertical-align: top !important;
3191
+ }
3192
+
3193
+ .sfsi_plus_outr_div .sfsi_plus_FrntInner ul {
3194
+ margin: 0 0 0 3px;
3195
+ }
3196
+
3197
+ .sfsi_plus_outr_div .sfsi_plus_FrntInner ul li {
3198
+ margin: 0 3px 0 0;
3199
+ }
3200
+
3201
+ @-moz-document url-prefix() {
3202
+ .sfcm.sfsi_wicon {
3203
+ margin: -1px;
3204
+ padding: 0;
3205
+ }
3206
+ }
3207
+
3208
+ @media (min-width:320px) and (max-width:480px) {
3209
+
3210
+ .sfsi_plus_tool_tip_2,
3211
+ .tool_tip {
3212
+ padding: 5px 14px 0;
3213
+ }
3214
+
3215
+ .sfsi_plus_inside:last-child {
3216
+ margin-bottom: 18px;
3217
+ clear: both;
3218
+ }
3219
+
3220
+ .sfsi_plus_outr_div {
3221
+ top: 10%
3222
+ }
3223
+
3224
+ .sfsi_plus_FrntInner .sfsi_plus_wicons {
3225
+ width: 31px !important;
3226
+ height: 31px !important;
3227
+ }
3228
+
3229
+ .sfsi_plus_FrntInner .sfsi_plus_wicons img {
3230
+ width: 100%
3231
+ }
3232
+ }
3233
+
3234
+ @media (max-width:320px) {
3235
+
3236
+ .sfsi_plus_tool_tip_2,
3237
+ .tool_tip {
3238
+ padding: 5px 14px 0;
3239
+ }
3240
+
3241
+ .sfsi_plus_inside:last-child {
3242
+ margin-bottom: 18px;
3243
+ clear: both;
3244
+ }
3245
+
3246
+ .sfsi_plus_FrntInner .sfsi_plus_wicons {
3247
+ width: 31px !important;
3248
+ height: 31px !important;
3249
+ }
3250
+
3251
+ .sfsi_plus_FrntInner .sfsi_plus_wicons img {
3252
+ width: 100%
3253
+ }
3254
+ }
3255
+
3256
+ ul.SFSI_lsngfrm {
3257
+ float: left;
3258
+ width: 61%
3259
+ }
3260
+
3261
+ ul.SFSI_instructions {
3262
+ float: left;
3263
+ width: 39%
3264
+ }
3265
+
3266
+ ul.SFSI_instructions li {
3267
+ font-size: 12px !important;
3268
+ line-height: 25px !important;
3269
+ margin: 0 !important;
3270
+ padding: 0 0 0 15px !important;
3271
+ width: 100%
3272
+ }
3273
+
3274
+ /*{Monad}*/
3275
+ /*Upload Skins css*/
3276
+ .cstmskin_popup {
3277
+ width: 500px;
3278
+ background: #FFF;
3279
+ box-shadow: 0 0 5px 3px #d8d8d8;
3280
+ margin: 40px 0px auto;
3281
+ padding: 20px 25px 20px;
3282
+ font-family: helveticaregular;
3283
+ color: #5a6570;
3284
+ height: auto;
3285
+ float: left;
3286
+ position: relative;
3287
+ left: 35%;
3288
+ }
3289
+
3290
+ .cstomskins_wrpr {
3291
+ float: left;
3292
+ width: 100%;
3293
+ }
3294
+
3295
+ .custskinmsg {
3296
+ float: left;
3297
+ font-size: 15px;
3298
+ margin-top: 10px;
3299
+ width: 100%;
3300
+ }
3301
+
3302
+ .custskinmsg>ul {
3303
+ color: #000;
3304
+ float: left;
3305
+ margin-top: 8px;
3306
+ width: 100%;
3307
+ }
3308
+
3309
+ ul.cstmskin_iconlist {
3310
+ float: left;
3311
+ margin-top: 10px;
3312
+ width: 100%;
3313
+ height: 53vh;
3314
+ overflow-y: scroll;
3315
+ }
3316
+
3317
+ .cstmskin_iconlist>li {
3318
+ float: left;
3319
+ margin: 3px 0;
3320
+ width: 100%;
3321
+ }
3322
+
3323
+ .cstm_icnname {
3324
+ float: left;
3325
+ width: 30%;
3326
+ }
3327
+
3328
+ .cstmskins_btn>img {
3329
+ float: left;
3330
+ margin-right: 25px;
3331
+ }
3332
+
3333
+ .cstmskin_btn {
3334
+ width: auto;
3335
+ float: left;
3336
+ padding: 3px 20px;
3337
+ color: #fff;
3338
+ background-color: #12a252;
3339
+ text-decoration: none;
3340
+ margin: 0 10px;
3341
+ }
3342
+
3343
+ .cstmskins_sbmt {
3344
+ width: 100%;
3345
+ float: left;
3346
+ text-align: center;
3347
+ margin-top: 15px;
3348
+ }
3349
+
3350
+ .done_btn {
3351
+ width: auto;
3352
+ padding: 3px 80px;
3353
+ color: #fff;
3354
+ background-color: #12a252;
3355
+ text-decoration: none;
3356
+ font-size: 18px;
3357
+ }
3358
+
3359
+ .cstmskin_btn:hover,
3360
+ .done_btn:hover,
3361
+ .cstmskin_btn:focus,
3362
+ .done_btn:focus {
3363
+ color: #fff;
3364
+ }
3365
+
3366
+ .skswrpr,
3367
+ .dlt_btn {
3368
+ display: none;
3369
+ }
3370
+
3371
+ .cstmutbewpr {
3372
+ width: 100%;
3373
+ float: left;
3374
+ margin-top: 10px;
3375
+ }
3376
+
3377
+ .cstmutbewpr ul.enough_waffling li {
3378
+ width: auto;
3379
+ float: left;
3380
+ margin-right: 20px;
3381
+ }
3382
+
3383
+ .cstmutbewpr ul.enough_waffling li span {
3384
+ float: left;
3385
+ }
3386
+
3387
+ .cstmutbewpr ul.enough_waffling li label {
3388
+ width: auto;
3389
+ float: left;
3390
+ margin-top: 10px;
3391
+ margin-left: 10px;
3392
+ }
3393
+
3394
+ .cstmutbewpr .cstmutbtxtwpr {
3395
+ width: 100%;
3396
+ float: left;
3397
+ padding-top: 10px;
3398
+ }
3399
+
3400
+ .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr {
3401
+ width: 100%;
3402
+ float: left;
3403
+ display: none;
3404
+ }
3405
+
3406
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p,
3407
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p {
3408
+ margin-left: 0px;
3409
+ }
3410
+
3411
+ .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr {
3412
+ width: 100%;
3413
+ float: left;
3414
+ display: none;
3415
+ }
3416
+
3417
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p label,
3418
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p label {
3419
+ width: 120px;
3420
+ }
3421
+
3422
+ .sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a,
3423
+ .sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a.sficn {
3424
+ padding: 0px;
3425
+ margin: 0px;
3426
+ width: 100%;
3427
+ /*float: left;*/
3428
+ border: medium none;
3429
+ }
3430
+
3431
+ .sfsi_socialwpr {
3432
+ width: auto;
3433
+ float: left;
3434
+ }
3435
+
3436
+ .sfsi_socialwpr .sf_fb {
3437
+ float: left;
3438
+ margin: 5px 5px 5px 5px;
3439
+ min-height: 20px;
3440
+ }
3441
+
3442
+ .sfsipyplfrm {
3443
+ float: left;
3444
+ margin-top: 10px;
3445
+ width: 100%;
3446
+ }
3447
+
3448
+ .sfsipyplfrm input[type="submit"] {
3449
+ background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
3450
+ border: medium none;
3451
+ color: #0074a2;
3452
+ cursor: pointer;
3453
+ font-weight: normal;
3454
+ margin: 0;
3455
+ padding: 5px 10px;
3456
+ text-decoration: underline;
3457
+ }
3458
+
3459
+ .sfsipyplfrm input[type="submit"]:hover {
3460
+ color: #2ea2cc
3461
+ }
3462
+
3463
+ .pop_up_box_ex {
3464
+ background: none repeat scroll 0 0 #fff;
3465
+ box-shadow: 0 0 5px 3px #d8d8d8;
3466
+ color: #5a6570;
3467
+ font-family: helveticaregular;
3468
+ margin: 200px auto;
3469
+ min-height: 150px;
3470
+ padding: 20px 25px 0px;
3471
+ position: relative;
3472
+ width: 290px;
3473
+ }
3474
+
3475
+ .pop_up_box_ex {
3476
+ color: #5a6570;
3477
+ font-family: helveticaregular;
3478
+ }
3479
+
3480
+ .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_right_info {
3481
+ font-family: helveticaregular;
3482
+ width: 94.7%;
3483
+ float: left;
3484
+ }
3485
+
3486
+ .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_right_info p label.ckckslctn {
3487
+ display: none;
3488
+ }
3489
+
3490
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li {
3491
+ width: 100% !important;
3492
+ max-width: 100% !important;
3493
+ border-left: 45px solid transparent;
3494
+ -webkit-box-sizing: border-box;
3495
+ -moz-box-sizing: border-box;
3496
+ ;
3497
+ -ms-box-sizing: border-box;
3498
+ -o-box-sizing: border-box;
3499
+ box-sizing: border-box;
3500
+ }
3501
+
3502
+ .tab8 .icons_size>input {
3503
+ background: none repeat scroll 0 0 #e5e5e5;
3504
+ width: 80px;
3505
+ float: left;
3506
+ padding: 10px 0;
3507
+ text-align: center;
3508
+ }
3509
+
3510
+ .tab8 .icons_size>ins {
3511
+ margin-left: 19px;
3512
+ }
3513
+
3514
+ .tab8 .icons_size>span.last {
3515
+ width: auto !important;
3516
+ clear: left
3517
+ }
3518
+
3519
+ .tab8 .radio_section.tb_4_ck {
3520
+ margin: 0 20px 0 0 !important;
3521
+ }
3522
+
3523
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row,
3524
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr p,
3525
+ .tab8 .options {
3526
+ float: none;
3527
+ width: 100%;
3528
+ border-left: 60px solid transparent;
3529
+ -webkit-box-sizing: border-box;
3530
+ -moz-box-sizing: border-box;
3531
+ -o-box-sizing: border-box;
3532
+ -ms-box-sizing: border-box;
3533
+ box-sizing: border-box;
3534
+ }
3535
+
3536
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr label {
3537
+ width: auto;
3538
+ }
3539
+
3540
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .social_icon_like1 ul {
3541
+ margin-left: 15px
3542
+ }
3543
+
3544
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .social_icon_like1 li {
3545
+ width: auto;
3546
+ min-width: auto;
3547
+ margin: 0 50px 0 0
3548
+ }
3549
+
3550
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .usually>li {
3551
+ width: 85% !important;
3552
+ max-width: 100% !important;
3553
+ margin-left: 70px;
3554
+ font-family: 'helveticaneue-light';
3555
+ padding-bottom: 5px
3556
+ }
3557
+
3558
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .options>label {
3559
+ width: 356px !important;
3560
+ margin: 0;
3561
+ width: auto;
3562
+ margin-bottom: 0;
3563
+ margin-top: 0px;
3564
+ }
3565
+
3566
+ .tab8 .row.sfsiplus_PostsSettings_section .options .first.chcklbl {
3567
+ float: left !important;
3568
+ width: 335px !important;
3569
+ }
3570
+
3571
+ .tab8 .row.sfsiplus_PostsSettings_section .options .chckwpr {
3572
+ width: 400px;
3573
+ float: right;
3574
+ }
3575
+
3576
+ .tab8 .row.sfsiplus_PostsSettings_section .options {
3577
+ width: 90%;
3578
+ margin: 0;
3579
+ font-family: 'helveticaneue-light';
3580
+ float: left;
3581
+ margin-bottom: 10px;
3582
+ max-width: 895px;
3583
+ border-left: none;
3584
+ }
3585
+
3586
+ .sfsiplus_toggleonlystndrshrng {
3587
+ margin-bottom: 30px !important
3588
+ }
3589
+
3590
+ .tab8 .row.sfsiplus_PostsSettings_section .options.shareicontextfld {
3591
+ margin: 15px 0;
3592
+ }
3593
+
3594
+ .tab8 .sfsiplus_tab_3_icns.flthmonpg .radio {
3595
+ margin-top: 55px !important;
3596
+ }
3597
+
3598
+ .tab8 .radiodisplaysection {
3599
+ float: left;
3600
+ }
3601
+
3602
+
3603
+
3604
+ /*palak css end*/
3605
+ /*modify by palak*/
3606
+ .tab8 ul.sfsiplus_icn_listing8 li {
3607
+ float: left;
3608
+ padding: 11px 0 26px 0;
3609
+ width: 100%;
3610
+ /*max-width: 1000px;*/
3611
+ margin: 0
3612
+ }
3613
+
3614
+ .sfsiplusplacethemanulywpr {
3615
+ max-width: 98% !important
3616
+ }
3617
+
3618
+ /*modify by palak*/
3619
+ /*modify by palak*/
3620
+ .tab8 ul.sfsiplus_icn_listing8 {
3621
+ list-style: outside none none;
3622
+ margin: 5px 0 0;
3623
+ overflow: hidden;
3624
+ }
3625
+
3626
+ /*modify by palak*/
3627
+ .sfsiplus_right_info label.sfsiplus_sub-subtitle {
3628
+ font-size: 16px !important;
3629
+ font-weight: normal;
3630
+ }
3631
+
3632
+ ul.plus_icn_listing li .sfsiplus_right_info label.sfsiplus_sub-subtitle a {
3633
+ font-size: 13px;
3634
+ }
3635
+
3636
+ .tab8 ul.sfsiplus_tab_3_icns li .radio {
3637
+ margin-top: 7px;
3638
+ }
3639
+
3640
+ .tab8 ul.sfsiplus_tab_3_icns li label {
3641
+ line-height: 50px !important;
3642
+ }
3643
+
3644
+ .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns li {
3645
+ width: 50%;
3646
+ max-width: 450px;
3647
+ min-width: 420px;
3648
+ padding-left: 0;
3649
+ padding-bottom: 15px
3650
+ }
3651
+
3652
+ .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(1),
3653
+ .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(2),
3654
+ .tab8 ul.sfsiplus_icn_listing8 li .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr>li:nth-child(3) {
3655
+ width: 33% !important
3656
+ }
3657
+
3658
+ .space.disblfltonmbl p.list {
3659
+ width: 100%;
3660
+ margin-bottom: 28px
3661
+ }
3662
+
3663
+
3664
+ #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p {
3665
+ display: table
3666
+ }
3667
+
3668
+ /*modify by palak*/
3669
+ .tab8 .row {
3670
+ clear: both;
3671
+ display: block;
3672
+ float: left;
3673
+ font-family: helveticaregular;
3674
+ line-height: 42px;
3675
+ margin-top: 25px;
3676
+ padding-top: 15px;
3677
+ width: 100%;
3678
+ }
3679
+
3680
+ /*modify by palak*/
3681
+ .tab8 .icons_size {
3682
+ margin-top: -12px;
3683
+ }
3684
+
3685
+ .tab8 .icons_size {
3686
+ position: relative;
3687
+ font-family: 'helveticaneue-light';
3688
+ width: 538px;
3689
+ float: right
3690
+ }
3691
+
3692
+ .tab8 .icons_size span {
3693
+ display: block;
3694
+ float: left;
3695
+ font-size: 20px;
3696
+ font-weight: 400;
3697
+ line-height: 42px;
3698
+ margin-right: 18px;
3699
+ }
3700
+
3701
+ .tab8.icons_size span.last {
3702
+ margin-left: 55px;
3703
+ }
3704
+
3705
+ .tab8 .icons_size ins {
3706
+ float: left;
3707
+ font-size: 17px;
3708
+ font-weight: 400;
3709
+ margin-right: 25px;
3710
+ text-decoration: none;
3711
+ margin-bottom: 20px;
3712
+ }
3713
+
3714
+ .tab8 .social_icon_like1 {
3715
+ float: left;
3716
+ margin: 0;
3717
+ padding: 30px 0 0;
3718
+ text-align: center;
3719
+ width: 100%;
3720
+ }
3721
+
3722
+ .tab8 .social_icon_like1 ul {
3723
+ list-style: outside none none;
3724
+ margin: 0;
3725
+ padding: 0;
3726
+ text-align: center;
3727
+ }
3728
+
3729
+ .tab8 .social_icon_like1 li {
3730
+ display: inline-block;
3731
+ list-style: outside none none;
3732
+ margin: 0 0 0 45px !important;
3733
+ padding: 0;
3734
+ width: auto !important;
3735
+ min-width: 100px !important;
3736
+ }
3737
+
3738
+ .tab8 .social_icon_like1 li a {
3739
+ color: #5a6570;
3740
+ display: block;
3741
+ text-decoration: none;
3742
+ }
3743
+
3744
+ .tab8 .social_icon_like1 li img {
3745
+ display: block;
3746
+ float: left;
3747
+ margin-right: 5px;
3748
+ }
3749
+
3750
+ .tab8 ul.usually {
3751
+ list-style: outside none none;
3752
+ margin: 28px 0 15px 60px;
3753
+ padding: 0;
3754
+ float: left
3755
+ }
3756
+
3757
+ .tab8 ul.usually li {
3758
+ font-size: 17px;
3759
+ list-style: outside none none;
3760
+ margin: 0;
3761
+ padding: 0;
3762
+ text-align: left;
3763
+ width: auto;
3764
+ }
3765
+
3766
+ .tab8 ul.enough_waffling {
3767
+ list-style: outside none none;
3768
+ margin: 25px 0 0;
3769
+ padding: 0;
3770
+ text-align: center;
3771
+ }
3772
+
3773
+ .tab8 ul.enough_waffling li {
3774
+ display: inline-block;
3775
+ list-style: outside none none;
3776
+ margin: 0 22px;
3777
+ padding: 0;
3778
+ }
3779
+
3780
+ .tab8 ul.enough_waffling li span {
3781
+ float: left;
3782
+ }
3783
+
3784
+ .tab8 ul.enough_waffling li label {
3785
+ color: #5a6570;
3786
+ float: left;
3787
+ font-family: helveticaregular;
3788
+ font-size: 18px;
3789
+ font-weight: 400;
3790
+ line-height: 38px;
3791
+ margin: 0 0 0 20px;
3792
+ text-align: center;
3793
+ }
3794
+
3795
+ /*modify by palak*/
3796
+ .tab8 .row {
3797
+ clear: both;
3798
+ display: block;
3799
+ float: left;
3800
+ font-family: helveticaregular;
3801
+ line-height: 42px;
3802
+ margin-top: 0px;
3803
+ padding-top: 10px;
3804
+ width: 100%;
3805
+ }
3806
+
3807
+ /*modify by palak*/
3808
+ .tab8 .options {
3809
+ clear: both;
3810
+ float: left;
3811
+ margin-top: 25px;
3812
+ width: auto;
3813
+ float: none;
3814
+ }
3815
+
3816
+ .tab8 .options label.first {
3817
+ font-family: 'helveticaneue-light';
3818
+ font-size: 18px;
3819
+ }
3820
+
3821
+ .tab8 .options label {
3822
+ color: #5a6570;
3823
+ float: left;
3824
+ font-family: 'helveticaneue-light';
3825
+ font-size: 18px;
3826
+ line-height: 46px;
3827
+ width: 345px;
3828
+ }
3829
+
3830
+ .tab8 .options input {
3831
+ background: none repeat scroll 0 0 #e5e5e5;
3832
+ border: 0 none;
3833
+ box-shadow: 2px 2px 3px #dcdcdc inset;
3834
+ float: left;
3835
+ padding: 10px;
3836
+ width: 308px;
3837
+ }
3838
+
3839
+ .tab8 .options .field {
3840
+ float: left;
3841
+ position: relative;
3842
+
3843
+ }
3844
+
3845
+ .tab8 .options .field .select {
3846
+ background: url(../images/select_bg1.jpg) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
3847
+ display: block;
3848
+ font-family: helveticaregular;
3849
+ padding-left: 17px;
3850
+ width: 207px;
3851
+ }
3852
+
3853
+ .tab8 .options .field select.styled {
3854
+ height: 46px;
3855
+ left: 0;
3856
+ line-height: 46px;
3857
+ position: absolute;
3858
+ top: 0;
3859
+ width: 213px;
3860
+ }
3861
+
3862
+ .tab8 .options .field select.styled {
3863
+ line-height: 46px;
3864
+ }
3865
+
3866
+ .tab8 ul.sfsiplus_icn_listing8 li .snglchckcntr .sfsiplus_right_info {
3867
+ float: left;
3868
+ margin-right: 0;
3869
+ text-align: left;
3870
+ width: auto;
3871
+ font-family: 'helveticaneue-light';
3872
+ font-size: 18px;
3873
+ line-height: 30px;
3874
+ }
3875
+
3876
+ .chckwpr .snglchckcntr:first-child {
3877
+ float: left;
3878
+ }
3879
+
3880
+ .chckwpr .snglchckcntr:last-child {
3881
+ float: left;
3882
+ margin-left: 110px;
3883
+ }
3884
+
3885
+ .chckwpr {
3886
+ width: 100%;
3887
+ float: left;
3888
+ }
3889
+
3890
+ .cstmutbchnlidwpr .utbe_instruction,
3891
+ .cstmutbchnlnmewpr .utbe_instruction,
3892
+ .lnkdin_instruction {
3893
+ float: left;
3894
+ line-height: 22px;
3895
+ margin-top: 10px;
3896
+ width: 100%;
3897
+ }
3898
+
3899
+ #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p {
3900
+ font-size: 20px;
3901
+ }
3902
+
3903
+ #accordion .tab8 ul.sfsiplus_tab_3_icns {
3904
+ margin-top: 25px;
3905
+ }
3906
+
3907
+ #accordion .tab8 ul.sfsiplus_tab_3_icns.flthmonpg {
3908
+ margin-left: 45px
3909
+ }
3910
+
3911
+ #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisplaysharingtxt {
3912
+ padding-top: 5px;
3913
+ display: inline;
3914
+ }
3915
+
3916
+ #accordion .tab8 ul.sfsiplus_shwthmbfraftr .labelhdng4,
3917
+ #accordion .tab8 ul.sfsiplus_shwthmbfraftr .row h4.labelhdng4 {
3918
+ color: #555;
3919
+ font-size: 20px;
3920
+ margin-left: 20px;
3921
+ font-family: 'helveticaregular'
3922
+ }
3923
+
3924
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row.sfsiplus_PostsSettings_section {
3925
+ border-left: 105px solid transparent;
3926
+ float: left;
3927
+ padding-top: 0
3928
+ }
3929
+
3930
+ .sfsiplus_toggleonlystndrshrng {
3931
+ margin-bottom: 0 !important
3932
+ }
3933
+
3934
+ .radiodisplaysection {
3935
+ float: left
3936
+ }
3937
+
3938
+ .tab8 .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr .row.sfsiplus_PostsSettings_section>.labelhdng4 {
3939
+ margin-bottom: 20px !important
3940
+ }
3941
+
3942
+ .sfsiplus_shwthmbfraftr {
3943
+ margin-top: 5px !important
3944
+ }
3945
+
3946
+ label.sfsiplus_toglpstpgsbttl {
3947
+ float: left;
3948
+ margin-top: 5px !important
3949
+ }
3950
+
3951
+ #accordion .tab8 ul.sfsiplus_shwthmbfraftr .row h4 {
3952
+ font-family: 'helveticaneue-light';
3953
+ font-weight: normal;
3954
+ font-size: 18px;
3955
+ color: #69737c;
3956
+ float: left
3957
+ }
3958
+
3959
+ .tab8 .row.sfsiplus_PostsSettings_section .options .seconds.chcklbl {
3960
+ float: right;
3961
+ width: 400px !important;
3962
+ }
3963
+
3964
+ .sfsibeforpstwpr {
3965
+ width: 100%;
3966
+ float: left;
3967
+ line-height: 18px;
3968
+ margin: 5px 0;
3969
+ }
3970
+
3971
+ .sfsiaftrpstwpr {
3972
+ width: 100%;
3973
+ float: left;
3974
+ line-height: 18px;
3975
+ margin: 5px 0;
3976
+ }
3977
+
3978
+ .sfsibeforpstwpr .sfsi_plus_Sicons span {
3979
+ font-size: 20px;
3980
+ }
3981
+
3982
+ .sfsiaftrpstwpr .sfsi_plus_Sicons span {
3983
+ font-size: 20px;
3984
+ }
3985
+
3986
+ .sfsibeforpstwpr .sfsi_plus_Sicons {}
3987
+
3988
+ .sfsiaftrpstwpr .sfsi_plus_Sicons {}
3989
+
3990
+ .sfsibeforpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr {
3991
+ width: auto;
3992
+ float: left;
3993
+ }
3994
+
3995
+ .sfsiaftrpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr {
3996
+ width: auto;
3997
+ float: left;
3998
+ }
3999
+
4000
+ .sfsibeforpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr .sfsi_plus_wicons {
4001
+ float: left;
4002
+ }
4003
+
4004
+ .sfsiaftrpstwpr .sfsiplus_norm_row.sfsi_plus_wDivothr .sfsi_plus_wicons {
4005
+ float: left;
4006
+ }
4007
+
4008
+ .sfsi_flicnsoptn3 {
4009
+ color: #69737c;
4010
+ float: left;
4011
+ font-size: 20px;
4012
+ margin: 62px 5px 0 20px;
4013
+ font-family: 'helveticaneue-light';
4014
+
4015
+ width: 120px;
4016
+ }
4017
+
4018
+ .sfsi_ckckslctnlbl {
4019
+ font-weight: bold;
4020
+ }
4021
+
4022
+ .sfsibeforpstwpr iframe {
4023
+ max-width: none;
4024
+ vertical-align: middle;
4025
+ }
4026
+
4027
+ .sfsiaftrpstwpr iframe {
4028
+ max-width: none;
4029
+ vertical-align: middle;
4030
+ }
4031
+
4032
+ .sfwp_fivestar_ul li {
4033
+ display: block;
4034
+ padding-right: 20px;
4035
+ }
4036
+
4037
+ .fb_iframe_widget iframe {
4038
+ max-width: none;
4039
+ }
4040
+
4041
+ .sfsi_mainContainer p.bldtxtmsg {
4042
+ float: left;
4043
+ font-size: 15px;
4044
+ /*font-weight: bold;*/
4045
+ margin-top: 12px;
4046
+ width: 100%;
4047
+ }
4048
+
4049
+ .sfsi_mainContainer p.translatelilne {
4050
+ float: left;
4051
+ font-size: 15px;
4052
+ font-weight: bold;
4053
+ color: #414951;
4054
+ margin-top: 12px;
4055
+ width: 100%;
4056
+ }
4057
+
4058
+ .sfsiplus_icn_listing8 li>div {
4059
+ width: auto;
4060
+ float: left;
4061
+ }
4062
+
4063
+ #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng {
4064
+ padding-bottom: 30px;
4065
+ float: left;
4066
+ }
4067
+
4068
+ #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng {
4069
+ background: none;
4070
+ }
4071
+
4072
+ #accordion .tab8 .sfsiplus_icn_listing8 li .sfsiplus_right_info p.cstmdisextrpdng code {
4073
+ background: none repeat scroll 0 0 transparent;
4074
+ padding-left: 0px;
4075
+ padding-right: 0px;
4076
+ }
4077
+
4078
+ .options.sfsipluspstvwpr {
4079
+ margin-left: 17% !important;
4080
+ margin-left: 0% !important;
4081
+ }
4082
+
4083
+ .tab8 .row.sfsiplus_PostsSettings_section .options.sfsipluspstvwpr .first.chcklbl {
4084
+ width: 180px !important;
4085
+ }
4086
+
4087
+ .sfsiplus_tab_3_icns.sfsiplus_shwthmbfraftr {
4088
+ overflow: visible;
4089
+ }
4090
+
4091
+ /*.sfsi_plus_twt_tool_bdr .sfsi_plus_inside .icon1{margin: 2px 35px 2px !important;clear:both;}*/
4092
+ .sfsi_plus_twt_tool_bdr .sfsi_plus_inside .cstmicon1 a img {
4093
+ margin: 2px 12px 2px !important;
4094
+ clear: both;
4095
+ text-align: center;
4096
+ float: none;
4097
+ }
4098
+
4099
+ .cstmicon1 {
4100
+ text-align: center;
4101
+ }
4102
+
4103
+ .sfsi_plus_Sicons img,
4104
+ .sfsiplusid_facebook img,
4105
+ .sfsiplusid_twitter img {
4106
+ height: 20px;
4107
+ }
4108
+
4109
+ .sfsi_plus_wicons a.sficn,
4110
+ .sfsi_plus_wicons .sfsi_plus_inside a,
4111
+ .sfsi_plus_Sicons div a {
4112
+ box-shadow: none;
4113
+ border: none;
4114
+ }
4115
+
4116
+ .sfsi_plus_Sicons .sf_pinit {
4117
+ margin-right: 4px;
4118
+ }
4119
+
4120
+ .sfsi_plus_Sicons .sf_pinit>span {
4121
+ height: 22px !important;
4122
+ vertical-align: middle;
4123
+ }
4124
+
4125
+ .sfsi_plus_Sicons .sf_pinit>span {
4126
+ height: 20px !important;
4127
+ vertical-align: middle;
4128
+ }
4129
+
4130
+ /*.sfsi_plus_Sicons .sf_pinit > span > span
4131
+ {
4132
+ display: inline-block;
4133
+ width: 47px !important;
4134
+ position: relative !important;
4135
+ margin-left: 40px;
4136
+ vertical-align: top;
4137
+ right: 0 !important;
4138
+ }*/
4139
+ .sfsibeforpstwpr .sfsi_plus_Sicons .sf_pinit span {
4140
+ font-size: 11px !important;
4141
+ }
4142
+
4143
+ .sfsiaftrpstwpr .sfsi_plus_Sicons .sf_pinit span {
4144
+ font-size: 11px !important;
4145
+ }
4146
+
4147
+ .sfsibeforpstwpr .sfsi_plus_Sicons .sfsi_plus_inside .icon2 span {
4148
+ font-size: 11px !important;
4149
+ }
4150
+
4151
+ .sfsiaftrpstwpr .sfsi_plus_Sicons .sfsi_plus_inside .icon2 span {
4152
+ font-size: 11px !important;
4153
+ }
4154
+
4155
+ .sfsi_plus_wicons a {
4156
+ box-shadow: none !important;
4157
+ }
4158
+
4159
+ .sfsi_plus_inside .fb_iframe_widget {
4160
+ -webkit-appearance: none !important;
4161
+ }
4162
+
4163
+ .sfsi_plus_inside img {
4164
+ margin-bottom: 0;
4165
+ vertical-align: bottom !important;
4166
+ }
4167
+
4168
+ .sfsi_plus_Sicons .sf_pinit {
4169
+ margin: 0 0 0 10px;
4170
+ }
4171
+
4172
+ .wp-block-ultimate-social-media-plus-sfsi-plus-share-block .sfsi_plus_block_text_before_icon {
4173
+ display: inline-block;
4174
+ vertical-align: top;
4175
+ }
4176
+
4177
+ .wp-block-ultimate-social-media-plus-sfsi-plus-share-block .sfsi_plus_block {
4178
+ display: inline-block
4179
+ }
4180
+
4181
+ /* MZ CODE START */
4182
+ .sfsi_plus_vk_tool_bdr {
4183
+ width: 68px;
4184
+ height: auto
4185
+ }
4186
+
4187
+ .sfsi_plus_vk_tool_bdr .sfsi_plus_inside {
4188
+ text-align: center;
4189
+ width: 100%;
4190
+ float: left;
4191
+ overflow: hidden
4192
+ }
4193
+
4194
+ .sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon1 {
4195
+ margin: 2px 0 2px 0;
4196
+ height: 28px;
4197
+ display: inline-block;
4198
+ float: none
4199
+ }
4200
+
4201
+ .sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon2 {
4202
+ margin: 5px auto;
4203
+ min-height: 25px !important;
4204
+ display: block;
4205
+ overflow: hidden;
4206
+ }
4207
+
4208
+ .sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon3 {
4209
+ margin: 2px 0 2px 0;
4210
+ height: 20px;
4211
+ display: inline-block;
4212
+ float: none
4213
+ }
4214
+
4215
+ .sfsi_plus_vk_tool_bdr .sfsi_plus_inside .icon4 {
4216
+ display: inline-block !important;
4217
+ float: none !important;
4218
+ vertical-align: middle !important;
4219
+ width: 100% !important
4220
+ }
4221
+
4222
+ .sfsiplusid_telegram .sfsi_plus_inside .icon2 img,
4223
+ .sfsiplusid_vk .sfsi_plus_inside .icon2 img,
4224
+ .sfsiplusid_weibo .sfsi_plus_inside .icon2 img,
4225
+ .sfsiplusid_xing .sfsi_plus_inside .icon2 img {
4226
+ width: 80px;
4227
+ height: 24px;
4228
+ }
4229
+
4230
+ .sfsiplusid_vk .sfsi_plus_inside .icon1 img,
4231
+ .sfsiplusid_weibo .sfsi_plus_inside .icon1 img,
4232
+ .sfsiplusid_xing .sfsi_plus_inside .icon1 img {
4233
+ width: 80px;
4234
+ }
4235
+
4236
+ /* MZ CODE END */
4237
+ .sfsiplusid_ok .sfsi_plus_inside,
4238
+ .sfsiplusid_telegram .sfsi_plus_inside {
4239
+ text-align: center;
4240
+ }
4241
+
4242
+ .sfsiplusid_ok .sfsi_plus_inside .icon3 img,
4243
+ .sfsiplusid_telegram .sfsi_plus_inside .icon1 img {
4244
+ width: 107px;
4245
+ height: 37px;
4246
+ }
4247
+
4248
+ .sfsiplusid_ok .sfsi_plus_inside .icon2 img {
4249
+ width: 65px;
4250
+ height: 30px;
4251
+ margin-top: 5px;
4252
+ }
4253
+
4254
+ .sfsiplusid_ok .sfsi_plus_inside .icon1 img {
4255
+ width: 103px;
4256
+ height: 25px;
4257
+ }
4258
+
4259
+ .sfsiplusid_vk .sfsi_plus_inside .icon1 img,
4260
+ .sfsiplusid_weibo .sfsi_plus_inside .icon1 img,
4261
+ .sfsiplusid_xing .sfsi_plus_inside .icon1 img {
4262
+ width: 80px;
4263
+ }
4264
+
4265
+ .sfsiplusid_wechat .sfsi_plus_inside .icon1 {
4266
+ margin: 10px;
4267
+ }
4268
+
4269
+ .sfsiplusid_round_icon_wechat {
4270
+ border-radius: 20px;
4271
+ }
4272
+
4273
+ .sfsi_plus_overlay {
4274
+ background: rgba(0, 0, 0, .8);
4275
+ width: 100%;
4276
+ height: 100%;
4277
+ top: 0;
4278
+ left: 0;
4279
+ z-index: 99999999;
4280
+ position: fixed;
4281
+ }
4282
+
4283
+ .sfsi_plus_wechat_scan .sfsi_plus_inner_display {
4284
+ text-align: center;
4285
+ vertical-align: middle;
4286
+ margin-top: 50px;
4287
+ }
4288
+
4289
+ .sfsi_plus_overlay a.close_btn {
4290
+ position: absolute;
4291
+ top: 20px;
4292
+ right: 20px;
4293
+ background: #fff;
4294
+ border-radius: 15px;
4295
+ width: 30px;
4296
+ height: 30px;
4297
+ line-height: 30px;
4298
+ text-align: center;
4299
+ }
4300
+
4301
+ .hide {
4302
+ display: none;
4303
+ }
4304
+
4305
+ .show {
4306
+ display: block;
4307
+ }
4308
+
4309
+ .sfsiplusid_facebook .icon3 span {
4310
+ width: 62px !important;
4311
+ height: 20px !important;
4312
+ }
4313
+
4314
+ .sfsiplusid_facebook .icon3 iframe {
4315
+ width: unset !important;
4316
+ height: unset !important;
4317
+ }
4318
+
4319
+ .sfsiplusid_twitter .icon2 iframe {
4320
+ width: 62px !important;
4321
+ height: 20px !important;
4322
+ }
4323
+
4324
+ a.pop-up .radio {
4325
+ opacity: 0.5;
4326
+ background-position: 0px 0px !important;
4327
+ }
4328
+
4329
+ .tab8 .sfsi_plus_responsive_icon_option_li .options .first.first.first {
4330
+ width: 25% !important;
4331
+ }
4332
+
4333
+ .sfsi_plus_responsive_icon_gradient {
4334
+ background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.17) 0%, rgba(255, 255, 255, 0.17) 100%);
4335
+ background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.17) 0%, rgba(255, 255, 255, 0.17) 100%);
4336
+ background-image: linear-gradient(to bottom, rgba(0, 0, 0, .17) 0%, rgba(255, 255, 255, .17) 100%);
4337
+ }
4338
+
4339
+ .sfsi_plus_responsive_icons a {
4340
+ text-decoration: none !important;
4341
+ box-shadow: none !important;
4342
+ }
4343
+
4344
+ .sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_facebook_container {
4345
+ background-color: #336699;
4346
+ }
4347
+
4348
+ .sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_follow_container {
4349
+ background-color: #00B04E;
4350
+ }
4351
+
4352
+ .sfsi_plus_responsive_icons .sfsi_plus_responsive_icon_twitter_container {
4353
+ background-color: #55ACEE;
4354
+ }
4355
+
4356
+ .sfsi_plus_small_button {
4357
+ line-height: 0px;
4358
+ height: unset;
4359
+ padding: 6px !important;
4360
+ }
4361
+
4362
+ .sfsi_plus_small_button span {
4363
+ margin-left: 10px;
4364
+ font-size: 16px;
4365
+ padding: 0px;
4366
+ line-height: 16px;
4367
+ vertical-align: -webkit-baseline-middle !important;
4368
+ margin-left: 10px;
4369
+ }
4370
+
4371
+ .sfsi_plus_small_button img {
4372
+ max-height: 16px !important;
4373
+ padding: 0px;
4374
+ line-height: 0px;
4375
+ vertical-align: -webkit-baseline-middle !important;
4376
+ }
4377
+
4378
+ .sfsi_plus_medium_button span {
4379
+ margin-left: 10px;
4380
+ font-size: 18px;
4381
+ padding: 0px;
4382
+ line-height: 16px;
4383
+ vertical-align: -webkit-baseline-middle !important;
4384
+ margin-left: 10px;
4385
+ }
4386
+
4387
+ .sfsi_plus_medium_button img {
4388
+ max-height: 16px !important;
4389
+ padding: 0px;
4390
+ line-height: 0px;
4391
+ vertical-align: -webkit-baseline-middle !important;
4392
+ }
4393
+
4394
+ .sfsi_plus_medium_button {
4395
+ line-height: 0px;
4396
+ height: unset;
4397
+ padding: 10px !important;
4398
+ }
4399
+
4400
+ .sfsi_plus_medium_button span {
4401
+ margin-left: 10px;
4402
+ font-size: 18px;
4403
+ padding: 0px;
4404
+ line-height: 16px;
4405
+ vertical-align: -webkit-baseline-middle !important;
4406
+ margin-left: 10px;
4407
+ }
4408
+
4409
+ .sfsi_plus_medium_button img {
4410
+ max-height: 16px !important;
4411
+ padding: 0px;
4412
+ line-height: 0px;
4413
+ vertical-align: -webkit-baseline-middle !important;
4414
+ }
4415
+
4416
+ .sfsi_plus_medium_button {
4417
+ line-height: 0px;
4418
+ height: unset;
4419
+ padding: 10px !important;
4420
+ }
4421
+
4422
+ .sfsi_plus_large_button span {
4423
+ font-size: 20px;
4424
+ padding: 0px;
4425
+ line-height: 16px;
4426
+ vertical-align: -webkit-baseline-middle !important;
4427
+ display: inline;
4428
+ margin-left: 10px;
4429
+ }
4430
+
4431
+ .sfsi_plus_large_button img {
4432
+ max-height: 16px !important;
4433
+ padding: 0px;
4434
+ line-height: 0px;
4435
+ vertical-align: -webkit-baseline-middle !important;
4436
+ display: inline;
4437
+ }
4438
+
4439
+ .sfsi_plus_large_button {
4440
+ line-height: 0px;
4441
+ height: unset;
4442
+ padding: 13px !important;
4443
+ }
4444
+
4445
+ .sfsi_plus_responsive_icons .sfsi_plus_icons_container span {
4446
+ font-family: sans-serif;
4447
+ font-size: 15px;
4448
+ }
4449
+
4450
+ .sfsi_plus_icons_container_box_fully_container {
4451
+ flex-wrap: wrap;
4452
+ }
4453
+
4454
+ .sfsi_plus_icons_container_box_fully_container a {
4455
+ flex-basis: auto !important;
4456
+ flex-grow: 1;
4457
+ flex-shrink: 1;
4458
+ margin-bottom: 5px;
4459
+ }
4460
+
4461
+ .sfsi_plus_icons_container>a {
4462
+ float: left !important;
4463
+ text-decoration: none !important;
4464
+ -webkit-box-shadow: unset !important;
4465
+ box-shadow: unset !important;
4466
+ -webkit-transition: unset !important;
4467
+ transition: unset !important;
4468
+ margin-bottom: 5px !important;
4469
+ }
4470
+
4471
+ .sfsi_plus_small_button {
4472
+ line-height: 0px;
4473
+ height: unset;
4474
+ padding: 6px !important;
4475
+ }
4476
+
4477
+ .sfsi_plus_small_button span {
4478
+ margin-left: 10px;
4479
+ font-size: 16px;
4480
+ padding: 0px;
4481
+ line-height: 16px;
4482
+ vertical-align: -webkit-baseline-middle !important;
4483
+ margin-left: 10px;
4484
+ }
4485
+
4486
+ .sfsi_plus_small_button img {
4487
+ max-height: 16px !important;
4488
+ padding: 0px;
4489
+ line-height: 0px;
4490
+ vertical-align: -webkit-baseline-middle !important;
4491
+ }
4492
+
4493
+ .sfsi_plus_medium_button span {
4494
+ margin-left: 10px;
4495
+ font-size: 18px;
4496
+ padding: 0px;
4497
+ line-height: 16px;
4498
+ vertical-align: -webkit-baseline-middle !important;
4499
+ margin-left: 10px;
4500
+ }
4501
+
4502
+ .sfsi_plus_medium_button img {
4503
+ max-height: 16px !important;
4504
+ padding: 0px;
4505
+ line-height: 0px;
4506
+ vertical-align: -webkit-baseline-middle !important;
4507
+ }
4508
+
4509
+ .sfsi_plus_medium_button {
4510
+ line-height: 0px;
4511
+ height: unset;
4512
+ padding: 10px !important;
4513
+ }
4514
+
4515
+ .sfsi_plus_medium_button span {
4516
+ margin-left: 10px;
4517
+ font-size: 18px;
4518
+ padding: 0px;
4519
+ line-height: 16px;
4520
+ vertical-align: -webkit-baseline-middle !important;
4521
+ margin-left: 10px;
4522
+ }
4523
+
4524
+ .sfsi_plus_medium_button img {
4525
+ max-height: 16px !important;
4526
+ padding: 0px;
4527
+ line-height: 0px;
4528
+ vertical-align: -webkit-baseline-middle !important;
4529
+ }
4530
+
4531
+ .sfsi_plus_medium_button {
4532
+ line-height: 0px;
4533
+ height: unset;
4534
+ padding: 10px !important;
4535
+ }
4536
+
4537
+ .sfsi_plus_large_button span {
4538
+ font-size: 20px;
4539
+ padding: 0px;
4540
+ line-height: 16px;
4541
+ vertical-align: -webkit-baseline-middle !important;
4542
+ display: inline;
4543
+ margin-left: 10px;
4544
+ }
4545
+
4546
+ .sfsi_plus_large_button img {
4547
+ max-height: 16px !important;
4548
+ padding: 0px;
4549
+ line-height: 0px;
4550
+ vertical-align: -webkit-baseline-middle !important;
4551
+ display: inline;
4552
+ }
4553
+
4554
+ .sfsi_plus_large_button {
4555
+ line-height: 0px;
4556
+ height: unset;
4557
+ padding: 13px !important;
4558
+ }
4559
+
4560
+ .sfsi_plus_responsive_icons_count {
4561
+ padding: 5px 10px;
4562
+ float: left !important;
4563
+ display: inline-block;
4564
+ margin-right: 0px;
4565
+ margin-top: 2px;
4566
+ }
4567
+
4568
+ .sfsi_plus_responsive_icons_count h3 {
4569
+ font-family: 'sans-serif' !important;
4570
+ font-weight: 900;
4571
+ font-size: 32px !important;
4572
+ line-height: 0px !important;
4573
+ padding: 0px;
4574
+ margin: 0px;
4575
+ }
4576
+
4577
+ .sfsi_plus_responsive_icons_count h6 {
4578
+ font-family: 'sans-serif' !important;
4579
+ font-weight: 900;
4580
+ padding: 0px;
4581
+ margin: 0px;
4582
+ }
4583
+
4584
+ .sfsi_plus_responsive_icons a,
4585
+ .sfsi_plus_responsive_icons h3,
4586
+ .sfsi_plus_responsive_icons h6 {
4587
+ text-decoration: none !important;
4588
+ border: 0 !important;
4589
+ }
4590
+
4591
+ .sfsi_plus_responsive_with_counter_icons {
4592
+ width: calc(100% - 100px) !important;
4593
+ }
4594
+
4595
+ .sfsiresponsive_icon_preview {
4596
+ padding: 0px 0 20px 0;
4597
+ min-width: 100%;
4598
+ }
4599
+
4600
+ .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_large_button {
4601
+ padding: 12px 13px 9px 13px !important;
4602
+ }
4603
+
4604
+ .sfsi_plus_responsive_icons_count.sfsi_plus_fixed_count_container.sfsi_plus_medium_button {
4605
+ padding: 9px 10px 7px 10px !important;
4606
+ }
4607
+
4608
+ .sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
4609
+ padding: 7px 6px !important;
4610
+ }
4611
+
4612
+ .sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
4613
+ padding: 7px 6px !important;
4614
+ margin-top: 2px;
4615
+ }
4616
+
4617
+ .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h6 {
4618
+ display: inline-block;
4619
+ font-size: 12px !important;
4620
+ vertical-align: middle;
4621
+ }
4622
+
4623
+ .sfsi_plus_responsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_medium_button {
4624
+ padding: 9px 10px 7px 10px !important;
4625
+ }
4626
+
4627
+ .sfsi_plus_responsive_icons_count.sfsi_plus_medium_button h3 {
4628
+ font-size: 21px !important;
4629
+ vertical-align: top;
4630
+ line-height: 8px !important;
4631
+ margin: 0px 0px 12px 0px !important;
4632
+ font-weight: 900;
4633
+ padding: 0px;
4634
+ }
4635
+
4636
+ .sfsi_plus_esponsive_icons_count.sfsi_plus_responsive_count_container.sfsi_plus_large_button h3 {
4637
+ margin: 0px 0px 15px 0px !important;
4638
+ }
4639
+
4640
+ .sfsi_plus_responsive_icons_count.sfsi_plus_large_button h3 {
4641
+ font-size: 26px !important;
4642
+ vertical-align: top;
4643
+ line-height: 6px !important;
4644
+ }
4645
+
4646
+ .sfsi_plus_responsive_icons_count h3 {
4647
+ font-family: 'sans-serif' !important;
4648
+ font-weight: 900;
4649
+ padding: 0px;
4650
+ }
4651
+
4652
+ .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
4653
+ font-size: 20px !important;
4654
+ display: inline-block;
4655
+ vertical-align: middle;
4656
+ }
4657
+
4658
+ .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
4659
+ margin: 0px !important;
4660
+ }
4661
+
4662
+ .sfsi_plus_responsive_icons_count h3 {
4663
+ font-family: 'sans-serif' !important;
4664
+ font-weight: 900;
4665
+ line-height: 0px !important;
4666
+ padding: 0px;
4667
+ margin: 0px;
4668
+ }
4669
+
4670
+ .sfsi_plus_responsive_icons a,
4671
+ .sfsi_plus_responsive_icons h3,
4672
+ .sfsi_plus_responsive_icons h6 {
4673
+ text-decoration: none !important;
4674
+ border: 0 !important;
4675
+ }
4676
+
4677
+ .sfsi_plus_responsive_icons_count.sfsi_plus_small_button {
4678
+ padding: 7px 6px !important;
4679
+ margin-top: 2px;
4680
+ }
4681
+
4682
+ .sfsi_plus_responsive_icons_count.sfsi_plus_large_button h3 {
4683
+ margin-top: 0 !important;
4684
+ margin-bottom: 8px !important;
4685
+ }
4686
+
4687
+ .sfsi_plus_responsive_icons_count.sfsi_plus_large_button h6 {
4688
+ font-size: 13px !important;
4689
+ }
4690
+
4691
+ .sfsi_plus_responsive_icons_count {
4692
+ vertical-align: top;
4693
+ }
4694
+
4695
+ .sfsi_plus_responsive_icons_count {
4696
+ float: left;
4697
+ }
4698
+
4699
+ .sfsi_plus_small_button {
4700
+ line-height: 0px;
4701
+ height: unset;
4702
+ }
4703
+
4704
+ .sfsi_plus_responsive_icons a,
4705
+ .sfsi_plus_responsive_icons h3,
4706
+ .sfsi_plus_responsive_icons h6 {
4707
+ text-decoration: none !important;
4708
+ border: 0 !important;
4709
+ }
4710
+
4711
+ .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h3 {
4712
+ font-size: 20px !important;
4713
+ display: inline-block;
4714
+ vertical-align: middle;
4715
+ margin: 0px !important;
4716
+ }
4717
+
4718
+ .sfsi_plus_responsive_icons a,
4719
+ .sfsi_plus_responsive_icons h3,
4720
+ .sfsi_plus_responsive_icons h6 {
4721
+ text-decoration: none !important;
4722
+ font-family: helveticaregular !important;
4723
+ border: 0 !important;
4724
+ }
4725
+
4726
+ .sfsi_plus_responsive_icons_count h3 {
4727
+ line-height: 0px !important;
4728
+ padding: 0px;
4729
+ }
4730
+
4731
+ .sfsi_plus_responsive_icons_count.sfsi_plus_small_button h6 {
4732
+ display: inline-block;
4733
+ font-size: 12px !important;
4734
+ /*vertical-align: middle;*/
4735
+ margin: 0px !important;
4736
+ line-height: initial !important;
4737
+ padding: 0;
4738
+ margin: 0;
4739
+ }
4740
+
4741
+ .sfsi_plus_responsive_icons_count h6 {
4742
+ margin: 0 !important;
4743
+ }
4744
+
4745
+ .sfsi_plus_responsive_icons_count h6 {
4746
+ padding: 0px;
4747
+ }
4748
+
4749
+ .sfsi_plus_responsive_icons a,
4750
+ .sfsi_plus_responsive_icons h3,
4751
+ .sfsi_plus_responsive_icons h6 {
4752
+ text-decoration: none !important;
4753
+ font-family: helveticaregular !important;
4754
+ border: 0 !important;
4755
+ }
4756
+
4757
+ .sfsi_plus_responsive_icons_count.sfsi_plus_medium_button h6 {
4758
+ font-size: 11px !important;
4759
+ line-height: 0px !important;
4760
+ margin: 0px 0px 0px 0px !important;
4761
+ }
4762
+
4763
+
4764
+ .sfsi_plus.sfsi_plus_widget_main_container .sfsi_plus_widget_sub_container {
4765
+ float: none;
4766
+ }
4767
+
4768
+ .export_selections {
4769
+ clear: both;
4770
+ color: #afafaf;
4771
+ font-size: 23px;
4772
+ display: flex;
4773
+ height: 0px;
4774
+ position: absolute;
4775
+ top: 41px;
4776
+ right: 0;
4777
+ }
4778
+
4779
+ .save_export {
4780
+ clear: both;
4781
+ position: relative;
4782
+ }
4783
+
4784
+ .export {
4785
+ padding-right: 11px;
4786
+ text-decoration: underline;
4787
+ cursor: pointer;
4788
+ font-size: 20px;
4789
  }
dist/blocks.build.js CHANGED
@@ -1 +1 @@
1
- !function(e){function t(i){if(s[i])return s[i].exports;var o=s[i]={i:i,l:!1,exports:{}};return e[i].call(o.exports,o,o.exports,t),o.l=!0,o.exports}var s={};t.m=e,t.c=s,t.d=function(e,s,i){t.o(e,s)||Object.defineProperty(e,s,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var s=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(s,"a",s),s},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});s(1)},function(e,t,s){"use strict";function i(e,t,s){return t in e?Object.defineProperty(e,t,{value:s,enumerable:!0,configurable:!0,writable:!0}):e[t]=s,e}function o(e){var t=e.jscode;return f("div",{className:"sfsi_plus_block_container"},"\n\t",f("div",{className:"sfsi_plus_block"},""),"\n\t",f("script",{},t),"\n")}function n(e){var t=e.jscode;"rectangle"===e.iconType&&(t=t.replace(/window.location.href/gi,'window.location.href+"&ractangle_icon=1"'));var s="yes",i="Please Share:";return e.showTextBeforeShare||""!==e.showTextBeforeShare?s=e.showTextBeforeShare:onAttrChange("showTextBeforeShare","yes"),e.textBeforeShare||""!==e.textBeforeShare?i=e.textBeforeShare:onAttrChange("textBeforeShare","Please Share:"),f("div",{className:"sfsi_plus_block_wrapper"},"\n\t","yes"==s&&f("span",{className:"sfsi_plus_block_text_before_icon"},i),"\n",f("div",{className:"sfsi_plus_block","data-count":e.maxPerRow,"data-align":e.iconAlignemt,"data-icon-type":e.iconType},""),"\n\t")}function l(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=parseInt(jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsi_plus_wDiv div").css("width"))||40,s=parseInt(jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsi_plus_wDiv div").css("margin-left"))||0,i=(t+s)*e;console.log(t,s,e);var o=jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsi_plus_wDiv img").first().height(),n=jQuery(".wp-block.is-selected .sfsi_plus_block_text_before_icon").height();jQuery(".wp-block.is-selected .sfsi_plus_block_text_before_icon").css({"margin-top":(n-o)/2-2+"px"});var l=jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsiplus_norm_row");jQuery(".wp-block.is-selected .sfsi_plus_block_wrapper .sfsiplus_norm_row").length<1?setTimeout(function(){l.css({width:i+"px"})},1e3):l.css({width:i+"px"}),a()}function a(){var e=jQuery(".wp-block.is-selected .sfsi_plus_block_container"),t=e.find(".sfsi_plus_block").attr("data-align");jQuery(e).find(".sfsi_plus_block_text_before_icon").css({display:"inherit"}),jQuery(e).css({"text-align":t})}function r(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;null!==e&&void 0!==e||(e="round"),null==s&&(s=$(document));var i="";return i=window.sfsi_plus_links&&window.sfsi_plus_links.rest_url?window.sfsi_plus_links.rest_url:window.sfsi_plus_links&&window.sfsi_plus_links.pretty_perma&&"no"===window.sfsi_plus_links.pretty_perma?"/index.php?rest_route=/":"/wp-json/",window.sfsi_plus_links&&window.sfsi_plus_links.pretty_perma&&"no"===window.sfsi_plus_links.pretty_perma?(i=i.replace(/\/$/,""),i+=encodeURI("/ultimate-social-media-plus/v1/icons/"),i+="&"):i+="ultimate-social-media-plus/v1/icons/?",i+="admin_refereal=true&ractangle_icon="+("round"==e?0:1),jQuery.ajax({url:i,method:"GET"}).done(function(i){jQuery(s).find(".sfsi_plus_block").length>0?(jQuery(s).find(".sfsi_plus_block").html(i),jQuery(s).find(".sfsi_plus_block_text_before_icon").css({display:"inherit"}),console.log(t.maxPerRow),l(t.maxPerRow),"round"!==e&&u()):(setTimeout(function(){jQuery(".sfsi_plus_block").html(i),console.log(t.maxPerRow),l(t.maxPerRow),jQuery(s).find(".sfsi_plus_block_text_before_icon").css({display:"inherit"}),console.log("now updated")},5e3),console.log("timeset"))}).fail(function(e){jQuery(s).find(".sfsi_plus_block").html(e.responseText.replace("/\\/g",""))})}function u(){window.gapi&&(window.gapi.plusone.go(),window.gapi.plus.go(),window.gapi.ytsubscribe.go()),window.twttr&&window.twttr.widgets.load(),window.IN&&window.IN.parse&&window.IN.parse(),window.addthis&&(window.addthis.toolbox?window.addthis.toolbox(".addthis_button.sficn"):(window.addthis.init(),window.addthis.toolbox(".addthis_button.sficn"))),window.PinUtils&&window.PinUtils.build(),window.FB&&window.FB.XFBML&&window.FB.XFBML.parse()}var c=s(2),d=(s.n(c),s(3)),p=(s.n(d),wp.i18n.__),_=wp.blocks,w=_.registerBlockType,f=(_.RichText,_.TextControl,_.AlignmentToolbar,_.BlockControls,_.InspectorControls,wp.element.createElement),h=f("svg",{width:20,height:20},f("g",{transform:"translate(0.000000,20.000000) scale(0.0062,-0.0070)",fill:"#000000",stroke:"none"},f("path",{d:"M2055 2721 c-284 -83 -461 -332 -442 -624 l6 -89 -72 6 c-406 39 -818 246 -1090 548 l-66 73 -26 -60 c-101 -227 -55 -484 120 -661 l72 -74 -32 0 c-39 0 -127 26 -179 52 l-39 20 6 -74 c18 -224 178 -428 395 -504 58 -20 61 -22 35 -29 -15 -4 -72 -6 -126 -6 -98 1 -98 1 -92 -21 19 -62 77 -150 141 -214 88 -89 200 -148 317 -166 43 -7 77 -15 77 -18 0 -7 -152 -102 -205 -128 -72 -36 -216 -82 -302 -97 -46 -8 -146 -15 -221 -16 -159 -1 -160 2 10 -85 257 -131 542 -193 838 -181 209 8 392 45 572 115 l68 26 0 393 0 393 -100 0 c-93 0 -100 1 -100 20 0 11 -1 90 -1 175 0 85 1 160 1 165 0 6 40 10 100 10 l100 0 1 138 c1 144 3 170 20 241 34 147 165 265 319 288 49 8 174 9 358 5 l62 -2 0 -175 0 -175 -127 0 c-83 0 -137 -5 -153 -13 -35 -18 -46 -61 -49 -193 l-2 -114 165 0 166 0 0 -37 c0 -21 -7 -96 -15 -168 -8 -71 -15 -138 -15 -147 0 -16 -14 -18 -150 -18 l-150 0 0 -332 c1 -686 3 -637 -22 -642 -13 -3 -90 -8 -172 -12 -82 -3 -143 -10 -136 -14 6 -4 93 -8 191 -9 l179 -2 0 272 0 271 63 72 c119 134 198 250 273 397 113 225 184 512 184 745 l0 101 79 66 c64 54 226 235 217 244 -1 1 -26 -6 -55 -17 -59 -23 -176 -55 -235 -65 l-40 -7 50 39 c86 69 147 149 184 242 l19 49 -88 -43 c-69 -34 -199 -81 -276 -99 -5 -2 -37 19 -70 46 -150 122 -366 170 -540 119z"})));if(w("ultimate-social-media-plus/sfsi-plus-share-block",{title:p("Social Icons"),icon:h,category:"common",keywords:[p("Social Icons"),p("Social share"),p("Gutenberg Share")],attributes:{jscode:{default:"\n\t\tjQuery(document).ready(function($) {\n\t\t\tjQuery.ajax({\n\t\t\t\t'url': '/wp-json/ultimate-social-media-plus/v1/icons/?share_url='+window.location.href,\n\t\t\t\t'method': 'GET'\n\t\t\t}).done( function(response){\n\t\t\t\t$('.sfsi_plus_block_wrapper .sfsi_plus_block').html(response);sfsi_plus_update_iconcount();if(window.gapi){window.gapi.plusone.go();window.gapi.plus.go();window.gapi.ytsubscribe.go();};if(window.twttr){window.twttr.widgets.load();};if(window.IN){window.IN.parse();};if(window.addthis){if(window.addthis.toolbox){window.addthis.toolbox('.addthis_button.sficn');}else{window.addthis.init();window.addthis.toolbox('.addthis_button.sficn');}};if(window.PinUtils){window.PinUtils.build();};if(jQuery('.sfsi_plus_wDiv').length > 0) {setTimeout(function() { var s = parseInt(jQuery('.sfsi_plus_wDiv').height()) + 15 + 'px';jQuery('.sfsi_plus_holders').each(function() {jQuery(this).css('height', s);});jQuery('.sfsi_plus_widget').css('min-height', 'auto');}, 200);};if(window.FB){if(window.FB.XFBML){window.FB.XFBML.parse();}};\n\t\t\t});\n\t\t});\n\t",type:"string"},showTextBeforeShare:{type:"string",default:"yes"},textBeforeShare:{type:"string",default:"Please Share:"},iconType:{type:"string",default:"round"},iconAlignemt:{type:"string",default:"left"},maxPerRow:{type:"string",default:"5"}},edit:function(e){function t(t,s){e.setAttributes(i({},t,s))}var s=e.setAttributes,o=e.attributes,n="yes",a="Please Share:";o.showTextBeforeShare||""!==o.showTextBeforeShare?n=o.showTextBeforeShare:t("showTextBeforeShare","yes"),o.textBeforeShare||""!==o.textBeforeShare?a=o.textBeforeShare:t("textBeforeShare","Please Share:");var u=jQuery('div[data-block="'+e.clientId+'"]').find(".sfsi_plus_block_container");if(u.length>0){0===u.find(".sfsi_plus_block>div").length&&r(o.iconType,o,u)}else setTimeout(function(){var t=jQuery('div[data-block="'+e.clientId+'"]').find(".sfsi_plus_block_container");0===t.find(".sfsi_plus_block>div").length&&r(o.iconType,o,t)},3e3);return[f(wp.editor.InspectorControls,{key:"sfsi-plus-block-inspector"},f("div",{className:"sfsi_plus_block_inspector"},f("h3",{className:"sfsi_plus_block_icontype_header"},p("Type")),f("select",{className:"form-control sfsi_plus_block_icontype_selector",value:o.iconType,onChange:function(e){var t=jQuery(".wp-block.is-selected").find(".sfsi_plus_block_container");s({iconType:e.target.value}),r(e.target.value,o,t)}},f("option",{value:"round"},"Round / \xabmain\xbb icons"),f("option",{value:"rectangle"},"Rectangle icons")),("round"===e.attributes.iconType||void 0===e.attributes.iconType)&&f("p",{className:"sfsi_plus_block_icontype_desc"},p(" Those are the icons you selected under question 1 on the plugin\u2018s "),f("a",{target:"_blank",href:window.sfsi_plus_links.admin_url+"admin.php?page=sfsi-plus-options#ui-id-1"},p(" settings page."))),"rectangle"===e.attributes.iconType&&f("p",{className:"sfsi_plus_block_icontype_desc"},p("Those are the icons you selected "),f("a",{target:"_blank",href:window.sfsi_plus_links.admin_url+"admin.php?page=sfsi-plus-options#ui-id-5"},p("here."))),f("h3",{className:"sfsi_plus_block_icontype_header"},p("Alignment")),f("select",{className:"form-control sfsi_plus_block_iconalignment_selector",value:o.iconAlignemt,onChange:function(e){s({iconAlignemt:e.target.value});var t=jQuery(".wp-block.is-selected .sfsi_plus_block_container");"center"===e.target.value&&jQuery(t).find(".sfsi_plus_block_text_before_icon").css({display:"inherit"}),jQuery(t).css({"text-align":e.target.value})}},f("option",{value:"left"},"Left"),f("option",{value:"right"},"Right"),f("option",{value:"center"},"Center")),("round"===e.attributes.iconType||void 0===e.attributes.iconType)&&f("div",{className:"sfsi_plus_block_iconperrow_body"},f("span",{className:"label"},p("Max. icons per row")),f("input",{type:"text",value:o.maxPerRow,onChange:function(e){s({maxPerRow:(parseInt(e.target.value)||0)+""}),l(e.target.value)}})),f("label",{htmlFor:"sfsi-plus-text-before-icons",className:"sfsi_plus_block_textbeforeicons"},f("input",{className:"form-control",checked:"yes"==o.showTextBeforeShare,type:"checkbox",onChange:function(e){s({showTextBeforeShare:e.target.checked?"yes":"no"})}}),"Text before icons?"),"yes"==o.showTextBeforeShare&&f("input",{className:"form-input sfsi_plus_block_textbeforeicons_header",value:o.textBeforeShare,style:{"padding-top":"3px"},onChange:function(e){s({textBeforeShare:e.target.value})}}),"yes"===o.showTextBeforeShare&&f("div",{className:"form-input sfsi_plus_block_textbeforeicons_body"},p("Define the font size & type in our "),f("a",{href:"https://www.ultimatelysocial.com/usm-premium/",target:"_blank"},p("Premium plugin"))),f("h3",{className:"sfsi_plus_block_notes_heading"},p("Notes")),f("hr"),f("ul",{className:"sfsi_plus_block_notes_list"},f("li",{className:"sfsi_plus_block_notes_item"},p("For all other selections ( What the icons should do etc.) please go to "),f("a",{href:(window.sfsi_plus_links?window.sfsi_plus_links.admin_url:"/wp-admin/admin.php")+"?page=sfsi-plus-options",target:"_blank"},p("settings page"))),f("li",{className:"sfsi_plus_block_notes_item"},p("To see the icons in \u201afull action\u2018 (with all features) please open the page in live or preview mode.")),f("li",{className:"sfsi_plus_block_notes_item"},p("If questions remain, please ask them in the "),f("a",{href:"https://goo.gl/ktAeDv",target:"_blank"},p("support forum")),p(" \u2013 we\u2018ll try to respond quickly."),f("img",{src:(window.sfsi_plus_links?window.sfsi_plus_links.plugin_dir_url:"/wp-content/plugins/ultimate-social-media-plus")+"/images/Ic_insert_emoticon_48px.svg",style:{width:"18px","vertical-align":"text-bottom"}}))),f("h3",{className:"sfsi_plus_block_ad_heading"},"Want (much) more?"),f("div",{className:"sfsi_plus_block_ad_body"},f("div",{},p("Check out our "),f("a",{href:"https://www.ultimatelysocial.com/usm-premium/?utm_source=plus_gutenberg_page&utm_campaign=side_widget&utm_medium=link",target:"_blank"},p("premium plugin\u2018s features")),p(". Watch a teaser: "))),f("div",{style:{"text-align":"center"}},f("iframe",{src:"https://player.vimeo.com/video/269140798",width:"640",frameborder:0,webkitallowfullscreen:"",mozallowfullscreen:"",allowfullscreen:""}),f("a",{href:"https://www.ultimatelysocial.com/usm-premium/?utm_source=plus_gutenberg_page&utm_campaign=side_widget&utm_medium=link",target:"_blank",style:{display:"inline-block",padding:"4px 10px","text-decoration":"none",background:"#00A15A",color:"#fff","font-size":"11px","font-weight":"900"}},p("Check out the Premium Plugin >>"))),f("br"),f("span",{className:"sfsi_plus_block_ad_footer"},p("..from 24.98 USD (includes support and updates for 1 year, and after that it will not be deactivated, so you can just keep using it!)")))),f("div",{key:"sfsi-plus-block-content",className:"sfsi_plus_block_container sfsi_plus_block_wrapper"},"\t","yes"==n&&f("span",{className:"sfsi_plus_block_text_before_icon","data-align":o.iconAlignemt},a),f("div",{className:"sfsi_plus_block","data-count":o.maxPerRow,"data-align":o.iconAlignemt,"data-icon-type":o.iconType},"loading...."))]},deprecated:[{attributes:{jscode:{default:"\n\t\tjQuery(document).ready(function($) {\n\t\t\tjQuery.ajax({\n\t\t\t\t'url': '/wp-json/ultimate-social-media-plus/v1/icons/?share_url='+window.location.href,\n\t\t\t\t'method': 'GET'\n\t\t\t}).done( function(response){\n\t\t\t\t$('.sfsi_plus_block_container .sfsi_plus_block').html(response);if(window.gapi){window.gapi.plusone.go();window.gapi.plus.go();window.gapi.ytsubscribe.go();};if(window.twttr){window.twttr.widgets.load();};if(window.IN){window.IN.parse();};if(window.addthis){if(window.addthis.toolbox){window.addthis.toolbox('.addthis_button.sficn');}else{window.addthis.init();window.addthis.toolbox('.addthis_button.sficn');}};if(window.PinUtils){window.PinUtils.build();};if(jQuery('.sfsi_plus_wDiv').length > 0) {setTimeout(function() { var s = parseInt(jQuery('.sfsi_plus_wDiv').height()) + 15 + 'px';jQuery('.sfsi_plus_holders').each(function() {jQuery(this).css('height', s);});jQuery('.sfsi_plus_widget').css('min-height', 'auto');}, 200);};if(window.FB){if(window.FB.XFBML){window.FB.XFBML.parse();}};\n\t\t\t});\n\t\t});\n\t",type:"string"}},isEligible:function(e){return console.log(e),!0},migrate:function(e){return console.log("migrate",e),[{jscode:"\n\t\tjQuery(document).ready(function($) {\n\t\t\tjQuery.ajax({\n\t\t\t\t'url': '/wp-json/ultimate-social-media-plus/v1/icons/?share_url='+window.location.href,\n\t\t\t\t'method': 'GET'\n\t\t\t}).done( function(response){\n\t\t\t\t$('.sfsi_plus_block_wrapper .sfsi_plus_block').html(response);sfsi_plus_update_iconcount();if(window.gapi){window.gapi.plusone.go();window.gapi.plus.go();window.gapi.ytsubscribe.go();};if(window.twttr){window.twttr.widgets.load();};if(window.IN){window.IN.parse();};if(window.addthis){if(window.addthis.toolbox){window.addthis.toolbox('.addthis_button.sficn');}else{window.addthis.init();window.addthis.toolbox('.addthis_button.sficn');}};if(window.PinUtils){window.PinUtils.build();};if(jQuery('.sfsi_plus_wDiv').length > 0) {setTimeout(function() { var s = parseInt(jQuery('.sfsi_plus_wDiv').height()) + 15 + 'px';jQuery('.sfsi_plus_holders').each(function() {jQuery(this).css('height', s);});jQuery('.sfsi_plus_widget').css('min-height', 'auto');}, 200);};if(window.FB){if(window.FB.XFBML){window.FB.XFBML.parse();}};\n\t\t\t});\n\t\t});\n\t",showTextBeforeShare:"yes",textBeforeShare:"Please Share:",iconType:"round",iconAlignemt:"left",maxPerRow:"5"}]},save:function(e){return console.log(e),o(e.attributes)}}],save:function(e){var t=e.attributes;return setTimeout(function(){l(t.maxPerRow)},300),n(t)}}),void 0===window.sfsi_plus_float_widget);},function(e,t){},function(e,t){}]);
1
+ ../../social-media-block/dist/blocks.build.js
dist/blocks.editor.build.css CHANGED
@@ -1 +1 @@
1
- .sfsi_plus_block{min-height:55px}.sfsi_plus_block.sfsi_plus_block.sfsi_plus_block img{padding:0;border:none;max-width:90%}.sfsi_plus_block .sfsi_plus_widget .sfsi_plus_linkedin_tool_bdr .sfsi_plus_inside .icon4,.sfsi_plus_block .sfsi_plus_widget .sfsi_plus_gpls_tool_bdr .sfsi_plus_inside .icon1,.sfsi_plus_block .sfsi_plus_widget .sfsi_plus_fb_tool_bdr .sfsi_plus_inside .icon1{height:auto}.sfsi_plus_block .sfsi_plus_widget{min-height:55px}.sfsi_plus_block .sfsi_plus_widget a img{-webkit-box-shadow:none !important;box-shadow:none !important;outline:0;padding:0 !important;border:none !important;max-width:100%}.sfsi_plus_block .sfsiplus_inerCnt{position:relative;z-index:inherit !important;float:left;width:100%;float:left}.sfsi_plus_block .sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a,.sfsi_plus_block .sfsi_plus_widget .sfsi_plus_wDiv .sfsi_plus_wicons .sfsiplus_inerCnt a.sficn{padding:0px;margin:0px;width:100%;border:medium none}.sfsi_plus_block .sfsiplus_norm_row{float:left;min-width:25px}.sfsi_plus_block .sfsiplus_norm_row a{border:none;display:inline-block;position:relative}.sfsi_plus_block .sfsiplus_norm_row .cbtn_vsmall{font-size:9px;left:-28%;top:4px}.sfsi_plus_block .sfsiplus_norm_row .cbtn_vsmall:before{left:31%;top:-9px;margin-left:-31%}.sfsi_plus_block .sfsiplus_norm_row{position:relative !important}.sfsi_plus_block .sfsi_plus_wicons{margin-bottom:30px;position:relative;padding-top:5px;display:inline-block}.sfsi_plus_block .sfsiplus_norm_row .bot_no{padding:1px 0;font-size:12px !important;text-align:center;line-height:12px !important;background:#fff;border-radius:5px;z-index:9;border:1px solid #333;white-space:pre;-webkit-box-sizing:border-box;box-sizing:border-box;width:40px;display:inline-block}.sfsi_plus_block .sfsiplus_norm_row .bot_no:before{content:url("../css/images/count_top_arow.png");position:absolute;height:9px;margin-left:-7.5px;margin-top:-11px;left:50%;width:15px}.sfsi_plus_block .sfsi_plus_widget.sfsi_plus_widget.sfsi_plus_widget img{border:none;padding:0}.sfsi_plus_block .sfsi_plus_Sicons .sf_fb{margin-top:-4px;margin-right:4px}.sfsi_plus_block .sfsi_plus_Sicons .sf_twiter{margin-right:4px}.sfsi_plus_block .sfsi_plus_Sicons .sf_pinit{margin-top:-3px;margin-right:4px}.gutenberg__editor .sfsi_new_prmium_follw{height:auto !important;min-height:63px}.gutenberg__editor .sfsi_plus_block_text_before_icon{display:inline-block;vertical-align:top}.gutenberg__editor .sfsi_plus_block{display:inline-block}.gutenberg__editor .sfsi_plus_block[data-icon-type="rectangle"] .fb_iframe_widget>span{vertical-align:top !important}.gutenberg__editor .sfsi_plus_block[data-icon-type="rectangle"] .sf_pinit>span{vertical-align:top !important}.sfsi_plus_block_inspector h3,.sfsi_plus_block_inspector label{padding-top:12px;margin-bottom:5px}.sfsi_plus_block_inspector select,.sfsi_plus_block_inspector input[type="text"],.sfsi_plus_block_inspector input[type="number"],.sfsi_plus_block_inspector input[type="email"],.sfsi_plus_block_inspector textarea{width:100%}.sfsi_plus_block_inspector .sfsi_plus_block_iconperrow_body{padding-top:20px;font-weight:600}.sfsi_plus_block_inspector .sfsi_plus_block_iconperrow_body .label{display:inline-block;width:69%}.sfsi_plus_block_inspector .sfsi_plus_block_iconperrow_body input{display:inline-block;width:30%}.sfsi_plus_block_inspector .sfsi_plus_block_textbeforeicons{display:inline-block}.sfsi_plus_block_inspector .sfsi_plus_block_textbeforeicons_header{padding-top:10px}.sfsi_plus_block_inspector hr{margin:.3em 0}.sfsi_plus_block_inspector ul{margin-top:0}.sfsi_plus_block_inspector ul.sfsi_plus_block_notes_list{list-style-type:disc;-webkit-padding-start:20px;padding-inline-start:20px}.sfsi_plus_block_inspector .sfsi_plus_block_ad_heading,.sfsi_plus_block_inspector .sfsi_plus_block_ad_body{text-align:center}.sfsi_plus_block_inspector .sfsi_plus_block_icontype_desc{margin-bottom:0}.sfsi_plus_block_inspector input[type=checkbox]{margin-right:5px !important}.sfsi_plus_block_inspector .sfsi_plus_block_notes_list{color:#000}.sfsi_plus_block_wrapper .sfsi_plus_block,.sfsi_plus_block_wrapper .sfsi_plus_block_text_before_icon{display:inline-block}.sfsi_plus_block_wrapper .sfsi_plus_block_text_before_icon{vertical-align:top;margin-top:10px}
1
+ ../../social-media-block/dist/blocks.editor.build.css
images/website_theme/{others.png → Others.png} RENAMED
File without changes
js/custom-admin.js CHANGED
@@ -1,3639 +1,3638 @@
1
- function sfsi_plus_update_index() {
2
- var s = 1;
3
- SFSI("ul.plus_icn_listing li.plus_custom").each(function () {
4
- SFSI(this).children("span.sfsiplus_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.plus_custom_m").find("div.sfsiplus_custom_section").each(function () {
9
- SFSI(this).find("label").html("Custom " + cntt + ":"), cntt++;
10
- });
11
- }
12
- openWpMedia = function (btnUploadID, inputImageId, previewDivId, funcNameSuccessHandler) {
13
-
14
- var btnElem, inputImgElem, previewDivElem, iconName;
15
-
16
- var clickHandler = function (event) {
17
-
18
- var send_attachment_bkp = wp.media.editor.send.attachment;
19
-
20
- var frame = wp.media({
21
- title: 'Select or Upload image',
22
- button: {
23
- text: 'Use this image'
24
- },
25
- multiple: false // Set to true to allow multiple files to be selected
26
- });
27
-
28
- frame.on('select', function () {
29
-
30
- // Get media attachment details from the frame state
31
- var attachment = frame.state().get('selection').first().toJSON();
32
- var url = attachment.url.split("/");
33
- var fileName = url[url.length - 1];
34
- var fileArr = fileName.split(".");
35
- var fileType = fileArr[fileArr.length - 1];
36
-
37
- if (fileType != undefined && (fileType == 'gif' || fileType == 'jpeg' || fileType == 'jpg' || fileType == 'png')) {
38
-
39
- //inputImgElem.val(attachment.url);
40
- //previewDivElem.attr('src',attachment.url);
41
-
42
- btnElem.val("Change Picture");
43
-
44
- wp.media.editor.send.attachment = send_attachment_bkp;
45
-
46
- if (null !== funcNameSuccessHandler && funcNameSuccessHandler.length > 0) {
47
-
48
- var iconData = {
49
- "imgUrl": attachment.url
50
- };
51
-
52
- context[funcNameSuccessHandler](iconData, btnElem);
53
- }
54
- } else {
55
- alert("Only Images are allowed to upload");
56
- frame.open();
57
- }
58
- });
59
-
60
- // Finally, open the modal on click
61
- frame.open();
62
- return false;
63
- };
64
-
65
- if ("object" === typeof btnUploadID && null !== btnUploadID) {
66
-
67
- btnElem = SFSI(btnUploadID);
68
- inputImgElem = btnElem.parent().find('input[type="hidden"]');
69
- previewDivElem = btnElem.parent().find('img');
70
- iconName = btnElem.attr('data-iconname');
71
- clickHandler();
72
- } else {
73
-
74
- btnElem = $('#' + btnUploadID);
75
- inputImgElem = $('#' + inputImageId);
76
- previewDivElem = $('#' + previewDivId);
77
-
78
- btnElem.on("click", clickHandler);
79
- }
80
-
81
- };
82
- //MZ CODE END
83
- function sfsipluscollapse(s) {
84
- var i = !0,
85
- e = SFSI(s).closest("div.ui-accordion-content").prev("h3.ui-accordion-header"),
86
- t = SFSI(s).closest("div.ui-accordion-content").first();
87
- e.toggleClass("ui-corner-all", i).toggleClass("accordion-header-active ui-state-active ui-corner-top", !i).attr("aria-selected", (!i).toString()),
88
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", i).toggleClass("ui-icon-triangle-1-s", !i),
89
- t.toggleClass("accordion-content-active", !i), i ? t.slideUp() : t.slideDown();
90
- }
91
-
92
- function sfsi_plus_delete_CusIcon(s, i) {
93
- sfsiplus_beForeLoad();
94
- var e = {
95
- action: "plus_deleteIcons",
96
- icon_name: i.attr("name"),
97
- nonce: SFSI(i).parents('.plus_custom').find('input[name="nonce"]').val()
98
- };
99
- SFSI.ajax({
100
- url: sfsi_plus_ajax_object.ajax_url,
101
- type: "post",
102
- data: e,
103
- dataType: "json",
104
- success: function (e) {
105
- if ("success" == e.res) {
106
- sfsiplus_showErrorSuc("success", "Saved !", 1);
107
- var t = e.last_index + 1;
108
- var attr = i.attr("name");
109
- attr = attr.replace('plus', '');
110
- SFSI("#plus_total_cusotm_icons").val(e.total_up), SFSI(s).closest(".plus_custom").remove(),
111
- SFSI("li.plus_custom:last-child").addClass("bdr_btm_non"), SFSI(".plus_custom-links").find("div." + attr).remove(),
112
- SFSI(".plus_custom_m").find("div." + attr).remove(),
113
- SFSI("ul.plus_sfsi_sample_icons").children("li." + attr).remove();
114
-
115
- if (e.total_up == 0) {
116
- SFSI(".banner_custom_icon").hide();
117
- }
118
-
119
- var n = e.total_up + 1;
120
- 4 == e.total_up && SFSI(".plus_icn_listing").append('<li id="plus_c' + t + '" class="plus_custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style="background-position: 0px 0px;"></span><input name="plussfsiICON_' + t + '_display" type="checkbox" value="yes" class="styled" style="display:none;" element-type="sfsiplus-cusotm-icon" isNew="yes" /></div> <span class="plus_custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="plus_CImg_' + t + '" /> </span> <span class="custom sfsiplus_custom-txt">Custom' + n + ' </span> <div class="sfsiplus_right_info"> <p><span>' + object_name1.It_depends + ':</span> ' + object_name1.Upload_a + '</p><div class="inputWrapper"></div></li>');
121
- } else sfsiplus_showErrorSuc("error", "Unkown error , please try again", 1);
122
- return sfsi_plus_update_index(), plus_update_Sec5Iconorder(), sfsi_plus_update_step1(), sfsi_plus_update_step5(),
123
- sfsiplus_afterLoad(), "suc";
124
- }
125
- });
126
- }
127
-
128
- function plus_update_Sec5Iconorder() {
129
- SFSI("ul.plus_share_icon_order").children("li").each(function () {
130
- SFSI(this).attr("data-index", SFSI(this).index() + 1);
131
- });
132
- }
133
-
134
- function sfsi_plus_section_Display(s, i) {
135
- "hide" == i ? (SFSI("." + s + " :input").prop("disabled", !0), SFSI("." + s + " :button").prop("disabled", !0),
136
- SFSI("." + s).hide()) : (SFSI("." + s + " :input").removeAttr("disabled", !0), SFSI("." + s + " :button").removeAttr("disabled", !0),
137
- SFSI("." + s).show());
138
- }
139
-
140
- function sfsi_plus_depened_sections() {
141
- if ("sfsi" == SFSI("input[name='sfsi_plus_rss_icons']:checked").val()) {
142
- for (i = 0; 16 > i; i++) {
143
- var s = i + 1,
144
- e = 74 * i;
145
- SFSI(".sfsiplus_row_" + s + "_2").css("background-position", "-588px -" + e + "px");
146
- }
147
- var t = SFSI(".icon_img").attr("src");
148
- if (t) {
149
- if (t.indexOf("subscribe") != -1) {
150
- var n = t.replace("subscribe.png", "sf_arow_icn.png");
151
- } else {
152
- var n = t.replace("email.png", "sf_arow_icn.png");
153
- }
154
- SFSI(".icon_img").attr("src", n);
155
- }
156
- } else {
157
- if ("email" == SFSI("input[name='sfsi_plus_rss_icons']:checked").val()) {
158
- for (SFSI(".sfsiplus_row_1_2").css("background-position", "-58px 0"), i = 0; 16 > i; i++) {
159
- var s = i + 1,
160
- e = 74 * i;
161
- SFSI(".sfsiplus_row_" + s + "_2").css("background-position", "-58px -" + e + "px");
162
- }
163
- var t = SFSI(".icon_img").attr("src");
164
- if (t) {
165
- if (t.indexOf("sf_arow_icn") != -1) {
166
- var n = t.replace("sf_arow_icn.png", "email.png");
167
- } else {
168
- var n = t.replace("subscribe.png", "email.png");
169
- }
170
- SFSI(".icon_img").attr("src", n);
171
- }
172
- } else {
173
- for (SFSI(".sfsiplus_row_1_2").css("background-position", "-649px 0"), i = 0; 16 > i; i++) {
174
- var s = i + 1,
175
- e = 74 * i;
176
- SFSI(".sfsiplus_row_" + s + "_2").css("background-position", "-649px -" + e + "px");
177
- }
178
- var t = SFSI(".icon_img").attr("src");
179
- if (t) {
180
- if (t.indexOf("email") != -1) {
181
- var n = t.replace("email.png", "subscribe.png");
182
- } else {
183
- var n = t.replace("sf_arow_icn.png", "subscribe.png");
184
- }
185
- SFSI(".icon_img").attr("src", n);
186
- }
187
- }
188
- }
189
- SFSI("input[name='sfsi_plus_rss_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_rss_section", "show") : sfsi_plus_section_Display("sfsiplus_rss_section", "hide"),
190
- SFSI("input[name='sfsi_plus_email_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_email_section", "show") : sfsi_plus_section_Display("sfsiplus_email_section", "hide"),
191
- SFSI("input[name='sfsi_plus_facebook_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_facebook_section", "show") : sfsi_plus_section_Display("sfsiplus_facebook_section", "hide"),
192
- SFSI("input[name='sfsi_plus_twitter_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_twitter_section", "show") : sfsi_plus_section_Display("sfsiplus_twitter_section", "hide"),
193
- SFSI("input[name='sfsi_plus_youtube_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_youtube_section", "show") : sfsi_plus_section_Display("sfsiplus_youtube_section", "hide"),
194
- SFSI("input[name='sfsi_plus_pinterest_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_pinterest_section", "show") : sfsi_plus_section_Display("sfsiplus_pinterest_section", "hide"),
195
- SFSI("input[name='sfsi_plus_instagram_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_instagram_section", "show") : sfsi_plus_section_Display("sfsiplus_instagram_section", "hide"),
196
- SFSI("input[name='sfsi_plus_houzz_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_houzz_section", "show") : sfsi_plus_section_Display("sfsiplus_houzz_section", "hide"),
197
- SFSI("input[name='sfsi_plus_linkedin_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_linkedin_section", "show") : sfsi_plus_section_Display("sfsiplus_linkedin_section", "hide"),
198
- SFSI("input[name='sfsi_plus_telegram_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_telegram_section", "show") : sfsi_plus_section_Display("sfsiplus_telegram_section", "hide"),
199
- SFSI("input[name='sfsi_plus_vk_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_vk_section", "show") : sfsi_plus_section_Display("sfsiplus_vk_section", "hide"),
200
- SFSI("input[name='sfsi_plus_ok_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_ok_section", "show") : sfsi_plus_section_Display("sfsiplus_ok_section", "hide"),
201
- SFSI("input[name='sfsi_plus_wechat_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_wechat_section", "show") : sfsi_plus_section_Display("sfsiplus_wechat_section", "hide"),
202
- SFSI("input[name='sfsi_plus_weibo_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_weibo_section", "show") : sfsi_plus_section_Display("sfsiplus_weibo_section", "hide"),
203
- SFSI("input[element-type='sfsiplus-cusotm-icon']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_custom_section", "show") : sfsi_plus_section_Display("sfsiplus_custom_section", "hide");
204
- }
205
-
206
- function PlusCustomIConSectionsUpdate() {
207
- sfsi_plus_section_Display("counter".ele, show);
208
- }
209
- // Upload Custom Skin {Monad}
210
- function plus_sfsi_customskin_upload(s, ref, nonce) {
211
- var ttl = jQuery(ref).attr("title");
212
- var i = s,
213
- e = {
214
- action: "plus_UploadSkins",
215
- custom_imgurl: i,
216
- nonce: nonce
217
- };
218
- SFSI.ajax({
219
- url: sfsi_plus_ajax_object.ajax_url,
220
- type: "post",
221
- data: e,
222
- success: function (msg) {
223
- if (msg.res = "success") {
224
- var arr = s.split('=');
225
- jQuery(ref).prev('.imgskin').attr('src', arr[1]);
226
- jQuery(ref).prev('.imgskin').css("display", "block");
227
- jQuery(ref).text("Update");
228
- jQuery(ref).next('.dlt_btn').css("display", "block");
229
- }
230
- }
231
- });
232
- }
233
- // Delete Custom Skin {Monad}
234
- function sfsiplus_deleteskin_icon(s) {
235
- var iconname = jQuery(s).attr("title");
236
- var nonce = jQuery(s).attr("data-nonce");
237
- var i = iconname,
238
- e = {
239
- action: "plus_DeleteSkin",
240
- iconname: i,
241
- nonce: nonce
242
- };
243
-
244
- SFSI.ajax({
245
- url: sfsi_plus_ajax_object.ajax_url,
246
- type: "post",
247
- data: e,
248
- dataType: "json",
249
- success: function (msg) {
250
- if (msg.res === "success") {
251
- SFSI(s).prev("a").text("Upload");
252
- SFSI(s).prev("a").prev("img").attr("src", '');
253
- SFSI(s).prev("a").prev("img").css("display", "none");
254
- SFSI(s).css("display", "none");
255
- } else {
256
- alert("Whoops! something went wrong.")
257
- }
258
- }
259
- });
260
- }
261
- // Save Custom Skin {Monad}
262
- function SFSI_plus_done(nonce) {
263
- e = {
264
- action: "plus_Iamdone",
265
- nonce: nonce
266
- };
267
-
268
- SFSI.ajax({
269
- url: sfsi_plus_ajax_object.ajax_url,
270
- type: "post",
271
- data: e,
272
- success: function (msg) {
273
- jQuery("li.cstomskins_upload").children(".sfsiplus_icns_tab_3").html(msg);
274
- SFSI("input[name='sfsi_plus_rss_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_rss_section", "show") : sfsi_plus_section_Display("sfsiplus_rss_section", "hide"), SFSI("input[name='sfsi_plus_email_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_email_section", "show") : sfsi_plus_section_Display("sfsiplus_email_section", "hide"), SFSI("input[name='sfsi_plus_facebook_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_facebook_section", "show") : sfsi_plus_section_Display("sfsiplus_facebook_section", "hide"), SFSI("input[name='sfsi_plus_twitter_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_twitter_section", "show") : sfsi_plus_section_Display("sfsiplus_twitter_section", "hide"), SFSI("input[name='sfsi_plus_youtube_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_youtube_section", "show") : sfsi_plus_section_Display("sfsiplus_youtube_section", "hide"), SFSI("input[name='sfsi_plus_pinterest_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_pinterest_section", "show") : sfsi_plus_section_Display("sfsiplus_pinterest_section", "hide"), SFSI("input[name='sfsi_plus_instagram_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_instagram_section", "show") : sfsi_plus_section_Display("sfsiplus_instagram_section", "hide"), SFSI("input[name='sfsi_plus_houzz_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_houzz_section", "show") : sfsi_plus_section_Display("sfsiplus_houzz_section", "hide"), SFSI("input[name='sfsi_plus_linkedin_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_linkedin_section", "show") : sfsi_plus_section_Display("sfsiplus_linkedin_section", "hide"), SFSI("input[element-type='sfsiplus-cusotm-icon']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_custom_section", "show") : sfsi_plus_section_Display("sfsiplus_custom_section", "hide");
275
- SFSI(".cstmskins-overlay").hide("slow");
276
- sfsi_plus_update_step3() && sfsipluscollapse(this);
277
- }
278
- });
279
- }
280
- // Upload Custom Icons {Monad}
281
- function plus_sfsi_newcustomicon_upload(s, nonce, nonce2) {
282
- var i = s,
283
- e = {
284
- action: "plus_UploadIcons",
285
- custom_imgurl: i,
286
- nonce: nonce
287
- };
288
- SFSI.ajax({
289
- url: sfsi_plus_ajax_object.ajax_url,
290
- type: "post",
291
- data: e,
292
- dataType: "json",
293
- async: !0,
294
- success: function (s) {
295
- if (s.res == 'success') {
296
- sfsiplus_afterIconSuccess(s, nonce2);
297
- } else {
298
- SFSI(".upload-overlay").hide("slow");
299
- SFSI(".uperror").html(s.res);
300
- sfsiplus_showErrorSuc("Error", "Some Error Occured During Upload Custom Icon", 1)
301
- }
302
- }
303
- });
304
- }
305
-
306
- function sfsi_plus_update_step1() {
307
- var nonce = SFSI("#sfsi_plus_save1").attr("data-nonce");
308
- global_error = 0, sfsiplus_beForeLoad(), sfsi_plus_depened_sections();
309
- var s = !1,
310
- i = SFSI("input[name='sfsi_plus_rss_display']:checked").val(),
311
- e = SFSI("input[name='sfsi_plus_email_display']:checked").val(),
312
- t = SFSI("input[name='sfsi_plus_facebook_display']:checked").val(),
313
- n = SFSI("input[name='sfsi_plus_twitter_display']:checked").val(),
314
- r = SFSI("input[name='sfsi_plus_youtube_display']:checked").val(),
315
- c = SFSI("input[name='sfsi_plus_pinterest_display']:checked").val(),
316
- p = SFSI("input[name='sfsi_plus_linkedin_display']:checked").val(),
317
- _ = SFSI("input[name='sfsi_plus_instagram_display']:checked").val(),
318
- telegram = SFSI("input[name='sfsi_plus_telegram_display']:checked").val(),
319
- vk = SFSI("input[name='sfsi_plus_vk_display']:checked").val(),
320
- ok = SFSI("input[name='sfsi_plus_ok_display']:checked").val(),
321
- weibo = SFSI("input[name='sfsi_plus_weibo_display']:checked").val(),
322
- wechat = SFSI("input[name='sfsi_plus_wechat_display']:checked").val(),
323
- houzz = SFSI("input[name='sfsi_plus_houzz_display']:checked").val(),
324
- l = SFSI("input[name='sfsi_custom1_display']:checked").val(),
325
- S = SFSI("input[name='sfsi_custom2_display']:checked").val(),
326
- u = SFSI("input[name='sfsi_custom3_display']:checked").val(),
327
- f = SFSI("input[name='sfsi_custom4_display']:checked").val(),
328
- d = SFSI("input[name='plussfsiICON_5']:checked").val(),
329
- I = {
330
- action: "plus_updateSrcn1",
331
- sfsi_plus_rss_display: i,
332
- sfsi_plus_email_display: e,
333
- sfsi_plus_facebook_display: t,
334
- sfsi_plus_twitter_display: n,
335
- sfsi_plus_youtube_display: r,
336
- sfsi_plus_pinterest_display: c,
337
- sfsi_plus_linkedin_display: p,
338
- sfsi_plus_instagram_display: _,
339
- sfsi_plus_telegram_display: telegram,
340
- sfsi_plus_vk_display: vk,
341
- sfsi_plus_ok_display: ok,
342
- sfsi_plus_weibo_display: weibo,
343
- sfsi_plus_wechat_display: wechat,
344
- sfsi_plus_houzz_display: houzz,
345
- sfsi_custom1_display: l,
346
- sfsi_custom2_display: S,
347
- sfsi_custom3_display: u,
348
- sfsi_custom4_display: f,
349
-
350
- sfsi_custom5_display: d,
351
- nonce: nonce
352
- };
353
- SFSI.ajax({
354
- url: sfsi_plus_ajax_object.ajax_url,
355
- type: "post",
356
- data: I,
357
- async: !0,
358
- dataType: "json",
359
- success: function (i) {
360
- if (i == "wrong_nonce") {
361
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 1);
362
- s = !1;
363
- sfsiplus_afterLoad();
364
- } else {
365
- "success" == i ? (sfsiplus_showErrorSuc("success", "Saved !", 1), sfsipluscollapse("#sfsi_plus_save1"),
366
- sfsi_plus_make_popBox()) : (global_error = 1, sfsiplus_showErrorSuc("error", "Unkown error , please try again", 1),
367
- s = !1), sfsiplus_afterLoad();
368
- }
369
- }
370
- });
371
- }
372
-
373
- function sfsi_plus_update_step2() {
374
- var nonce = SFSI("#sfsi_plus_save2").attr("data-nonce");
375
- var s = sfsi_plus_validationStep2();
376
- if (!s) return global_error = 1, !1;
377
- sfsiplus_beForeLoad();
378
- var i = 1 == SFSI("input[name='sfsi_plus_rss_url']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_rss_url']").val(),
379
- e = 1 == SFSI("input[name='sfsi_plus_rss_icons']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_rss_icons']:checked").val(),
380
- t = 1 == SFSI("input[name='sfsi_plus_facebookPage_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebookPage_option']:checked").val(),
381
- n = 1 == SFSI("input[name='sfsi_plus_facebookLike_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebookLike_option']:checked").val(),
382
- o = 1 == SFSI("input[name='sfsi_plus_facebookShare_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebookShare_option']:checked").val(),
383
- a = SFSI("input[name='sfsi_plus_facebookPage_url']").val(),
384
- r = 1 == SFSI("input[name='sfsi_plus_twitter_followme']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_followme']:checked").val(),
385
- c = 1 == SFSI("input[name='sfsi_plus_twitter_followUserName']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_followUserName']").val(),
386
- p = 1 == SFSI("input[name='sfsi_plus_twitter_aboutPage']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_aboutPage']:checked").val(),
387
- _ = 1 == SFSI("input[name='sfsi_plus_twitter_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_page']:checked").val(),
388
- l = SFSI("input[name='sfsi_plus_twitter_pageURL']").val(),
389
- S = SFSI("textarea[name='sfsi_plus_twitter_aboutPageText']").val(),
390
- m = 1 == SFSI("input[name='sfsi_plus_youtube_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_page']:checked").val(),
391
- F = 1 == SFSI("input[name='sfsi_plus_youtube_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_pageUrl']").val(),
392
- h = 1 == SFSI("input[name='sfsi_plus_youtube_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_follow']:checked").val(),
393
- cls = SFSI("input[name='sfsi_plus_youtubeusernameorid']:checked").val(),
394
- v = SFSI("input[name='sfsi_plus_ytube_user']").val(),
395
- vchid = SFSI("input[name='sfsi_plus_ytube_chnlid']").val(),
396
- g = 1 == SFSI("input[name='sfsi_plus_pinterest_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_page']:checked").val(),
397
- k = 1 == SFSI("input[name='sfsi_plus_pinterest_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_pageUrl']").val(),
398
- y = 1 == SFSI("input[name='sfsi_plus_pinterest_pingBlog']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_pingBlog']:checked").val(),
399
- b = 1 == SFSI("input[name='sfsi_plus_instagram_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_instagram_pageUrl']").val(),
400
- houzz = 1 == SFSI("input[name='sfsi_plus_houzz_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_houzz_pageUrl']").val(),
401
- w = 1 == SFSI("input[name='sfsi_plus_linkedin_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedin_page']:checked").val(),
402
- x = 1 == SFSI("input[name='sfsi_plus_linkedin_pageURL']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedin_pageURL']").val(),
403
- C = 1 == SFSI("input[name='sfsi_plus_linkedin_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedin_follow']:checked").val(),
404
- D = SFSI("input[name='sfsi_plus_linkedin_followCompany']").val(),
405
- U = 1 == SFSI("input[name='sfsi_plus_linkedin_SharePage']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedin_SharePage']:checked").val(),
406
- O = SFSI("input[name='sfsi_plus_linkedin_recommendBusines']:checked").val(),
407
- T = SFSI("input[name='sfsi_plus_linkedin_recommendProductId']").val(),
408
- j = SFSI("input[name='sfsi_plus_linkedin_recommendCompany']").val(),
409
- tgShareChk = SFSI("input[name='sfsi_plus_telegramShare_option']:checked").val(),
410
- tgShareChk = "undefined" !== typeof tgShareChk ? tgShareChk : "no",
411
- tgMsgChk = SFSI("input[name='sfsi_plus_telegramMessage_option']:checked").val(),
412
- tgMsgChk = "undefined" !== typeof tgMsgChk ? tgMsgChk : "no",
413
- tgMessageTxt = SFSI("input[name='sfsi_plus_telegram_message']").val(),
414
- tgMsgUserName = SFSI("input[name='sfsi_plus_telegram_username']").val(),
415
- P = {};
416
- vkVisitChk = SFSI("input[name='sfsi_plus_vkVisit_option']:checked").val(),
417
- vkVisitChk = "undefined" !== typeof vkVisitChk ? vkVisitChk : "no",
418
- vkShareChk = SFSI("input[name='sfsi_plus_vkShare_option']:checked").val(),
419
- vkShareChk = "undefined" !== typeof vkShareChk ? vkShareChk : "no",
420
- vkLikeChk = SFSI("input[name='sfsi_plus_vkLike_option']:checked").val(),
421
- vkLikeChk = "undefined" !== typeof vkLikeChk ? vkLikeChk : "no",
422
-
423
- vkFollowChk = SFSI("input[name='sfsi_plus_vkFollow_option']:checked").val(),
424
- vkFollowChk = "undefined" !== typeof vkFollowChk ? vkFollowChk : "no",
425
-
426
- vkVisitUrl = "no" == vkVisitChk ? "" : SFSI("input[name='sfsi_plus_vkVisit_url']").val(),
427
- vkFollowUrl = "no" == vkFollowChk ? "" : SFSI("input[name='sfsi_plus_vkFollow_url']").val(),
428
-
429
- okVisitChk = SFSI("input[name='sfsi_plus_okVisit_option']:checked").val(),
430
- okVisitChk = "undefined" !== typeof okVisitChk ? okVisitChk : "no",
431
- okVisitUrl = "no" == okVisitChk ? "" : SFSI("input[name='sfsi_plus_okVisit_url']").val(),
432
- okSubscribeChk = SFSI("input[name='sfsi_plus_okSubscribe_option']:checked").val(),
433
- okSubscribeChk = "undefined" !== typeof okSubscribeChk ? okSubscribeChk : "no",
434
- okSubscribeUrl = "no" == okSubscribeChk ? "" : SFSI("input[name='sfsi_plus_okSubscribe_userid']").val(),
435
- okShareChk = SFSI("input[name='sfsi_plus_okLike_option']:checked").val(),
436
- okShareChk = "undefined" !== typeof okShareChk ? okShareChk : "no",
437
-
438
- weiboVisitChk = SFSI("input[name='sfsi_plus_weiboVisit_option']:checked").val(),
439
- weiboVisitChk = "undefined" !== typeof weiboVisitChk ? weiboVisitChk : "no",
440
- weiboShareChk = SFSI("input[name='sfsi_plus_weiboShare_option']:checked").val(),
441
- weiboShareChk = "undefined" !== typeof weiboShareChk ? weiboShareChk : "no",
442
- weiboLikeChk = SFSI("input[name='sfsi_plus_weiboLike_option']:checked").val(),
443
- weiboLikeChk = "undefined" !== typeof weiboLikeChk ? weiboLikeChk : "no",
444
- weiboVisitUrl = "no" == weiboVisitChk ? "" : SFSI("input[name='sfsi_plus_weiboVisit_url']").val(),
445
-
446
-
447
- wechatFollowChk = SFSI("input[name='sfsi_plus_wechatFollow_option']:checked").val(),
448
- wechatFollowChk = "undefined" !== typeof wechatFollowChk ? wechatFollowChk : "no",
449
- wechatShareChk = SFSI("input[name='sfsi_plus_wechatShare_option']:checked").val(),
450
- wechatShareChk = "undefined" !== typeof wechatShareChk ? wechatShareChk : "no",
451
- wechatScanImage = SFSI("input[name='sfsi_plus_wechat_scan_image']").val(),
452
-
453
- SFSI("input[name='sfsi_plus_CustomIcon_links[]']").each(function () {
454
- P[SFSI(this).attr("file-id")] = this.value;
455
- });
456
- var M = {
457
- action: "plus_updateSrcn2",
458
- sfsi_plus_rss_url: i,
459
- sfsi_plus_rss_icons: e,
460
- sfsi_plus_facebookPage_option: t,
461
- sfsi_plus_facebookLike_option: n,
462
- sfsi_plus_facebookShare_option: o,
463
- sfsi_plus_facebookPage_url: a,
464
- sfsi_plus_twitter_followme: r,
465
- sfsi_plus_twitter_followUserName: c,
466
- sfsi_plus_twitter_aboutPage: p,
467
- sfsi_plus_twitter_page: _,
468
- sfsi_plus_twitter_pageURL: l,
469
- sfsi_plus_twitter_aboutPageText: S,
470
- sfsi_plus_youtube_page: m,
471
- sfsi_plus_youtube_pageUrl: F,
472
- sfsi_plus_youtube_follow: h,
473
- sfsi_plus_youtubeusernameorid: cls,
474
- sfsi_plus_ytube_user: v,
475
- sfsi_plus_ytube_chnlid: vchid,
476
- sfsi_plus_pinterest_page: g,
477
- sfsi_plus_pinterest_pageUrl: k,
478
- sfsi_plus_instagram_pageUrl: b,
479
- sfsi_plus_houzz_pageUrl: houzz,
480
- sfsi_plus_pinterest_pingBlog: y,
481
- sfsi_plus_linkedin_page: w,
482
- sfsi_plus_linkedin_pageURL: x,
483
- sfsi_plus_linkedin_follow: C,
484
- sfsi_plus_linkedin_followCompany: D,
485
- sfsi_plus_linkedin_SharePage: U,
486
- sfsi_plus_linkedin_recommendBusines: O,
487
- sfsi_plus_linkedin_recommendCompany: j,
488
- sfsi_plus_linkedin_recommendProductId: T,
489
- sfsi_plus_telegramShare_option: tgShareChk,
490
- sfsi_plus_telegramMessage_option: tgMsgChk,
491
- sfsi_plus_telegram_message: tgMessageTxt,
492
- sfsi_plus_telegram_username: tgMsgUserName,
493
- sfsi_plus_vkVisit_option: vkVisitChk,
494
- sfsi_plus_vkShare_option: vkShareChk,
495
- sfsi_plus_vkLike_option: vkLikeChk,
496
- sfsi_plus_vkFollow_option: vkFollowChk,
497
- sfsi_plus_vkFollow_url: vkFollowUrl,
498
- sfsi_plus_vkVisit_url: vkVisitUrl,
499
- sfsi_plus_okVisit_option: okVisitChk,
500
- sfsi_plus_okVisit_url: okVisitUrl,
501
- sfsi_plus_okSubscribe_option: okSubscribeChk,
502
- sfsi_plus_okSubscribe_userid: okSubscribeUrl,
503
- sfsi_plus_okLike_option: okShareChk,
504
-
505
- sfsi_plus_weiboVisit_option: weiboVisitChk,
506
- sfsi_plus_weiboShare_option: weiboShareChk,
507
- sfsi_plus_weiboLike_option: weiboLikeChk,
508
- sfsi_plus_weiboVisit_url: weiboVisitUrl,
509
-
510
- sfsi_plus_wechatFollow_option: wechatFollowChk,
511
- sfsi_plus_wechat_scan_image: wechatScanImage,
512
- sfsi_plus_wechatShare_option: wechatShareChk,
513
- sfsi_plus_custom_links: P,
514
- nonce: nonce
515
- };
516
- SFSI.ajax({
517
- url: sfsi_plus_ajax_object.ajax_url,
518
- type: "post",
519
- data: M,
520
- async: !0,
521
- dataType: "json",
522
- success: function (s) {
523
- if (s == "wrong_nonce") {
524
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 2);
525
- return_value = !1;
526
- sfsiplus_afterLoad();
527
- } else {
528
- "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 2), sfsipluscollapse("#sfsi_plus_save2"),
529
- sfsi_plus_depened_sections()) : (global_error = 1, sfsiplus_showErrorSuc("error", "Unkown error , please try again", 2),
530
- return_value = !1), sfsiplus_afterLoad();
531
- }
532
- }
533
- });
534
- }
535
-
536
- function sfsi_plus_update_step3() {
537
- var nonce = SFSI("#sfsi_plus_save3").attr("data-nonce");
538
- var s = sfsi_plus_validationStep3();
539
-
540
- if (!s) return global_error = 1, !1;
541
- sfsiplus_beForeLoad();
542
-
543
- var i = SFSI("input[name='sfsi_plus_actvite_theme']:checked").val(),
544
- e = SFSI("input[name='sfsi_plus_mouseOver']:checked").val(),
545
- t = SFSI("input[name='sfsi_plus_shuffle_icons']:checked").val(),
546
- n = SFSI("input[name='sfsi_plus_shuffle_Firstload']:checked").val(),
547
- a = SFSI("input[name='sfsi_plus_shuffle_interval']:checked").val(),
548
- r = SFSI("input[name='sfsi_plus_shuffle_intervalTime']").val(),
549
- c = SFSI("input[name='sfsi_plus_specialIcon_animation']:checked").val(),
550
- p = SFSI("input[name='sfsi_plus_specialIcon_MouseOver']:checked").val(),
551
- _ = SFSI("input[name='sfsi_plus_specialIcon_Firstload']:checked").val(),
552
- l = SFSI("#sfsi_plus_specialIcon_Firstload_Icons option:selected").val(),
553
- S = SFSI("input[name='sfsi_plus_specialIcon_interval']:checked").val(),
554
- u = SFSI("input[name='sfsi_plus_specialIcon_intervalTime']").val(),
555
- f = SFSI("#sfsi_plus_specialIcon_intervalIcons option:selected").val(),
556
- o = SFSI("input[name='sfsi_plus_same_icons_mouseOver_effect']:checked").val();
557
-
558
- var mouseover_effect_type = 'same_icons'; //SFSI("input[name='sfsi_plus_mouseOver_effect_type']:checked").val();
559
-
560
- var d = {
561
- action: "plus_updateSrcn3",
562
- sfsi_plus_actvite_theme: i,
563
- sfsi_plus_mouseOver: e,
564
- sfsi_plus_shuffle_icons: t,
565
- sfsi_plus_shuffle_Firstload: n,
566
- sfsi_plus_mouseOver_effect: o,
567
- sfsi_plus_mouseover_effect_type: mouseover_effect_type,
568
- sfsi_plus_shuffle_interval: a,
569
- sfsi_plus_shuffle_intervalTime: r,
570
- sfsi_plus_specialIcon_animation: c,
571
- sfsi_plus_specialIcon_MouseOver: p,
572
- sfsi_plus_specialIcon_Firstload: _,
573
- sfsi_plus_specialIcon_Firstload_Icons: l,
574
- sfsi_plus_specialIcon_interval: S,
575
- sfsi_plus_specialIcon_intervalTime: u,
576
- sfsi_plus_specialIcon_intervalIcons: f,
577
- nonce: nonce
578
- };
579
- SFSI.ajax({
580
- url: sfsi_plus_ajax_object.ajax_url,
581
- type: "post",
582
- data: d,
583
- async: !0,
584
- dataType: "json",
585
- success: function (s) {
586
- if (s == "wrong_nonce") {
587
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 3);
588
- return_value = !1;
589
- sfsiplus_afterLoad();
590
- } else {
591
- "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 3), sfsipluscollapse("#sfsi_plus_save3")) : (sfsiplus_showErrorSuc("error", "Unkown error , please try again", 3),
592
- return_value = !1), sfsiplus_afterLoad();
593
- }
594
- }
595
- });
596
- }
597
-
598
- function sfsi_plus_show_counts() {
599
- "yes" == SFSI("input[name='sfsi_plus_display_counts']:checked").val() ? (SFSI(".sfsiplus_count_sections").slideDown(),
600
- sfsi_plus_showPreviewCounts()) : (SFSI(".sfsiplus_count_sections").slideUp(), sfsi_plus_showPreviewCounts());
601
- }
602
-
603
- function sfsi_plus_showPreviewCounts() {
604
- var s = 0;
605
- 1 == SFSI("input[name='sfsi_plus_rss_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_rss_countsDisplay").css("opacity", 1),
606
- s = 1) : SFSI("#sfsi_plus_rss_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_email_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_email_countsDisplay").css("opacity", 1),
607
- s = 1) : SFSI("#sfsi_plus_email_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_facebook_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_facebook_countsDisplay").css("opacity", 1),
608
- s = 1) : SFSI("#sfsi_plus_facebook_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_twitter_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_twitter_countsDisplay").css("opacity", 1),
609
- s = 1) : SFSI("#sfsi_plus_twitter_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_linkedIn_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_linkedIn_countsDisplay").css("opacity", 1),
610
- s = 1) : SFSI("#sfsi_plus_linkedIn_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_youtube_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_youtube_countsDisplay").css("opacity", 1),
611
- s = 1) : SFSI("#sfsi_plus_youtube_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_pinterest_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_pinterest_countsDisplay").css("opacity", 1),
612
- s = 1) : SFSI("#sfsi_plus_pinterest_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_instagram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_instagram_countsDisplay").css("opacity", 1),
613
- s = 1) : SFSI("#sfsi_plus_instagram_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_houzz_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_houzz_countsDisplay").css("opacity", 1),
614
- s = 1) : SFSI("#sfsi_plus_houzz_countsDisplay").css("opacity", 0), 0 == s || "no" == SFSI("input[name='sfsi_plus_display_counts']:checked").val() ? SFSI(".sfsi_Cdisplay").hide() : SFSI(".sfsi_Cdisplay").show();
615
- }
616
-
617
- function sfsi_plus_show_OnpostsDisplay() {
618
- //"yes" == SFSI("input[name='sfsi_plus_show_Onposts']:checked").val() ? SFSI(".sfsiplus_PostsSettings_section").slideDown() :SFSI(".sfsiplus_PostsSettings_section").slideUp();
619
- }
620
-
621
- function sfsi_plus_update_step4() {
622
- var nonce = SFSI("#sfsi_plus_save4").attr("data-nonce");
623
- var s = !1,
624
- i = sfsi_plus_validationStep4();
625
- if (!i) return global_error = 1, !1;
626
- sfsiplus_beForeLoad();
627
- var e = SFSI("input[name='sfsi_plus_display_counts']:checked").val(),
628
- t = 1 == SFSI("input[name='sfsi_plus_email_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_email_countsDisplay']:checked").val(),
629
- n = 1 == SFSI("input[name='sfsi_plus_email_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_email_countsFrom']:checked").val(),
630
- o = SFSI("input[name='sfsi_plus_email_manualCounts']").val(),
631
- r = 1 == SFSI("input[name='sfsi_plus_rss_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_rss_countsDisplay']:checked").val(),
632
- c = SFSI("input[name='sfsi_plus_rss_manualCounts']").val(),
633
- p = 1 == SFSI("input[name='sfsi_plus_facebook_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebook_countsDisplay']:checked").val(),
634
- _ = 1 == SFSI("input[name='sfsi_plus_facebook_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val(),
635
- mp = SFSI("input[name='sfsi_plus_facebook_mypageCounts']").val(),
636
- l = SFSI("input[name='sfsi_plus_facebook_manualCounts']").val(),
637
- S = 1 == SFSI("input[name='sfsi_plus_twitter_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_countsDisplay']:checked").val(),
638
- u = 1 == SFSI("input[name='sfsi_plus_twitter_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_countsFrom']:checked").val(),
639
- f = SFSI("input[name='sfsi_plus_twitter_manualCounts']").val(),
640
- d = SFSI("input[name='sfsiplus_tw_consumer_key']").val(),
641
- I = SFSI("input[name='sfsiplus_tw_consumer_secret']").val(),
642
- m = SFSI("input[name='sfsiplus_tw_oauth_access_token']").val(),
643
- F = SFSI("input[name='sfsiplus_tw_oauth_access_token_secret']").val(),
644
- k = 1 == SFSI("input[name='sfsi_plus_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedIn_countsFrom']:checked").val(),
645
- y = SFSI("input[name='sfsi_plus_linkedIn_manualCounts']").val(),
646
- b = SFSI("input[name='sfsi_plus_ln_company']").val(),
647
- w = SFSI("input[name='sfsi_plus_ln_api_key']").val(),
648
- x = SFSI("input[name='sfsi_plus_ln_secret_key']").val(),
649
- C = SFSI("input[name='sfsi_plus_ln_oAuth_user_token']").val(),
650
- D = 1 == SFSI("input[name='sfsi_plus_linkedIn_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedIn_countsDisplay']:checked").val(),
651
- k = 1 == SFSI("input[name='sfsi_plus_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedIn_countsFrom']:checked").val(),
652
- y = SFSI("input[name='sfsi_plus_linkedIn_manualCounts']").val(),
653
- U = 1 == SFSI("input[name='sfsi_plus_youtube_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_countsDisplay']:checked").val(),
654
- O = 1 == SFSI("input[name='sfsi_plus_youtube_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_countsFrom']:checked").val(),
655
- T = SFSI("input[name='sfsi_plus_youtube_manualCounts']").val(),
656
- j = SFSI("input[name='sfsi_plus_youtube_user']").val(),
657
- P = 1 == SFSI("input[name='sfsi_plus_pinterest_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_countsDisplay']:checked").val(),
658
- M = 1 == SFSI("input[name='sfsi_plus_pinterest_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_countsFrom']:checked").val(),
659
- L = SFSI("input[name='sfsi_plus_pinterest_manualCounts']").val(),
660
- B = SFSI("input[name='sfsi_plus_pinterest_user']").val(),
661
- E = SFSI("input[name='sfsi_plus_pinterest_board']").val(),
662
- z = 1 == SFSI("input[name='sfsi_plus_instagram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_instagram_countsDisplay']:checked").val(),
663
- A = 1 == SFSI("input[name='sfsi_plus_instagram_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_instagram_countsFrom']:checked").val(),
664
- N = SFSI("input[name='sfsi_plus_instagram_manualCounts']").val(),
665
- H = SFSI("input[name='sfsi_plus_instagram_User']").val(),
666
- houzzDisplay = 1 == SFSI("input[name='sfsi_plus_houzz_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_houzz_countsDisplay']:checked").val(),
667
- houzzFrom = 1 == SFSI("input[name='sfsi_plus_houzz_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_houzz_countsFrom']:checked").val(),
668
- houzzCount = SFSI("input[name='sfsi_plus_houzz_manualCounts']").val(),
669
- vkc = SFSI("input[name='sfsi_plus_vk_countsDisplay']:checked").val() || 'no',
670
- vkm = SFSI("input[name='sfsi_plus_vk_manualCounts']").val(),
671
- tc = SFSI("input[name='sfsi_plus_telegram_countsDisplay']:checked").val() || 'no',
672
- tm = SFSI("input[name='sfsi_plus_telegram_manualCounts']").val(),
673
- wcc = SFSI("input[name='sfsi_plus_wechat_countsDisplay']:checked").val() || 'no',
674
- wcm = SFSI("input[name='sfsi_plus_wechat_manualCounts']").val(),
675
- okc = SFSI("input[name='sfsi_plus_ok_countsDisplay']:checked").val() || 'no',
676
- okm = SFSI("input[name='sfsi_plus_ok_manualCounts']").val(),
677
- wbc = SFSI("input[name='sfsi_plus_weibo_countsDisplay']:checked").val() || 'no',
678
- wbm = SFSI("input[name='sfsi_plus_weibo_manualCounts']").val(),
679
- $ = {
680
- action: "plus_updateSrcn4",
681
- sfsi_plus_display_counts: e,
682
- sfsi_plus_email_countsDisplay: t,
683
- sfsi_plus_email_countsFrom: n,
684
- sfsi_plus_email_manualCounts: o,
685
- sfsi_plus_rss_countsDisplay: r,
686
- sfsi_plus_rss_manualCounts: c,
687
- sfsi_plus_facebook_countsDisplay: p,
688
- sfsi_plus_facebook_countsFrom: _,
689
- sfsi_plus_facebook_mypageCounts: mp,
690
- sfsi_plus_facebook_manualCounts: l,
691
- sfsi_plus_twitter_countsDisplay: S,
692
- sfsi_plus_twitter_countsFrom: u,
693
- sfsi_plus_twitter_manualCounts: f,
694
- sfsiplus_tw_consumer_key: d,
695
- sfsiplus_tw_consumer_secret: I,
696
- sfsiplus_tw_oauth_access_token: m,
697
- sfsiplus_tw_oauth_access_token_secret: F,
698
- sfsi_plus_linkedIn_countsDisplay: D,
699
- sfsi_plus_linkedIn_countsFrom: k,
700
- sfsi_plus_linkedIn_manualCounts: y,
701
- sfsi_plus_ln_company: b,
702
- sfsi_plus_ln_api_key: w,
703
- sfsi_plus_ln_secret_key: x,
704
- sfsi_plus_ln_oAuth_user_token: C,
705
- sfsi_plus_youtube_countsDisplay: U,
706
- sfsi_plus_youtube_countsFrom: O,
707
- sfsi_plus_youtube_manualCounts: T,
708
- sfsi_plus_youtube_user: j,
709
- sfsi_plus_youtube_channelId: SFSI("input[name='sfsi_plus_youtube_channelId']").val(),
710
- sfsi_plus_pinterest_countsDisplay: P,
711
- sfsi_plus_pinterest_countsFrom: M,
712
- sfsi_plus_pinterest_manualCounts: L,
713
- sfsi_plus_pinterest_user: B,
714
- sfsi_plus_pinterest_board: E,
715
- sfsi_plus_instagram_countsDisplay: z,
716
- sfsi_plus_instagram_countsFrom: A,
717
- sfsi_plus_instagram_manualCounts: N,
718
- sfsi_plus_instagram_User: H,
719
- sfsi_plus_instagram_clientid: SFSI("input[name='sfsi_plus_instagram_clientid']").val(),
720
- sfsi_plus_instagram_appurl: SFSI("input[name='sfsi_plus_instagram_appurl']").val(),
721
- sfsi_plus_instagram_token: SFSI("input[name='sfsi_plus_instagram_token']").val(),
722
- sfsi_plus_houzz_countsDisplay: houzzDisplay,
723
- sfsi_plus_houzz_countsFrom: houzzFrom,
724
- sfsi_plus_houzz_manualCounts: houzzCount,
725
- sfsi_plus_telegram_countsDisplay: tc,
726
- sfsi_plus_telegram_manualCounts: tm,
727
-
728
- sfsi_plus_ok_countsDisplay: okc,
729
- sfsi_plus_ok_manualCounts: okm,
730
-
731
- sfsi_plus_vk_countsDisplay: vkc,
732
- sfsi_plus_vk_manualCounts: vkm,
733
-
734
- sfsi_plus_weibo_countsDisplay: wbc,
735
- sfsi_plus_weibo_manualCounts: wbm,
736
-
737
- sfsi_plus_wechat_countsDisplay: wcc,
738
- sfsi_plus_wechat_manualCounts: wcm,
739
- nonce: nonce
740
- };
741
- return SFSI.ajax({
742
- url: sfsi_plus_ajax_object.ajax_url,
743
- type: "post",
744
- data: $,
745
- dataType: "json",
746
- async: !0,
747
- success: function (s) {
748
- if (s == "wrong_nonce") {
749
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 4);
750
- global_error = 1;
751
- sfsiplus_afterLoad();
752
- } else {
753
- "success" == s.res ? (sfsiplus_showErrorSuc("success", "Saved !", 4), sfsipluscollapse("#sfsi_plus_save4"),
754
- sfsi_plus_showPreviewCounts()) : (sfsiplus_showErrorSuc("error", "Unkown error , please try again", 4),
755
- global_error = 1), sfsiplus_afterLoad();
756
- }
757
- }
758
- }), s;
759
- }
760
-
761
- function sfsi_plus_update_step5() {
762
- var nonce = SFSI("#sfsi_plus_save5").attr("data-nonce");
763
- sfsi_plus_update_step3();
764
- var s = sfsi_plus_validationStep5();
765
- if (!s) return global_error = 1, !1;
766
- sfsiplus_beForeLoad();
767
- var i = SFSI("input[name='sfsi_plus_icons_size']").val(),
768
- e = SFSI("input[name='sfsi_plus_icons_perRow']").val(),
769
- t = SFSI("input[name='sfsi_plus_icons_spacing']").val(),
770
- n = SFSI("#sfsi_plus_icons_Alignment").val(),
771
- followicon = SFSI("#sfsi_plus_follow_icons_language").val(),
772
- facebookicon = SFSI("#sfsi_plus_facebook_icons_language").val(),
773
- twittericon = SFSI("#sfsi_plus_twitter_icons_language").val(),
774
-
775
- lang = SFSI("#sfsi_plus_icons_language").val(),
776
- o = SFSI("input[name='sfsi_plus_icons_ClickPageOpen']:checked").val(),
777
- a = SFSI("input[name='sfsi_plus_icons_float']:checked").val(),
778
- dsb = SFSI("input[name='sfsi_plus_disable_floaticons']:checked").val(),
779
- dsbv = SFSI("input[name='sfsi_plus_disable_viewport']:checked").val(),
780
- r = SFSI("#sfsi_plus_icons_floatPosition").val(),
781
- c = SFSI("input[name='sfsi_plus_icons_stick']:checked").val(),
782
- p = SFSI("#sfsi_plus_rssIcon_order").attr("data-index"),
783
- _ = SFSI("#sfsi_plus_emailIcon_order").attr("data-index"),
784
- S = SFSI("#sfsi_plus_facebookIcon_order").attr("data-index"),
785
- u = SFSI("#sfsi_plus_twitterIcon_order").attr("data-index"),
786
- f = SFSI("#sfsi_plus_youtubeIcon_order").attr("data-index"),
787
- d = SFSI("#sfsi_plus_pinterestIcon_order").attr("data-index"),
788
- I = SFSI("#sfsi_plus_instagramIcon_order").attr("data-index"),
789
- tl = SFSI("#sfsi_plus_telegramIcon_order").attr("data-index"),
790
- vki = SFSI("#sfsi_plus_vkIcon_order").attr("data-index"),
791
- ok = SFSI("#sfsi_plus_okIcon_order").attr("data-index"),
792
- weibo = SFSI("#sfsi_plus_weiboIcon_order").attr("data-index"),
793
- wechat = SFSI("#sfsi_plus_wechatIcon_order").attr("data-index"),
794
- F = SFSI("#sfsi_plus_linkedinIcon_order").attr("data-index"),
795
- houzzOrder = SFSI("#sfsi_plus_houzzIcon_order").attr("data-index"),
796
- h = new Array();
797
-
798
- SFSI(".sfsiplus_custom_iconOrder").each(function () {
799
- h.push({
800
- order: SFSI(this).attr("data-index"),
801
- ele: SFSI(this).attr("element-id")
802
- });
803
- });
804
- var v = 1 == SFSI("input[name='sfsi_plus_rss_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_rss_MouseOverText']").val(),
805
- g = 1 == SFSI("input[name='sfsi_plus_email_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_email_MouseOverText']").val(),
806
- k = 1 == SFSI("input[name='sfsi_plus_twitter_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_MouseOverText']").val(),
807
- y = 1 == SFSI("input[name='sfsi_plus_facebook_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebook_MouseOverText']").val(),
808
- w = 1 == SFSI("input[name='sfsi_plus_linkedIn_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedIn_MouseOverText']").val(),
809
- x = 1 == SFSI("input[name='sfsi_plus_youtube_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_MouseOverText']").val(),
810
- C = 1 == SFSI("input[name='sfsi_plus_pinterest_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_MouseOverText']").val(),
811
- insD = 1 == SFSI("input[name='sfsi_plus_instagram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_instagram_MouseOverText']").val(),
812
- tl = 1 == SFSI("input[name='sfsi_plus_telegram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_telegram_MouseOverText']").val(),
813
- vk = 1 == SFSI("input[name='sfsi_plus_vk_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_vk_MouseOverText']").val(),
814
- D = 1 == SFSI("input[name='sfsi_plus_houzz_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_houzz_MouseOverText']").val(),
815
- O = {};
816
- SFSI("input[name='sfsi_plus_custom_MouseOverTexts[]']").each(function () {
817
- O[SFSI(this).attr("file-id")] = this.value;
818
- });
819
-
820
- var sfsi_plus_custom_social_hide = SFSI("input[name='sfsi_plus_custom_social_hide']").val();
821
- var se = SFSI("input[name='sfsi_pplus_icons_suppress_errors']:checked").val();
822
-
823
- var T = {
824
- action: "plus_updateSrcn5",
825
- sfsi_plus_icons_size: i,
826
- sfsi_plus_icons_Alignment: n,
827
- sfsi_plus_icons_perRow: e,
828
- sfsi_plus_follow_icons_language: followicon,
829
- sfsi_plus_facebook_icons_language: facebookicon,
830
- sfsi_plus_twitter_icons_language: twittericon,
831
- sfsi_plus_icons_language: lang,
832
- sfsi_plus_icons_spacing: t,
833
- sfsi_plus_icons_ClickPageOpen: o,
834
- sfsi_plus_icons_float: a,
835
- sfsi_plus_disable_floaticons: dsb,
836
- sfsi_plus_disable_viewport: dsbv,
837
- sfsi_plus_icons_floatPosition: r,
838
- sfsi_plus_icons_stick: c,
839
- sfsi_plus_rss_MouseOverText: v,
840
- sfsi_plus_email_MouseOverText: g,
841
- sfsi_plus_twitter_MouseOverText: k,
842
- sfsi_plus_facebook_MouseOverText: y,
843
- sfsi_plus_youtube_MouseOverText: x,
844
- sfsi_plus_linkedIn_MouseOverText: w,
845
- sfsi_plus_pinterest_MouseOverText: C,
846
- sfsi_plus_instagram_MouseOverText: insD,
847
- sfsi_plus_telegram_MouseOverText: tl,
848
- sfsi_plus_vk_MouseOverText: vki,
849
- sfsi_plus_houzz_MouseOverText: D,
850
- sfsi_plus_custom_MouseOverTexts: O,
851
- sfsi_plus_rssIcon_order: p,
852
- sfsi_plus_emailIcon_order: _,
853
- sfsi_plus_facebookIcon_order: S,
854
- sfsi_plus_twitterIcon_order: u,
855
- sfsi_plus_youtubeIcon_order: f,
856
- sfsi_plus_pinterestIcon_order: d,
857
- sfsi_plus_instagramIcon_order: I,
858
- sfsi_plus_telegramIcon_order: tl,
859
- sfsi_plus_vkIcon_order: vki,
860
- sfsi_plus_okIcon_order: ok,
861
- sfsi_plus_weiboIcon_order: weibo,
862
- sfsi_plus_wechatIcon_order: wechat,
863
- sfsi_plus_houzzIcon_order: houzzOrder,
864
- sfsi_plus_linkedinIcon_order: F,
865
- sfsi_plus_custom_orders: h,
866
- sfsi_plus_custom_social_hide: sfsi_plus_custom_social_hide,
867
- sfsi_pplus_icons_suppress_errors: se,
868
- nonce: nonce
869
- };
870
- SFSI.ajax({
871
- url: sfsi_plus_ajax_object.ajax_url,
872
- type: "post",
873
- data: T,
874
- dataType: "json",
875
- async: !0,
876
- success: function (s) {
877
- if (s == "wrong_nonce") {
878
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 5);
879
- global_error = 1;
880
- sfsiplus_afterLoad();
881
- } else {
882
- "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 5), sfsipluscollapse("#sfsi_plus_save5")) : (global_error = 1,
883
- sfsiplus_showErrorSuc("error", "Unkown error , please try again", 5)), sfsiplus_afterLoad();
884
- }
885
- }
886
- });
887
- }
888
-
889
- function sfsi_plus_update_step6() {
890
- var nonce = SFSI("#sfsi_plus_save6").attr("data-nonce");
891
- sfsiplus_beForeLoad();
892
- var s = SFSI("input[name='sfsi_plus_show_Onposts']:checked").val(),
893
- i = SFSI("input[name='sfsi_plus_textBefor_icons']").val(),
894
- e = SFSI("#sfsi_plus_icons_alignment").val(),
895
- t = SFSI("#sfsi_plus_icons_DisplayCounts").val(),
896
- n = {
897
- action: "plus_updateSrcn6",
898
- sfsi_plus_show_Onposts: s,
899
- sfsi_plus_icons_DisplayCounts: t,
900
- sfsi_plus_icons_alignment: e,
901
- sfsi_plus_textBefor_icons: i,
902
- nonce: nonce
903
- };
904
- SFSI.ajax({
905
- url: sfsi_plus_ajax_object.ajax_url,
906
- type: "post",
907
- data: n,
908
- dataType: "json",
909
- async: !0,
910
- success: function (s) {
911
- if (s == "wrong_nonce") {
912
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
913
- global_error = 1;
914
- sfsiplus_afterLoad();
915
- } else {
916
- "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 6), sfsipluscollapse("#sfsi_plus_save6")) : (global_error = 1,
917
- sfsiplus_showErrorSuc("error", "Unkown error , please try again", 6)), sfsiplus_afterLoad();
918
- }
919
- }
920
- });
921
- }
922
-
923
- function sfsi_plus_save_export() {
924
- var nonce = SFSI("#sfsi_plus_save_export").attr("data-nonce");
925
- var data = {
926
- action: "save_export",
927
- nonce: nonce
928
- };
929
- SFSI.ajax({
930
- url: sfsi_plus_ajax_object.ajax_url,
931
- type: "post",
932
- data: data,
933
- success: function (s) {
934
- if (s == "wrong_nonce") {
935
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
936
- global_error = 1;
937
- } else {
938
- var date = new Date();
939
- var timestamp = date.getTime();
940
- var blob = new Blob([JSON.stringify(s, null, 2)], {
941
- type: 'application/json'
942
- });
943
- var url = URL.createObjectURL(blob);
944
- let link = document.createElement("a");
945
- link.href = url;
946
- link.download = "sfsi_plus_export_options"+timestamp+".json"
947
- link.innerText = "Open the array URL";
948
- document.body.appendChild(link);
949
- link.click();
950
- "success" == s ? (sfsiplus_showErrorSuc("Settings Exported !", "Saved !", 6)) : (global_error = 1,
951
- sfsiplus_showErrorSuc("error", "Unkown error , please try again", 6));
952
- }
953
- }
954
- });
955
- }
956
-
957
- function sfsi_plus_update_step7() {
958
- var nonce = SFSI("#sfsi_plus_save7").attr("data-nonce");
959
- var s = sfsi_plus_validationStep7();
960
- if (!s) return global_error = 1, !1;
961
- sfsiplus_beForeLoad();
962
- var i = SFSI("input[name='sfsi_plus_popup_text']").val(),
963
- e = SFSI("#sfsi_plus_popup_font option:selected").val(),
964
- t = (SFSI("#sfsi_plus_popup_fontStyle option:selected").val(),
965
- SFSI("input[name='sfsi_plus_popup_fontColor']").val()),
966
- n = SFSI("input[name='sfsi_plus_popup_fontSize']").val(),
967
- o = SFSI("input[name='sfsi_plus_popup_background_color']").val(),
968
- a = SFSI("input[name='sfsi_plus_popup_border_color']").val(),
969
- r = SFSI("input[name='sfsi_plus_popup_border_thickness']").val(),
970
- c = SFSI("input[name='sfsi_plus_popup_border_shadow']:checked").val(),
971
- p = SFSI("input[name='sfsi_plus_Show_popupOn']:checked").val(),
972
- _ = [];
973
- SFSI("#sfsi_plus_Show_popupOn_PageIDs :selected").each(function (s, i) {
974
- _[s] = SFSI(i).val();
975
- });
976
- var l = SFSI("input[name='sfsi_plus_Shown_pop']:checked").val(),
977
- S = SFSI("input[name='sfsi_plus_Shown_popupOnceTime']").val(),
978
- u = SFSI("#sfsi_plus_Shown_popuplimitPerUserTime").val(),
979
- f = {
980
- action: "plus_updateSrcn7",
981
- sfsi_plus_popup_text: i,
982
- sfsi_plus_popup_font: e,
983
- sfsi_plus_popup_fontColor: t,
984
- sfsi_plus_popup_fontSize: n,
985
- sfsi_plus_popup_background_color: o,
986
- sfsi_plus_popup_border_color: a,
987
- sfsi_plus_popup_border_thickness: r,
988
- sfsi_plus_popup_border_shadow: c,
989
- sfsi_plus_Show_popupOn: p,
990
- sfsi_plus_Show_popupOn_PageIDs: _,
991
- sfsi_plus_Shown_pop: l,
992
- sfsi_plus_Shown_popupOnceTime: S,
993
- sfsi_plus_Shown_popuplimitPerUserTime: u,
994
- nonce: nonce
995
- };
996
- SFSI.ajax({
997
- url: sfsi_plus_ajax_object.ajax_url,
998
- type: "post",
999
- data: f,
1000
- dataType: "json",
1001
- async: !0,
1002
- success: function (s) {
1003
- if (s == "wrong_nonce") {
1004
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
1005
- sfsiplus_afterLoad();
1006
- } else {
1007
- "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 7), sfsipluscollapse("#sfsi_plus_save7")) : sfsiplus_showErrorSuc("error", "Unkown error , please try again", 7),
1008
- sfsiplus_afterLoad();
1009
- }
1010
- }
1011
- });
1012
- }
1013
-
1014
- function sfsi_plus_update_step8() {
1015
- var nonce = SFSI("#sfsi_plus_save8").attr("data-nonce");
1016
- var s = sfsi_plus_validationStep7();
1017
- s = true;
1018
- if (!s) return global_error = 1, !1;
1019
- sfsiplus_beForeLoad();
1020
- var i = SFSI("input[name='sfsi_plus_show_via_widget']:checked").val(),
1021
- e = SFSI("input[name='sfsi_plus_float_on_page']:checked").val(),
1022
- t = SFSI("input[name='sfsi_plus_float_page_position']:checked").val(),
1023
- n = SFSI("input[name='sfsi_plus_place_item_manually']:checked").val(),
1024
- o = SFSI("input[name='sfsi_plus_show_item_onposts']:checked").val(),
1025
- a = SFSI("input[name='sfsi_plus_display_button_type']:checked").val(),
1026
- r = SFSI("input[name='sfsi_plus_post_icons_size']").val(),
1027
- c = SFSI("input[name='sfsi_plus_post_icons_spacing']").val(),
1028
- p = SFSI("input[name='sfsi_plus_show_Onposts']:checked").val(),
1029
- v = SFSI("input[name='sfsi_plus_textBefor_icons']").val(),
1030
- x = SFSI("#sfsi_plus_icons_alignment").val(),
1031
- z = SFSI("#sfsi_plus_icons_DisplayCounts").val(),
1032
- b = SFSI("input[name='sfsi_plus_display_before_posts']:checked").val(),
1033
- d = SFSI("input[name='sfsi_plus_display_after_posts']:checked").val(),
1034
- /*f = SFSI("input[name='sfsi_plus_display_on_postspage']:checked").val(),
1035
- g = SFSI("input[name='sfsi_plus_display_on_homepage']:checked").val(),*/
1036
- f = SFSI("input[name='sfsi_plus_display_before_blogposts']:checked").val(),
1037
- g = SFSI("input[name='sfsi_plus_display_after_blogposts']:checked").val(),
1038
- rsub = SFSI("input[name='sfsi_plus_rectsub']:checked").val(),
1039
- rfb = SFSI("input[name='sfsi_plus_rectfb']:checked").val(),
1040
- rtwr = SFSI("input[name='sfsi_plus_recttwtr']:checked").val(),
1041
- rpin = SFSI("input[name='sfsi_plus_rectpinit']:checked").val(),
1042
- rfbshare = SFSI("input[name='sfsi_plus_rectfbshare']:checked").val(),
1043
- _ = [];
1044
- var sfsi_plus_responsive_icons_end_post = SFSI('input[name="sfsi_plus_responsive_icons_end_post"]:checked').val() || 'no'
1045
-
1046
- var responsive_icons = {
1047
- "default_icons": {},
1048
- "settings": {}
1049
- };
1050
- SFSI('.sfsi_plus_responsive_default_icon_container input[type="checkbox"]').each(function (index, obj) {
1051
- var data_obj = {};
1052
- data_obj.active = ('checked' == SFSI(obj).attr('checked')) ? 'yes' : 'no';
1053
- var iconname = SFSI(obj).attr('data-icon');
1054
- var next_section = SFSI(obj).parent().parent();
1055
- data_obj.text = next_section.find('input[name="sfsi_plus_responsive_' + iconname + '_input"]').val();
1056
- data_obj.url = next_section.find('input[name="sfsi_plus_responsive_' + iconname + '_url_input"]').val();
1057
- responsive_icons.default_icons[iconname] = data_obj;
1058
- });
1059
- SFSI('.sfsi_plus_responsive_custom_icon_container input[type="checkbox"]').each(function (index, obj) {
1060
- if (SFSI(obj).attr('id') != "sfsi_plus_responsive_custom_new_display") {
1061
- var data_obj = {};
1062
- data_obj.active = 'checked' == SFSI(obj).attr('checked') ? 'yes' : 'no';
1063
- var icon_index = SFSI(obj).attr('data-custom-index');
1064
- var next_section = SFSI(obj).parent().parent();
1065
- data_obj['added'] = SFSI('input[name="sfsi_plus_responsive_custom_' + index + '_added"]').val();
1066
- data_obj.icon = next_section.find('img').attr('src');
1067
- data_obj["bg-color"] = next_section.find('.sfsi_plus_bg-color-picker').val();
1068
-
1069
- data_obj.text = next_section.find('input[name="sfsi_plus_responsive_custom_' + icon_index + '_input"]').val();
1070
- data_obj.url = next_section.find('input[name="sfsi_plus_responsive_custom_' + icon_index + '_url_input"]').val();
1071
- responsive_icons.custom_icons[index] = data_obj;
1072
- }
1073
- });
1074
- responsive_icons.settings.icon_size = SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_size"]').val();
1075
- responsive_icons.settings.icon_width_type = SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val();
1076
- responsive_icons.settings.icon_width_size = SFSI('input[name="sfsi_plus_responsive_icons_sttings_icon_width_size"]').val();
1077
- responsive_icons.settings.edge_type = SFSI('select[name="sfsi_plus_responsive_icons_settings_edge_type"]').val();
1078
- responsive_icons.settings.edge_radius = SFSI('select[name="sfsi_plus_responsive_icons_settings_edge_radius"]').val();
1079
- responsive_icons.settings.style = SFSI('select[name="sfsi_plus_responsive_icons_settings_style"]').val();
1080
- responsive_icons.settings.margin = SFSI('input[name="sfsi_plus_responsive_icons_settings_margin"]').val();
1081
- responsive_icons.settings.text_align = SFSI('select[name="sfsi_plus_responsive_icons_settings_text_align"]').val();
1082
- responsive_icons.settings.show_count = SFSI('input[name="sfsi_plus_responsive_icon_show_count"]:checked').val();
1083
- responsive_icons.settings.counter_color = SFSI('input[name="sfsi_plus_responsive_counter_color"]').val();
1084
- responsive_icons.settings.counter_bg_color = SFSI('input[name="sfsi_plus_responsive_counter_bg_color"]').val();
1085
- responsive_icons.settings.share_count_text = SFSI('input[name="sfsi_plus_responsive_counter_share_count_text"]').val();
1086
-
1087
- /*SFSI("#sfsi_plus_Show_popupOn_PageIDs :selected").each(function(s, i) {
1088
- _[s] = SFSI(i).val()
1089
- });*/
1090
- var mst = SFSI("input[name='sfsi_plus_icons_floatMargin_top']").val(),
1091
- msb = SFSI("input[name='sfsi_plus_icons_floatMargin_bottom']").val(),
1092
- msl = SFSI("input[name='sfsi_plus_icons_floatMargin_left']").val(),
1093
- msr = SFSI("input[name='sfsi_plus_icons_floatMargin_right']").val();
1094
-
1095
- var f = {
1096
- action: "plus_updateSrcn8",
1097
- sfsi_plus_show_via_widget: i,
1098
- sfsi_plus_float_on_page: e,
1099
- sfsi_plus_float_page_position: t,
1100
- sfsi_plus_icons_floatMargin_top: mst,
1101
- sfsi_plus_icons_floatMargin_bottom: msb,
1102
- sfsi_plus_icons_floatMargin_left: msl,
1103
- sfsi_plus_icons_floatMargin_right: msr,
1104
- sfsi_plus_place_item_manually: n,
1105
- sfsi_plus_place_item_gutenberg: SFSI("input[name='sfsi_plus_place_item_gutenberg']:checked").val(),
1106
- sfsi_plus_show_item_onposts: o,
1107
- sfsi_plus_display_button_type: a,
1108
- sfsi_plus_post_icons_size: r,
1109
- sfsi_plus_post_icons_spacing: c,
1110
- sfsi_plus_show_Onposts: p,
1111
- sfsi_plus_textBefor_icons: v,
1112
- sfsi_plus_icons_alignment: x,
1113
- sfsi_plus_icons_DisplayCounts: z,
1114
- sfsi_plus_display_before_posts: b,
1115
- sfsi_plus_display_after_posts: d,
1116
- /*sfsi_plus_display_on_postspage: f,
1117
- sfsi_plus_display_on_homepage: g*/
1118
- sfsi_plus_display_before_blogposts: f,
1119
- sfsi_plus_display_after_blogposts: g,
1120
- sfsi_plus_rectsub: rsub,
1121
- sfsi_plus_rectfb: rfb,
1122
- sfsi_plus_recttwtr: rtwr,
1123
- sfsi_plus_rectpinit: rpin,
1124
- sfsi_plus_rectfbshare: rfbshare,
1125
- sfsi_plus_responsive_icons: responsive_icons,
1126
- sfsi_plus_responsive_icons_end_post: sfsi_plus_responsive_icons_end_post,
1127
-
1128
- nonce: nonce
1129
- };
1130
- SFSI.ajax({
1131
- url: sfsi_plus_ajax_object.ajax_url,
1132
- type: "post",
1133
- data: f,
1134
- dataType: "json",
1135
- async: !0,
1136
- success: function (s) {
1137
- if (s == "wrong_nonce") {
1138
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 8);
1139
- sfsiplus_afterLoad();
1140
- } else {
1141
- "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 8), sfsipluscollapse("#sfsi_plus_save8")) : sfsiplus_showErrorSuc("error", "Unkown error , please try again", 8), sfsiplus_afterLoad()
1142
- }
1143
- }
1144
- })
1145
- }
1146
-
1147
- function sfsi_plus_update_step9() {
1148
- var nonce = SFSI("#sfsi_plus_save9").attr("data-nonce");
1149
- sfsiplus_beForeLoad();
1150
- var ie = SFSI("input[name='sfsi_plus_form_adjustment']:checked").val(),
1151
- je = SFSI("input[name='sfsi_plus_form_height']").val(),
1152
- ke = SFSI("input[name='sfsi_plus_form_width']").val(),
1153
- le = SFSI("input[name='sfsi_plus_form_border']:checked").val(),
1154
- me = SFSI("input[name='sfsi_plus_form_border_thickness']").val(),
1155
- ne = SFSI("input[name='sfsi_plus_form_border_color']").val(),
1156
- oe = SFSI("input[name='sfsi_plus_form_background']").val(),
1157
-
1158
- ae = SFSI("input[name='sfsi_plus_form_heading_text']").val(),
1159
- be = SFSI("#sfsi_plus_form_heading_font option:selected").val(),
1160
- ce = SFSI("#sfsi_plus_form_heading_fontstyle option:selected").val(),
1161
- de = SFSI("input[name='sfsi_plus_form_heading_fontcolor']").val(),
1162
- ee = SFSI("input[name='sfsi_plus_form_heading_fontsize']").val(),
1163
- fe = SFSI("#sfsi_plus_form_heading_fontalign option:selected").val(),
1164
-
1165
- ue = SFSI("input[name='sfsi_plus_form_field_text']").val(),
1166
- ve = SFSI("#sfsi_plus_form_field_font option:selected").val(),
1167
- we = SFSI("#sfsi_plus_form_field_fontstyle option:selected").val(),
1168
- xe = SFSI("input[name='sfsi_plus_form_field_fontcolor']").val(),
1169
- ye = SFSI("input[name='sfsi_plus_form_field_fontsize']").val(),
1170
- ze = SFSI("#sfsi_plus_form_field_fontalign option:selected").val(),
1171
-
1172
- i = SFSI("input[name='sfsi_plus_form_button_text']").val(),
1173
- j = SFSI("#sfsi_plus_form_button_font option:selected").val(),
1174
- k = SFSI("#sfsi_plus_form_button_fontstyle option:selected").val(),
1175
- l = SFSI("input[name='sfsi_plus_form_button_fontcolor']").val(),
1176
- m = SFSI("input[name='sfsi_plus_form_button_fontsize']").val(),
1177
- n = SFSI("#sfsi_plus_form_button_fontalign option:selected").val(),
1178
- o = SFSI("input[name='sfsi_plus_form_button_background']").val();
1179
-
1180
- var f = {
1181
- action: "plus_updateSrcn9",
1182
- sfsi_plus_form_adjustment: ie,
1183
- sfsi_plus_form_height: je,
1184
- sfsi_plus_form_width: ke,
1185
- sfsi_plus_form_border: le,
1186
- sfsi_plus_form_border_thickness: me,
1187
- sfsi_plus_form_border_color: ne,
1188
- sfsi_plus_form_background: oe,
1189
-
1190
- sfsi_plus_form_heading_text: ae,
1191
- sfsi_plus_form_heading_font: be,
1192
- sfsi_plus_form_heading_fontstyle: ce,
1193
- sfsi_plus_form_heading_fontcolor: de,
1194
- sfsi_plus_form_heading_fontsize: ee,
1195
- sfsi_plus_form_heading_fontalign: fe,
1196
-
1197
- sfsi_plus_form_field_text: ue,
1198
- sfsi_plus_form_field_font: ve,
1199
- sfsi_plus_form_field_fontstyle: we,
1200
- sfsi_plus_form_field_fontcolor: xe,
1201
- sfsi_plus_form_field_fontsize: ye,
1202
- sfsi_plus_form_field_fontalign: ze,
1203
-
1204
- sfsi_plus_form_button_text: i,
1205
- sfsi_plus_form_button_font: j,
1206
- sfsi_plus_form_button_fontstyle: k,
1207
- sfsi_plus_form_button_fontcolor: l,
1208
- sfsi_plus_form_button_fontsize: m,
1209
- sfsi_plus_form_button_fontalign: n,
1210
- sfsi_plus_form_button_background: o,
1211
-
1212
- nonce: nonce
1213
- };
1214
- SFSI.ajax({
1215
- url: sfsi_plus_ajax_object.ajax_url,
1216
- type: "post",
1217
- data: f,
1218
- dataType: "json",
1219
- async: !0,
1220
- success: function (s) {
1221
- if (s == "wrong_nonce") {
1222
- sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 9);
1223
- sfsiplus_afterLoad();
1224
- } else {
1225
- "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 9), sfsipluscollapse("#sfsi_plus_save9"), sfsi_plus_create_suscriber_form()) : sfsiplus_showErrorSuc("error", "Unkown error , please try again", 9),
1226
- sfsiplus_afterLoad();
1227
- }
1228
- }
1229
- });
1230
- }
1231
-
1232
- function sfsiplus_afterIconSuccess(s, nonce) {
1233
- if (s.res = "success") {
1234
- var i = s.key + 1,
1235
- e = s.element,
1236
- t = e + 1;
1237
- SFSI("#plus_total_cusotm_icons").val(s.element);
1238
- SFSI(".upload-overlay").hide("slow");
1239
- SFSI(".uperror").html("");
1240
- sfsiplus_showErrorSuc("success", "Custom Icon updated successfully", 1);
1241
- d = new Date();
1242
-
1243
- SFSI("li.plus_custom:last-child").removeClass("bdr_btm_non");
1244
- SFSI("li.plus_custom:last-child").children("span.plus_custom-img").children("img").attr("src", s.img_path + "?" + d.getTime());
1245
- SFSI("input[name=plussfsiICON_" + s.key + "]").removeAttr("ele-type");
1246
- SFSI("input[name=plussfsiICON_" + s.key + "]").removeAttr("isnew");
1247
- icons_name = SFSI("li.plus_custom:last-child").find("input.styled").attr("name");
1248
- var n = icons_name.split("_");
1249
- s.key = s.key, s.img_path += "?" + d.getTime(), 5 > e && SFSI(".plus_icn_listing").append('<li id="plus_c' + i + '" class="plus_custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style="background-position: 0px 0px;"></span><input name="plussfsiICON_' + i + '" type="checkbox" value="yes" class="styled" style="display:none;" element-type="sfsiplus-cusotm-icon" isNew="yes" /></div> <span class="plus_custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="plus_CImg_' + i + '" /> </span> <span class="custom sfsiplus_custom-txt">Custom' + t + ' </span> <div class="sfsiplus_right_info"> <p><span>' + object_name1.It_depends + ':</span> ' + object_name1.Upload_a + '</p><div class="inputWrapper"></div></li>'),
1250
- SFSI(".sfsiplus_custom_section").show(), SFSI(".plus_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 sfsiplus_custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_plus_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>');
1251
- var o = SFSI("div.plus_custom_m").find("div.mouseover_field").length;
1252
- SFSI("div.plus_custom_m").append(0 == o % 2 ? '<div class="clear"> </div> <div class="mouseover_field sfsiplus_custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_plus_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>' : '<div class="cHover " ><div class="mouseover_field sfsiplus_custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_plus_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>'),
1253
- SFSI("ul.plus_share_icon_order").append('<li class="sfsiplus_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>'),
1254
- SFSI("ul.plus_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>'),
1255
-
1256
- SFSI('.banner_custom_icon').show();
1257
- SFSI("#plus_c" + s.key).append('<input type="hidden" name="nonce" value="' + nonce + '">');
1258
- sfsi_plus_update_index(), plus_update_Sec5Iconorder(), sfsi_plus_update_step1(), sfsi_plus_update_step2(),
1259
- sfsi_plus_update_step5(), SFSI(".upload-overlay").css("pointer-events", "auto"), sfsi_plus_showPreviewCounts(),
1260
- sfsiplus_afterLoad();
1261
- }
1262
- }
1263
-
1264
- function sfsiplus_beforeIconSubmit(s) {
1265
- if (SFSI(".uperror").html("Uploading....."), window.File && window.FileReader && window.FileList && window.Blob) {
1266
- SFSI(s).val() || SFSI(".uperror").html("File is empty");
1267
- var i = s.files[0].size,
1268
- e = s.files[0].type;
1269
- switch (e) {
1270
- case "image/png":
1271
- case "image/gif":
1272
- case "image/jpeg":
1273
- case "image/pjpeg":
1274
- break;
1275
-
1276
- default:
1277
- return SFSI(".uperror").html("Unsupported file"), !1;
1278
- }
1279
- return i > 1048576 ? (SFSI(".uperror").html("Image should be less than 1 MB"), !1) : !0;
1280
- }
1281
- return !0;
1282
- }
1283
-
1284
- function sfsiplus_bytesToSize(s) {
1285
- var i = ["Bytes", "KB", "MB", "GB", "TB"];
1286
- if (0 == s) return "0 Bytes";
1287
- var e = parseInt(Math.floor(Math.log(s) / Math.log(1024)));
1288
- return Math.round(s / Math.pow(1024, e), 2) + " " + i[e];
1289
- }
1290
-
1291
- function sfsiplus_showErrorSuc(s, i, e) {
1292
- if ("error" == s) var t = "errorMsg";
1293
- else var t = "sucMsg";
1294
- return SFSI(".tab" + e + ">." + t).html(i), SFSI(".tab" + e + ">." + t).show(),
1295
- SFSI(".tab" + e + ">." + t).effect("highlight", {}, 5e3), setTimeout(function () {
1296
- SFSI("." + t).slideUp("slow");
1297
- }, 5e3), !1;
1298
- }
1299
-
1300
- function sfsiplus_beForeLoad() {
1301
- SFSI(".loader-img").show(), SFSI(".save_button >a").html("Saving..."), SFSI(".save_button >a").css("pointer-events", "none");
1302
- }
1303
-
1304
- function sfsiplus_afterLoad() {
1305
- SFSI("input").removeClass("inputError"), SFSI(".save_button >a").html(object_name.Sa_ve),
1306
- SFSI(".tab10>div.save_button >a").html(object_name1.Save_All_Settings),
1307
- SFSI(".save_button >a").css("pointer-events", "auto"), SFSI(".save_button >a").removeAttr("onclick"),
1308
- SFSI(".loader-img").hide();
1309
- }
1310
-
1311
- function sfsi_plus_make_popBox() {
1312
- var s = 0;
1313
- SFSI(".plus_sfsi_sample_icons >li").each(function () {
1314
- "none" != SFSI(this).css("display") && (s = 1);
1315
- }), 0 == s ? SFSI(".sfsi_plus_Popinner").hide() : SFSI(".sfsi_plus_Popinner").show(), "" != SFSI('input[name="sfsi_plus_popup_text"]').val() ? (SFSI(".sfsi_plus_Popinner >h2").html(SFSI('input[name="sfsi_plus_popup_text"]').val()),
1316
- SFSI(".sfsi_plus_Popinner >h2").show()) : SFSI(".sfsi_plus_Popinner >h2").hide(), SFSI(".sfsi_plus_Popinner").css({
1317
- "border-color": SFSI('input[name="sfsi_plus_popup_border_color"]').val(),
1318
- "border-width": SFSI('input[name="sfsi_plus_popup_border_thickness"]').val(),
1319
- "border-style": "solid"
1320
- }), SFSI(".sfsi_plus_Popinner").css("background-color", SFSI('input[name="sfsi_plus_popup_background_color"]').val()),
1321
- SFSI(".sfsi_plus_Popinner h2").css("font-family", SFSI("#sfsi_plus_popup_font").val()), SFSI(".sfsi_plus_Popinner h2").css("font-style", SFSI("#sfsi_plus_popup_fontStyle").val()),
1322
- SFSI(".sfsi_plus_Popinner >h2").css("font-size", parseInt(SFSI('input[name="sfsi_plus_popup_fontSize"]').val())),
1323
- SFSI(".sfsi_plus_Popinner >h2").css("color", SFSI('input[name="sfsi_plus_popup_fontColor"]').val() + " !important"),
1324
- "yes" == SFSI('input[name="sfsi_plus_popup_border_shadow"]:checked').val() ? SFSI(".sfsi_plus_Popinner").css("box-shadow", "12px 30px 18px #CCCCCC") : SFSI(".sfsi_plus_Popinner").css("box-shadow", "none");
1325
- }
1326
-
1327
- function sfsi_plus_stick_widget(s) {
1328
- 0 == sfsiplus_initTop.length && (SFSI(".sfsi_plus_widget").each(function (s) {
1329
- sfsiplus_initTop[s] = SFSI(this).position().top;
1330
- })
1331
- );
1332
- var i = SFSI(window).scrollTop(),
1333
- e = [],
1334
- t = [];
1335
- SFSI(".sfsi_plus_widget").each(function (s) {
1336
- e[s] = SFSI(this).position().top, t[s] = SFSI(this);
1337
- });
1338
- var n = !1;
1339
- for (var o in e) {
1340
- var a = parseInt(o) + 1;
1341
- e[o] < i && e[a] > i && a < e.length ? (SFSI(t[o]).css({
1342
- position: "fixed",
1343
- top: s
1344
- }), SFSI(t[a]).css({
1345
- position: "",
1346
- top: sfsiplus_initTop[a]
1347
- }), n = !0) : SFSI(t[o]).css({
1348
- position: "",
1349
- top: sfsiplus_initTop[o]
1350
- });
1351
- }
1352
- if (!n) {
1353
- var r = e.length - 1,
1354
- c = -1;
1355
- e.length > 1 && (c = e.length - 2), sfsiplus_initTop[r] < i ? (SFSI(t[r]).css({
1356
- position: "fixed",
1357
- top: s
1358
- }), c >= 0 && SFSI(t[c]).css({
1359
- position: "",
1360
- top: sfsiplus_initTop[c]
1361
- })) : (SFSI(t[r]).css({
1362
- position: "",
1363
- top: sfsiplus_initTop[r]
1364
- }), c >= 0 && e[c] < i);
1365
- }
1366
- }
1367
-
1368
- function sfsi_plus_setCookie(s, i, e) {
1369
- var t = new Date();
1370
- t.setTime(t.getTime() + 1e3 * 60 * 60 * 24 * e);
1371
- var n = "expires=" + t.toGMTString();
1372
- document.cookie = s + "=" + i + "; " + n;
1373
- }
1374
-
1375
- function sfsfi_plus_getCookie(s) {
1376
- for (var i = s + "=", e = document.cookie.split(";"), t = 0; t < e.length; t++) {
1377
- var n = e[t].trim();
1378
- if (0 == n.indexOf(i)) return n.substring(i.length, n.length);
1379
- }
1380
- return "";
1381
- }
1382
-
1383
- function sfsi_plus_hideFooter() {}
1384
-
1385
- window.onerror = function () {}, SFSI = jQuery.noConflict(), SFSI(window).on('load', function () {
1386
- SFSI("#sfpluspageLoad").fadeOut(2e3);
1387
- });
1388
-
1389
- //changes done {Monad}
1390
- function sfsi_plus_selectText(containerid) {
1391
- if (document.selection) {
1392
- var range = document.body.createTextRange();
1393
- range.moveToElementText(document.getElementById(containerid));
1394
- range.select();
1395
- } else if (window.getSelection()) {
1396
- var range = document.createRange();
1397
- range.selectNode(document.getElementById(containerid));
1398
- window.getSelection().removeAllRanges();
1399
- window.getSelection().addRange(range);
1400
- }
1401
- }
1402
-
1403
- function sfsi_plus_create_suscriber_form() {
1404
- //Popbox customization
1405
- "no" == SFSI('input[name="sfsi_plus_form_adjustment"]:checked').val() ? SFSI(".sfsi_plus_subscribe_Popinner").css({
1406
- "width": parseInt(SFSI('input[name="sfsi_plus_form_width"]').val()),
1407
- "height": parseInt(SFSI('input[name="sfsi_plus_form_height"]').val())
1408
- }) : SFSI(".sfsi_plus_subscribe_Popinner").css({
1409
- "width": '',
1410
- "height": ''
1411
- });
1412
-
1413
- "yes" == SFSI('input[name="sfsi_plus_form_adjustment"]:checked').val() ? SFSI(".sfsi_plus_html > .sfsi_plus_subscribe_Popinner").css({
1414
- "width": "100%"
1415
- }) : '';
1416
-
1417
- "yes" == SFSI('input[name="sfsi_plus_form_border"]:checked').val() ? SFSI(".sfsi_plus_subscribe_Popinner").css({
1418
- "border": SFSI('input[name="sfsi_plus_form_border_thickness"]').val() + "px solid " + SFSI('input[name="sfsi_plus_form_border_color"]').val()
1419
- }) : SFSI(".sfsi_plus_subscribe_Popinner").css("border", "none");
1420
-
1421
- SFSI('input[name="sfsi_plus_form_background"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").css("background-color", SFSI('input[name="sfsi_plus_form_background"]').val())) : '';
1422
-
1423
- //Heading customization
1424
- SFSI('input[name="sfsi_plus_form_heading_text"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").html(SFSI('input[name="sfsi_plus_form_heading_text"]').val())) : SFSI(".sfsi_plus_subscribe_Popinner > form > h5").html('');
1425
-
1426
- SFSI('#sfsi_plus_form_heading_font').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-family", SFSI("#sfsi_plus_form_heading_font").val())) : '';
1427
-
1428
- if (SFSI('#sfsi_plus_form_heading_fontstyle').val() != 'bold') {
1429
- SFSI('#sfsi_plus_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-style", SFSI("#sfsi_plus_form_heading_fontstyle").val())) : '';
1430
- SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-weight", '');
1431
- } else {
1432
- SFSI('#sfsi_plus_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-weight", "bold")) : '';
1433
- SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-style", '');
1434
- }
1435
-
1436
- SFSI('input[name="sfsi_plus_form_heading_fontcolor"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("color", SFSI('input[name="sfsi_plus_form_heading_fontcolor"]').val())) : '';
1437
-
1438
- SFSI('input[name="sfsi_plus_form_heading_fontsize"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css({
1439
- "font-size": parseInt(SFSI('input[name="sfsi_plus_form_heading_fontsize"]').val())
1440
- })) : '';
1441
-
1442
- SFSI('#sfsi_plus_form_heading_fontalign').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("text-align", SFSI("#sfsi_plus_form_heading_fontalign").val())) : '';
1443
-
1444
- //Field customization
1445
- SFSI('input[name="sfsi_plus_form_field_text"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", SFSI('input[name="sfsi_plus_form_field_text"]').val())) : SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", '');
1446
-
1447
- SFSI('input[name="sfsi_plus_form_field_text"]').val() != "" ? (SFSI(".sfsi_plus_left_container > .sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_plus_form_field_text"]').val())) : SFSI(".sfsi_plus_left_container > .sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1448
-
1449
- SFSI('input[name="sfsi_plus_form_field_text"]').val() != "" ? (SFSI(".like_pop_box > .sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_plus_form_field_text"]').val())) : SFSI(".like_pop_box > .sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1450
-
1451
- SFSI('#sfsi_plus_form_field_font').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-family", SFSI("#sfsi_plus_form_field_font").val())) : '';
1452
-
1453
- if (SFSI('#sfsi_plus_form_field_fontstyle').val() != "bold") {
1454
- SFSI('#sfsi_plus_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", SFSI("#sfsi_plus_form_field_fontstyle").val())) : '';
1455
- SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", '');
1456
- } else {
1457
- SFSI('#sfsi_plus_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", 'bold')) : '';
1458
- SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", '');
1459
- }
1460
-
1461
- SFSI('input[name="sfsi_plus_form_field_fontcolor"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("color", SFSI('input[name="sfsi_plus_form_field_fontcolor"]').val())) : '';
1462
-
1463
- SFSI('input[name="sfsi_plus_form_field_fontsize"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css({
1464
- "font-size": parseInt(SFSI('input[name="sfsi_plus_form_field_fontsize"]').val())
1465
- })) : '';
1466
-
1467
- SFSI('#sfsi_plus_form_field_fontalign').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("text-align", SFSI("#sfsi_plus_form_field_fontalign").val())) : '';
1468
-
1469
- //Button customization
1470
- SFSI('input[name="sfsi_plus_form_button_text"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').attr("value", SFSI('input[name="sfsi_plus_form_button_text"]').val())) : '';
1471
-
1472
- SFSI('#sfsi_plus_form_button_font').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-family", SFSI("#sfsi_plus_form_button_font").val())) : '';
1473
-
1474
- if (SFSI('#sfsi_plus_form_button_fontstyle').val() != "bold") {
1475
- SFSI('#sfsi_plus_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", SFSI("#sfsi_plus_form_button_fontstyle").val())) : '';
1476
- SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", '');
1477
- } else {
1478
- SFSI('#sfsi_plus_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", 'bold')) : '';
1479
- SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", '');
1480
- }
1481
-
1482
- SFSI('input[name="sfsi_plus_form_button_fontcolor"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("color", SFSI('input[name="sfsi_plus_form_button_fontcolor"]').val())) : '';
1483
-
1484
- SFSI('input[name="sfsi_plus_form_button_fontsize"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css({
1485
- "font-size": parseInt(SFSI('input[name="sfsi_plus_form_button_fontsize"]').val())
1486
- })) : '';
1487
-
1488
- SFSI('#sfsi_plus_form_button_fontalign').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("text-align", SFSI("#sfsi_plus_form_button_fontalign").val())) : '';
1489
-
1490
- SFSI('input[name="sfsi_plus_form_button_background"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("background-color", SFSI('input[name="sfsi_plus_form_button_background"]').val())) : '';
1491
-
1492
- var innerHTML = SFSI(".sfsi_plus_html > .sfsi_plus_subscribe_Popinner").html();
1493
- var styleCss = SFSI(".sfsi_plus_html > .sfsi_plus_subscribe_Popinner").attr("style");
1494
- innerHTML = '<div style="' + styleCss + '">' + innerHTML + '</div>';
1495
- SFSI(".sfsi_plus_subscription_html > xmp").html(innerHTML);
1496
-
1497
- /*var data = {
1498
- action:"getForm",
1499
- heading: SFSI('input[name="sfsi_plus_form_heading_text"]').val(),
1500
- placeholder:SFSI('input[name="sfsi_plus_form_field_text"]').val(),
1501
- button:SFSI('input[name="sfsi_plus_form_button_text"]').val()
1502
- };
1503
- SFSI.ajax({
1504
- url:sfsi_plus_ajax_object.ajax_url,
1505
- type:"post",
1506
- data:data,
1507
- success:function(s) {
1508
- SFSI(".sfsi_plus_subscription_html").html(s);
1509
- }
1510
- });*/
1511
- }
1512
-
1513
- var global_error = 0;
1514
- SFSI(document).ready(function (s) {
1515
- //changes done {Monad}
1516
- function sfsi_plus_open_admin_section(id){
1517
- SFSI("#ui-id-"+(id+1)).show();
1518
- SFSI("#ui-id-"+id).removeClass("ui-corner-all");
1519
- SFSI("#ui-id-"+id).addClass("ui-corner-top");
1520
- SFSI("#ui-id-"+id).addClass("accordion-header-active");
1521
- SFSI("#ui-id-"+id).addClass("ui-state-active");
1522
- SFSI("#ui-id-"+id).attr("aria-expanded","false");
1523
- SFSI("#ui-id-"+id).attr("aria-selected","true");
1524
- if(SFSI("#ui-id-"+(id+1)).length>0){
1525
- SFSI("#ui-id-"+(id-2))[0].scrollIntoView();
1526
- }
1527
- }
1528
- var sfsi_plus_show_option1 = SFSI('input[name="sfsi_plus_show_via_widget"]:checked').val()||'no';
1529
- var sfsi_plus_show_option2 = SFSI('input[name="sfsi_plus_float_on_page"]:checked').val()||'no';
1530
- var sfsi_plus_show_option3 = SFSI('input[name="sfsi_plus_place_item_manually"]:checked').val()||'no';
1531
- var sfsi_plus_show_option4 = SFSI('input[name="sfsi_plus_show_item_onposts"]:checked').val()||'no';
1532
- var sfsi_plus_show_option5 = SFSI('input[name="sfsi_plus_place_item_gutenberg"]:checked').val()||'no';
1533
-
1534
- var sfsi_plus_analyst_popup = SFSI('#sfsi_plus_analyst_pop').attr('data-status');
1535
-
1536
- if(sfsi_plus_analyst_popup =="no"){
1537
- if(sfsi_plus_show_option1=="no" && sfsi_plus_show_option2=='no' && sfsi_plus_show_option3 =='no' && sfsi_plus_show_option4 == 'no' && sfsi_plus_show_option5 =='no'){
1538
- sfsi_plus_open_admin_section(5);
1539
- if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1540
- setTimeout(function(){
1541
- sfsi_plus_open_admin_section(5);
1542
- if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1543
- setTimeout(function(){
1544
- sfsi_plus_open_admin_section(5);
1545
- if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1546
- setTimeout(function(){
1547
- sfsi_plus_open_admin_section(5);
1548
- if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1549
- setTimeout(function(){
1550
- sfsi_plus_open_admin_section(5);
1551
- },2000);
1552
- }
1553
- },2000);
1554
- }
1555
- },2000);
1556
- }
1557
- },2000);
1558
- }
1559
- }
1560
- }else{
1561
- SFSI("#analyst-install-skip, #analyst-install-action").click(function(){
1562
- sfsi_plus_open_admin_section(5);
1563
- if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1564
- setTimeout(function(){
1565
- sfsi_plus_open_admin_section(5);
1566
- if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1567
- setTimeout(function(){
1568
- sfsi_plus_open_admin_section(5);
1569
- if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1570
- setTimeout(function(){
1571
- sfsi_plus_open_admin_section(5);
1572
- },2000);
1573
- }
1574
- },2000);
1575
- }
1576
- },2000);
1577
- }
1578
- })
1579
- }
1580
-
1581
- SFSI(document).on("click", "#sfsi_dummy_chat_icon", function () {
1582
- SFSI(".sfsi_plus_wait_container").show();
1583
- });
1584
-
1585
- SFSI(document).on("click", ".sfsi-notice-dismiss", function () {
1586
-
1587
- SFSI.ajax({
1588
- url: sfsi_plus_ajax_object.ajax_url,
1589
- type: "post",
1590
- data: {
1591
- action: "sfsi_plus_dismiss_lang_notice"
1592
- },
1593
- success: function (e) {
1594
- if (false != e) {
1595
- SFSI(".sfsi-notice-dismiss").parent().remove();
1596
- }
1597
- }
1598
- });
1599
- });
1600
-
1601
-
1602
- SFSI(".lanOnchange").change(function () {
1603
- var currentDrpdown = SFSI(this).parents(".icons_size");
1604
- var nonce = currentDrpdown.find('select').attr('data-nonce');
1605
- var data = {
1606
- action: "getIconPreview",
1607
- iconValue: SFSI(this).val(),
1608
- nonce: nonce,
1609
- iconname: SFSI(this).attr("data-iconUrl")
1610
- };
1611
- SFSI.ajax({
1612
- url: sfsi_plus_ajax_object.ajax_url,
1613
- type: "post",
1614
- data: data,
1615
- success: function (s) {
1616
- currentDrpdown.children(".social-img-link").html(s);
1617
- }
1618
- });
1619
- });
1620
-
1621
- SFSI(".sfsiplus_tab_3_icns").on("click", ".cstomskins_upload", function () {
1622
- SFSI(".cstmskins-overlay").show("slow", function () {
1623
- e = 0;
1624
- });
1625
- });
1626
- /*SFSI("#custmskin_clspop").live("click", function() {*/
1627
- SFSI(document).on("click", '#custmskin_clspop', function () {
1628
- var nonce = SFSI(this).attr('data-nonce');
1629
- SFSI_plus_done(nonce);
1630
- SFSI(".cstmskins-overlay").hide("slow");
1631
- });
1632
-
1633
- sfsi_plus_create_suscriber_form();
1634
-
1635
- SFSI('input[name="sfsi_plus_form_heading_text"], input[name="sfsi_plus_form_border_thickness"], input[name="sfsi_plus_form_height"], input[name="sfsi_plus_form_width"], input[name="sfsi_plus_form_heading_fontsize"], input[name="sfsi_plus_form_field_text"], input[name="sfsi_plus_form_field_fontsize"], input[name="sfsi_plus_form_button_text"], input[name="sfsi_plus_form_button_fontsize"]').on("keyup", sfsi_plus_create_suscriber_form);
1636
-
1637
- SFSI('input[name="sfsi_plus_form_border_color"], input[name="sfsi_plus_form_background"] ,input[name="sfsi_plus_form_heading_fontcolor"], input[name="sfsi_plus_form_field_fontcolor"] ,input[name="sfsi_plus_form_button_fontcolor"],input[name="sfsi_plus_form_button_background"]').on("focus", sfsi_plus_create_suscriber_form);
1638
-
1639
- SFSI("#sfsi_plus_form_heading_font, #sfsi_plus_form_heading_fontstyle, #sfsi_plus_form_heading_fontalign, #sfsi_plus_form_field_font, #sfsi_plus_form_field_fontstyle, #sfsi_plus_form_field_fontalign, #sfsi_plus_form_button_font, #sfsi_plus_form_button_fontstyle, #sfsi_plus_form_button_fontalign").on("change", sfsi_plus_create_suscriber_form);
1640
-
1641
- /*SFSI(".radio").live("click", function() {*/
1642
- SFSI(document).on("click", '.radio', function () {
1643
- var s = SFSI(this).parent().find("input:radio:first");
1644
- switch (s.attr("name")) {
1645
- case 'sfsi_plus_form_adjustment':
1646
- if (s.val() == 'no')
1647
- s.parents(".row_tab").next(".row_tab").show("fast");
1648
- else
1649
- s.parents(".row_tab").next(".row_tab").hide("fast");
1650
- sfsi_plus_create_suscriber_form()
1651
- break;
1652
- case 'sfsi_plus_form_border':
1653
- if (s.val() == 'yes')
1654
- s.parents(".row_tab").next(".row_tab").show("fast");
1655
- else
1656
- s.parents(".row_tab").next(".row_tab").hide("fast");
1657
- sfsi_plus_create_suscriber_form()
1658
- break;
1659
- case 'sfsi_pplus_icons_suppress_errors':
1660
-
1661
- SFSI('input[name="sfsi_pplus_icons_suppress_errors"]').removeAttr('checked');
1662
-
1663
- if (s.val() == 'yes')
1664
- SFSI('input[name="sfsi_pplus_icons_suppress_errors"][value="yes"]').prop('checked', 'true');
1665
- else
1666
- SFSI('input[name="sfsi_pplus_icons_suppress_errors"][value="no"]').prop('checked', 'true');
1667
- break;
1668
- case 'sfsi_plus_responsive_icon_show_count':
1669
- if ("yes" == s.val()) {
1670
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').show();
1671
- } else {
1672
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').hide();
1673
- }
1674
- default:
1675
- }
1676
- });
1677
- //pooja 28-12-2015
1678
- SFSI('#sfsi_plus_form_border_color').wpColorPicker({
1679
- defaultColor: false,
1680
- change: function (event, ui) {
1681
- sfsi_plus_create_suscriber_form()
1682
- },
1683
- clear: function () {
1684
- sfsi_plus_create_suscriber_form()
1685
- },
1686
- hide: true,
1687
- palettes: true
1688
- }),
1689
- SFSI('#sfsi_plus_form_background').wpColorPicker({
1690
- defaultColor: false,
1691
- change: function (event, ui) {
1692
- sfsi_plus_create_suscriber_form()
1693
- },
1694
- clear: function () {
1695
- sfsi_plus_create_suscriber_form()
1696
- },
1697
- hide: true,
1698
- palettes: true
1699
- }),
1700
- SFSI('#sfsi_plus_form_heading_fontcolor').wpColorPicker({
1701
- defaultColor: false,
1702
- change: function (event, ui) {
1703
- sfsi_plus_create_suscriber_form()
1704
- },
1705
- clear: function () {
1706
- sfsi_plus_create_suscriber_form()
1707
- },
1708
- hide: true,
1709
- palettes: true
1710
- }),
1711
- SFSI('#sfsi_plus_form_button_fontcolor').wpColorPicker({
1712
- defaultColor: false,
1713
- change: function (event, ui) {
1714
- sfsi_plus_create_suscriber_form()
1715
- },
1716
- clear: function () {
1717
- sfsi_plus_create_suscriber_form()
1718
- },
1719
- hide: true,
1720
- palettes: true
1721
- }),
1722
- SFSI('#sfsi_plus_form_button_background').wpColorPicker({
1723
- defaultColor: false,
1724
- change: function (event, ui) {
1725
- sfsi_plus_create_suscriber_form()
1726
- },
1727
- clear: function () {
1728
- sfsi_plus_create_suscriber_form()
1729
- },
1730
- hide: true,
1731
- palettes: true
1732
- });
1733
- /*SFSI("#sfsiPlusFormBorderColor").ColorPicker({
1734
- color:"#f80000",
1735
- onBeforeShow:function() {
1736
- s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_border_color").val());
1737
- },
1738
- onShow:function(s) {
1739
- return SFSI(s).fadeIn(500), !1;
1740
- },
1741
- onHide:function(s) {
1742
- return SFSI(s).fadeOut(500), !1;
1743
- },
1744
- onChange:function(s, i) {
1745
- SFSI("#sfsi_plus_form_border_color").val("#" + i), SFSI("#sfsiPlusFormBorderColor").css("background", "#" + i);
1746
- sfsi_plus_create_suscriber_form();
1747
- },
1748
- onClick:function(s, i) {
1749
- SFSI("#sfsi_plus_popup_background_color").val("#" + i), SFSI("#sfsiPlusFormBorderColor").css("background", "#" + i);
1750
- sfsi_plus_create_suscriber_form();
1751
- }
1752
- }),
1753
- SFSI("#sfsiPlusFormBackground").ColorPicker({
1754
- color:"#f80000",
1755
- onBeforeShow:function() {
1756
- s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_background").val());
1757
- },
1758
- onShow:function(s) {
1759
- return SFSI(s).fadeIn(500), !1;
1760
- },
1761
- onHide:function(s) {
1762
- return SFSI(s).fadeOut(500), !1;
1763
- },
1764
- onChange:function(s, i) {
1765
- SFSI("#sfsi_plus_form_background").val("#" + i), SFSI("#sfsiPlusFormBackground").css("background", "#" + i);
1766
- sfsi_plus_create_suscriber_form();
1767
- },
1768
- onClick:function(s, i) {
1769
- SFSI("#sfsi_plus_form_background").val("#" + i), SFSI("#sfsiPlusFormBackground").css("background", "#" + i);
1770
- sfsi_plus_create_suscriber_form();
1771
- }
1772
- }),
1773
- SFSI("#sfsiPlusFormHeadingFontcolor").ColorPicker({
1774
- color:"#f80000",
1775
- onBeforeShow:function() {
1776
- s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_heading_fontcolor").val());
1777
- },
1778
- onShow:function(s) {
1779
- return SFSI(s).fadeIn(500), !1;
1780
- },
1781
- onHide:function(s) {
1782
- return SFSI(s).fadeOut(500), !1;
1783
- },
1784
- onChange:function(s, i) {
1785
- SFSI("#sfsi_plus_form_heading_fontcolor").val("#"+i), SFSI("#sfsiPlusFormHeadingFontcolor").css("background","#"+i);
1786
- sfsi_plus_create_suscriber_form();
1787
- },
1788
- onClick:function(s, i) {
1789
- SFSI("#sfsi_plus_form_heading_fontcolor").val("#"+i), SFSI("#sfsiPlusFormHeadingFontcolor").css("background","#"+i);
1790
- sfsi_plus_create_suscriber_form();
1791
- }
1792
- }),
1793
- SFSI("#sfsiPlusFormFieldFontcolor").ColorPicker({
1794
- color:"#f80000",
1795
- onBeforeShow:function() {
1796
- s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_field_fontcolor").val());
1797
- },
1798
- onShow:function(s) {
1799
- return SFSI(s).fadeIn(500), !1;
1800
- },
1801
- onHide:function(s) {
1802
- return SFSI(s).fadeOut(500), !1;
1803
- },
1804
- onChange:function(s, i) {
1805
- SFSI("#sfsi_plus_form_field_fontcolor").val("#" + i), SFSI("#sfsiPlusFormFieldFontcolor").css("background", "#" +i);
1806
- sfsi_plus_create_suscriber_form();
1807
- },
1808
- onClick:function(s, i) {
1809
- SFSI("#sfsi_plus_form_field_fontcolor").val("#" + i), SFSI("#sfsiPlusFormFieldFontcolor").css("background", "#" +i);
1810
- sfsi_plus_create_suscriber_form();
1811
- }
1812
- }),
1813
- SFSI("#sfsiPlusFormButtonFontcolor").ColorPicker({
1814
- color:"#f80000",
1815
- onBeforeShow:function() {
1816
- s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_button_fontcolor").val());
1817
- },
1818
- onShow:function(s) {
1819
- return SFSI(s).fadeIn(500), !1;
1820
- },
1821
- onHide:function(s) {
1822
- return SFSI(s).fadeOut(500), !1;
1823
- },
1824
- onChange:function(s, i) {
1825
- SFSI("#sfsi_plus_form_button_fontcolor").val("#"+i), SFSI("#sfsiPlusFormButtonFontcolor").css("background", "#"+i);
1826
- sfsi_plus_create_suscriber_form();
1827
- },
1828
- onClick:function(s, i) {
1829
- SFSI("#sfsi_plus_form_button_fontcolor").val("#"+i), SFSI("#sfsiPlusFormButtonFontcolor").css("background", "#"+i);
1830
- sfsi_plus_create_suscriber_form();
1831
- }
1832
- }),
1833
- SFSI("#sfsiPlusFormButtonBackground").ColorPicker({
1834
- color:"#f80000",
1835
- onBeforeShow:function() {
1836
- s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_button_background").val());
1837
- },
1838
- onShow:function(s) {
1839
- return SFSI(s).fadeIn(500), !1;
1840
- },
1841
- onHide:function(s) {
1842
- return SFSI(s).fadeOut(500), !1;
1843
- },
1844
- onChange:function(s, i) {
1845
- SFSI("#sfsi_plus_form_button_background").val("#"+i), SFSI("#sfsiPlusFormButtonBackground").css("background","#"+i);
1846
- sfsi_plus_create_suscriber_form();
1847
- },
1848
- onClick:function(s, i) {
1849
- SFSI("#sfsi_plus_form_button_background").val("#"+i), SFSI("#sfsiPlusFormButtonBackground").css("background","#"+i);
1850
- sfsi_plus_create_suscriber_form();
1851
- }
1852
- });*/
1853
- //changes done {Monad}
1854
-
1855
- function i() {
1856
- SFSI(".uperror").html(""), sfsiplus_afterLoad();
1857
- var s = SFSI('input[name="' + SFSI("#upload_id").val() + '"]');
1858
- s.removeAttr("checked");
1859
- var i = SFSI(s).parent().find("span:first");
1860
- return SFSI(i).css("background-position", "0px 0px"), SFSI(".upload-overlay").hide("slow"),
1861
- !1;
1862
- }
1863
- SFSI("#accordion").accordion({
1864
- collapsible: !0,
1865
- active: !1,
1866
- heightStyle: "content",
1867
- event: "click",
1868
- beforeActivate: function (s, i) {
1869
- if (i.newHeader[0]) var e = i.newHeader,
1870
- t = e.next(".ui-accordion-content");
1871
- else var e = i.oldHeader,
1872
- t = e.next(".ui-accordion-content");
1873
- var n = "true" == e.attr("aria-selected");
1874
- return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
1875
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
1876
- t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
1877
- }
1878
- }),
1879
- SFSI("#accordion1").accordion({
1880
- collapsible: !0,
1881
- active: !1,
1882
- heightStyle: "content",
1883
- event: "click",
1884
- beforeActivate: function (s, i) {
1885
- if (i.newHeader[0]) var e = i.newHeader,
1886
- t = e.next(".ui-accordion-content");
1887
- else var e = i.oldHeader,
1888
- t = e.next(".ui-accordion-content");
1889
- var n = "true" == e.attr("aria-selected");
1890
- return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
1891
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
1892
- t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
1893
- }
1894
- }),
1895
-
1896
- SFSI("#accordion2").accordion({
1897
- collapsible: !0,
1898
- active: !1,
1899
- heightStyle: "content",
1900
- event: "click",
1901
- beforeActivate: function (s, i) {
1902
- if (i.newHeader[0]) var e = i.newHeader,
1903
- t = e.next(".ui-accordion-content");
1904
- else var e = i.oldHeader,
1905
- t = e.next(".ui-accordion-content");
1906
- var n = "true" == e.attr("aria-selected");
1907
- return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
1908
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
1909
- t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
1910
- }
1911
- }),
1912
- SFSI(".closeSec").on("click", function () {
1913
- var s = !0,
1914
- i = SFSI(this).closest("div.ui-accordion-content").prev("h3.ui-accordion-header").first(),
1915
- e = SFSI(this).closest("div.ui-accordion-content").first();
1916
- i.toggleClass("ui-corner-all", s).toggleClass("accordion-header-active ui-state-active ui-corner-top", !s).attr("aria-selected", (!s).toString()),
1917
- i.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", s).toggleClass("ui-icon-triangle-1-s", !s),
1918
- e.toggleClass("accordion-content-active", !s), s ? e.slideUp() : e.slideDown();
1919
- }),
1920
- SFSI(document).click(function (s) {
1921
- var i = SFSI(".sfsi_plus_FrntInner"),
1922
- e = SFSI(".sfsi_plus_wDiv"),
1923
- t = SFSI("#at15s");
1924
- 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();
1925
- }),
1926
-
1927
- //pooja 28-12-2015
1928
- SFSI('#sfsi_plus_popup_background_color').wpColorPicker({
1929
- defaultColor: false,
1930
- change: function (event, ui) {
1931
- sfsi_plus_make_popBox()
1932
- },
1933
- clear: function () {
1934
- sfsi_plus_make_popBox()
1935
- },
1936
- hide: true,
1937
- palettes: true
1938
- }),
1939
- SFSI('#sfsi_plus_popup_border_color').wpColorPicker({
1940
- defaultColor: false,
1941
- change: function (event, ui) {
1942
- sfsi_plus_make_popBox()
1943
- },
1944
- clear: function () {
1945
- sfsi_plus_make_popBox()
1946
- },
1947
- hide: true,
1948
- palettes: true
1949
- }),
1950
- SFSI('#sfsi_plus_popup_fontColor').wpColorPicker({
1951
- defaultColor: false,
1952
- change: function (event, ui) {
1953
- sfsi_plus_make_popBox()
1954
- },
1955
- clear: function () {
1956
- sfsi_plus_make_popBox()
1957
- },
1958
- hide: true,
1959
- palettes: true
1960
- }),
1961
-
1962
- /*SFSI("#sfsifontCloroPicker").ColorPicker({
1963
- color:"#f80000",
1964
- onBeforeShow:function() {
1965
- s(this).ColorPickerSetColor(SFSI("#sfsi_plus_popup_fontColor").val());
1966
- },
1967
- onShow:function(s) {
1968
- return SFSI(s).fadeIn(500), !1;
1969
- },
1970
- onHide:function(s) {
1971
- return SFSI(s).fadeOut(500), sfsi_plus_make_popBox(), !1;
1972
- },
1973
- onChange:function(s, i) {
1974
- SFSI("#sfsi_plus_popup_fontColor").val("#" + i), SFSI("#sfsifontCloroPicker").css("background", "#" + i),
1975
- sfsi_plus_make_popBox();
1976
- },
1977
- onClick:function(s, i) {
1978
- SFSI("#sfsi_plus_popup_fontColor").val("#" + i), SFSI("#sfsifontCloroPicker").css("background", "#" + i),
1979
- sfsi_plus_make_popBox();
1980
- }
1981
- }),*/
1982
- SFSI("div.sfsiplusid_linkedin").find(".icon4").find("a").find("img").mouseover(function () {
1983
- SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/linkedIn_hover.svg");
1984
- }),
1985
- SFSI("div.sfsiplusid_linkedin").find(".icon4").find("a").find("img").mouseleave(function () {
1986
- SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/linkedIn.svg");
1987
- }),
1988
- SFSI("div.sfsiplusid_youtube").find(".icon1").find("a").find("img").mouseover(function () {
1989
- SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/youtube_hover.svg");
1990
- }),
1991
- SFSI("div.sfsiplusid_youtube").find(".icon1").find("a").find("img").mouseleave(function () {
1992
- SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/youtube.svg");
1993
- }),
1994
- SFSI("div.sfsiplusid_facebook").find(".icon1").find("a").find("img").mouseover(function () {
1995
- SFSI(this).css("opacity", "0.9");
1996
- }),
1997
- SFSI("div.sfsiplusid_facebook").find(".icon1").find("a").find("img").mouseleave(function () {
1998
- SFSI(this).css("opacity", "1");
1999
- /*{Monad}*/
2000
- }),
2001
- SFSI("div.sfsiplusid_twitter").find(".cstmicon1").find("a").find("img").mouseover(function () {
2002
- SFSI(this).css("opacity", "0.9");
2003
- }),
2004
- SFSI("div.sfsiplusid_twitter").find(".cstmicon1").find("a").find("img").mouseleave(function () {
2005
- SFSI(this).css("opacity", "1");
2006
- }),
2007
-
2008
- //pooja 28-12-2015
2009
-
2010
- /*SFSI("#sfsiBackgroundColorPicker").ColorPicker({
2011
- color:"#f80000",
2012
- onBeforeShow:function() {
2013
- s(this).ColorPickerSetColor(SFSI("#sfsi_plus_popup_background_color").val());
2014
- },
2015
- onShow:function(s) {
2016
- return SFSI(s).fadeIn(500), !1;
2017
- },
2018
- onHide:function(s) {
2019
- return SFSI(s).fadeOut(500), !1;
2020
- },
2021
- onChange:function(s, i) {
2022
- SFSI("#sfsi_plus_popup_background_color").val("#" + i), SFSI("#sfsiBackgroundColorPicker").css("background","#"+i),
2023
- sfsi_plus_make_popBox();
2024
- },
2025
- onClick:function(s, i) {
2026
- SFSI("#sfsi_plus_popup_background_color").val("#" + i), SFSI("#sfsiBackgroundColorPicker").css("background","#"+i),
2027
- sfsi_plus_make_popBox();
2028
- }
2029
- }),
2030
- SFSI("#sfsiBorderColorPicker").ColorPicker({
2031
- color:"#f80000",
2032
- onBeforeShow:function() {
2033
- s(this).ColorPickerSetColor(SFSI("#sfsi_plus_popup_border_color").val());
2034
- },
2035
- onShow:function(s) {
2036
- return SFSI(s).fadeIn(500), !1;
2037
- },
2038
- onHide:function(s) {
2039
- return SFSI(s).fadeOut(500), !1;
2040
- },
2041
- onChange:function(s, i) {
2042
- SFSI("#sfsi_plus_popup_border_color").val("#" + i), SFSI("#sfsiBorderColorPicker").css("background", "#" + i),
2043
- sfsi_plus_make_popBox();
2044
- },
2045
- onClick:function(s, i) {
2046
- SFSI("#sfsi_plus_popup_border_color").val("#" + i), SFSI("#sfsiBorderColorPicker").css("background", "#" + i),
2047
- sfsi_plus_make_popBox();
2048
- }
2049
- }),*/
2050
- SFSI("#sfsi_plus_save1").on("click", function () {
2051
- sfsi_plus_update_step1() && sfsipluscollapse(this);
2052
- }),
2053
- SFSI("#sfsi_plus_save2").on("click", function () {
2054
- sfsi_plus_update_step2() && sfsipluscollapse(this);
2055
- }),
2056
- SFSI("#sfsi_plus_save3").on("click", function () {
2057
- sfsi_plus_update_step3() && sfsipluscollapse(this);
2058
- }),
2059
- SFSI("#sfsi_plus_save4").on("click", function () {
2060
- sfsi_plus_update_step4() && sfsipluscollapse(this);
2061
- }),
2062
- SFSI("#sfsi_plus_save5").on("click", function () {
2063
- sfsi_plus_update_step5() && sfsipluscollapse(this);
2064
- }),
2065
- SFSI("#sfsi_plus_save6").on("click", function () {
2066
- sfsi_plus_update_step6() && sfsipluscollapse(this);
2067
- }),
2068
- SFSI("#sfsi_plus_save7").on("click", function () {
2069
- sfsi_plus_update_step7() && sfsipluscollapse(this);
2070
- }),
2071
- SFSI("#sfsi_plus_save8").on("click", function () {
2072
- sfsi_plus_update_step8() && sfsipluscollapse(this);
2073
- }),
2074
- SFSI("#sfsi_plus_save9").on("click", function () {
2075
- sfsi_plus_update_step9() && sfsipluscollapse(this);
2076
- }),
2077
- SFSI("#sfsi_plus_worker_plugin").on("click", function () {
2078
- sfsi_plus_worker_plugin();
2079
- }),
2080
- SFSI("#sfsi_plus_save_export").on("click", function () {
2081
- sfsi_plus_save_export();
2082
- }),
2083
- SFSI("#save_plus_all_settings").on("click", function () {
2084
- return SFSI("#save_plus_all_settings").text("Saving.."), SFSI(".save_button >a").css("pointer-events", "none"),
2085
- sfsi_plus_update_step1(), sfsi_plus_update_step9(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Which icons do you want to show on your site?" tab.', 8),
2086
- global_error = 0, !1) : (sfsi_plus_update_step2(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "What do you want the icons to do?" tab.', 8),
2087
- global_error = 0, !1) : (sfsi_plus_update_step3(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "What design & animation do you want to give your icons?" tab.', 8),
2088
- global_error = 0, !1) : (sfsi_plus_update_step4(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Do you want to display "counts" next to your icons?" tab.', 8),
2089
- global_error = 0, !1) : (sfsi_plus_update_step5(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Any other wishes for your main icons?" tab.', 8),
2090
- global_error = 0, !1) : (sfsi_plus_update_step6(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Do you want to display icons at the end of every post?" tab.', 8),
2091
- global_error = 0, !1) : (sfsi_plus_update_step7(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Do you want to display a pop-up, asking people to subscribe?" tab.', 8),
2092
- global_error = 0, !1) : sfsi_plus_update_step8(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Where shall they be displayed?" tab.', 8),
2093
- /*global_error = 0, !1) :void (0 == global_error && sfsiplus_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))))))));*/
2094
- global_error = 0, !1) : void(0 == global_error && sfsiplus_showErrorSuc("success", '', 8))))))));
2095
- }),
2096
- /*SFSI(".fileUPInput").live("change", function() {*/
2097
- SFSI(document).on("change", '.fileUPInput', function () {
2098
- sfsiplus_beForeLoad(), sfsiplus_beforeIconSubmit(this) && (SFSI(".upload-overlay").css("pointer-events", "none"),
2099
- SFSI("#customIconFrm").ajaxForm({
2100
- dataType: "json",
2101
- success: sfsiplus_afterIconSuccess,
2102
- resetForm: !0
2103
- }).submit());
2104
- }),
2105
- SFSI(".pop-up").on("click", function () {
2106
- ("fbex-s2" == SFSI(this).attr("data-id") || "linkex-s2" == SFSI(this).attr("data-id")) && (SFSI("." + SFSI(this).attr("data-id")).hide(),
2107
- SFSI("." + SFSI(this).attr("data-id")).css("opacity", "1"), SFSI("." + SFSI(this).attr("data-id")).css("z-index", "1000")),
2108
- SFSI("." + SFSI(this).attr("data-id")).show("slow");
2109
- }),
2110
- /*SFSI("#close_popup").live("click", function() {*/
2111
- SFSI(document).on("click", '#close_popup', function () {
2112
- SFSI(".read-overlay").hide("slow");
2113
- });
2114
- var e = 0;
2115
- SFSI(".plus_icn_listing").on("click", ".checkbox", function () {
2116
- if (1 == e) return !1;
2117
- "yes" == SFSI(this).attr("dynamic_ele") && (s = SFSI(this).parent().find("input:checkbox:first"),
2118
- s.is(":checked") ? SFSI(s).attr("checked", !1) : SFSI(s).attr("checked", !0)), s = SFSI(this).parent().find("input:checkbox:first"),
2119
- "yes" == SFSI(s).attr("isNew") && ("0px 0px" == SFSI(this).css("background-position") ? (SFSI(s).attr("checked", !0),
2120
- SFSI(this).css("background-position", "0px -36px")) : (SFSI(s).removeAttr("checked", !0),
2121
- SFSI(this).css("background-position", "0px 0px")));
2122
- var s = SFSI(this).parent().find("input:checkbox:first");
2123
- if (s.is(":checked") && "sfsiplus-cusotm-icon" == s.attr("element-type")) SFSI(".fileUPInput").attr("name", "custom_icons[]"),
2124
- SFSI(".upload-overlay").show("slow", function () {
2125
- e = 0;
2126
- }),
2127
- SFSI("#upload_id").val(s.attr("name"));
2128
- else if (!s.is(":checked") && "sfsiplus-cusotm-icon" == s.attr("element-type")) return s.attr("ele-type") ? (SFSI(this).attr("checked", !0),
2129
- SFSI(this).css("background-position", "0px -36px"), e = 0, !1) : confirm("Are you sure want to delete this Icon..?? ") ? "suc" == sfsi_plus_delete_CusIcon(this, s) ? (s.attr("checked", !1),
2130
- SFSI(this).css("background-position", "0px 0px"), e = 0, !1) : (e = 0, !1) : (s.attr("checked", !0),
2131
- SFSI(this).css("background-position", "0px -36px"), e = 0, !1);
2132
- }),
2133
- SFSI(".plus_icn_listing").on("click", ".checkbox", function () {
2134
- checked = SFSI(this).parent().find("input:checkbox:first"), "sfsi_plus_email_display" != checked.attr("name") || checked.is(":checked") || SFSI(".demail-1").show("slow");
2135
- }),
2136
- SFSI("#deac_email2").on("click", function () {
2137
- SFSI(".demail-1").hide("slow"), SFSI(".demail-2").show("slow");
2138
- }),
2139
- SFSI("#deac_email3").on("click", function () {
2140
- SFSI(".demail-2").hide("slow"), SFSI(".demail-3").show("slow");
2141
- }),
2142
- SFSI(".hideemailpop").on("click", function () {
2143
- SFSI('input[name="sfsi_plus_email_display"]').attr("checked", !0),
2144
- SFSI('input[name="sfsi_plus_email_display"]').parent().find("span:first").css("background-position", "0px -36px"),
2145
- SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2146
- }),
2147
- SFSI(".hidePop").on("click", function () {
2148
- SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2149
- }),
2150
- SFSI(".sfsiplus_activate_footer").on("click", function () {
2151
- var nonce = SFSI(this).attr("data-nonce");
2152
- SFSI(this).text("activating....");
2153
- var s = {
2154
- action: "plus_activateFooter",
2155
- nonce: nonce
2156
- };
2157
- SFSI.ajax({
2158
- url: sfsi_plus_ajax_object.ajax_url,
2159
- type: "post",
2160
- data: s,
2161
- dataType: "json",
2162
- success: function (s) {
2163
- if (s.res == "wrong_nonce") {
2164
- SFSI(".sfsiplus_activate_footer").css("font-size", "18px");
2165
- SFSI(".sfsiplus_activate_footer").text("Unauthorised Request, Try again after refreshing page");
2166
- } else {
2167
- "success" == s.res && (SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"),
2168
- SFSI(".demail-3").hide("slow"), SFSI(".sfsiplus_activate_footer").text("Ok, activate link"));
2169
- }
2170
- }
2171
- });
2172
- }),
2173
- SFSI(".sfsiplus_removeFooter").on("click", function () {
2174
- var nonce = SFSI(this).attr("data-nonce");
2175
- SFSI(this).text("working....");
2176
- var s = {
2177
- action: "plus_removeFooter",
2178
- nonce: nonce
2179
- };
2180
- SFSI.ajax({
2181
- url: sfsi_plus_ajax_object.ajax_url,
2182
- type: "post",
2183
- data: s,
2184
- dataType: "json",
2185
- success: function (s) {
2186
- if (s.res == "wrong_nonce") {
2187
- SFSI(".sfsiplus_removeFooter").text("Unauthorised Request, Try again after refreshing page");
2188
- } else {
2189
- "success" == s.res && (SFSI(".sfsiplus_removeFooter").fadeOut("slow"), SFSI(".sfsiplus_footerLnk").fadeOut("slow"));
2190
- }
2191
- }
2192
- });
2193
- }),
2194
- /*SFSI(".radio").live("click", function() {*/
2195
- SFSI(document).on("click", '.radio', function () {
2196
- var s = SFSI(this).parent().find("input:radio:first");
2197
- "sfsi_plus_display_counts" == s.attr("name") && sfsi_plus_show_counts();
2198
- }),
2199
- SFSI("#close_Uploadpopup").on("click", i), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2200
- var s = SFSI(this).parent().find("input:radio:first");
2201
- "sfsi_plus_show_Onposts" == s.attr("name") && sfsi_plus_show_OnpostsDisplay();
2202
- }),
2203
- sfsi_plus_show_OnpostsDisplay(),
2204
- sfsi_plus_depened_sections(),
2205
- sfsi_plus_show_counts(),
2206
- sfsi_plus_showPreviewCounts(),
2207
- SFSI(".plus_share_icon_order").sortable({
2208
- update: function () {
2209
- SFSI(".plus_share_icon_order li").each(function () {
2210
- SFSI(this).attr("data-index", SFSI(this).index() + 1);
2211
- });
2212
- },
2213
- revert: !0
2214
- }),
2215
-
2216
- //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post STARTS -------------------------------------//
2217
-
2218
- SFSI(document).on("click", '.checkbox', function () {
2219
-
2220
- var s = SFSI(this).parent().find("input:checkbox:first");
2221
-
2222
- var inputName = s.attr('name');
2223
- var inputChecked = s.attr("checked");
2224
-
2225
- switch (inputName) {
2226
-
2227
- case "sfsi_custom_social_hide":
2228
-
2229
- var backgroundPos = jQuery(this).css('background-position').split(" ");
2230
-
2231
- var xPos = backgroundPos[0],
2232
- yPos = backgroundPos[1];
2233
- var val = (yPos == "0px") ? "no" : "yes";
2234
- SFSI('input[name="sfsi_plus_custom_social_hide"]').val(val);
2235
-
2236
- break;
2237
-
2238
- case 'sfsi_plus_mouseOver':
2239
-
2240
- var elem = SFSI('input[name="' + inputName + '"]');
2241
-
2242
- var togglelem = SFSI('.mouse-over-effects');
2243
-
2244
- if (inputChecked) {
2245
- togglelem.removeClass('hide').addClass('show');
2246
- } else {
2247
- togglelem.removeClass('show').addClass('hide');
2248
- }
2249
-
2250
- break;
2251
- }
2252
-
2253
- });
2254
-
2255
- //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post CLOSES -------------------------------------//
2256
-
2257
- /*SFSI(".radio").live("click", function() {*/
2258
- SFSI(document).on("click", '.radio', function () {
2259
- var s = SFSI(this).parent().find("input:radio:first");
2260
- "sfsi_plus_email_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_email_countsDisplay"]').prop("checked", !0),
2261
- SFSI('input[name="sfsi_plus_email_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2262
- "manual" == SFSI("input[name='sfsi_plus_email_countsFrom']:checked").val() ? SFSI("input[name='sfsi_plus_email_manualCounts']").slideDown() : SFSI("input[name='sfsi_plus_email_manualCounts']").slideUp()),
2263
- "sfsi_plus_facebook_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_facebook_countsDisplay"]').prop("checked", !0),
2264
- SFSI('input[name="sfsi_plus_facebook_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2265
- "mypage" == SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_facebook_mypageCounts']").slideDown(), SFSI(".sfsiplus_fbpgidwpr").slideDown()) : (SFSI("input[name='sfsi_plus_facebook_mypageCounts']").slideUp(), SFSI(".sfsiplus_fbpgidwpr").slideUp()),
2266
- "manual" == SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val() ? SFSI("input[name='sfsi_plus_facebook_manualCounts']").slideDown() : SFSI("input[name='sfsi_plus_facebook_manualCounts']").slideUp()),
2267
- "sfsi_plus_facebook_countsFrom" == s.attr("name") && (("mypage" == SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val() || "likes" == SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val()) ? (SFSI(".sfsi_plus_facebook_pagedeasc").slideDown()) : (SFSI(".sfsi_plus_facebook_pagedeasc").slideUp())),
2268
-
2269
-
2270
- "sfsi_plus_twitter_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_twitter_countsDisplay"]').prop("checked", !0),
2271
- SFSI('input[name="sfsi_plus_twitter_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2272
- "manual" == SFSI("input[name='sfsi_plus_twitter_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_twitter_manualCounts']").slideDown(),
2273
- SFSI(".tw_follow_options").slideUp()) : (SFSI("input[name='sfsi_plus_twitter_manualCounts']").slideUp(),
2274
- SFSI(".tw_follow_options").slideDown())), "sfsi_plus_linkedIn_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_linkedIn_countsDisplay"]').prop("checked", !0),
2275
- SFSI('input[name="sfsi_plus_linkedIn_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2276
- "manual" == SFSI("input[name='sfsi_plus_linkedIn_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_linkedIn_manualCounts']").slideDown(),
2277
- SFSI(".linkedIn_options").slideUp()) : (SFSI("input[name='sfsi_plus_linkedIn_manualCounts']").slideUp(),
2278
- SFSI(".linkedIn_options").slideDown())), "sfsi_plus_youtube_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_youtube_countsDisplay"]').prop("checked", !0),
2279
- SFSI('input[name="sfsi_plus_youtube_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2280
- "manual" == SFSI("input[name='sfsi_plus_youtube_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_youtube_manualCounts']").slideDown(),
2281
- SFSI(".youtube_options").slideUp()) : (SFSI("input[name='sfsi_plus_youtube_manualCounts']").slideUp(),
2282
- SFSI(".youtube_options").slideDown())), "sfsi_plus_pinterest_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_pinterest_countsDisplay"]').prop("checked", !0),
2283
- SFSI('input[name="sfsi_plus_pinterest_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2284
- "manual" == SFSI("input[name='sfsi_plus_pinterest_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_pinterest_manualCounts']").slideDown(),
2285
- SFSI(".pin_options").slideUp()) : SFSI("input[name='sfsi_plus_pinterest_manualCounts']").slideUp()),
2286
- "sfsi_plus_instagram_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_instagram_countsDisplay"]').prop("checked", !0),
2287
- SFSI('input[name="sfsi_plus_instagram_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2288
- "manual" == SFSI("input[name='sfsi_plus_instagram_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_instagram_manualCounts']").slideDown(),
2289
- SFSI(".instagram_userLi").slideUp()) : (SFSI("input[name='sfsi_plus_instagram_manualCounts']").slideUp(),
2290
- SFSI(".instagram_userLi").slideDown()))
2291
- }), sfsi_plus_make_popBox(), SFSI('input[name="sfsi_plus_popup_text"] ,input[name="sfsi_plus_popup_background_color"],input[name="sfsi_plus_popup_border_color"],input[name="sfsi_plus_popup_border_thickness"],input[name="sfsi_plus_popup_fontSize"],input[name="sfsi_plus_popup_fontColor"]').on("keyup", sfsi_plus_make_popBox),
2292
- SFSI('input[name="sfsi_plus_popup_text"] ,input[name="sfsi_plus_popup_background_color"],input[name="sfsi_plus_popup_border_color"],input[name="sfsi_plus_popup_border_thickness"],input[name="sfsi_plus_popup_fontSize"],input[name="sfsi_plus_popup_fontColor"]').on("focus", sfsi_plus_make_popBox),
2293
- SFSI("#sfsi_plus_popup_font ,#sfsi_plus_popup_fontStyle").on("change", sfsi_plus_make_popBox),
2294
- /*SFSI(".radio").live("click", function() {*/
2295
- SFSI(document).on("click", '.radio', function () {
2296
- var s = SFSI(this).parent().find("input:radio:first");
2297
- "sfsi_plus_popup_border_shadow" == s.attr("name") && sfsi_plus_make_popBox();
2298
- }), /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ? SFSI("img.sfsi_wicon").on("click", function (s) {
2299
- s.stopPropagation();
2300
- var i = SFSI("#sfsi_plus_floater_sec").val();
2301
- SFSI("div.sfsi_plus_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide(),
2302
- SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_tool_tip_2").css("z-index", "0"),
2303
- SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide()),
2304
- SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2305
- "z-index": "999"
2306
- }), SFSI(this).attr("effect") && "fade_in" == SFSI(this).attr("effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2307
- opacity: 1,
2308
- "z-index": 10
2309
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("effect") && "scale" == SFSI(this).attr("effect") && (SFSI(this).parent().addClass("scale"),
2310
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2311
- opacity: 1,
2312
- "z-index": 10
2313
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("effect") && "combo" == SFSI(this).attr("effect") && (SFSI(this).parent().addClass("scale"),
2314
- SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2315
- opacity: 1,
2316
- "z-index": 10
2317
- })), ("top-left" == i || "top-right" == i) && SFSI(this).parent().parent().parent().parent("#sfsi_plus_floater").length > 0 && "sfsi_plus_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").addClass("sfsi_plc_btm"),
2318
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2319
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2320
- opacity: 1,
2321
- "z-index": 10
2322
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2323
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").removeClass("sfsi_plc_btm"),
2324
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2325
- opacity: 1,
2326
- "z-index": 1e3
2327
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show());
2328
- }) : SFSI("img.sfsi_wicon").on("mouseenter", function () {
2329
- var s = SFSI("#sfsi_plus_floater_sec").val();
2330
- SFSI("div.sfsi_plus_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide(),
2331
- SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_tool_tip_2").css("z-index", "0"),
2332
- SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide()),
2333
- SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2334
- "z-index": "999"
2335
- }), SFSI(this).attr("effect") && "fade_in" == SFSI(this).attr("effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2336
- opacity: 1,
2337
- "z-index": 10
2338
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("effect") && "scale" == SFSI(this).attr("effect") && (SFSI(this).parent().addClass("scale"),
2339
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2340
- opacity: 1,
2341
- "z-index": 10
2342
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("effect") && "combo" == SFSI(this).attr("effect") && (SFSI(this).parent().addClass("scale"),
2343
- SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2344
- opacity: 1,
2345
- "z-index": 10
2346
- })), ("top-left" == s || "top-right" == s) && SFSI(this).parent().parent().parent().parent("#sfsi_plus_floater").length > 0 && "sfsi_plus_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").addClass("sfsi_plc_btm"),
2347
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2348
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2349
- opacity: 1,
2350
- "z-index": 10
2351
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2352
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").removeClass("sfsi_plc_btm"),
2353
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2354
- opacity: 1,
2355
- "z-index": 10
2356
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show());
2357
- }), SFSI("div.sfsi_plus_wicons").on("mouseleave", function () {
2358
- SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && "fade_in" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").css("opacity", "0.6"),
2359
- SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && "scale" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").removeClass("scale"),
2360
- SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && "combo" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && (SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").css("opacity", "0.6"),
2361
- SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").removeClass("scale"))
2362
- }),
2363
- SFSI("body").on("click", function () {
2364
- SFSI(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide();
2365
- }),
2366
- SFSI(".adminTooltip >a").on("mouseenter", function () {
2367
- SFSI(this).offset().top, SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "1"),
2368
- SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").show();
2369
- }),
2370
- SFSI(".adminTooltip").on("mouseleave", function () {
2371
- "none" != SFSI(".sfsi_plus_gpls_tool_bdr").css("display") && 0 != SFSI(".sfsi_plus_gpls_tool_bdr").css("opacity") ? SFSI(".pop_up_box ").on("click", function () {
2372
- SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "0"), SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").hide();
2373
- }) : (SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "0"),
2374
- SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").hide());
2375
- }),
2376
- SFSI(".expand-area").on("click", function () {
2377
- object_name.Re_ad == SFSI(this).text() ? (SFSI(this).siblings("p").children("label").fadeIn("slow"),
2378
- SFSI(this).text(object_name1.Coll_apse)) : (SFSI(this).siblings("p").children("label").fadeOut("slow"),
2379
- SFSI(this).text(object_name.Re_ad));
2380
- }),
2381
- /*SFSI(".radio").live("click", function(){*/
2382
- SFSI(document).on("click", '.radio', function () {
2383
- var s = SFSI(this).parent().find("input:radio:first");
2384
- "sfsi_plus_icons_float" == s.attr("name") && "yes" == s.val() && (SFSI(".float_options").slideDown("slow"),
2385
- SFSI('input[name="sfsi_plus_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_plus_icons_stick"][value="yes"]').removeAttr("checked"),
2386
- SFSI('input[name="sfsi_plus_icons_stick"][value="no"]').parent().find("span").attr("style", "background-position:0px -41px;"),
2387
- SFSI('input[name="sfsi_plus_icons_stick"][value="yes"]').parent().find("span").attr("style", "background-position:0px -0px;")),
2388
- ("sfsi_plus_icons_stick" == s.attr("name") && "yes" == s.val() || "sfsi_plus_icons_float" == s.attr("name") && "no" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2389
- SFSI('input[name="sfsi_plus_icons_float"][value="no"]').prop("checked", !0), SFSI('input[name="sfsi_plus_icons_float"][value="yes"]').prop("checked", !1),
2390
- SFSI('input[name="sfsi_plus_icons_float"][value="no"]').parent().find("span.radio").attr("style", "background-position:0px -41px;"),
2391
- SFSI('input[name="sfsi_plus_icons_float"][value="yes"]').parent().find("span.radio").attr("style", "background-position:0px -0px;"));
2392
- }),
2393
- SFSI(".sfsi_plus_wDiv").length > 0 && setTimeout(function () {
2394
- var s = parseInt(SFSI(".sfsi_plus_wDiv").height()) + 0 + "px";
2395
- SFSI(".sfsi_plus_holders").each(function () {
2396
- SFSI(this).css("height", s);
2397
- });
2398
- }, 200),
2399
- /*SFSI(".checkbox").live("click", function() {*/
2400
- SFSI(document).on("click", '.checkbox', function () {
2401
- var s = SFSI(this).parent().find("input:checkbox:first");
2402
- ("sfsi_plus_shuffle_Firstload" == s.attr("name") && "checked" == s.attr("checked") || "sfsi_plus_shuffle_interval" == s.attr("name") && "checked" == s.attr("checked")) && (SFSI('input[name="sfsi_plus_shuffle_icons"]').parent().find("span").css("background-position", "0px -36px"),
2403
- SFSI('input[name="sfsi_plus_shuffle_icons"]').attr("checked", "checked")), "sfsi_plus_shuffle_icons" == s.attr("name") && "checked" != s.attr("checked") && (SFSI('input[name="sfsi_plus_shuffle_Firstload"]').removeAttr("checked"),
2404
- SFSI('input[name="sfsi_plus_shuffle_Firstload"]').parent().find("span").css("background-position", "0px 0px"),
2405
- SFSI('input[name="sfsi_plus_shuffle_interval"]').removeAttr("checked"), SFSI('input[name="sfsi_plus_shuffle_interval"]').parent().find("span").css("background-position", "0px 0px"));
2406
- });
2407
-
2408
- SFSI("body").on("click", "#getMeFullAccess", function () {
2409
- var email = SFSI(this).parents("form").find("input[type='email']").val();
2410
- var feedid = SFSI(this).parents("form").find("input[name='feedid']").val();
2411
- var error = false;
2412
- var regEx = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/;
2413
-
2414
- if (email === '') {
2415
- error = true;
2416
- }
2417
-
2418
- if (!regEx.test(email)) {
2419
- error = true;
2420
- }
2421
-
2422
- if (!error) {
2423
- SFSI(this).parents("form").submit();
2424
- } else {
2425
- alert("Error: Please provide your email address.");
2426
- }
2427
- });
2428
-
2429
- SFSI('form#calimingOptimizationForm').on('keypress', function (e) {
2430
- var keyCode = e.keyCode || e.which;
2431
- if (keyCode === 13) {
2432
- e.preventDefault();
2433
- return false;
2434
- }
2435
- });
2436
-
2437
- /*SFSI(".checkbox").live("click", function()
2438
- {
2439
- var s = SFSI(this).parent().find("input:checkbox:first");
2440
- "sfsi_plus_float_on_page" == s.attr("name") && "yes" == s.val() && (
2441
- SFSI('input[name="sfsi_plus_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_plus_icons_stick"][value="yes"]').removeAttr("checked"),
2442
- SFSI('input[name="sfsi_plus_icons_stick"][value="no"]').parent().find("span").attr("style", "background-position:0px -41px;"),
2443
- SFSI('input[name="sfsi_plus_icons_stick"][value="yes"]').parent().find("span").attr("style", "background-position:0px -0px;"));
2444
- });
2445
- SFSI(".radio").live("click", function()
2446
- {
2447
- var s = SFSI(this).parent().find("input:radio:first");
2448
- var a = SFSI(".cstmfltonpgstck");
2449
- ("sfsi_plus_icons_stick" == s.attr("name") && "yes" == s.val()) && (
2450
- SFSI('input[name="sfsi_plus_float_on_page"][value="no"]').prop("checked", !0), SFSI('input[name="sfsi_plus_float_on_page"][value="yes"]').prop("checked", !1),
2451
- SFSI('input[name="sfsi_plus_float_on_page"][value="no"]').parent().find("span.checkbox").attr("style", "background-position:0px -41px;"),
2452
- SFSI('input[name="sfsi_plus_float_on_page"][value="yes"]').parent().find("span.checkbox").attr("style", "background-position:0px -0px;"),
2453
- jQuery(a).children(".checkbox").css("background-position", "0px 0px" ), sfsiplus_toggleflotpage(a));
2454
- });*/
2455
- SFSI(document).on("click", ".sfsi_plus-AddThis-notice-dismiss", function () {
2456
- SFSI.ajax({
2457
- url: sfsi_plus_ajax_object.ajax_url,
2458
- type: "post",
2459
- data: {
2460
- action: "sfsi_plus_dismiss_addThis_icon_notice"
2461
- },
2462
- success: function (e) {
2463
- if (false != e) {
2464
- SFSI(".sfsi_plus-AddThis-notice-dismiss").parent().remove();
2465
- }
2466
- }
2467
- });
2468
- });
2469
- if (undefined !== window.location.hash) {
2470
- switch (window.location.hash) {
2471
- case '#ui-id-1':
2472
- SFSI('#ui-id-1').removeClass('ui-corner-all').addClass('accordion-header-active ui-state-active ui-corner-top');
2473
- SFSI('#ui-id-2').css({
2474
- 'display': 'block'
2475
- });
2476
- window.scroll(0, 30);
2477
- break;
2478
- case '#ui-id-5':
2479
- SFSI('#ui-id-5').removeClass('ui-corner-all').addClass('accordion-header-active ui-state-active ui-corner-top');
2480
- SFSI('#ui-id-6').css({
2481
- 'display': 'block'
2482
- });
2483
- window.scroll(0, 30);
2484
- var scrolto_elem = SFSI('.sfsiplusbeforeafterpostselector');
2485
- if (scrolto_elem && scrolto_elem.length > 0 && scrolto_elem.offset() && scrolto_elem.offset().top) {
2486
- window.scrollTo(0, scrolto_elem.offset().top - 30);
2487
- setTimeout(function () {
2488
- window.scrollTo(0, scrolto_elem.offset().top - 30);
2489
- }, 1000);
2490
- }
2491
- break;
2492
- }
2493
- }
2494
- sfsi_plus_checkbox_checker();
2495
- });
2496
-
2497
- //for utube channel name and id
2498
- function showhideutube(ref) {
2499
- var chnlslctn = SFSI(ref).children("input").val();
2500
- if (chnlslctn == "name") {
2501
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideDown();
2502
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideUp();
2503
- } else {
2504
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideDown();
2505
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideUp();
2506
- }
2507
- }
2508
-
2509
- var sfsiplus_initTop = new Array();
2510
-
2511
- function sfsiplus_toggleflotpage(ref) {
2512
- var pos = jQuery(ref).children(".checkbox").css("background-position");
2513
- if (pos == "0px 0px") {
2514
- jQuery(ref).next(".sfsiplus_right_info").children("p").children(".sfsiplus_sub-subtitle").hide();
2515
- jQuery(ref).next(".sfsiplus_right_info").children(".sfsiplus_tab_3_icns").hide();
2516
- } else {
2517
- jQuery(ref).next(".sfsiplus_right_info").children("p").children(".sfsiplus_sub-subtitle").show();
2518
- jQuery(ref).next(".sfsiplus_right_info").children(".sfsiplus_tab_3_icns").show();
2519
- }
2520
- }
2521
-
2522
- function sfsiplus_togglbtmsection(show, hide, ref) {
2523
- jQuery(ref).parent("ul").children("li.clckbltglcls").each(function (index, element) {
2524
- jQuery(this).children(".radio").css("background-position", "0px 0px");
2525
- jQuery(this).children(".styled").attr("checked", "false");
2526
- });
2527
- jQuery(ref).children(".radio").css("background-position", "0px -41px");
2528
- jQuery(ref).children(".styled").attr("checked", "true");
2529
-
2530
- jQuery("." + show).show();
2531
- jQuery("." + show).children(".radiodisplaysection").show();
2532
- jQuery("." + hide).hide();
2533
- jQuery("." + hide).children(".radiodisplaysection").hide();
2534
- /*jQuery(ref).parent("ul").children("li").each(function(index, element)
2535
- {
2536
- var pos = jQuery(this).children(".radio").css("background-position");
2537
- if(pos == "0px 0px")
2538
- {
2539
- jQuery(this).children(".radiodisplaysection").hide();
2540
- }
2541
- else
2542
- {
2543
- jQuery(this).children(".radiodisplaysection").show();
2544
- }
2545
- });
2546
- var pos = jQuery(ref).children(".radio").css("background-position");
2547
- if(pos != "0px 0px")
2548
- {
2549
- jQuery(ref).children(".radiodisplaysection").show();
2550
- }
2551
- else
2552
- {
2553
- jQuery(ref).children(".radiodisplaysection").hide();
2554
- }*/
2555
- }
2556
-
2557
- function checkforinfoslction(ref) {
2558
- var pos = jQuery(ref).children(".checkbox").css("background-position");
2559
- if (pos == "0px 0px") {
2560
- jQuery(ref).next(".sfsiplus_right_info").children("p").children("label").hide();
2561
- } else {
2562
- jQuery(ref).next(".sfsiplus_right_info").children("p").children("label").show();
2563
- }
2564
- }
2565
- SFSI("body").on("click", ".sfsi_plus_tokenGenerateButton a", function () {
2566
- var clienId = SFSI("input[name='sfsi_plus_instagram_clientid']").val();
2567
- var redirectUrl = SFSI("input[name='sfsi_plus_instagram_appurl']").val();
2568
-
2569
- var scope = "basic";
2570
- var instaUrl = "https://www.instagram.com/oauth/authorize/?client_id=<id>&redirect_uri=<url>&response_type=token&scope=" + scope;
2571
-
2572
- if (clienId !== '' && redirectUrl !== '') {
2573
- instaUrl = instaUrl.replace('<id>', clienId);
2574
- instaUrl = instaUrl.replace('<url>', redirectUrl);
2575
-
2576
- window.open(instaUrl, '_blank');
2577
- } else {
2578
- alert("Please enter client id and redirect url first");
2579
- }
2580
-
2581
- });
2582
- SFSI(document).on("click", '.radio', function () {
2583
-
2584
- var s = SFSI(this).parent().find("input:radio:first");
2585
-
2586
- switch (s.attr("name")) {
2587
-
2588
- case 'sfsi_plus_mouseOver_effect_type':
2589
-
2590
- var _val = s.val();
2591
- var _name = s.attr("name");
2592
-
2593
- if ('same_icons' == _val) {
2594
- SFSI('.same_icons_effects').removeClass('hide').addClass('show');
2595
- SFSI('.other_icons_effects_options').removeClass('show').addClass('hide');
2596
- } else if ('other_icons' == _val) {
2597
- SFSI('.same_icons_effects').removeClass('show').addClass('hide');
2598
- SFSI('.other_icons_effects_options').removeClass('hide').addClass('show');
2599
- }
2600
-
2601
- break;
2602
- }
2603
- });
2604
-
2605
- function getElementPosition(element) {
2606
- var xPosition = 0;
2607
- var yPosition = 0;
2608
-
2609
- while (element) {
2610
- xPosition += (element.offsetLeft - element.scrollLeft + element.clientLeft);
2611
- yPosition += (element.offsetTop - element.scrollTop + element.clientTop);
2612
- element = element.offsetParent;
2613
- }
2614
-
2615
- return {
2616
- x: xPosition,
2617
- y: yPosition
2618
- };
2619
- }
2620
- SFSI(document).ready(function () {
2621
- SFSI('#sfsi_plus_jivo_offline_chat .tab-link').click(function () {
2622
- var cur = SFSI(this);
2623
- if (!cur.hasClass('active')) {
2624
- var target = cur.find('a').attr('href');
2625
- cur.parent().children().removeClass('active');
2626
- cur.addClass('active');
2627
- SFSI('#sfsi_plus_jivo_offline_chat .tabs').children().hide();
2628
- SFSI(target).show();
2629
- }
2630
- });
2631
- SFSI('#sfsi_plus_jivo_offline_chat #sfsi_sales form').submit(function (event) {
2632
- event & event.preventDefault();
2633
- var target = SFSI(this).parents('.tab-content');
2634
- var message = SFSI(this).find('textarea[name="question"]').val();
2635
- var email = SFSI(this).find('input[name="email"]').val();
2636
- 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,}))$/;
2637
- var nonce = SFSI(this).find('input[name="nonce"]').val();
2638
-
2639
- if ("" === email || false === re.test(String(email).toLowerCase())) {
2640
- SFSI(this).find('input[name="email"]').css('background-color', 'red');
2641
- SFSI(this).find('input[name="email"]').on('keyup', function () {
2642
- 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,}))$/;
2643
- var email = SFSI(this).val();
2644
- if ("" !== email && true === re.test(String(email).toLowerCase())) {
2645
- SFSI(this).css('background-color', '#fff');
2646
- }
2647
- })
2648
- return false;
2649
-
2650
- }
2651
- SFSI.ajax({
2652
- url: sfsi_plus_ajax_object.ajax_url,
2653
- type: "post",
2654
- data: {
2655
- action: "sfsiplusOfflineChatMessage",
2656
- message: message,
2657
- email: email,
2658
- nonce: nonce
2659
- }
2660
- }).done(function () {
2661
- target.find('.before_message_sent').hide();
2662
- target.find('.after_message_sent').show();
2663
- });
2664
- });
2665
- });
2666
-
2667
- function sfsi_close_offline_chat(e) {
2668
- e && e.preventDefault();
2669
-
2670
- SFSI('#sfsi_plus_jivo_offline_chat').hide();
2671
- SFSI('#sfsi_dummy_chat_icon').show();
2672
- }
2673
- if (undefined == window.sfsi_plus_float_widget) {
2674
- function sfsi_plus_float_widget(data = null, data2 = null, data3 = null) {
2675
- return true;
2676
- }
2677
- }
2678
- sfsi_plus_responsive_icon_intraction_handler();
2679
-
2680
- SFSI(document).on("click", '.checkbox', function () {
2681
-
2682
- var s = SFSI(this).parent().find("input:checkbox:first");
2683
-
2684
- var inputName = s.attr("name");
2685
- var inputChecked = s.attr("checked");
2686
-
2687
- //----------------- Customization for twitter card section STARTS----------------------------//
2688
-
2689
- switch (inputName) {
2690
-
2691
- case 'sfsi_plus_twitter_aboutPage':
2692
-
2693
- var elem = SFSI('.sfsi_navigate_to_question6');
2694
- var elemC = SFSI('#twitterSettingContainer');
2695
-
2696
- if (inputChecked) {
2697
- elem.addClass('addCss').removeClass('removeCss');
2698
- elemC.css('display', 'block');
2699
- } else {
2700
- elem.removeClass('addCss').addClass('removeCss');
2701
- elemC.css('display', 'none');
2702
- }
2703
-
2704
- var chkd = SFSI("input[name='sfsi_plus_twitter_twtAddCard']:checked").val();
2705
-
2706
- if (inputChecked) {
2707
- SFSI(".contTwitterCard").show("slow");
2708
- if (chkd == "no") {
2709
- SFSI(".cardDataContainer").hide();
2710
- }
2711
- } else {
2712
- if (chkd == "yes") {
2713
- SFSI('input[value="yes"][name="sfsi_plus_twitter_twtAddCard"]').prop("checked", false);
2714
- SFSI('input[value="no"][name="sfsi_plus_twitter_twtAddCard"]').prop("checked", true);
2715
- }
2716
- SFSI(".contTwitterCard").hide("slow");
2717
- }
2718
-
2719
- break;
2720
-
2721
- case 'sfsi_plus_Hide_popupOnScroll':
2722
- case 'sfsi_plus_Hide_popupOn_OutsideClick':
2723
-
2724
- var elem = SFSI('input[name="' + inputName + '"]');
2725
-
2726
- if (inputChecked) {
2727
- elem.val("yes");
2728
- } else {
2729
- elem.val("no");
2730
- }
2731
-
2732
- break;
2733
-
2734
- case 'sfsi_plus_mouseOver':
2735
-
2736
- var elem = SFSI('input[name="' + inputName + '"]');
2737
-
2738
- var togglelem = SFSI('.mouse-over-effects');
2739
-
2740
- if (inputChecked) {
2741
- togglelem.removeClass('hide').addClass('show');
2742
- } else {
2743
- togglelem.removeClass('show').addClass('hide');
2744
- }
2745
-
2746
- break;
2747
-
2748
-
2749
- case 'sfsi_plus_shuffle_icons':
2750
-
2751
- var elem = SFSI('input[name="' + inputName + '"]');
2752
-
2753
- var togglelem = SFSI('.shuffle_sub');
2754
-
2755
- if (inputChecked) {
2756
- togglelem.removeClass('hide').addClass('show');
2757
- } else {
2758
- togglelem.removeClass('show').addClass('hide');
2759
- }
2760
-
2761
- break;
2762
-
2763
- case 'sfsi_plus_place_rectangle_icons_item_manually':
2764
- var elem = SFSI('input[name="' + inputName + '"]');
2765
-
2766
- var togglelem = elem.parent().next();
2767
-
2768
- if (inputChecked) {
2769
- togglelem.removeClass('hide').addClass('show');
2770
- } else {
2771
- togglelem.removeClass('show').addClass('hide');
2772
- }
2773
-
2774
- break;
2775
-
2776
- case 'sfsi_plus_icon_hover_show_pinterest':
2777
- var elem = SFSI('input[name="' + inputName + '"]');
2778
-
2779
- var togglelem = elem.parent().next();
2780
-
2781
- if (inputChecked) {
2782
-
2783
- togglelem.removeClass('hide').addClass('show');
2784
- SFSI('.sfsi_plus_include_exclude_wrapper .sfsi_premium_restriction_warning_pinterest').removeClass('hide');
2785
- } else {
2786
- togglelem.removeClass('show').addClass('hide');
2787
- SFSI('.sfsi_plus_include_exclude_wrapper .sfsi_premium_restriction_warning_pinterest').addClass('hide');
2788
- }
2789
-
2790
- break;
2791
-
2792
- case 'sfsi_plus_houzzShare_option':
2793
-
2794
- var elem = SFSI('input[name="' + inputName + '"]');
2795
-
2796
- var togglelem = SFSI('.houzzideabooks');
2797
-
2798
- if (inputChecked) {
2799
- togglelem.removeClass('hide').addClass('show');
2800
- } else {
2801
- togglelem.removeClass('show').addClass('hide');
2802
- }
2803
-
2804
- break;
2805
-
2806
- case 'sfsi_plus_wechatFollow_option':
2807
-
2808
- var elem = SFSI('input[name="' + inputName + '"]');
2809
-
2810
- var togglelem = SFSI('.sfsi_plus_wechat_follow_desc');
2811
-
2812
- if (inputChecked) {
2813
- togglelem.removeClass('hide').addClass('show').show();
2814
- } else {
2815
- togglelem.removeClass('show').addClass('hide').hide();
2816
- }
2817
-
2818
- break;
2819
-
2820
- case 'sfsi_plus_fbmessengerShare_option':
2821
- var elem = jQuery('.sfsi_premium_only_fbmessangershare');
2822
- if (inputChecked) {
2823
- elem.show();
2824
- } else {
2825
- elem.hide();
2826
- }
2827
- break;
2828
- case 'sfsi_plus_responsive_facebook_display':
2829
- if (inputChecked) {
2830
- SFSI('.sfsi_plus_responsive_icon_facebook_container').parents('a').show();
2831
- var icon = inputName.replace('sfsi_plus_responsive_', '').replace('_display', '');
2832
- if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2833
- window.sfsi_plus_fittext_shouldDisplay = true;
2834
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2835
- if (jQuery(a_container).css('display') !== "none") {
2836
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2837
- }
2838
- })
2839
- }
2840
- } else {
2841
-
2842
- SFSI('.sfsi_plus_responsive_icon_facebook_container').parents('a').hide();
2843
- if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2844
- window.sfsi_plus_fittext_shouldDisplay = true;
2845
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2846
- if (jQuery(a_container).css('display') !== "none") {
2847
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2848
- }
2849
- })
2850
- }
2851
- }
2852
- break;
2853
- case 'sfsi_plus_responsive_Twitter_display':
2854
- if (inputChecked) {
2855
- SFSI('.sfsi_plus_responsive_icon_twitter_container').parents('a').show();
2856
- var icon = inputName.replace('sfsi_plus_responsive_', '').replace('_display', '');
2857
- if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2858
- window.sfsi_plus_fittext_shouldDisplay = true;
2859
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2860
- if (jQuery(a_container).css('display') !== "none") {
2861
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2862
- }
2863
- })
2864
- }
2865
- } else {
2866
- SFSI('.sfsi_plus_responsive_icon_twitter_container').parents('a').hide();
2867
- if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2868
- window.sfsi_plus_fittext_shouldDisplay = true;
2869
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2870
- if (jQuery(a_container).css('display') !== "none") {
2871
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2872
- }
2873
- })
2874
- }
2875
- }
2876
- break;
2877
- case 'sfsi_plus_responsive_Follow_display':
2878
- if (inputChecked) {
2879
- SFSI('.sfsi_plus_responsive_icon_follow_container').parents('a').show();
2880
- var icon = inputName.replace('sfsi_plus_responsive_', '').replace('_display', '');
2881
- if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2882
- window.sfsi_plus_fittext_shouldDisplay = true;
2883
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2884
- if (jQuery(a_container).css('display') !== "none") {
2885
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2886
- }
2887
- })
2888
- }
2889
- } else {
2890
- SFSI('.sfsi_plus_responsive_icon_follow_container').parents('a').hide();
2891
- if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2892
- window.sfsi_plus_fittext_shouldDisplay = true;
2893
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2894
- if (jQuery(a_container).css('display') !== "none") {
2895
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2896
- }
2897
- })
2898
- }
2899
- }
2900
- break;
2901
-
2902
- }
2903
-
2904
- var checkboxElem = SFSI(this);
2905
- sfsi_toggle_include_exclude_posttypes_taxonomies(checkboxElem, inputName, inputChecked, s);
2906
-
2907
- //----------------- Customization for Twitter add card CLOSES----------------------------//
2908
-
2909
-
2910
- ("sfsi_plus_shuffle_Firstload" == s.attr("name") && "checked" == s.attr("checked") || "sfsi_plus_shuffle_interval" == s.attr("name") && "checked" == s.attr("checked")) && (SFSI('input[name="sfsi_plus_shuffle_icons"]').parent().find("span").css("background-position", "0px -36px"),
2911
- SFSI('input[name="sfsi_plus_shuffle_icons"]').attr("checked", "checked")), "sfsi_plus_shuffle_icons" == s.attr("name") && "checked" != s.attr("checked") && (SFSI('input[name="sfsi_plus_shuffle_Firstload"]').removeAttr("checked"),
2912
- SFSI('input[name="sfsi_plus_shuffle_Firstload"]').parent().find("span").css("background-position", "0px 0px"),
2913
- SFSI('input[name="sfsi_plus_shuffle_interval"]').removeAttr("checked"), SFSI('input[name="sfsi_plus_shuffle_interval"]').parent().find("span").css("background-position", "0px 0px"));
2914
- var sfsi_plus_icon_hover_switch_exclude_custom_post_types = SFSI('input[name="sfsi_plus_icon_hover_switch_exclude_custom_post_types"]:checked').val() || 'no';
2915
- var sfsi_plus_icon_hover_switch_exclude_taxonomies = SFSI('input[name="sfsi_plus_icon_hover_switch_exclude_taxonomies"]:checked').val() || 'no';
2916
-
2917
-
2918
-
2919
- });
2920
-
2921
-
2922
- function sfsi_toggle_include_exclude_posttypes_taxonomies(checkboxElem, inputFieldName, inputChecked, inputFieldElem) {
2923
-
2924
- switch (inputFieldName) {
2925
-
2926
- case 'sfsi_plus_switch_exclude_custom_post_types':
2927
- case 'sfsi_plus_switch_include_custom_post_types':
2928
- case 'sfsi_plus_icon_hover_switch_exclude_custom_post_types':
2929
- case 'sfsi_plus_icon_hover_switch_include_custom_post_types':
2930
-
2931
- var elem = inputFieldElem.parent().parent().find("#sfsi_premium_custom_social_data_post_types_ul");
2932
-
2933
- if (inputChecked) {
2934
- elem.show();
2935
- } else {
2936
- elem.hide();
2937
- }
2938
-
2939
- break;
2940
-
2941
- case 'sfsi_plus_switch_exclude_taxonomies':
2942
- case 'sfsi_plus_switch_include_taxonomies':
2943
- case 'sfsi_plus_icon_hover_switch_exclude_taxonomies':
2944
- case 'sfsi_plus_icon_hover_switch_include_taxonomies':
2945
-
2946
- var elem = inputFieldElem.parent().parent().find("#sfsi_premium_taxonomies_ul");
2947
-
2948
- if (inputChecked) {
2949
- elem.show();
2950
- } else {
2951
- elem.hide();
2952
- }
2953
-
2954
- break;
2955
-
2956
- case 'sfsi_plus_include_url':
2957
- case 'sfsi_plus_exclude_url':
2958
-
2959
- var value = checkboxElem.css("background-position");
2960
- var keyWCnt = checkboxElem.parent().next().next();
2961
-
2962
- if (value === '0px -36px') {
2963
- keyWCnt.show();
2964
- keyWCnt.next().show();
2965
- } else {
2966
- keyWCnt.hide();
2967
- keyWCnt.next().hide();
2968
- }
2969
-
2970
- break;
2971
- }
2972
- }
2973
-
2974
-
2975
-
2976
- function open_save_image(btnUploadID, inputImageId, previewDivId) {
2977
-
2978
- var btnElem, inputImgElem, previewDivElem;
2979
-
2980
- var clickHandler = function (event) {
2981
-
2982
- var send_attachment_bkp = wp.media.editor.send.attachment;
2983
-
2984
- var frame = wp.media({
2985
- title: 'Select or Upload Media for Social Media',
2986
- button: {
2987
- text: 'Use this media'
2988
- },
2989
- multiple: false // Set to true to allow multiple files to be selected
2990
- });
2991
-
2992
- frame.on('select', function () {
2993
-
2994
- // Get media attachment details from the frame state
2995
- var attachment = frame.state().get('selection').first().toJSON(),
2996
-
2997
- url = attachment.url.split("/");
2998
- fileName = url[url.length - 1];
2999
- fileArr = fileName.split(".");
3000
- fileType = fileArr[fileArr.length - 1];
3001
-
3002
- if (fileType != undefined && (fileType == 'gif' || fileType == 'jpeg' || fileType == 'jpg' || fileType == 'png')) {
3003
-
3004
- inputImgElem.val(attachment.url);
3005
- previewDivElem.attr('src', attachment.url);
3006
-
3007
- btnElem.val("Change Picture");
3008
-
3009
- wp.media.editor.send.attachment = send_attachment_bkp;
3010
- } else {
3011
- alert("Only Images are allowed to upload");
3012
- frame.open();
3013
- }
3014
- });
3015
-
3016
- // Finally, open the modal on click
3017
- frame.open();
3018
- return false;
3019
- };
3020
-
3021
- if ("object" === typeof btnUploadID && null !== btnUploadID) {
3022
-
3023
- btnElem = SFSI(btnUploadID);
3024
- inputImgElem = btnElem.parent().find('input[type="hidden"]');
3025
- previewDivElem = btnElem.parent().find('img');
3026
-
3027
- clickHandler();
3028
- } else {
3029
- btnElem = SFSI('#' + btnUploadID);
3030
- inputImgElem = SFSI('#' + inputImageId);
3031
- previewDivElem = SFSI('#' + previewDivId);
3032
-
3033
- btnElem.on("click", clickHandler);
3034
- }
3035
-
3036
- }
3037
-
3038
-
3039
- function upload_image_wechat_scan(e) {
3040
- e.preventDefault();
3041
- var send_attachment_bkp = wp.media.editor.send.attachment;
3042
-
3043
- var frame = wp.media({
3044
- title: 'Select or Upload image for icon',
3045
- button: {
3046
- text: 'Use this media'
3047
- },
3048
- multiple: false // Set to true to allow multiple files to be selected
3049
- });
3050
-
3051
- frame.on('select', function () {
3052
-
3053
- // Get media attachment details from the frame state
3054
- var attachment = frame.state().get('selection').first().toJSON();
3055
-
3056
- var url = attachment.url.split("/");
3057
- var fileName = url[url.length - 1];
3058
- var fileArr = fileName.split(".");
3059
- var fileType = fileArr[fileArr.length - 1];
3060
-
3061
- if (fileType != undefined && (fileType == 'jpeg' || fileType == 'jpg' || fileType == 'png' || fileType == 'gif')) {
3062
- jQuery('input[name="sfsi_plus_wechat_scan_image"]').val(attachment.url);
3063
- jQuery('.sfsi_plus_wechat_display>img').attr('src', attachment.url);
3064
- jQuery('.sfsi_plus_wechat_display').removeClass("hide").addClass('show');
3065
- jQuery('.sfsi_plus_wechat_instruction').removeClass("show").addClass('hide');
3066
- wp.media.editor.send.attachment = send_attachment_bkp;
3067
- } else {
3068
- alert("Only Images are allowed to upload");
3069
- frame.open();
3070
- }
3071
- });
3072
-
3073
- // Finally, open the modal on click
3074
- frame.open();
3075
- }
3076
-
3077
- function sfsi_plus_delete_wechat_scan_upload(event, context) {
3078
- event.preventDefault();
3079
- if (context === "from-server") {
3080
- e = {
3081
- action: "sfsi_plus_deleteWebChatFollow"
3082
- };
3083
- jQuery.ajax({
3084
- url: ajax_object.ajax_url,
3085
- type: "post",
3086
- data: e,
3087
- dataType: "json",
3088
- async: !0,
3089
- success: function (s) {
3090
- if (s.res == 'success') {
3091
- jQuery('input[name="sfsi_plus_wechat_scan_image"]').val('');
3092
- jQuery('.sfsi_plus_wechat_display>img').attr('src', '');
3093
- jQuery('.sfsi_plus_wechat_display').removeClass("show").addClass('hide');
3094
- jQuery('.sfsi_plus_wechat_instruction').removeClass("hide").addClass('show');
3095
- // sfsiplus_afterIconSuccess(s);
3096
- } else {
3097
- SFSI(".upload-overlay").hide("slow");
3098
- SFSI(".uperror").html(s.res);
3099
- sfsiplus_showErrorSuc("Error", "Some Error Occured During Delete of wechat scan", 1)
3100
- }
3101
- }
3102
- });
3103
- } else {
3104
- jQuery('input[name="sfsi_plus_wechat_scan_image"]').val('');
3105
- jQuery('.sfsi_plus_wechat_display>img').attr('src', '');
3106
- jQuery('.sfsi_plus_wechat_display').removeClass("show").addClass('hide');
3107
- jQuery('.sfsi_plus_wechat_instruction').removeClass("hide").addClass('show');
3108
- }
3109
- }
3110
-
3111
- function sfsi_plus_checkbox_checker() {
3112
- //check if it is options page
3113
- if (window.location.pathname.endsWith('admin.php')) {
3114
- // check if Custom checkbox is loaded.
3115
- if (undefined !== this.sfsi_plus_styled_input) {
3116
- jQuery(window).load(function () {
3117
- if (undefined == window.sfsi_plus_checkbox_loaded) {
3118
- alert('There was js conflict. and we couldn\'t load our plugin successfully. please check with other plugins for the conflict.');
3119
- }
3120
- })
3121
- } else {
3122
- alert('Script for custom checkbox couldnot be loaded. you might not be able to see the checkbox. it might happen due to caching or plugin conflicts.');
3123
- }
3124
- }
3125
- }
3126
-
3127
- function sfsi_plus_close_quickpay(e) {
3128
- e && e.preventDefault();
3129
- jQuery('.sfsi_plus_quickpay-overlay').hide();
3130
- }
3131
-
3132
- // Worker Plugin
3133
- function sfsi_plus_worker_plugin(data)
3134
- {
3135
- var nonce = SFSI("#sfsi_plus_worker_plugin").attr("data-nonce");
3136
- var redirectUrl = SFSI("#sfsi_plus_worker_plugin").attr("data-plugin-list-url");
3137
- var e = {
3138
- action:"worker_plugin",
3139
- customs: true,
3140
- premium_url:data.installation_premium_plugin_file,
3141
- licence:data.license_key,
3142
- nonce: nonce
3143
- };
3144
- sfsi_plus_worker_wait();
3145
- SFSI.ajax({
3146
- url:sfsi_plus_ajax_object.ajax_url,
3147
- type:"post",
3148
- data:e,
3149
- success:function(msg) {
3150
- window.msg = msg;
3151
- var error =false;
3152
- var message ="";
3153
- if(msg[0]=="{"){
3154
- message = JSON.parse(msg);
3155
- }else{
3156
- var json_txts = msg.match(/\{.*\}/g);
3157
- if(json_txts.length>0){
3158
- message = JSON.parse(json_txts[0])
3159
- }else{
3160
- error = true;
3161
- }
3162
- }
3163
- if(false==error && message.installed==true && message.activate==null){
3164
- window.location.href = redirectUrl;
3165
- }else{
3166
- jQuery('.sfsi_plus_premium_installer-overlay').hide();
3167
- alert('unexpected error occured It might be due to server permission issue. Please download the file and install manually.');
3168
- }
3169
- },
3170
- error:function(msg){
3171
- jQuery('.sfsi_plus_premium_installer-overlay').hide();
3172
- alert('unexpected error occured It might be due to server permission issue. Please install manually.');
3173
- }
3174
- });
3175
-
3176
- }
3177
-
3178
- // <------------------------* Responsive icon *----------------------->
3179
- function sfsi_plus_responsive_icon_intraction_handler() {
3180
- window.sfsi_plus_fittext_shouldDisplay = true;
3181
- SFSI('select[name="sfsi_plus_responsive_icons_settings_edge_type"]').on('change', function () {
3182
- $target_div = (SFSI(this).parent());
3183
- if (SFSI(this).val() === "Round") {
3184
-
3185
- $target_div.parent().children().css('display', 'inline-block');
3186
- var radius = jQuery('select[name="sfsi_plus_responsive_icons_settings_edge_radius"]').val() + 'px'
3187
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('border-radius', radius);
3188
-
3189
- } else {
3190
-
3191
- $target_div.parent().children().hide();
3192
- $target_div.show();
3193
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('border-radius', 'unset');
3194
-
3195
- }
3196
- });
3197
- SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').on('change', function () {
3198
- $target_div = (SFSI(this).parent());
3199
- if (SFSI(this).val() === "Fixed icon width") {
3200
- $target_div.parent().children().css('display', 'inline-block');
3201
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').css('width', 'auto').css('display', 'flex');
3202
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a').css('flex-basis', 'unset');
3203
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').css('width', jQuery('input[name="sfsi_plus_responsive_icons_sttings_icon_width_size"]').val());
3204
-
3205
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container_box_fully_container').removeClass('sfsi_plus_icons_container_box_fully_container').addClass('sfsi_plus_icons_container_box_fixed_container');
3206
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container_box_fixed_container').removeClass('sfsi_plus_icons_container_box_fully_container').addClass('sfsi_plus_icons_container_box_fixed_container');
3207
- window.sfsi_plus_fittext_shouldDisplay = true;
3208
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3209
- if (jQuery(a_container).css('display') !== "none") {
3210
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3211
- }
3212
- })
3213
- } else {
3214
- $target_div.parent().children().hide();
3215
- $target_div.show();
3216
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').css('width', '100%').css('display', 'flex');
3217
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a').css('flex-basis', '100%');
3218
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').css('width', '100%');
3219
-
3220
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container_box_fixed_container').removeClass('sfsi_plus_icons_container_box_fixed_container').addClass('sfsi_plus_icons_container_box_fully_container');
3221
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container_box_fully_container').removeClass('sfsi_plus_icons_container_box_fixed_container').addClass('sfsi_plus_icons_container_box_fully_container');
3222
- window.sfsi_plus_fittext_shouldDisplay = true;
3223
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3224
- if (jQuery(a_container).css('display') !== "none") {
3225
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3226
- }
3227
- })
3228
- }
3229
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').removeClass('sfsi_plus_fixed_count_container').removeClass('sfsi_plus_responsive_count_container').addClass('sfsi_plus_' + (jQuery(this).val() == "Fully responsive" ? 'responsive' : 'fixed') + '_count_container')
3230
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container>a').removeClass('sfsi_plus_responsive_fluid').removeClass('sfsi_plus_responsive_fixed_width').addClass('sfsi_plus_responsive_' + (jQuery(this).val() == "Fully responsive" ? 'fluid' : 'fixed_width'))
3231
- sfsi_plus_resize_icons_container();
3232
-
3233
- })
3234
- jQuery(document).on('keyup', 'input[name="sfsi_plus_responsive_icons_sttings_icon_width_size"]', function () {
3235
- if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
3236
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
3237
- window.sfsi_plus_fittext_shouldDisplay = true;
3238
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3239
- if (jQuery(a_container).css('display') !== "none") {
3240
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3241
- }
3242
- })
3243
- }
3244
- sfsi_plus_resize_icons_container();
3245
- });
3246
- jQuery(document).on('change', 'input[name="sfsi_plus_responsive_icons_sttings_icon_width_size"]', function () {
3247
- if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
3248
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
3249
- }
3250
- });
3251
- jQuery(document).on('keyup', 'input[name="sfsi_plus_responsive_icons_settings_margin"]', function () {
3252
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
3253
- });
3254
- jQuery(document).on('change', 'input[name="sfsi_plus_responsive_icons_settings_margin"]', function () {
3255
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
3256
- // jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').css('width',(jQuery('.sfsi_plus_responsive_icons').width()-(jQuery('.sfsi_plus_responsive_icons_count').width()+jQuery(this).val()))+'px');
3257
-
3258
- });
3259
- jQuery(document).on('change', 'select[name="sfsi_plus_responsive_icons_settings_text_align"]', function () {
3260
- if (jQuery(this).val() === "Centered") {
3261
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a').css('text-align', 'center');
3262
- } else {
3263
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a').css('text-align', 'left');
3264
- }
3265
- });
3266
- jQuery('.sfsi_plus_responsive_default_icon_container input.sfsi_plus_responsive_input').on('keyup', function () {
3267
- jQuery(this).parent().find('.sfsi_plus_responsive_icon_item_container').find('span').text(jQuery(this).val());
3268
- var iconName = jQuery(this).attr('name');
3269
- var icon = iconName.replace('sfsi_plus_responsive_', '').replace('_input', '');
3270
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_' + (icon.toLowerCase()) + '_container span').text(jQuery(this).val());
3271
- window.sfsi_plus_fittext_shouldDisplay = true;
3272
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3273
- if (jQuery(a_container).css('display') !== "none") {
3274
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3275
- }
3276
- })
3277
- sfsi_plus_resize_icons_container();
3278
- })
3279
- jQuery('.sfsi_plus_responsive_custom_icon_container input.sfsi_plus_responsive_input').on('keyup', function () {
3280
- jQuery(this).parent().find('.sfsi_plus_responsive_icon_item_container').find('span').text(jQuery(this).val());
3281
- var iconName = jQuery(this).attr('name');
3282
- var icon = iconName.replace('sfsi_plus_responsive_custom_', '').replace('_input', '');
3283
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_' + icon + '_container span').text(jQuery(this).val())
3284
- window.sfsi_plus_fittext_shouldDisplay = true;
3285
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3286
- if (jQuery(a_container).css('display') !== "none") {
3287
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3288
- }
3289
- })
3290
- sfsi_plus_resize_icons_container();
3291
-
3292
- })
3293
- jQuery('.sfsi_plus_responsive_custom_url_toggler, .sfsi_plus_responsive_default_url_toggler').click(function (event) {
3294
- event.preventDefault();
3295
- sfsi_plus_responsive_open_url(event);
3296
- });
3297
- jQuery('.sfsi_plus_responsive_custom_url_toggler, .sfsi_plus_responsive_default_url_toggler').click(function (event) {
3298
- event.preventDefault();
3299
- sfsi_plus_responsive_open_url(event);
3300
- })
3301
- jQuery('.sfsi_plus_responsive_custom_url_hide, .sfsi_plus_responsive_default_url_hide').click(function (event) {
3302
- event.preventDefault();
3303
- jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_custom_url_hide').hide();
3304
- jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_url_input').hide();
3305
- jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_default_url_hide').hide();
3306
- jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_default_url_toggler').show();
3307
- jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_custom_url_toggler').show();
3308
- });
3309
- jQuery('select[name="sfsi_plus_responsive_icons_settings_icon_size"]').change(function (event) {
3310
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').removeClass('sfsi_plus_small_button').removeClass('sfsi_plus_medium_button').removeClass('sfsi_plus_large_button').addClass('sfsi_plus_' + (jQuery(this).val().toLowerCase()) + '_button');
3311
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').removeClass('sfsi_plus_small_button_container').removeClass('sfsi_plus_medium_button_container').removeClass('sfsi_plus_large_button_container').addClass('sfsi_plus_' + (jQuery(this).val().toLowerCase()) + '_button_container')
3312
- })
3313
- jQuery(document).on('change', 'select[name="sfsi_plus_responsive_icons_settings_edge_radius"]', function (event) {
3314
- var radius = jQuery(this).val() + 'px'
3315
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('border-radius', radius);
3316
-
3317
- });
3318
- jQuery(document).on('change', 'select[name="sfsi_plus_responsive_icons_settings_style"]', function (event) {
3319
- if ('Flat' === jQuery(this).val()) {
3320
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').removeClass('sfsi_plus_responsive_icon_gradient');
3321
- } else {
3322
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').addClass('sfsi_plus_responsive_icon_gradient');
3323
- }
3324
- });
3325
- jQuery(document).on('mouseenter', '.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a', function () {
3326
- jQuery(this).css('opacity', 0.8);
3327
- })
3328
- jQuery(document).on('mouseleave', '.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a', function () {
3329
- jQuery(this).css('opacity', 1);
3330
- })
3331
- window.sfsi_plus_fittext_shouldDisplay = true;
3332
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3333
- if (jQuery(a_container).css('display') !== "none") {
3334
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3335
- }
3336
- })
3337
- sfsi_plus_resize_icons_container();
3338
- jQuery('.ui-accordion-header.ui-state-default.ui-accordion-icons').click(function (data) {
3339
- window.sfsi_plus_fittext_shouldDisplay = true;
3340
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3341
- if (jQuery(a_container).css('display') !== "none") {
3342
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3343
- }
3344
- })
3345
- sfsi_plus_resize_icons_container();
3346
- });
3347
- jQuery('select[name="sfsi_plus_responsive_icons_settings_text_align"]').change(function (event) {
3348
- var data = jQuery(event.target).val();
3349
- if (data == "Centered") {
3350
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').removeClass('sfsi_plus_left-align_icon').addClass('sfsi_plus_centered_icon');
3351
- } else {
3352
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').removeClass('sfsi_plus_centered_icon').addClass('sfsi_plus_left-align_icon');
3353
- }
3354
- });
3355
- jQuery('a.sfsi_plus_responsive_custom_delete_btn').click(function (event) {
3356
- event.preventDefault();
3357
- var icon_num = jQuery(this).attr('data-id');
3358
- //reset the current block;
3359
- // var last_block = jQuery('.sfsi_plus_responsive_custom_icon_4_container').clone();
3360
- var cur_block = jQuery('.sfsi_plus_responsive_custom_icon_' + icon_num + '_container');
3361
- cur_block.find('.sfsi_plus_responsive_custom_delete_btn').hide();
3362
- cur_block.find('input[name="sfsi_plus_responsive_custom_' + icon_num + '_added"]').val('no');
3363
- cur_block.find('.sfsi_plus_responsive_custom_' + icon_num + '_added').attr('value', 'no');
3364
- cur_block.find('.radio_section.tb_4_ck .checkbox').click();
3365
- cur_block.hide();
3366
-
3367
-
3368
- if (icon_num > 0) {
3369
- var prev_block = jQuery('.sfsi_plus_responsive_custom_icon_' + (icon_num - 1) + '_container');
3370
- prev_block.find('.sfsi_plus_responsive_custom_delete_btn').show();
3371
- }
3372
- // jQuery('.sfsi_plus_responsive_custom_icon_container').each(function(index,custom_icon){
3373
- // var target= jQuery(custom_icon);
3374
- // target.find('.sfsi_plus_responsive_custom_delete_btn');
3375
- // var custom_id = target.find('.sfsi_plus_responsive_custom_delete_btn').attr('data-id');
3376
- // if(custom_id>icon_num){
3377
- // target.removeClass('sfsi_plus_responsive_custom_icon_'+custom_id+'_container').addClass('sfsi_plus_responsive_custom_icon_'+(custom_id-1)+'_container');
3378
- // target.find('input[name="sfsi_plus_responsive_custom_'+custom_id+'_added"]').attr('name',"sfsi_plus_responsive_custom_"+(custom_id-1)+"_added");
3379
- // target.find('#sfsi_plus_responsive_'+custom_id+'_display').removeClass('sfsi_plus_responsive_custom_'+custom_id+'_display').addClass('sfsi_plus_responsive_custom_'+(custom_id-1)+'_display').attr('id','sfsi_plus_responsive_'+(custom_id-1)+'_display').attr('name','sfsi_plus_responsive_custom_'+(custom_id-1)+'_display').attr('data-custom-index',(custom_id-1));
3380
- // target.find('.sfsi_plus_responsive_icon_item_container').removeClass('sfsi_plus_responsive_icon_custom_'+custom_id+'_container').addClass('sfsi_plus_responsive_icon_custom_'+(custom_id-1)+'_container');
3381
- // target.find('.sfsi_plus_responsive_input').attr('name','sfsi_plus_responsive_custom_'+(custom_id-1)+'_input');
3382
- // target.find('.sfsi_plus_responsive_url_input').attr('name','sfsi_plus_responsive_custom_'+(custom_id-1)+'_url_input');
3383
- // target.find('.sfsi_plus_bg-color-picker').attr('name','sfsi_plus_responsive_icon_'+(custom_id-1)+'_bg_color');
3384
- // target.find('.sfsi_plus_logo_upload sfsi_plus_logo_custom_'+custom_id+'_upload').removeClass('sfsi_plus_logo_upload sfsi_plus_logo_custom_'+custom_id+'_upload').addClass('sfsi_plus_logo_upload sfsi_plus_logo_custom_'+(custom_id-1)+'_upload');
3385
- // target.find('input[type="sfsi_plus_responsive_icons_custom_'+custom_id+'_icon"]').attr('name','input[type="sfsi_plus_responsive_icons_custom_'+(custom_id-1)+'_icon"]');
3386
- // target.find('.sfsi_plus_responsive_custom_delete_btn').attr('data-id',''+(custom_id-1));
3387
- // }
3388
- // });
3389
- // // sfsi_plus_backend_section_beforeafter_set_fixed_width();
3390
- // // jQuery(window).on('resize',sfsi_plus_backend_section_beforeafter_set_fixed_width);
3391
- // var new_block=jQuery('.sfsi_plus_responsive_custom_icon_container').clone();
3392
- // jQuery('.sfsi_plus_responsive_custom_icon_container').remove();
3393
- // jQuery('.sfsi_plus_responsive_default_icon_container').parent().append(last_block).append();
3394
- // jQuery('.sfsi_plus_responsive_default_icon_container').parent().append(new_block);
3395
- // return false;
3396
- })
3397
- }
3398
-
3399
- function sfsi_plus_responsive_icon_counter_tgl(hide, show, ref = null) {
3400
- if (null !== hide && '' !== hide) {
3401
- jQuery('.' + hide).hide();
3402
- }
3403
- if (null !== show && '' !== show) {
3404
- jQuery('.' + show).show();
3405
- }
3406
- }
3407
-
3408
- function sfsi_plus_responsive_toggle_count() {
3409
- var data = jQuery('input[name="sfsi_plus_responsive_icon_show_count"]:checked').val();
3410
- var data2 = jQuery('input[name="sfsi_plus_display_counts"]:checked').val();
3411
- if (data2 == "yes" && 'yes' == data) {
3412
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('display', 'inline-block');
3413
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').removeClass('sfsi_plus_responsive_without_counter_icons').addClass('sfsi_plus_responsive_with_counter_icons');
3414
- sfsi_plus_resize_icons_container();
3415
- } else {
3416
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('display', 'none');
3417
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').removeClass('sfsi_plus_responsive_with_counter_icons').addClass('sfsi_plus_responsive_without_counter_icons');
3418
- sfsi_plus_resize_icons_container();
3419
- }
3420
- }
3421
-
3422
- function sfsi_plus_responsive_open_url(event) {
3423
- jQuery(event.target).parent().find('.sfsi_plus_responsive_custom_url_hide').show();
3424
- jQuery(event.target).parent().find('.sfsi_plus_responsive_default_url_hide').show();
3425
- jQuery(event.target).parent().find('.sfsi_plus_responsive_url_input').show();
3426
- jQuery(event.target).hide();
3427
- }
3428
-
3429
- function sfsi_plus_responsive_icon_hide_responsive_options() {
3430
- jQuery('.sfsiplus_PostsSettings_section').show();
3431
- jQuery('.sfsi_plus_choose_post_types_section').show();
3432
- jQuery('.sfsi_plus_not_responsive').show();
3433
- }
3434
-
3435
- function sfsi_plus_responsive_icon_show_responsive_options() {
3436
- jQuery('.sfsiplus_PostsSettings_section').hide();
3437
- jQuery('.sfsi_plus_choose_post_types_section').hide();
3438
- jQuery('.sfsi_plus_not_responsive').hide();
3439
- window.sfsi_plus_fittext_shouldDisplay = true;
3440
- jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3441
- if (jQuery(a_container).css('display') !== "none") {
3442
- sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3443
- }
3444
- })
3445
- sfsi_plus_resize_icons_container();
3446
- }
3447
-
3448
- function sfsi_plus_scroll_to_div(option_id, scroll_selector) {
3449
- jQuery('#' + option_id + '.ui-accordion-header[aria-selected="false"]').click() //opened the option
3450
- //scroll to it.
3451
- if (scroll_selector && scroll_selector !== '') {
3452
- scroll_selector = scroll_selector;
3453
- } else {
3454
- scroll_selector = '#' + option_id + '.ui-accordion-header';
3455
- }
3456
- jQuery('html, body').stop().animate({
3457
- scrollTop: jQuery(scroll_selector).offset().top
3458
- }, 1000);
3459
- }
3460
- function sfsi_plus_fitText(container) {
3461
- if (container.parent().parent().hasClass('sfsi_plus_icons_container_box_fixed_container')) {
3462
- if (window.sfsi_plus_fittext_shouldDisplay === true) {
3463
- if (jQuery('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() == "Fully responsive") {
3464
- var all_icon_width = jQuery('.sfsi_plus_responsive_icons .sfsi_plus_icons_container').width();
3465
- var total_active_icons = jQuery('.sfsi_plus_responsive_icons .sfsi_plus_icons_container a').filter(function (i, icon) {
3466
- return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3467
- }).length;
3468
-
3469
- var distance_between_icon = jQuery('input[name="sfsi_plus_responsive_icons_settings_margin"]').val()
3470
- var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3471
- container_width = (container_width - distance_between_icon);
3472
- } else {
3473
- var container_width = container.width();
3474
- }
3475
- // var container_img_width = container.find('img').width();
3476
- var container_img_width = 70;
3477
- // var span=container.find('span').clone();
3478
- var span = container.find('span');
3479
- // var span_original_width = container.find('span').width();
3480
- var span_original_width = container_width - (container_img_width)
3481
- span
3482
- // .css('display','inline-block')
3483
- .css('white-space', 'nowrap')
3484
- // .css('width','auto')
3485
- ;
3486
- var span_flatted_width = span.width();
3487
- if (span_flatted_width == 0) {
3488
- span_flatted_width = span_original_width;
3489
- }
3490
- span
3491
- // .css('display','inline-block')
3492
- .css('white-space', 'unset')
3493
- // .css('width','auto')
3494
- ;
3495
- var shouldDisplay = ((undefined === window.sfsi_plus_fittext_shouldDisplay) ? true : window.sfsi_plus_fittext_shouldDisplay = true);
3496
- var fontSize = parseInt(span.css('font-size'));
3497
-
3498
- if (6 > fontSize) {
3499
- fontSize = 20;
3500
- }
3501
-
3502
- var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3503
-
3504
- if (computed_fontSize < 8) {
3505
- shouldDisplay = false;
3506
- window.sfsi_plus_fittext_shouldDisplay = false;
3507
- computed_fontSize = 20;
3508
- }
3509
- span.css('font-size', Math.min(computed_fontSize, 20));
3510
- span
3511
- // .css('display','inline-block')
3512
- .css('white-space', 'nowrap')
3513
- // .css('width','auto')
3514
- ;
3515
- if (shouldDisplay) {
3516
- span.show();
3517
- } else {
3518
- span.hide();
3519
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container span').hide();
3520
- }
3521
- }
3522
- } else {
3523
- var span = container.find('span');
3524
- span.css('font-size', 'initial');
3525
- span.show();
3526
- }
3527
-
3528
- }
3529
-
3530
- function sfsi_plus_fixedWidth_fitText(container) {
3531
- return;
3532
- if (window.sfsi_plus_fittext_shouldDisplay === true) {
3533
- if (jQuery('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() == "Fixed icon width") {
3534
- var all_icon_width = jQuery('.sfsi_plus_responsive_icons .sfsi_plus_icons_container').width();
3535
- var total_active_icons = jQuery('.sfsi_plus_responsive_icons .sfsi_plus_icons_container a').filter(function (i, icon) {
3536
- return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3537
- }).length;
3538
- var distance_between_icon = jQuery('input[name="sfsi_plus_responsive_icons_settings_margin"]').val()
3539
- var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3540
- container_width = (container_width - distance_between_icon);
3541
- } else {
3542
- var container_width = container.width();
3543
- }
3544
- // var container_img_width = container.find('img').width();
3545
- var container_img_width = 70;
3546
- // var span=container.find('span').clone();
3547
- var span = container.find('span');
3548
- // var span_original_width = container.find('span').width();
3549
- var span_original_width = container_width - (container_img_width)
3550
- span
3551
- // .css('display','inline-block')
3552
- .css('white-space', 'nowrap')
3553
- // .css('width','auto')
3554
- ;
3555
- var span_flatted_width = span.width();
3556
- if (span_flatted_width == 0) {
3557
- span_flatted_width = span_original_width;
3558
- }
3559
- span
3560
- // .css('display','inline-block')
3561
- .css('white-space', 'unset')
3562
- // .css('width','auto')
3563
- ;
3564
- var shouldDisplay = undefined === window.sfsi_plus_fittext_shouldDisplay ? true : window.sfsi_plus_fittext_shouldDisplay = true;;
3565
- var fontSize = parseInt(span.css('font-size'));
3566
-
3567
- if (6 > fontSize) {
3568
- fontSize = 15;
3569
- }
3570
-
3571
- var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3572
-
3573
- if (computed_fontSize < 8) {
3574
- shouldDisplay = false;
3575
- window.sfsi_plus_fittext_shouldDisplay = false;
3576
- computed_fontSize = 15;
3577
- }
3578
- span.css('font-size', Math.min(computed_fontSize, 15));
3579
- span
3580
- // .css('display','inline-block')
3581
- .css('white-space', 'nowrap')
3582
- // .css('width','auto')
3583
- ;
3584
- // var heightOfResIcons = jQuery('.sfsi_plus_responsive_icon_item_container').height();
3585
-
3586
- // if(heightOfResIcons < 17){
3587
- // span.show();
3588
- // }else{
3589
- // span.hide();
3590
- // }
3591
-
3592
- if (shouldDisplay) {
3593
- span.show();
3594
- } else {
3595
- span.hide();
3596
- }
3597
- }
3598
- }
3599
-
3600
- function sfsi_plus_resize_icons_container() {
3601
- return;
3602
- // resize icon container based on the size of count
3603
- sfsi_plus_cloned_icon_list = jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').clone();
3604
- sfsi_plus_cloned_icon_list.removeClass('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_with_counter_icons').addClass('sfsi_plus_responsive_cloned_list');
3605
- sfsi_plus_cloned_icon_list.css('width', '100%');
3606
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').parent().append(sfsi_plus_cloned_icon_list);
3607
-
3608
- // sfsi_plus_cloned_icon_list.css({
3609
- // position: "absolute",
3610
- // left: "-10000px"
3611
- // }).appendTo("body");
3612
- actual_width = sfsi_plus_cloned_icon_list.width();
3613
- count_width = jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').width();
3614
- jQuery('.sfsi_plus_responsive_cloned_list').remove();
3615
- sfsi_plus_inline_style = jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').attr('style');
3616
- // remove_width
3617
- sfsi_plus_inline_style = sfsi_plus_inline_style.replace(/width:auto($|!important|)(;|$)/g, '').replace(/width:\s*(-|)\d*\s*(px|%)\s*($|!important|)(;|$)/g, '');
3618
- if (!(jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').hasClass('sfsi_plus_responsive_without_counter_icons') && jQuery('.sfsi_plus_icons_container').hasClass('sfsi_plus_icons_container_box_fixed_container'))) {
3619
- sfsi_plus_inline_style += "width:" + (actual_width - count_width - 1) + 'px!important;'
3620
- } else {
3621
- sfsi_plus_inline_style += "width:auto!important;";
3622
- }
3623
- jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').attr('style', sfsi_plus_inline_style);
3624
-
3625
- }
3626
-
3627
- function sfsi_plus_worker_wait(){
3628
- var html = '<div class="pop-overlay read-overlay sfsi_plus_premium_installer-overlay" style="background: rgba(255, 255, 255, 0.6); z-index: 9999; overflow-y: auto; display: block;">'+
3629
- '<div style="width:100%;height:100%"> <div style="width:50px;margin:auto;margin-top:20%"> <style type="text/css"> .lds-roller{display: inline-block; position: relative; width: 64px; height: 64px;}.lds-roller div{animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; transform-origin: 32px 32px;}.lds-roller div:after{content: " "; display: block; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #333; margin: -3px 0 0 -3px;}.lds-roller div:nth-child(1){animation-delay: -0.036s;}.lds-roller div:nth-child(1):after{top: 50px; left: 50px;}.lds-roller div:nth-child(2){animation-delay: -0.072s;}.lds-roller div:nth-child(2):after{top: 54px; left: 45px;}.lds-roller div:nth-child(3){animation-delay: -0.108s;}.lds-roller div:nth-child(3):after{top: 57px; left: 39px;}.lds-roller div:nth-child(4){animation-delay: -0.144s;}.lds-roller div:nth-child(4):after{top: 58px; left: 32px;}.lds-roller div:nth-child(5){animation-delay: -0.18s;}.lds-roller div:nth-child(5):after{top: 57px; left: 25px;}.lds-roller div:nth-child(6){animation-delay: -0.216s;}.lds-roller div:nth-child(6):after{top: 54px; left: 19px;}.lds-roller div:nth-child(7){animation-delay: -0.252s;}.lds-roller div:nth-child(7):after{top: 50px; left: 14px;}.lds-roller div:nth-child(8){animation-delay: -0.288s;}.lds-roller div:nth-child(8):after{top: 45px; left: 10px;}@keyframes lds-roller{0%{transform: rotate(0deg);}100%{transform: rotate(360deg);}}</style> <div class="lds-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div></div>'+
3630
- '<div style="text-align: center;font-size:32px">Please wait while we are installing the premium plugin.</div>'+
3631
- '</div>';
3632
- jQuery('body').append(html);
3633
- jQuery('.sfsi_plus_premium_installer-overlay').show();
3634
- }
3635
- function sellcodesSuccess(data) {
3636
- if(data.installation){
3637
- sfsi_plus_worker_plugin(data);
3638
- }
3639
  }
1
+ function sfsi_plus_update_index() {
2
+ var s = 1;
3
+ SFSI("ul.plus_icn_listing li.plus_custom").each(function () {
4
+ SFSI(this).children("span.sfsiplus_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.plus_custom_m").find("div.sfsiplus_custom_section").each(function () {
9
+ SFSI(this).find("label").html("Custom " + cntt + ":"), cntt++;
10
+ });
11
+ }
12
+ openWpMedia = function (btnUploadID, inputImageId, previewDivId, funcNameSuccessHandler) {
13
+
14
+ var btnElem, inputImgElem, previewDivElem, iconName;
15
+
16
+ var clickHandler = function (event) {
17
+
18
+ var send_attachment_bkp = wp.media.editor.send.attachment;
19
+
20
+ var frame = wp.media({
21
+ title: 'Select or Upload image',
22
+ button: {
23
+ text: 'Use this image'
24
+ },
25
+ multiple: false // Set to true to allow multiple files to be selected
26
+ });
27
+
28
+ frame.on('select', function () {
29
+
30
+ // Get media attachment details from the frame state
31
+ var attachment = frame.state().get('selection').first().toJSON();
32
+ var url = attachment.url.split("/");
33
+ var fileName = url[url.length - 1];
34
+ var fileArr = fileName.split(".");
35
+ var fileType = fileArr[fileArr.length - 1];
36
+
37
+ if (fileType != undefined && (fileType == 'gif' || fileType == 'jpeg' || fileType == 'jpg' || fileType == 'png')) {
38
+
39
+ //inputImgElem.val(attachment.url);
40
+ //previewDivElem.attr('src',attachment.url);
41
+
42
+ btnElem.val("Change Picture");
43
+
44
+ wp.media.editor.send.attachment = send_attachment_bkp;
45
+
46
+ if (null !== funcNameSuccessHandler && funcNameSuccessHandler.length > 0) {
47
+
48
+ var iconData = {
49
+ "imgUrl": attachment.url
50
+ };
51
+
52
+ context[funcNameSuccessHandler](iconData, btnElem);
53
+ }
54
+ } else {
55
+ alert("Only Images are allowed to upload");
56
+ frame.open();
57
+ }
58
+ });
59
+
60
+ // Finally, open the modal on click
61
+ frame.open();
62
+ return false;
63
+ };
64
+
65
+ if ("object" === typeof btnUploadID && null !== btnUploadID) {
66
+
67
+ btnElem = SFSI(btnUploadID);
68
+ inputImgElem = btnElem.parent().find('input[type="hidden"]');
69
+ previewDivElem = btnElem.parent().find('img');
70
+ iconName = btnElem.attr('data-iconname');
71
+ clickHandler();
72
+ } else {
73
+
74
+ btnElem = $('#' + btnUploadID);
75
+ inputImgElem = $('#' + inputImageId);
76
+ previewDivElem = $('#' + previewDivId);
77
+
78
+ btnElem.on("click", clickHandler);
79
+ }
80
+
81
+ };
82
+ //MZ CODE END
83
+ function sfsipluscollapse(s) {
84
+ var i = !0,
85
+ e = SFSI(s).closest("div.ui-accordion-content").prev("h3.ui-accordion-header"),
86
+ t = SFSI(s).closest("div.ui-accordion-content").first();
87
+ e.toggleClass("ui-corner-all", i).toggleClass("accordion-header-active ui-state-active ui-corner-top", !i).attr("aria-selected", (!i).toString()),
88
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", i).toggleClass("ui-icon-triangle-1-s", !i),
89
+ t.toggleClass("accordion-content-active", !i), i ? t.slideUp() : t.slideDown();
90
+ }
91
+
92
+ function sfsi_plus_delete_CusIcon(s, i) {
93
+ sfsiplus_beForeLoad();
94
+ var e = {
95
+ action: "plus_deleteIcons",
96
+ icon_name: i.attr("name"),
97
+ nonce: SFSI(i).parents('.plus_custom').find('input[name="nonce"]').val()
98
+ };
99
+ SFSI.ajax({
100
+ url: sfsi_plus_ajax_object.ajax_url,
101
+ type: "post",
102
+ data: e,
103
+ dataType: "json",
104
+ success: function (e) {
105
+ if ("success" == e.res) {
106
+ sfsiplus_showErrorSuc("success", "Saved !", 1);
107
+ var t = e.last_index + 1;
108
+ var attr = i.attr("name");
109
+ attr = attr.replace('plus', '');
110
+ SFSI("#plus_total_cusotm_icons").val(e.total_up), SFSI(s).closest(".plus_custom").remove(),
111
+ SFSI("li.plus_custom:last-child").addClass("bdr_btm_non"), SFSI(".plus_custom-links").find("div." + attr).remove(),
112
+ SFSI(".plus_custom_m").find("div." + attr).remove(),
113
+ SFSI("ul.plus_sfsi_sample_icons").children("li." + attr).remove();
114
+
115
+ if (e.total_up == 0) {
116
+ SFSI(".banner_custom_icon").hide();
117
+ }
118
+
119
+ var n = e.total_up + 1;
120
+ 4 == e.total_up && SFSI(".plus_icn_listing").append('<li id="plus_c' + t + '" class="plus_custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style="background-position: 0px 0px;"></span><input name="plussfsiICON_' + t + '_display" type="checkbox" value="yes" class="styled" style="display:none;" element-type="sfsiplus-cusotm-icon" isNew="yes" /></div> <span class="plus_custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="plus_CImg_' + t + '" /> </span> <span class="custom sfsiplus_custom-txt">Custom' + n + ' </span> <div class="sfsiplus_right_info"> <p><span>' + object_name1.It_depends + ':</span> ' + object_name1.Upload_a + '</p><div class="inputWrapper"></div></li>');
121
+ } else sfsiplus_showErrorSuc("error", "Unkown error , please try again", 1);
122
+ return sfsi_plus_update_index(), plus_update_Sec5Iconorder(), sfsi_plus_update_step1(), sfsi_plus_update_step5(),
123
+ sfsiplus_afterLoad(), "suc";
124
+ }
125
+ });
126
+ }
127
+
128
+ function plus_update_Sec5Iconorder() {
129
+ SFSI("ul.plus_share_icon_order").children("li").each(function () {
130
+ SFSI(this).attr("data-index", SFSI(this).index() + 1);
131
+ });
132
+ }
133
+
134
+ function sfsi_plus_section_Display(s, i) {
135
+ "hide" == i ? (SFSI("." + s + " :input").prop("disabled", !0), SFSI("." + s + " :button").prop("disabled", !0),
136
+ SFSI("." + s).hide()) : (SFSI("." + s + " :input").removeAttr("disabled", !0), SFSI("." + s + " :button").removeAttr("disabled", !0),
137
+ SFSI("." + s).show());
138
+ }
139
+
140
+ function sfsi_plus_depened_sections() {
141
+ if ("sfsi" == SFSI("input[name='sfsi_plus_rss_icons']:checked").val()) {
142
+ for (i = 0; 16 > i; i++) {
143
+ var s = i + 1,
144
+ e = 74 * i;
145
+ SFSI(".sfsiplus_row_" + s + "_2").css("background-position", "-588px -" + e + "px");
146
+ }
147
+ var t = SFSI(".icon_img").attr("src");
148
+ if (t) {
149
+ if (t.indexOf("subscribe") != -1) {
150
+ var n = t.replace("subscribe.png", "sf_arow_icn.png");
151
+ } else {
152
+ var n = t.replace("email.png", "sf_arow_icn.png");
153
+ }
154
+ SFSI(".icon_img").attr("src", n);
155
+ }
156
+ } else {
157
+ if ("email" == SFSI("input[name='sfsi_plus_rss_icons']:checked").val()) {
158
+ for (SFSI(".sfsiplus_row_1_2").css("background-position", "-58px 0"), i = 0; 16 > i; i++) {
159
+ var s = i + 1,
160
+ e = 74 * i;
161
+ SFSI(".sfsiplus_row_" + s + "_2").css("background-position", "-58px -" + e + "px");
162
+ }
163
+ var t = SFSI(".icon_img").attr("src");
164
+ if (t) {
165
+ if (t.indexOf("sf_arow_icn") != -1) {
166
+ var n = t.replace("sf_arow_icn.png", "email.png");
167
+ } else {
168
+ var n = t.replace("subscribe.png", "email.png");
169
+ }
170
+ SFSI(".icon_img").attr("src", n);
171
+ }
172
+ } else {
173
+ for (SFSI(".sfsiplus_row_1_2").css("background-position", "-649px 0"), i = 0; 16 > i; i++) {
174
+ var s = i + 1,
175
+ e = 74 * i;
176
+ SFSI(".sfsiplus_row_" + s + "_2").css("background-position", "-649px -" + e + "px");
177
+ }
178
+ var t = SFSI(".icon_img").attr("src");
179
+ if (t) {
180
+ if (t.indexOf("email") != -1) {
181
+ var n = t.replace("email.png", "subscribe.png");
182
+ } else {
183
+ var n = t.replace("sf_arow_icn.png", "subscribe.png");
184
+ }
185
+ SFSI(".icon_img").attr("src", n);
186
+ }
187
+ }
188
+ }
189
+ SFSI("input[name='sfsi_plus_rss_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_rss_section", "show") : sfsi_plus_section_Display("sfsiplus_rss_section", "hide"),
190
+ SFSI("input[name='sfsi_plus_email_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_email_section", "show") : sfsi_plus_section_Display("sfsiplus_email_section", "hide"),
191
+ SFSI("input[name='sfsi_plus_facebook_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_facebook_section", "show") : sfsi_plus_section_Display("sfsiplus_facebook_section", "hide"),
192
+ SFSI("input[name='sfsi_plus_twitter_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_twitter_section", "show") : sfsi_plus_section_Display("sfsiplus_twitter_section", "hide"),
193
+ SFSI("input[name='sfsi_plus_youtube_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_youtube_section", "show") : sfsi_plus_section_Display("sfsiplus_youtube_section", "hide"),
194
+ SFSI("input[name='sfsi_plus_pinterest_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_pinterest_section", "show") : sfsi_plus_section_Display("sfsiplus_pinterest_section", "hide"),
195
+ SFSI("input[name='sfsi_plus_instagram_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_instagram_section", "show") : sfsi_plus_section_Display("sfsiplus_instagram_section", "hide"),
196
+ SFSI("input[name='sfsi_plus_houzz_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_houzz_section", "show") : sfsi_plus_section_Display("sfsiplus_houzz_section", "hide"),
197
+ SFSI("input[name='sfsi_plus_linkedin_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_linkedin_section", "show") : sfsi_plus_section_Display("sfsiplus_linkedin_section", "hide"),
198
+ SFSI("input[name='sfsi_plus_telegram_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_telegram_section", "show") : sfsi_plus_section_Display("sfsiplus_telegram_section", "hide"),
199
+ SFSI("input[name='sfsi_plus_vk_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_vk_section", "show") : sfsi_plus_section_Display("sfsiplus_vk_section", "hide"),
200
+ SFSI("input[name='sfsi_plus_ok_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_ok_section", "show") : sfsi_plus_section_Display("sfsiplus_ok_section", "hide"),
201
+ SFSI("input[name='sfsi_plus_wechat_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_wechat_section", "show") : sfsi_plus_section_Display("sfsiplus_wechat_section", "hide"),
202
+ SFSI("input[name='sfsi_plus_weibo_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_weibo_section", "show") : sfsi_plus_section_Display("sfsiplus_weibo_section", "hide"),
203
+ SFSI("input[element-type='sfsiplus-cusotm-icon']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_custom_section", "show") : sfsi_plus_section_Display("sfsiplus_custom_section", "hide");
204
+ }
205
+
206
+ function PlusCustomIConSectionsUpdate() {
207
+ sfsi_plus_section_Display("counter".ele, show);
208
+ }
209
+ // Upload Custom Skin {Monad}
210
+ function plus_sfsi_customskin_upload(s, ref, nonce) {
211
+ var ttl = jQuery(ref).attr("title");
212
+ var i = s,
213
+ e = {
214
+ action: "plus_UploadSkins",
215
+ custom_imgurl: i,
216
+ nonce: nonce
217
+ };
218
+ SFSI.ajax({
219
+ url: sfsi_plus_ajax_object.ajax_url,
220
+ type: "post",
221
+ data: e,
222
+ success: function (msg) {
223
+ if (msg.res = "success") {
224
+ var arr = s.split('=');
225
+ jQuery(ref).prev('.imgskin').attr('src', arr[1]);
226
+ jQuery(ref).prev('.imgskin').css("display", "block");
227
+ jQuery(ref).text("Update");
228
+ jQuery(ref).next('.dlt_btn').css("display", "block");
229
+ }
230
+ }
231
+ });
232
+ }
233
+ // Delete Custom Skin {Monad}
234
+ function sfsiplus_deleteskin_icon(s) {
235
+ var iconname = jQuery(s).attr("title");
236
+ var nonce = jQuery(s).attr("data-nonce");
237
+ var i = iconname,
238
+ e = {
239
+ action: "plus_DeleteSkin",
240
+ iconname: i,
241
+ nonce: nonce
242
+ };
243
+
244
+ SFSI.ajax({
245
+ url: sfsi_plus_ajax_object.ajax_url,
246
+ type: "post",
247
+ data: e,
248
+ dataType: "json",
249
+ success: function (msg) {
250
+ if (msg.res === "success") {
251
+ SFSI(s).prev("a").text("Upload");
252
+ SFSI(s).prev("a").prev("img").attr("src", '');
253
+ SFSI(s).prev("a").prev("img").css("display", "none");
254
+ SFSI(s).css("display", "none");
255
+ } else {
256
+ alert("Whoops! something went wrong.")
257
+ }
258
+ }
259
+ });
260
+ }
261
+ // Save Custom Skin {Monad}
262
+ function SFSI_plus_done(nonce) {
263
+ e = {
264
+ action: "plus_Iamdone",
265
+ nonce: nonce
266
+ };
267
+
268
+ SFSI.ajax({
269
+ url: sfsi_plus_ajax_object.ajax_url,
270
+ type: "post",
271
+ data: e,
272
+ success: function (msg) {
273
+ jQuery("li.cstomskins_upload").children(".sfsiplus_icns_tab_3").html(msg);
274
+ SFSI("input[name='sfsi_plus_rss_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_rss_section", "show") : sfsi_plus_section_Display("sfsiplus_rss_section", "hide"), SFSI("input[name='sfsi_plus_email_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_email_section", "show") : sfsi_plus_section_Display("sfsiplus_email_section", "hide"), SFSI("input[name='sfsi_plus_facebook_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_facebook_section", "show") : sfsi_plus_section_Display("sfsiplus_facebook_section", "hide"), SFSI("input[name='sfsi_plus_twitter_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_twitter_section", "show") : sfsi_plus_section_Display("sfsiplus_twitter_section", "hide"), SFSI("input[name='sfsi_plus_youtube_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_youtube_section", "show") : sfsi_plus_section_Display("sfsiplus_youtube_section", "hide"), SFSI("input[name='sfsi_plus_pinterest_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_pinterest_section", "show") : sfsi_plus_section_Display("sfsiplus_pinterest_section", "hide"), SFSI("input[name='sfsi_plus_instagram_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_instagram_section", "show") : sfsi_plus_section_Display("sfsiplus_instagram_section", "hide"), SFSI("input[name='sfsi_plus_houzz_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_houzz_section", "show") : sfsi_plus_section_Display("sfsiplus_houzz_section", "hide"), SFSI("input[name='sfsi_plus_linkedin_display']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_linkedin_section", "show") : sfsi_plus_section_Display("sfsiplus_linkedin_section", "hide"), SFSI("input[element-type='sfsiplus-cusotm-icon']").prop("checked") ? sfsi_plus_section_Display("sfsiplus_custom_section", "show") : sfsi_plus_section_Display("sfsiplus_custom_section", "hide");
275
+ SFSI(".cstmskins-overlay").hide("slow");
276
+ sfsi_plus_update_step3() && sfsipluscollapse(this);
277
+ }
278
+ });
279
+ }
280
+ // Upload Custom Icons {Monad}
281
+ function plus_sfsi_newcustomicon_upload(s, nonce, nonce2) {
282
+ var i = s,
283
+ e = {
284
+ action: "plus_UploadIcons",
285
+ custom_imgurl: i,
286
+ nonce: nonce
287
+ };
288
+ SFSI.ajax({
289
+ url: sfsi_plus_ajax_object.ajax_url,
290
+ type: "post",
291
+ data: e,
292
+ dataType: "json",
293
+ async: !0,
294
+ success: function (s) {
295
+ if (s.res == 'success') {
296
+ sfsiplus_afterIconSuccess(s, nonce2);
297
+ } else {
298
+ SFSI(".upload-overlay").hide("slow");
299
+ SFSI(".uperror").html(s.res);
300
+ sfsiplus_showErrorSuc("Error", "Some Error Occured During Upload Custom Icon", 1)
301
+ }
302
+ }
303
+ });
304
+ }
305
+
306
+ function sfsi_plus_update_step1() {
307
+ var nonce = SFSI("#sfsi_plus_save1").attr("data-nonce");
308
+ global_error = 0, sfsiplus_beForeLoad(), sfsi_plus_depened_sections();
309
+ var s = !1,
310
+ i = SFSI("input[name='sfsi_plus_rss_display']:checked").val(),
311
+ e = SFSI("input[name='sfsi_plus_email_display']:checked").val(),
312
+ t = SFSI("input[name='sfsi_plus_facebook_display']:checked").val(),
313
+ n = SFSI("input[name='sfsi_plus_twitter_display']:checked").val(),
314
+ r = SFSI("input[name='sfsi_plus_youtube_display']:checked").val(),
315
+ c = SFSI("input[name='sfsi_plus_pinterest_display']:checked").val(),
316
+ p = SFSI("input[name='sfsi_plus_linkedin_display']:checked").val(),
317
+ _ = SFSI("input[name='sfsi_plus_instagram_display']:checked").val(),
318
+ telegram = SFSI("input[name='sfsi_plus_telegram_display']:checked").val(),
319
+ vk = SFSI("input[name='sfsi_plus_vk_display']:checked").val(),
320
+ ok = SFSI("input[name='sfsi_plus_ok_display']:checked").val(),
321
+ weibo = SFSI("input[name='sfsi_plus_weibo_display']:checked").val(),
322
+ wechat = SFSI("input[name='sfsi_plus_wechat_display']:checked").val(),
323
+ houzz = SFSI("input[name='sfsi_plus_houzz_display']:checked").val(),
324
+ l = SFSI("input[name='sfsi_custom1_display']:checked").val(),
325
+ S = SFSI("input[name='sfsi_custom2_display']:checked").val(),
326
+ u = SFSI("input[name='sfsi_custom3_display']:checked").val(),
327
+ f = SFSI("input[name='sfsi_custom4_display']:checked").val(),
328
+ d = SFSI("input[name='plussfsiICON_5']:checked").val(),
329
+ I = {
330
+ action: "plus_updateSrcn1",
331
+ sfsi_plus_rss_display: i,
332
+ sfsi_plus_email_display: e,
333
+ sfsi_plus_facebook_display: t,
334
+ sfsi_plus_twitter_display: n,
335
+ sfsi_plus_youtube_display: r,
336
+ sfsi_plus_pinterest_display: c,
337
+ sfsi_plus_linkedin_display: p,
338
+ sfsi_plus_instagram_display: _,
339
+ sfsi_plus_telegram_display: telegram,
340
+ sfsi_plus_vk_display: vk,
341
+ sfsi_plus_ok_display: ok,
342
+ sfsi_plus_weibo_display: weibo,
343
+ sfsi_plus_wechat_display: wechat,
344
+ sfsi_plus_houzz_display: houzz,
345
+ sfsi_custom1_display: l,
346
+ sfsi_custom2_display: S,
347
+ sfsi_custom3_display: u,
348
+ sfsi_custom4_display: f,
349
+
350
+ sfsi_custom5_display: d,
351
+ nonce: nonce
352
+ };
353
+ SFSI.ajax({
354
+ url: sfsi_plus_ajax_object.ajax_url,
355
+ type: "post",
356
+ data: I,
357
+ async: !0,
358
+ dataType: "json",
359
+ success: function (i) {
360
+ if (i == "wrong_nonce") {
361
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 1);
362
+ s = !1;
363
+ sfsiplus_afterLoad();
364
+ } else {
365
+ "success" == i ? (sfsiplus_showErrorSuc("success", "Saved !", 1), sfsipluscollapse("#sfsi_plus_save1"),
366
+ sfsi_plus_make_popBox()) : (global_error = 1, sfsiplus_showErrorSuc("error", "Unkown error , please try again", 1),
367
+ s = !1), sfsiplus_afterLoad();
368
+ }
369
+ }
370
+ });
371
+ }
372
+
373
+ function sfsi_plus_update_step2() {
374
+ var nonce = SFSI("#sfsi_plus_save2").attr("data-nonce");
375
+ var s = sfsi_plus_validationStep2();
376
+ if (!s) return global_error = 1, !1;
377
+ sfsiplus_beForeLoad();
378
+ var i = 1 == SFSI("input[name='sfsi_plus_rss_url']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_rss_url']").val(),
379
+ e = 1 == SFSI("input[name='sfsi_plus_rss_icons']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_rss_icons']:checked").val(),
380
+ t = 1 == SFSI("input[name='sfsi_plus_facebookPage_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebookPage_option']:checked").val(),
381
+ n = 1 == SFSI("input[name='sfsi_plus_facebookLike_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebookLike_option']:checked").val(),
382
+ o = 1 == SFSI("input[name='sfsi_plus_facebookShare_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebookShare_option']:checked").val(),
383
+ a = SFSI("input[name='sfsi_plus_facebookPage_url']").val(),
384
+ r = 1 == SFSI("input[name='sfsi_plus_twitter_followme']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_followme']:checked").val(),
385
+ c = 1 == SFSI("input[name='sfsi_plus_twitter_followUserName']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_followUserName']").val(),
386
+ p = 1 == SFSI("input[name='sfsi_plus_twitter_aboutPage']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_aboutPage']:checked").val(),
387
+ _ = 1 == SFSI("input[name='sfsi_plus_twitter_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_page']:checked").val(),
388
+ l = SFSI("input[name='sfsi_plus_twitter_pageURL']").val(),
389
+ S = SFSI("textarea[name='sfsi_plus_twitter_aboutPageText']").val(),
390
+ m = 1 == SFSI("input[name='sfsi_plus_youtube_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_page']:checked").val(),
391
+ F = 1 == SFSI("input[name='sfsi_plus_youtube_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_pageUrl']").val(),
392
+ h = 1 == SFSI("input[name='sfsi_plus_youtube_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_follow']:checked").val(),
393
+ cls = SFSI("input[name='sfsi_plus_youtubeusernameorid']:checked").val(),
394
+ v = SFSI("input[name='sfsi_plus_ytube_user']").val(),
395
+ vchid = SFSI("input[name='sfsi_plus_ytube_chnlid']").val(),
396
+ g = 1 == SFSI("input[name='sfsi_plus_pinterest_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_page']:checked").val(),
397
+ k = 1 == SFSI("input[name='sfsi_plus_pinterest_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_pageUrl']").val(),
398
+ y = 1 == SFSI("input[name='sfsi_plus_pinterest_pingBlog']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_pingBlog']:checked").val(),
399
+ b = 1 == SFSI("input[name='sfsi_plus_instagram_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_instagram_pageUrl']").val(),
400
+ houzz = 1 == SFSI("input[name='sfsi_plus_houzz_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_houzz_pageUrl']").val(),
401
+ w = 1 == SFSI("input[name='sfsi_plus_linkedin_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedin_page']:checked").val(),
402
+ x = 1 == SFSI("input[name='sfsi_plus_linkedin_pageURL']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedin_pageURL']").val(),
403
+ C = 1 == SFSI("input[name='sfsi_plus_linkedin_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedin_follow']:checked").val(),
404
+ D = SFSI("input[name='sfsi_plus_linkedin_followCompany']").val(),
405
+ U = 1 == SFSI("input[name='sfsi_plus_linkedin_SharePage']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedin_SharePage']:checked").val(),
406
+ O = SFSI("input[name='sfsi_plus_linkedin_recommendBusines']:checked").val(),
407
+ T = SFSI("input[name='sfsi_plus_linkedin_recommendProductId']").val(),
408
+ j = SFSI("input[name='sfsi_plus_linkedin_recommendCompany']").val(),
409
+ tgShareChk = SFSI("input[name='sfsi_plus_telegramShare_option']:checked").val(),
410
+ tgShareChk = "undefined" !== typeof tgShareChk ? tgShareChk : "no",
411
+ tgMsgChk = SFSI("input[name='sfsi_plus_telegramMessage_option']:checked").val(),
412
+ tgMsgChk = "undefined" !== typeof tgMsgChk ? tgMsgChk : "no",
413
+ tgMessageTxt = SFSI("input[name='sfsi_plus_telegram_message']").val(),
414
+ tgMsgUserName = SFSI("input[name='sfsi_plus_telegram_username']").val(),
415
+ P = {};
416
+ vkVisitChk = SFSI("input[name='sfsi_plus_vkVisit_option']:checked").val(),
417
+ vkVisitChk = "undefined" !== typeof vkVisitChk ? vkVisitChk : "no",
418
+ vkShareChk = SFSI("input[name='sfsi_plus_vkShare_option']:checked").val(),
419
+ vkShareChk = "undefined" !== typeof vkShareChk ? vkShareChk : "no",
420
+ vkLikeChk = SFSI("input[name='sfsi_plus_vkLike_option']:checked").val(),
421
+ vkLikeChk = "undefined" !== typeof vkLikeChk ? vkLikeChk : "no",
422
+
423
+ vkFollowChk = SFSI("input[name='sfsi_plus_vkFollow_option']:checked").val(),
424
+ vkFollowChk = "undefined" !== typeof vkFollowChk ? vkFollowChk : "no",
425
+
426
+ vkVisitUrl = "no" == vkVisitChk ? "" : SFSI("input[name='sfsi_plus_vkVisit_url']").val(),
427
+ vkFollowUrl = "no" == vkFollowChk ? "" : SFSI("input[name='sfsi_plus_vkFollow_url']").val(),
428
+
429
+ okVisitChk = SFSI("input[name='sfsi_plus_okVisit_option']:checked").val(),
430
+ okVisitChk = "undefined" !== typeof okVisitChk ? okVisitChk : "no",
431
+ okVisitUrl = "no" == okVisitChk ? "" : SFSI("input[name='sfsi_plus_okVisit_url']").val(),
432
+ okSubscribeChk = SFSI("input[name='sfsi_plus_okSubscribe_option']:checked").val(),
433
+ okSubscribeChk = "undefined" !== typeof okSubscribeChk ? okSubscribeChk : "no",
434
+ okSubscribeUrl = "no" == okSubscribeChk ? "" : SFSI("input[name='sfsi_plus_okSubscribe_userid']").val(),
435
+ okShareChk = SFSI("input[name='sfsi_plus_okLike_option']:checked").val(),
436
+ okShareChk = "undefined" !== typeof okShareChk ? okShareChk : "no",
437
+
438
+ weiboVisitChk = SFSI("input[name='sfsi_plus_weiboVisit_option']:checked").val(),
439
+ weiboVisitChk = "undefined" !== typeof weiboVisitChk ? weiboVisitChk : "no",
440
+ weiboShareChk = SFSI("input[name='sfsi_plus_weiboShare_option']:checked").val(),
441
+ weiboShareChk = "undefined" !== typeof weiboShareChk ? weiboShareChk : "no",
442
+ weiboLikeChk = SFSI("input[name='sfsi_plus_weiboLike_option']:checked").val(),
443
+ weiboLikeChk = "undefined" !== typeof weiboLikeChk ? weiboLikeChk : "no",
444
+ weiboVisitUrl = "no" == weiboVisitChk ? "" : SFSI("input[name='sfsi_plus_weiboVisit_url']").val(),
445
+
446
+
447
+ wechatFollowChk = SFSI("input[name='sfsi_plus_wechatFollow_option']:checked").val(),
448
+ wechatFollowChk = "undefined" !== typeof wechatFollowChk ? wechatFollowChk : "no",
449
+ wechatShareChk = SFSI("input[name='sfsi_plus_wechatShare_option']:checked").val(),
450
+ wechatShareChk = "undefined" !== typeof wechatShareChk ? wechatShareChk : "no",
451
+ wechatScanImage = SFSI("input[name='sfsi_plus_wechat_scan_image']").val(),
452
+
453
+ SFSI("input[name='sfsi_plus_CustomIcon_links[]']").each(function () {
454
+ P[SFSI(this).attr("file-id")] = this.value;
455
+ });
456
+ var M = {
457
+ action: "plus_updateSrcn2",
458
+ sfsi_plus_rss_url: i,
459
+ sfsi_plus_rss_icons: e,
460
+ sfsi_plus_facebookPage_option: t,
461
+ sfsi_plus_facebookLike_option: n,
462
+ sfsi_plus_facebookShare_option: o,
463
+ sfsi_plus_facebookPage_url: a,
464
+ sfsi_plus_twitter_followme: r,
465
+ sfsi_plus_twitter_followUserName: c,
466
+ sfsi_plus_twitter_aboutPage: p,
467
+ sfsi_plus_twitter_page: _,
468
+ sfsi_plus_twitter_pageURL: l,
469
+ sfsi_plus_twitter_aboutPageText: S,
470
+ sfsi_plus_youtube_page: m,
471
+ sfsi_plus_youtube_pageUrl: F,
472
+ sfsi_plus_youtube_follow: h,
473
+ sfsi_plus_youtubeusernameorid: cls,
474
+ sfsi_plus_ytube_user: v,
475
+ sfsi_plus_ytube_chnlid: vchid,
476
+ sfsi_plus_pinterest_page: g,
477
+ sfsi_plus_pinterest_pageUrl: k,
478
+ sfsi_plus_instagram_pageUrl: b,
479
+ sfsi_plus_houzz_pageUrl: houzz,
480
+ sfsi_plus_pinterest_pingBlog: y,
481
+ sfsi_plus_linkedin_page: w,
482
+ sfsi_plus_linkedin_pageURL: x,
483
+ sfsi_plus_linkedin_follow: C,
484
+ sfsi_plus_linkedin_followCompany: D,
485
+ sfsi_plus_linkedin_SharePage: U,
486
+ sfsi_plus_linkedin_recommendBusines: O,
487
+ sfsi_plus_linkedin_recommendCompany: j,
488
+ sfsi_plus_linkedin_recommendProductId: T,
489
+ sfsi_plus_telegramShare_option: tgShareChk,
490
+ sfsi_plus_telegramMessage_option: tgMsgChk,
491
+ sfsi_plus_telegram_message: tgMessageTxt,
492
+ sfsi_plus_telegram_username: tgMsgUserName,
493
+ sfsi_plus_vkVisit_option: vkVisitChk,
494
+ sfsi_plus_vkShare_option: vkShareChk,
495
+ sfsi_plus_vkLike_option: vkLikeChk,
496
+ sfsi_plus_vkFollow_option: vkFollowChk,
497
+ sfsi_plus_vkFollow_url: vkFollowUrl,
498
+ sfsi_plus_vkVisit_url: vkVisitUrl,
499
+ sfsi_plus_okVisit_option: okVisitChk,
500
+ sfsi_plus_okVisit_url: okVisitUrl,
501
+ sfsi_plus_okSubscribe_option: okSubscribeChk,
502
+ sfsi_plus_okSubscribe_userid: okSubscribeUrl,
503
+ sfsi_plus_okLike_option: okShareChk,
504
+
505
+ sfsi_plus_weiboVisit_option: weiboVisitChk,
506
+ sfsi_plus_weiboShare_option: weiboShareChk,
507
+ sfsi_plus_weiboLike_option: weiboLikeChk,
508
+ sfsi_plus_weiboVisit_url: weiboVisitUrl,
509
+
510
+ sfsi_plus_wechatFollow_option: wechatFollowChk,
511
+ sfsi_plus_wechat_scan_image: wechatScanImage,
512
+ sfsi_plus_wechatShare_option: wechatShareChk,
513
+ sfsi_plus_custom_links: P,
514
+ nonce: nonce
515
+ };
516
+ SFSI.ajax({
517
+ url: sfsi_plus_ajax_object.ajax_url,
518
+ type: "post",
519
+ data: M,
520
+ async: !0,
521
+ dataType: "json",
522
+ success: function (s) {
523
+ if (s == "wrong_nonce") {
524
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 2);
525
+ return_value = !1;
526
+ sfsiplus_afterLoad();
527
+ } else {
528
+ "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 2), sfsipluscollapse("#sfsi_plus_save2"),
529
+ sfsi_plus_depened_sections()) : (global_error = 1, sfsiplus_showErrorSuc("error", "Unkown error , please try again", 2),
530
+ return_value = !1), sfsiplus_afterLoad();
531
+ }
532
+ }
533
+ });
534
+ }
535
+
536
+ function sfsi_plus_update_step3() {
537
+ var nonce = SFSI("#sfsi_plus_save3").attr("data-nonce");
538
+ var s = sfsi_plus_validationStep3();
539
+
540
+ if (!s) return global_error = 1, !1;
541
+ sfsiplus_beForeLoad();
542
+
543
+ var i = SFSI("input[name='sfsi_plus_actvite_theme']:checked").val(),
544
+ e = SFSI("input[name='sfsi_plus_mouseOver']:checked").val(),
545
+ t = SFSI("input[name='sfsi_plus_shuffle_icons']:checked").val(),
546
+ n = SFSI("input[name='sfsi_plus_shuffle_Firstload']:checked").val(),
547
+ a = SFSI("input[name='sfsi_plus_shuffle_interval']:checked").val(),
548
+ r = SFSI("input[name='sfsi_plus_shuffle_intervalTime']").val(),
549
+ c = SFSI("input[name='sfsi_plus_specialIcon_animation']:checked").val(),
550
+ p = SFSI("input[name='sfsi_plus_specialIcon_MouseOver']:checked").val(),
551
+ _ = SFSI("input[name='sfsi_plus_specialIcon_Firstload']:checked").val(),
552
+ l = SFSI("#sfsi_plus_specialIcon_Firstload_Icons option:selected").val(),
553
+ S = SFSI("input[name='sfsi_plus_specialIcon_interval']:checked").val(),
554
+ u = SFSI("input[name='sfsi_plus_specialIcon_intervalTime']").val(),
555
+ f = SFSI("#sfsi_plus_specialIcon_intervalIcons option:selected").val(),
556
+ o = SFSI("input[name='sfsi_plus_same_icons_mouseOver_effect']:checked").val();
557
+
558
+ var mouseover_effect_type = 'same_icons'; //SFSI("input[name='sfsi_plus_mouseOver_effect_type']:checked").val();
559
+
560
+ var d = {
561
+ action: "plus_updateSrcn3",
562
+ sfsi_plus_actvite_theme: i,
563
+ sfsi_plus_mouseOver: e,
564
+ sfsi_plus_shuffle_icons: t,
565
+ sfsi_plus_shuffle_Firstload: n,
566
+ sfsi_plus_mouseOver_effect: o,
567
+ sfsi_plus_mouseover_effect_type: mouseover_effect_type,
568
+ sfsi_plus_shuffle_interval: a,
569
+ sfsi_plus_shuffle_intervalTime: r,
570
+ sfsi_plus_specialIcon_animation: c,
571
+ sfsi_plus_specialIcon_MouseOver: p,
572
+ sfsi_plus_specialIcon_Firstload: _,
573
+ sfsi_plus_specialIcon_Firstload_Icons: l,
574
+ sfsi_plus_specialIcon_interval: S,
575
+ sfsi_plus_specialIcon_intervalTime: u,
576
+ sfsi_plus_specialIcon_intervalIcons: f,
577
+ nonce: nonce
578
+ };
579
+ SFSI.ajax({
580
+ url: sfsi_plus_ajax_object.ajax_url,
581
+ type: "post",
582
+ data: d,
583
+ async: !0,
584
+ dataType: "json",
585
+ success: function (s) {
586
+ if (s == "wrong_nonce") {
587
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 3);
588
+ return_value = !1;
589
+ sfsiplus_afterLoad();
590
+ } else {
591
+ "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 3), sfsipluscollapse("#sfsi_plus_save3")) : (sfsiplus_showErrorSuc("error", "Unkown error , please try again", 3),
592
+ return_value = !1), sfsiplus_afterLoad();
593
+ }
594
+ }
595
+ });
596
+ }
597
+
598
+ function sfsi_plus_show_counts() {
599
+ "yes" == SFSI("input[name='sfsi_plus_display_counts']:checked").val() ? (SFSI(".sfsiplus_count_sections").slideDown(),
600
+ sfsi_plus_showPreviewCounts()) : (SFSI(".sfsiplus_count_sections").slideUp(), sfsi_plus_showPreviewCounts());
601
+ }
602
+
603
+ function sfsi_plus_showPreviewCounts() {
604
+ var s = 0;
605
+ 1 == SFSI("input[name='sfsi_plus_rss_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_rss_countsDisplay").css("opacity", 1),
606
+ s = 1) : SFSI("#sfsi_plus_rss_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_email_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_email_countsDisplay").css("opacity", 1),
607
+ s = 1) : SFSI("#sfsi_plus_email_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_facebook_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_facebook_countsDisplay").css("opacity", 1),
608
+ s = 1) : SFSI("#sfsi_plus_facebook_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_twitter_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_twitter_countsDisplay").css("opacity", 1),
609
+ s = 1) : SFSI("#sfsi_plus_twitter_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_linkedIn_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_linkedIn_countsDisplay").css("opacity", 1),
610
+ s = 1) : SFSI("#sfsi_plus_linkedIn_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_youtube_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_youtube_countsDisplay").css("opacity", 1),
611
+ s = 1) : SFSI("#sfsi_plus_youtube_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_pinterest_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_pinterest_countsDisplay").css("opacity", 1),
612
+ s = 1) : SFSI("#sfsi_plus_pinterest_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_instagram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_instagram_countsDisplay").css("opacity", 1),
613
+ s = 1) : SFSI("#sfsi_plus_instagram_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_plus_houzz_countsDisplay']").prop("checked") ? (SFSI("#sfsi_plus_houzz_countsDisplay").css("opacity", 1),
614
+ s = 1) : SFSI("#sfsi_plus_houzz_countsDisplay").css("opacity", 0), 0 == s || "no" == SFSI("input[name='sfsi_plus_display_counts']:checked").val() ? SFSI(".sfsi_Cdisplay").hide() : SFSI(".sfsi_Cdisplay").show();
615
+ }
616
+
617
+ function sfsi_plus_show_OnpostsDisplay() {
618
+ //"yes" == SFSI("input[name='sfsi_plus_show_Onposts']:checked").val() ? SFSI(".sfsiplus_PostsSettings_section").slideDown() :SFSI(".sfsiplus_PostsSettings_section").slideUp();
619
+ }
620
+
621
+ function sfsi_plus_update_step4() {
622
+ var nonce = SFSI("#sfsi_plus_save4").attr("data-nonce");
623
+ var s = !1,
624
+ i = sfsi_plus_validationStep4();
625
+ if (!i) return global_error = 1, !1;
626
+ sfsiplus_beForeLoad();
627
+ var e = SFSI("input[name='sfsi_plus_display_counts']:checked").val(),
628
+ t = 1 == SFSI("input[name='sfsi_plus_email_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_email_countsDisplay']:checked").val(),
629
+ n = 1 == SFSI("input[name='sfsi_plus_email_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_email_countsFrom']:checked").val(),
630
+ o = SFSI("input[name='sfsi_plus_email_manualCounts']").val(),
631
+ r = 1 == SFSI("input[name='sfsi_plus_rss_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_rss_countsDisplay']:checked").val(),
632
+ c = SFSI("input[name='sfsi_plus_rss_manualCounts']").val(),
633
+ p = 1 == SFSI("input[name='sfsi_plus_facebook_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebook_countsDisplay']:checked").val(),
634
+ _ = 1 == SFSI("input[name='sfsi_plus_facebook_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val(),
635
+ mp = SFSI("input[name='sfsi_plus_facebook_mypageCounts']").val(),
636
+ l = SFSI("input[name='sfsi_plus_facebook_manualCounts']").val(),
637
+ S = 1 == SFSI("input[name='sfsi_plus_twitter_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_countsDisplay']:checked").val(),
638
+ u = 1 == SFSI("input[name='sfsi_plus_twitter_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_countsFrom']:checked").val(),
639
+ f = SFSI("input[name='sfsi_plus_twitter_manualCounts']").val(),
640
+ d = SFSI("input[name='sfsiplus_tw_consumer_key']").val(),
641
+ I = SFSI("input[name='sfsiplus_tw_consumer_secret']").val(),
642
+ m = SFSI("input[name='sfsiplus_tw_oauth_access_token']").val(),
643
+ F = SFSI("input[name='sfsiplus_tw_oauth_access_token_secret']").val(),
644
+ k = 1 == SFSI("input[name='sfsi_plus_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedIn_countsFrom']:checked").val(),
645
+ y = SFSI("input[name='sfsi_plus_linkedIn_manualCounts']").val(),
646
+ b = SFSI("input[name='sfsi_plus_ln_company']").val(),
647
+ w = SFSI("input[name='sfsi_plus_ln_api_key']").val(),
648
+ x = SFSI("input[name='sfsi_plus_ln_secret_key']").val(),
649
+ C = SFSI("input[name='sfsi_plus_ln_oAuth_user_token']").val(),
650
+ D = 1 == SFSI("input[name='sfsi_plus_linkedIn_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedIn_countsDisplay']:checked").val(),
651
+ k = 1 == SFSI("input[name='sfsi_plus_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedIn_countsFrom']:checked").val(),
652
+ y = SFSI("input[name='sfsi_plus_linkedIn_manualCounts']").val(),
653
+ U = 1 == SFSI("input[name='sfsi_plus_youtube_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_countsDisplay']:checked").val(),
654
+ O = 1 == SFSI("input[name='sfsi_plus_youtube_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_countsFrom']:checked").val(),
655
+ T = SFSI("input[name='sfsi_plus_youtube_manualCounts']").val(),
656
+ j = SFSI("input[name='sfsi_plus_youtube_user']").val(),
657
+ P = 1 == SFSI("input[name='sfsi_plus_pinterest_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_countsDisplay']:checked").val(),
658
+ M = 1 == SFSI("input[name='sfsi_plus_pinterest_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_countsFrom']:checked").val(),
659
+ L = SFSI("input[name='sfsi_plus_pinterest_manualCounts']").val(),
660
+ B = SFSI("input[name='sfsi_plus_pinterest_user']").val(),
661
+ E = SFSI("input[name='sfsi_plus_pinterest_board']").val(),
662
+ z = 1 == SFSI("input[name='sfsi_plus_instagram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_instagram_countsDisplay']:checked").val(),
663
+ A = 1 == SFSI("input[name='sfsi_plus_instagram_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_instagram_countsFrom']:checked").val(),
664
+ N = SFSI("input[name='sfsi_plus_instagram_manualCounts']").val(),
665
+ H = SFSI("input[name='sfsi_plus_instagram_User']").val(),
666
+ houzzDisplay = 1 == SFSI("input[name='sfsi_plus_houzz_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_houzz_countsDisplay']:checked").val(),
667
+ houzzFrom = 1 == SFSI("input[name='sfsi_plus_houzz_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_houzz_countsFrom']:checked").val(),
668
+ houzzCount = SFSI("input[name='sfsi_plus_houzz_manualCounts']").val(),
669
+ vkc = SFSI("input[name='sfsi_plus_vk_countsDisplay']:checked").val() || 'no',
670
+ vkm = SFSI("input[name='sfsi_plus_vk_manualCounts']").val(),
671
+ tc = SFSI("input[name='sfsi_plus_telegram_countsDisplay']:checked").val() || 'no',
672
+ tm = SFSI("input[name='sfsi_plus_telegram_manualCounts']").val(),
673
+ wcc = SFSI("input[name='sfsi_plus_wechat_countsDisplay']:checked").val() || 'no',
674
+ wcm = SFSI("input[name='sfsi_plus_wechat_manualCounts']").val(),
675
+ okc = SFSI("input[name='sfsi_plus_ok_countsDisplay']:checked").val() || 'no',
676
+ okm = SFSI("input[name='sfsi_plus_ok_manualCounts']").val(),
677
+ wbc = SFSI("input[name='sfsi_plus_weibo_countsDisplay']:checked").val() || 'no',
678
+ wbm = SFSI("input[name='sfsi_plus_weibo_manualCounts']").val(),
679
+ $ = {
680
+ action: "plus_updateSrcn4",
681
+ sfsi_plus_display_counts: e,
682
+ sfsi_plus_email_countsDisplay: t,
683
+ sfsi_plus_email_countsFrom: n,
684
+ sfsi_plus_email_manualCounts: o,
685
+ sfsi_plus_rss_countsDisplay: r,
686
+ sfsi_plus_rss_manualCounts: c,
687
+ sfsi_plus_facebook_countsDisplay: p,
688
+ sfsi_plus_facebook_countsFrom: _,
689
+ sfsi_plus_facebook_mypageCounts: mp,
690
+ sfsi_plus_facebook_manualCounts: l,
691
+ sfsi_plus_twitter_countsDisplay: S,
692
+ sfsi_plus_twitter_countsFrom: u,
693
+ sfsi_plus_twitter_manualCounts: f,
694
+ sfsiplus_tw_consumer_key: d,
695
+ sfsiplus_tw_consumer_secret: I,
696
+ sfsiplus_tw_oauth_access_token: m,
697
+ sfsiplus_tw_oauth_access_token_secret: F,
698
+ sfsi_plus_linkedIn_countsDisplay: D,
699
+ sfsi_plus_linkedIn_countsFrom: k,
700
+ sfsi_plus_linkedIn_manualCounts: y,
701
+ sfsi_plus_ln_company: b,
702
+ sfsi_plus_ln_api_key: w,
703
+ sfsi_plus_ln_secret_key: x,
704
+ sfsi_plus_ln_oAuth_user_token: C,
705
+ sfsi_plus_youtube_countsDisplay: U,
706
+ sfsi_plus_youtube_countsFrom: O,
707
+ sfsi_plus_youtube_manualCounts: T,
708
+ sfsi_plus_youtube_user: j,
709
+ sfsi_plus_youtube_channelId: SFSI("input[name='sfsi_plus_youtube_channelId']").val(),
710
+ sfsi_plus_pinterest_countsDisplay: P,
711
+ sfsi_plus_pinterest_countsFrom: M,
712
+ sfsi_plus_pinterest_manualCounts: L,
713
+ sfsi_plus_pinterest_user: B,
714
+ sfsi_plus_pinterest_board: E,
715
+ sfsi_plus_instagram_countsDisplay: z,
716
+ sfsi_plus_instagram_countsFrom: A,
717
+ sfsi_plus_instagram_manualCounts: N,
718
+ sfsi_plus_instagram_User: H,
719
+ sfsi_plus_instagram_clientid: SFSI("input[name='sfsi_plus_instagram_clientid']").val(),
720
+ sfsi_plus_instagram_appurl: SFSI("input[name='sfsi_plus_instagram_appurl']").val(),
721
+ sfsi_plus_instagram_token: SFSI("input[name='sfsi_plus_instagram_token']").val(),
722
+ sfsi_plus_houzz_countsDisplay: houzzDisplay,
723
+ sfsi_plus_houzz_countsFrom: houzzFrom,
724
+ sfsi_plus_houzz_manualCounts: houzzCount,
725
+ sfsi_plus_telegram_countsDisplay: tc,
726
+ sfsi_plus_telegram_manualCounts: tm,
727
+
728
+ sfsi_plus_ok_countsDisplay: okc,
729
+ sfsi_plus_ok_manualCounts: okm,
730
+
731
+ sfsi_plus_vk_countsDisplay: vkc,
732
+ sfsi_plus_vk_manualCounts: vkm,
733
+
734
+ sfsi_plus_weibo_countsDisplay: wbc,
735
+ sfsi_plus_weibo_manualCounts: wbm,
736
+
737
+ sfsi_plus_wechat_countsDisplay: wcc,
738
+ sfsi_plus_wechat_manualCounts: wcm,
739
+ nonce: nonce
740
+ };
741
+ return SFSI.ajax({
742
+ url: sfsi_plus_ajax_object.ajax_url,
743
+ type: "post",
744
+ data: $,
745
+ dataType: "json",
746
+ async: !0,
747
+ success: function (s) {
748
+ if (s == "wrong_nonce") {
749
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 4);
750
+ global_error = 1;
751
+ sfsiplus_afterLoad();
752
+ } else {
753
+ "success" == s.res ? (sfsiplus_showErrorSuc("success", "Saved !", 4), sfsipluscollapse("#sfsi_plus_save4"),
754
+ sfsi_plus_showPreviewCounts()) : (sfsiplus_showErrorSuc("error", "Unkown error , please try again", 4),
755
+ global_error = 1), sfsiplus_afterLoad();
756
+ }
757
+ }
758
+ }), s;
759
+ }
760
+
761
+ function sfsi_plus_update_step5() {
762
+ var nonce = SFSI("#sfsi_plus_save5").attr("data-nonce");
763
+ sfsi_plus_update_step3();
764
+ var s = sfsi_plus_validationStep5();
765
+ if (!s) return global_error = 1, !1;
766
+ sfsiplus_beForeLoad();
767
+ var i = SFSI("input[name='sfsi_plus_icons_size']").val(),
768
+ e = SFSI("input[name='sfsi_plus_icons_perRow']").val(),
769
+ t = SFSI("input[name='sfsi_plus_icons_spacing']").val(),
770
+ n = SFSI("#sfsi_plus_icons_Alignment").val(),
771
+ followicon = SFSI("#sfsi_plus_follow_icons_language").val(),
772
+ facebookicon = SFSI("#sfsi_plus_facebook_icons_language").val(),
773
+ twittericon = SFSI("#sfsi_plus_twitter_icons_language").val(),
774
+
775
+ lang = SFSI("#sfsi_plus_icons_language").val(),
776
+ o = SFSI("input[name='sfsi_plus_icons_ClickPageOpen']:checked").val(),
777
+ a = SFSI("input[name='sfsi_plus_icons_float']:checked").val(),
778
+ dsb = SFSI("input[name='sfsi_plus_disable_floaticons']:checked").val(),
779
+ dsbv = SFSI("input[name='sfsi_plus_disable_viewport']:checked").val(),
780
+ r = SFSI("#sfsi_plus_icons_floatPosition").val(),
781
+ c = SFSI("input[name='sfsi_plus_icons_stick']:checked").val(),
782
+ p = SFSI("#sfsi_plus_rssIcon_order").attr("data-index"),
783
+ _ = SFSI("#sfsi_plus_emailIcon_order").attr("data-index"),
784
+ S = SFSI("#sfsi_plus_facebookIcon_order").attr("data-index"),
785
+ u = SFSI("#sfsi_plus_twitterIcon_order").attr("data-index"),
786
+ f = SFSI("#sfsi_plus_youtubeIcon_order").attr("data-index"),
787
+ d = SFSI("#sfsi_plus_pinterestIcon_order").attr("data-index"),
788
+ I = SFSI("#sfsi_plus_instagramIcon_order").attr("data-index"),
789
+ tl = SFSI("#sfsi_plus_telegramIcon_order").attr("data-index"),
790
+ vki = SFSI("#sfsi_plus_vkIcon_order").attr("data-index"),
791
+ ok = SFSI("#sfsi_plus_okIcon_order").attr("data-index"),
792
+ weibo = SFSI("#sfsi_plus_weiboIcon_order").attr("data-index"),
793
+ wechat = SFSI("#sfsi_plus_wechatIcon_order").attr("data-index"),
794
+ F = SFSI("#sfsi_plus_linkedinIcon_order").attr("data-index"),
795
+ houzzOrder = SFSI("#sfsi_plus_houzzIcon_order").attr("data-index"),
796
+ h = new Array();
797
+
798
+ SFSI(".sfsiplus_custom_iconOrder").each(function () {
799
+ h.push({
800
+ order: SFSI(this).attr("data-index"),
801
+ ele: SFSI(this).attr("element-id")
802
+ });
803
+ });
804
+ var v = 1 == SFSI("input[name='sfsi_plus_rss_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_rss_MouseOverText']").val(),
805
+ g = 1 == SFSI("input[name='sfsi_plus_email_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_email_MouseOverText']").val(),
806
+ k = 1 == SFSI("input[name='sfsi_plus_twitter_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_twitter_MouseOverText']").val(),
807
+ y = 1 == SFSI("input[name='sfsi_plus_facebook_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_facebook_MouseOverText']").val(),
808
+ w = 1 == SFSI("input[name='sfsi_plus_linkedIn_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_linkedIn_MouseOverText']").val(),
809
+ x = 1 == SFSI("input[name='sfsi_plus_youtube_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_youtube_MouseOverText']").val(),
810
+ C = 1 == SFSI("input[name='sfsi_plus_pinterest_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_pinterest_MouseOverText']").val(),
811
+ insD = 1 == SFSI("input[name='sfsi_plus_instagram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_instagram_MouseOverText']").val(),
812
+ tl = 1 == SFSI("input[name='sfsi_plus_telegram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_telegram_MouseOverText']").val(),
813
+ vk = 1 == SFSI("input[name='sfsi_plus_vk_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_vk_MouseOverText']").val(),
814
+ D = 1 == SFSI("input[name='sfsi_plus_houzz_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_plus_houzz_MouseOverText']").val(),
815
+ O = {};
816
+ SFSI("input[name='sfsi_plus_custom_MouseOverTexts[]']").each(function () {
817
+ O[SFSI(this).attr("file-id")] = this.value;
818
+ });
819
+
820
+ var sfsi_plus_custom_social_hide = SFSI("input[name='sfsi_plus_custom_social_hide']").val();
821
+ var se = SFSI("input[name='sfsi_pplus_icons_suppress_errors']:checked").val();
822
+
823
+ var T = {
824
+ action: "plus_updateSrcn5",
825
+ sfsi_plus_icons_size: i,
826
+ sfsi_plus_icons_Alignment: n,
827
+ sfsi_plus_icons_perRow: e,
828
+ sfsi_plus_follow_icons_language: followicon,
829
+ sfsi_plus_facebook_icons_language: facebookicon,
830
+ sfsi_plus_twitter_icons_language: twittericon,
831
+ sfsi_plus_icons_language: lang,
832
+ sfsi_plus_icons_spacing: t,
833
+ sfsi_plus_icons_ClickPageOpen: o,
834
+ sfsi_plus_icons_float: a,
835
+ sfsi_plus_disable_floaticons: dsb,
836
+ sfsi_plus_disable_viewport: dsbv,
837
+ sfsi_plus_icons_floatPosition: r,
838
+ sfsi_plus_icons_stick: c,
839
+ sfsi_plus_rss_MouseOverText: v,
840
+ sfsi_plus_email_MouseOverText: g,
841
+ sfsi_plus_twitter_MouseOverText: k,
842
+ sfsi_plus_facebook_MouseOverText: y,
843
+ sfsi_plus_youtube_MouseOverText: x,
844
+ sfsi_plus_linkedIn_MouseOverText: w,
845
+ sfsi_plus_pinterest_MouseOverText: C,
846
+ sfsi_plus_instagram_MouseOverText: insD,
847
+ sfsi_plus_telegram_MouseOverText: tl,
848
+ sfsi_plus_vk_MouseOverText: vki,
849
+ sfsi_plus_houzz_MouseOverText: D,
850
+ sfsi_plus_custom_MouseOverTexts: O,
851
+ sfsi_plus_rssIcon_order: p,
852
+ sfsi_plus_emailIcon_order: _,
853
+ sfsi_plus_facebookIcon_order: S,
854
+ sfsi_plus_twitterIcon_order: u,
855
+ sfsi_plus_youtubeIcon_order: f,
856
+ sfsi_plus_pinterestIcon_order: d,
857
+ sfsi_plus_instagramIcon_order: I,
858
+ sfsi_plus_telegramIcon_order: tl,
859
+ sfsi_plus_vkIcon_order: vki,
860
+ sfsi_plus_okIcon_order: ok,
861
+ sfsi_plus_weiboIcon_order: weibo,
862
+ sfsi_plus_wechatIcon_order: wechat,
863
+ sfsi_plus_houzzIcon_order: houzzOrder,
864
+ sfsi_plus_linkedinIcon_order: F,
865
+ sfsi_plus_custom_orders: h,
866
+ sfsi_plus_custom_social_hide: sfsi_plus_custom_social_hide,
867
+ sfsi_pplus_icons_suppress_errors: se,
868
+ nonce: nonce
869
+ };
870
+ SFSI.ajax({
871
+ url: sfsi_plus_ajax_object.ajax_url,
872
+ type: "post",
873
+ data: T,
874
+ dataType: "json",
875
+ async: !0,
876
+ success: function (s) {
877
+ if (s == "wrong_nonce") {
878
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 5);
879
+ global_error = 1;
880
+ sfsiplus_afterLoad();
881
+ } else {
882
+ "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 5), sfsipluscollapse("#sfsi_plus_save5")) : (global_error = 1,
883
+ sfsiplus_showErrorSuc("error", "Unkown error , please try again", 5)), sfsiplus_afterLoad();
884
+ }
885
+ }
886
+ });
887
+ }
888
+
889
+ function sfsi_plus_update_step6() {
890
+ var nonce = SFSI("#sfsi_plus_save6").attr("data-nonce");
891
+ sfsiplus_beForeLoad();
892
+ var s = SFSI("input[name='sfsi_plus_show_Onposts']:checked").val(),
893
+ i = SFSI("input[name='sfsi_plus_textBefor_icons']").val(),
894
+ e = SFSI("#sfsi_plus_icons_alignment").val(),
895
+ t = SFSI("#sfsi_plus_icons_DisplayCounts").val(),
896
+ n = {
897
+ action: "plus_updateSrcn6",
898
+ sfsi_plus_show_Onposts: s,
899
+ sfsi_plus_icons_DisplayCounts: t,
900
+ sfsi_plus_icons_alignment: e,
901
+ sfsi_plus_textBefor_icons: i,
902
+ nonce: nonce
903
+ };
904
+ SFSI.ajax({
905
+ url: sfsi_plus_ajax_object.ajax_url,
906
+ type: "post",
907
+ data: n,
908
+ dataType: "json",
909
+ async: !0,
910
+ success: function (s) {
911
+ if (s == "wrong_nonce") {
912
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
913
+ global_error = 1;
914
+ sfsiplus_afterLoad();
915
+ } else {
916
+ "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 6), sfsipluscollapse("#sfsi_plus_save6")) : (global_error = 1,
917
+ sfsiplus_showErrorSuc("error", "Unkown error , please try again", 6)), sfsiplus_afterLoad();
918
+ }
919
+ }
920
+ });
921
+ }
922
+
923
+ function sfsi_plus_save_export() {
924
+ var nonce = SFSI("#sfsi_plus_save_export").attr("data-nonce");
925
+ var data = {
926
+ action: "save_export",
927
+ nonce: nonce
928
+ };
929
+ SFSI.ajax({
930
+ url: sfsi_plus_ajax_object.ajax_url,
931
+ type: "post",
932
+ data: data,
933
+ success: function (s) {
934
+ if (s == "wrong_nonce") {
935
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
936
+ global_error = 1;
937
+ } else {
938
+ var date = new Date();
939
+ var timestamp = date.getTime();
940
+ var blob = new Blob([JSON.stringify(s, null, 2)], {
941
+ type: 'application/json'
942
+ });
943
+ var url = URL.createObjectURL(blob);
944
+ let link = document.createElement("a");
945
+ link.href = url;
946
+ link.download = "sfsi_plus_export_options"+timestamp+".json"
947
+ link.innerText = "Open the array URL";
948
+ document.body.appendChild(link);
949
+ link.click();
950
+ (sfsiplus_showErrorSuc("Settings Exported !", "Settings Exported !", 10))
951
+ }
952
+ }
953
+ });
954
+ }
955
+
956
+ function sfsi_plus_update_step7() {
957
+ var nonce = SFSI("#sfsi_plus_save7").attr("data-nonce");
958
+ var s = sfsi_plus_validationStep7();
959
+ if (!s) return global_error = 1, !1;
960
+ sfsiplus_beForeLoad();
961
+ var i = SFSI("input[name='sfsi_plus_popup_text']").val(),
962
+ e = SFSI("#sfsi_plus_popup_font option:selected").val(),
963
+ t = (SFSI("#sfsi_plus_popup_fontStyle option:selected").val(),
964
+ SFSI("input[name='sfsi_plus_popup_fontColor']").val()),
965
+ n = SFSI("input[name='sfsi_plus_popup_fontSize']").val(),
966
+ o = SFSI("input[name='sfsi_plus_popup_background_color']").val(),
967
+ a = SFSI("input[name='sfsi_plus_popup_border_color']").val(),
968
+ r = SFSI("input[name='sfsi_plus_popup_border_thickness']").val(),
969
+ c = SFSI("input[name='sfsi_plus_popup_border_shadow']:checked").val(),
970
+ p = SFSI("input[name='sfsi_plus_Show_popupOn']:checked").val(),
971
+ _ = [];
972
+ SFSI("#sfsi_plus_Show_popupOn_PageIDs :selected").each(function (s, i) {
973
+ _[s] = SFSI(i).val();
974
+ });
975
+ var l = SFSI("input[name='sfsi_plus_Shown_pop']:checked").val(),
976
+ S = SFSI("input[name='sfsi_plus_Shown_popupOnceTime']").val(),
977
+ u = SFSI("#sfsi_plus_Shown_popuplimitPerUserTime").val(),
978
+ f = {
979
+ action: "plus_updateSrcn7",
980
+ sfsi_plus_popup_text: i,
981
+ sfsi_plus_popup_font: e,
982
+ sfsi_plus_popup_fontColor: t,
983
+ sfsi_plus_popup_fontSize: n,
984
+ sfsi_plus_popup_background_color: o,
985
+ sfsi_plus_popup_border_color: a,
986
+ sfsi_plus_popup_border_thickness: r,
987
+ sfsi_plus_popup_border_shadow: c,
988
+ sfsi_plus_Show_popupOn: p,
989
+ sfsi_plus_Show_popupOn_PageIDs: _,
990
+ sfsi_plus_Shown_pop: l,
991
+ sfsi_plus_Shown_popupOnceTime: S,
992
+ sfsi_plus_Shown_popuplimitPerUserTime: u,
993
+ nonce: nonce
994
+ };
995
+ SFSI.ajax({
996
+ url: sfsi_plus_ajax_object.ajax_url,
997
+ type: "post",
998
+ data: f,
999
+ dataType: "json",
1000
+ async: !0,
1001
+ success: function (s) {
1002
+ if (s == "wrong_nonce") {
1003
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
1004
+ sfsiplus_afterLoad();
1005
+ } else {
1006
+ "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 7), sfsipluscollapse("#sfsi_plus_save7")) : sfsiplus_showErrorSuc("error", "Unkown error , please try again", 7),
1007
+ sfsiplus_afterLoad();
1008
+ }
1009
+ }
1010
+ });
1011
+ }
1012
+
1013
+ function sfsi_plus_update_step8() {
1014
+ var nonce = SFSI("#sfsi_plus_save8").attr("data-nonce");
1015
+ var s = sfsi_plus_validationStep7();
1016
+ s = true;
1017
+ if (!s) return global_error = 1, !1;
1018
+ sfsiplus_beForeLoad();
1019
+ var i = SFSI("input[name='sfsi_plus_show_via_widget']:checked").val(),
1020
+ e = SFSI("input[name='sfsi_plus_float_on_page']:checked").val(),
1021
+ t = SFSI("input[name='sfsi_plus_float_page_position']:checked").val(),
1022
+ n = SFSI("input[name='sfsi_plus_place_item_manually']:checked").val(),
1023
+ o = SFSI("input[name='sfsi_plus_show_item_onposts']:checked").val(),
1024
+ a = SFSI("input[name='sfsi_plus_display_button_type']:checked").val(),
1025
+ r = SFSI("input[name='sfsi_plus_post_icons_size']").val(),
1026
+ c = SFSI("input[name='sfsi_plus_post_icons_spacing']").val(),
1027
+ p = SFSI("input[name='sfsi_plus_show_Onposts']:checked").val(),
1028
+ v = SFSI("input[name='sfsi_plus_textBefor_icons']").val(),
1029
+ x = SFSI("#sfsi_plus_icons_alignment").val(),
1030
+ z = SFSI("#sfsi_plus_icons_DisplayCounts").val(),
1031
+ b = SFSI("input[name='sfsi_plus_display_before_posts']:checked").val(),
1032
+ d = SFSI("input[name='sfsi_plus_display_after_posts']:checked").val(),
1033
+ /*f = SFSI("input[name='sfsi_plus_display_on_postspage']:checked").val(),
1034
+ g = SFSI("input[name='sfsi_plus_display_on_homepage']:checked").val(),*/
1035
+ f = SFSI("input[name='sfsi_plus_display_before_blogposts']:checked").val(),
1036
+ g = SFSI("input[name='sfsi_plus_display_after_blogposts']:checked").val(),
1037
+ rsub = SFSI("input[name='sfsi_plus_rectsub']:checked").val(),
1038
+ rfb = SFSI("input[name='sfsi_plus_rectfb']:checked").val(),
1039
+ rtwr = SFSI("input[name='sfsi_plus_recttwtr']:checked").val(),
1040
+ rpin = SFSI("input[name='sfsi_plus_rectpinit']:checked").val(),
1041
+ rfbshare = SFSI("input[name='sfsi_plus_rectfbshare']:checked").val(),
1042
+ _ = [];
1043
+ var sfsi_plus_responsive_icons_end_post = SFSI('input[name="sfsi_plus_responsive_icons_end_post"]:checked').val() || 'no'
1044
+
1045
+ var responsive_icons = {
1046
+ "default_icons": {},
1047
+ "settings": {}
1048
+ };
1049
+ SFSI('.sfsi_plus_responsive_default_icon_container input[type="checkbox"]').each(function (index, obj) {
1050
+ var data_obj = {};
1051
+ data_obj.active = ('checked' == SFSI(obj).attr('checked')) ? 'yes' : 'no';
1052
+ var iconname = SFSI(obj).attr('data-icon');
1053
+ var next_section = SFSI(obj).parent().parent();
1054
+ data_obj.text = next_section.find('input[name="sfsi_plus_responsive_' + iconname + '_input"]').val();
1055
+ data_obj.url = next_section.find('input[name="sfsi_plus_responsive_' + iconname + '_url_input"]').val();
1056
+ responsive_icons.default_icons[iconname] = data_obj;
1057
+ });
1058
+ SFSI('.sfsi_plus_responsive_custom_icon_container input[type="checkbox"]').each(function (index, obj) {
1059
+ if (SFSI(obj).attr('id') != "sfsi_plus_responsive_custom_new_display") {
1060
+ var data_obj = {};
1061
+ data_obj.active = 'checked' == SFSI(obj).attr('checked') ? 'yes' : 'no';
1062
+ var icon_index = SFSI(obj).attr('data-custom-index');
1063
+ var next_section = SFSI(obj).parent().parent();
1064
+ data_obj['added'] = SFSI('input[name="sfsi_plus_responsive_custom_' + index + '_added"]').val();
1065
+ data_obj.icon = next_section.find('img').attr('src');
1066
+ data_obj["bg-color"] = next_section.find('.sfsi_plus_bg-color-picker').val();
1067
+
1068
+ data_obj.text = next_section.find('input[name="sfsi_plus_responsive_custom_' + icon_index + '_input"]').val();
1069
+ data_obj.url = next_section.find('input[name="sfsi_plus_responsive_custom_' + icon_index + '_url_input"]').val();
1070
+ responsive_icons.custom_icons[index] = data_obj;
1071
+ }
1072
+ });
1073
+ responsive_icons.settings.icon_size = SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_size"]').val();
1074
+ responsive_icons.settings.icon_width_type = SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val();
1075
+ responsive_icons.settings.icon_width_size = SFSI('input[name="sfsi_plus_responsive_icons_sttings_icon_width_size"]').val();
1076
+ responsive_icons.settings.edge_type = SFSI('select[name="sfsi_plus_responsive_icons_settings_edge_type"]').val();
1077
+ responsive_icons.settings.edge_radius = SFSI('select[name="sfsi_plus_responsive_icons_settings_edge_radius"]').val();
1078
+ responsive_icons.settings.style = SFSI('select[name="sfsi_plus_responsive_icons_settings_style"]').val();
1079
+ responsive_icons.settings.margin = SFSI('input[name="sfsi_plus_responsive_icons_settings_margin"]').val();
1080
+ responsive_icons.settings.text_align = SFSI('select[name="sfsi_plus_responsive_icons_settings_text_align"]').val();
1081
+ responsive_icons.settings.show_count = SFSI('input[name="sfsi_plus_responsive_icon_show_count"]:checked').val();
1082
+ responsive_icons.settings.counter_color = SFSI('input[name="sfsi_plus_responsive_counter_color"]').val();
1083
+ responsive_icons.settings.counter_bg_color = SFSI('input[name="sfsi_plus_responsive_counter_bg_color"]').val();
1084
+ responsive_icons.settings.share_count_text = SFSI('input[name="sfsi_plus_responsive_counter_share_count_text"]').val();
1085
+
1086
+ /*SFSI("#sfsi_plus_Show_popupOn_PageIDs :selected").each(function(s, i) {
1087
+ _[s] = SFSI(i).val()
1088
+ });*/
1089
+ var mst = SFSI("input[name='sfsi_plus_icons_floatMargin_top']").val(),
1090
+ msb = SFSI("input[name='sfsi_plus_icons_floatMargin_bottom']").val(),
1091
+ msl = SFSI("input[name='sfsi_plus_icons_floatMargin_left']").val(),
1092
+ msr = SFSI("input[name='sfsi_plus_icons_floatMargin_right']").val();
1093
+
1094
+ var f = {
1095
+ action: "plus_updateSrcn8",
1096
+ sfsi_plus_show_via_widget: i,
1097
+ sfsi_plus_float_on_page: e,
1098
+ sfsi_plus_float_page_position: t,
1099
+ sfsi_plus_icons_floatMargin_top: mst,
1100
+ sfsi_plus_icons_floatMargin_bottom: msb,
1101
+ sfsi_plus_icons_floatMargin_left: msl,
1102
+ sfsi_plus_icons_floatMargin_right: msr,
1103
+ sfsi_plus_place_item_manually: n,
1104
+ sfsi_plus_place_item_gutenberg: SFSI("input[name='sfsi_plus_place_item_gutenberg']:checked").val(),
1105
+ sfsi_plus_show_item_onposts: o,
1106
+ sfsi_plus_display_button_type: a,
1107
+ sfsi_plus_post_icons_size: r,
1108
+ sfsi_plus_post_icons_spacing: c,
1109
+ sfsi_plus_show_Onposts: p,
1110
+ sfsi_plus_textBefor_icons: v,
1111
+ sfsi_plus_icons_alignment: x,
1112
+ sfsi_plus_icons_DisplayCounts: z,
1113
+ sfsi_plus_display_before_posts: b,
1114
+ sfsi_plus_display_after_posts: d,
1115
+ /*sfsi_plus_display_on_postspage: f,
1116
+ sfsi_plus_display_on_homepage: g*/
1117
+ sfsi_plus_display_before_blogposts: f,
1118
+ sfsi_plus_display_after_blogposts: g,
1119
+ sfsi_plus_rectsub: rsub,
1120
+ sfsi_plus_rectfb: rfb,
1121
+ sfsi_plus_recttwtr: rtwr,
1122
+ sfsi_plus_rectpinit: rpin,
1123
+ sfsi_plus_rectfbshare: rfbshare,
1124
+ sfsi_plus_responsive_icons: responsive_icons,
1125
+ sfsi_plus_responsive_icons_end_post: sfsi_plus_responsive_icons_end_post,
1126
+
1127
+ nonce: nonce
1128
+ };
1129
+ SFSI.ajax({
1130
+ url: sfsi_plus_ajax_object.ajax_url,
1131
+ type: "post",
1132
+ data: f,
1133
+ dataType: "json",
1134
+ async: !0,
1135
+ success: function (s) {
1136
+ if (s == "wrong_nonce") {
1137
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 8);
1138
+ sfsiplus_afterLoad();
1139
+ } else {
1140
+ "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 8), sfsipluscollapse("#sfsi_plus_save8")) : sfsiplus_showErrorSuc("error", "Unkown error , please try again", 8), sfsiplus_afterLoad()
1141
+ }
1142
+ }
1143
+ })
1144
+ }
1145
+
1146
+ function sfsi_plus_update_step9() {
1147
+ var nonce = SFSI("#sfsi_plus_save9").attr("data-nonce");
1148
+ sfsiplus_beForeLoad();
1149
+ var ie = SFSI("input[name='sfsi_plus_form_adjustment']:checked").val(),
1150
+ je = SFSI("input[name='sfsi_plus_form_height']").val(),
1151
+ ke = SFSI("input[name='sfsi_plus_form_width']").val(),
1152
+ le = SFSI("input[name='sfsi_plus_form_border']:checked").val(),
1153
+ me = SFSI("input[name='sfsi_plus_form_border_thickness']").val(),
1154
+ ne = SFSI("input[name='sfsi_plus_form_border_color']").val(),
1155
+ oe = SFSI("input[name='sfsi_plus_form_background']").val(),
1156
+
1157
+ ae = SFSI("input[name='sfsi_plus_form_heading_text']").val(),
1158
+ be = SFSI("#sfsi_plus_form_heading_font option:selected").val(),
1159
+ ce = SFSI("#sfsi_plus_form_heading_fontstyle option:selected").val(),
1160
+ de = SFSI("input[name='sfsi_plus_form_heading_fontcolor']").val(),
1161
+ ee = SFSI("input[name='sfsi_plus_form_heading_fontsize']").val(),
1162
+ fe = SFSI("#sfsi_plus_form_heading_fontalign option:selected").val(),
1163
+
1164
+ ue = SFSI("input[name='sfsi_plus_form_field_text']").val(),
1165
+ ve = SFSI("#sfsi_plus_form_field_font option:selected").val(),
1166
+ we = SFSI("#sfsi_plus_form_field_fontstyle option:selected").val(),
1167
+ xe = SFSI("input[name='sfsi_plus_form_field_fontcolor']").val(),
1168
+ ye = SFSI("input[name='sfsi_plus_form_field_fontsize']").val(),
1169
+ ze = SFSI("#sfsi_plus_form_field_fontalign option:selected").val(),
1170
+
1171
+ i = SFSI("input[name='sfsi_plus_form_button_text']").val(),
1172
+ j = SFSI("#sfsi_plus_form_button_font option:selected").val(),
1173
+ k = SFSI("#sfsi_plus_form_button_fontstyle option:selected").val(),
1174
+ l = SFSI("input[name='sfsi_plus_form_button_fontcolor']").val(),
1175
+ m = SFSI("input[name='sfsi_plus_form_button_fontsize']").val(),
1176
+ n = SFSI("#sfsi_plus_form_button_fontalign option:selected").val(),
1177
+ o = SFSI("input[name='sfsi_plus_form_button_background']").val();
1178
+
1179
+ var f = {
1180
+ action: "plus_updateSrcn9",
1181
+ sfsi_plus_form_adjustment: ie,
1182
+ sfsi_plus_form_height: je,
1183
+ sfsi_plus_form_width: ke,
1184
+ sfsi_plus_form_border: le,
1185
+ sfsi_plus_form_border_thickness: me,
1186
+ sfsi_plus_form_border_color: ne,
1187
+ sfsi_plus_form_background: oe,
1188
+
1189
+ sfsi_plus_form_heading_text: ae,
1190
+ sfsi_plus_form_heading_font: be,
1191
+ sfsi_plus_form_heading_fontstyle: ce,
1192
+ sfsi_plus_form_heading_fontcolor: de,
1193
+ sfsi_plus_form_heading_fontsize: ee,
1194
+ sfsi_plus_form_heading_fontalign: fe,
1195
+
1196
+ sfsi_plus_form_field_text: ue,
1197
+ sfsi_plus_form_field_font: ve,
1198
+ sfsi_plus_form_field_fontstyle: we,
1199
+ sfsi_plus_form_field_fontcolor: xe,
1200
+ sfsi_plus_form_field_fontsize: ye,
1201
+ sfsi_plus_form_field_fontalign: ze,
1202
+
1203
+ sfsi_plus_form_button_text: i,
1204
+ sfsi_plus_form_button_font: j,
1205
+ sfsi_plus_form_button_fontstyle: k,
1206
+ sfsi_plus_form_button_fontcolor: l,
1207
+ sfsi_plus_form_button_fontsize: m,
1208
+ sfsi_plus_form_button_fontalign: n,
1209
+ sfsi_plus_form_button_background: o,
1210
+
1211
+ nonce: nonce
1212
+ };
1213
+ SFSI.ajax({
1214
+ url: sfsi_plus_ajax_object.ajax_url,
1215
+ type: "post",
1216
+ data: f,
1217
+ dataType: "json",
1218
+ async: !0,
1219
+ success: function (s) {
1220
+ if (s == "wrong_nonce") {
1221
+ sfsiplus_showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 9);
1222
+ sfsiplus_afterLoad();
1223
+ } else {
1224
+ "success" == s ? (sfsiplus_showErrorSuc("success", "Saved !", 9), sfsipluscollapse("#sfsi_plus_save9"), sfsi_plus_create_suscriber_form()) : sfsiplus_showErrorSuc("error", "Unkown error , please try again", 9),
1225
+ sfsiplus_afterLoad();
1226
+ }
1227
+ }
1228
+ });
1229
+ }
1230
+
1231
+ function sfsiplus_afterIconSuccess(s, nonce) {
1232
+ if (s.res = "success") {
1233
+ var i = s.key + 1,
1234
+ e = s.element,
1235
+ t = e + 1;
1236
+ SFSI("#plus_total_cusotm_icons").val(s.element);
1237
+ SFSI(".upload-overlay").hide("slow");
1238
+ SFSI(".uperror").html("");
1239
+ sfsiplus_showErrorSuc("success", "Custom Icon updated successfully", 1);
1240
+ d = new Date();
1241
+
1242
+ SFSI("li.plus_custom:last-child").removeClass("bdr_btm_non");
1243
+ SFSI("li.plus_custom:last-child").children("span.plus_custom-img").children("img").attr("src", s.img_path + "?" + d.getTime());
1244
+ SFSI("input[name=plussfsiICON_" + s.key + "]").removeAttr("ele-type");
1245
+ SFSI("input[name=plussfsiICON_" + s.key + "]").removeAttr("isnew");
1246
+ icons_name = SFSI("li.plus_custom:last-child").find("input.styled").attr("name");
1247
+ var n = icons_name.split("_");
1248
+ s.key = s.key, s.img_path += "?" + d.getTime(), 5 > e && SFSI(".plus_icn_listing").append('<li id="plus_c' + i + '" class="plus_custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style="background-position: 0px 0px;"></span><input name="plussfsiICON_' + i + '" type="checkbox" value="yes" class="styled" style="display:none;" element-type="sfsiplus-cusotm-icon" isNew="yes" /></div> <span class="plus_custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="plus_CImg_' + i + '" /> </span> <span class="custom sfsiplus_custom-txt">Custom' + t + ' </span> <div class="sfsiplus_right_info"> <p><span>' + object_name1.It_depends + ':</span> ' + object_name1.Upload_a + '</p><div class="inputWrapper"></div></li>'),
1249
+ SFSI(".sfsiplus_custom_section").show(), SFSI(".plus_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 sfsiplus_custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_plus_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>');
1250
+ var o = SFSI("div.plus_custom_m").find("div.mouseover_field").length;
1251
+ SFSI("div.plus_custom_m").append(0 == o % 2 ? '<div class="clear"> </div> <div class="mouseover_field sfsiplus_custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_plus_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>' : '<div class="cHover " ><div class="mouseover_field sfsiplus_custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_plus_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>'),
1252
+ SFSI("ul.plus_share_icon_order").append('<li class="sfsiplus_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>'),
1253
+ SFSI("ul.plus_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>'),
1254
+
1255
+ SFSI('.banner_custom_icon').show();
1256
+ SFSI("#plus_c" + s.key).append('<input type="hidden" name="nonce" value="' + nonce + '">');
1257
+ sfsi_plus_update_index(), plus_update_Sec5Iconorder(), sfsi_plus_update_step1(), sfsi_plus_update_step2(),
1258
+ sfsi_plus_update_step5(), SFSI(".upload-overlay").css("pointer-events", "auto"), sfsi_plus_showPreviewCounts(),
1259
+ sfsiplus_afterLoad();
1260
+ }
1261
+ }
1262
+
1263
+ function sfsiplus_beforeIconSubmit(s) {
1264
+ if (SFSI(".uperror").html("Uploading....."), window.File && window.FileReader && window.FileList && window.Blob) {
1265
+ SFSI(s).val() || SFSI(".uperror").html("File is empty");
1266
+ var i = s.files[0].size,
1267
+ e = s.files[0].type;
1268
+ switch (e) {
1269
+ case "image/png":
1270
+ case "image/gif":
1271
+ case "image/jpeg":
1272
+ case "image/pjpeg":
1273
+ break;
1274
+
1275
+ default:
1276
+ return SFSI(".uperror").html("Unsupported file"), !1;
1277
+ }
1278
+ return i > 1048576 ? (SFSI(".uperror").html("Image should be less than 1 MB"), !1) : !0;
1279
+ }
1280
+ return !0;
1281
+ }
1282
+
1283
+ function sfsiplus_bytesToSize(s) {
1284
+ var i = ["Bytes", "KB", "MB", "GB", "TB"];
1285
+ if (0 == s) return "0 Bytes";
1286
+ var e = parseInt(Math.floor(Math.log(s) / Math.log(1024)));
1287
+ return Math.round(s / Math.pow(1024, e), 2) + " " + i[e];
1288
+ }
1289
+
1290
+ function sfsiplus_showErrorSuc(s, i, e) {
1291
+ if ("error" == s) var t = "errorMsg";
1292
+ else var t = "sucMsg";
1293
+ return SFSI(".tab" + e + ">." + t).html(i), SFSI(".tab" + e + ">." + t).show(),
1294
+ SFSI(".tab" + e + ">." + t).effect("highlight", {}, 5e3), setTimeout(function () {
1295
+ SFSI("." + t).slideUp("slow");
1296
+ }, 5e3), !1;
1297
+ }
1298
+
1299
+ function sfsiplus_beForeLoad() {
1300
+ SFSI(".loader-img").show(), SFSI(".save_button >a").html("Saving..."), SFSI(".save_button >a").css("pointer-events", "none");
1301
+ }
1302
+
1303
+ function sfsiplus_afterLoad() {
1304
+ SFSI("input").removeClass("inputError"), SFSI(".save_button >a").html(object_name.Sa_ve),
1305
+ SFSI(".tab10>div.save_button >a").html(object_name1.Save_All_Settings),
1306
+ SFSI(".save_button >a").css("pointer-events", "auto"), SFSI(".save_button >a").removeAttr("onclick"),
1307
+ SFSI(".loader-img").hide();
1308
+ }
1309
+
1310
+ function sfsi_plus_make_popBox() {
1311
+ var s = 0;
1312
+ SFSI(".plus_sfsi_sample_icons >li").each(function () {
1313
+ "none" != SFSI(this).css("display") && (s = 1);
1314
+ }), 0 == s ? SFSI(".sfsi_plus_Popinner").hide() : SFSI(".sfsi_plus_Popinner").show(), "" != SFSI('input[name="sfsi_plus_popup_text"]').val() ? (SFSI(".sfsi_plus_Popinner >h2").html(SFSI('input[name="sfsi_plus_popup_text"]').val()),
1315
+ SFSI(".sfsi_plus_Popinner >h2").show()) : SFSI(".sfsi_plus_Popinner >h2").hide(), SFSI(".sfsi_plus_Popinner").css({
1316
+ "border-color": SFSI('input[name="sfsi_plus_popup_border_color"]').val(),
1317
+ "border-width": SFSI('input[name="sfsi_plus_popup_border_thickness"]').val(),
1318
+ "border-style": "solid"
1319
+ }), SFSI(".sfsi_plus_Popinner").css("background-color", SFSI('input[name="sfsi_plus_popup_background_color"]').val()),
1320
+ SFSI(".sfsi_plus_Popinner h2").css("font-family", SFSI("#sfsi_plus_popup_font").val()), SFSI(".sfsi_plus_Popinner h2").css("font-style", SFSI("#sfsi_plus_popup_fontStyle").val()),
1321
+ SFSI(".sfsi_plus_Popinner >h2").css("font-size", parseInt(SFSI('input[name="sfsi_plus_popup_fontSize"]').val())),
1322
+ SFSI(".sfsi_plus_Popinner >h2").css("color", SFSI('input[name="sfsi_plus_popup_fontColor"]').val() + " !important"),
1323
+ "yes" == SFSI('input[name="sfsi_plus_popup_border_shadow"]:checked').val() ? SFSI(".sfsi_plus_Popinner").css("box-shadow", "12px 30px 18px #CCCCCC") : SFSI(".sfsi_plus_Popinner").css("box-shadow", "none");
1324
+ }
1325
+
1326
+ function sfsi_plus_stick_widget(s) {
1327
+ 0 == sfsiplus_initTop.length && (SFSI(".sfsi_plus_widget").each(function (s) {
1328
+ sfsiplus_initTop[s] = SFSI(this).position().top;
1329
+ })
1330
+ );
1331
+ var i = SFSI(window).scrollTop(),
1332
+ e = [],
1333
+ t = [];
1334
+ SFSI(".sfsi_plus_widget").each(function (s) {
1335
+ e[s] = SFSI(this).position().top, t[s] = SFSI(this);
1336
+ });
1337
+ var n = !1;
1338
+ for (var o in e) {
1339
+ var a = parseInt(o) + 1;
1340
+ e[o] < i && e[a] > i && a < e.length ? (SFSI(t[o]).css({
1341
+ position: "fixed",
1342
+ top: s
1343
+ }), SFSI(t[a]).css({
1344
+ position: "",
1345
+ top: sfsiplus_initTop[a]
1346
+ }), n = !0) : SFSI(t[o]).css({
1347
+ position: "",
1348
+ top: sfsiplus_initTop[o]
1349
+ });
1350
+ }
1351
+ if (!n) {
1352
+ var r = e.length - 1,
1353
+ c = -1;
1354
+ e.length > 1 && (c = e.length - 2), sfsiplus_initTop[r] < i ? (SFSI(t[r]).css({
1355
+ position: "fixed",
1356
+ top: s
1357
+ }), c >= 0 && SFSI(t[c]).css({
1358
+ position: "",
1359
+ top: sfsiplus_initTop[c]
1360
+ })) : (SFSI(t[r]).css({
1361
+ position: "",
1362
+ top: sfsiplus_initTop[r]
1363
+ }), c >= 0 && e[c] < i);
1364
+ }
1365
+ }
1366
+
1367
+ function sfsi_plus_setCookie(s, i, e) {
1368
+ var t = new Date();
1369
+ t.setTime(t.getTime() + 1e3 * 60 * 60 * 24 * e);
1370
+ var n = "expires=" + t.toGMTString();
1371
+ document.cookie = s + "=" + i + "; " + n;
1372
+ }
1373
+
1374
+ function sfsfi_plus_getCookie(s) {
1375
+ for (var i = s + "=", e = document.cookie.split(";"), t = 0; t < e.length; t++) {
1376
+ var n = e[t].trim();
1377
+ if (0 == n.indexOf(i)) return n.substring(i.length, n.length);
1378
+ }
1379
+ return "";
1380
+ }
1381
+
1382
+ function sfsi_plus_hideFooter() {}
1383
+
1384
+ window.onerror = function () {}, SFSI = jQuery.noConflict(), SFSI(window).on('load', function () {
1385
+ SFSI("#sfpluspageLoad").fadeOut(2e3);
1386
+ });
1387
+
1388
+ //changes done {Monad}
1389
+ function sfsi_plus_selectText(containerid) {
1390
+ if (document.selection) {
1391
+ var range = document.body.createTextRange();
1392
+ range.moveToElementText(document.getElementById(containerid));
1393
+ range.select();
1394
+ } else if (window.getSelection()) {
1395
+ var range = document.createRange();
1396
+ range.selectNode(document.getElementById(containerid));
1397
+ window.getSelection().removeAllRanges();
1398
+ window.getSelection().addRange(range);
1399
+ }
1400
+ }
1401
+
1402
+ function sfsi_plus_create_suscriber_form() {
1403
+ //Popbox customization
1404
+ "no" == SFSI('input[name="sfsi_plus_form_adjustment"]:checked').val() ? SFSI(".sfsi_plus_subscribe_Popinner").css({
1405
+ "width": parseInt(SFSI('input[name="sfsi_plus_form_width"]').val()),
1406
+ "height": parseInt(SFSI('input[name="sfsi_plus_form_height"]').val())
1407
+ }) : SFSI(".sfsi_plus_subscribe_Popinner").css({
1408
+ "width": '',
1409
+ "height": ''
1410
+ });
1411
+
1412
+ "yes" == SFSI('input[name="sfsi_plus_form_adjustment"]:checked').val() ? SFSI(".sfsi_plus_html > .sfsi_plus_subscribe_Popinner").css({
1413
+ "width": "100%"
1414
+ }) : '';
1415
+
1416
+ "yes" == SFSI('input[name="sfsi_plus_form_border"]:checked').val() ? SFSI(".sfsi_plus_subscribe_Popinner").css({
1417
+ "border": SFSI('input[name="sfsi_plus_form_border_thickness"]').val() + "px solid " + SFSI('input[name="sfsi_plus_form_border_color"]').val()
1418
+ }) : SFSI(".sfsi_plus_subscribe_Popinner").css("border", "none");
1419
+
1420
+ SFSI('input[name="sfsi_plus_form_background"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").css("background-color", SFSI('input[name="sfsi_plus_form_background"]').val())) : '';
1421
+
1422
+ //Heading customization
1423
+ SFSI('input[name="sfsi_plus_form_heading_text"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").html(SFSI('input[name="sfsi_plus_form_heading_text"]').val())) : SFSI(".sfsi_plus_subscribe_Popinner > form > h5").html('');
1424
+
1425
+ SFSI('#sfsi_plus_form_heading_font').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-family", SFSI("#sfsi_plus_form_heading_font").val())) : '';
1426
+
1427
+ if (SFSI('#sfsi_plus_form_heading_fontstyle').val() != 'bold') {
1428
+ SFSI('#sfsi_plus_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-style", SFSI("#sfsi_plus_form_heading_fontstyle").val())) : '';
1429
+ SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-weight", '');
1430
+ } else {
1431
+ SFSI('#sfsi_plus_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-weight", "bold")) : '';
1432
+ SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("font-style", '');
1433
+ }
1434
+
1435
+ SFSI('input[name="sfsi_plus_form_heading_fontcolor"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("color", SFSI('input[name="sfsi_plus_form_heading_fontcolor"]').val())) : '';
1436
+
1437
+ SFSI('input[name="sfsi_plus_form_heading_fontsize"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css({
1438
+ "font-size": parseInt(SFSI('input[name="sfsi_plus_form_heading_fontsize"]').val())
1439
+ })) : '';
1440
+
1441
+ SFSI('#sfsi_plus_form_heading_fontalign').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner > form > h5").css("text-align", SFSI("#sfsi_plus_form_heading_fontalign").val())) : '';
1442
+
1443
+ //Field customization
1444
+ SFSI('input[name="sfsi_plus_form_field_text"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", SFSI('input[name="sfsi_plus_form_field_text"]').val())) : SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", '');
1445
+
1446
+ SFSI('input[name="sfsi_plus_form_field_text"]').val() != "" ? (SFSI(".sfsi_plus_left_container > .sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_plus_form_field_text"]').val())) : SFSI(".sfsi_plus_left_container > .sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1447
+
1448
+ SFSI('input[name="sfsi_plus_form_field_text"]').val() != "" ? (SFSI(".like_pop_box > .sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_plus_form_field_text"]').val())) : SFSI(".like_pop_box > .sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1449
+
1450
+ SFSI('#sfsi_plus_form_field_font').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-family", SFSI("#sfsi_plus_form_field_font").val())) : '';
1451
+
1452
+ if (SFSI('#sfsi_plus_form_field_fontstyle').val() != "bold") {
1453
+ SFSI('#sfsi_plus_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", SFSI("#sfsi_plus_form_field_fontstyle").val())) : '';
1454
+ SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", '');
1455
+ } else {
1456
+ SFSI('#sfsi_plus_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", 'bold')) : '';
1457
+ SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", '');
1458
+ }
1459
+
1460
+ SFSI('input[name="sfsi_plus_form_field_fontcolor"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("color", SFSI('input[name="sfsi_plus_form_field_fontcolor"]').val())) : '';
1461
+
1462
+ SFSI('input[name="sfsi_plus_form_field_fontsize"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css({
1463
+ "font-size": parseInt(SFSI('input[name="sfsi_plus_form_field_fontsize"]').val())
1464
+ })) : '';
1465
+
1466
+ SFSI('#sfsi_plus_form_field_fontalign').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("text-align", SFSI("#sfsi_plus_form_field_fontalign").val())) : '';
1467
+
1468
+ //Button customization
1469
+ SFSI('input[name="sfsi_plus_form_button_text"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').attr("value", SFSI('input[name="sfsi_plus_form_button_text"]').val())) : '';
1470
+
1471
+ SFSI('#sfsi_plus_form_button_font').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-family", SFSI("#sfsi_plus_form_button_font").val())) : '';
1472
+
1473
+ if (SFSI('#sfsi_plus_form_button_fontstyle').val() != "bold") {
1474
+ SFSI('#sfsi_plus_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", SFSI("#sfsi_plus_form_button_fontstyle").val())) : '';
1475
+ SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", '');
1476
+ } else {
1477
+ SFSI('#sfsi_plus_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", 'bold')) : '';
1478
+ SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", '');
1479
+ }
1480
+
1481
+ SFSI('input[name="sfsi_plus_form_button_fontcolor"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("color", SFSI('input[name="sfsi_plus_form_button_fontcolor"]').val())) : '';
1482
+
1483
+ SFSI('input[name="sfsi_plus_form_button_fontsize"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css({
1484
+ "font-size": parseInt(SFSI('input[name="sfsi_plus_form_button_fontsize"]').val())
1485
+ })) : '';
1486
+
1487
+ SFSI('#sfsi_plus_form_button_fontalign').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("text-align", SFSI("#sfsi_plus_form_button_fontalign").val())) : '';
1488
+
1489
+ SFSI('input[name="sfsi_plus_form_button_background"]').val() != "" ? (SFSI(".sfsi_plus_subscribe_Popinner").find('input[name="subscribe"]').css("background-color", SFSI('input[name="sfsi_plus_form_button_background"]').val())) : '';
1490
+
1491
+ var innerHTML = SFSI(".sfsi_plus_html > .sfsi_plus_subscribe_Popinner").html();
1492
+ var styleCss = SFSI(".sfsi_plus_html > .sfsi_plus_subscribe_Popinner").attr("style");
1493
+ innerHTML = '<div style="' + styleCss + '">' + innerHTML + '</div>';
1494
+ SFSI(".sfsi_plus_subscription_html > xmp").html(innerHTML);
1495
+
1496
+ /*var data = {
1497
+ action:"getForm",
1498
+ heading: SFSI('input[name="sfsi_plus_form_heading_text"]').val(),
1499
+ placeholder:SFSI('input[name="sfsi_plus_form_field_text"]').val(),
1500
+ button:SFSI('input[name="sfsi_plus_form_button_text"]').val()
1501
+ };
1502
+ SFSI.ajax({
1503
+ url:sfsi_plus_ajax_object.ajax_url,
1504
+ type:"post",
1505
+ data:data,
1506
+ success:function(s) {
1507
+ SFSI(".sfsi_plus_subscription_html").html(s);
1508
+ }
1509
+ });*/
1510
+ }
1511
+
1512
+ var global_error = 0;
1513
+ SFSI(document).ready(function (s) {
1514
+ //changes done {Monad}
1515
+ function sfsi_plus_open_admin_section(id){
1516
+ SFSI("#ui-id-"+(id+1)).show();
1517
+ SFSI("#ui-id-"+id).removeClass("ui-corner-all");
1518
+ SFSI("#ui-id-"+id).addClass("ui-corner-top");
1519
+ SFSI("#ui-id-"+id).addClass("accordion-header-active");
1520
+ SFSI("#ui-id-"+id).addClass("ui-state-active");
1521
+ SFSI("#ui-id-"+id).attr("aria-expanded","false");
1522
+ SFSI("#ui-id-"+id).attr("aria-selected","true");
1523
+ if(SFSI("#ui-id-"+(id+1)).length>0){
1524
+ SFSI("#ui-id-"+(id-2))[0].scrollIntoView();
1525
+ }
1526
+ }
1527
+ var sfsi_plus_show_option1 = SFSI('input[name="sfsi_plus_show_via_widget"]:checked').val()||'no';
1528
+ var sfsi_plus_show_option2 = SFSI('input[name="sfsi_plus_float_on_page"]:checked').val()||'no';
1529
+ var sfsi_plus_show_option3 = SFSI('input[name="sfsi_plus_place_item_manually"]:checked').val()||'no';
1530
+ var sfsi_plus_show_option4 = SFSI('input[name="sfsi_plus_show_item_onposts"]:checked').val()||'no';
1531
+ var sfsi_plus_show_option5 = SFSI('input[name="sfsi_plus_place_item_gutenberg"]:checked').val()||'no';
1532
+
1533
+ var sfsi_plus_analyst_popup = SFSI('#sfsi_plus_analyst_pop').attr('data-status');
1534
+
1535
+ if(sfsi_plus_analyst_popup =="no"){
1536
+ if(sfsi_plus_show_option1=="no" && sfsi_plus_show_option2=='no' && sfsi_plus_show_option3 =='no' && sfsi_plus_show_option4 == 'no' && sfsi_plus_show_option5 =='no'){
1537
+ sfsi_plus_open_admin_section(5);
1538
+ if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1539
+ setTimeout(function(){
1540
+ sfsi_plus_open_admin_section(5);
1541
+ if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1542
+ setTimeout(function(){
1543
+ sfsi_plus_open_admin_section(5);
1544
+ if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1545
+ setTimeout(function(){
1546
+ sfsi_plus_open_admin_section(5);
1547
+ if(SFSI("#ui-id-5").length==0 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1548
+ setTimeout(function(){
1549
+ sfsi_plus_open_admin_section(5);
1550
+ },2000);
1551
+ }
1552
+ },2000);
1553
+ }
1554
+ },2000);
1555
+ }
1556
+ },2000);
1557
+ }
1558
+ }
1559
+ }else{
1560
+ SFSI("#analyst-install-skip, #analyst-install-action").click(function(){
1561
+ sfsi_plus_open_admin_section(5);
1562
+ if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1563
+ setTimeout(function(){
1564
+ sfsi_plus_open_admin_section(5);
1565
+ if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1566
+ setTimeout(function(){
1567
+ sfsi_plus_open_admin_section(5);
1568
+ if(SFSI("#ui-id-5").length==1 || SFSI("#ui-id-5").attr('aria-selected')=="false"){
1569
+ setTimeout(function(){
1570
+ sfsi_plus_open_admin_section(5);
1571
+ },2000);
1572
+ }
1573
+ },2000);
1574
+ }
1575
+ },2000);
1576
+ }
1577
+ })
1578
+ }
1579
+
1580
+ SFSI(document).on("click", "#sfsi_dummy_chat_icon", function () {
1581
+ SFSI(".sfsi_plus_wait_container").show();
1582
+ });
1583
+
1584
+ SFSI(document).on("click", ".sfsi-notice-dismiss", function () {
1585
+
1586
+ SFSI.ajax({
1587
+ url: sfsi_plus_ajax_object.ajax_url,
1588
+ type: "post",
1589
+ data: {
1590
+ action: "sfsi_plus_dismiss_lang_notice"
1591
+ },
1592
+ success: function (e) {
1593
+ if (false != e) {
1594
+ SFSI(".sfsi-notice-dismiss").parent().remove();
1595
+ }
1596
+ }
1597
+ });
1598
+ });
1599
+
1600
+
1601
+ SFSI(".lanOnchange").change(function () {
1602
+ var currentDrpdown = SFSI(this).parents(".icons_size");
1603
+ var nonce = currentDrpdown.find('select').attr('data-nonce');
1604
+ var data = {
1605
+ action: "getIconPreview",
1606
+ iconValue: SFSI(this).val(),
1607
+ nonce: nonce,
1608
+ iconname: SFSI(this).attr("data-iconUrl")
1609
+ };
1610
+ SFSI.ajax({
1611
+ url: sfsi_plus_ajax_object.ajax_url,
1612
+ type: "post",
1613
+ data: data,
1614
+ success: function (s) {
1615
+ currentDrpdown.children(".social-img-link").html(s);
1616
+ }
1617
+ });
1618
+ });
1619
+
1620
+ SFSI(".sfsiplus_tab_3_icns").on("click", ".cstomskins_upload", function () {
1621
+ SFSI(".cstmskins-overlay").show("slow", function () {
1622
+ e = 0;
1623
+ });
1624
+ });
1625
+ /*SFSI("#custmskin_clspop").live("click", function() {*/
1626
+ SFSI(document).on("click", '#custmskin_clspop', function () {
1627
+ var nonce = SFSI(this).attr('data-nonce');
1628
+ SFSI_plus_done(nonce);
1629
+ SFSI(".cstmskins-overlay").hide("slow");
1630
+ });
1631
+
1632
+ sfsi_plus_create_suscriber_form();
1633
+
1634
+ SFSI('input[name="sfsi_plus_form_heading_text"], input[name="sfsi_plus_form_border_thickness"], input[name="sfsi_plus_form_height"], input[name="sfsi_plus_form_width"], input[name="sfsi_plus_form_heading_fontsize"], input[name="sfsi_plus_form_field_text"], input[name="sfsi_plus_form_field_fontsize"], input[name="sfsi_plus_form_button_text"], input[name="sfsi_plus_form_button_fontsize"]').on("keyup", sfsi_plus_create_suscriber_form);
1635
+
1636
+ SFSI('input[name="sfsi_plus_form_border_color"], input[name="sfsi_plus_form_background"] ,input[name="sfsi_plus_form_heading_fontcolor"], input[name="sfsi_plus_form_field_fontcolor"] ,input[name="sfsi_plus_form_button_fontcolor"],input[name="sfsi_plus_form_button_background"]').on("focus", sfsi_plus_create_suscriber_form);
1637
+
1638
+ SFSI("#sfsi_plus_form_heading_font, #sfsi_plus_form_heading_fontstyle, #sfsi_plus_form_heading_fontalign, #sfsi_plus_form_field_font, #sfsi_plus_form_field_fontstyle, #sfsi_plus_form_field_fontalign, #sfsi_plus_form_button_font, #sfsi_plus_form_button_fontstyle, #sfsi_plus_form_button_fontalign").on("change", sfsi_plus_create_suscriber_form);
1639
+
1640
+ /*SFSI(".radio").live("click", function() {*/
1641
+ SFSI(document).on("click", '.radio', function () {
1642
+ var s = SFSI(this).parent().find("input:radio:first");
1643
+ switch (s.attr("name")) {
1644
+ case 'sfsi_plus_form_adjustment':
1645
+ if (s.val() == 'no')
1646
+ s.parents(".row_tab").next(".row_tab").show("fast");
1647
+ else
1648
+ s.parents(".row_tab").next(".row_tab").hide("fast");
1649
+ sfsi_plus_create_suscriber_form()
1650
+ break;
1651
+ case 'sfsi_plus_form_border':
1652
+ if (s.val() == 'yes')
1653
+ s.parents(".row_tab").next(".row_tab").show("fast");
1654
+ else
1655
+ s.parents(".row_tab").next(".row_tab").hide("fast");
1656
+ sfsi_plus_create_suscriber_form()
1657
+ break;
1658
+ case 'sfsi_pplus_icons_suppress_errors':
1659
+
1660
+ SFSI('input[name="sfsi_pplus_icons_suppress_errors"]').removeAttr('checked');
1661
+
1662
+ if (s.val() == 'yes')
1663
+ SFSI('input[name="sfsi_pplus_icons_suppress_errors"][value="yes"]').prop('checked', 'true');
1664
+ else
1665
+ SFSI('input[name="sfsi_pplus_icons_suppress_errors"][value="no"]').prop('checked', 'true');
1666
+ break;
1667
+ case 'sfsi_plus_responsive_icon_show_count':
1668
+ if ("yes" == s.val()) {
1669
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').show();
1670
+ } else {
1671
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').hide();
1672
+ }
1673
+ default:
1674
+ }
1675
+ });
1676
+ //pooja 28-12-2015
1677
+ SFSI('#sfsi_plus_form_border_color').wpColorPicker({
1678
+ defaultColor: false,
1679
+ change: function (event, ui) {
1680
+ sfsi_plus_create_suscriber_form()
1681
+ },
1682
+ clear: function () {
1683
+ sfsi_plus_create_suscriber_form()
1684
+ },
1685
+ hide: true,
1686
+ palettes: true
1687
+ }),
1688
+ SFSI('#sfsi_plus_form_background').wpColorPicker({
1689
+ defaultColor: false,
1690
+ change: function (event, ui) {
1691
+ sfsi_plus_create_suscriber_form()
1692
+ },
1693
+ clear: function () {
1694
+ sfsi_plus_create_suscriber_form()
1695
+ },
1696
+ hide: true,
1697
+ palettes: true
1698
+ }),
1699
+ SFSI('#sfsi_plus_form_heading_fontcolor').wpColorPicker({
1700
+ defaultColor: false,
1701
+ change: function (event, ui) {
1702
+ sfsi_plus_create_suscriber_form()
1703
+ },
1704
+ clear: function () {
1705
+ sfsi_plus_create_suscriber_form()
1706
+ },
1707
+ hide: true,
1708
+ palettes: true
1709
+ }),
1710
+ SFSI('#sfsi_plus_form_button_fontcolor').wpColorPicker({
1711
+ defaultColor: false,
1712
+ change: function (event, ui) {
1713
+ sfsi_plus_create_suscriber_form()
1714
+ },
1715
+ clear: function () {
1716
+ sfsi_plus_create_suscriber_form()
1717
+ },
1718
+ hide: true,
1719
+ palettes: true
1720
+ }),
1721
+ SFSI('#sfsi_plus_form_button_background').wpColorPicker({
1722
+ defaultColor: false,
1723
+ change: function (event, ui) {
1724
+ sfsi_plus_create_suscriber_form()
1725
+ },
1726
+ clear: function () {
1727
+ sfsi_plus_create_suscriber_form()
1728
+ },
1729
+ hide: true,
1730
+ palettes: true
1731
+ });
1732
+ /*SFSI("#sfsiPlusFormBorderColor").ColorPicker({
1733
+ color:"#f80000",
1734
+ onBeforeShow:function() {
1735
+ s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_border_color").val());
1736
+ },
1737
+ onShow:function(s) {
1738
+ return SFSI(s).fadeIn(500), !1;
1739
+ },
1740
+ onHide:function(s) {
1741
+ return SFSI(s).fadeOut(500), !1;
1742
+ },
1743
+ onChange:function(s, i) {
1744
+ SFSI("#sfsi_plus_form_border_color").val("#" + i), SFSI("#sfsiPlusFormBorderColor").css("background", "#" + i);
1745
+ sfsi_plus_create_suscriber_form();
1746
+ },
1747
+ onClick:function(s, i) {
1748
+ SFSI("#sfsi_plus_popup_background_color").val("#" + i), SFSI("#sfsiPlusFormBorderColor").css("background", "#" + i);
1749
+ sfsi_plus_create_suscriber_form();
1750
+ }
1751
+ }),
1752
+ SFSI("#sfsiPlusFormBackground").ColorPicker({
1753
+ color:"#f80000",
1754
+ onBeforeShow:function() {
1755
+ s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_background").val());
1756
+ },
1757
+ onShow:function(s) {
1758
+ return SFSI(s).fadeIn(500), !1;
1759
+ },
1760
+ onHide:function(s) {
1761
+ return SFSI(s).fadeOut(500), !1;
1762
+ },
1763
+ onChange:function(s, i) {
1764
+ SFSI("#sfsi_plus_form_background").val("#" + i), SFSI("#sfsiPlusFormBackground").css("background", "#" + i);
1765
+ sfsi_plus_create_suscriber_form();
1766
+ },
1767
+ onClick:function(s, i) {
1768
+ SFSI("#sfsi_plus_form_background").val("#" + i), SFSI("#sfsiPlusFormBackground").css("background", "#" + i);
1769
+ sfsi_plus_create_suscriber_form();
1770
+ }
1771
+ }),
1772
+ SFSI("#sfsiPlusFormHeadingFontcolor").ColorPicker({
1773
+ color:"#f80000",
1774
+ onBeforeShow:function() {
1775
+ s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_heading_fontcolor").val());
1776
+ },
1777
+ onShow:function(s) {
1778
+ return SFSI(s).fadeIn(500), !1;
1779
+ },
1780
+ onHide:function(s) {
1781
+ return SFSI(s).fadeOut(500), !1;
1782
+ },
1783
+ onChange:function(s, i) {
1784
+ SFSI("#sfsi_plus_form_heading_fontcolor").val("#"+i), SFSI("#sfsiPlusFormHeadingFontcolor").css("background","#"+i);
1785
+ sfsi_plus_create_suscriber_form();
1786
+ },
1787
+ onClick:function(s, i) {
1788
+ SFSI("#sfsi_plus_form_heading_fontcolor").val("#"+i), SFSI("#sfsiPlusFormHeadingFontcolor").css("background","#"+i);
1789
+ sfsi_plus_create_suscriber_form();
1790
+ }
1791
+ }),
1792
+ SFSI("#sfsiPlusFormFieldFontcolor").ColorPicker({
1793
+ color:"#f80000",
1794
+ onBeforeShow:function() {
1795
+ s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_field_fontcolor").val());
1796
+ },
1797
+ onShow:function(s) {
1798
+ return SFSI(s).fadeIn(500), !1;
1799
+ },
1800
+ onHide:function(s) {
1801
+ return SFSI(s).fadeOut(500), !1;
1802
+ },
1803
+ onChange:function(s, i) {
1804
+ SFSI("#sfsi_plus_form_field_fontcolor").val("#" + i), SFSI("#sfsiPlusFormFieldFontcolor").css("background", "#" +i);
1805
+ sfsi_plus_create_suscriber_form();
1806
+ },
1807
+ onClick:function(s, i) {
1808
+ SFSI("#sfsi_plus_form_field_fontcolor").val("#" + i), SFSI("#sfsiPlusFormFieldFontcolor").css("background", "#" +i);
1809
+ sfsi_plus_create_suscriber_form();
1810
+ }
1811
+ }),
1812
+ SFSI("#sfsiPlusFormButtonFontcolor").ColorPicker({
1813
+ color:"#f80000",
1814
+ onBeforeShow:function() {
1815
+ s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_button_fontcolor").val());
1816
+ },
1817
+ onShow:function(s) {
1818
+ return SFSI(s).fadeIn(500), !1;
1819
+ },
1820
+ onHide:function(s) {
1821
+ return SFSI(s).fadeOut(500), !1;
1822
+ },
1823
+ onChange:function(s, i) {
1824
+ SFSI("#sfsi_plus_form_button_fontcolor").val("#"+i), SFSI("#sfsiPlusFormButtonFontcolor").css("background", "#"+i);
1825
+ sfsi_plus_create_suscriber_form();
1826
+ },
1827
+ onClick:function(s, i) {
1828
+ SFSI("#sfsi_plus_form_button_fontcolor").val("#"+i), SFSI("#sfsiPlusFormButtonFontcolor").css("background", "#"+i);
1829
+ sfsi_plus_create_suscriber_form();
1830
+ }
1831
+ }),
1832
+ SFSI("#sfsiPlusFormButtonBackground").ColorPicker({
1833
+ color:"#f80000",
1834
+ onBeforeShow:function() {
1835
+ s(this).ColorPickerSetColor(SFSI("#sfsi_plus_form_button_background").val());
1836
+ },
1837
+ onShow:function(s) {
1838
+ return SFSI(s).fadeIn(500), !1;
1839
+ },
1840
+ onHide:function(s) {
1841
+ return SFSI(s).fadeOut(500), !1;
1842
+ },
1843
+ onChange:function(s, i) {
1844
+ SFSI("#sfsi_plus_form_button_background").val("#"+i), SFSI("#sfsiPlusFormButtonBackground").css("background","#"+i);
1845
+ sfsi_plus_create_suscriber_form();
1846
+ },
1847
+ onClick:function(s, i) {
1848
+ SFSI("#sfsi_plus_form_button_background").val("#"+i), SFSI("#sfsiPlusFormButtonBackground").css("background","#"+i);
1849
+ sfsi_plus_create_suscriber_form();
1850
+ }
1851
+ });*/
1852
+ //changes done {Monad}
1853
+
1854
+ function i() {
1855
+ SFSI(".uperror").html(""), sfsiplus_afterLoad();
1856
+ var s = SFSI('input[name="' + SFSI("#upload_id").val() + '"]');
1857
+ s.removeAttr("checked");
1858
+ var i = SFSI(s).parent().find("span:first");
1859
+ return SFSI(i).css("background-position", "0px 0px"), SFSI(".upload-overlay").hide("slow"),
1860
+ !1;
1861
+ }
1862
+ SFSI("#accordion").accordion({
1863
+ collapsible: !0,
1864
+ active: !1,
1865
+ heightStyle: "content",
1866
+ event: "click",
1867
+ beforeActivate: function (s, i) {
1868
+ if (i.newHeader[0]) var e = i.newHeader,
1869
+ t = e.next(".ui-accordion-content");
1870
+ else var e = i.oldHeader,
1871
+ t = e.next(".ui-accordion-content");
1872
+ var n = "true" == e.attr("aria-selected");
1873
+ return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
1874
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
1875
+ t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
1876
+ }
1877
+ }),
1878
+ SFSI("#accordion1").accordion({
1879
+ collapsible: !0,
1880
+ active: !1,
1881
+ heightStyle: "content",
1882
+ event: "click",
1883
+ beforeActivate: function (s, i) {
1884
+ if (i.newHeader[0]) var e = i.newHeader,
1885
+ t = e.next(".ui-accordion-content");
1886
+ else var e = i.oldHeader,
1887
+ t = e.next(".ui-accordion-content");
1888
+ var n = "true" == e.attr("aria-selected");
1889
+ return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
1890
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
1891
+ t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
1892
+ }
1893
+ }),
1894
+
1895
+ SFSI("#accordion2").accordion({
1896
+ collapsible: !0,
1897
+ active: !1,
1898
+ heightStyle: "content",
1899
+ event: "click",
1900
+ beforeActivate: function (s, i) {
1901
+ if (i.newHeader[0]) var e = i.newHeader,
1902
+ t = e.next(".ui-accordion-content");
1903
+ else var e = i.oldHeader,
1904
+ t = e.next(".ui-accordion-content");
1905
+ var n = "true" == e.attr("aria-selected");
1906
+ return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
1907
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
1908
+ t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
1909
+ }
1910
+ }),
1911
+ SFSI(".closeSec").on("click", function () {
1912
+ var s = !0,
1913
+ i = SFSI(this).closest("div.ui-accordion-content").prev("h3.ui-accordion-header").first(),
1914
+ e = SFSI(this).closest("div.ui-accordion-content").first();
1915
+ i.toggleClass("ui-corner-all", s).toggleClass("accordion-header-active ui-state-active ui-corner-top", !s).attr("aria-selected", (!s).toString()),
1916
+ i.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", s).toggleClass("ui-icon-triangle-1-s", !s),
1917
+ e.toggleClass("accordion-content-active", !s), s ? e.slideUp() : e.slideDown();
1918
+ }),
1919
+ SFSI(document).click(function (s) {
1920
+ var i = SFSI(".sfsi_plus_FrntInner"),
1921
+ e = SFSI(".sfsi_plus_wDiv"),
1922
+ t = SFSI("#at15s");
1923
+ 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();
1924
+ }),
1925
+
1926
+ //pooja 28-12-2015
1927
+ SFSI('#sfsi_plus_popup_background_color').wpColorPicker({
1928
+ defaultColor: false,
1929
+ change: function (event, ui) {
1930
+ sfsi_plus_make_popBox()
1931
+ },
1932
+ clear: function () {
1933
+ sfsi_plus_make_popBox()
1934
+ },
1935
+ hide: true,
1936
+ palettes: true
1937
+ }),
1938
+ SFSI('#sfsi_plus_popup_border_color').wpColorPicker({
1939
+ defaultColor: false,
1940
+ change: function (event, ui) {
1941
+ sfsi_plus_make_popBox()
1942
+ },
1943
+ clear: function () {
1944
+ sfsi_plus_make_popBox()
1945
+ },
1946
+ hide: true,
1947
+ palettes: true
1948
+ }),
1949
+ SFSI('#sfsi_plus_popup_fontColor').wpColorPicker({
1950
+ defaultColor: false,
1951
+ change: function (event, ui) {
1952
+ sfsi_plus_make_popBox()
1953
+ },
1954
+ clear: function () {
1955
+ sfsi_plus_make_popBox()
1956
+ },
1957
+ hide: true,
1958
+ palettes: true
1959
+ }),
1960
+
1961
+ /*SFSI("#sfsifontCloroPicker").ColorPicker({
1962
+ color:"#f80000",
1963
+ onBeforeShow:function() {
1964
+ s(this).ColorPickerSetColor(SFSI("#sfsi_plus_popup_fontColor").val());
1965
+ },
1966
+ onShow:function(s) {
1967
+ return SFSI(s).fadeIn(500), !1;
1968
+ },
1969
+ onHide:function(s) {
1970
+ return SFSI(s).fadeOut(500), sfsi_plus_make_popBox(), !1;
1971
+ },
1972
+ onChange:function(s, i) {
1973
+ SFSI("#sfsi_plus_popup_fontColor").val("#" + i), SFSI("#sfsifontCloroPicker").css("background", "#" + i),
1974
+ sfsi_plus_make_popBox();
1975
+ },
1976
+ onClick:function(s, i) {
1977
+ SFSI("#sfsi_plus_popup_fontColor").val("#" + i), SFSI("#sfsifontCloroPicker").css("background", "#" + i),
1978
+ sfsi_plus_make_popBox();
1979
+ }
1980
+ }),*/
1981
+ SFSI("div.sfsiplusid_linkedin").find(".icon4").find("a").find("img").mouseover(function () {
1982
+ SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/linkedIn_hover.svg");
1983
+ }),
1984
+ SFSI("div.sfsiplusid_linkedin").find(".icon4").find("a").find("img").mouseleave(function () {
1985
+ SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/linkedIn.svg");
1986
+ }),
1987
+ SFSI("div.sfsiplusid_youtube").find(".icon1").find("a").find("img").mouseover(function () {
1988
+ SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/youtube_hover.svg");
1989
+ }),
1990
+ SFSI("div.sfsiplusid_youtube").find(".icon1").find("a").find("img").mouseleave(function () {
1991
+ SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/youtube.svg");
1992
+ }),
1993
+ SFSI("div.sfsiplusid_facebook").find(".icon1").find("a").find("img").mouseover(function () {
1994
+ SFSI(this).css("opacity", "0.9");
1995
+ }),
1996
+ SFSI("div.sfsiplusid_facebook").find(".icon1").find("a").find("img").mouseleave(function () {
1997
+ SFSI(this).css("opacity", "1");
1998
+ /*{Monad}*/
1999
+ }),
2000
+ SFSI("div.sfsiplusid_twitter").find(".cstmicon1").find("a").find("img").mouseover(function () {
2001
+ SFSI(this).css("opacity", "0.9");
2002
+ }),
2003
+ SFSI("div.sfsiplusid_twitter").find(".cstmicon1").find("a").find("img").mouseleave(function () {
2004
+ SFSI(this).css("opacity", "1");
2005
+ }),
2006
+
2007
+ //pooja 28-12-2015
2008
+
2009
+ /*SFSI("#sfsiBackgroundColorPicker").ColorPicker({
2010
+ color:"#f80000",
2011
+ onBeforeShow:function() {
2012
+ s(this).ColorPickerSetColor(SFSI("#sfsi_plus_popup_background_color").val());
2013
+ },
2014
+ onShow:function(s) {
2015
+ return SFSI(s).fadeIn(500), !1;
2016
+ },
2017
+ onHide:function(s) {
2018
+ return SFSI(s).fadeOut(500), !1;
2019
+ },
2020
+ onChange:function(s, i) {
2021
+ SFSI("#sfsi_plus_popup_background_color").val("#" + i), SFSI("#sfsiBackgroundColorPicker").css("background","#"+i),
2022
+ sfsi_plus_make_popBox();
2023
+ },
2024
+ onClick:function(s, i) {
2025
+ SFSI("#sfsi_plus_popup_background_color").val("#" + i), SFSI("#sfsiBackgroundColorPicker").css("background","#"+i),
2026
+ sfsi_plus_make_popBox();
2027
+ }
2028
+ }),
2029
+ SFSI("#sfsiBorderColorPicker").ColorPicker({
2030
+ color:"#f80000",
2031
+ onBeforeShow:function() {
2032
+ s(this).ColorPickerSetColor(SFSI("#sfsi_plus_popup_border_color").val());
2033
+ },
2034
+ onShow:function(s) {
2035
+ return SFSI(s).fadeIn(500), !1;
2036
+ },
2037
+ onHide:function(s) {
2038
+ return SFSI(s).fadeOut(500), !1;
2039
+ },
2040
+ onChange:function(s, i) {
2041
+ SFSI("#sfsi_plus_popup_border_color").val("#" + i), SFSI("#sfsiBorderColorPicker").css("background", "#" + i),
2042
+ sfsi_plus_make_popBox();
2043
+ },
2044
+ onClick:function(s, i) {
2045
+ SFSI("#sfsi_plus_popup_border_color").val("#" + i), SFSI("#sfsiBorderColorPicker").css("background", "#" + i),
2046
+ sfsi_plus_make_popBox();
2047
+ }
2048
+ }),*/
2049
+ SFSI("#sfsi_plus_save1").on("click", function () {
2050
+ sfsi_plus_update_step1() && sfsipluscollapse(this);
2051
+ }),
2052
+ SFSI("#sfsi_plus_save2").on("click", function () {
2053
+ sfsi_plus_update_step2() && sfsipluscollapse(this);
2054
+ }),
2055
+ SFSI("#sfsi_plus_save3").on("click", function () {
2056
+ sfsi_plus_update_step3() && sfsipluscollapse(this);
2057
+ }),
2058
+ SFSI("#sfsi_plus_save4").on("click", function () {
2059
+ sfsi_plus_update_step4() && sfsipluscollapse(this);
2060
+ }),
2061
+ SFSI("#sfsi_plus_save5").on("click", function () {
2062
+ sfsi_plus_update_step5() && sfsipluscollapse(this);
2063
+ }),
2064
+ SFSI("#sfsi_plus_save6").on("click", function () {
2065
+ sfsi_plus_update_step6() && sfsipluscollapse(this);
2066
+ }),
2067
+ SFSI("#sfsi_plus_save7").on("click", function () {
2068
+ sfsi_plus_update_step7() && sfsipluscollapse(this);
2069
+ }),
2070
+ SFSI("#sfsi_plus_save8").on("click", function () {
2071
+ sfsi_plus_update_step8() && sfsipluscollapse(this);
2072
+ }),
2073
+ SFSI("#sfsi_plus_save9").on("click", function () {
2074
+ sfsi_plus_update_step9() && sfsipluscollapse(this);
2075
+ }),
2076
+ SFSI("#sfsi_plus_worker_plugin").on("click", function () {
2077
+ sfsi_plus_worker_plugin();
2078
+ }),
2079
+ SFSI("#sfsi_plus_save_export").on("click", function () {
2080
+ sfsi_plus_save_export();
2081
+ }),
2082
+ SFSI("#save_plus_all_settings").on("click", function () {
2083
+ return SFSI("#save_plus_all_settings").text("Saving.."), SFSI(".save_button >a").css("pointer-events", "none"),
2084
+ sfsi_plus_update_step1(), sfsi_plus_update_step9(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Which icons do you want to show on your site?" tab.', 8),
2085
+ global_error = 0, !1) : (sfsi_plus_update_step2(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "What do you want the icons to do?" tab.', 8),
2086
+ global_error = 0, !1) : (sfsi_plus_update_step3(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "What design & animation do you want to give your icons?" tab.', 8),
2087
+ global_error = 0, !1) : (sfsi_plus_update_step4(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Do you want to display "counts" next to your icons?" tab.', 8),
2088
+ global_error = 0, !1) : (sfsi_plus_update_step5(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Any other wishes for your main icons?" tab.', 8),
2089
+ global_error = 0, !1) : (sfsi_plus_update_step6(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Do you want to display icons at the end of every post?" tab.', 8),
2090
+ global_error = 0, !1) : (sfsi_plus_update_step7(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Do you want to display a pop-up, asking people to subscribe?" tab.', 8),
2091
+ global_error = 0, !1) : sfsi_plus_update_step8(), 1 == global_error ? (sfsiplus_showErrorSuc("error", 'Some Selection error in "Where shall they be displayed?" tab.', 8),
2092
+ /*global_error = 0, !1) :void (0 == global_error && sfsiplus_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))))))));*/
2093
+ global_error = 0, !1) : void(0 == global_error && sfsiplus_showErrorSuc("success", '', 8))))))));
2094
+ }),
2095
+ /*SFSI(".fileUPInput").live("change", function() {*/
2096
+ SFSI(document).on("change", '.fileUPInput', function () {
2097
+ sfsiplus_beForeLoad(), sfsiplus_beforeIconSubmit(this) && (SFSI(".upload-overlay").css("pointer-events", "none"),
2098
+ SFSI("#customIconFrm").ajaxForm({
2099
+ dataType: "json",
2100
+ success: sfsiplus_afterIconSuccess,
2101
+ resetForm: !0
2102
+ }).submit());
2103
+ }),
2104
+ SFSI(".pop-up").on("click", function () {
2105
+ ("fbex-s2" == SFSI(this).attr("data-id") || "linkex-s2" == SFSI(this).attr("data-id")) && (SFSI("." + SFSI(this).attr("data-id")).hide(),
2106
+ SFSI("." + SFSI(this).attr("data-id")).css("opacity", "1"), SFSI("." + SFSI(this).attr("data-id")).css("z-index", "1000")),
2107
+ SFSI("." + SFSI(this).attr("data-id")).show("slow");
2108
+ }),
2109
+ /*SFSI("#close_popup").live("click", function() {*/
2110
+ SFSI(document).on("click", '#close_popup', function () {
2111
+ SFSI(".read-overlay").hide("slow");
2112
+ });
2113
+ var e = 0;
2114
+ SFSI(".plus_icn_listing").on("click", ".checkbox", function () {
2115
+ if (1 == e) return !1;
2116
+ "yes" == SFSI(this).attr("dynamic_ele") && (s = SFSI(this).parent().find("input:checkbox:first"),
2117
+ s.is(":checked") ? SFSI(s).attr("checked", !1) : SFSI(s).attr("checked", !0)), s = SFSI(this).parent().find("input:checkbox:first"),
2118
+ "yes" == SFSI(s).attr("isNew") && ("0px 0px" == SFSI(this).css("background-position") ? (SFSI(s).attr("checked", !0),
2119
+ SFSI(this).css("background-position", "0px -36px")) : (SFSI(s).removeAttr("checked", !0),
2120
+ SFSI(this).css("background-position", "0px 0px")));
2121
+ var s = SFSI(this).parent().find("input:checkbox:first");
2122
+ if (s.is(":checked") && "sfsiplus-cusotm-icon" == s.attr("element-type")) SFSI(".fileUPInput").attr("name", "custom_icons[]"),
2123
+ SFSI(".upload-overlay").show("slow", function () {
2124
+ e = 0;
2125
+ }),
2126
+ SFSI("#upload_id").val(s.attr("name"));
2127
+ else if (!s.is(":checked") && "sfsiplus-cusotm-icon" == s.attr("element-type")) return s.attr("ele-type") ? (SFSI(this).attr("checked", !0),
2128
+ SFSI(this).css("background-position", "0px -36px"), e = 0, !1) : confirm("Are you sure want to delete this Icon..?? ") ? "suc" == sfsi_plus_delete_CusIcon(this, s) ? (s.attr("checked", !1),
2129
+ SFSI(this).css("background-position", "0px 0px"), e = 0, !1) : (e = 0, !1) : (s.attr("checked", !0),
2130
+ SFSI(this).css("background-position", "0px -36px"), e = 0, !1);
2131
+ }),
2132
+ SFSI(".plus_icn_listing").on("click", ".checkbox", function () {
2133
+ checked = SFSI(this).parent().find("input:checkbox:first"), "sfsi_plus_email_display" != checked.attr("name") || checked.is(":checked") || SFSI(".demail-1").show("slow");
2134
+ }),
2135
+ SFSI("#deac_email2").on("click", function () {
2136
+ SFSI(".demail-1").hide("slow"), SFSI(".demail-2").show("slow");
2137
+ }),
2138
+ SFSI("#deac_email3").on("click", function () {
2139
+ SFSI(".demail-2").hide("slow"), SFSI(".demail-3").show("slow");
2140
+ }),
2141
+ SFSI(".hideemailpop").on("click", function () {
2142
+ SFSI('input[name="sfsi_plus_email_display"]').attr("checked", !0),
2143
+ SFSI('input[name="sfsi_plus_email_display"]').parent().find("span:first").css("background-position", "0px -36px"),
2144
+ SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2145
+ }),
2146
+ SFSI(".hidePop").on("click", function () {
2147
+ SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2148
+ }),
2149
+ SFSI(".sfsiplus_activate_footer").on("click", function () {
2150
+ var nonce = SFSI(this).attr("data-nonce");
2151
+ SFSI(this).text("activating....");
2152
+ var s = {
2153
+ action: "plus_activateFooter",
2154
+ nonce: nonce
2155
+ };
2156
+ SFSI.ajax({
2157
+ url: sfsi_plus_ajax_object.ajax_url,
2158
+ type: "post",
2159
+ data: s,
2160
+ dataType: "json",
2161
+ success: function (s) {
2162
+ if (s.res == "wrong_nonce") {
2163
+ SFSI(".sfsiplus_activate_footer").css("font-size", "18px");
2164
+ SFSI(".sfsiplus_activate_footer").text("Unauthorised Request, Try again after refreshing page");
2165
+ } else {
2166
+ "success" == s.res && (SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"),
2167
+ SFSI(".demail-3").hide("slow"), SFSI(".sfsiplus_activate_footer").text("Ok, activate link"));
2168
+ }
2169
+ }
2170
+ });
2171
+ }),
2172
+ SFSI(".sfsiplus_removeFooter").on("click", function () {
2173
+ var nonce = SFSI(this).attr("data-nonce");
2174
+ SFSI(this).text("working....");
2175
+ var s = {
2176
+ action: "plus_removeFooter",
2177
+ nonce: nonce
2178
+ };
2179
+ SFSI.ajax({
2180
+ url: sfsi_plus_ajax_object.ajax_url,
2181
+ type: "post",
2182
+ data: s,
2183
+ dataType: "json",
2184
+ success: function (s) {
2185
+ if (s.res == "wrong_nonce") {
2186
+ SFSI(".sfsiplus_removeFooter").text("Unauthorised Request, Try again after refreshing page");
2187
+ } else {
2188
+ "success" == s.res && (SFSI(".sfsiplus_removeFooter").fadeOut("slow"), SFSI(".sfsiplus_footerLnk").fadeOut("slow"));
2189
+ }
2190
+ }
2191
+ });
2192
+ }),
2193
+ /*SFSI(".radio").live("click", function() {*/
2194
+ SFSI(document).on("click", '.radio', function () {
2195
+ var s = SFSI(this).parent().find("input:radio:first");
2196
+ "sfsi_plus_display_counts" == s.attr("name") && sfsi_plus_show_counts();
2197
+ }),
2198
+ SFSI("#close_Uploadpopup").on("click", i), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2199
+ var s = SFSI(this).parent().find("input:radio:first");
2200
+ "sfsi_plus_show_Onposts" == s.attr("name") && sfsi_plus_show_OnpostsDisplay();
2201
+ }),
2202
+ sfsi_plus_show_OnpostsDisplay(),
2203
+ sfsi_plus_depened_sections(),
2204
+ sfsi_plus_show_counts(),
2205
+ sfsi_plus_showPreviewCounts(),
2206
+ SFSI(".plus_share_icon_order").sortable({
2207
+ update: function () {
2208
+ SFSI(".plus_share_icon_order li").each(function () {
2209
+ SFSI(this).attr("data-index", SFSI(this).index() + 1);
2210
+ });
2211
+ },
2212
+ revert: !0
2213
+ }),
2214
+
2215
+ //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post STARTS -------------------------------------//
2216
+
2217
+ SFSI(document).on("click", '.checkbox', function () {
2218
+
2219
+ var s = SFSI(this).parent().find("input:checkbox:first");
2220
+
2221
+ var inputName = s.attr('name');
2222
+ var inputChecked = s.attr("checked");
2223
+
2224
+ switch (inputName) {
2225
+
2226
+ case "sfsi_custom_social_hide":
2227
+
2228
+ var backgroundPos = jQuery(this).css('background-position').split(" ");
2229
+
2230
+ var xPos = backgroundPos[0],
2231
+ yPos = backgroundPos[1];
2232
+ var val = (yPos == "0px") ? "no" : "yes";
2233
+ SFSI('input[name="sfsi_plus_custom_social_hide"]').val(val);
2234
+
2235
+ break;
2236
+
2237
+ case 'sfsi_plus_mouseOver':
2238
+
2239
+ var elem = SFSI('input[name="' + inputName + '"]');
2240
+
2241
+ var togglelem = SFSI('.mouse-over-effects');
2242
+
2243
+ if (inputChecked) {
2244
+ togglelem.removeClass('hide').addClass('show');
2245
+ } else {
2246
+ togglelem.removeClass('show').addClass('hide');
2247
+ }
2248
+
2249
+ break;
2250
+ }
2251
+
2252
+ });
2253
+
2254
+ //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post CLOSES -------------------------------------//
2255
+
2256
+ /*SFSI(".radio").live("click", function() {*/
2257
+ SFSI(document).on("click", '.radio', function () {
2258
+ var s = SFSI(this).parent().find("input:radio:first");
2259
+ "sfsi_plus_email_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_email_countsDisplay"]').prop("checked", !0),
2260
+ SFSI('input[name="sfsi_plus_email_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2261
+ "manual" == SFSI("input[name='sfsi_plus_email_countsFrom']:checked").val() ? SFSI("input[name='sfsi_plus_email_manualCounts']").slideDown() : SFSI("input[name='sfsi_plus_email_manualCounts']").slideUp()),
2262
+ "sfsi_plus_facebook_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_facebook_countsDisplay"]').prop("checked", !0),
2263
+ SFSI('input[name="sfsi_plus_facebook_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2264
+ "mypage" == SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_facebook_mypageCounts']").slideDown(), SFSI(".sfsiplus_fbpgidwpr").slideDown()) : (SFSI("input[name='sfsi_plus_facebook_mypageCounts']").slideUp(), SFSI(".sfsiplus_fbpgidwpr").slideUp()),
2265
+ "manual" == SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val() ? SFSI("input[name='sfsi_plus_facebook_manualCounts']").slideDown() : SFSI("input[name='sfsi_plus_facebook_manualCounts']").slideUp()),
2266
+ "sfsi_plus_facebook_countsFrom" == s.attr("name") && (("mypage" == SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val() || "likes" == SFSI("input[name='sfsi_plus_facebook_countsFrom']:checked").val()) ? (SFSI(".sfsi_plus_facebook_pagedeasc").slideDown()) : (SFSI(".sfsi_plus_facebook_pagedeasc").slideUp())),
2267
+
2268
+
2269
+ "sfsi_plus_twitter_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_twitter_countsDisplay"]').prop("checked", !0),
2270
+ SFSI('input[name="sfsi_plus_twitter_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2271
+ "manual" == SFSI("input[name='sfsi_plus_twitter_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_twitter_manualCounts']").slideDown(),
2272
+ SFSI(".tw_follow_options").slideUp()) : (SFSI("input[name='sfsi_plus_twitter_manualCounts']").slideUp(),
2273
+ SFSI(".tw_follow_options").slideDown())), "sfsi_plus_linkedIn_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_linkedIn_countsDisplay"]').prop("checked", !0),
2274
+ SFSI('input[name="sfsi_plus_linkedIn_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2275
+ "manual" == SFSI("input[name='sfsi_plus_linkedIn_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_linkedIn_manualCounts']").slideDown(),
2276
+ SFSI(".linkedIn_options").slideUp()) : (SFSI("input[name='sfsi_plus_linkedIn_manualCounts']").slideUp(),
2277
+ SFSI(".linkedIn_options").slideDown())), "sfsi_plus_youtube_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_youtube_countsDisplay"]').prop("checked", !0),
2278
+ SFSI('input[name="sfsi_plus_youtube_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2279
+ "manual" == SFSI("input[name='sfsi_plus_youtube_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_youtube_manualCounts']").slideDown(),
2280
+ SFSI(".youtube_options").slideUp()) : (SFSI("input[name='sfsi_plus_youtube_manualCounts']").slideUp(),
2281
+ SFSI(".youtube_options").slideDown())), "sfsi_plus_pinterest_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_pinterest_countsDisplay"]').prop("checked", !0),
2282
+ SFSI('input[name="sfsi_plus_pinterest_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2283
+ "manual" == SFSI("input[name='sfsi_plus_pinterest_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_pinterest_manualCounts']").slideDown(),
2284
+ SFSI(".pin_options").slideUp()) : SFSI("input[name='sfsi_plus_pinterest_manualCounts']").slideUp()),
2285
+ "sfsi_plus_instagram_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_plus_instagram_countsDisplay"]').prop("checked", !0),
2286
+ SFSI('input[name="sfsi_plus_instagram_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2287
+ "manual" == SFSI("input[name='sfsi_plus_instagram_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_plus_instagram_manualCounts']").slideDown(),
2288
+ SFSI(".instagram_userLi").slideUp()) : (SFSI("input[name='sfsi_plus_instagram_manualCounts']").slideUp(),
2289
+ SFSI(".instagram_userLi").slideDown()))
2290
+ }), sfsi_plus_make_popBox(), SFSI('input[name="sfsi_plus_popup_text"] ,input[name="sfsi_plus_popup_background_color"],input[name="sfsi_plus_popup_border_color"],input[name="sfsi_plus_popup_border_thickness"],input[name="sfsi_plus_popup_fontSize"],input[name="sfsi_plus_popup_fontColor"]').on("keyup", sfsi_plus_make_popBox),
2291
+ SFSI('input[name="sfsi_plus_popup_text"] ,input[name="sfsi_plus_popup_background_color"],input[name="sfsi_plus_popup_border_color"],input[name="sfsi_plus_popup_border_thickness"],input[name="sfsi_plus_popup_fontSize"],input[name="sfsi_plus_popup_fontColor"]').on("focus", sfsi_plus_make_popBox),
2292
+ SFSI("#sfsi_plus_popup_font ,#sfsi_plus_popup_fontStyle").on("change", sfsi_plus_make_popBox),
2293
+ /*SFSI(".radio").live("click", function() {*/
2294
+ SFSI(document).on("click", '.radio', function () {
2295
+ var s = SFSI(this).parent().find("input:radio:first");
2296
+ "sfsi_plus_popup_border_shadow" == s.attr("name") && sfsi_plus_make_popBox();
2297
+ }), /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ? SFSI("img.sfsi_wicon").on("click", function (s) {
2298
+ s.stopPropagation();
2299
+ var i = SFSI("#sfsi_plus_floater_sec").val();
2300
+ SFSI("div.sfsi_plus_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide(),
2301
+ SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_tool_tip_2").css("z-index", "0"),
2302
+ SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide()),
2303
+ SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2304
+ "z-index": "999"
2305
+ }), SFSI(this).attr("effect") && "fade_in" == SFSI(this).attr("effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2306
+ opacity: 1,
2307
+ "z-index": 10
2308
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("effect") && "scale" == SFSI(this).attr("effect") && (SFSI(this).parent().addClass("scale"),
2309
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2310
+ opacity: 1,
2311
+ "z-index": 10
2312
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("effect") && "combo" == SFSI(this).attr("effect") && (SFSI(this).parent().addClass("scale"),
2313
+ SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2314
+ opacity: 1,
2315
+ "z-index": 10
2316
+ })), ("top-left" == i || "top-right" == i) && SFSI(this).parent().parent().parent().parent("#sfsi_plus_floater").length > 0 && "sfsi_plus_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").addClass("sfsi_plc_btm"),
2317
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2318
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2319
+ opacity: 1,
2320
+ "z-index": 10
2321
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2322
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").removeClass("sfsi_plc_btm"),
2323
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2324
+ opacity: 1,
2325
+ "z-index": 1e3
2326
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show());
2327
+ }) : SFSI("img.sfsi_wicon").on("mouseenter", function () {
2328
+ var s = SFSI("#sfsi_plus_floater_sec").val();
2329
+ SFSI("div.sfsi_plus_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide(),
2330
+ SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_tool_tip_2").css("z-index", "0"),
2331
+ SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide()),
2332
+ SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2333
+ "z-index": "999"
2334
+ }), SFSI(this).attr("effect") && "fade_in" == SFSI(this).attr("effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2335
+ opacity: 1,
2336
+ "z-index": 10
2337
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("effect") && "scale" == SFSI(this).attr("effect") && (SFSI(this).parent().addClass("scale"),
2338
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2339
+ opacity: 1,
2340
+ "z-index": 10
2341
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("effect") && "combo" == SFSI(this).attr("effect") && (SFSI(this).parent().addClass("scale"),
2342
+ SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2343
+ opacity: 1,
2344
+ "z-index": 10
2345
+ })), ("top-left" == s || "top-right" == s) && SFSI(this).parent().parent().parent().parent("#sfsi_plus_floater").length > 0 && "sfsi_plus_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").addClass("sfsi_plc_btm"),
2346
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2347
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2348
+ opacity: 1,
2349
+ "z-index": 10
2350
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2351
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").removeClass("sfsi_plc_btm"),
2352
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
2353
+ opacity: 1,
2354
+ "z-index": 10
2355
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show());
2356
+ }), SFSI("div.sfsi_plus_wicons").on("mouseleave", function () {
2357
+ SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && "fade_in" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").css("opacity", "0.6"),
2358
+ SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && "scale" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").removeClass("scale"),
2359
+ SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && "combo" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("effect") && (SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").css("opacity", "0.6"),
2360
+ SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").removeClass("scale"))
2361
+ }),
2362
+ SFSI("body").on("click", function () {
2363
+ SFSI(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide();
2364
+ }),
2365
+ SFSI(".adminTooltip >a").on("mouseenter", function () {
2366
+ SFSI(this).offset().top, SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "1"),
2367
+ SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").show();
2368
+ }),
2369
+ SFSI(".adminTooltip").on("mouseleave", function () {
2370
+ "none" != SFSI(".sfsi_plus_gpls_tool_bdr").css("display") && 0 != SFSI(".sfsi_plus_gpls_tool_bdr").css("opacity") ? SFSI(".pop_up_box ").on("click", function () {
2371
+ SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "0"), SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").hide();
2372
+ }) : (SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "0"),
2373
+ SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").hide());
2374
+ }),
2375
+ SFSI(".expand-area").on("click", function () {
2376
+ object_name.Re_ad == SFSI(this).text() ? (SFSI(this).siblings("p").children("label").fadeIn("slow"),
2377
+ SFSI(this).text(object_name1.Coll_apse)) : (SFSI(this).siblings("p").children("label").fadeOut("slow"),
2378
+ SFSI(this).text(object_name.Re_ad));
2379
+ }),
2380
+ /*SFSI(".radio").live("click", function(){*/
2381
+ SFSI(document).on("click", '.radio', function () {
2382
+ var s = SFSI(this).parent().find("input:radio:first");
2383
+ "sfsi_plus_icons_float" == s.attr("name") && "yes" == s.val() && (SFSI(".float_options").slideDown("slow"),
2384
+ SFSI('input[name="sfsi_plus_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_plus_icons_stick"][value="yes"]').removeAttr("checked"),
2385
+ SFSI('input[name="sfsi_plus_icons_stick"][value="no"]').parent().find("span").attr("style", "background-position:0px -41px;"),
2386
+ SFSI('input[name="sfsi_plus_icons_stick"][value="yes"]').parent().find("span").attr("style", "background-position:0px -0px;")),
2387
+ ("sfsi_plus_icons_stick" == s.attr("name") && "yes" == s.val() || "sfsi_plus_icons_float" == s.attr("name") && "no" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2388
+ SFSI('input[name="sfsi_plus_icons_float"][value="no"]').prop("checked", !0), SFSI('input[name="sfsi_plus_icons_float"][value="yes"]').prop("checked", !1),
2389
+ SFSI('input[name="sfsi_plus_icons_float"][value="no"]').parent().find("span.radio").attr("style", "background-position:0px -41px;"),
2390
+ SFSI('input[name="sfsi_plus_icons_float"][value="yes"]').parent().find("span.radio").attr("style", "background-position:0px -0px;"));
2391
+ }),
2392
+ SFSI(".sfsi_plus_wDiv").length > 0 && setTimeout(function () {
2393
+ var s = parseInt(SFSI(".sfsi_plus_wDiv").height()) + 0 + "px";
2394
+ SFSI(".sfsi_plus_holders").each(function () {
2395
+ SFSI(this).css("height", s);
2396
+ });
2397
+ }, 200),
2398
+ /*SFSI(".checkbox").live("click", function() {*/
2399
+ SFSI(document).on("click", '.checkbox', function () {
2400
+ var s = SFSI(this).parent().find("input:checkbox:first");
2401
+ ("sfsi_plus_shuffle_Firstload" == s.attr("name") && "checked" == s.attr("checked") || "sfsi_plus_shuffle_interval" == s.attr("name") && "checked" == s.attr("checked")) && (SFSI('input[name="sfsi_plus_shuffle_icons"]').parent().find("span").css("background-position", "0px -36px"),
2402
+ SFSI('input[name="sfsi_plus_shuffle_icons"]').attr("checked", "checked")), "sfsi_plus_shuffle_icons" == s.attr("name") && "checked" != s.attr("checked") && (SFSI('input[name="sfsi_plus_shuffle_Firstload"]').removeAttr("checked"),
2403
+ SFSI('input[name="sfsi_plus_shuffle_Firstload"]').parent().find("span").css("background-position", "0px 0px"),
2404
+ SFSI('input[name="sfsi_plus_shuffle_interval"]').removeAttr("checked"), SFSI('input[name="sfsi_plus_shuffle_interval"]').parent().find("span").css("background-position", "0px 0px"));
2405
+ });
2406
+
2407
+ SFSI("body").on("click", "#getMeFullAccess", function () {
2408
+ var email = SFSI(this).parents("form").find("input[type='email']").val();
2409
+ var feedid = SFSI(this).parents("form").find("input[name='feedid']").val();
2410
+ var error = false;
2411
+ var regEx = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/;
2412
+
2413
+ if (email === '') {
2414
+ error = true;
2415
+ }
2416
+
2417
+ if (!regEx.test(email)) {
2418
+ error = true;
2419
+ }
2420
+
2421
+ if (!error) {
2422
+ SFSI(this).parents("form").submit();
2423
+ } else {
2424
+ alert("Error: Please provide your email address.");
2425
+ }
2426
+ });
2427
+
2428
+ SFSI('form#calimingOptimizationForm').on('keypress', function (e) {
2429
+ var keyCode = e.keyCode || e.which;
2430
+ if (keyCode === 13) {
2431
+ e.preventDefault();
2432
+ return false;
2433
+ }
2434
+ });
2435
+
2436
+ /*SFSI(".checkbox").live("click", function()
2437
+ {
2438
+ var s = SFSI(this).parent().find("input:checkbox:first");
2439
+ "sfsi_plus_float_on_page" == s.attr("name") && "yes" == s.val() && (
2440
+ SFSI('input[name="sfsi_plus_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_plus_icons_stick"][value="yes"]').removeAttr("checked"),
2441
+ SFSI('input[name="sfsi_plus_icons_stick"][value="no"]').parent().find("span").attr("style", "background-position:0px -41px;"),
2442
+ SFSI('input[name="sfsi_plus_icons_stick"][value="yes"]').parent().find("span").attr("style", "background-position:0px -0px;"));
2443
+ });
2444
+ SFSI(".radio").live("click", function()
2445
+ {
2446
+ var s = SFSI(this).parent().find("input:radio:first");
2447
+ var a = SFSI(".cstmfltonpgstck");
2448
+ ("sfsi_plus_icons_stick" == s.attr("name") && "yes" == s.val()) && (
2449
+ SFSI('input[name="sfsi_plus_float_on_page"][value="no"]').prop("checked", !0), SFSI('input[name="sfsi_plus_float_on_page"][value="yes"]').prop("checked", !1),
2450
+ SFSI('input[name="sfsi_plus_float_on_page"][value="no"]').parent().find("span.checkbox").attr("style", "background-position:0px -41px;"),
2451
+ SFSI('input[name="sfsi_plus_float_on_page"][value="yes"]').parent().find("span.checkbox").attr("style", "background-position:0px -0px;"),
2452
+ jQuery(a).children(".checkbox").css("background-position", "0px 0px" ), sfsiplus_toggleflotpage(a));
2453
+ });*/
2454
+ SFSI(document).on("click", ".sfsi_plus-AddThis-notice-dismiss", function () {
2455
+ SFSI.ajax({
2456
+ url: sfsi_plus_ajax_object.ajax_url,
2457
+ type: "post",
2458
+ data: {
2459
+ action: "sfsi_plus_dismiss_addThis_icon_notice"
2460
+ },
2461
+ success: function (e) {
2462
+ if (false != e) {
2463
+ SFSI(".sfsi_plus-AddThis-notice-dismiss").parent().remove();
2464
+ }
2465
+ }
2466
+ });
2467
+ });
2468
+ if (undefined !== window.location.hash) {
2469
+ switch (window.location.hash) {
2470
+ case '#ui-id-1':
2471
+ SFSI('#ui-id-1').removeClass('ui-corner-all').addClass('accordion-header-active ui-state-active ui-corner-top');
2472
+ SFSI('#ui-id-2').css({
2473
+ 'display': 'block'
2474
+ });
2475
+ window.scroll(0, 30);
2476
+ break;
2477
+ case '#ui-id-5':
2478
+ SFSI('#ui-id-5').removeClass('ui-corner-all').addClass('accordion-header-active ui-state-active ui-corner-top');
2479
+ SFSI('#ui-id-6').css({
2480
+ 'display': 'block'
2481
+ });
2482
+ window.scroll(0, 30);
2483
+ var scrolto_elem = SFSI('.sfsiplusbeforeafterpostselector');
2484
+ if (scrolto_elem && scrolto_elem.length > 0 && scrolto_elem.offset() && scrolto_elem.offset().top) {
2485
+ window.scrollTo(0, scrolto_elem.offset().top - 30);
2486
+ setTimeout(function () {
2487
+ window.scrollTo(0, scrolto_elem.offset().top - 30);
2488
+ }, 1000);
2489
+ }
2490
+ break;
2491
+ }
2492
+ }
2493
+ sfsi_plus_checkbox_checker();
2494
+ });
2495
+
2496
+ //for utube channel name and id
2497
+ function showhideutube(ref) {
2498
+ var chnlslctn = SFSI(ref).children("input").val();
2499
+ if (chnlslctn == "name") {
2500
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideDown();
2501
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideUp();
2502
+ } else {
2503
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideDown();
2504
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideUp();
2505
+ }
2506
+ }
2507
+
2508
+ var sfsiplus_initTop = new Array();
2509
+
2510
+ function sfsiplus_toggleflotpage(ref) {
2511
+ var pos = jQuery(ref).children(".checkbox").css("background-position");
2512
+ if (pos == "0px 0px") {
2513
+ jQuery(ref).next(".sfsiplus_right_info").children("p").children(".sfsiplus_sub-subtitle").hide();
2514
+ jQuery(ref).next(".sfsiplus_right_info").children(".sfsiplus_tab_3_icns").hide();
2515
+ } else {
2516
+ jQuery(ref).next(".sfsiplus_right_info").children("p").children(".sfsiplus_sub-subtitle").show();
2517
+ jQuery(ref).next(".sfsiplus_right_info").children(".sfsiplus_tab_3_icns").show();
2518
+ }
2519
+ }
2520
+
2521
+ function sfsiplus_togglbtmsection(show, hide, ref) {
2522
+ jQuery(ref).parent("ul").children("li.clckbltglcls").each(function (index, element) {
2523
+ jQuery(this).children(".radio").css("background-position", "0px 0px");
2524
+ jQuery(this).children(".styled").attr("checked", "false");
2525
+ });
2526
+ jQuery(ref).children(".radio").css("background-position", "0px -41px");
2527
+ jQuery(ref).children(".styled").attr("checked", "true");
2528
+
2529
+ jQuery("." + show).show();
2530
+ jQuery("." + show).children(".radiodisplaysection").show();
2531
+ jQuery("." + hide).hide();
2532
+ jQuery("." + hide).children(".radiodisplaysection").hide();
2533
+ /*jQuery(ref).parent("ul").children("li").each(function(index, element)
2534
+ {
2535
+ var pos = jQuery(this).children(".radio").css("background-position");
2536
+ if(pos == "0px 0px")
2537
+ {
2538
+ jQuery(this).children(".radiodisplaysection").hide();
2539
+ }
2540
+ else
2541
+ {
2542
+ jQuery(this).children(".radiodisplaysection").show();
2543
+ }
2544
+ });
2545
+ var pos = jQuery(ref).children(".radio").css("background-position");
2546
+ if(pos != "0px 0px")
2547
+ {
2548
+ jQuery(ref).children(".radiodisplaysection").show();
2549
+ }
2550
+ else
2551
+ {
2552
+ jQuery(ref).children(".radiodisplaysection").hide();
2553
+ }*/
2554
+ }
2555
+
2556
+ function checkforinfoslction(ref) {
2557
+ var pos = jQuery(ref).children(".checkbox").css("background-position");
2558
+ if (pos == "0px 0px") {
2559
+ jQuery(ref).next(".sfsiplus_right_info").children("p").children("label").hide();
2560
+ } else {
2561
+ jQuery(ref).next(".sfsiplus_right_info").children("p").children("label").show();
2562
+ }
2563
+ }
2564
+ SFSI("body").on("click", ".sfsi_plus_tokenGenerateButton a", function () {
2565
+ var clienId = SFSI("input[name='sfsi_plus_instagram_clientid']").val();
2566
+ var redirectUrl = SFSI("input[name='sfsi_plus_instagram_appurl']").val();
2567
+
2568
+ var scope = "basic";
2569
+ var instaUrl = "https://www.instagram.com/oauth/authorize/?client_id=<id>&redirect_uri=<url>&response_type=token&scope=" + scope;
2570
+
2571
+ if (clienId !== '' && redirectUrl !== '') {
2572
+ instaUrl = instaUrl.replace('<id>', clienId);
2573
+ instaUrl = instaUrl.replace('<url>', redirectUrl);
2574
+
2575
+ window.open(instaUrl, '_blank');
2576
+ } else {
2577
+ alert("Please enter client id and redirect url first");
2578
+ }
2579
+
2580
+ });
2581
+ SFSI(document).on("click", '.radio', function () {
2582
+
2583
+ var s = SFSI(this).parent().find("input:radio:first");
2584
+
2585
+ switch (s.attr("name")) {
2586
+
2587
+ case 'sfsi_plus_mouseOver_effect_type':
2588
+
2589
+ var _val = s.val();
2590
+ var _name = s.attr("name");
2591
+
2592
+ if ('same_icons' == _val) {
2593
+ SFSI('.same_icons_effects').removeClass('hide').addClass('show');
2594
+ SFSI('.other_icons_effects_options').removeClass('show').addClass('hide');
2595
+ } else if ('other_icons' == _val) {
2596
+ SFSI('.same_icons_effects').removeClass('show').addClass('hide');
2597
+ SFSI('.other_icons_effects_options').removeClass('hide').addClass('show');
2598
+ }
2599
+
2600
+ break;
2601
+ }
2602
+ });
2603
+
2604
+ function getElementPosition(element) {
2605
+ var xPosition = 0;
2606
+ var yPosition = 0;
2607
+
2608
+ while (element) {
2609
+ xPosition += (element.offsetLeft - element.scrollLeft + element.clientLeft);
2610
+ yPosition += (element.offsetTop - element.scrollTop + element.clientTop);
2611
+ element = element.offsetParent;
2612
+ }
2613
+
2614
+ return {
2615
+ x: xPosition,
2616
+ y: yPosition
2617
+ };
2618
+ }
2619
+ SFSI(document).ready(function () {
2620
+ SFSI('#sfsi_plus_jivo_offline_chat .tab-link').click(function () {
2621
+ var cur = SFSI(this);
2622
+ if (!cur.hasClass('active')) {
2623
+ var target = cur.find('a').attr('href');
2624
+ cur.parent().children().removeClass('active');
2625
+ cur.addClass('active');
2626
+ SFSI('#sfsi_plus_jivo_offline_chat .tabs').children().hide();
2627
+ SFSI(target).show();
2628
+ }
2629
+ });
2630
+ SFSI('#sfsi_plus_jivo_offline_chat #sfsi_sales form').submit(function (event) {
2631
+ event & event.preventDefault();
2632
+ var target = SFSI(this).parents('.tab-content');
2633
+ var message = SFSI(this).find('textarea[name="question"]').val();
2634
+ var email = SFSI(this).find('input[name="email"]').val();
2635
+ 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,}))$/;
2636
+ var nonce = SFSI(this).find('input[name="nonce"]').val();
2637
+
2638
+ if ("" === email || false === re.test(String(email).toLowerCase())) {
2639
+ SFSI(this).find('input[name="email"]').css('background-color', 'red');
2640
+ SFSI(this).find('input[name="email"]').on('keyup', function () {
2641
+ 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,}))$/;
2642
+ var email = SFSI(this).val();
2643
+ if ("" !== email && true === re.test(String(email).toLowerCase())) {
2644
+ SFSI(this).css('background-color', '#fff');
2645
+ }
2646
+ })
2647
+ return false;
2648
+
2649
+ }
2650
+ SFSI.ajax({
2651
+ url: sfsi_plus_ajax_object.ajax_url,
2652
+ type: "post",
2653
+ data: {
2654
+ action: "sfsiplusOfflineChatMessage",
2655
+ message: message,
2656
+ email: email,
2657
+ nonce: nonce
2658
+ }
2659
+ }).done(function () {
2660
+ target.find('.before_message_sent').hide();
2661
+ target.find('.after_message_sent').show();
2662
+ });
2663
+ });
2664
+ });
2665
+
2666
+ function sfsi_close_offline_chat(e) {
2667
+ e && e.preventDefault();
2668
+
2669
+ SFSI('#sfsi_plus_jivo_offline_chat').hide();
2670
+ SFSI('#sfsi_dummy_chat_icon').show();
2671
+ }
2672
+ if (undefined == window.sfsi_plus_float_widget) {
2673
+ function sfsi_plus_float_widget(data = null, data2 = null, data3 = null) {
2674
+ return true;
2675
+ }
2676
+ }
2677
+ sfsi_plus_responsive_icon_intraction_handler();
2678
+
2679
+ SFSI(document).on("click", '.checkbox', function () {
2680
+
2681
+ var s = SFSI(this).parent().find("input:checkbox:first");
2682
+
2683
+ var inputName = s.attr("name");
2684
+ var inputChecked = s.attr("checked");
2685
+
2686
+ //----------------- Customization for twitter card section STARTS----------------------------//
2687
+
2688
+ switch (inputName) {
2689
+
2690
+ case 'sfsi_plus_twitter_aboutPage':
2691
+
2692
+ var elem = SFSI('.sfsi_navigate_to_question6');
2693
+ var elemC = SFSI('#twitterSettingContainer');
2694
+
2695
+ if (inputChecked) {
2696
+ elem.addClass('addCss').removeClass('removeCss');
2697
+ elemC.css('display', 'block');
2698
+ } else {
2699
+ elem.removeClass('addCss').addClass('removeCss');
2700
+ elemC.css('display', 'none');
2701
+ }
2702
+
2703
+ var chkd = SFSI("input[name='sfsi_plus_twitter_twtAddCard']:checked").val();
2704
+
2705
+ if (inputChecked) {
2706
+ SFSI(".contTwitterCard").show("slow");
2707
+ if (chkd == "no") {
2708
+ SFSI(".cardDataContainer").hide();
2709
+ }
2710
+ } else {
2711
+ if (chkd == "yes") {
2712
+ SFSI('input[value="yes"][name="sfsi_plus_twitter_twtAddCard"]').prop("checked", false);
2713
+ SFSI('input[value="no"][name="sfsi_plus_twitter_twtAddCard"]').prop("checked", true);
2714
+ }
2715
+ SFSI(".contTwitterCard").hide("slow");
2716
+ }
2717
+
2718
+ break;
2719
+
2720
+ case 'sfsi_plus_Hide_popupOnScroll':
2721
+ case 'sfsi_plus_Hide_popupOn_OutsideClick':
2722
+
2723
+ var elem = SFSI('input[name="' + inputName + '"]');
2724
+
2725
+ if (inputChecked) {
2726
+ elem.val("yes");
2727
+ } else {
2728
+ elem.val("no");
2729
+ }
2730
+
2731
+ break;
2732
+
2733
+ case 'sfsi_plus_mouseOver':
2734
+
2735
+ var elem = SFSI('input[name="' + inputName + '"]');
2736
+
2737
+ var togglelem = SFSI('.mouse-over-effects');
2738
+
2739
+ if (inputChecked) {
2740
+ togglelem.removeClass('hide').addClass('show');
2741
+ } else {
2742
+ togglelem.removeClass('show').addClass('hide');
2743
+ }
2744
+
2745
+ break;
2746
+
2747
+
2748
+ case 'sfsi_plus_shuffle_icons':
2749
+
2750
+ var elem = SFSI('input[name="' + inputName + '"]');
2751
+
2752
+ var togglelem = SFSI('.shuffle_sub');
2753
+
2754
+ if (inputChecked) {
2755
+ togglelem.removeClass('hide').addClass('show');
2756
+ } else {
2757
+ togglelem.removeClass('show').addClass('hide');
2758
+ }
2759
+
2760
+ break;
2761
+
2762
+ case 'sfsi_plus_place_rectangle_icons_item_manually':
2763
+ var elem = SFSI('input[name="' + inputName + '"]');
2764
+
2765
+ var togglelem = elem.parent().next();
2766
+
2767
+ if (inputChecked) {
2768
+ togglelem.removeClass('hide').addClass('show');
2769
+ } else {
2770
+ togglelem.removeClass('show').addClass('hide');
2771
+ }
2772
+
2773
+ break;
2774
+
2775
+ case 'sfsi_plus_icon_hover_show_pinterest':
2776
+ var elem = SFSI('input[name="' + inputName + '"]');
2777
+
2778
+ var togglelem = elem.parent().next();
2779
+
2780
+ if (inputChecked) {
2781
+
2782
+ togglelem.removeClass('hide').addClass('show');
2783
+ SFSI('.sfsi_plus_include_exclude_wrapper .sfsi_premium_restriction_warning_pinterest').removeClass('hide');
2784
+ } else {
2785
+ togglelem.removeClass('show').addClass('hide');
2786
+ SFSI('.sfsi_plus_include_exclude_wrapper .sfsi_premium_restriction_warning_pinterest').addClass('hide');
2787
+ }
2788
+
2789
+ break;
2790
+
2791
+ case 'sfsi_plus_houzzShare_option':
2792
+
2793
+ var elem = SFSI('input[name="' + inputName + '"]');
2794
+
2795
+ var togglelem = SFSI('.houzzideabooks');
2796
+
2797
+ if (inputChecked) {
2798
+ togglelem.removeClass('hide').addClass('show');
2799
+ } else {
2800
+ togglelem.removeClass('show').addClass('hide');
2801
+ }
2802
+
2803
+ break;
2804
+
2805
+ case 'sfsi_plus_wechatFollow_option':
2806
+
2807
+ var elem = SFSI('input[name="' + inputName + '"]');
2808
+
2809
+ var togglelem = SFSI('.sfsi_plus_wechat_follow_desc');
2810
+
2811
+ if (inputChecked) {
2812
+ togglelem.removeClass('hide').addClass('show').show();
2813
+ } else {
2814
+ togglelem.removeClass('show').addClass('hide').hide();
2815
+ }
2816
+
2817
+ break;
2818
+
2819
+ case 'sfsi_plus_fbmessengerShare_option':
2820
+ var elem = jQuery('.sfsi_premium_only_fbmessangershare');
2821
+ if (inputChecked) {
2822
+ elem.show();
2823
+ } else {
2824
+ elem.hide();
2825
+ }
2826
+ break;
2827
+ case 'sfsi_plus_responsive_facebook_display':
2828
+ if (inputChecked) {
2829
+ SFSI('.sfsi_plus_responsive_icon_facebook_container').parents('a').show();
2830
+ var icon = inputName.replace('sfsi_plus_responsive_', '').replace('_display', '');
2831
+ if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2832
+ window.sfsi_plus_fittext_shouldDisplay = true;
2833
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2834
+ if (jQuery(a_container).css('display') !== "none") {
2835
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2836
+ }
2837
+ })
2838
+ }
2839
+ } else {
2840
+
2841
+ SFSI('.sfsi_plus_responsive_icon_facebook_container').parents('a').hide();
2842
+ if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2843
+ window.sfsi_plus_fittext_shouldDisplay = true;
2844
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2845
+ if (jQuery(a_container).css('display') !== "none") {
2846
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2847
+ }
2848
+ })
2849
+ }
2850
+ }
2851
+ break;
2852
+ case 'sfsi_plus_responsive_Twitter_display':
2853
+ if (inputChecked) {
2854
+ SFSI('.sfsi_plus_responsive_icon_twitter_container').parents('a').show();
2855
+ var icon = inputName.replace('sfsi_plus_responsive_', '').replace('_display', '');
2856
+ if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2857
+ window.sfsi_plus_fittext_shouldDisplay = true;
2858
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2859
+ if (jQuery(a_container).css('display') !== "none") {
2860
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2861
+ }
2862
+ })
2863
+ }
2864
+ } else {
2865
+ SFSI('.sfsi_plus_responsive_icon_twitter_container').parents('a').hide();
2866
+ if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2867
+ window.sfsi_plus_fittext_shouldDisplay = true;
2868
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2869
+ if (jQuery(a_container).css('display') !== "none") {
2870
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2871
+ }
2872
+ })
2873
+ }
2874
+ }
2875
+ break;
2876
+ case 'sfsi_plus_responsive_Follow_display':
2877
+ if (inputChecked) {
2878
+ SFSI('.sfsi_plus_responsive_icon_follow_container').parents('a').show();
2879
+ var icon = inputName.replace('sfsi_plus_responsive_', '').replace('_display', '');
2880
+ if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2881
+ window.sfsi_plus_fittext_shouldDisplay = true;
2882
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2883
+ if (jQuery(a_container).css('display') !== "none") {
2884
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2885
+ }
2886
+ })
2887
+ }
2888
+ } else {
2889
+ SFSI('.sfsi_plus_responsive_icon_follow_container').parents('a').hide();
2890
+ if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() !== "Fully responsive") {
2891
+ window.sfsi_plus_fittext_shouldDisplay = true;
2892
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
2893
+ if (jQuery(a_container).css('display') !== "none") {
2894
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
2895
+ }
2896
+ })
2897
+ }
2898
+ }
2899
+ break;
2900
+
2901
+ }
2902
+
2903
+ var checkboxElem = SFSI(this);
2904
+ sfsi_toggle_include_exclude_posttypes_taxonomies(checkboxElem, inputName, inputChecked, s);
2905
+
2906
+ //----------------- Customization for Twitter add card CLOSES----------------------------//
2907
+
2908
+
2909
+ ("sfsi_plus_shuffle_Firstload" == s.attr("name") && "checked" == s.attr("checked") || "sfsi_plus_shuffle_interval" == s.attr("name") && "checked" == s.attr("checked")) && (SFSI('input[name="sfsi_plus_shuffle_icons"]').parent().find("span").css("background-position", "0px -36px"),
2910
+ SFSI('input[name="sfsi_plus_shuffle_icons"]').attr("checked", "checked")), "sfsi_plus_shuffle_icons" == s.attr("name") && "checked" != s.attr("checked") && (SFSI('input[name="sfsi_plus_shuffle_Firstload"]').removeAttr("checked"),
2911
+ SFSI('input[name="sfsi_plus_shuffle_Firstload"]').parent().find("span").css("background-position", "0px 0px"),
2912
+ SFSI('input[name="sfsi_plus_shuffle_interval"]').removeAttr("checked"), SFSI('input[name="sfsi_plus_shuffle_interval"]').parent().find("span").css("background-position", "0px 0px"));
2913
+ var sfsi_plus_icon_hover_switch_exclude_custom_post_types = SFSI('input[name="sfsi_plus_icon_hover_switch_exclude_custom_post_types"]:checked').val() || 'no';
2914
+ var sfsi_plus_icon_hover_switch_exclude_taxonomies = SFSI('input[name="sfsi_plus_icon_hover_switch_exclude_taxonomies"]:checked').val() || 'no';
2915
+
2916
+
2917
+
2918
+ });
2919
+
2920
+
2921
+ function sfsi_toggle_include_exclude_posttypes_taxonomies(checkboxElem, inputFieldName, inputChecked, inputFieldElem) {
2922
+
2923
+ switch (inputFieldName) {
2924
+
2925
+ case 'sfsi_plus_switch_exclude_custom_post_types':
2926
+ case 'sfsi_plus_switch_include_custom_post_types':
2927
+ case 'sfsi_plus_icon_hover_switch_exclude_custom_post_types':
2928
+ case 'sfsi_plus_icon_hover_switch_include_custom_post_types':
2929
+
2930
+ var elem = inputFieldElem.parent().parent().find("#sfsi_premium_custom_social_data_post_types_ul");
2931
+
2932
+ if (inputChecked) {
2933
+ elem.show();
2934
+ } else {
2935
+ elem.hide();
2936
+ }
2937
+
2938
+ break;
2939
+
2940
+ case 'sfsi_plus_switch_exclude_taxonomies':
2941
+ case 'sfsi_plus_switch_include_taxonomies':
2942
+ case 'sfsi_plus_icon_hover_switch_exclude_taxonomies':
2943
+ case 'sfsi_plus_icon_hover_switch_include_taxonomies':
2944
+
2945
+ var elem = inputFieldElem.parent().parent().find("#sfsi_premium_taxonomies_ul");
2946
+
2947
+ if (inputChecked) {
2948
+ elem.show();
2949
+ } else {
2950
+ elem.hide();
2951
+ }
2952
+
2953
+ break;
2954
+
2955
+ case 'sfsi_plus_include_url':
2956
+ case 'sfsi_plus_exclude_url':
2957
+
2958
+ var value = checkboxElem.css("background-position");
2959
+ var keyWCnt = checkboxElem.parent().next().next();
2960
+
2961
+ if (value === '0px -36px') {
2962
+ keyWCnt.show();
2963
+ keyWCnt.next().show();
2964
+ } else {
2965
+ keyWCnt.hide();
2966
+ keyWCnt.next().hide();
2967
+ }
2968
+
2969
+ break;
2970
+ }
2971
+ }
2972
+
2973
+
2974
+
2975
+ function open_save_image(btnUploadID, inputImageId, previewDivId) {
2976
+
2977
+ var btnElem, inputImgElem, previewDivElem;
2978
+
2979
+ var clickHandler = function (event) {
2980
+
2981
+ var send_attachment_bkp = wp.media.editor.send.attachment;
2982
+
2983
+ var frame = wp.media({
2984
+ title: 'Select or Upload Media for Social Media',
2985
+ button: {
2986
+ text: 'Use this media'
2987
+ },
2988
+ multiple: false // Set to true to allow multiple files to be selected
2989
+ });
2990
+
2991
+ frame.on('select', function () {
2992
+
2993
+ // Get media attachment details from the frame state
2994
+ var attachment = frame.state().get('selection').first().toJSON(),
2995
+
2996
+ url = attachment.url.split("/");
2997
+ fileName = url[url.length - 1];
2998
+ fileArr = fileName.split(".");
2999
+ fileType = fileArr[fileArr.length - 1];
3000
+
3001
+ if (fileType != undefined && (fileType == 'gif' || fileType == 'jpeg' || fileType == 'jpg' || fileType == 'png')) {
3002
+
3003
+ inputImgElem.val(attachment.url);
3004
+ previewDivElem.attr('src', attachment.url);
3005
+
3006
+ btnElem.val("Change Picture");
3007
+
3008
+ wp.media.editor.send.attachment = send_attachment_bkp;
3009
+ } else {
3010
+ alert("Only Images are allowed to upload");
3011
+ frame.open();
3012
+ }
3013
+ });
3014
+
3015
+ // Finally, open the modal on click
3016
+ frame.open();
3017
+ return false;
3018
+ };
3019
+
3020
+ if ("object" === typeof btnUploadID && null !== btnUploadID) {
3021
+
3022
+ btnElem = SFSI(btnUploadID);
3023
+ inputImgElem = btnElem.parent().find('input[type="hidden"]');
3024
+ previewDivElem = btnElem.parent().find('img');
3025
+
3026
+ clickHandler();
3027
+ } else {
3028
+ btnElem = SFSI('#' + btnUploadID);
3029
+ inputImgElem = SFSI('#' + inputImageId);
3030
+ previewDivElem = SFSI('#' + previewDivId);
3031
+
3032
+ btnElem.on("click", clickHandler);
3033
+ }
3034
+
3035
+ }
3036
+
3037
+
3038
+ function upload_image_wechat_scan(e) {
3039
+ e.preventDefault();
3040
+ var send_attachment_bkp = wp.media.editor.send.attachment;
3041
+
3042
+ var frame = wp.media({
3043
+ title: 'Select or Upload image for icon',
3044
+ button: {
3045
+ text: 'Use this media'
3046
+ },
3047
+ multiple: false // Set to true to allow multiple files to be selected
3048
+ });
3049
+
3050
+ frame.on('select', function () {
3051
+
3052
+ // Get media attachment details from the frame state
3053
+ var attachment = frame.state().get('selection').first().toJSON();
3054
+
3055
+ var url = attachment.url.split("/");
3056
+ var fileName = url[url.length - 1];
3057
+ var fileArr = fileName.split(".");
3058
+ var fileType = fileArr[fileArr.length - 1];
3059
+
3060
+ if (fileType != undefined && (fileType == 'jpeg' || fileType == 'jpg' || fileType == 'png' || fileType == 'gif')) {
3061
+ jQuery('input[name="sfsi_plus_wechat_scan_image"]').val(attachment.url);
3062
+ jQuery('.sfsi_plus_wechat_display>img').attr('src', attachment.url);
3063
+ jQuery('.sfsi_plus_wechat_display').removeClass("hide").addClass('show');
3064
+ jQuery('.sfsi_plus_wechat_instruction').removeClass("show").addClass('hide');
3065
+ wp.media.editor.send.attachment = send_attachment_bkp;
3066
+ } else {
3067
+ alert("Only Images are allowed to upload");
3068
+ frame.open();
3069
+ }
3070
+ });
3071
+
3072
+ // Finally, open the modal on click
3073
+ frame.open();
3074
+ }
3075
+
3076
+ function sfsi_plus_delete_wechat_scan_upload(event, context) {
3077
+ event.preventDefault();
3078
+ if (context === "from-server") {
3079
+ e = {
3080
+ action: "sfsi_plus_deleteWebChatFollow"
3081
+ };
3082
+ jQuery.ajax({
3083
+ url: ajax_object.ajax_url,
3084
+ type: "post",
3085
+ data: e,
3086
+ dataType: "json",
3087
+ async: !0,
3088
+ success: function (s) {
3089
+ if (s.res == 'success') {
3090
+ jQuery('input[name="sfsi_plus_wechat_scan_image"]').val('');
3091
+ jQuery('.sfsi_plus_wechat_display>img').attr('src', '');
3092
+ jQuery('.sfsi_plus_wechat_display').removeClass("show").addClass('hide');
3093
+ jQuery('.sfsi_plus_wechat_instruction').removeClass("hide").addClass('show');
3094
+ // sfsiplus_afterIconSuccess(s);
3095
+ } else {
3096
+ SFSI(".upload-overlay").hide("slow");
3097
+ SFSI(".uperror").html(s.res);
3098
+ sfsiplus_showErrorSuc("Error", "Some Error Occured During Delete of wechat scan", 1)
3099
+ }
3100
+ }
3101
+ });
3102
+ } else {
3103
+ jQuery('input[name="sfsi_plus_wechat_scan_image"]').val('');
3104
+ jQuery('.sfsi_plus_wechat_display>img').attr('src', '');
3105
+ jQuery('.sfsi_plus_wechat_display').removeClass("show").addClass('hide');
3106
+ jQuery('.sfsi_plus_wechat_instruction').removeClass("hide").addClass('show');
3107
+ }
3108
+ }
3109
+
3110
+ function sfsi_plus_checkbox_checker() {
3111
+ //check if it is options page
3112
+ if (window.location.pathname.endsWith('admin.php')) {
3113
+ // check if Custom checkbox is loaded.
3114
+ if (undefined !== this.sfsi_plus_styled_input) {
3115
+ jQuery(window).load(function () {
3116
+ if (undefined == window.sfsi_plus_checkbox_loaded) {
3117
+ alert('There was js conflict. and we couldn\'t load our plugin successfully. please check with other plugins for the conflict.');
3118
+ }
3119
+ })
3120
+ } else {
3121
+ alert('Script for custom checkbox couldnot be loaded. you might not be able to see the checkbox. it might happen due to caching or plugin conflicts.');
3122
+ }
3123
+ }
3124
+ }
3125
+
3126
+ function sfsi_plus_close_quickpay(e) {
3127
+ e && e.preventDefault();
3128
+ jQuery('.sfsi_plus_quickpay-overlay').hide();
3129
+ }
3130
+
3131
+ // Worker Plugin
3132
+ function sfsi_plus_worker_plugin(data)
3133
+ {
3134
+ var nonce = SFSI("#sfsi_plus_worker_plugin").attr("data-nonce");
3135
+ var redirectUrl = SFSI("#sfsi_plus_worker_plugin").attr("data-plugin-list-url");
3136
+ var e = {
3137
+ action:"worker_plugin",
3138
+ customs: true,
3139
+ premium_url:data.installation_premium_plugin_file,
3140
+ licence:data.license_key,
3141
+ nonce: nonce
3142
+ };
3143
+ sfsi_plus_worker_wait();
3144
+ SFSI.ajax({
3145
+ url:sfsi_plus_ajax_object.ajax_url,
3146
+ type:"post",
3147
+ data:e,
3148
+ success:function(msg) {
3149
+ window.msg = msg;
3150
+ var error =false;
3151
+ var message ="";
3152
+ if(msg[0]=="{"){
3153
+ message = JSON.parse(msg);
3154
+ }else{
3155
+ var json_txts = msg.match(/\{.*\}/g);
3156
+ if(json_txts.length>0){
3157
+ message = JSON.parse(json_txts[0])
3158
+ }else{
3159
+ error = true;
3160
+ }
3161
+ }
3162
+ if(false==error && message.installed==true && message.activate==null){
3163
+ window.location.href = redirectUrl;
3164
+ }else{
3165
+ jQuery('.sfsi_plus_premium_installer-overlay').hide();
3166
+ alert('unexpected error occured It might be due to server permission issue. Please download the file and install manually.');
3167
+ }
3168
+ },
3169
+ error:function(msg){
3170
+ jQuery('.sfsi_plus_premium_installer-overlay').hide();
3171
+ alert('unexpected error occured It might be due to server permission issue. Please install manually.');
3172
+ }
3173
+ });
3174
+
3175
+ }
3176
+
3177
+ // <------------------------* Responsive icon *----------------------->
3178
+ function sfsi_plus_responsive_icon_intraction_handler() {
3179
+ window.sfsi_plus_fittext_shouldDisplay = true;
3180
+ SFSI('select[name="sfsi_plus_responsive_icons_settings_edge_type"]').on('change', function () {
3181
+ $target_div = (SFSI(this).parent());
3182
+ if (SFSI(this).val() === "Round") {
3183
+
3184
+ $target_div.parent().children().css('display', 'inline-block');
3185
+ var radius = jQuery('select[name="sfsi_plus_responsive_icons_settings_edge_radius"]').val() + 'px'
3186
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('border-radius', radius);
3187
+
3188
+ } else {
3189
+
3190
+ $target_div.parent().children().hide();
3191
+ $target_div.show();
3192
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('border-radius', 'unset');
3193
+
3194
+ }
3195
+ });
3196
+ SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').on('change', function () {
3197
+ $target_div = (SFSI(this).parent());
3198
+ if (SFSI(this).val() === "Fixed icon width") {
3199
+ $target_div.parent().children().css('display', 'inline-block');
3200
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').css('width', 'auto').css('display', 'flex');
3201
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a').css('flex-basis', 'unset');
3202
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').css('width', jQuery('input[name="sfsi_plus_responsive_icons_sttings_icon_width_size"]').val());
3203
+
3204
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container_box_fully_container').removeClass('sfsi_plus_icons_container_box_fully_container').addClass('sfsi_plus_icons_container_box_fixed_container');
3205
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container_box_fixed_container').removeClass('sfsi_plus_icons_container_box_fully_container').addClass('sfsi_plus_icons_container_box_fixed_container');
3206
+ window.sfsi_plus_fittext_shouldDisplay = true;
3207
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3208
+ if (jQuery(a_container).css('display') !== "none") {
3209
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3210
+ }
3211
+ })
3212
+ } else {
3213
+ $target_div.parent().children().hide();
3214
+ $target_div.show();
3215
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').css('width', '100%').css('display', 'flex');
3216
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a').css('flex-basis', '100%');
3217
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').css('width', '100%');
3218
+
3219
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container_box_fixed_container').removeClass('sfsi_plus_icons_container_box_fixed_container').addClass('sfsi_plus_icons_container_box_fully_container');
3220
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container_box_fully_container').removeClass('sfsi_plus_icons_container_box_fixed_container').addClass('sfsi_plus_icons_container_box_fully_container');
3221
+ window.sfsi_plus_fittext_shouldDisplay = true;
3222
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3223
+ if (jQuery(a_container).css('display') !== "none") {
3224
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3225
+ }
3226
+ })
3227
+ }
3228
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').removeClass('sfsi_plus_fixed_count_container').removeClass('sfsi_plus_responsive_count_container').addClass('sfsi_plus_' + (jQuery(this).val() == "Fully responsive" ? 'responsive' : 'fixed') + '_count_container')
3229
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container>a').removeClass('sfsi_plus_responsive_fluid').removeClass('sfsi_plus_responsive_fixed_width').addClass('sfsi_plus_responsive_' + (jQuery(this).val() == "Fully responsive" ? 'fluid' : 'fixed_width'))
3230
+ sfsi_plus_resize_icons_container();
3231
+
3232
+ })
3233
+ jQuery(document).on('keyup', 'input[name="sfsi_plus_responsive_icons_sttings_icon_width_size"]', function () {
3234
+ if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
3235
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
3236
+ window.sfsi_plus_fittext_shouldDisplay = true;
3237
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3238
+ if (jQuery(a_container).css('display') !== "none") {
3239
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3240
+ }
3241
+ })
3242
+ }
3243
+ sfsi_plus_resize_icons_container();
3244
+ });
3245
+ jQuery(document).on('change', 'input[name="sfsi_plus_responsive_icons_sttings_icon_width_size"]', function () {
3246
+ if (SFSI('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
3247
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
3248
+ }
3249
+ });
3250
+ jQuery(document).on('keyup', 'input[name="sfsi_plus_responsive_icons_settings_margin"]', function () {
3251
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
3252
+ });
3253
+ jQuery(document).on('change', 'input[name="sfsi_plus_responsive_icons_settings_margin"]', function () {
3254
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
3255
+ // jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').css('width',(jQuery('.sfsi_plus_responsive_icons').width()-(jQuery('.sfsi_plus_responsive_icons_count').width()+jQuery(this).val()))+'px');
3256
+
3257
+ });
3258
+ jQuery(document).on('change', 'select[name="sfsi_plus_responsive_icons_settings_text_align"]', function () {
3259
+ if (jQuery(this).val() === "Centered") {
3260
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a').css('text-align', 'center');
3261
+ } else {
3262
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a').css('text-align', 'left');
3263
+ }
3264
+ });
3265
+ jQuery('.sfsi_plus_responsive_default_icon_container input.sfsi_plus_responsive_input').on('keyup', function () {
3266
+ jQuery(this).parent().find('.sfsi_plus_responsive_icon_item_container').find('span').text(jQuery(this).val());
3267
+ var iconName = jQuery(this).attr('name');
3268
+ var icon = iconName.replace('sfsi_plus_responsive_', '').replace('_input', '');
3269
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_' + (icon.toLowerCase()) + '_container span').text(jQuery(this).val());
3270
+ window.sfsi_plus_fittext_shouldDisplay = true;
3271
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3272
+ if (jQuery(a_container).css('display') !== "none") {
3273
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3274
+ }
3275
+ })
3276
+ sfsi_plus_resize_icons_container();
3277
+ })
3278
+ jQuery('.sfsi_plus_responsive_custom_icon_container input.sfsi_plus_responsive_input').on('keyup', function () {
3279
+ jQuery(this).parent().find('.sfsi_plus_responsive_icon_item_container').find('span').text(jQuery(this).val());
3280
+ var iconName = jQuery(this).attr('name');
3281
+ var icon = iconName.replace('sfsi_plus_responsive_custom_', '').replace('_input', '');
3282
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_' + icon + '_container span').text(jQuery(this).val())
3283
+ window.sfsi_plus_fittext_shouldDisplay = true;
3284
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3285
+ if (jQuery(a_container).css('display') !== "none") {
3286
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3287
+ }
3288
+ })
3289
+ sfsi_plus_resize_icons_container();
3290
+
3291
+ })
3292
+ jQuery('.sfsi_plus_responsive_custom_url_toggler, .sfsi_plus_responsive_default_url_toggler').click(function (event) {
3293
+ event.preventDefault();
3294
+ sfsi_plus_responsive_open_url(event);
3295
+ });
3296
+ jQuery('.sfsi_plus_responsive_custom_url_toggler, .sfsi_plus_responsive_default_url_toggler').click(function (event) {
3297
+ event.preventDefault();
3298
+ sfsi_plus_responsive_open_url(event);
3299
+ })
3300
+ jQuery('.sfsi_plus_responsive_custom_url_hide, .sfsi_plus_responsive_default_url_hide').click(function (event) {
3301
+ event.preventDefault();
3302
+ jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_custom_url_hide').hide();
3303
+ jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_url_input').hide();
3304
+ jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_default_url_hide').hide();
3305
+ jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_default_url_toggler').show();
3306
+ jQuery(event.target).parent().parent().find('.sfsi_plus_responsive_custom_url_toggler').show();
3307
+ });
3308
+ jQuery('select[name="sfsi_plus_responsive_icons_settings_icon_size"]').change(function (event) {
3309
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').removeClass('sfsi_plus_small_button').removeClass('sfsi_plus_medium_button').removeClass('sfsi_plus_large_button').addClass('sfsi_plus_' + (jQuery(this).val().toLowerCase()) + '_button');
3310
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').removeClass('sfsi_plus_small_button_container').removeClass('sfsi_plus_medium_button_container').removeClass('sfsi_plus_large_button_container').addClass('sfsi_plus_' + (jQuery(this).val().toLowerCase()) + '_button_container')
3311
+ })
3312
+ jQuery(document).on('change', 'select[name="sfsi_plus_responsive_icons_settings_edge_radius"]', function (event) {
3313
+ var radius = jQuery(this).val() + 'px'
3314
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container,.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('border-radius', radius);
3315
+
3316
+ });
3317
+ jQuery(document).on('change', 'select[name="sfsi_plus_responsive_icons_settings_style"]', function (event) {
3318
+ if ('Flat' === jQuery(this).val()) {
3319
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').removeClass('sfsi_plus_responsive_icon_gradient');
3320
+ } else {
3321
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').addClass('sfsi_plus_responsive_icon_gradient');
3322
+ }
3323
+ });
3324
+ jQuery(document).on('mouseenter', '.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a', function () {
3325
+ jQuery(this).css('opacity', 0.8);
3326
+ })
3327
+ jQuery(document).on('mouseleave', '.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container a', function () {
3328
+ jQuery(this).css('opacity', 1);
3329
+ })
3330
+ window.sfsi_plus_fittext_shouldDisplay = true;
3331
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3332
+ if (jQuery(a_container).css('display') !== "none") {
3333
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3334
+ }
3335
+ })
3336
+ sfsi_plus_resize_icons_container();
3337
+ jQuery('.ui-accordion-header.ui-state-default.ui-accordion-icons').click(function (data) {
3338
+ window.sfsi_plus_fittext_shouldDisplay = true;
3339
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3340
+ if (jQuery(a_container).css('display') !== "none") {
3341
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3342
+ }
3343
+ })
3344
+ sfsi_plus_resize_icons_container();
3345
+ });
3346
+ jQuery('select[name="sfsi_plus_responsive_icons_settings_text_align"]').change(function (event) {
3347
+ var data = jQuery(event.target).val();
3348
+ if (data == "Centered") {
3349
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').removeClass('sfsi_plus_left-align_icon').addClass('sfsi_plus_centered_icon');
3350
+ } else {
3351
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container').removeClass('sfsi_plus_centered_icon').addClass('sfsi_plus_left-align_icon');
3352
+ }
3353
+ });
3354
+ jQuery('a.sfsi_plus_responsive_custom_delete_btn').click(function (event) {
3355
+ event.preventDefault();
3356
+ var icon_num = jQuery(this).attr('data-id');
3357
+ //reset the current block;
3358
+ // var last_block = jQuery('.sfsi_plus_responsive_custom_icon_4_container').clone();
3359
+ var cur_block = jQuery('.sfsi_plus_responsive_custom_icon_' + icon_num + '_container');
3360
+ cur_block.find('.sfsi_plus_responsive_custom_delete_btn').hide();
3361
+ cur_block.find('input[name="sfsi_plus_responsive_custom_' + icon_num + '_added"]').val('no');
3362
+ cur_block.find('.sfsi_plus_responsive_custom_' + icon_num + '_added').attr('value', 'no');
3363
+ cur_block.find('.radio_section.tb_4_ck .checkbox').click();
3364
+ cur_block.hide();
3365
+
3366
+
3367
+ if (icon_num > 0) {
3368
+ var prev_block = jQuery('.sfsi_plus_responsive_custom_icon_' + (icon_num - 1) + '_container');
3369
+ prev_block.find('.sfsi_plus_responsive_custom_delete_btn').show();
3370
+ }
3371
+ // jQuery('.sfsi_plus_responsive_custom_icon_container').each(function(index,custom_icon){
3372
+ // var target= jQuery(custom_icon);
3373
+ // target.find('.sfsi_plus_responsive_custom_delete_btn');
3374
+ // var custom_id = target.find('.sfsi_plus_responsive_custom_delete_btn').attr('data-id');
3375
+ // if(custom_id>icon_num){
3376
+ // target.removeClass('sfsi_plus_responsive_custom_icon_'+custom_id+'_container').addClass('sfsi_plus_responsive_custom_icon_'+(custom_id-1)+'_container');
3377
+ // target.find('input[name="sfsi_plus_responsive_custom_'+custom_id+'_added"]').attr('name',"sfsi_plus_responsive_custom_"+(custom_id-1)+"_added");
3378
+ // target.find('#sfsi_plus_responsive_'+custom_id+'_display').removeClass('sfsi_plus_responsive_custom_'+custom_id+'_display').addClass('sfsi_plus_responsive_custom_'+(custom_id-1)+'_display').attr('id','sfsi_plus_responsive_'+(custom_id-1)+'_display').attr('name','sfsi_plus_responsive_custom_'+(custom_id-1)+'_display').attr('data-custom-index',(custom_id-1));
3379
+ // target.find('.sfsi_plus_responsive_icon_item_container').removeClass('sfsi_plus_responsive_icon_custom_'+custom_id+'_container').addClass('sfsi_plus_responsive_icon_custom_'+(custom_id-1)+'_container');
3380
+ // target.find('.sfsi_plus_responsive_input').attr('name','sfsi_plus_responsive_custom_'+(custom_id-1)+'_input');
3381
+ // target.find('.sfsi_plus_responsive_url_input').attr('name','sfsi_plus_responsive_custom_'+(custom_id-1)+'_url_input');
3382
+ // target.find('.sfsi_plus_bg-color-picker').attr('name','sfsi_plus_responsive_icon_'+(custom_id-1)+'_bg_color');
3383
+ // target.find('.sfsi_plus_logo_upload sfsi_plus_logo_custom_'+custom_id+'_upload').removeClass('sfsi_plus_logo_upload sfsi_plus_logo_custom_'+custom_id+'_upload').addClass('sfsi_plus_logo_upload sfsi_plus_logo_custom_'+(custom_id-1)+'_upload');
3384
+ // target.find('input[type="sfsi_plus_responsive_icons_custom_'+custom_id+'_icon"]').attr('name','input[type="sfsi_plus_responsive_icons_custom_'+(custom_id-1)+'_icon"]');
3385
+ // target.find('.sfsi_plus_responsive_custom_delete_btn').attr('data-id',''+(custom_id-1));
3386
+ // }
3387
+ // });
3388
+ // // sfsi_plus_backend_section_beforeafter_set_fixed_width();
3389
+ // // jQuery(window).on('resize',sfsi_plus_backend_section_beforeafter_set_fixed_width);
3390
+ // var new_block=jQuery('.sfsi_plus_responsive_custom_icon_container').clone();
3391
+ // jQuery('.sfsi_plus_responsive_custom_icon_container').remove();
3392
+ // jQuery('.sfsi_plus_responsive_default_icon_container').parent().append(last_block).append();
3393
+ // jQuery('.sfsi_plus_responsive_default_icon_container').parent().append(new_block);
3394
+ // return false;
3395
+ })
3396
+ }
3397
+
3398
+ function sfsi_plus_responsive_icon_counter_tgl(hide, show, ref = null) {
3399
+ if (null !== hide && '' !== hide) {
3400
+ jQuery('.' + hide).hide();
3401
+ }
3402
+ if (null !== show && '' !== show) {
3403
+ jQuery('.' + show).show();
3404
+ }
3405
+ }
3406
+
3407
+ function sfsi_plus_responsive_toggle_count() {
3408
+ var data = jQuery('input[name="sfsi_plus_responsive_icon_show_count"]:checked').val();
3409
+ var data2 = jQuery('input[name="sfsi_plus_display_counts"]:checked').val();
3410
+ if (data2 == "yes" && 'yes' == data) {
3411
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('display', 'inline-block');
3412
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').removeClass('sfsi_plus_responsive_without_counter_icons').addClass('sfsi_plus_responsive_with_counter_icons');
3413
+ sfsi_plus_resize_icons_container();
3414
+ } else {
3415
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').css('display', 'none');
3416
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').removeClass('sfsi_plus_responsive_with_counter_icons').addClass('sfsi_plus_responsive_without_counter_icons');
3417
+ sfsi_plus_resize_icons_container();
3418
+ }
3419
+ }
3420
+
3421
+ function sfsi_plus_responsive_open_url(event) {
3422
+ jQuery(event.target).parent().find('.sfsi_plus_responsive_custom_url_hide').show();
3423
+ jQuery(event.target).parent().find('.sfsi_plus_responsive_default_url_hide').show();
3424
+ jQuery(event.target).parent().find('.sfsi_plus_responsive_url_input').show();
3425
+ jQuery(event.target).hide();
3426
+ }
3427
+
3428
+ function sfsi_plus_responsive_icon_hide_responsive_options() {
3429
+ jQuery('.sfsiplus_PostsSettings_section').show();
3430
+ jQuery('.sfsi_plus_choose_post_types_section').show();
3431
+ jQuery('.sfsi_plus_not_responsive').show();
3432
+ }
3433
+
3434
+ function sfsi_plus_responsive_icon_show_responsive_options() {
3435
+ jQuery('.sfsiplus_PostsSettings_section').hide();
3436
+ jQuery('.sfsi_plus_choose_post_types_section').hide();
3437
+ jQuery('.sfsi_plus_not_responsive').hide();
3438
+ window.sfsi_plus_fittext_shouldDisplay = true;
3439
+ jQuery('.sfsi_plus_responsive_icon_preview a').each(function (index, a_container) {
3440
+ if (jQuery(a_container).css('display') !== "none") {
3441
+ sfsi_plus_fitText(jQuery(a_container).find('.sfsi_plus_responsive_icon_item_container'));
3442
+ }
3443
+ })
3444
+ sfsi_plus_resize_icons_container();
3445
+ }
3446
+
3447
+ function sfsi_plus_scroll_to_div(option_id, scroll_selector) {
3448
+ jQuery('#' + option_id + '.ui-accordion-header[aria-selected="false"]').click() //opened the option
3449
+ //scroll to it.
3450
+ if (scroll_selector && scroll_selector !== '') {
3451
+ scroll_selector = scroll_selector;
3452
+ } else {
3453
+ scroll_selector = '#' + option_id + '.ui-accordion-header';
3454
+ }
3455
+ jQuery('html, body').stop().animate({
3456
+ scrollTop: jQuery(scroll_selector).offset().top
3457
+ }, 1000);
3458
+ }
3459
+ function sfsi_plus_fitText(container) {
3460
+ if (container.parent().parent().hasClass('sfsi_plus_icons_container_box_fixed_container')) {
3461
+ if (window.sfsi_plus_fittext_shouldDisplay === true) {
3462
+ if (jQuery('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() == "Fully responsive") {
3463
+ var all_icon_width = jQuery('.sfsi_plus_responsive_icons .sfsi_plus_icons_container').width();
3464
+ var total_active_icons = jQuery('.sfsi_plus_responsive_icons .sfsi_plus_icons_container a').filter(function (i, icon) {
3465
+ return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3466
+ }).length;
3467
+
3468
+ var distance_between_icon = jQuery('input[name="sfsi_plus_responsive_icons_settings_margin"]').val()
3469
+ var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3470
+ container_width = (container_width - distance_between_icon);
3471
+ } else {
3472
+ var container_width = container.width();
3473
+ }
3474
+ // var container_img_width = container.find('img').width();
3475
+ var container_img_width = 70;
3476
+ // var span=container.find('span').clone();
3477
+ var span = container.find('span');
3478
+ // var span_original_width = container.find('span').width();
3479
+ var span_original_width = container_width - (container_img_width)
3480
+ span
3481
+ // .css('display','inline-block')
3482
+ .css('white-space', 'nowrap')
3483
+ // .css('width','auto')
3484
+ ;
3485
+ var span_flatted_width = span.width();
3486
+ if (span_flatted_width == 0) {
3487
+ span_flatted_width = span_original_width;
3488
+ }
3489
+ span
3490
+ // .css('display','inline-block')
3491
+ .css('white-space', 'unset')
3492
+ // .css('width','auto')
3493
+ ;
3494
+ var shouldDisplay = ((undefined === window.sfsi_plus_fittext_shouldDisplay) ? true : window.sfsi_plus_fittext_shouldDisplay = true);
3495
+ var fontSize = parseInt(span.css('font-size'));
3496
+
3497
+ if (6 > fontSize) {
3498
+ fontSize = 20;
3499
+ }
3500
+
3501
+ var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3502
+
3503
+ if (computed_fontSize < 8) {
3504
+ shouldDisplay = false;
3505
+ window.sfsi_plus_fittext_shouldDisplay = false;
3506
+ computed_fontSize = 20;
3507
+ }
3508
+ span.css('font-size', Math.min(computed_fontSize, 20));
3509
+ span
3510
+ // .css('display','inline-block')
3511
+ .css('white-space', 'nowrap')
3512
+ // .css('width','auto')
3513
+ ;
3514
+ if (shouldDisplay) {
3515
+ span.show();
3516
+ } else {
3517
+ span.hide();
3518
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icon_item_container span').hide();
3519
+ }
3520
+ }
3521
+ } else {
3522
+ var span = container.find('span');
3523
+ span.css('font-size', 'initial');
3524
+ span.show();
3525
+ }
3526
+
3527
+ }
3528
+
3529
+ function sfsi_plus_fixedWidth_fitText(container) {
3530
+ return;
3531
+ if (window.sfsi_plus_fittext_shouldDisplay === true) {
3532
+ if (jQuery('select[name="sfsi_plus_responsive_icons_settings_icon_width_type"]').val() == "Fixed icon width") {
3533
+ var all_icon_width = jQuery('.sfsi_plus_responsive_icons .sfsi_plus_icons_container').width();
3534
+ var total_active_icons = jQuery('.sfsi_plus_responsive_icons .sfsi_plus_icons_container a').filter(function (i, icon) {
3535
+ return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3536
+ }).length;
3537
+ var distance_between_icon = jQuery('input[name="sfsi_plus_responsive_icons_settings_margin"]').val()
3538
+ var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3539
+ container_width = (container_width - distance_between_icon);
3540
+ } else {
3541
+ var container_width = container.width();
3542
+ }
3543
+ // var container_img_width = container.find('img').width();
3544
+ var container_img_width = 70;
3545
+ // var span=container.find('span').clone();
3546
+ var span = container.find('span');
3547
+ // var span_original_width = container.find('span').width();
3548
+ var span_original_width = container_width - (container_img_width)
3549
+ span
3550
+ // .css('display','inline-block')
3551
+ .css('white-space', 'nowrap')
3552
+ // .css('width','auto')
3553
+ ;
3554
+ var span_flatted_width = span.width();
3555
+ if (span_flatted_width == 0) {
3556
+ span_flatted_width = span_original_width;
3557
+ }
3558
+ span
3559
+ // .css('display','inline-block')
3560
+ .css('white-space', 'unset')
3561
+ // .css('width','auto')
3562
+ ;
3563
+ var shouldDisplay = undefined === window.sfsi_plus_fittext_shouldDisplay ? true : window.sfsi_plus_fittext_shouldDisplay = true;;
3564
+ var fontSize = parseInt(span.css('font-size'));
3565
+
3566
+ if (6 > fontSize) {
3567
+ fontSize = 15;
3568
+ }
3569
+
3570
+ var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3571
+
3572
+ if (computed_fontSize < 8) {
3573
+ shouldDisplay = false;
3574
+ window.sfsi_plus_fittext_shouldDisplay = false;
3575
+ computed_fontSize = 15;
3576
+ }
3577
+ span.css('font-size', Math.min(computed_fontSize, 15));
3578
+ span
3579
+ // .css('display','inline-block')
3580
+ .css('white-space', 'nowrap')
3581
+ // .css('width','auto')
3582
+ ;
3583
+ // var heightOfResIcons = jQuery('.sfsi_plus_responsive_icon_item_container').height();
3584
+
3585
+ // if(heightOfResIcons < 17){
3586
+ // span.show();
3587
+ // }else{
3588
+ // span.hide();
3589
+ // }
3590
+
3591
+ if (shouldDisplay) {
3592
+ span.show();
3593
+ } else {
3594
+ span.hide();
3595
+ }
3596
+ }
3597
+ }
3598
+
3599
+ function sfsi_plus_resize_icons_container() {
3600
+ return;
3601
+ // resize icon container based on the size of count
3602
+ sfsi_plus_cloned_icon_list = jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').clone();
3603
+ sfsi_plus_cloned_icon_list.removeClass('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_with_counter_icons').addClass('sfsi_plus_responsive_cloned_list');
3604
+ sfsi_plus_cloned_icon_list.css('width', '100%');
3605
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').parent().append(sfsi_plus_cloned_icon_list);
3606
+
3607
+ // sfsi_plus_cloned_icon_list.css({
3608
+ // position: "absolute",
3609
+ // left: "-10000px"
3610
+ // }).appendTo("body");
3611
+ actual_width = sfsi_plus_cloned_icon_list.width();
3612
+ count_width = jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_responsive_icons_count').width();
3613
+ jQuery('.sfsi_plus_responsive_cloned_list').remove();
3614
+ sfsi_plus_inline_style = jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').attr('style');
3615
+ // remove_width
3616
+ sfsi_plus_inline_style = sfsi_plus_inline_style.replace(/width:auto($|!important|)(;|$)/g, '').replace(/width:\s*(-|)\d*\s*(px|%)\s*($|!important|)(;|$)/g, '');
3617
+ if (!(jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').hasClass('sfsi_plus_responsive_without_counter_icons') && jQuery('.sfsi_plus_icons_container').hasClass('sfsi_plus_icons_container_box_fixed_container'))) {
3618
+ sfsi_plus_inline_style += "width:" + (actual_width - count_width - 1) + 'px!important;'
3619
+ } else {
3620
+ sfsi_plus_inline_style += "width:auto!important;";
3621
+ }
3622
+ jQuery('.sfsi_plus_responsive_icon_preview .sfsi_plus_icons_container').attr('style', sfsi_plus_inline_style);
3623
+
3624
+ }
3625
+
3626
+ function sfsi_plus_worker_wait(){
3627
+ var html = '<div class="pop-overlay read-overlay sfsi_plus_premium_installer-overlay" style="background: rgba(255, 255, 255, 0.6); z-index: 9999; overflow-y: auto; display: block;">'+
3628
+ '<div style="width:100%;height:100%"> <div style="width:50px;margin:auto;margin-top:20%"> <style type="text/css"> .lds-roller{display: inline-block; position: relative; width: 64px; height: 64px;}.lds-roller div{animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; transform-origin: 32px 32px;}.lds-roller div:after{content: " "; display: block; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #333; margin: -3px 0 0 -3px;}.lds-roller div:nth-child(1){animation-delay: -0.036s;}.lds-roller div:nth-child(1):after{top: 50px; left: 50px;}.lds-roller div:nth-child(2){animation-delay: -0.072s;}.lds-roller div:nth-child(2):after{top: 54px; left: 45px;}.lds-roller div:nth-child(3){animation-delay: -0.108s;}.lds-roller div:nth-child(3):after{top: 57px; left: 39px;}.lds-roller div:nth-child(4){animation-delay: -0.144s;}.lds-roller div:nth-child(4):after{top: 58px; left: 32px;}.lds-roller div:nth-child(5){animation-delay: -0.18s;}.lds-roller div:nth-child(5):after{top: 57px; left: 25px;}.lds-roller div:nth-child(6){animation-delay: -0.216s;}.lds-roller div:nth-child(6):after{top: 54px; left: 19px;}.lds-roller div:nth-child(7){animation-delay: -0.252s;}.lds-roller div:nth-child(7):after{top: 50px; left: 14px;}.lds-roller div:nth-child(8){animation-delay: -0.288s;}.lds-roller div:nth-child(8):after{top: 45px; left: 10px;}@keyframes lds-roller{0%{transform: rotate(0deg);}100%{transform: rotate(360deg);}}</style> <div class="lds-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div></div>'+
3629
+ '<div style="text-align: center;font-size:32px">Please wait while we are installing the premium plugin.</div>'+
3630
+ '</div>';
3631
+ jQuery('body').append(html);
3632
+ jQuery('.sfsi_plus_premium_installer-overlay').show();
3633
+ }
3634
+ function sellcodesSuccess(data) {
3635
+ if(data.installation){
3636
+ sfsi_plus_worker_plugin(data);
3637
+ }
 
3638
  }
js/custom.js CHANGED
@@ -1,544 +1,544 @@
1
- jQuery(document).ready(function (e) {
2
- jQuery("#sfsi_plus_floater").attr("data-top", jQuery(document).height());
3
- });
4
-
5
- function sfsiplus_showErrorSuc(s, i, e) {
6
- if ("error" == s) var t = "errorMsg";
7
- else var t = "sucMsg";
8
- return SFSI(".tab" + e + ">." + t).html(i), SFSI(".tab" + e + ">." + t).show(),
9
- SFSI(".tab" + e + ">." + t).effect("highlight", {}, 5e3), setTimeout(function () {
10
- SFSI("." + t).slideUp("slow");
11
- }, 5e3), !1;
12
- }
13
-
14
- function sfsiplus_beForeLoad() {
15
- SFSI(".loader-img").show(), SFSI(".save_button >a").html("Saving..."), SFSI(".save_button >a").css("pointer-events", "none");
16
- }
17
-
18
- function sfsi_plus_make_popBox() {
19
- var s = 0;
20
- SFSI(".plus_sfsi_sample_icons >li").each(function () {
21
- "none" != SFSI(this).css("display") && (s = 1);
22
- }), 0 == s ? SFSI(".sfsi_plus_Popinner").hide() : SFSI(".sfsi_plus_Popinner").show(), "" != SFSI('input[name="sfsi_plus_popup_text"]').val() ? (SFSI(".sfsi_plus_Popinner >h2").html(SFSI('input[name="sfsi_plus_popup_text"]').val()),
23
- SFSI(".sfsi_plus_Popinner >h2").show()) : SFSI(".sfsi_plus_Popinner >h2").hide(), SFSI(".sfsi_plus_Popinner").css({
24
- "border-color": SFSI('input[name="sfsi_plus_popup_border_color"]').val(),
25
- "border-width": SFSI('input[name="sfsi_plus_popup_border_thickness"]').val(),
26
- "border-style": "solid"
27
- }), SFSI(".sfsi_plus_Popinner").css("background-color", SFSI('input[name="sfsi_plus_popup_background_color"]').val()),
28
- SFSI(".sfsi_plus_Popinner h2").css("font-family", SFSI("#sfsi_plus_popup_font").val()), SFSI(".sfsi_plus_Popinner h2").css("font-style", SFSI("#sfsi_plus_popup_fontStyle").val()),
29
- SFSI(".sfsi_plus_Popinner >h2").css("font-size", parseInt(SFSI('input[name="sfsi_plus_popup_fontSize"]').val())),
30
- SFSI(".sfsi_plus_Popinner >h2").css("color", SFSI('input[name="sfsi_plus_popup_fontColor"]').val() + " !important"),
31
- "yes" == SFSI('input[name="sfsi_plus_popup_border_shadow"]:checked').val() ? SFSI(".sfsi_plus_Popinner").css("box-shadow", "12px 30px 18px #CCCCCC") : SFSI(".sfsi_plus_Popinner").css("box-shadow", "none");
32
- }
33
-
34
- function sfsi_plus_stick_widget(s) {
35
- 0 == sfsiplus_initTop.length && (SFSI(".sfsi_plus_widget").each(function (s) {
36
- sfsiplus_initTop[s] = SFSI(this).position().top;
37
- }));
38
- var i = SFSI(window).scrollTop(),
39
- e = [],
40
- t = [];
41
- SFSI(".sfsi_plus_widget").each(function (s) {
42
- e[s] = SFSI(this).position().top, t[s] = SFSI(this);
43
- });
44
- var n = !1;
45
- for (var o in e) {
46
- var a = parseInt(o) + 1;
47
- e[o] < i && e[a] > i && a < e.length ? (SFSI(t[o]).css({
48
- position: "fixed",
49
- top: s
50
- }), SFSI(t[a]).css({
51
- position: "",
52
- top: sfsiplus_initTop[a]
53
- }), n = !0) : SFSI(t[o]).css({
54
- position: "",
55
- top: sfsiplus_initTop[o]
56
- });
57
- }
58
- if (!n) {
59
- var r = e.length - 1,
60
- c = -1;
61
- e.length > 1 && (c = e.length - 2), sfsiplus_initTop[r] < i ? (SFSI(t[r]).css({
62
- position: "fixed",
63
- top: s
64
- }), c >= 0 && SFSI(t[c]).css({
65
- position: "",
66
- top: sfsiplus_initTop[c]
67
- })) : (SFSI(t[r]).css({
68
- position: "",
69
- top: sfsiplus_initTop[r]
70
- }), c >= 0 && e[c] < i);
71
- }
72
- }
73
-
74
- function sfsi_plus_float_widget(s) {
75
- function iplus() {
76
- rplus = "Microsoft Internet Explorer" === navigator.appName ? aplus - document.documentElement.scrollTop : aplus - window.pageYOffset,
77
- Math.abs(rplus) > 0 ? (window.removeEventListener("scroll", iplus), aplus -= rplus * oplus, SFSI("#sfsi_plus_floater").css({
78
- top: (aplus + t).toString() + "px"
79
- }), setTimeout(iplus, n)) : window.addEventListener("scroll", iplus, !1);
80
-
81
- }
82
- /*function eplus()
83
- {
84
- var documentheight = SFSI("#sfsi_plus_floater").attr("data-top");
85
- var fltrhght = parseInt(SFSI("#sfsi_plus_floater").height());
86
- var fltrtp = parseInt(SFSI("#sfsi_plus_floater").css("top"));
87
- if(parseInt(fltrhght)+parseInt(fltrtp) <=documentheight)
88
- {
89
- window.addEventListener("scroll", iplus, !1);
90
- }
91
- else
92
- {
93
- window.removeEventListener("scroll", iplus);
94
- SFSI("#sfsi_plus_floater").css("top",documentheight+"px");
95
- }
96
- }*/
97
-
98
- SFSI(window).scroll(function () {
99
- var documentheight = SFSI("#sfsi_plus_floater").attr("data-top");
100
- var fltrhght = parseInt(SFSI("#sfsi_plus_floater").height());
101
- var fltrtp = parseInt(SFSI("#sfsi_plus_floater").css("top"));
102
- if (parseInt(fltrhght) + parseInt(fltrtp) <= documentheight) {
103
- window.addEventListener("scroll", iplus, !1);
104
- } else {
105
- window.removeEventListener("scroll", iplus);
106
- SFSI("#sfsi_plus_floater").css("top", documentheight + "px");
107
- }
108
- });
109
-
110
- if ("center" == s) {
111
- var t = (jQuery(window).height() - SFSI("#sfsi_plus_floater").height()) / 2;
112
- } else if ("bottom" == s) {
113
- var t = window.innerHeight - (SFSI("#sfsi_plus_floater").height() + parseInt(SFSI('#sfsi_plus_floater').css('margin-bottom')));
114
- } else {
115
- var t = parseInt(s);
116
- }
117
- var n = 50,
118
- oplus = .1,
119
- aplus = 0,
120
- rplus = 0;
121
- //SFSI("#sfsi_plus_floater"), window.onscroll = eplus;
122
- }
123
-
124
- function sfsi_plus_shuffle() {
125
- var s = [];
126
- SFSI(".sfsi_plus_wicons ").each(function (i) {
127
- SFSI(this).text().match(/^\s*$/) || (s[i] = "<div class='" + SFSI(this).attr("class") + "'>" + SFSI(this).html() + "</div>",
128
- SFSI(this).fadeOut("slow"), SFSI(this).insertBefore(SFSI(this).prev(".sfsi_plus_wicons")),
129
- SFSI(this).fadeIn("slow"));
130
- }), s = sfsiplus_Shuffle(s), $("#sfsi_plus_wDiv").html("");
131
- for (var i = 0; i < testArray.length; i++) $("#sfsi_plus_wDiv").append(s[i]);
132
- }
133
-
134
- function sfsiplus_Shuffle(s) {
135
- for (var i, e, t = s.length; t; i = parseInt(Math.random() * t), e = s[--t], s[t] = s[i],
136
- s[i] = e);
137
- return s;
138
- }
139
-
140
- function sfsi_plus_setCookie(s, i, e) {
141
- var t = new Date();
142
- t.setTime(t.getTime() + 1e3 * 60 * 60 * 24 * e);
143
- var n = "expires=" + t.toGMTString();
144
- document.cookie = s + "=" + i + "; " + n;
145
- }
146
-
147
- function sfsfi_plus_getCookie(s) {
148
- for (var i = s + "=", e = document.cookie.split(";"), t = 0; t < e.length; t++) {
149
- var n = e[t].trim();
150
- if (0 == n.indexOf(i)) return n.substring(i.length, n.length);
151
- }
152
- return "";
153
- }
154
-
155
- function sfsi_plus_hideFooter() {}
156
-
157
- window.onerror = function () {}, SFSI = jQuery.noConflict(), SFSI(window).on('load', function () {
158
- SFSI("#sfpluspageLoad").fadeOut(2e3);
159
- });
160
-
161
- var global_error = 0;
162
-
163
- SFSI(document).ready(function (s) {
164
-
165
- //changes done {Monad}
166
- SFSI("head").append('<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />'),
167
- SFSI("head").append('<meta http-equiv="Pragma" content="no-cache" />'), SFSI("head").append('<meta http-equiv="Expires" content="0" />'),
168
- SFSI(document).click(function (s) {
169
- var i = SFSI(".sfsi_plus_FrntInner_changedmonad"),
170
- e = SFSI(".sfsi_plus_wDiv"),
171
- t = SFSI("#at15s");
172
- 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();
173
- }),
174
- SFSI("div.sfsiplusid_linkedin").find(".icon4").find("a").find("img").mouseover(function () {
175
- SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/linkedIn_hover.svg");
176
- }),
177
- SFSI("div.sfsiplusid_linkedin").find(".icon4").find("a").find("img").mouseleave(function () {
178
- SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/linkedIn.svg");
179
- }),
180
- SFSI("div.sfsiplusid_youtube").find(".icon1").find("a").find("img").mouseover(function () {
181
- SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/youtube_hover.svg");
182
- }),
183
- SFSI("div.sfsiplusid_youtube").find(".icon1").find("a").find("img").mouseleave(function () {
184
- SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/youtube.svg");
185
- }),
186
- SFSI("div.sfsiplusid_facebook").find(".icon1").find("a").find("img").mouseover(function () {
187
- SFSI(this).css("opacity", "0.9");
188
- }),
189
- SFSI("div.sfsiplusid_facebook").find(".icon1").find("a").find("img").mouseleave(function () {
190
- SFSI(this).css("opacity", "1");
191
- }),
192
- SFSI("div.sfsiplusid_twitter").find(".cstmicon1").find("a").find("img").mouseover(function () {
193
- SFSI(this).css("opacity", "0.9");
194
- }),
195
- SFSI("div.sfsiplusid_twitter").find(".cstmicon1").find("a").find("img").mouseleave(function () {
196
- SFSI(this).css("opacity", "1");
197
- }),
198
- SFSI(".pop-up").on("click", function () {
199
- ("fbex-s2" == SFSI(this).attr("data-id") || "linkex-s2" == SFSI(this).attr("data-id")) && (SFSI("." + SFSI(this).attr("data-id")).hide(),
200
- SFSI("." + SFSI(this).attr("data-id")).css("opacity", "1"), SFSI("." + SFSI(this).attr("data-id")).css("z-index", "1000")),
201
- SFSI("." + SFSI(this).attr("data-id")).show("slow");
202
- }),
203
- /*SFSI("#close_popup").live("click", function() {*/
204
- SFSI(document).on("click", '#close_popup', function () {
205
- SFSI(".read-overlay").hide("slow");
206
- });
207
- var e = 0;
208
- sfsi_plus_make_popBox(),
209
- SFSI('input[name="sfsi_plus_popup_text"] ,input[name="sfsi_plus_popup_background_color"],input[name="sfsi_plus_popup_border_color"],input[name="sfsi_plus_popup_border_thickness"],input[name="sfsi_plus_popup_fontSize"],input[name="sfsi_plus_popup_fontColor"]').on("keyup", sfsi_plus_make_popBox),
210
- SFSI('input[name="sfsi_plus_popup_text"] ,input[name="sfsi_plus_popup_background_color"],input[name="sfsi_plus_popup_border_color"],input[name="sfsi_plus_popup_border_thickness"],input[name="sfsi_plus_popup_fontSize"],input[name="sfsi_plus_popup_fontColor"]').on("focus", sfsi_plus_make_popBox),
211
- SFSI("#sfsi_plus_popup_font ,#sfsi_plus_popup_fontStyle").on("change", sfsi_plus_make_popBox),
212
- /*SFSI(".radio").live("click", function(){*/
213
- SFSI(document).on("click", '.radio', function () {
214
- var s = SFSI(this).parent().find("input:radio:first");
215
- "sfsi_plus_popup_border_shadow" == s.attr("name") && sfsi_plus_make_popBox();
216
- }), /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ? SFSI("img.sfsi_wicon").on("click", function (s) {
217
- s.stopPropagation();
218
- var i = SFSI("#sfsi_plus_floater_sec").val();
219
- SFSI("div.sfsi_plus_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide(),
220
- SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_tool_tip_2").css("z-index", "0"),
221
- SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide()),
222
- SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
223
- "z-index": "999"
224
- }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
225
- opacity: 1,
226
- "z-index": 10
227
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
228
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
229
- opacity: 1,
230
- "z-index": 10
231
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
232
- SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
233
- opacity: 1,
234
- "z-index": 10
235
- })), ("top-left" == i || "top-right" == i) && SFSI(this).parent().parent().parent().parent("#sfsi_plus_floater").length > 0 && "sfsi_plus_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").addClass("sfsi_plc_btm"),
236
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
237
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
238
- opacity: 1,
239
- "z-index": 10
240
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
241
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").removeClass("sfsi_plc_btm"),
242
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
243
- opacity: 1,
244
- "z-index": 1e3
245
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show());
246
- // if(SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").attr('id')=="sfsiplusid_twitter" || SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").hasClass("sfsiplusid_twitter")){
247
- // sfsi_plus_clone = SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2 iframe').clone();
248
- // SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2 iframe').detach().remove();
249
- // SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2').append(sfsi_plus_clone);
250
- // }
251
-
252
- }) : SFSI(document).on("mouseenter", "img.sfsi_wicon", function () {
253
- var s = SFSI("#sfsi_plus_floater_sec").val();
254
- SFSI("div.sfsi_plus_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide(),
255
- SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_tool_tip_2").css("z-index", "0"),
256
- SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide()),
257
- SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
258
- "z-index": "999"
259
- }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
260
- opacity: 1,
261
- "z-index": 10
262
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
263
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
264
- opacity: 1,
265
- "z-index": 10
266
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
267
- SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
268
- opacity: 1,
269
- "z-index": 10
270
- })), ("top-left" == s || "top-right" == s) && SFSI(this).parent().parent().parent().parent("#sfsi_plus_floater").length > 0 && "sfsi_plus_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").addClass("sfsi_plc_btm"),
271
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
272
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
273
- opacity: 1,
274
- "z-index": 10
275
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
276
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").removeClass("sfsi_plc_btm"),
277
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
278
- opacity: 1,
279
- "z-index": 10
280
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show());
281
- if (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").attr('id') == "sfsiplusid_twitter" || SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").hasClass("sfsiplusid_twitter")) {
282
- sfsi_plus_clone = SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2 iframe").clone();
283
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2 iframe").detach().remove();
284
- SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2").append(sfsi_plus_clone);
285
- }
286
- }), SFSI(document).on("mouseleave", "div.sfsi_plus_wicons", function () {
287
- SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && "fade_in" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").css("opacity", "0.6"),
288
- SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && "scale" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").removeClass("scale"),
289
- SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && "combo" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && (SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").css("opacity", "0.6"),
290
- SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").removeClass("scale"));
291
- }), SFSI("body").on("click", function () {
292
- SFSI(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide();
293
- }), SFSI(".adminTooltip >a").on("hover", function () {
294
- SFSI(this).offset().top, SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "1"),
295
- SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").show();
296
- }), SFSI(".adminTooltip").on("mouseleave", function () {
297
- "none" != SFSI(".sfsi_plus_gpls_tool_bdr").css("display") && 0 != SFSI(".sfsi_plus_gpls_tool_bdr").css("opacity") ? SFSI(".pop_up_box ").on("click", function () {
298
- SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "0"), SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").hide();
299
- }) : (SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "0"),
300
- SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").hide());
301
- }), SFSI(".expand-area").on("click", function () {
302
- "Read more" == SFSI(this).text() ? (SFSI(this).siblings("p").children("label").fadeIn("slow"),
303
- SFSI(this).text("Collapse")) : (SFSI(this).siblings("p").children("label").fadeOut("slow"),
304
- SFSI(this).text("Read more"));
305
- }), SFSI(".sfsi_plus_wDiv").length > 0 && setTimeout(function () {
306
- var s = parseInt(SFSI(".sfsi_plus_wDiv").height()) + 15 + "px";
307
- SFSI(".sfsi_plus_holders").each(function () {
308
- SFSI(this).css("height", s);
309
- });
310
- SFSI(".sfsi_plus_widget").css("min-height", "auto");
311
- }, 200);
312
- jQuery(document).find('.wp-block-ultimate-social-media-plus-sfsi-plus-share-block').each(function (index, target) {
313
- var actual_target = jQuery(target).find('.sfsi_plus_block');
314
- var align = jQuery(actual_target).attr('data-align');
315
- var maxPerRow = jQuery(actual_target).attr('data-count');
316
- var iconType = jQuery(actual_target).attr('data-icon-type');
317
- jQuery.ajax({
318
- 'url': '/wp-json/ultimate-social-media-plus/v1/icons/?url=' + encodeURI(decodeURI(window.location.href)) + '&ractangle_icon=' + ('round' == iconType ? 0 : 1),
319
- 'method': 'GET'
320
- // 'data':{'is_admin':true,'share_url':'/'}
321
- }).done((response) => {
322
- jQuery(actual_target).html(response);
323
- if (iconType == 'round') {
324
- sfsi_plus_changeIconWidth(maxPerRow, target, align);
325
- } else {
326
- if ('center' === align) {
327
- jQuery(target).find('.sfsi_plus_block_text_before_icon').css({
328
- 'display': 'inherit'
329
- });
330
- }
331
- jQuery(target).css({
332
- 'text-align': align
333
- });
334
- }
335
- if (window.gapi) {
336
- window.gapi.plusone.go();
337
- window.gapi.plus.go();
338
- window.gapi.ytsubscribe.go();
339
- };
340
- if (window.twttr) {
341
- window.twttr.widgets.load();
342
- };
343
- if (window.IN && window.IN.parse) {
344
- window.IN.parse();
345
- };
346
- if (window.addthis) {
347
- if (window.addthis.toolbox) {
348
- window.addthis.toolbox('.addthis_button.sficn');
349
- } else {
350
- window.addthis.init();
351
- window.addthis.toolbox('.addthis_button.sficn');
352
- }
353
- };
354
- if (window.PinUtils) {
355
- window.PinUtils.build();
356
- };
357
- if (window.FB) {
358
- if (window.FB.XFBML) {
359
- window.FB.XFBML.parse();
360
- }
361
- };
362
- }).fail((response) => {
363
- jQuery(actual_target).html(response.responseText.replace('/\\/g', ''));
364
- });
365
- });
366
- if (undefined !== window.location.hash) {
367
- switch (window.location.hash) {
368
- case '#ui-id-3':
369
- jQuery('#ui-id-3').click();
370
- case '#ui-id-1':
371
- jQuery('#ui-id-1').click();
372
- }
373
- }
374
- // sfsi_plus_update_iconcount();
375
- });
376
-
377
- function sfsi_plus_update_iconcount() {
378
- SFSI(".wp-block-ultimate-social-media-plus-sfsi-plus-share-block").each(function () {
379
- var icon_count = SFSI(this).find(".sfsi_plus_block").attr('data-count');
380
- var icon_align = SFSI(this).find(".sfsi_plus_block").attr('data-align');
381
- // sfsi_plus_changeIconWidth(icon_count,this);
382
- if (jQuery(this).find('.sfsiplus_norm_row').length < 1) {
383
- setTimeout(function () {
384
- sfsi_plus_changeIconWidth(icon_count, this, icon_align);
385
- }, 1000);
386
- } else {
387
- sfsi_plus_changeIconWidth(icon_count, this, icon_align);
388
- }
389
- });
390
- }
391
-
392
- function sfsi_plus_changeIconWidth(per_row = null, target, icon_align) {
393
- var iconWidth = parseInt(jQuery(target).find('.sfsiplus_norm_row div').css('width')) || 40;
394
-
395
- var iconMargin = parseInt(jQuery(target).find('.sfsiplus_norm_row div').css('margin-left')) || 0;
396
-
397
- var wrapperWidth = (iconWidth + iconMargin) * per_row;
398
- jQuery(target).find('.sfsiplus_norm_row').css({
399
- 'width': wrapperWidth + 'px'
400
- });
401
- jQuery(target).find('.sfsi_plus_block').css({
402
- 'width': wrapperWidth + 'px'
403
- });
404
- jQuery(target).find('.sfsi_plus_block_text_before_icon').css({
405
- 'padding-top': '12px'
406
- });
407
- if ('center' === icon_align) {
408
- jQuery(target).find('.sfsi_plus_block_text_before_icon').css({
409
- 'display': 'inherit'
410
- });
411
- }
412
- jQuery(target).css({
413
- 'text-align': icon_align
414
- });
415
- }
416
- //hiding popup on close button
417
- function sfsiplushidemepopup() {
418
- SFSI(".sfsi_plus_FrntInner").fadeOut();
419
- }
420
-
421
- var sfsiplus_initTop = new Array();
422
-
423
- function sfsi_plus_wechat_follow(url) {
424
- if (jQuery('.sfsi_plus_wechat_scan').length == 0) {
425
- jQuery('body').append("<div class='sfsi_plus_wechat_scan sfsi_plus_overlay show'><div class='sfsi_plus_inner_display'><a class='close_btn' href='' onclick=\"event.preventDefault();close_overlay(\'.sfsi_plus_wechat_scan\')\" >&times;</a><img src='" + url + "' style='max-width:90%;max-height:90%' /></div></div>");
426
- } else {
427
- jQuery('.sfsi_plus_wechat_scan').removeClass('hide').addClass('show');
428
- }
429
- }
430
-
431
- function close_overlay(selector) {
432
- if (typeof selector === "undefined") {
433
- selector = '.sfsi_plus_overlay';
434
- }
435
- jQuery(selector).removeClass('show').addClass('hide');
436
- }
437
-
438
- function sfsi_plus_wechat_share(url) {
439
- if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
440
- sfsi_plus_wechat_share_mobile(url);
441
- } else {
442
- if (jQuery('.sfsi_plus_wechat_follow_overlay').length == 0) {
443
- jQuery('body').append("<div class='sfsi_plus_wechat_follow_overlay sfsi_plus_overlay show'><div class='sfsi_plus_inner_display'><a class='close_btn' href='' onclick=\"event.preventDefault();close_overlay(\'.sfsi_plus_wechat_follow_overlay\')\" >&times;</a><div style='width:95%;max-width:500px; min-height:80%;background-color:#fff;margin:0 auto;margin:10% auto;padding: 20px 0;'><div style='width:90%;margin: 0 auto;text-align:center'><div class='sfsi_plus_wechat_qr_display' style='display:inline-block'></div></div><div style='width:80%;margin:10px auto 0 auto;text-align:center;font-weight:900;font-size:25px;'>\"Scan QR Code\" in WeChat and press ··· to share!</div></div></div>");
444
- new QRCode(jQuery('.sfsi_plus_wechat_follow_overlay .sfsi_plus_wechat_qr_display')[0], encodeURI(decodeURI(window.location.href)))
445
- jQuery('.sfsi_plus_wechat_follow_overlay .sfsi_plus_wechat_qr_display img').attr('nopin', 'nopin')
446
- } else {
447
- jQuery('.sfsi_plus_wechat_follow_overlay').removeClass('hide').addClass('show');
448
- }
449
- }
450
- }
451
-
452
- function sfsi_plus_wechat_share_mobile(url) {
453
- if (jQuery('.sfsi_plus_wechat_follow_overlay').length == 0) {
454
- jQuery('body').append("<div class='sfsi_plus_wechat_follow_overlay sfsi_plus_overlay show'><div class='sfsi_plus_inner_display'><a class='close_btn' href='' onclick=\"event.preventDefault();close_overlay(\'.sfsi_plus_wechat_follow_overlay\')\" >&times;</a><div style='width:95%; min-height:80%;background-color:#fff;margin:0 auto;margin:20% auto;padding: 20px 0;'><div style='width:90%;margin: 0 auto;'><input type='text' value='" + encodeURI(decodeURI(window.location.href)) + "' style='width:100%;padding:7px 0;text-align:center' /></div><div style='width:80%;margin:10px auto 0 auto'><div style='width:30%;display:inline-block;text-align:center' class='sfsi_plus_upload_butt_container' ><button onclick='sfsi_copy_text_parent_input(event)' class='upload_butt' >Copy</button></div><div style='width:60%;display:inline-block;text-align:center;margin-left:10%' class='sfsi_plus_upload_butt_container' ><a href='weixin://' class='upload_butt'>Open WeChat</a></div></div></div></div>");
455
- } else {
456
- jQuery('.sfsi_plus_wechat_follow_overlay').removeClass('hide').addClass('show');
457
- }
458
- }
459
-
460
- function sfsi_copy_text_parent_input(event) {
461
- var target = jQuery(event.target);
462
- input_target = target.parent().parent().parent().find('input');
463
- input_target.select();
464
- document.execCommand('copy');
465
- }
466
-
467
-
468
- function sfsi_plus_widget_set() {
469
- jQuery(".sfsi_plus_widget").each(function (index) {
470
- if (jQuery(this).attr("data-position") == "widget") {
471
- var wdgt_hght = jQuery(this).children(".sfsiplus_norm_row.sfsi_plus_wDiv").height();
472
- var title_hght = jQuery(this).parent(".widget.sfsi_plus").children(".widget-title").height();
473
- var totl_hght = parseInt(title_hght) + parseInt(wdgt_hght);
474
- jQuery(this).parent(".widget.sfsi_plus").css("min-height", totl_hght + "px");
475
- }
476
- });
477
- }
478
-
479
- function sfsi_plus_time_pop_up(time_popUp){
480
- jQuery(document).ready(function($) {
481
- setTimeout(
482
- function() {
483
- jQuery('.sfsi_plus_outr_div').css({
484
- 'z-index': '1000000',
485
- opacity: 1
486
- });
487
- jQuery('.sfsi_plus_outr_div').fadeIn();
488
- jQuery('.sfsi_plus_FrntInner').fadeIn(200);
489
- }, time_popUp);
490
- });
491
- }
492
- function sfsi_plus_responsive_toggle(){
493
- jQuery(document).scroll(function($) {
494
- var y = jQuery(this).scrollTop();
495
- if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
496
- if (jQuery(window).scrollTop() + jQuery(window).height() >= jQuery(document).height() - 100) {
497
- jQuery('.sfsi_plus_outr_div').css({
498
- 'z-index': '9996',
499
- opacity: 1,
500
- top: jQuery(window).scrollTop() + "px",
501
- position: "absolute"
502
- });
503
- jQuery('.sfsi_plus_outr_div').fadeIn(200);
504
- jQuery('.sfsi_plus_FrntInner').fadeIn(200);
505
- } else {
506
- jQuery('.sfsi_plus_outr_div').fadeOut();
507
- jQuery('.sfsi_plus_FrntInner').fadeOut();
508
- }
509
- } else {
510
- if (jQuery(window).scrollTop() + jQuery(window).height() >= jQuery(document).height() - 3) {
511
- jQuery('.sfsi_plus_outr_div').css({
512
- 'z-index': '9996',
513
- opacity: 1,
514
- top: jQuery(window).scrollTop() + 200 + "px",
515
- position: "absolute"
516
- });
517
- jQuery('.sfsi_plus_outr_div').fadeIn(200);
518
- jQuery('.sfsi_plus_FrntInner').fadeIn(200);
519
- } else {
520
- jQuery('.sfsi_plus_outr_div').fadeOut();
521
- jQuery('.sfsi_plus_FrntInner').fadeOut();
522
- }
523
- }
524
- });
525
- }
526
-
527
- function sfsi_social_pop_up(time_popUp){
528
- jQuery(document).ready(function($) {
529
- //SFSI('.sfsi_plus_outr_div').fadeIn();
530
- sfsi_plus_setCookie('sfsi_socialPopUp', time(), 32);
531
- setTimeout(function() {
532
- jQuery('.sfsi_plus_outr_div').css({
533
- 'z-index': '1000000',
534
- opacity: 1
535
- });
536
- jQuery('.sfsi_plus_outr_div').fadeIn();
537
- }, time_popUp);
538
- });
539
- var SFSI = jQuery.noConflict();
540
- }
541
-
542
- // should execute at last so that every function is acceable.
543
- var sfsi_plus_functions_loaded = new CustomEvent('sfsi_plus_functions_loaded',{detail:{"abc":"def"}});
544
- window.dispatchEvent(sfsi_plus_functions_loaded);
1
+ jQuery(document).ready(function (e) {
2
+ jQuery("#sfsi_plus_floater").attr("data-top", jQuery(document).height());
3
+ });
4
+
5
+ function sfsiplus_showErrorSuc(s, i, e) {
6
+ if ("error" == s) var t = "errorMsg";
7
+ else var t = "sucMsg";
8
+ return SFSI(".tab" + e + ">." + t).html(i), SFSI(".tab" + e + ">." + t).show(),
9
+ SFSI(".tab" + e + ">." + t).effect("highlight", {}, 5e3), setTimeout(function () {
10
+ SFSI("." + t).slideUp("slow");
11
+ }, 5e3), !1;
12
+ }
13
+
14
+ function sfsiplus_beForeLoad() {
15
+ SFSI(".loader-img").show(), SFSI(".save_button >a").html("Saving..."), SFSI(".save_button >a").css("pointer-events", "none");
16
+ }
17
+
18
+ function sfsi_plus_make_popBox() {
19
+ var s = 0;
20
+ SFSI(".plus_sfsi_sample_icons >li").each(function () {
21
+ "none" != SFSI(this).css("display") && (s = 1);
22
+ }), 0 == s ? SFSI(".sfsi_plus_Popinner").hide() : SFSI(".sfsi_plus_Popinner").show(), "" != SFSI('input[name="sfsi_plus_popup_text"]').val() ? (SFSI(".sfsi_plus_Popinner >h2").html(SFSI('input[name="sfsi_plus_popup_text"]').val()),
23
+ SFSI(".sfsi_plus_Popinner >h2").show()) : SFSI(".sfsi_plus_Popinner >h2").hide(), SFSI(".sfsi_plus_Popinner").css({
24
+ "border-color": SFSI('input[name="sfsi_plus_popup_border_color"]').val(),
25
+ "border-width": SFSI('input[name="sfsi_plus_popup_border_thickness"]').val(),
26
+ "border-style": "solid"
27
+ }), SFSI(".sfsi_plus_Popinner").css("background-color", SFSI('input[name="sfsi_plus_popup_background_color"]').val()),
28
+ SFSI(".sfsi_plus_Popinner h2").css("font-family", SFSI("#sfsi_plus_popup_font").val()), SFSI(".sfsi_plus_Popinner h2").css("font-style", SFSI("#sfsi_plus_popup_fontStyle").val()),
29
+ SFSI(".sfsi_plus_Popinner >h2").css("font-size", parseInt(SFSI('input[name="sfsi_plus_popup_fontSize"]').val())),
30
+ SFSI(".sfsi_plus_Popinner >h2").css("color", SFSI('input[name="sfsi_plus_popup_fontColor"]').val() + " !important"),
31
+ "yes" == SFSI('input[name="sfsi_plus_popup_border_shadow"]:checked').val() ? SFSI(".sfsi_plus_Popinner").css("box-shadow", "12px 30px 18px #CCCCCC") : SFSI(".sfsi_plus_Popinner").css("box-shadow", "none");
32
+ }
33
+
34
+ function sfsi_plus_stick_widget(s) {
35
+ 0 == sfsiplus_initTop.length && (SFSI(".sfsi_plus_widget").each(function (s) {
36
+ sfsiplus_initTop[s] = SFSI(this).position().top;
37
+ }));
38
+ var i = SFSI(window).scrollTop(),
39
+ e = [],
40
+ t = [];
41
+ SFSI(".sfsi_plus_widget").each(function (s) {
42
+ e[s] = SFSI(this).position().top, t[s] = SFSI(this);
43
+ });
44
+ var n = !1;
45
+ for (var o in e) {
46
+ var a = parseInt(o) + 1;
47
+ e[o] < i && e[a] > i && a < e.length ? (SFSI(t[o]).css({
48
+ position: "fixed",
49
+ top: s
50
+ }), SFSI(t[a]).css({
51
+ position: "",
52
+ top: sfsiplus_initTop[a]
53
+ }), n = !0) : SFSI(t[o]).css({
54
+ position: "",
55
+ top: sfsiplus_initTop[o]
56
+ });
57
+ }
58
+ if (!n) {
59
+ var r = e.length - 1,
60
+ c = -1;
61
+ e.length > 1 && (c = e.length - 2), sfsiplus_initTop[r] < i ? (SFSI(t[r]).css({
62
+ position: "fixed",
63
+ top: s
64
+ }), c >= 0 && SFSI(t[c]).css({
65
+ position: "",
66
+ top: sfsiplus_initTop[c]
67
+ })) : (SFSI(t[r]).css({
68
+ position: "",
69
+ top: sfsiplus_initTop[r]
70
+ }), c >= 0 && e[c] < i);
71
+ }
72
+ }
73
+
74
+ function sfsi_plus_float_widget(s) {
75
+ function iplus() {
76
+ rplus = "Microsoft Internet Explorer" === navigator.appName ? aplus - document.documentElement.scrollTop : aplus - window.pageYOffset,
77
+ Math.abs(rplus) > 0 ? (window.removeEventListener("scroll", iplus), aplus -= rplus * oplus, SFSI("#sfsi_plus_floater").css({
78
+ top: (aplus + t).toString() + "px"
79
+ }), setTimeout(iplus, n)) : window.addEventListener("scroll", iplus, !1);
80
+
81
+ }
82
+ /*function eplus()
83
+ {
84
+ var documentheight = SFSI("#sfsi_plus_floater").attr("data-top");
85
+ var fltrhght = parseInt(SFSI("#sfsi_plus_floater").height());
86
+ var fltrtp = parseInt(SFSI("#sfsi_plus_floater").css("top"));
87
+ if(parseInt(fltrhght)+parseInt(fltrtp) <=documentheight)
88
+ {
89
+ window.addEventListener("scroll", iplus, !1);
90
+ }
91
+ else
92
+ {
93
+ window.removeEventListener("scroll", iplus);
94
+ SFSI("#sfsi_plus_floater").css("top",documentheight+"px");
95
+ }
96
+ }*/
97
+
98
+ SFSI(window).scroll(function () {
99
+ var documentheight = SFSI("#sfsi_plus_floater").attr("data-top");
100
+ var fltrhght = parseInt(SFSI("#sfsi_plus_floater").height());
101
+ var fltrtp = parseInt(SFSI("#sfsi_plus_floater").css("top"));
102
+ if (parseInt(fltrhght) + parseInt(fltrtp) <= documentheight) {
103
+ window.addEventListener("scroll", iplus, !1);
104
+ } else {
105
+ window.removeEventListener("scroll", iplus);
106
+ SFSI("#sfsi_plus_floater").css("top", documentheight + "px");
107
+ }
108
+ });
109
+
110
+ if ("center" == s) {
111
+ var t = (jQuery(window).height() - SFSI("#sfsi_plus_floater").height()) / 2;
112
+ } else if ("bottom" == s) {
113
+ var t = window.innerHeight - (SFSI("#sfsi_plus_floater").height() + parseInt(SFSI('#sfsi_plus_floater').css('margin-bottom')));
114
+ } else {
115
+ var t = parseInt(s);
116
+ }
117
+ var n = 50,
118
+ oplus = .1,
119
+ aplus = 0,
120
+ rplus = 0;
121
+ //SFSI("#sfsi_plus_floater"), window.onscroll = eplus;
122
+ }
123
+
124
+ function sfsi_plus_shuffle() {
125
+ var s = [];
126
+ SFSI(".sfsi_plus_wicons ").each(function (i) {
127
+ SFSI(this).text().match(/^\s*$/) || (s[i] = "<div class='" + SFSI(this).attr("class") + "'>" + SFSI(this).html() + "</div>",
128
+ SFSI(this).fadeOut("slow"), SFSI(this).insertBefore(SFSI(this).prev(".sfsi_plus_wicons")),
129
+ SFSI(this).fadeIn("slow"));
130
+ }), s = sfsiplus_Shuffle(s), $("#sfsi_plus_wDiv").html("");
131
+ for (var i = 0; i < testArray.length; i++) $("#sfsi_plus_wDiv").append(s[i]);
132
+ }
133
+
134
+ function sfsiplus_Shuffle(s) {
135
+ for (var i, e, t = s.length; t; i = parseInt(Math.random() * t), e = s[--t], s[t] = s[i],
136
+ s[i] = e);
137
+ return s;
138
+ }
139
+
140
+ function sfsi_plus_setCookie(s, i, e) {
141
+ var t = new Date();
142
+ t.setTime(t.getTime() + 1e3 * 60 * 60 * 24 * e);
143
+ var n = "expires=" + t.toGMTString();
144
+ document.cookie = s + "=" + i + "; " + n;
145
+ }
146
+
147
+ function sfsfi_plus_getCookie(s) {
148
+ for (var i = s + "=", e = document.cookie.split(";"), t = 0; t < e.length; t++) {
149
+ var n = e[t].trim();
150
+ if (0 == n.indexOf(i)) return n.substring(i.length, n.length);
151
+ }
152
+ return "";
153
+ }
154
+
155
+ function sfsi_plus_hideFooter() {}
156
+
157
+ window.onerror = function () {}, SFSI = jQuery.noConflict(), SFSI(window).on('load', function () {
158
+ SFSI("#sfpluspageLoad").fadeOut(2e3);
159
+ });
160
+
161
+ var global_error = 0;
162
+
163
+ SFSI(document).ready(function (s) {
164
+
165
+ //changes done {Monad}
166
+ SFSI("head").append('<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />'),
167
+ SFSI("head").append('<meta http-equiv="Pragma" content="no-cache" />'), SFSI("head").append('<meta http-equiv="Expires" content="0" />'),
168
+ SFSI(document).click(function (s) {
169
+ var i = SFSI(".sfsi_plus_FrntInner_changedmonad"),
170
+ e = SFSI(".sfsi_plus_wDiv"),
171
+ t = SFSI("#at15s");
172
+ 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();
173
+ }),
174
+ SFSI("div.sfsiplusid_linkedin").find(".icon4").find("a").find("img").mouseover(function () {
175
+ SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/linkedIn_hover.svg");
176
+ }),
177
+ SFSI("div.sfsiplusid_linkedin").find(".icon4").find("a").find("img").mouseleave(function () {
178
+ SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/linkedIn.svg");
179
+ }),
180
+ SFSI("div.sfsiplusid_youtube").find(".icon1").find("a").find("img").mouseover(function () {
181
+ SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/youtube_hover.svg");
182
+ }),
183
+ SFSI("div.sfsiplusid_youtube").find(".icon1").find("a").find("img").mouseleave(function () {
184
+ SFSI(this).attr("src", sfsi_plus_ajax_object.plugin_url + "images/visit_icons/youtube.svg");
185
+ }),
186
+ SFSI("div.sfsiplusid_facebook").find(".icon1").find("a").find("img").mouseover(function () {
187
+ SFSI(this).css("opacity", "0.9");
188
+ }),
189
+ SFSI("div.sfsiplusid_facebook").find(".icon1").find("a").find("img").mouseleave(function () {
190
+ SFSI(this).css("opacity", "1");
191
+ }),
192
+ SFSI("div.sfsiplusid_twitter").find(".cstmicon1").find("a").find("img").mouseover(function () {
193
+ SFSI(this).css("opacity", "0.9");
194
+ }),
195
+ SFSI("div.sfsiplusid_twitter").find(".cstmicon1").find("a").find("img").mouseleave(function () {
196
+ SFSI(this).css("opacity", "1");
197
+ }),
198
+ SFSI(".pop-up").on("click", function () {
199
+ ("fbex-s2" == SFSI(this).attr("data-id") || "linkex-s2" == SFSI(this).attr("data-id")) && (SFSI("." + SFSI(this).attr("data-id")).hide(),
200
+ SFSI("." + SFSI(this).attr("data-id")).css("opacity", "1"), SFSI("." + SFSI(this).attr("data-id")).css("z-index", "1000")),
201
+ SFSI("." + SFSI(this).attr("data-id")).show("slow");
202
+ }),
203
+ /*SFSI("#close_popup").live("click", function() {*/
204
+ SFSI(document).on("click", '#close_popup', function () {
205
+ SFSI(".read-overlay").hide("slow");
206
+ });
207
+ var e = 0;
208
+ sfsi_plus_make_popBox(),
209
+ SFSI('input[name="sfsi_plus_popup_text"] ,input[name="sfsi_plus_popup_background_color"],input[name="sfsi_plus_popup_border_color"],input[name="sfsi_plus_popup_border_thickness"],input[name="sfsi_plus_popup_fontSize"],input[name="sfsi_plus_popup_fontColor"]').on("keyup", sfsi_plus_make_popBox),
210
+ SFSI('input[name="sfsi_plus_popup_text"] ,input[name="sfsi_plus_popup_background_color"],input[name="sfsi_plus_popup_border_color"],input[name="sfsi_plus_popup_border_thickness"],input[name="sfsi_plus_popup_fontSize"],input[name="sfsi_plus_popup_fontColor"]').on("focus", sfsi_plus_make_popBox),
211
+ SFSI("#sfsi_plus_popup_font ,#sfsi_plus_popup_fontStyle").on("change", sfsi_plus_make_popBox),
212
+ /*SFSI(".radio").live("click", function(){*/
213
+ SFSI(document).on("click", '.radio', function () {
214
+ var s = SFSI(this).parent().find("input:radio:first");
215
+ "sfsi_plus_popup_border_shadow" == s.attr("name") && sfsi_plus_make_popBox();
216
+ }), /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ? SFSI("img.sfsi_wicon").on("click", function (s) {
217
+ s.stopPropagation();
218
+ var i = SFSI("#sfsi_plus_floater_sec").val();
219
+ SFSI("div.sfsi_plus_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide(),
220
+ SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_tool_tip_2").css("z-index", "0"),
221
+ SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide()),
222
+ SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
223
+ "z-index": "999"
224
+ }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
225
+ opacity: 1,
226
+ "z-index": 10
227
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
228
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
229
+ opacity: 1,
230
+ "z-index": 10
231
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
232
+ SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
233
+ opacity: 1,
234
+ "z-index": 10
235
+ })), ("top-left" == i || "top-right" == i) && SFSI(this).parent().parent().parent().parent("#sfsi_plus_floater").length > 0 && "sfsi_plus_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").addClass("sfsi_plc_btm"),
236
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
237
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
238
+ opacity: 1,
239
+ "z-index": 10
240
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
241
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").removeClass("sfsi_plc_btm"),
242
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
243
+ opacity: 1,
244
+ "z-index": 1e3
245
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show());
246
+ // if(SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").attr('id')=="sfsiplusid_twitter" || SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").hasClass("sfsiplusid_twitter")){
247
+ // sfsi_plus_clone = SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2 iframe').clone();
248
+ // SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2 iframe').detach().remove();
249
+ // SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2').append(sfsi_plus_clone);
250
+ // }
251
+
252
+ }) : SFSI(document).on("mouseenter", "img.sfsi_wicon", function () {
253
+ var s = SFSI("#sfsi_plus_floater_sec").val();
254
+ SFSI("div.sfsi_plus_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide(),
255
+ SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_tool_tip_2").css("z-index", "0"),
256
+ SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_plus_wicons").find(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide()),
257
+ SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
258
+ "z-index": "999"
259
+ }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
260
+ opacity: 1,
261
+ "z-index": 10
262
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
263
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
264
+ opacity: 1,
265
+ "z-index": 10
266
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
267
+ SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
268
+ opacity: 1,
269
+ "z-index": 10
270
+ })), ("top-left" == s || "top-right" == s) && SFSI(this).parent().parent().parent().parent("#sfsi_plus_floater").length > 0 && "sfsi_plus_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").addClass("sfsi_plc_btm"),
271
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
272
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
273
+ opacity: 1,
274
+ "z-index": 10
275
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
276
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").removeClass("sfsi_plc_btm"),
277
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").css({
278
+ opacity: 1,
279
+ "z-index": 10
280
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").show());
281
+ if (SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").attr('id') == "sfsiplusid_twitter" || SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").hasClass("sfsiplusid_twitter")) {
282
+ sfsi_plus_clone = SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2 iframe").clone();
283
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2 iframe").detach().remove();
284
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_plus_tool_tip_2").find(".sfsi_plus_inside .icon2").append(sfsi_plus_clone);
285
+ }
286
+ }), SFSI(document).on("mouseleave", "div.sfsi_plus_wicons", function () {
287
+ SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && "fade_in" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").css("opacity", "0.6"),
288
+ SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && "scale" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").removeClass("scale"),
289
+ SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && "combo" == SFSI(this).children("div.sfsiplus_inerCnt").children("a.sficn").attr("data-effect") && (SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").css("opacity", "0.6"),
290
+ SFSI(this).children("div.sfsiplus_inerCnt").find("a.sficn").removeClass("scale"));
291
+ }), SFSI("body").on("click", function () {
292
+ SFSI(".sfsiplus_inerCnt").find("div.sfsi_plus_tool_tip_2").hide();
293
+ }), SFSI(".adminTooltip >a").on("hover", function () {
294
+ SFSI(this).offset().top, SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "1"),
295
+ SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").show();
296
+ }), SFSI(".adminTooltip").on("mouseleave", function () {
297
+ "none" != SFSI(".sfsi_plus_gpls_tool_bdr").css("display") && 0 != SFSI(".sfsi_plus_gpls_tool_bdr").css("opacity") ? SFSI(".pop_up_box ").on("click", function () {
298
+ SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "0"), SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").hide();
299
+ }) : (SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").css("opacity", "0"),
300
+ SFSI(this).parent("div").find("div.sfsi_plus_tool_tip_2_inr").hide());
301
+ }), SFSI(".expand-area").on("click", function () {
302
+ "Read more" == SFSI(this).text() ? (SFSI(this).siblings("p").children("label").fadeIn("slow"),
303
+ SFSI(this).text("Collapse")) : (SFSI(this).siblings("p").children("label").fadeOut("slow"),
304
+ SFSI(this).text("Read more"));
305
+ }), SFSI(".sfsi_plus_wDiv").length > 0 && setTimeout(function () {
306
+ var s = parseInt(SFSI(".sfsi_plus_wDiv").height()) + 15 + "px";
307
+ SFSI(".sfsi_plus_holders").each(function () {
308
+ SFSI(this).css("height", s);
309
+ });
310
+ SFSI(".sfsi_plus_widget").css("min-height", "auto");
311
+ }, 200);
312
+ jQuery(document).find('.wp-block-ultimate-social-media-plus-sfsi-plus-share-block').each(function (index, target) {
313
+ var actual_target = jQuery(target).find('.sfsi_plus_block');
314
+ var align = jQuery(actual_target).attr('data-align');
315
+ var maxPerRow = jQuery(actual_target).attr('data-count');
316
+ var iconType = jQuery(actual_target).attr('data-icon-type');
317
+ jQuery.ajax({
318
+ 'url': '/wp-json/ultimate-social-media-plus/v1/icons/?url=' + encodeURI(decodeURI(window.location.href)) + '&ractangle_icon=' + ('round' == iconType ? 0 : 1),
319
+ 'method': 'GET'
320
+ // 'data':{'is_admin':true,'share_url':'/'}
321
+ }).done((response) => {
322
+ jQuery(actual_target).html(response);
323
+ if (iconType == 'round') {
324
+ sfsi_plus_changeIconWidth(maxPerRow, target, align);
325
+ } else {
326
+ if ('center' === align) {
327
+ jQuery(target).find('.sfsi_plus_block_text_before_icon').css({
328
+ 'display': 'inherit'
329
+ });
330
+ }
331
+ jQuery(target).css({
332
+ 'text-align': align
333
+ });
334
+ }
335
+ if (window.gapi) {
336
+ window.gapi.plusone.go();
337
+ window.gapi.plus.go();
338
+ window.gapi.ytsubscribe.go();
339
+ };
340
+ if (window.twttr) {
341
+ window.twttr.widgets.load();
342
+ };
343
+ if (window.IN && window.IN.parse) {
344
+ window.IN.parse();
345
+ };
346
+ if (window.addthis) {
347
+ if (window.addthis.toolbox) {
348
+ window.addthis.toolbox('.addthis_button.sficn');
349
+ } else {
350
+ window.addthis.init();
351
+ window.addthis.toolbox('.addthis_button.sficn');
352
+ }
353
+ };
354
+ if (window.PinUtils) {
355
+ window.PinUtils.build();
356
+ };
357
+ if (window.FB) {
358
+ if (window.FB.XFBML) {
359
+ window.FB.XFBML.parse();
360
+ }
361
+ };
362
+ }).fail((response) => {
363
+ jQuery(actual_target).html(response.responseText.replace('/\\/g', ''));
364
+ });
365
+ });
366
+ if (undefined !== window.location.hash) {
367
+ switch (window.location.hash) {
368
+ case '#ui-id-3':
369
+ jQuery('#ui-id-3').click();
370
+ case '#ui-id-1':
371
+ jQuery('#ui-id-1').click();
372
+ }
373
+ }
374
+ // sfsi_plus_update_iconcount();
375
+ });
376
+
377
+ function sfsi_plus_update_iconcount() {
378
+ SFSI(".wp-block-ultimate-social-media-plus-sfsi-plus-share-block").each(function () {
379
+ var icon_count = SFSI(this).find(".sfsi_plus_block").attr('data-count');
380
+ var icon_align = SFSI(this).find(".sfsi_plus_block").attr('data-align');
381
+ // sfsi_plus_changeIconWidth(icon_count,this);
382
+ if (jQuery(this).find('.sfsiplus_norm_row').length < 1) {
383
+ setTimeout(function () {
384
+ sfsi_plus_changeIconWidth(icon_count, this, icon_align);
385
+ }, 1000);
386
+ } else {
387
+ sfsi_plus_changeIconWidth(icon_count, this, icon_align);
388
+ }
389
+ });
390
+ }
391
+
392
+ function sfsi_plus_changeIconWidth(per_row = null, target, icon_align) {
393
+ var iconWidth = parseInt(jQuery(target).find('.sfsiplus_norm_row div').css('width')) || 40;
394
+
395
+ var iconMargin = parseInt(jQuery(target).find('.sfsiplus_norm_row div').css('margin-left')) || 0;
396
+
397
+ var wrapperWidth = (iconWidth + iconMargin) * per_row;
398
+ jQuery(target).find('.sfsiplus_norm_row').css({
399
+ 'width': wrapperWidth + 'px'
400
+ });
401
+ jQuery(target).find('.sfsi_plus_block').css({
402
+ 'width': wrapperWidth + 'px'
403
+ });
404
+ jQuery(target).find('.sfsi_plus_block_text_before_icon').css({
405
+ 'padding-top': '12px'
406
+ });
407
+ if ('center' === icon_align) {
408
+ jQuery(target).find('.sfsi_plus_block_text_before_icon').css({
409
+ 'display': 'inherit'
410
+ });
411
+ }
412
+ jQuery(target).css({
413
+ 'text-align': icon_align
414
+ });
415
+ }
416
+ //hiding popup on close button
417
+ function sfsiplushidemepopup() {
418
+ SFSI(".sfsi_plus_FrntInner").fadeOut();
419
+ }
420
+
421
+ var sfsiplus_initTop = new Array();
422
+
423
+ function sfsi_plus_wechat_follow(url) {
424
+ if (jQuery('.sfsi_plus_wechat_scan').length == 0) {
425
+ jQuery('body').append("<div class='sfsi_plus_wechat_scan sfsi_plus_overlay show'><div class='sfsi_plus_inner_display'><a class='close_btn' href='' onclick=\"event.preventDefault();close_overlay(\'.sfsi_plus_wechat_scan\')\" >&times;</a><img src='" + url + "' style='max-width:90%;max-height:90%' /></div></div>");
426
+ } else {
427
+ jQuery('.sfsi_plus_wechat_scan').removeClass('hide').addClass('show');
428
+ }
429
+ }
430
+
431
+ function close_overlay(selector) {
432
+ if (typeof selector === "undefined") {
433
+ selector = '.sfsi_plus_overlay';
434
+ }
435
+ jQuery(selector).removeClass('show').addClass('hide');
436
+ }
437
+
438
+ function sfsi_plus_wechat_share(url) {
439
+ if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
440
+ sfsi_plus_wechat_share_mobile(url);
441
+ } else {
442
+ if (jQuery('.sfsi_plus_wechat_follow_overlay').length == 0) {
443
+ jQuery('body').append("<div class='sfsi_plus_wechat_follow_overlay sfsi_plus_overlay show'><div class='sfsi_plus_inner_display'><a class='close_btn' href='' onclick=\"event.preventDefault();close_overlay(\'.sfsi_plus_wechat_follow_overlay\')\" >&times;</a><div style='width:95%;max-width:500px; min-height:80%;background-color:#fff;margin:0 auto;margin:10% auto;padding: 20px 0;'><div style='width:90%;margin: 0 auto;text-align:center'><div class='sfsi_plus_wechat_qr_display' style='display:inline-block'></div></div><div style='width:80%;margin:10px auto 0 auto;text-align:center;font-weight:900;font-size:25px;'>\"Scan QR Code\" in WeChat and press ··· to share!</div></div></div>");
444
+ new QRCode(jQuery('.sfsi_plus_wechat_follow_overlay .sfsi_plus_wechat_qr_display')[0], encodeURI(decodeURI(window.location.href)))
445
+ jQuery('.sfsi_plus_wechat_follow_overlay .sfsi_plus_wechat_qr_display img').attr('nopin', 'nopin')
446
+ } else {
447
+ jQuery('.sfsi_plus_wechat_follow_overlay').removeClass('hide').addClass('show');
448
+ }
449
+ }
450
+ }
451
+
452
+ function sfsi_plus_wechat_share_mobile(url) {
453
+ if (jQuery('.sfsi_plus_wechat_follow_overlay').length == 0) {
454
+ jQuery('body').append("<div class='sfsi_plus_wechat_follow_overlay sfsi_plus_overlay show'><div class='sfsi_plus_inner_display'><a class='close_btn' href='' onclick=\"event.preventDefault();close_overlay(\'.sfsi_plus_wechat_follow_overlay\')\" >&times;</a><div style='width:95%; min-height:80%;background-color:#fff;margin:0 auto;margin:20% auto;padding: 20px 0;'><div style='width:90%;margin: 0 auto;'><input type='text' value='" + encodeURI(decodeURI(window.location.href)) + "' style='width:100%;padding:7px 0;text-align:center' /></div><div style='width:80%;margin:10px auto 0 auto'><div style='width:30%;display:inline-block;text-align:center' class='sfsi_plus_upload_butt_container' ><button onclick='sfsi_copy_text_parent_input(event)' class='upload_butt' >Copy</button></div><div style='width:60%;display:inline-block;text-align:center;margin-left:10%' class='sfsi_plus_upload_butt_container' ><a href='weixin://' class='upload_butt'>Open WeChat</a></div></div></div></div>");
455
+ } else {
456
+ jQuery('.sfsi_plus_wechat_follow_overlay').removeClass('hide').addClass('show');
457
+ }
458
+ }
459
+
460
+ function sfsi_copy_text_parent_input(event) {
461
+ var target = jQuery(event.target);
462
+ input_target = target.parent().parent().parent().find('input');
463
+ input_target.select();
464
+ document.execCommand('copy');
465
+ }
466
+
467
+
468
+ function sfsi_plus_widget_set() {
469
+ jQuery(".sfsi_plus_widget").each(function (index) {
470
+ if (jQuery(this).attr("data-position") == "widget") {
471
+ var wdgt_hght = jQuery(this).children(".sfsiplus_norm_row.sfsi_plus_wDiv").height();
472
+ var title_hght = jQuery(this).parent(".widget.sfsi_plus").children(".widget-title").height();
473
+ var totl_hght = parseInt(title_hght) + parseInt(wdgt_hght);
474
+ jQuery(this).parent(".widget.sfsi_plus").css("min-height", totl_hght + "px");
475
+ }
476
+ });
477
+ }
478
+
479
+ function sfsi_plus_time_pop_up(time_popUp){
480
+ jQuery(document).ready(function($) {
481
+ setTimeout(
482
+ function() {
483
+ jQuery('.sfsi_plus_outr_div').css({
484
+ 'z-index': '1000000',
485
+ opacity: 1
486
+ });
487
+ jQuery('.sfsi_plus_outr_div').fadeIn();
488
+ jQuery('.sfsi_plus_FrntInner').fadeIn(200);
489
+ }, time_popUp);
490
+ });
491
+ }
492
+ function sfsi_plus_responsive_toggle(){
493
+ jQuery(document).scroll(function($) {
494
+ var y = jQuery(this).scrollTop();
495
+ if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
496
+ if (jQuery(window).scrollTop() + jQuery(window).height() >= jQuery(document).height() - 100) {
497
+ jQuery('.sfsi_plus_outr_div').css({
498
+ 'z-index': '9996',
499
+ opacity: 1,
500
+ top: jQuery(window).scrollTop() + "px",
501
+ position: "absolute"
502
+ });
503
+ jQuery('.sfsi_plus_outr_div').fadeIn(200);
504
+ jQuery('.sfsi_plus_FrntInner').fadeIn(200);
505
+ } else {
506
+ jQuery('.sfsi_plus_outr_div').fadeOut();
507
+ jQuery('.sfsi_plus_FrntInner').fadeOut();
508
+ }
509
+ } else {
510
+ if (jQuery(window).scrollTop() + jQuery(window).height() >= jQuery(document).height() - 3) {
511
+ jQuery('.sfsi_plus_outr_div').css({
512
+ 'z-index': '9996',
513
+ opacity: 1,
514
+ top: jQuery(window).scrollTop() + 200 + "px",
515
+ position: "absolute"
516
+ });
517
+ jQuery('.sfsi_plus_outr_div').fadeIn(200);
518
+ jQuery('.sfsi_plus_FrntInner').fadeIn(200);
519
+ } else {
520
+ jQuery('.sfsi_plus_outr_div').fadeOut();
521
+ jQuery('.sfsi_plus_FrntInner').fadeOut();
522
+ }
523
+ }
524
+ });
525
+ }
526
+
527
+ function sfsi_social_pop_up(time_popUp){
528
+ jQuery(document).ready(function($) {
529
+ //SFSI('.sfsi_plus_outr_div').fadeIn();
530
+ sfsi_plus_setCookie('sfsi_socialPopUp', time(), 32);
531
+ setTimeout(function() {
532
+ jQuery('.sfsi_plus_outr_div').css({
533
+ 'z-index': '1000000',
534
+ opacity: 1
535
+ });
536
+ jQuery('.sfsi_plus_outr_div').fadeIn();
537
+ }, time_popUp);
538
+ });
539
+ var SFSI = jQuery.noConflict();
540
+ }
541
+
542
+ // should execute at last so that every function is acceable.
543
+ var sfsi_plus_functions_loaded = new CustomEvent('sfsi_plus_functions_loaded',{detail:{"abc":"def"}});
544
+ window.dispatchEvent(sfsi_plus_functions_loaded);
js/customValidate-min.js CHANGED
@@ -1,129 +1,128 @@
1
- function sfsi_plus_validationStep2() {
2
- if (SFSI("input").removeClass("inputError"), sfsi_validator(SFSI('input[name="sfsi_plus_rss_display"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_rss_url"]'), "url")) return sfsiplus_showErrorSuc("error", "Error : Invalid Rss url ", 2), SFSI('input[name="sfsi_plus_rss_url"]').addClass("inputError"), !1;
3
-
4
- if (SFSI(".tab2 > .sfsiplus_facebook_section").css("display") === "block") {
5
- if (sfsi_validator(SFSI('input[name="sfsi_plus_facebookPage_option"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_facebookPage_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_facebookPage_url"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid Facebook page url ", 2), SFSI('input[name="sfsi_plus_facebookPage_url"]').addClass("inputError"), !1;
6
- }
7
-
8
- if (SFSI(".tab2 > .sfsiplus_twitter_section").css("display") === "block") {
9
- if (sfsi_validator(SFSI('input[name="sfsi_plus_twitter_followme"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_twitter_followme"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_twitter_followUserName"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid Twitter UserName ", 2), SFSI('input[name="sfsi_plus_twitter_followUserName"]').addClass("inputError"), !1;
10
- if (sfsi_validator(SFSI('input[name="sfsi_plus_twitter_aboutPage"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_twitter_aboutPage"]'), "checked") && !sfsi_validator(SFSI("#sfsi_plus_twitter_aboutPageText"), "blank")) return sfsiplus_showErrorSuc("error", "Error : Tweet about my page is blank ", 2), SFSI("#sfsi_plus_twitter_aboutPageText").addClass("inputError"), !1;
11
- if (sfsi_validator(SFSI('input[name="sfsi_plus_twitter_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_twitter_page"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_twitter_pageURL"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid twitter page Url ", 2), SFSI('input[name="sfsi_plus_twitter_pageURL"]').addClass("inputError"), !1;
12
- }
13
-
14
- if (SFSI(".tab2 > .sfsiplus_youtube_section").css("display") === "block") {
15
- if (sfsi_validator(SFSI('input[name="sfsi_plus_youtube_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_youtube_page"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_youtube_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid youtube Url ", 2), SFSI('input[name="sfsi_plus_youtube_pageUrl"]').addClass("inputError"), !1;
16
- if (sfsi_validator(SFSI('input[name="sfsi_plus_youtube_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_youtube_follow"]'), "checked"))
17
- if ("name" == jQuery("input[name='sfsi_plus_youtubeusernameorid']:checked").val()) {
18
- if (!sfsi_validator(SFSI('input[name="sfsi_plus_ytube_user"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid youtube user ", 2), SFSI('input[name="sfsi_plus_ytube_user"]').addClass("inputError"), !1
19
- } else if (!sfsi_validator(SFSI('input[name="sfsi_plus_ytube_chnlid"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid youtube channel id", 2), SFSI('input[name="sfsi_plus_ytube_chnlid"]').addClass("inputError"), !1;
20
- }
21
-
22
- if (SFSI(".tab2 > .sfsiplus_pintrest_section").css("display") === "block") {
23
- if (sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_page"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid pinterest page url ", 2), SFSI('input[name="sfsi_plus_pinterest_pageUrl"]').addClass("inputError"), !1;
24
- }
25
-
26
- if (SFSI(".tab2 > .sfsiplus_instagram_section").css("display") === "block") {
27
- if (sfsi_validator(SFSI('input[name="sfsi_plus_instagram_display"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_instagram_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid Instagram url ", 2), SFSI('input[name="sfsi_plus_instagram_pageUrl"]').addClass("inputError"), !1;
28
- }
29
-
30
- if (SFSI(".tab2 > .sfsiplus_houzz_section").css("display") === "block") {
31
- if (sfsi_validator(SFSI('input[name="sfsi_plus_houzz_display"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_houzz_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid Houzz url ", 2), SFSI('input[name="sfsi_plus_houzz_pageUrl"]').addClass("inputError"), !1;
32
- }
33
-
34
- if (SFSI(".tab2 > .sfsiplus_linkedin_section").css("display") === "block") {
35
- if (sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_page"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_pageURL"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid LinkedIn page url ", 2), SFSI('input[name="sfsi_plus_linkedin_pageURL"]').addClass("inputError"), !1;
36
- if (sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_recommendBusines"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_recommendBusines"]'), "checked") && (!sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_recommendProductId"]'), "blank") || !sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_recommendCompany"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Please Enter Product Id and Company for LinkedIn Recommendation ", 2), SFSI('input[name="sfsi_plus_linkedin_recommendProductId"]').addClass("inputError"), SFSI('input[name="sfsi_plus_linkedin_recommendCompany"]').addClass("inputError"), !1;
37
- }
38
- if (SFSI(".tab2 > .sfsiplus_weibo_section").css("display") === "block") {
39
- if (sfsi_validator(SFSI('input[name="sfsi_plus_weibo_display"]'), "checked") && (sfsi_validator(SFSI('input[name="sfsi_plus_weiboVisit_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_weiboVisit_url"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Invalid weibo url ", 2), SFSI('input[name="sfsi_plus_weiboVisit_url"]').addClass("inputError"), !1;
40
- }
41
-
42
- if (SFSI(".tab2 > .sfsiplus_vk_section").css("display") === "block") {
43
- if (sfsi_validator(SFSI('input[name="sfsi_plus_vk_display"]'), "checked") && (sfsi_validator(SFSI('input[name="sfsi_plus_vkVisit_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_vkVisit_url"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Invalid vk url ", 2), SFSI('input[name="sfsi_plus_vkVisit_url"]').addClass("inputError"), !1;
44
- }
45
-
46
- if (SFSI(".tab2 > .sfsiplus_telegram_section").css("display") === "block") {
47
- if (sfsi_validator(SFSI('input[name="sfsi_plus_telegram_display"]'), "checked") && ( !sfsi_validator(SFSI('input[name="sfsi_plus_telegram_message"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Please enter telegram pre-filled message", 2), SFSI('input[name="sfsi_plus_telegram_message"]').addClass("inputError"), !1;
48
- if (sfsi_validator(SFSI('input[name="sfsi_plus_telegram_display"]'), "checked") && ( !sfsi_validator(SFSI('input[name="sfsi_plus_telegram_username"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Please enter telegram username", 2), SFSI('input[name="sfsi_plus_telegram_username"]').addClass("inputError"), !1;
49
- }
50
-
51
- if (SFSI(".tab2 > .sfsiplus_ok_section").css("display") === "block") {
52
- if (sfsi_validator(SFSI('input[name="sfsi_plus_ok_display"]'), "checked") && (sfsi_validator(SFSI('input[name="sfsi_plus_okVisit_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_okVisit_url"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Invalid ok url ", 2), SFSI('input[name="sfsi_plus_okVisit_url"]').addClass("inputError"), !1;
53
- if (sfsi_validator(SFSI('input[name="sfsi_plus_ok_display"]'), "checked") && (sfsi_validator(SFSI('input[name="sfsi_plus_okSubscribe_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_okSubscribe_userid"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Invalid ok userid ", 2), SFSI('input[name="sfsi_plus_okSubscribe_userid"]').addClass("inputError"), !1;
54
- }
55
-
56
- if (SFSI(".tab2 > .sfsiplus_houzz_section").css("display") === "block") {
57
- if (sfsi_validator(SFSI('input[name="sfsi_plus_houzz_display"]'), "checked") //&& sfsi_validator(SFSI('input[name="sfsi_plus_houzzVisit_option"]'), "checked") //
58
- && !sfsi_validator(SFSI('input[name="sfsi_plus_houzz_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid houzz url ", 2), SFSI('input[name="sfsi_plus_houzz_pageUrl"]').addClass("inputError"), !1;
59
- }
60
-
61
- var s = 0;
62
- return SFSI("input[name='sfsi_plus_CustomIcon_links[]']").each(function () {
63
- //sfsi_validator(SFSI(this), "blank") && sfsi_validator(SFSI(SFSI(this)), "url") || (sfsiplus_showErrorSuc("error", "Error : Please Enter a valid Custom link ", 2), SFSI(this).addClass("inputError"), s = 1)
64
- sfsi_validator(SFSI(this), "blank") || (sfsiplus_showErrorSuc("error", "Error : Please Enter a valid Custom link ", 2), SFSI(this).addClass("inputError"), s = 1)
65
- }), s ? !1 : !0
66
- }
67
-
68
- function sfsi_plus_validationStep3() {
69
- return SFSI("input").removeClass("inputError"), sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_icons"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_icons"]'), "checked") && !(sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_Firstload"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_Firstload"]'), "checked") || sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "checked")) ? (sfsiplus_showErrorSuc("error", "Error : Please Chose a Shuffle option ", 3), SFSI('input[name="sfsi_plus_shuffle_Firstload"]').addClass("inputError"), SFSI('input[name="sfsi_plus_shuffle_interval"]').addClass("inputError"), !1) : sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_icons"]'), "checked") || !sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_Firstload"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "checked") ? !sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "activte") || !sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "checked") || sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_intervalTime"]'), "blank") && sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_intervalTime"]'), "int") ? !0 : (sfsiplus_showErrorSuc("error", "Error : Invalid shuffle time interval", 3), SFSI('input[name="sfsi_plus_shuffle_intervalTime"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", 'Error : Please check "Shuffle them automatically" option also ', 3), SFSI('input[name="sfsi_plus_shuffle_Firstload"]').addClass("inputError"), SFSI('input[name="sfsi_plus_shuffle_interval"]').addClass("inputError"), !1)
70
- }
71
-
72
- function sfsi_plus_validationStep4() {
73
- if (sfsi_validator(SFSI('input[name="sfsi_plus_email_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_email_countsDisplay"]'), "checked") && "manual" == SFSI('input[name="sfsi_plus_email_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_email_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter manual counts for Email icon ", 4), SFSI('input[name="sfsi_plus_email_manualCounts"]').addClass("inputError"), !1;
74
- if (sfsi_validator(SFSI('input[name="sfsi_plus_rss_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_rss_countsDisplay"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_rss_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter manual counts for Rss icon ", 4), SFSI('input[name="sfsi_plus_rss_countsDisplay"]').addClass("inputError"), !1;
75
- if (sfsi_validator(SFSI('input[name="sfsi_plus_facebook_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_facebook_countsDisplay"]'), "checked") && "manual" == SFSI('input[name="sfsi_plus_facebook_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_facebook_manualCounts"]'), "blank") && !sfsi_validator(SFSI('input[name="sfsi_plus_facebook_manualCounts"]'), "url")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid facebook manual counts ", 4), SFSI('input[name="sfsi_plus_facebook_manualCounts"]').addClass("inputError"), !1;
76
-
77
- if (sfsi_validator(SFSI('input[name="sfsi_plus_twitter_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_twitter_countsDisplay"]'), "checked")) {
78
- if ("source" == SFSI('input[name="sfsi_plus_twitter_countsFrom"]:checked').val()) {
79
- if (!sfsi_validator(SFSI('input[name="sfsiplus_tw_consumer_key"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid consumer key", 4), SFSI('input[name="sfsiplus_tw_consumer_key"]').addClass("inputError"), !1;
80
- if (!sfsi_validator(SFSI('input[name="sfsiplus_tw_consumer_secret"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid consume secret ", 4), SFSI('input[name="sfsiplus_tw_consumer_secret"]').addClass("inputError"), !1;
81
- if (!sfsi_validator(SFSI('input[name="sfsiplus_tw_oauth_access_token"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid oauth access token", 4), SFSI('input[name="sfsiplus_tw_oauth_access_token"]').addClass("inputError"), !1;
82
- if (!sfsi_validator(SFSI('input[name="sfsiplus_tw_oauth_access_token_secret"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a oAuth access token secret", 4), SFSI('input[name="sfsiplus_tw_oauth_access_token_secret"]').addClass("inputError"), !1
83
- }
84
- if ("manual" == SFSI('input[name="sfsi_plus_linkedIn_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_twitter_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter Twitter manual counts ", 4), SFSI('input[name="sfsi_plus_twitter_manualCounts"]').addClass("inputError"), !1
85
- }
86
- if (sfsi_validator(SFSI('input[name="sfsi_plus_linkedIn_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_linkedIn_countsDisplay"]'), "checked")) {
87
- if ("follower" == SFSI('input[name="sfsi_plus_linkedIn_countsFrom"]:checked').val()) {
88
- if (!sfsi_validator(SFSI('input[name="sfsi_plus_ln_company"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid company name", 4), SFSI('input[name="sfsi_plus_ln_company"]').addClass("inputError"), !1;
89
- if (!sfsi_validator(SFSI('input[name="sfsi_plus_ln_api_key"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid API key ", 4), SFSI('input[name="sfsi_plus_ln_api_key"]').addClass("inputError"), !1;
90
- if (!sfsi_validator(SFSI('input[name="sfsi_plus_ln_secret_key"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid secret ", 4), SFSI('input[name="sfsi_plus_ln_secret_key"]').addClass("inputError"), !1;
91
- if (!sfsi_validator(SFSI('input[name="sfsi_plus_ln_oAuth_user_token"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a oAuth Access Token", 4), SFSI('input[name="sfsi_plus_ln_oAuth_user_token"]').addClass("inputError"), !1
92
- }
93
- if ("manual" == SFSI('input[name="sfsi_plus_linkedIn_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_linkedIn_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter LinkedIn manual counts ", 4), SFSI('input[name="sfsi_plus_linkedIn_manualCounts"]').addClass("inputError"), !1
94
- }
95
- if (sfsi_validator(SFSI('input[name="sfsi_plus_youtube_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_youtube_countsDisplay"]'), "checked")) {
96
- if ("subscriber" == SFSI('input[name="sfsi_plus_youtube_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_youtube_user"]'), "blank") && !sfsi_validator(SFSI('input[name="sfsi_plus_youtube_channelId"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a youtube user name or channel id", 4), SFSI('input[name="sfsi_plus_youtube_user"]').addClass("inputError"), SFSI('input[name="sfsi_plus_youtube_channelId"]').addClass("inputError"), !1;
97
- if ("manual" == SFSI('input[name="sfsi_plus_youtube_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_youtube_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter youtube manual counts ", 4), SFSI('input[name="sfsi_plus_youtube_manualCounts"]').addClass("inputError"), !1
98
- }
99
- if (sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_countsDisplay"]'), "checked") && "manual" == SFSI('input[name="sfsi_plus_pinterest_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter Pinterest manual counts ", 4), SFSI('input[name="sfsi_plus_pinterest_manualCounts"]').addClass("inputError"), !1;
100
- if (sfsi_validator(SFSI('input[name="sfsi_plus_instagram_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_instagram_countsDisplay"]'), "checked")) {
101
- if ("manual" == SFSI('input[name="sfsi_plus_instagram_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_instagram_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter Instagram manual counts ", 4), SFSI('input[name="sfsi_plus_instagram_manualCounts"]').addClass("inputError"), !1;
102
- if ("followers" == SFSI('input[name="sfsi_plus_instagram_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_instagram_User"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a instagram user name", 4), SFSI('input[name="sfsi_plus_instagram_User"]').addClass("inputError"), !1
103
- }
104
- return 1;
105
- }
106
-
107
- function sfsi_plus_validationStep5() {
108
- return sfsi_validator(SFSI('input[name="sfsi_plus_icons_size"]'), "int") ? parseInt(SFSI('input[name="sfsi_plus_icons_size"]').val()) > 100 ? (sfsiplus_showErrorSuc("error", "Error : Icons Size allow 100px maximum ", 5), SFSI('input[name="sfsi_plus_icons_size"]').addClass("inputError"), !1) : parseInt(SFSI('input[name="sfsi_plus_icons_size"]').val()) <= 0 ? (sfsiplus_showErrorSuc("error", "Error : Icons Size should be more than 0 ", 5), SFSI('input[name="sfsi_plus_icons_size"]').addClass("inputError"), !1) : sfsi_validator(SFSI('input[name="sfsi_plus_icons_spacing"]'), "int") ? parseInt(SFSI('input[name="sfsi_plus_icons_spacing"]').val()) < 0 ? (sfsiplus_showErrorSuc("error", "Error : Icons Spacing should be 0 or more", 5), SFSI('input[name="sfsi_plus_icons_spacing"]').addClass("inputError"), !1) : sfsi_validator(SFSI('input[name="sfsi_plus_icons_perRow"]'), "int") ? parseInt(SFSI('input[name="sfsi_plus_icons_perRow"]').val()) <= 0 ? (sfsiplus_showErrorSuc("error", "Error : Icons Per row should be more than 0", 5), SFSI('input[name="sfsi_plus_icons_perRow"]').addClass("inputError"), !1) : "yes" == SFSI('input[name="sfsi_plus_icons_float"]:checked').val() && "yes" == SFSI('input[name="sfsi_plus_icons_stick"]:checked').val() ? (sfsiplus_showErrorSuc("error", "Error : Only one allow from Sticking & floating ", 5), SFSI('input[name="sfsi_plus_icons_float"][value="no"]').prop("checked", !0), !1) : !0 : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 5), SFSI('input[name="sfsi_plus_icons_perRow"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 5), SFSI('input[name="sfsi_plus_icons_spacing"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 5), SFSI('input[name="sfsi_plus_icons_size"]').addClass("inputError"), !1)
109
- }
110
-
111
- function sfsi_plus_validationStep7() {
112
- return sfsi_validator(SFSI('input[name="sfsi_plus_popup_border_thickness"]'), "int") ? sfsi_validator(SFSI('input[name="sfsi_plus_popup_fontSize"]'), "int") ? "once" != SFSI('input[name="sfsi_plus_Shown_pop"]:checked').val() || sfsi_validator(SFSI('input[name="sfsi_plus_Shown_popupOnceTime"]'), "blank") || sfsi_validator(SFSI('input[name="sfsi_plus_Shown_popupOnceTime"]'), "url") ? "selectedpage" != SFSI('input[name="sfsi_plus_Show_popupOn"]:checked').val() || sfsi_validator(SFSI('input[name="sfsi_plus_Show_popupOn"]'), "blank") ? sfsi_validator(SFSI('input[name="sfsi_plus_icons_spacing"]'), "int") ? sfsi_validator(SFSI('input[name="sfsi_plus_icons_perRow"]'), "int") ? !0 : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 7), SFSI('input[name="sfsi_plus_icons_perRow"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 7), SFSI('input[name="sfsi_plus_icons_spacing"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please Enter page ids with comma ", 7), SFSI('input[name="sfsi_plus_Show_popupOn"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please Enter a valid pop up shown time ", 7), SFSI('input[name="sfsi_plus_Shown_popupOnceTime"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 7), SFSI('input[name="sfsi_plus_popup_fontSize"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 7), SFSI('input[name="sfsi_plus_popup_border_thickness"]').addClass("inputError"), !1)
113
- }
114
-
115
- function sfsi_validator(s, r) {
116
- var i = new RegExp("^(http|https|ftp)://([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((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.,@?'\\+&%$#=~_-]+))*$");
117
- switch (r) {
118
- case "blank":
119
- return s.val().trim() ? !0 : !1;
120
- case "url":
121
- return i.test(s.val().trim()) ? !0 : !1;
122
- case "checked":
123
- return !s.attr("checked") == !0 ? !1 : !0;
124
- case "activte":
125
- return s.attr("disabled") ? !1 : !0;
126
- case "int":
127
- return isNaN(s.val()) ? !1 : !0
128
- }
129
  }
1
+ function sfsi_plus_validationStep2() {
2
+ if (SFSI("input").removeClass("inputError"), sfsi_validator(SFSI('input[name="sfsi_plus_rss_display"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_rss_url"]'), "url")) return sfsiplus_showErrorSuc("error", "Error : Invalid Rss url ", 2), SFSI('input[name="sfsi_plus_rss_url"]').addClass("inputError"), !1;
3
+
4
+ if (SFSI(".tab2 > .sfsiplus_facebook_section").css("display") === "block") {
5
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_facebookPage_option"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_facebookPage_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_facebookPage_url"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid Facebook page url ", 2), SFSI('input[name="sfsi_plus_facebookPage_url"]').addClass("inputError"), !1;
6
+ }
7
+
8
+ if (SFSI(".tab2 > .sfsiplus_twitter_section").css("display") === "block") {
9
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_twitter_followme"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_twitter_followme"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_twitter_followUserName"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid Twitter UserName ", 2), SFSI('input[name="sfsi_plus_twitter_followUserName"]').addClass("inputError"), !1;
10
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_twitter_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_twitter_page"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_twitter_pageURL"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid twitter page Url ", 2), SFSI('input[name="sfsi_plus_twitter_pageURL"]').addClass("inputError"), !1;
11
+ }
12
+
13
+ if (SFSI(".tab2 > .sfsiplus_youtube_section").css("display") === "block") {
14
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_youtube_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_youtube_page"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_youtube_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid youtube Url ", 2), SFSI('input[name="sfsi_plus_youtube_pageUrl"]').addClass("inputError"), !1;
15
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_youtube_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_youtube_follow"]'), "checked"))
16
+ if ("name" == jQuery("input[name='sfsi_plus_youtubeusernameorid']:checked").val()) {
17
+ if (!sfsi_validator(SFSI('input[name="sfsi_plus_ytube_user"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid youtube user ", 2), SFSI('input[name="sfsi_plus_ytube_user"]').addClass("inputError"), !1
18
+ } else if (!sfsi_validator(SFSI('input[name="sfsi_plus_ytube_chnlid"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid youtube channel id", 2), SFSI('input[name="sfsi_plus_ytube_chnlid"]').addClass("inputError"), !1;
19
+ }
20
+
21
+ if (SFSI(".tab2 > .sfsiplus_pintrest_section").css("display") === "block") {
22
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_page"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid pinterest page url ", 2), SFSI('input[name="sfsi_plus_pinterest_pageUrl"]').addClass("inputError"), !1;
23
+ }
24
+
25
+ if (SFSI(".tab2 > .sfsiplus_instagram_section").css("display") === "block") {
26
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_instagram_display"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_instagram_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid Instagram url ", 2), SFSI('input[name="sfsi_plus_instagram_pageUrl"]').addClass("inputError"), !1;
27
+ }
28
+
29
+ if (SFSI(".tab2 > .sfsiplus_houzz_section").css("display") === "block") {
30
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_houzz_display"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_houzz_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid Houzz url ", 2), SFSI('input[name="sfsi_plus_houzz_pageUrl"]').addClass("inputError"), !1;
31
+ }
32
+
33
+ if (SFSI(".tab2 > .sfsiplus_linkedin_section").css("display") === "block") {
34
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_page"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_page"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_pageURL"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid LinkedIn page url ", 2), SFSI('input[name="sfsi_plus_linkedin_pageURL"]').addClass("inputError"), !1;
35
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_recommendBusines"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_recommendBusines"]'), "checked") && (!sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_recommendProductId"]'), "blank") || !sfsi_validator(SFSI('input[name="sfsi_plus_linkedin_recommendCompany"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Please Enter Product Id and Company for LinkedIn Recommendation ", 2), SFSI('input[name="sfsi_plus_linkedin_recommendProductId"]').addClass("inputError"), SFSI('input[name="sfsi_plus_linkedin_recommendCompany"]').addClass("inputError"), !1;
36
+ }
37
+ if (SFSI(".tab2 > .sfsiplus_weibo_section").css("display") === "block") {
38
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_weibo_display"]'), "checked") && (sfsi_validator(SFSI('input[name="sfsi_plus_weiboVisit_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_weiboVisit_url"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Invalid weibo url ", 2), SFSI('input[name="sfsi_plus_weiboVisit_url"]').addClass("inputError"), !1;
39
+ }
40
+
41
+ if (SFSI(".tab2 > .sfsiplus_vk_section").css("display") === "block") {
42
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_vk_display"]'), "checked") && (sfsi_validator(SFSI('input[name="sfsi_plus_vkVisit_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_vkVisit_url"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Invalid vk url ", 2), SFSI('input[name="sfsi_plus_vkVisit_url"]').addClass("inputError"), !1;
43
+ }
44
+
45
+ if (SFSI(".tab2 > .sfsiplus_telegram_section").css("display") === "block") {
46
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_telegram_display"]'), "checked") && ( !sfsi_validator(SFSI('input[name="sfsi_plus_telegram_message"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Please enter telegram pre-filled message", 2), SFSI('input[name="sfsi_plus_telegram_message"]').addClass("inputError"), !1;
47
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_telegram_display"]'), "checked") && ( !sfsi_validator(SFSI('input[name="sfsi_plus_telegram_username"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Please enter telegram username", 2), SFSI('input[name="sfsi_plus_telegram_username"]').addClass("inputError"), !1;
48
+ }
49
+
50
+ if (SFSI(".tab2 > .sfsiplus_ok_section").css("display") === "block") {
51
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_ok_display"]'), "checked") && (sfsi_validator(SFSI('input[name="sfsi_plus_okVisit_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_okVisit_url"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Invalid ok url ", 2), SFSI('input[name="sfsi_plus_okVisit_url"]').addClass("inputError"), !1;
52
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_ok_display"]'), "checked") && (sfsi_validator(SFSI('input[name="sfsi_plus_okSubscribe_option"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_okSubscribe_userid"]'), "blank"))) return sfsiplus_showErrorSuc("error", "Error : Invalid ok userid ", 2), SFSI('input[name="sfsi_plus_okSubscribe_userid"]').addClass("inputError"), !1;
53
+ }
54
+
55
+ if (SFSI(".tab2 > .sfsiplus_houzz_section").css("display") === "block") {
56
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_houzz_display"]'), "checked") //&& sfsi_validator(SFSI('input[name="sfsi_plus_houzzVisit_option"]'), "checked") //
57
+ && !sfsi_validator(SFSI('input[name="sfsi_plus_houzz_pageUrl"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Invalid houzz url ", 2), SFSI('input[name="sfsi_plus_houzz_pageUrl"]').addClass("inputError"), !1;
58
+ }
59
+
60
+ var s = 0;
61
+ return SFSI("input[name='sfsi_plus_CustomIcon_links[]']").each(function () {
62
+ //sfsi_validator(SFSI(this), "blank") && sfsi_validator(SFSI(SFSI(this)), "url") || (sfsiplus_showErrorSuc("error", "Error : Please Enter a valid Custom link ", 2), SFSI(this).addClass("inputError"), s = 1)
63
+ sfsi_validator(SFSI(this), "blank") || (sfsiplus_showErrorSuc("error", "Error : Please Enter a valid Custom link ", 2), SFSI(this).addClass("inputError"), s = 1)
64
+ }), s ? !1 : !0
65
+ }
66
+
67
+ function sfsi_plus_validationStep3() {
68
+ return SFSI("input").removeClass("inputError"), sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_icons"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_icons"]'), "checked") && !(sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_Firstload"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_Firstload"]'), "checked") || sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "checked")) ? (sfsiplus_showErrorSuc("error", "Error : Please Chose a Shuffle option ", 3), SFSI('input[name="sfsi_plus_shuffle_Firstload"]').addClass("inputError"), SFSI('input[name="sfsi_plus_shuffle_interval"]').addClass("inputError"), !1) : sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_icons"]'), "checked") || !sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_Firstload"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "checked") ? !sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "activte") || !sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_interval"]'), "checked") || sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_intervalTime"]'), "blank") && sfsi_validator(SFSI('input[name="sfsi_plus_shuffle_intervalTime"]'), "int") ? !0 : (sfsiplus_showErrorSuc("error", "Error : Invalid shuffle time interval", 3), SFSI('input[name="sfsi_plus_shuffle_intervalTime"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", 'Error : Please check "Shuffle them automatically" option also ', 3), SFSI('input[name="sfsi_plus_shuffle_Firstload"]').addClass("inputError"), SFSI('input[name="sfsi_plus_shuffle_interval"]').addClass("inputError"), !1)
69
+ }
70
+
71
+ function sfsi_plus_validationStep4() {
72
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_email_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_email_countsDisplay"]'), "checked") && "manual" == SFSI('input[name="sfsi_plus_email_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_email_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter manual counts for Email icon ", 4), SFSI('input[name="sfsi_plus_email_manualCounts"]').addClass("inputError"), !1;
73
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_rss_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_rss_countsDisplay"]'), "checked") && !sfsi_validator(SFSI('input[name="sfsi_plus_rss_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter manual counts for Rss icon ", 4), SFSI('input[name="sfsi_plus_rss_countsDisplay"]').addClass("inputError"), !1;
74
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_facebook_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_facebook_countsDisplay"]'), "checked") && "manual" == SFSI('input[name="sfsi_plus_facebook_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_facebook_manualCounts"]'), "blank") && !sfsi_validator(SFSI('input[name="sfsi_plus_facebook_manualCounts"]'), "url")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid facebook manual counts ", 4), SFSI('input[name="sfsi_plus_facebook_manualCounts"]').addClass("inputError"), !1;
75
+
76
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_twitter_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_twitter_countsDisplay"]'), "checked")) {
77
+ if ("source" == SFSI('input[name="sfsi_plus_twitter_countsFrom"]:checked').val()) {
78
+ if (!sfsi_validator(SFSI('input[name="sfsiplus_tw_consumer_key"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid consumer key", 4), SFSI('input[name="sfsiplus_tw_consumer_key"]').addClass("inputError"), !1;
79
+ if (!sfsi_validator(SFSI('input[name="sfsiplus_tw_consumer_secret"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid consume secret ", 4), SFSI('input[name="sfsiplus_tw_consumer_secret"]').addClass("inputError"), !1;
80
+ if (!sfsi_validator(SFSI('input[name="sfsiplus_tw_oauth_access_token"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid oauth access token", 4), SFSI('input[name="sfsiplus_tw_oauth_access_token"]').addClass("inputError"), !1;
81
+ if (!sfsi_validator(SFSI('input[name="sfsiplus_tw_oauth_access_token_secret"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a oAuth access token secret", 4), SFSI('input[name="sfsiplus_tw_oauth_access_token_secret"]').addClass("inputError"), !1
82
+ }
83
+ if ("manual" == SFSI('input[name="sfsi_plus_linkedIn_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_twitter_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter Twitter manual counts ", 4), SFSI('input[name="sfsi_plus_twitter_manualCounts"]').addClass("inputError"), !1
84
+ }
85
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_linkedIn_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_linkedIn_countsDisplay"]'), "checked")) {
86
+ if ("follower" == SFSI('input[name="sfsi_plus_linkedIn_countsFrom"]:checked').val()) {
87
+ if (!sfsi_validator(SFSI('input[name="sfsi_plus_ln_company"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid company name", 4), SFSI('input[name="sfsi_plus_ln_company"]').addClass("inputError"), !1;
88
+ if (!sfsi_validator(SFSI('input[name="sfsi_plus_ln_api_key"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid API key ", 4), SFSI('input[name="sfsi_plus_ln_api_key"]').addClass("inputError"), !1;
89
+ if (!sfsi_validator(SFSI('input[name="sfsi_plus_ln_secret_key"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a valid secret ", 4), SFSI('input[name="sfsi_plus_ln_secret_key"]').addClass("inputError"), !1;
90
+ if (!sfsi_validator(SFSI('input[name="sfsi_plus_ln_oAuth_user_token"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a oAuth Access Token", 4), SFSI('input[name="sfsi_plus_ln_oAuth_user_token"]').addClass("inputError"), !1
91
+ }
92
+ if ("manual" == SFSI('input[name="sfsi_plus_linkedIn_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_linkedIn_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter LinkedIn manual counts ", 4), SFSI('input[name="sfsi_plus_linkedIn_manualCounts"]').addClass("inputError"), !1
93
+ }
94
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_youtube_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_youtube_countsDisplay"]'), "checked")) {
95
+ if ("subscriber" == SFSI('input[name="sfsi_plus_youtube_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_youtube_user"]'), "blank") && !sfsi_validator(SFSI('input[name="sfsi_plus_youtube_channelId"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a youtube user name or channel id", 4), SFSI('input[name="sfsi_plus_youtube_user"]').addClass("inputError"), SFSI('input[name="sfsi_plus_youtube_channelId"]').addClass("inputError"), !1;
96
+ if ("manual" == SFSI('input[name="sfsi_plus_youtube_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_youtube_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter youtube manual counts ", 4), SFSI('input[name="sfsi_plus_youtube_manualCounts"]').addClass("inputError"), !1
97
+ }
98
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_countsDisplay"]'), "checked") && "manual" == SFSI('input[name="sfsi_plus_pinterest_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_pinterest_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter Pinterest manual counts ", 4), SFSI('input[name="sfsi_plus_pinterest_manualCounts"]').addClass("inputError"), !1;
99
+ if (sfsi_validator(SFSI('input[name="sfsi_plus_instagram_countsDisplay"]'), "activte") && sfsi_validator(SFSI('input[name="sfsi_plus_instagram_countsDisplay"]'), "checked")) {
100
+ if ("manual" == SFSI('input[name="sfsi_plus_instagram_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_instagram_manualCounts"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter Instagram manual counts ", 4), SFSI('input[name="sfsi_plus_instagram_manualCounts"]').addClass("inputError"), !1;
101
+ if ("followers" == SFSI('input[name="sfsi_plus_instagram_countsFrom"]:checked').val() && !sfsi_validator(SFSI('input[name="sfsi_plus_instagram_User"]'), "blank")) return sfsiplus_showErrorSuc("error", "Error : Please Enter a instagram user name", 4), SFSI('input[name="sfsi_plus_instagram_User"]').addClass("inputError"), !1
102
+ }
103
+ return 1;
104
+ }
105
+
106
+ function sfsi_plus_validationStep5() {
107
+ return sfsi_validator(SFSI('input[name="sfsi_plus_icons_size"]'), "int") ? parseInt(SFSI('input[name="sfsi_plus_icons_size"]').val()) > 100 ? (sfsiplus_showErrorSuc("error", "Error : Icons Size allow 100px maximum ", 5), SFSI('input[name="sfsi_plus_icons_size"]').addClass("inputError"), !1) : parseInt(SFSI('input[name="sfsi_plus_icons_size"]').val()) <= 0 ? (sfsiplus_showErrorSuc("error", "Error : Icons Size should be more than 0 ", 5), SFSI('input[name="sfsi_plus_icons_size"]').addClass("inputError"), !1) : sfsi_validator(SFSI('input[name="sfsi_plus_icons_spacing"]'), "int") ? parseInt(SFSI('input[name="sfsi_plus_icons_spacing"]').val()) < 0 ? (sfsiplus_showErrorSuc("error", "Error : Icons Spacing should be 0 or more", 5), SFSI('input[name="sfsi_plus_icons_spacing"]').addClass("inputError"), !1) : sfsi_validator(SFSI('input[name="sfsi_plus_icons_perRow"]'), "int") ? parseInt(SFSI('input[name="sfsi_plus_icons_perRow"]').val()) <= 0 ? (sfsiplus_showErrorSuc("error", "Error : Icons Per row should be more than 0", 5), SFSI('input[name="sfsi_plus_icons_perRow"]').addClass("inputError"), !1) : "yes" == SFSI('input[name="sfsi_plus_icons_float"]:checked').val() && "yes" == SFSI('input[name="sfsi_plus_icons_stick"]:checked').val() ? (sfsiplus_showErrorSuc("error", "Error : Only one allow from Sticking & floating ", 5), SFSI('input[name="sfsi_plus_icons_float"][value="no"]').prop("checked", !0), !1) : !0 : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 5), SFSI('input[name="sfsi_plus_icons_perRow"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 5), SFSI('input[name="sfsi_plus_icons_spacing"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 5), SFSI('input[name="sfsi_plus_icons_size"]').addClass("inputError"), !1)
108
+ }
109
+
110
+ function sfsi_plus_validationStep7() {
111
+ return sfsi_validator(SFSI('input[name="sfsi_plus_popup_border_thickness"]'), "int") ? sfsi_validator(SFSI('input[name="sfsi_plus_popup_fontSize"]'), "int") ? "once" != SFSI('input[name="sfsi_plus_Shown_pop"]:checked').val() || sfsi_validator(SFSI('input[name="sfsi_plus_Shown_popupOnceTime"]'), "blank") || sfsi_validator(SFSI('input[name="sfsi_plus_Shown_popupOnceTime"]'), "url") ? "selectedpage" != SFSI('input[name="sfsi_plus_Show_popupOn"]:checked').val() || sfsi_validator(SFSI('input[name="sfsi_plus_Show_popupOn"]'), "blank") ? sfsi_validator(SFSI('input[name="sfsi_plus_icons_spacing"]'), "int") ? sfsi_validator(SFSI('input[name="sfsi_plus_icons_perRow"]'), "int") ? !0 : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 7), SFSI('input[name="sfsi_plus_icons_perRow"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 7), SFSI('input[name="sfsi_plus_icons_spacing"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please Enter page ids with comma ", 7), SFSI('input[name="sfsi_plus_Show_popupOn"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please Enter a valid pop up shown time ", 7), SFSI('input[name="sfsi_plus_Shown_popupOnceTime"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 7), SFSI('input[name="sfsi_plus_popup_fontSize"]').addClass("inputError"), !1) : (sfsiplus_showErrorSuc("error", "Error : Please enter a numeric value only ", 7), SFSI('input[name="sfsi_plus_popup_border_thickness"]').addClass("inputError"), !1)
112
+ }
113
+
114
+ function sfsi_validator(s, r) {
115
+ var i = new RegExp("^(http|https|ftp)://([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((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.,@?'\\+&%$#=~_-]+))*$");
116
+ switch (r) {
117
+ case "blank":
118
+ return s.val().trim() ? !0 : !1;
119
+ case "url":
120
+ return i.test(s.val().trim()) ? !0 : !1;
121
+ case "checked":
122
+ return !s.attr("checked") == !0 ? !1 : !0;
123
+ case "activte":
124
+ return s.attr("disabled") ? !1 : !0;
125
+ case "int":
126
+ return isNaN(s.val()) ? !1 : !0
127
+ }
 
128
  }
languages/ultimate-social-media-plus-fa_IR.po CHANGED
@@ -1,1823 +1,1823 @@
1
- # Copyright (C) 2016 Ultimate Social Media PLUS
2
- # This file is distributed under the same license as the Ultimate Social Media PLUS package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Ultimate Social Media PLUS 2.3.7\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-social-"
7
- "media-plus\n"
8
- "POT-Creation-Date: 2016-03-31 14:44:55+00:00\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2016-04-05 18:35+0530\n"
13
- "Last-Translator: \n"
14
- "Language-Team: Farshad Hosseinzadeh <f.hosseinzadeh1985@gmail.com>\n"
15
- "X-Generator: Poedit 1.5.7\n"
16
- "Language: Persian\n"
17
-
18
- #: css/images/index.php:2 css/index.php:2
19
- #: css/jquery-ui-1.10.4/images/index.php:2 css/jquery-ui-1.10.4/index.php:2
20
- #: fonts/index.php:2 images/icons_theme/badge/index.php:2
21
- #: images/icons_theme/cute/index.php:2 images/icons_theme/index.php:2
22
- #: images/icons_theme/official/index.php:2
23
- #: images/icons_theme/stitched/index.php:2 images/index.php:2 index.php:2
24
- #: js/index.php:2 libs/controllers/index.php:2 libs/index.php:2
25
- #: views/index.php:2
26
- msgid "Access Denied"
27
- msgstr "غیر قابل دسترس"
28
-
29
- #: libs/sfsi_Init_JqueryCss.php:46 views/sfsi_option_view1.php:74
30
- #: views/sfsi_option_view1.php:107 views/sfsi_option_view1.php:129
31
- #: views/sfsi_option_view1.php:152
32
- msgid "Read more"
33
- msgstr "بیشتر بخوانید"
34
-
35
- #: libs/sfsi_Init_JqueryCss.php:47 views/sfsi_option_view1.php:370
36
- #: views/sfsi_option_view2.php:608 views/sfsi_option_view3.php:364
37
- #: views/sfsi_option_view4.php:738 views/sfsi_option_view5.php:957
38
- #: views/sfsi_option_view6.php:112 views/sfsi_option_view7.php:373
39
- #: views/sfsi_option_view8.php:519 views/sfsi_option_view9.php:574
40
- msgid "Save"
41
- msgstr "ذخیره"
42
-
43
- #: libs/sfsi_Init_JqueryCss.php:48
44
- msgid "Saving"
45
- msgstr "در حال ذخیره‌سازی"
46
-
47
- #: libs/sfsi_Init_JqueryCss.php:49
48
- msgid "Saved"
49
- msgstr "ذخیره شد"
50
-
51
- #: libs/sfsi_Init_JqueryCss.php:52
52
- msgid "Collapse"
53
- msgstr "باز کردن"
54
-
55
- #: libs/sfsi_Init_JqueryCss.php:53 views/sfsi_options_view.php:153
56
- msgid "Save All Settings"
57
- msgstr "ذخیره تمام تنظیمات"
58
-
59
- #: libs/sfsi_install_uninstall.php:430
60
- msgid ""
61
- "Error: It seems that CURL is disabled on your server. Please contact your "
62
- "server administrator to install / enable CURL."
63
- msgstr ""
64
- "خطا: به‌نظر میرسد CURL در سرور شما فعال نمیباشد. لطفاً با مدیر سرور خود تماس "
65
- "بگیرید، یا خودتان CURL را نصب، و یا فعال کنید."
66
-
67
- #: libs/sfsi_install_uninstall.php:541
68
- msgid ""
69
- "Error : Please fix your theme to make plugins work correctly. Go to the "
70
- "Theme Editor and insert the following string:"
71
- msgstr ""
72
- "خطا: لطفاً پوسته خود را درست کنید تا به افزونه‌ها امکان کارکرد درست را بدهد. "
73
- "به ویرایشگر پوسته رفته و متن زیر را در آن قرار دهید:"
74
-
75
- #: libs/sfsi_install_uninstall.php:541
76
- msgid "Please enter it just before the following line of your header.php file:"
77
- msgstr "لطفاً آن را قبل از آخرین خط فایل header.php (سربرگ) قرار دهید:"
78
-
79
- #: libs/sfsi_install_uninstall.php:541 libs/sfsi_install_uninstall.php:565
80
- msgid "Go to your theme editor: "
81
- msgstr "به ویرایشگر پوسته خود بروید:"
82
-
83
- #: libs/sfsi_install_uninstall.php:541 libs/sfsi_install_uninstall.php:565
84
- msgid "click here"
85
- msgstr "اینجا را کلیک کنید"
86
-
87
- #: libs/sfsi_install_uninstall.php:565
88
- msgid ""
89
- "Error: Please fix your theme to make plugins work correctly. Go to the Theme "
90
- "Editor and insert the following string as the first line of your theme's "
91
- "footer.php file: "
92
- msgstr ""
93
- "خطا: لطفاً پوسته خود را درست کنید تا به افزونه‌ها امکان کارکرد درست را بدهد. "
94
- "به ویرایشگر پوسته رفته و متن زیر را در اولین خط از فایل footer.php (پابرگ) "
95
- "پوسته خود قرار دهید:"
96
-
97
- #: libs/sfsi_install_uninstall.php:576
98
- msgid ""
99
- "Thank you for installing the Ultimate Social Media PLUS plugin. Please go to "
100
- "the plugin's settings page to configure it: "
101
- msgstr ""
102
- "از اینکه افزونه Ultimate Social Media PLUS را نصب نمودید متشکریم. لطفاً برای "
103
- "پیکربندی آن به صفحه تنظیمات افزونه بروید:"
104
-
105
- #: libs/sfsi_install_uninstall.php:576 libs/sfsi_widget.php:106
106
- #: ultimate_social_media_icons.php:579 views/sfsi_option_view1.php:265
107
- #: views/sfsi_option_view8.php:127 views/sfsi_option_view9.php:134
108
- #: views/sfsi_options_view.php:75
109
- msgid "Click here"
110
- msgstr "اینجا را کلیک کنید"
111
-
112
- #: libs/sfsi_install_uninstall.php:585
113
- msgid ""
114
- "You`re using an old Wordpress version, which may cause several of your "
115
- "plugins to not work correctly. Please upgrade"
116
- msgstr ""
117
- "شما از یک نسخه قدیمی وردپرس استفاده میکنید که ممکن است به افزونه امکان "
118
- "کارکرد درست را ندهد. لطفاً به‌روزرسانی کنید."
119
-
120
- #: libs/sfsi_install_uninstall.php:602
121
- msgid ""
122
- "We noticed you've been using the Ultimate Social Media PLUS Plugin for more "
123
- "than 30 days. If you're happy with it, could you please do us a BIG favor "
124
- "and give it a 5-star rating on Wordpress?"
125
- msgstr ""
126
- "ما متوجه شدیم که شما بیش از ۳۰ روز است که از افزونه Ultimate Social Media "
127
- "PLUS استفاده میکنید. اگر شما با این افزونه خوشحالید، آیا ممکن است لطف بزرگی "
128
- "کرده و افزونه ما را در وردپرس ۵ ستاره کنید؟"
129
-
130
- #: libs/sfsi_install_uninstall.php:604
131
- msgid "Ok, you deserved it"
132
- msgstr "بله، شما شایستگی این را دارید"
133
-
134
- #: libs/sfsi_install_uninstall.php:605
135
- msgid "I already did"
136
- msgstr "در حال حاضر این کار را انجام داده‌ام"
137
-
138
- #: libs/sfsi_install_uninstall.php:606
139
- msgid "No, not good enough"
140
- msgstr "نه، به اندازه کافی خوب نیست"
141
-
142
- #: libs/sfsi_plus_subscribe_widget.php:200 libs/sfsi_widget.php:99
143
- msgid "Title"
144
- msgstr "عنوان"
145
-
146
- #: libs/sfsi_widget.php:105
147
- msgid "Please go to the plugin page to set your preferences:"
148
- msgstr "برای اعمال تنظیمات خود لطفاً به برگه افزونه بروید:"
149
-
150
- #: ultimate_social_media_icons.php:76
151
- msgid "Kindly go to setting page and check the option \"Place them manually\""
152
- msgstr "لطف کنید به برگه تنظیمات رفته و کادر \"دستی قرار بده\" را علامت بزنید"
153
-
154
- #: ultimate_social_media_icons.php:577
155
- msgid ""
156
- "There seems to be an error on your website which prevents the plugin to work "
157
- "properly. Please check the FAQ:"
158
- msgstr ""
159
- "به‌نظر میرسد مشکلی در سایت‌تان وجود دارد که مانع از کارکرد درست افزونه میشود. "
160
- "لطفاً سوالات متداول را ببینید:"
161
-
162
- #: ultimate_social_media_icons.php:582
163
- msgid "Error"
164
- msgstr "خطا"
165
-
166
- #: ultimate_social_media_icons.php:588 ultimate_social_media_icons.php:613
167
- msgid "Dismiss"
168
- msgstr "صرفنظر کن"
169
-
170
- #: ultimate_social_media_icons.php:602
171
- msgid "New feature in the Ultimate Social Media PLUS plugin: "
172
- msgstr "ویژگی جدید در افزونه Ultimate Social Media PLUS:"
173
-
174
- #: ultimate_social_media_icons.php:605
175
- msgid ""
176
- "You can now add a subscription form to increase sign-ups (under question 8)."
177
- msgstr ""
178
- "اکنون میتوانید یک فرم اشتراک اضافه کرده تا تعداد ثبت‌نام ها را افزایش دهید "
179
- "(مربوط به سوال ۸)."
180
-
181
- #: ultimate_social_media_icons.php:608
182
- msgid "Check it out"
183
- msgstr "روی آن کلیک کنید"
184
-
185
- #: views/sfsi_aboutus.php:2
186
- msgid "Please visit us at"
187
- msgstr "لطفاْ از ما دیدن کنید در"
188
-
189
- #: views/sfsi_aboutus.php:4
190
- msgid "or write to us at"
191
- msgstr "یا برای ما بنویسید در"
192
-
193
- #: views/sfsi_option_view1.php:47
194
- msgid ""
195
- "In general, the more icons you offer the better because people have "
196
- "different preferences, and more options means that there’s something for "
197
- "everybody, increasing the chances that you get followed and/or shared."
198
- msgstr ""
199
- "بطور معمول، هرچه آیکن‌های بیشتری ارایه دهید بهتر است. زیرا مردم صلیقه‌های "
200
- "متفاوتی دارند، و اختیارات بیشتر به این معنی‌ست که مطابق نیاز هر شخصی چیزی "
201
- "آماده دارید. و این کار شانس دنبال شدن یا به اشتراک گذاشته شدن را برای شما "
202
- "زیادتر میکند."
203
-
204
- #: views/sfsi_option_view1.php:62 views/sfsi_option_view1.php:90
205
- msgid "Mandatory"
206
- msgstr "اجباری"
207
-
208
- #: views/sfsi_option_view1.php:65
209
- msgid "RSS is still popular, esp. among the tech-savvy crowd."
210
- msgstr "با وجود این دوره و زمانه هوشمند و پر از تغییرات، RSS همچنان محبوب است!"
211
-
212
- #: views/sfsi_option_view1.php:68
213
- msgid ""
214
- "RSS stands for Really Simply Syndication and is an easy way for people to "
215
- "read your content. "
216
- msgstr ""
217
- "RSS مخفف عبارت Really Simply Syndication ، و یک راه آسان برای مردم است که "
218
- "مطالب جدید شما را بخوانند."
219
-
220
- #: views/sfsi_option_view1.php:70
221
- msgid "Learn more about RSS"
222
- msgstr "در مورد RSS (خبرخوان) بیشتر بدانید"
223
-
224
- #: views/sfsi_option_view1.php:93
225
- msgid "Email is the most effective tool to build up a followership."
226
- msgstr "ایمیل یک ابزار بسیار تاثیرگذار در پیداکردن مخاطب و دنبال‌کننده است."
227
-
228
- #: views/sfsi_option_view1.php:96
229
- msgid "Remove credit link"
230
- msgstr "لینک اعتبار را حذف کن"
231
-
232
- #: views/sfsi_option_view1.php:100
233
- msgid ""
234
- "Everybody uses email – that’s why it’s much more effective than social media "
235
- "to make people follow you"
236
- msgstr ""
237
- "هرکسی از ایمیل استفاده میکند - بخاطر همین ایمیل بیشتر از شبکه‌های اجتماعی در "
238
- "جذب مخاطب و دنبال‌کننده تاثیرگذار است"
239
-
240
- #: views/sfsi_option_view1.php:102 views/sfsi_pop_content.php:287
241
- msgid "learn more"
242
- msgstr "بیشتر بدانید"
243
-
244
- #: views/sfsi_option_view1.php:104
245
- msgid ""
246
- "Not offering an email subscription option means losing out on future traffic "
247
- "to your site."
248
- msgstr ""
249
- "ارائه ندادن امکان اشتراک ایمیلی به این معنیست که بازدید سایتتان را در آینده "
250
- "از دست میدهید."
251
-
252
- #: views/sfsi_option_view1.php:122 views/sfsi_option_view1.php:144
253
- #: views/sfsi_option_view1.php:167
254
- msgid "Strongly recommended:"
255
- msgstr "شدیداً پیشنهاد میشود:"
256
-
257
- #: views/sfsi_option_view1.php:123
258
- msgid "Facebook is crucial, esp. for sharing."
259
- msgstr "فیس‌بوک عالی‌ست، مخصوصاُ برای به اشتراک گذاری."
260
-
261
- #: views/sfsi_option_view1.php:126
262
- msgid ""
263
- "Facebook is the giant in the social media world, and even if you don’t have "
264
- "a Facebook account yourself you should display this icon, so that Facebook "
265
- "users can share your site on Facebook."
266
- msgstr ""
267
- "فیس‌بوک غول دنیای شبکه‌های اجتماعی‌ست، و حتا اگر شما آکونت فیس‌بوک برای خود "
268
- "ندارید هم باید این آیکن را نمایش دهید، چراکه کاربران فیس‌بوک میتوانند سایت "
269
- "شما را در فیس‌بوک به اشتراک بگذارند."
270
-
271
- #: views/sfsi_option_view1.php:145
272
- msgid "Can have a strong promotional effect."
273
- msgstr "میتواند تاثیر تبلیغاتی قوی‌ای داشته باشد."
274
-
275
- #: views/sfsi_option_view1.php:148
276
- msgid ""
277
- "If you have a Twitter-account then adding this icon is a no-brainer. "
278
- "However, similar as with facebook, even if you don’t have one you should "
279
- "still show this icon so that Twitter-users can share your site."
280
- msgstr ""
281
- "اگر شما یک آکونت توییتر دارید اضافه کردن این آیکن احتیاج به فکر کردن ندارد. "
282
- "به هر حال اگر هم ندارید، مانند فیس‌بوک، شما باید این آیکن را به نمایش "
283
- "بگذارید. چراکه کاربران توییتر میتوانند سایت شما را به اشتراک بگذارند."
284
-
285
- #: views/sfsi_option_view1.php:168
286
- msgid "Increasingly important and beneficial for SEO."
287
- msgstr "بطور فزاینده مهم و سودمند برای سئو."
288
-
289
- #: views/sfsi_option_view1.php:185 views/sfsi_option_view1.php:202
290
- #: views/sfsi_option_view1.php:219 views/sfsi_option_view1.php:234
291
- #: views/sfsi_option_view1.php:251 views/sfsi_option_view1.php:283
292
- #: views/sfsi_option_view1.php:328 views/sfsi_option_view1.php:353
293
- msgid "It depends:"
294
- msgstr "بستگی دارد به:"
295
-
296
- #: views/sfsi_option_view1.php:186
297
- msgid ""
298
- "Show this icon if you have a youtube account (and you should set up one if "
299
- "you have video content – that can increase your traffic significantly)."
300
- msgstr ""
301
- "اگر یک آکونت یوتیوب دارید این آیکن را نمایش دهید (و اگر در سایتتان محتوای "
302
- "ویدئویی دارید بهتر است یک آکونت یوتیوب بسازید، زیرا بازدید سایتتان را به شکل "
303
- "قابل ملاحظه‌ای بالا میبرد)."
304
-
305
- #: views/sfsi_option_view1.php:203
306
- msgid ""
307
- "No.1 network for business purposes. Use this icon if you’re a LinkedInner."
308
- msgstr ""
309
- "شبکه اجتماعی شماره یک برای مقاصد حرفه‌ای و کاری. اگر در لینکدین هستید از این "
310
- "آیکن استفاده کنید."
311
-
312
- #: views/sfsi_option_view1.php:220
313
- msgid ""
314
- "Show this icon if you have a Pinterest account (and you should set up one if "
315
- "you have publish new pictures regularly – that can increase your traffic "
316
- "significantly)."
317
- msgstr ""
318
- "اگر یک آکونت پین‌ترست دارید این آیکن را نمایش دهید (و اگر در سایتتان عکس‌های "
319
- "جدید میگذارید بهتر است یک آکونت بسازید، زیرا بازدید سایتتان را به شکل قابل "
320
- "ملاحظه‌ای بالا میبرد)."
321
-
322
- #: views/sfsi_option_view1.php:235
323
- msgid "Show this icon if you have a Instagram account."
324
- msgstr "اگر یک آکونت اینستاگرام دارید این آیکن را نمایش دهید."
325
-
326
- #: views/sfsi_option_view1.php:252
327
- msgid ""
328
- "Third-party service AddThis allows your visitors to share via many other "
329
- "social networks, however it may also slow down your site a bit."
330
- msgstr ""
331
- "خدمات شخص ثالث AddThis به بازدیدکنندگان امکان به اشتراک گذاری از تعداد "
332
- "بسیاری از دیگر شبکه‌های اجتماعی را میدهد. ولی با این حال کمی باعث کند شدن "
333
- "سایتتان میشود."
334
-
335
- #: views/sfsi_option_view1.php:255
336
- msgid "Everybody uses email – that’s why it’s"
337
- msgstr "بخاطر اینکه هرکسی از ایمیل استفاده میکند"
338
-
339
- #: views/sfsi_option_view1.php:258
340
- msgid "much more effective than social media"
341
- msgstr "بسیار موثرتر از شبکه اجتماعی"
342
-
343
- #: views/sfsi_option_view1.php:261
344
- msgid ""
345
- "to make people follow you. Not offering an email subscription option means "
346
- "losing out on future traffic to your site."
347
- msgstr ""
348
- "برای جذب دنبال‌کننده و مخاطب ارائه ندادن امکان اشتراک ایمیلی به این معنیست که "
349
- "بازدید سایتتان را در آینده از دست میدهید."
350
-
351
- #: views/sfsi_option_view1.php:263
352
- msgid "Check out their reviews:"
353
- msgstr "بررسی‌هایشان را ببینید:"
354
-
355
- #: views/sfsi_option_view1.php:284
356
- msgid "Show this icon if you have a Houzz account."
357
- msgstr "اگر یک آکونت هاز دارید این آیکن را نمایش دهید. "
358
-
359
- #: views/sfsi_option_view1.php:286
360
- msgid ""
361
- "Houzz is the No.1 site & community in the world of architecture and interior "
362
- "design."
363
- msgstr "هاز سایت و انجمن شماره ۱ معماری و طراحی داخلی‌ست."
364
-
365
- #: views/sfsi_option_view1.php:288
366
- msgid "Visit Houzz"
367
- msgstr "از هاز دیدن کنید"
368
-
369
- #: views/sfsi_option_view1.php:323 views/sfsi_option_view1.php:347
370
- #: views/sfsi_option_view2.php:579 views/sfsi_option_view5.php:938
371
- msgid "Custom"
372
- msgstr "سفارشی"
373
-
374
- #: views/sfsi_option_view1.php:329 views/sfsi_option_view1.php:354
375
- msgid ""
376
- "Upload a custom icon if you have other accounts/websites you want to link to."
377
- msgstr ""
378
- "اگر شما آکونت یا سایت دیگری دارید که میخواهید به آن لینک بدهید، آیکن سفارشی "
379
- "آن را آپلود کنید."
380
-
381
- #: views/sfsi_option_view1.php:376 views/sfsi_option_view2.php:613
382
- #: views/sfsi_option_view3.php:369 views/sfsi_option_view4.php:743
383
- #: views/sfsi_option_view5.php:962 views/sfsi_option_view6.php:117
384
- #: views/sfsi_option_view7.php:378 views/sfsi_option_view8.php:525
385
- #: views/sfsi_option_view9.php:580
386
- msgid "Collapse area"
387
- msgstr "باز کردن"
388
-
389
- #: views/sfsi_option_view2.php:136
390
- msgid "When clicked on, users can subscribe via RSS"
391
- msgstr "وقتی کاربر کلیک کند مشترک فید RSS میشود"
392
-
393
- #: views/sfsi_option_view2.php:144
394
- msgid "For most blogs it’s http://blogname.com/feed"
395
- msgstr "برای اغلب وبلاگ‌ها بصورت http://blogname.com/feed است"
396
-
397
- #: views/sfsi_option_view2.php:162
398
- msgid ""
399
- "Sends your new posts automatically to subscribers. It`s FREE and you get "
400
- "full access to your subscriber`s emails and interesting statistics:"
401
- msgstr ""
402
- "نوشته‌های جدید شما را بصورت خودکار برای مشترکین ارسال میکند. رایگان است و "
403
- "دسترسی کامل شما را به ایمیل و آمار علایق کاربران میسر میکند."
404
-
405
- #: views/sfsi_option_view2.php:164
406
- msgid "Claim your feed to get full access."
407
- msgstr "درخواست فید خود را کامل نمایید تا دسترسی کامل داشته باشید."
408
-
409
- #: views/sfsi_option_view2.php:166
410
- msgid "It also makes sense if you already offer an email newsletter:"
411
- msgstr "همچنین اگر هم‌اکنون روزنامه ایمیلی را ارائه کرده‌اید معنی خواهد داشت:"
412
-
413
- #: views/sfsi_option_view2.php:168
414
- msgid "Learn more."
415
- msgstr "بیشتر بدانید."
416
-
417
- #: views/sfsi_option_view2.php:171
418
- msgid "Please pick which icon type you want to use:"
419
- msgstr "لطفاً نوع آیکونی که میخواهید استفاده کنید را انتخاب نمایید:"
420
-
421
- #: views/sfsi_option_view2.php:179
422
- msgid "Email icon"
423
- msgstr "آیکون ایمیل"
424
-
425
- #: views/sfsi_option_view2.php:187
426
- msgid "Follow icon"
427
- msgstr "آیکون دنبال‌کردن"
428
-
429
- #: views/sfsi_option_view2.php:189
430
- msgid "increases sign-ups"
431
- msgstr "ثبت‌نام ها را افزایش میدهد"
432
-
433
- #: views/sfsi_option_view2.php:198
434
- msgid "SpecificFeeds icon"
435
- msgstr "آیکن SpecificFeeds"
436
-
437
- #: views/sfsi_option_view2.php:200
438
- msgid "provider of the service"
439
- msgstr "ارائه‌کننده خدمات:"
440
-
441
- #: views/sfsi_option_view2.php:216
442
- msgid ""
443
- "The facebook icon can perform several actions. Pick below which ones it "
444
- "should perform. If you select several options, then users can select what "
445
- "they want to do"
446
- msgstr ""
447
- "آیکن فیس‌بوک میتواند چندین کار انجام دهد. از پایین کاری را که میخواهید "
448
- "برگزینید. اگر چند عمل را با هم انتخاب کنید، کاربران خودشان انتخاب میکنند که "
449
- "کدام را میخواهند."
450
-
451
- #: views/sfsi_option_view2.php:218 views/sfsi_option_view2.php:263
452
- #: views/sfsi_option_view2.php:304 views/sfsi_option_view2.php:346
453
- #: views/sfsi_option_view2.php:425 views/sfsi_option_view2.php:478
454
- #: views/sfsi_option_view2.php:539
455
- msgid "see an example"
456
- msgstr "یک نمونه ببینید"
457
-
458
- #: views/sfsi_option_view2.php:222
459
- msgid "The facebook icon should allow users to..."
460
- msgstr "آیکن فیس‌بوک باید به کاربران این امکان را بدهد تا..."
461
-
462
- #: views/sfsi_option_view2.php:229
463
- msgid "Visit my Facebook page at:"
464
- msgstr "صفحه فیس‌بوک مرا ببینید:"
465
-
466
- #: views/sfsi_option_view2.php:237
467
- msgid "Like my blog on Facebook (+1)"
468
- msgstr "وبلاگ مرا در فیس‌بوک لایک کنید (۱+)"
469
-
470
- #: views/sfsi_option_view2.php:245
471
- msgid "Share my blog with friends (on Facebook)"
472
- msgstr "وبلاگ مرا با دوستان خود (در فیس‌بوک) به اشتراک بگذارید"
473
-
474
- #: views/sfsi_option_view2.php:260
475
- msgid ""
476
- "The Twitter icon can perform several actions. Pick below which ones it "
477
- "should perform. If you select several options, then users can select what "
478
- "they want to do"
479
- msgstr ""
480
- "آیکن توییتر میتواند چند کار انجام دهد. از پایین کاری را که میخواهید "
481
- "برگزینید. اگر چند عمل را با هم انتخاب کنید، کاربران خودشان انتخاب میکنند که "
482
- "کدام را میخواهند."
483
-
484
- #: views/sfsi_option_view2.php:267
485
- msgid "The Twitter icon should allow users to..."
486
- msgstr "آیکن توییتر به کاربران امکان میدهد که..."
487
-
488
- #: views/sfsi_option_view2.php:272
489
- msgid "Visit me on Twitter:"
490
- msgstr "مرا در توییتر ببینید:"
491
-
492
- #: views/sfsi_option_view2.php:281
493
- msgid "Follow me on Twitter:"
494
- msgstr "مرا در توییتر دنبال کنید:"
495
-
496
- #: views/sfsi_option_view2.php:289
497
- msgid "Tweet about my page:"
498
- msgstr "در مورد صفحه من توییت کنید:"
499
-
500
- #: views/sfsi_option_view2.php:302
501
- msgid ""
502
- "should perform. If you select several options, then users can select what "
503
- "they want to do"
504
- msgstr ""
505
- "آیکن گوگل‌پلاس میتواند چند کار انجام دهد. از پایین کاری را که میخواهید "
506
- "برگزینید. اگر چند عمل را با هم انتخاب کنید، کاربران خودشان انتخاب میکنند که "
507
- "کدام را میخواهند."
508
-
509
- #: views/sfsi_option_view2.php:308
510
- msgstr "آیکن گوگل‌پلاس به کاربران امکان میدهد که..."
511
-
512
- #: views/sfsi_option_view2.php:344
513
- msgid ""
514
- "The Youtube icon can perform several actions. Pick below which ones it "
515
- "should perform. If you select several options, then users can select what "
516
- "they want to do"
517
- msgstr ""
518
- "آیکن یوتیوب میتواند چند کار انجام دهد. از پایین کاری را که میخواهید "
519
- "برگزینید. اگر چند عمل را با هم انتخاب کنید، کاربران خودشان انتخاب میکنند که "
520
- "کدام را میخواهند."
521
-
522
- #: views/sfsi_option_view2.php:350
523
- msgid "The youtube icon should allow users to..."
524
- msgstr "آیکن یوتیوب به کاربران امکان میدهد که..."
525
-
526
- #: views/sfsi_option_view2.php:354
527
- msgid "Visit my Youtube page at:"
528
- msgstr "صفحه یوتیوب مرا ببینید:"
529
-
530
- #: views/sfsi_option_view2.php:360
531
- msgid "Subscribe to me on Youtube"
532
- msgstr "در یوتیوب من مشترک شوید"
533
-
534
- #: views/sfsi_option_view2.php:362
535
- msgid "(allows people to subscribe to you directly, without leaving your blog)"
536
- msgstr "(بدون ترک وبلاگتان، به کاربران امکان دنبال‌کردن مستقیم شما را میدهد)"
537
-
538
- #: views/sfsi_option_view2.php:382
539
- msgid "User Name"
540
- msgstr "نام کاربر"
541
-
542
- #: views/sfsi_option_view2.php:387
543
- msgid "Channel Id"
544
- msgstr "شناسه (Id) کانال"
545
-
546
- #: views/sfsi_option_view2.php:393
547
- msgid "UserName:"
548
- msgstr "نام کاربری:"
549
-
550
- #: views/sfsi_option_view2.php:397
551
- msgid ""
552
- "To find your Username go to \"My channel\" in Youtube menu bar on the left & "
553
- "Select the \"About\" tab and take your user name from URL there (e.g. "
554
- "https://www.youtube.com/user/Tommy it is \"Tommy\")."
555
- msgstr ""
556
- "برای پیداکردن نام کاربری خود به گزینه \"My channel\" از سمت چپ منوی یوتیوب "
557
- "رفته، تب \"About\" را انتخاب نمایید و نام کاربری‌تان را از آدرس URL بردارید "
558
- "(برای نمونه اگر آدرس URL https://www.youtube.com/user/Tommy بود، \"Tommy\" "
559
- "نام کاربری شماست)."
560
-
561
- #: views/sfsi_option_view2.php:403
562
- msgid "Channel Id:"
563
- msgstr "شناسه (Id) کانال:"
564
-
565
- #: views/sfsi_option_view2.php:408
566
- msgid ""
567
- "To find your Channel name go to \"My Channel\" in Youtube menu bar on the "
568
- "left and take your channel name from there."
569
- msgstr ""
570
- "برای پیداکردن نام کانال خود به گزینه \"My channel\" از سمت چپ منوی یوتیوب "
571
- "رفته، نام کانال خود را از آنجا بردارید."
572
-
573
- #: views/sfsi_option_view2.php:423
574
- msgid ""
575
- "The Pinterest icon can perform several actions. Pick below which ones it "
576
- "should perform. If you select several options, then users can select what "
577
- "they want to do"
578
- msgstr ""
579
- "آیکن پین‌ترست میتواند چند کار انجام دهد. از پایین کاری را که میخواهید "
580
- "برگزینید. اگر چند عمل را با هم انتخاب کنید، کاربران خودشان انتخاب میکنند که "
581
- "کدام را میخواهند."
582
-
583
- #: views/sfsi_option_view2.php:429
584
- msgid "The Pinterest icon should allow users to..."
585
- msgstr "آیکن پین‌ترست به کاربران امکان میدهد که..."
586
-
587
- #: views/sfsi_option_view2.php:434
588
- msgid "Visit my Pinterest page at:"
589
- msgstr "صفحه پین‌ترست مرا ببینید:"
590
-
591
- #: views/sfsi_option_view2.php:442
592
- msgid "Pin my blog on Pinterest (+1)"
593
- msgstr "وبلاگ مرا در پین‌ترست پین کنید (۱+)"
594
-
595
- #: views/sfsi_option_view2.php:457
596
- msgid "When clicked on, users will get directed to your Instagram page"
597
- msgstr "اگر کلیک شود، کاربران مستقیماً به صفحه اینستاگرام شما منتقل میشوند"
598
-
599
- #: views/sfsi_option_view2.php:476
600
- msgid ""
601
- "The LinkedIn icon can perform several actions. Pick below which ones it "
602
- "should perform. If you select several options, then users can select what "
603
- "they want to do"
604
- msgstr ""
605
- "آیکن لینکدین میتواند چند کار انجام دهد. از پایین کاری را که میخواهید "
606
- "برگزینید. اگر چند عمل را با هم انتخاب کنید، کاربران خودشان انتخاب میکنند که "
607
- "کدام را میخواهند."
608
-
609
- #: views/sfsi_option_view2.php:482
610
- msgid ""
611
- "You find your ID in the link of your profile page, e.g. https://www.linkedin."
612
- "com/profile/view?id=<b>8539887</b>&trk=nav_responsive_tab_profile_pic"
613
- msgstr ""
614
- "شناسه (ID) تان را از لینک صفحه پروفایل‌تان پیدا کنید، برای نمونه https://www."
615
- "linkedin.com/profile/view?id=<b>8539887</"
616
- "b>&trk=nav_responsive_tab_profile_pic"
617
-
618
- #: views/sfsi_option_view2.php:485
619
- msgid "The LinkedIn icon should allow users to..."
620
- msgstr "آیکن لیندکدین به کاربران امکان میدهد که..."
621
-
622
- #: views/sfsi_option_view2.php:490
623
- msgid "Visit my Linkedin page at:"
624
- msgstr "صفحه لینکدین مرا ببینید"
625
-
626
- #: views/sfsi_option_view2.php:499
627
- msgid "Follow me on Linkedin:"
628
- msgstr "مرا در لینکدین دنبال کنید"
629
-
630
- #: views/sfsi_option_view2.php:508
631
- msgid "Share my page on LinkedIn"
632
- msgstr "صفحه مرا در لینکدین به اشتراک بگذارید"
633
-
634
- #: views/sfsi_option_view2.php:515
635
- msgid "Recommend my business or product on Linkedin"
636
- msgstr "محصول یا کسب و کار مرا در لینکدین پیشنهاد بده"
637
-
638
- #: views/sfsi_option_view2.php:520
639
- msgid "To find your Product or Company ID, you can use their ID lookup tool at"
640
- msgstr ""
641
- "برای اینکه محصول یا شناسه شرکتتان را پیدا کنید، میتوانید از ابزار جستجوی "
642
- "شناسه آنها استفاده کنید در"
643
-
644
- #: views/sfsi_option_view2.php:524
645
- msgid "You need to be logged in to Linkedin to be able to use it."
646
- msgstr "برای استفاده باید در لینکدین وارد (login) شده باشید"
647
-
648
- #: views/sfsi_option_view2.php:537
649
- msgid ""
650
- "Nothing needs to be done here – your visitors to share your site via «all "
651
- "the other» social media sites."
652
- msgstr ""
653
- "اینجا کاری لازم نیست انجام بدهید - بازدیدکنندگان شما سایتتان را از طریق "
654
- "«سایر» شبکه‌های اجتماعی به اشتراک میگذارند."
655
-
656
- #: views/sfsi_option_view2.php:553
657
- msgid ""
658
- "Please provide the url to your Houzz profile (e.g. http://www.houzz.com/user/"
659
- "your_username)."
660
- msgstr ""
661
- "لطفاً نشانی url پروفایل هازتان را ارایه کنید (برای نمونه: http://www.houzz."
662
- "com/user/your_username)."
663
-
664
- #: views/sfsi_option_view2.php:585
665
- msgid "Where do you want this icon to link to?"
666
- msgstr "میخواهید این آیکن به کجا لینک شود؟"
667
-
668
- #: views/sfsi_option_view2.php:589
669
- msgid "Link:"
670
- msgstr "لینک:"
671
-
672
- #: views/sfsi_option_view3.php:35
673
- msgid ""
674
- "A good & well-fitting design is not only nice to look at, but it increases "
675
- "chances that people will subscribe and/or share your site with friends:"
676
- msgstr ""
677
- "یک طراحی خوب و شکیل نه تنها زیبا به‌نظر میرسد، بلکه شانس اینکه مردم مشترک شما "
678
- "شوند یا سایتان را با دوستانشان به اشتراک بگذارند بالا میبرد:"
679
-
680
- #: views/sfsi_option_view3.php:39
681
- msgid "It comes across as more professional gives your site more “credit”"
682
- msgstr "حرفه‌ای‌تر به‌نظر میرسد و اعتبار بیشتری به سایتتان میبخشد"
683
-
684
- #: views/sfsi_option_view3.php:42
685
- msgid ""
686
- "A smart automatic animation can make your visitors aware of your icons in an "
687
- "unintrusive manner"
688
- msgstr ""
689
- "پویانمایی خودکار ممکن است بازدیدکنندگان سایت‌تان را از آیکن‌هایتان بیزار کند."
690
-
691
- #: views/sfsi_option_view3.php:47
692
- msgid ""
693
- "The icons have been compressed by Shortpixel.com for faster loading of your "
694
- "site. Thank you Shortpixel!"
695
- msgstr ""
696
- "برای اینکه سایتتان سریعتر باز شود، آیکن‌ها به‌کمک Shortpixel.com فشرده شده‌اند. "
697
- "Shortpixel ازت ممنونیم!"
698
-
699
- #: views/sfsi_option_view3.php:52
700
- msgid "Theme options"
701
- msgstr "تنظیمات پوسته"
702
-
703
- #: views/sfsi_option_view3.php:59
704
- msgid "Default"
705
- msgstr "پیش‌فرض"
706
-
707
- #: views/sfsi_option_view3.php:69
708
- msgid "Flat"
709
- msgstr "تخت (Flat)"
710
-
711
- #: views/sfsi_option_view3.php:78
712
- msgid "Thin"
713
- msgstr "نازک (Thin)"
714
-
715
- #: views/sfsi_option_view3.php:87
716
- msgid "Cute"
717
- msgstr "زیبا (Cute)"
718
-
719
- #: views/sfsi_option_view3.php:97
720
- msgid "Cubes"
721
- msgstr "مکعبی (Cubes)"
722
-
723
- #: views/sfsi_option_view3.php:105
724
- msgid "Chrome Blue"
725
- msgstr "فلز براق آبی"
726
-
727
- #: views/sfsi_option_view3.php:112
728
- msgid "Chrome Grey"
729
- msgstr "فلز براق خاکستری"
730
-
731
- #: views/sfsi_option_view3.php:119
732
- msgid "Splash"
733
- msgstr "پخش (Splash)"
734
-
735
- #: views/sfsi_option_view3.php:130
736
- msgid "Orange"
737
- msgstr "نارنجی"
738
-
739
- #: views/sfsi_option_view3.php:137
740
- msgid "Crystal"
741
- msgstr "کریستال"
742
-
743
- #: views/sfsi_option_view3.php:144
744
- msgid "Glossy"
745
- msgstr "براق"
746
-
747
- #: views/sfsi_option_view3.php:151
748
- msgid "Black"
749
- msgstr "سیاه"
750
-
751
- #: views/sfsi_option_view3.php:161
752
- msgid "Silver"
753
- msgstr "نقره‌ای"
754
-
755
- #: views/sfsi_option_view3.php:168
756
- msgid "Shaded Dark"
757
- msgstr "سایه تیره"
758
-
759
- #: views/sfsi_option_view3.php:175
760
- msgid "Shaded Light"
761
- msgstr "سایه روشن"
762
-
763
- #: views/sfsi_option_view3.php:182
764
- msgid "Transparent"
765
- msgstr "شفاف"
766
-
767
- #: views/sfsi_option_view3.php:183
768
- msgid "for dark backgrounds"
769
- msgstr "برای پس‌زمینه‌های تیره"
770
-
771
- #: views/sfsi_option_view3.php:192
772
- msgid "Custom Icons"
773
- msgstr "آیکون‌های سفارشی"
774
-
775
- #: views/sfsi_option_view3.php:306
776
- msgid "Animate them (your main icons)"
777
- msgstr "پویانمایی کن (آیکن‌های اصلی‌تان)"
778
-
779
- #: views/sfsi_option_view3.php:312
780
- msgid "Mouse-Over effects"
781
- msgstr "جلوه‌های قرارگیری ماوس روی آیکن"
782
-
783
- #: views/sfsi_option_view3.php:317
784
- msgid "Fade In"
785
- msgstr "محو شدن در"
786
-
787
- #: views/sfsi_option_view3.php:320
788
- msgid "Combo"
789
- msgstr "کشویی"
790
-
791
- #: views/sfsi_option_view3.php:330
792
- msgid "Shuffle them automatically"
793
- msgstr "بصورت خودکار آنها را به‌هم بریز"
794
-
795
- #: views/sfsi_option_view3.php:337
796
- msgid "When site is first loaded"
797
- msgstr "وقتی سایت برای اولین بار باز شد"
798
-
799
- #: views/sfsi_option_view3.php:343
800
- msgid "Every"
801
- msgstr "هر"
802
-
803
- #: views/sfsi_option_view3.php:347
804
- msgid "seconds"
805
- msgstr "ثانیه"
806
-
807
- #: views/sfsi_option_view4.php:150
808
- msgid ""
809
- "It’s a psychological fact that people like to follow other people, so when "
810
- "they see that your site has already a good number of Facebook likes, it’s "
811
- "more likely that they will subscribe/like/share your site than if it had 0."
812
- msgstr ""
813
- "این یک واقعیت روانشناختی‌ست که مردم دوست دارند دیگران را دنبال کنند، پس وقتی "
814
- "میبینند که وب‌سایت شما عدد خوبی از لایک‌های فیس‌بوک را به خود اختصاص داده، خیلی "
815
- "بهتر مشترک شما میشوند یا سایتتان را به اشتراک میگذارند، تا اینکه تعداد "
816
- "لایک‌تان 0 باشد."
817
-
818
- #: views/sfsi_option_view4.php:153
819
- msgid ""
820
- "Therefore, you can select to display the count next to your icons which will "
821
- "look like this:"
822
- msgstr ""
823
- "بنابراین، میتوانید انتخاب کنید که تعداد، کنار آیکن‌هایتان نمایش داده شود، "
824
- "مانند این:"
825
-
826
- #: views/sfsi_option_view4.php:215
827
- msgid ""
828
- "Of course, if you start at 0, you shoot yourself in the foot with that. So "
829
- "we suggest that you only turn this feature on once you have a good number of "
830
- "followers/likes/shares (min. of 20 – no worries if it’s not too many, it "
831
- "should just not be 0)."
832
- msgstr ""
833
- "البته، اگر شما از 0 شروع کنید، تیری به پای خود شلیک کرده‌اید! پس ما پیشنهاد "
834
- "میکنیم که این ویژگی را تا زمانی که به تعداد مناسبی از دنبال‌کننده، لایک یا به "
835
- "اشتراک‌گذاری نرسیده‌اید فعال کنید (دست‌کم روی ۲۰ بگذارید - نگران نباشید که زیاد "
836
- "نیست، فقط روی 0 نگذارید)."
837
-
838
- #: views/sfsi_option_view4.php:218
839
- msgid "Enough waffling. So do you want to display counts?"
840
- msgstr "پرحرفی کافیست. پس شما میخواهید تعداد نمایش داده شود؟"
841
-
842
- #: views/sfsi_option_view4.php:225 views/sfsi_option_view5.php:759
843
- #: views/sfsi_option_view5.php:787 views/sfsi_option_view5.php:808
844
- #: views/sfsi_option_view5.php:830 views/sfsi_option_view6.php:64
845
- #: views/sfsi_option_view9.php:208 views/sfsi_option_view9.php:254
846
- msgid "Yes"
847
- msgstr "آری"
848
-
849
- #: views/sfsi_option_view4.php:231 views/sfsi_option_view5.php:765
850
- #: views/sfsi_option_view5.php:793 views/sfsi_option_view5.php:814
851
- #: views/sfsi_option_view5.php:836 views/sfsi_option_view6.php:70
852
- #: views/sfsi_option_view9.php:215 views/sfsi_option_view9.php:261
853
- msgid "No"
854
- msgstr "خیر"
855
-
856
- #: views/sfsi_option_view4.php:239
857
- msgid "Please specify which counts should be shown:"
858
- msgstr "لطفاً تعیین کنید تعداد کدام نمایش داده شود:"
859
-
860
- #: views/sfsi_option_view4.php:261
861
- msgid "We cannot track this. So enter the figure here:"
862
- msgstr "ما نمیتوانیم این را ردیابی کنیم. پس رقم را اینجا وارد نمایید:"
863
-
864
- #: views/sfsi_option_view4.php:289
865
- msgid "Retrieve the number of subscribers automatically"
866
- msgstr "نمایش تعداد مشترکین بصورت خودکار"
867
-
868
- #: views/sfsi_option_view4.php:293 views/sfsi_option_view4.php:338
869
- #: views/sfsi_option_view4.php:425 views/sfsi_option_view4.php:498
870
- #: views/sfsi_option_view4.php:543 views/sfsi_option_view4.php:589
871
- #: views/sfsi_option_view4.php:621 views/sfsi_option_view4.php:660
872
- #: views/sfsi_option_view4.php:693 views/sfsi_option_view4.php:722
873
- msgid "Enter the figure manually"
874
- msgstr "ورود دستی تعداد"
875
-
876
- #: views/sfsi_option_view4.php:320
877
- msgid "Retrieve the number of likes of your blog"
878
- msgstr "نمایش تعداد لایک‌های وبلاگ‌تان"
879
-
880
- #: views/sfsi_option_view4.php:324
881
- msgid "Retrieve the number of likes your facebook page"
882
- msgstr "نمایش تعداد لایک‌های صفحه فیس‌بوک‌تان"
883
-
884
- #: views/sfsi_option_view4.php:328
885
- msgid "page ID:"
886
- msgstr "شناسه (ID) صفحه:"
887
-
888
- #: views/sfsi_option_view4.php:333
889
- msgid ""
890
- "Youll find it at the bottom of the << About >> -tab on your facebook page"
891
- msgstr "میتوانید در پایین تب «About» صفحه فیس‌بوکتان پیدایش کنید"
892
-
893
- #: views/sfsi_option_view4.php:365
894
- msgid "Retrieve the number of Twitter followers"
895
- msgstr "نمایش تعداد دنبال‌کنندگان توییترتان"
896
-
897
- #: views/sfsi_option_view4.php:371
898
- msgid "Enter Consumer Key"
899
- msgstr "کلید مصرف‌کننده را وارد نمایید"
900
-
901
- #: views/sfsi_option_view4.php:377
902
- msgid "Enter Consumer Secret"
903
- msgstr "رمز مصرف‌کننده را وارد نمایید"
904
-
905
- #: views/sfsi_option_view4.php:383
906
- msgid "Enter Access Token"
907
- msgstr "توکن دسترسی را وارد نمایید"
908
-
909
- #: views/sfsi_option_view4.php:389
910
- msgid "Enter Access Token Secret"
911
- msgstr "رمز توکن دسترسی را وارد نمایید"
912
-
913
- #: views/sfsi_option_view4.php:396
914
- msgid ""
915
- "Please make sure you have entered the Username for \"Follow me on Twitter:\" "
916
- "in twitter settings under question number 2."
917
- msgstr ""
918
- "لطفاً مطمئن شوید که نام کاربری را برای \"مرا در توییتر دنبال کنید:\" در "
919
- "تنظیمات بخش توییتر وارد نموده‌اید. مربوط به سوال شماره ۲."
920
-
921
- #: views/sfsi_option_view4.php:400
922
- msgid "To get this information:"
923
- msgstr "برای دریافت این اطلاعات:"
924
-
925
- #: views/sfsi_option_view4.php:404
926
- msgid "Go to"
927
- msgstr "بروید به"
928
-
929
- #: views/sfsi_option_view4.php:410
930
- msgid "Click on \"Create new app\""
931
- msgstr "روی \"Create new app\" کلیک کنید"
932
-
933
- #: views/sfsi_option_view4.php:413
934
- msgid ""
935
- "Enter a random Name, Description and Website URL (including the \"http://\", "
936
- "e.g. http://dummysitename.com)"
937
- msgstr ""
938
- "یک نام، توضیح و آدرس وب‌سایت تصادفی وارد نمایید (باید شامل \"http://\"باشد، "
939
- "مانند http://dummysitename.com)"
940
-
941
- #: views/sfsi_option_view4.php:416
942
- msgid ""
943
- "Go to \"Keys and Access Tokens\" tab and click on \"Generate Token\" in the "
944
- "\"Token actions\" section at the bottom"
945
- msgstr ""
946
- "به تب \"Keys and Access Tokens\" بروید و روی \"Generate Token\" در بخش "
947
- "\"Token actions\" در پایین کلیک کنید."
948
-
949
- #: views/sfsi_option_view4.php:419
950
- msgid ""
951
- "Then click on \"Test OAuth\" at the top right and you will see the 4 token "
952
- "key"
953
- msgstr ""
954
- "بعد روی \"Test OAuth\" در بالا سمت راست کلیک کنید و ۴ کلید توکن را خواهید دید"
955
-
956
-
957
- #: views/sfsi_option_view4.php:484
958
- msgid "and create a new project"
959
- msgstr "و یک پروژه جدید ایجاد نمایید"
960
-
961
- #: views/sfsi_option_view4.php:487
962
- msgid ""
963
- "Then on the left menu bar go to “APIs & auth”, “Credentials” and click "
964
- "“Create new key” in the “Public API access” section"
965
- msgstr ""
966
- "بعد در منوی سمت چپ به “APIs & auth” و بعد به “Credentials” بروید و روی "
967
- "“Create new key” در بخش “Public API access” کلیک کنید."
968
-
969
- #: views/sfsi_option_view4.php:490
970
- msgid ""
971
- "There you select “browser key” and click “Create”. You will then be shown "
972
- "your API key"
973
- msgstr ""
974
- "از آنجا “browser key” را انتخاب نموده و روی “Create” کلیک کنید. کلید API "
975
- "برایتان به نمایش در می‌آید"
976
-
977
- #: views/sfsi_option_view4.php:493
978
- msgid ""
979
- "When you enter this key into the plugin for the first time, it may take some "
980
- "time until the correct follower count is displayed on your website"
981
- msgstr ""
982
- "وقتی برای اولین بار این کلید را در افزونه وارد مینمایید، ممکن است مقداری "
983
- "زمان ببرد تا تعداد درست دنبال‌کننده روی وب‌سایتتان به نمایش درآید."
984
-
985
- #: views/sfsi_option_view4.php:570
986
- msgid "Retrieve the number of Subscribers"
987
- msgstr "نمایش تعداد مشترکین"
988
-
989
- #: views/sfsi_option_view4.php:575
990
- msgid "Enter Youtube User name"
991
- msgstr "نام کاربری یوتیوب را وارد کنید"
992
-
993
- #: views/sfsi_option_view4.php:582
994
- msgid "Enter Youtube Channel id"
995
- msgstr "شناسه کانال یوتیوب را وارد نمایید"
996
-
997
- #: views/sfsi_option_view4.php:616
998
- msgid "Retrieve the number of Pins"
999
- msgstr "نمایش تعداد پین"
1000
-
1001
- #: views/sfsi_option_view4.php:649
1002
- msgid "Retrieve the number of Instagram followers"
1003
- msgstr "نمایش تعداد دنبال‌کنندگان اینستاگرام"
1004
-
1005
- #: views/sfsi_option_view4.php:653
1006
- msgid "Enter Instagram User name"
1007
- msgstr "نام کاربری اینستاگرام را وارد نمایید"
1008
-
1009
- #: views/sfsi_option_view4.php:688
1010
- msgid "Retrieve the number of shares"
1011
- msgstr "نمایش تعداد اشتراک‌گذاری‌ها"
1012
-
1013
- #: views/sfsi_option_view5.php:341
1014
- msgid "Order of your icons"
1015
- msgstr "ترتیب آیکن‌هایتان"
1016
-
1017
- #: views/sfsi_option_view5.php:430
1018
- msgid "Drag and Drop"
1019
- msgstr "کشیدن و رها کردن"
1020
-
1021
- #: views/sfsi_option_view5.php:435 views/sfsi_option_view8.php:400
1022
- msgid "Size and spacing of your icons"
1023
- msgstr "اندازه و فضای بین آیکن‌هایتان"
1024
-
1025
- #: views/sfsi_option_view5.php:439 views/sfsi_option_view8.php:404
1026
- msgid "Size:"
1027
- msgstr "اندازه:"
1028
-
1029
- #: views/sfsi_option_view5.php:443 views/sfsi_option_view8.php:406
1030
- msgid "pixels wide and tall"
1031
- msgstr "پیکسل عرض و ارتفاع"
1032
-
1033
- #: views/sfsi_option_view5.php:446 views/sfsi_option_view8.php:408
1034
- msgid "Spacing between icons:"
1035
- msgstr "فضای بین آیکن‌ها:"
1036
-
1037
- #: views/sfsi_option_view5.php:450 views/sfsi_option_view8.php:211
1038
- #: views/sfsi_option_view8.php:220 views/sfsi_option_view8.php:229
1039
- #: views/sfsi_option_view8.php:238 views/sfsi_option_view8.php:410
1040
- msgid "Pixels"
1041
- msgstr "پیکسل"
1042
-
1043
- #: views/sfsi_option_view5.php:457
1044
- msgid "Alignments"
1045
- msgstr "چینش"
1046
-
1047
- #: views/sfsi_option_view5.php:461
1048
- msgid "Alignment of icons:"
1049
- msgstr "چینش آیکن‌ها:"
1050
-
1051
- #: views/sfsi_option_view5.php:466 views/sfsi_option_view9.php:684
1052
- msgid "Centered"
1053
- msgstr "وسط‌چین"
1054
-
1055
- #: views/sfsi_option_view5.php:469 views/sfsi_option_view6.php:92
1056
- #: views/sfsi_option_view8.php:496
1057
- msgid "Right"
1058
- msgstr "راست‌چین"
1059
-
1060
- #: views/sfsi_option_view5.php:472 views/sfsi_option_view6.php:90
1061
- #: views/sfsi_option_view8.php:493
1062
- msgid "Left"
1063
- msgstr "چپ‌چین"
1064
-
1065
- #: views/sfsi_option_view5.php:477
1066
- msgid "Icons per row:"
1067
- msgstr "تعداد آیکن در هر خط:"
1068
-
1069
- #: views/sfsi_option_view5.php:481
1070
- msgid "Leave empty if you don't want to define this"
1071
- msgstr "اگر مایل نیستید این را معین کنید خالی بگذارید"
1072
-
1073
- #: views/sfsi_option_view5.php:488
1074
- msgid "Language & Button-text"
1075
- msgstr "زبان و متن کلید"
1076
-
1077
- #: views/sfsi_option_view5.php:493
1078
- msgid "Follow-button:"
1079
- msgstr "دکمه دنبال:"
1080
-
1081
- #: views/sfsi_option_view5.php:499 views/sfsi_option_view5.php:520
1082
- #: views/sfsi_option_view5.php:541 views/sfsi_option_view5.php:562
1083
- #: views/sfsi_option_view9.php:111
1084
- msgid "Preview:"
1085
- msgstr "پیش‌نمایش:"
1086
-
1087
- #: views/sfsi_option_view5.php:514
1088
- msgid "Facebook «Visit»-icon:"
1089
- msgstr "آیکن «بازدید» فیس‌بوک:"
1090
-
1091
- #: views/sfsi_option_view5.php:535
1092
- msgid "Twitter «Visit»-icon:"
1093
- msgstr "آیکن «بازدید» توییتر:"
1094
-
1095
- #: views/sfsi_option_view5.php:748
1096
- msgid "New window"
1097
- msgstr "پنجره جدید"
1098
-
1099
- #: views/sfsi_option_view5.php:753
1100
- msgid ""
1101
- "If a user clicks on your icons, do you want to open the page in a new window?"
1102
- msgstr ""
1103
- "اگر کاربر روی آیکن‌هایتان کلیک کرد، میخواهید صفحه مربوطه در یک پنجره جدید (تب "
1104
- "جدید از مرورگر) باز گردد؟"
1105
-
1106
- #: views/sfsi_option_view5.php:776
1107
- msgid "Sticking & Disable on mobile"
1108
- msgstr "در حالت موبایل بچسب و غیرفعال شو"
1109
-
1110
- #: views/sfsi_option_view5.php:779
1111
- msgid ""
1112
- "If you decided to show your icons via a widget, you can add the effect that "
1113
- "when the user scrolls down, the icons will stick at the top of the screen "
1114
- "so that they are still displayed even if the user scrolled all the way down. "
1115
- "Do you want to do that?"
1116
- msgstr ""
1117
- "اگر تصمیم دارید آیکن‌هایتان را در یک ابزارک نمایش دهید، میتوانید حالتی را "
1118
- "برگزینید که وقتی کاربر به سمت پایین آمد آیکون‌ها در بالای صفحه‌نمایش بچسبند و "
1119
- "هرچقدر کاربر به سمت پایین سایت پیمایش (اسکرول) کند همچنان قابل دیدن باشند. "
1120
- "آیا میخواهید این کار انجام شود؟"
1121
-
1122
- #: views/sfsi_option_view5.php:802
1123
- msgid "Disable float icons on mobile devices"
1124
- msgstr "آیکن‌های شناور در حالت موبایل غیرفعال باشند"
1125
-
1126
- #: views/sfsi_option_view5.php:824
1127
- msgid "Disable auto-scaling feature for mobile devices (\"viewport\" meta tag)"
1128
- msgstr ""
1129
- "ویژگی auto-scaling در دستگاه‌های موبایل غیرفعال شود (تگ متای \"viewport\")"
1130
-
1131
- #: views/sfsi_option_view5.php:848
1132
- msgid "Mouseover text"
1133
- msgstr "متنی که وقتی ماوس روی آن قرار گرفت نشان دهد"
1134
-
1135
- #: views/sfsi_option_view5.php:851
1136
- msgid ""
1137
- "If you’ve given your icon only one function (i.e. no pop-up where user can "
1138
- "perform different actions) then you can define here what text will be "
1139
- "displayed if a user moves his mouse over the icon:"
1140
- msgstr ""
1141
- "اگر به آیکن‌تان تنها یک امکان داده‌اید (برای نمونه هیچ پاپ‌آپی برای آزادی عمل "
1142
- "کاربر ارایه نکردید) اینجا مشخص کنید هنگامی که کاربر ماوس خود را روی آیکن "
1143
- "آورد چه متنی نمایش داده شود:"
1144
-
1145
- #: views/sfsi_option_view6.php:27
1146
- msgid ""
1147
- "The selections you made so far were to display the subscriptions/ social "
1148
- "media icons for your site in general (in a widget on the sidebar). You can "
1149
- "also display icons at the end of every post, encouraging users to subscribe/"
1150
- "like/share after they’ve read it. The following buttons will be added:"
1151
- msgstr ""
1152
- "انتخابی که کردید در حال حاضر مربوط به نمایش آیکن‌های اشتراک و شبکه‌های اجتماعی "
1153
- "بطور معمول برای سایتتان است (در ابزارک نوار ابزار کناری). شما همچنین "
1154
- "میتوانید آیکن‌ها را در انتهای هر نوشته نمایش دهید، و کاربران را تشویق به "
1155
- "مشترک‌شدن، لایک‌کردن، یا به اشتراک گذاری مطالبتان کنید. کلیدهای زیر اضافه "
1156
- "خواهند شد:"
1157
-
1158
- #: views/sfsi_option_view6.php:43
1159
- msgid "Those are usually all you need:"
1160
- msgstr "آنها همه آن چیزیست که نیاز دارید:"
1161
-
1162
- #: views/sfsi_option_view6.php:47
1163
- msgid "Facebook is No.1 in liking, so it’s a must have"
1164
- msgstr "فیس‌بوک در لایک کردن شماره ۱ است، پس باید داشته باشد"
1165
-
1166
- #: views/sfsi_option_view6.php:53
1167
- msgid "Share-button covers all other platforms for sharing"
1168
- msgstr "دکمه اشتراک‌گذاری تمامی سایر روش‌های اشتراک‌گذاری موجود را پوشش میدهد"
1169
-
1170
- #: views/sfsi_option_view6.php:58
1171
- msgid "So: do you want to display those at the end of every post?"
1172
- msgstr "پس، شما میخواهید آنها را در انتهای هر نوشته نمایش دهید؟"
1173
-
1174
- #: views/sfsi_option_view6.php:78
1175
- msgid "Options:"
1176
- msgstr "تنظیمات:"
1177
-
1178
- #: views/sfsi_option_view6.php:82 views/sfsi_option_view8.php:484
1179
- msgid "Text to appear before the sharing icons:"
1180
- msgstr "متن پیش از ظاهر شدن آیکن‌های اشتراک‌گذاری:"
1181
-
1182
- #: views/sfsi_option_view6.php:87 views/sfsi_option_view8.php:489
1183
- msgid "Alignment of share icons:"
1184
- msgstr "چینش آیکن‌های اشتراک‌گذاری:"
1185
-
1186
- #: views/sfsi_option_view6.php:97 views/sfsi_option_view8.php:385
1187
- msgid "Do you want to display the counts?"
1188
- msgstr "آیا میخواهید تعداد نمایش داده شود؟"
1189
-
1190
- #: views/sfsi_option_view6.php:99 views/sfsi_option_view8.php:38