Social Media Share Buttons & Social Sharing Icons - Version 2.4.1

Version Description

  • Feedback system updated.
  • Design changes in settings page.
  • Moved below post options to Q3.
Download this release

Release Info

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

Code changes from version 2.4.0 to 2.4.1

analyst/src/Collector.php CHANGED
@@ -169,9 +169,9 @@ class Collector
169
  */
170
  public function getMysqlVersion()
171
  {
172
- global $wpdb;
173
 
174
- $version = empty($wpdb->use_mysqli) ? mysql_get_server_info() : mysqli_get_server_info($wpdb->dbh);
175
 
176
  return $version ? $version : 'unknown';
177
  }
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
  }
analyst/src/Core/AbstractFactory.php CHANGED
@@ -5,7 +5,7 @@ namespace Analyst\Core;
5
  abstract class AbstractFactory
6
  {
7
  /**
8
- * Unserialize to NoticeFactory
9
  *
10
  * @param $raw
11
  * @return static
@@ -17,7 +17,7 @@ abstract class AbstractFactory
17
  $isProperObject = is_object($instance) && $instance instanceof static;
18
 
19
  // In case for some reason unserialized object is not
20
- // NoticeFactory we make sure it is NoticeFactory
21
  if (!$isProperObject) {
22
  $instance = new static();
23
  }
5
  abstract class AbstractFactory
6
  {
7
  /**
8
+ * Unserialize to static::class instance
9
  *
10
  * @param $raw
11
  * @return static
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
  }
analyst/templates/forms/install.php CHANGED
@@ -27,7 +27,7 @@
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>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">
@@ -97,6 +97,9 @@
97
  var isVisible = $('#analyst-permissions-block').toggle().is(':visible')
98
 
99
  isVisible ? $(this).text('Close section') : $(this).text('Learn more')
 
 
 
100
  })
101
 
102
  $('#analyst-install-skip').click(function () {
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">
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 () {
analyst/version.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  return array(
4
  // The sdk version
5
- 'sdk' => '1.3.26',
6
 
7
  // Minimum supported WordPress version
8
  'wp' => '4.7',
2
 
3
  return array(
4
  // The sdk version
5
+ 'sdk' => '1.3.28',
6
 
7
  // Minimum supported WordPress version
8
  'wp' => '4.7',
css/sfsi-admin-style.css CHANGED
@@ -1,5278 +1,5287 @@
1
- @charset "utf-8";
2
- @font-face {
3
- font-family: helveticabold;
4
- src: url(fonts/helvetica_bold_0-webfont.eot);
5
- src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
6
- font-weight: 400;
7
- font-style: normal;
8
- }
9
- @font-face {
10
- font-family: helveticaregular;
11
- src: url(fonts/helvetica_0-webfont.eot);
12
- src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
13
- font-weight: 400;
14
- font-style: normal;
15
- }
16
- @font-face {
17
- font-family: helveticaneue-light;
18
- src: url(fonts/helveticaneue-light.eot);
19
- src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'),
20
- url(fonts/helveticaneue-light.woff) format('woff'),
21
- url(fonts/helveticaneue-light.ttf) format('truetype'),
22
- url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
23
- font-weight: 400;
24
- font-style: normal;
25
- }
26
- body {
27
- margin: 0;
28
- padding: 0;
29
- }
30
- .sfsi_mainContainer {
31
- font-family: helveticaregular;
32
- }
33
- .sfsi_mainContainer h1,
34
- .sfsi_mainContainer h2,
35
- .sfsi_mainContainer h3,
36
- .sfsi_mainContainer h4,
37
- .sfsi_mainContainer h5,
38
- .sfsi_mainContainer h6,
39
- .sfsi_mainContainer li,
40
- .sfsi_mainContainer p,
41
- .sfsi_mainContainer ul {
42
- margin: 0;
43
- padding: 0;
44
- font-weight: 400;
45
- }
46
- .sfsi_mainContainer img {
47
- border: 0;
48
- vertical-align: middle;
49
- }
50
- .main_contant p,
51
- .ui-accordion .ui-accordion-header {
52
- /*font-family: helveticaregular;*/
53
- font-family: 'helveticaneue-light';
54
- }
55
- .sfsi_mainContainer input,
56
- .sfsi_mainContainer select {
57
- outline: 0;
58
- }
59
- .wapper {
60
- padding: 30px 40px 40px 40px;
61
- display: block;
62
- background: #f1f1f1;
63
- }
64
- .main_contant {
65
- margin: 0;
66
- padding: 20px 0 0 0;
67
- width: 100%;
68
- float: left;
69
- }
70
- .main_contant h1 {
71
- padding: 0;
72
- color: #1a1d20;
73
- font-family: helveticabold;
74
- font-size: 28px;
75
- }
76
- .main_contant p {
77
- padding: 0;
78
- color: #414951;
79
- font-size: 17px;
80
- line-height: 26px;
81
- }
82
- .main_contant p span {
83
- text-decoration: underline;
84
- font-family: helveticabold;
85
- }
86
- a#save_all_settings {
87
- padding: 15px 10px;
88
- }
89
- #accordion p,
90
- #accordion1 p {
91
- color: #5a6570;
92
- text-align: left;
93
- /*font-family: helveticaregular;*/
94
- font-family: 'helveticaneue-light';
95
- font-size: 17px;
96
- line-height: 26px;
97
- padding-top: 19px;
98
- }
99
- #accordion p:first-child,
100
- #accordion1 p:first-child {
101
- padding-top: 5px;
102
-
103
- /* padding-bottom: 10px;*/
104
-
105
- padding-bottom: 5px;
106
- }
107
- #accordion h4,
108
- #accordion1 h4 {
109
- margin: 0;
110
- padding: 30px 0 0;
111
- color: #414951 !important;
112
- font-size: 20px;
113
- line-height: 22px;
114
- font-family: helveticaregular;
115
- }
116
- #accordion1 h4.sfsi_dsplyatend {
117
- width: 47%;
118
- float: left;
119
- }
120
- #accordion h4:first-child,
121
- #accordion1 h4:first-child {
122
- padding-top: 0;
123
- }
124
- .tab1,
125
- .tab2,
126
- .tab3,
127
- .tab4,
128
- .tab5,
129
- .tab6,
130
- .tab7 {
131
- color: #5a6570;
132
- text-align: left;
133
- font-family: helveticaneue-light;
134
- font-size: 18px;
135
- line-height: 26px;
136
- }
137
-
138
- /*Admin menu*/
139
- ul#adminmenu li.toplevel_page_sfsi-options div.wp-menu-image {
140
- display: none;
141
- }
142
- #adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options {
143
- padding: 0 0 0 38px;
144
- font-family: Arial, Helvetica, sans-serif !important;
145
-
146
- /* font-family: helveticabold; */
147
- }
148
- ul#adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options {
149
- color: #e12522;
150
- transition: 0s;
151
- background: url(images/left_log_icn.png) 6px 15px no-repeat #000;
152
- background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
153
- color: #e12522;
154
- font-family: Arial, Helvetica, sans-serif !important;
155
-
156
- }
157
- ul#adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options:hover {
158
- background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
159
- color: #e12522;
160
-
161
- }
162
-
163
- ul#adminmenu li.toplevel_page_sfsi-options a.current,
164
- ul#adminmenu li.toplevel_page_sfsi-options a.current:hover {
165
- background: url(images/left_log_icn.png) 6px 15px no-repeat #000000;
166
- /*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
167
- color: #e12522;
168
- }
169
- /*Tab1*/
170
- .tab1 ul.icn_listing {
171
- list-style: none;
172
- overflow: hidden;
173
- border-top: #e7e8eb solid 1px;
174
- margin: 35px 0 0;
175
- }
176
- .tab1 ul.icn_listing li {
177
- border-bottom: #eaebed solid 1px;
178
- padding: 11px 0 11px 8px;
179
- float: left;
180
- width: 100%
181
- }
182
- ul.icn_listing li .tb_4_ck {
183
- float: left;
184
- margin: 10px 0 0;
185
- }
186
- .tab1 ul.icn_listing li .custom,
187
- .tab1 ul.icn_listing li .sfsicls_email,
188
- .tab1 ul.icn_listing li .sfsicls_facebook,
189
- .tab1 ul.icn_listing li .sfsicls_instagram,
190
- .tab1 ul.icn_listing li .sfsicls_telegram,
191
- .tab1 ul.icn_listing li .sfsicls_vk,
192
- .tab1 ul.icn_listing li .sfsicls_ok,
193
- .tab1 ul.icn_listing li .sfsicls_wechat,
194
- .tab1 ul.icn_listing li .sfsicls_weibo,
195
- .sfsicls_linkdin,
196
- .tab1 ul.icn_listing li .sfsicls_pinterest,
197
- .tab1 ul.icn_listing li .sfsicls_rs_s,
198
- .tab1 ul.icn_listing li .sfsicls_share,
199
- .tab1 ul.icn_listing li .sfsicls_twt,
200
- .tab1 ul.icn_listing li .sfsicls_utube {
201
- background: url(../images/tab_1_icn_list.png) no-repeat;
202
- float: left;
203
- padding: 0 0 0 59px;
204
- margin: 0 0 0 17px;
205
- height: 52px;
206
- line-height: 51px;
207
- font-family: helveticaregular;
208
- font-size: 22px;
209
- }
210
- .tab1 ul.icn_listing li .sfsicls_telegram {
211
- background: url(../images/icons_theme/default/default_telegram.png) no-repeat;
212
- background-size: contain;
213
- }
214
- .tab1 ul.icn_listing li .sfsicls_vk {
215
- background: url(../images/icons_theme/default/default_vk.png) no-repeat;
216
- background-size: contain;
217
- }
218
- .tab1 ul.icn_listing li .sfsicls_ok {
219
- background: url(../images/icons_theme/default/default_ok.png) no-repeat;
220
- background-size: contain;
221
- }
222
- .tab1 ul.icn_listing li .sfsicls_wechat {
223
- background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
224
- background-size: contain;
225
- }
226
- .tab1 ul.icn_listing li .sfsicls_weibo {
227
- background: url(../images/icons_theme/default/default_weibo.png) no-repeat;
228
- background-size: contain;
229
- }
230
-
231
- .tab1 ul.icn_listing li .sfsicls_rs_s {
232
- background-position: 0 0;
233
- color: #f7941d;
234
- }
235
- .tab1 ul.icn_listing li .sfsicls_email {
236
- background-position: 0 -73px;
237
- color: #d1c800;
238
- }
239
- .tab1 ul.icn_listing li .sfsicls_facebook {
240
- background-position: 0 -145px;
241
- color: #004088;
242
- }
243
- .tab1 ul.icn_listing li .sfsicls_twt {
244
- background-position: 0 -221px;
245
- color: #00abe3;
246
- }
247
-
248
- .tab1 ul.icn_listing li .sfsicls_share {
249
- background-position: 0 -372px;
250
- color: #ef4746;
251
- }
252
- .tab1 ul.icn_listing li .sfsicls_utube {
253
- background-position: 0 -448px;
254
- color: #f07963;
255
- }
256
- .tab1 ul.icn_listing li .sfsicls_linkdin {
257
- background-position: 0 -548px;
258
- color: #1e88c9;
259
- }
260
- .tab1 ul.icn_listing li .sfsicls_pinterest {
261
- background-position: 0 -623px;
262
- color: #f15f5d;
263
- }
264
- .tab1 ul.icn_listing li .sfsicls_instagram {
265
- background-position: 0 -781px;
266
- color: #369;
267
- }
268
- .tab1 ul.icn_listing li .custom {
269
- background-position: 0 -702px;
270
- color: #5a6570;
271
- }
272
- .tab1 ul.icn_listing li .right_info {
273
- width: 70%;
274
- float: right;
275
- font-family: helveticaregular;
276
- margin-right: 13px;
277
- }
278
- ul.icn_listing li .right_info a {
279
- text-decoration: underline;
280
- color: #a4a9ad;
281
- font-size: 16px;
282
- }
283
- .tab1 .tab_2_sav {
284
- padding-top: 30px;
285
- }
286
- /*Tab2*/
287
- .tab2 {
288
- overflow: hidden;
289
- }
290
- .tab2 .rss_url_row {
291
- width: 100%;
292
- float: left;
293
- margin: 0 0 10px;
294
- }
295
- .tab2 .rss_url_row h4 {
296
- float: left;
297
- line-height: 43px;
298
- }
299
- .tab2 .inr_cont input.add,
300
- .tab2 .inr_cont textarea.add_txt,
301
- .tab2 .rss_url_row input.add {
302
- width: 363px;
303
- float: left;
304
- background: #e5e5e5;
305
- box-shadow: 2px 2px 3px #dcdcdc inset;
306
- border: 0;
307
- padding: 12px 10px 11px;
308
- margin-left: 10px;
309
- }
310
- .tab2 .rss_url_row a.rit_link {
311
- float: left;
312
- margin: 10px 0 0 16px;
313
- font-size: 17px;
314
- }
315
- .tab2 .row {
316
- float: left;
317
- border-top: 2px solid #f2f3f4;
318
- clear: both;
319
- padding: 0 0 15px;
320
- width: 100%
321
- }
322
- .tab2 .row .tab_2_email_sec {
323
- list-style: none;
324
- margin: 17px 0 0;
325
- overflow: hidden;
326
- }
327
- .row ul.tab_2_email_sec li {
328
- float: left;
329
- margin-right: 10px;
330
- width: 32%;
331
- }
332
- .row ul.tab_2_email_sec li label span {
333
- font-size: 15px;
334
- color: #808080;
335
- width: 100%;
336
- float: left;
337
- }
338
- .row ul.tab_2_email_sec:first-child {
339
- margin-right: 2%
340
- }
341
- .tab2 .row h2.sfsicls_email,
342
- .tab2 .row h2.sfsicls_facebook,
343
- .tab2 .row h2.sfsicls_telegram,
344
- .tab2 .row h2.sfsicls_vk,
345
- .tab2 .row h2.sfsicls_ok,
346
- .tab2 .row h2.sfsicls_wechat,
347
- .tab2 .row h2.sfsicls_weibo,
348
- .tab2 .row h2.sfsicls_instagram,
349
- .tab2 .row h2.sfsicls_linkdin,
350
- .tab2 .row h2.sfsicls_pinterest,
351
- .tab2 .row h2.sfsicls_rs_s,
352
- .tab2 .row h2.sfsicls_share,
353
- .tab2 .row h2.sfsicls_twt,
354
- .tab2 .row h2.sfsicls_utube {
355
- background: url(../images/tab_1_icn_list.png) no-repeat;
356
- padding: 0 0 0 70px;
357
- margin: 15px 0 7px 21px;
358
- height: 52px;
359
- line-height: 51px;
360
- font-family: helveticaregular;
361
- font-size: 22px;
362
- }
363
- .tab2 .row h2.sfsicls_rs_s {
364
- background-position: 0 0;
365
- color: #f7941d;
366
- }
367
- .tab2 .row h2.sfsicls_telegram {
368
- background: url(../images/icons_theme/default/default_telegram.png) no-repeat;
369
- background-size: contain;
370
- }
371
- .tab2 .row h2.sfsicls_vk {
372
- background: url(../images/icons_theme/default/default_vk.png) no-repeat;
373
- background-size: contain;
374
- }
375
- .tab2 .row h2.sfsicls_ok {
376
- background: url(../images/icons_theme/default/default_ok.png) no-repeat;
377
- background-size: contain;
378
- }
379
- .tab2 .row h2.sfsicls_wechat {
380
- background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
381
- background-size: contain;
382
- }
383
- .tab2 .row h2.sfsicls_weibo {
384
- background: url(../images/icons_theme/default/default_weibo.png) no-repeat;
385
- background-size: contain;
386
- }
387
- .tab2 .row h2.sfsicls_email {
388
- background-position: 0 -71px;
389
- color: #d1c800;
390
- }
391
- .tab2 .row h2.sfsicls_facebook {
392
- background-position: 0 -145px;
393
- color: #004088;
394
- }
395
- .tab2 .row h2.sfsicls_twt {
396
- background-position: 0 -221px;
397
- color: #00abe3;
398
- }
399
-
400
- .tab2 .row h2.sfsicls_share {
401
- background-position: 0 -372px;
402
- color: #ef4746;
403
- }
404
- .tab2 .row h2.sfsicls_utube {
405
- background-position: 0 -448px;
406
- color: #f07963;
407
- }
408
- .tab2 .row h2.sfsicls_linkdin {
409
- background-position: 0 -548px;
410
- color: #1e88c9;
411
- width: 100%;
412
- }
413
- .tab2 .row h2.sfsicls_pinterest {
414
- background-position: 0 -623px;
415
- color: #f15f5d;
416
- }
417
- .tab2 .row h2.sfsicls_instagram {
418
- background-position: 0 -781px;
419
- color: #369;
420
- }
421
- .tab2 .inr_cont {
422
- margin: 0 0 12px 94px;
423
- }
424
- ul.tab_2_email_sec .sf_arow {
425
- width: 52px;
426
- height: 52px;
427
- float: left;
428
- background: url(../images/sf_arow_icn.png) no-repeat;
429
- margin: 0 8px 0 6px;
430
- }
431
- ul.tab_2_email_sec .email_icn {
432
- background: url(../images/tab_1_icn_list.png) 0 -71px no-repeat;
433
- width: 52px;
434
- height: 52px;
435
- float: left;
436
- margin: 0 8px;
437
- }
438
- ul.tab_2_email_sec .subscribe_icn {
439
- background: url(../images/tab_1_icn_list.png) 0 -860px no-repeat;
440
- width: 52px;
441
- height: 52px;
442
- float: left;
443
- margin: 0 0 0 5px;
444
- }
445
- ul.tab_2_email_sec li .radio {
446
- float: left;
447
- margin: 8px 0 0;
448
- }
449
- .row ul.tab_2_email_sec li label {
450
- margin: 13px 0 0 7px;
451
- font-size: 16px;
452
- float: left;
453
- width: 160px;
454
- }
455
- /*Tab 3*/
456
- .icns_tab_3 .row_10_1,
457
- .icns_tab_3 .row_10_10,
458
- .icns_tab_3 .row_10_11,
459
- .icns_tab_3 .row_10_2,
460
- .icns_tab_3 .row_10_3,
461
- .icns_tab_3 .row_10_4,
462
- .icns_tab_3 .row_10_5,
463
- .icns_tab_3 .row_10_6,
464
- .icns_tab_3 .row_10_7,
465
- .icns_tab_3 .row_10_8,
466
- .icns_tab_3 .row_10_9,
467
- .icns_tab_3 .row_11_1,
468
- .icns_tab_3 .row_11_10,
469
- .icns_tab_3 .row_11_11,
470
- .icns_tab_3 .row_11_2,
471
- .icns_tab_3 .row_11_3,
472
- .icns_tab_3 .row_11_4,
473
- .icns_tab_3 .row_11_5,
474
- .icns_tab_3 .row_11_6,
475
- .icns_tab_3 .row_11_7,
476
- .icns_tab_3 .row_11_8,
477
- .icns_tab_3 .row_11_9,
478
- .icns_tab_3 .row_12_1,
479
- .icns_tab_3 .row_12_10,
480
- .icns_tab_3 .row_12_11,
481
- .icns_tab_3 .row_12_2,
482
- .icns_tab_3 .row_12_3,
483
- .icns_tab_3 .row_12_4,
484
- .icns_tab_3 .row_12_5,
485
- .icns_tab_3 .row_12_6,
486
- .icns_tab_3 .row_12_7,
487
- .icns_tab_3 .row_12_8,
488
- .icns_tab_3 .row_12_9,
489
- .icns_tab_3 .row_13_1,
490
- .icns_tab_3 .row_13_10,
491
- .icns_tab_3 .row_13_11,
492
- .icns_tab_3 .row_13_2,
493
- .icns_tab_3 .row_13_3,
494
- .icns_tab_3 .row_13_4,
495
- .icns_tab_3 .row_13_5,
496
- .icns_tab_3 .row_13_6,
497
- .icns_tab_3 .row_13_7,
498
- .icns_tab_3 .row_13_8,
499
- .icns_tab_3 .row_13_9,
500
- .icns_tab_3 .row_14_1,
501
- .icns_tab_3 .row_14_10,
502
- .icns_tab_3 .row_14_11,
503
- .icns_tab_3 .row_14_2,
504
- .icns_tab_3 .row_14_3,
505
- .icns_tab_3 .row_14_4,
506
- .icns_tab_3 .row_14_5,
507
- .icns_tab_3 .row_14_6,
508
- .icns_tab_3 .row_14_7,
509
- .icns_tab_3 .row_14_8,
510
- .icns_tab_3 .row_14_9,
511
- .icns_tab_3 .row_15_1,
512
- .icns_tab_3 .row_15_10,
513
- .icns_tab_3 .row_15_11,
514
- .icns_tab_3 .row_15_2,
515
- .icns_tab_3 .row_15_3,
516
- .icns_tab_3 .row_15_4,
517
- .icns_tab_3 .row_15_5,
518
- .icns_tab_3 .row_15_6,
519
- .icns_tab_3 .row_15_7,
520
- .icns_tab_3 .row_15_8,
521
- .icns_tab_3 .row_15_9,
522
- .icns_tab_3 .row_16_1,
523
- .icns_tab_3 .row_16_10,
524
- .icns_tab_3 .row_16_11,
525
- .icns_tab_3 .row_16_2,
526
- .icns_tab_3 .row_16_3,
527
- .icns_tab_3 .row_16_4,
528
- .icns_tab_3 .row_16_5,
529
- .icns_tab_3 .row_16_6,
530
- .icns_tab_3 .row_16_7,
531
- .icns_tab_3 .row_16_8,
532
- .icns_tab_3 .row_16_9,
533
- .icns_tab_3 .row_1_1,
534
- .icns_tab_3 .row_1_10,
535
- .icns_tab_3 .row_1_11,
536
- .icns_tab_3 .row_1_14,
537
- .icns_tab_3 .row_1_2,
538
- .icns_tab_3 .row_1_3,
539
- .icns_tab_3 .row_1_4,
540
- .icns_tab_3 .row_1_5,
541
- .icns_tab_3 .row_1_6,
542
- .icns_tab_3 .row_1_7,
543
- .icns_tab_3 .row_1_8,
544
- .icns_tab_3 .row_1_9,
545
- .icns_tab_3 .row_2_1,
546
- .icns_tab_3 .row_2_10,
547
- .icns_tab_3 .row_2_11,
548
- .icns_tab_3 .row_2_14,
549
- .icns_tab_3 .row_2_2,
550
- .icns_tab_3 .row_2_3,
551
- .icns_tab_3 .row_2_4,
552
- .icns_tab_3 .row_2_5,
553
- .icns_tab_3 .row_2_6,
554
- .icns_tab_3 .row_2_7,
555
- .icns_tab_3 .row_2_8,
556
- .icns_tab_3 .row_2_9,
557
- .icns_tab_3 .row_3_1,
558
- .icns_tab_3 .row_3_10,
559
- .icns_tab_3 .row_3_11,
560
- .icns_tab_3 .row_3_14,
561
- .icns_tab_3 .row_3_2,
562
- .icns_tab_3 .row_3_3,
563
- .icns_tab_3 .row_3_4,
564
- .icns_tab_3 .row_3_5,
565
- .icns_tab_3 .row_3_6,
566
- .icns_tab_3 .row_3_7,
567
- .icns_tab_3 .row_3_8,
568
- .icns_tab_3 .row_3_9,
569
- .icns_tab_3 .row_4_1,
570
- .icns_tab_3 .row_4_10,
571
- .icns_tab_3 .row_4_11,
572
- .icns_tab_3 .row_4_14,
573
- .icns_tab_3 .row_4_2,
574
- .icns_tab_3 .row_4_3,
575
- .icns_tab_3 .row_4_4,
576
- .icns_tab_3 .row_4_5,
577
- .icns_tab_3 .row_4_6,
578
- .icns_tab_3 .row_4_7,
579
- .icns_tab_3 .row_4_8,
580
- .icns_tab_3 .row_4_9,
581
- .icns_tab_3 .row_5_1,
582
- .icns_tab_3 .row_5_10,
583
- .icns_tab_3 .row_5_11,
584
- .icns_tab_3 .row_5_14,
585
- .icns_tab_3 .row_5_2,
586
- .icns_tab_3 .row_5_3,
587
- .icns_tab_3 .row_5_4,
588
- .icns_tab_3 .row_5_5,
589
- .icns_tab_3 .row_5_6,
590
- .icns_tab_3 .row_5_7,
591
- .icns_tab_3 .row_5_8,
592
- .icns_tab_3 .row_5_9,
593
- .icns_tab_3 .row_6_1,
594
- .icns_tab_3 .row_6_10,
595
- .icns_tab_3 .row_6_11,
596
- .icns_tab_3 .row_6_14,
597
- .icns_tab_3 .row_6_2,
598
- .icns_tab_3 .row_6_3,
599
- .icns_tab_3 .row_6_4,
600
- .icns_tab_3 .row_6_5,
601
- .icns_tab_3 .row_6_6,
602
- .icns_tab_3 .row_6_7,
603
- .icns_tab_3 .row_6_8,
604
- .icns_tab_3 .row_6_9,
605
- .icns_tab_3 .row_7_1,
606
- .icns_tab_3 .row_7_10,
607
- .icns_tab_3 .row_7_11,
608
- .icns_tab_3 .row_7_2,
609
- .icns_tab_3 .row_7_3,
610
- .icns_tab_3 .row_7_4,
611
- .icns_tab_3 .row_7_5,
612
- .icns_tab_3 .row_7_6,
613
- .icns_tab_3 .row_7_7,
614
- .icns_tab_3 .row_7_8,
615
- .icns_tab_3 .row_7_9,
616
- .icns_tab_3 .row_8_1,
617
- .icns_tab_3 .row_8_10,
618
- .icns_tab_3 .row_8_11,
619
- .icns_tab_3 .row_8_2,
620
- .icns_tab_3 .row_8_3,
621
- .icns_tab_3 .row_8_4,
622
- .icns_tab_3 .row_8_5,
623
- .icns_tab_3 .row_8_6,
624
- .icns_tab_3 .row_8_7,
625
- .icns_tab_3 .row_8_8,
626
- .icns_tab_3 .row_8_9,
627
- .icns_tab_3 .row_9_1,
628
- .icns_tab_3 .row_9_10,
629
- .icns_tab_3 .row_9_11,
630
- .icns_tab_3 .row_9_2,
631
- .icns_tab_3 .row_9_3,
632
- .icns_tab_3 .row_9_4,
633
- .icns_tab_3 .row_9_5,
634
- .icns_tab_3 .row_9_6,
635
- .icns_tab_3 .row_9_7,
636
- .icns_tab_3 .row_9_8,
637
- .icns_tab_3 .row_9_9,
638
- .icns_tab_3 .row_17_1,
639
- .icns_tab_3 .row_17_2,
640
- .icns_tab_3 .row_17_3,
641
- .icns_tab_3 .row_17_4,
642
- .icns_tab_3 .row_17_5,
643
- .icns_tab_3 .row_17_6,
644
- .icns_tab_3 .row_17_7,
645
- .icns_tab_3 .row_17_8,
646
- .icns_tab_3 .row_17_9,
647
- .icns_tab_3 .row_17_10,
648
- .icns_tab_3 .row_17_14,
649
- .icns_tab_3 .row_17_15,
650
- .icns_tab_3 .row_17_16,
651
- .icns_tab_3 .row_17_17,
652
- .icns_tab_3 .row_17_18,
653
- .icns_tab_3 .row_17_11,
654
- .icns_tab_3 .row_7_14,
655
- .icns_tab_3 .row_8_14,
656
- .icns_tab_3 .row_9_14,
657
- .icns_tab_3 .row_10_14,
658
- .icns_tab_3 .row_11_14,
659
- .icns_tab_3 .row_12_14,
660
- .icns_tab_3 .row_13_14,
661
- .icns_tab_3 .row_14_14,
662
- .icns_tab_3 .row_15_22,
663
- .icns_tab_3 .row_16_22,
664
- .icns_tab_3 .row_17_22,
665
- .icns_tab_3 .row_17_15,
666
- .icns_tab_3 .row_17_16,
667
- .icns_tab_3 .row_17_17,
668
- .icns_tab_3 .row_1_15,
669
- .icns_tab_3 .row_2_15,
670
- .icns_tab_3 .row_3_15,
671
- .icns_tab_3 .row_4_15,
672
- .icns_tab_3 .row_5_15,
673
- .icns_tab_3 .row_6_15,
674
- .icns_tab_3 .row_7_15,
675
- .icns_tab_3 .row_8_15,
676
- .icns_tab_3 .row_9_15,
677
- .icns_tab_3 .row_10_15,
678
- .icns_tab_3 .row_11_15,
679
- .icns_tab_3 .row_12_15,
680
- .icns_tab_3 .row_13_15,
681
- .icns_tab_3 .row_14_15,
682
- .icns_tab_3 .row_15_15,
683
- .icns_tab_3 .row_16_15,
684
-
685
- .icns_tab_3 .row_1_16,
686
- .icns_tab_3 .row_2_16,
687
- .icns_tab_3 .row_3_16,
688
- .icns_tab_3 .row_4_16,
689
- .icns_tab_3 .row_5_16,
690
- .icns_tab_3 .row_6_16,
691
- .icns_tab_3 .row_7_16,
692
- .icns_tab_3 .row_8_16,
693
- .icns_tab_3 .row_9_16,
694
- .icns_tab_3 .row_10_16,
695
- .icns_tab_3 .row_11_16,
696
- .icns_tab_3 .row_12_16,
697
- .icns_tab_3 .row_13_16,
698
- .icns_tab_3 .row_14_16,
699
- .icns_tab_3 .row_15_16,
700
- .icns_tab_3 .row_16_16,
701
-
702
- .icns_tab_3 .row_1_17,
703
- .icns_tab_3 .row_2_17,
704
- .icns_tab_3 .row_3_17,
705
- .icns_tab_3 .row_4_17,
706
- .icns_tab_3 .row_5_17,
707
- .icns_tab_3 .row_6_17,
708
- .icns_tab_3 .row_7_17,
709
- .icns_tab_3 .row_8_17,
710
- .icns_tab_3 .row_9_17,
711
- .icns_tab_3 .row_10_17,
712
- .icns_tab_3 .row_11_17,
713
- .icns_tab_3 .row_12_17,
714
- .icns_tab_3 .row_13_17,
715
- .icns_tab_3 .row_14_17,
716
- .icns_tab_3 .row_15_17,
717
- .icns_tab_3 .row_16_17,
718
-
719
- .icns_tab_3 .row_1_18,
720
- .icns_tab_3 .row_2_18,
721
- .icns_tab_3 .row_3_18,
722
- .icns_tab_3 .row_4_18,
723
- .icns_tab_3 .row_5_18,
724
- .icns_tab_3 .row_6_18,
725
- .icns_tab_3 .row_7_18,
726
- .icns_tab_3 .row_8_18,
727
- .icns_tab_3 .row_9_18,
728
- .icns_tab_3 .row_10_18,
729
- .icns_tab_3 .row_11_18,
730
- .icns_tab_3 .row_12_18,
731
- .icns_tab_3 .row_13_18,
732
- .icns_tab_3 .row_14_18,
733
- .icns_tab_3 .row_15_18,
734
- .icns_tab_3 .row_16_18,
735
- .icns_tab_3 .row_17_18,
736
- .icns_tab_3 .row_15_14,
737
- .icns_tab_3 .row_16_14 {
738
- background: url(../images/tab_3_icns.png) no-repeat;
739
- width: 53px;
740
- height: 52px;
741
- float: left;
742
- margin: 0 4px 0 0;
743
- }
744
- .icns_tab_3 .row_1_1 {
745
- background-position: -1px 0;
746
- }
747
- .icns_tab_3 .row_1_2 {
748
- background-position: -60px 0;
749
- }
750
- .icns_tab_3 .row_1_3 {
751
- background-position: -118px 0;
752
- }
753
- .icns_tab_3 .row_1_4 {
754
- background-position: -176px 0;
755
- }
756
- .icns_tab_3 .row_1_5 {
757
- background-position: -235px 0;
758
- }
759
- .icns_tab_3 .row_1_6 {
760
- background-position: -293px 0;
761
- }
762
- .icns_tab_3 .row_1_7 {
763
- background-position: -350px 0;
764
- }
765
- .icns_tab_3 .row_1_8 {
766
- background-position: -409px 0;
767
- }
768
- .icns_tab_3 .row_1_9 {
769
- background-position: -467px 0;
770
- }
771
- .icns_tab_3 .row_1_10 {
772
- background-position: -526px 0;
773
- }
774
- .icns_tab_3 .row_1_11 {
775
- background-position: -711px 0;
776
- }
777
-
778
- .icns_tab_3 .row_1_14 {
779
- background-position: -773px 0;
780
- }
781
- .icns_tab_3 .row_1_15 {
782
- background-position: -838px 0;
783
- }
784
- .icns_tab_3 .row_1_16 {
785
- background-position: -909px 0;
786
- }
787
- .icns_tab_3 .row_1_17 {
788
- background-position: -977px 0;
789
- }
790
- .icns_tab_3 .row_1_18 {
791
- background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
792
- background-size: contain;
793
- }.icns_tab_3 .row_2_1 {
794
- background-position: 0 -74px;
795
- }
796
- .icns_tab_3 .row_2_2 {
797
- background-position: -60px -74px;
798
- }
799
- .icns_tab_3 .row_2_3 {
800
- background-position: -118px -74px;
801
- }
802
- .icns_tab_3 .row_2_4 {
803
- background-position: -176px -74px;
804
- }
805
- .icns_tab_3 .row_2_5 {
806
- background-position: -235px -74px;
807
- }
808
- .icns_tab_3 .row_2_6 {
809
- background-position: -293px -74px;
810
- }
811
- .icns_tab_3 .row_2_7 {
812
- background-position: -350px -74px;
813
- }
814
- .icns_tab_3 .row_2_8 {
815
- background-position: -409px -74px;
816
- }
817
- .icns_tab_3 .row_2_9 {
818
- background-position: -467px -74px;
819
- }
820
- .icns_tab_3 .row_2_10 {
821
- background-position: -526px -74px;
822
- }
823
- .icns_tab_3 .row_2_11 {
824
- background-position: -711px -74px;
825
- }
826
- .icns_tab_3 .row_2_14 {
827
- background-position: -773px -74px;
828
- }
829
- .icns_tab_3 .row_2_15 {
830
- background-position: -838px -74px;
831
- }
832
- .icns_tab_3 .row_2_16 {
833
- background-position: -909px -74px;
834
- }
835
- .icns_tab_3 .row_2_17 {
836
- background-position: -977px -74px;
837
- }
838
- .icns_tab_3 .row_2_18 {
839
- background: url(../images/icons_theme/flat/flat_wechat.png) no-repeat;
840
- background-size: contain;
841
- }
842
- .icns_tab_3 .row_3_1 {
843
- background-position: 0 -146px;
844
- }
845
- .icns_tab_3 .row_3_2 {
846
- background-position: -60px -146px;
847
- }
848
- .icns_tab_3 .row_3_3 {
849
- background-position: -118px -146px;
850
- }
851
- .icns_tab_3 .row_3_4 {
852
- background-position: -176px -146px;
853
- }
854
- .icns_tab_3 .row_3_5 {
855
- background-position: -235px -146px;
856
- }
857
- .icns_tab_3 .row_3_6 {
858
- background-position: -293px -146px;
859
- }
860
- .icns_tab_3 .row_3_7 {
861
- background-position: -350px -146px;
862
- }
863
- .icns_tab_3 .row_3_8 {
864
- background-position: -409px -146px;
865
- }
866
- .icns_tab_3 .row_3_9 {
867
- background-position: -467px -146px;
868
- }
869
- .icns_tab_3 .row_3_10 {
870
- background-position: -526px -146px;
871
- }
872
- .icns_tab_3 .row_3_11 {
873
- background-position: -711px -147px;
874
- }
875
- .icns_tab_3 .row_3_14 {
876
- background-position: -773px -147px;
877
- }
878
- .icns_tab_3 .row_3_15 {
879
- background-position: -838px -147px;
880
- }
881
- .icns_tab_3 .row_3_16 {
882
- background-position: -909px -147px;
883
- }
884
- .icns_tab_3 .row_3_17 {
885
- background-position: -977px -147px;
886
- }
887
- .icns_tab_3 .row_3_18 {
888
- background: url(../images/icons_theme/thin/thin_wechat.png) no-repeat;
889
- background-size: contain;
890
- }
891
- .icns_tab_3 .row_4_1 {
892
- background-position: 0 -222px;
893
- }
894
- .icns_tab_3 .row_4_2 {
895
- background-position: -60px -222px;
896
- }
897
- .icns_tab_3 .row_4_3 {
898
- background-position: -118px -222px;
899
- }
900
- .icns_tab_3 .row_4_4 {
901
- background-position: -176px -222px;
902
- }
903
- .icns_tab_3 .row_4_5 {
904
- background-position: -235px -222px;
905
- }
906
- .icns_tab_3 .row_4_6 {
907
- background-position: -293px -222px;
908
- }
909
- .icns_tab_3 .row_4_7 {
910
- background-position: -350px -222px;
911
- }
912
- .icns_tab_3 .row_4_8 {
913
- background-position: -409px -222px;
914
- }
915
- .icns_tab_3 .row_4_9 {
916
- background-position: -467px -222px;
917
- }
918
- .icns_tab_3 .row_4_10 {
919
- background-position: -526px -222px;
920
- }
921
- .icns_tab_3 .row_4_11 {
922
- background-position: -711px -222px;
923
- }
924
- .icns_tab_3 .row_4_14 {
925
- background-position: -773px -222px;
926
- }
927
- .icns_tab_3 .row_4_15 {
928
- background-position: -838px -222px;
929
- }
930
- .icns_tab_3 .row_4_16 {
931
- background-position: -909px -222px;
932
- }
933
- .icns_tab_3 .row_4_17 {
934
- background-position: -977px -222px;
935
- }
936
- .icns_tab_3 .row_4_18 {
937
- background: url(../images/icons_theme/cute/cute_wechat.png) no-repeat;
938
- background-size: contain;
939
- }
940
- .icns_tab_3 .row_5_1 {
941
- background-position: 0 -296px;
942
- }
943
- .icns_tab_3 .row_5_2 {
944
- background-position: -60px -296px;
945
- }
946
- .icns_tab_3 .row_5_3 {
947
- background-position: -118px -296px;
948
- }
949
- .icns_tab_3 .row_5_4 {
950
- background-position: -176px -296px;
951
- }
952
- .icns_tab_3 .row_5_5 {
953
- background-position: -235px -296px;
954
- }
955
- .icns_tab_3 .row_5_6 {
956
- background-position: -293px -296px;
957
- }
958
- .icns_tab_3 .row_5_7 {
959
- background-position: -350px -296px;
960
- }
961
- .icns_tab_3 .row_5_8 {
962
- background-position: -409px -296px;
963
- }
964
- .icns_tab_3 .row_5_9 {
965
- background-position: -467px -296px;
966
- }
967
- .icns_tab_3 .row_5_10 {
968
- background-position: -526px -296px;
969
- }
970
- .icns_tab_3 .row_5_11 {
971
- background-position: -711px -296px;
972
- }
973
- .icns_tab_3 .row_5_14 {
974
- background-position: -773px -296px;
975
- }
976
- .icns_tab_3 .row_5_15 {
977
- background-position: -838px -296px;
978
- }
979
- .icns_tab_3 .row_5_16 {
980
- background-position: -909px -296px;
981
- }
982
- .icns_tab_3 .row_5_17 {
983
- background-position: -977px -296px;
984
- }
985
- .icns_tab_3 .row_5_18 {
986
- background: url(../images/icons_theme/cubes/cubes_wechat.png);
987
- background-size: contain;
988
- }
989
- .icns_tab_3 .row_6_1 {
990
- background-position: 0 -370px;
991
- }
992
- .icns_tab_3 .row_6_2 {
993
- background-position: -60px -370px;
994
- }
995
- .icns_tab_3 .row_6_3 {
996
- background-position: -118px -370px;
997
- }
998
- .icns_tab_3 .row_6_4 {
999
- background-position: -176px -370px;
1000
- }
1001
- .icns_tab_3 .row_6_5 {
1002
- background-position: -235px -370px;
1003
- }
1004
- .icns_tab_3 .row_6_6 {
1005
- background-position: -293px -370px;
1006
- }
1007
- .icns_tab_3 .row_6_7 {
1008
- background-position: -350px -370px;
1009
- }
1010
- .icns_tab_3 .row_6_8 {
1011
- background-position: -409px -370px;
1012
- }
1013
- .icns_tab_3 .row_6_9 {
1014
- background-position: -468px -370px;
1015
- }
1016
- .icns_tab_3 .row_6_10 {
1017
- background-position: -526px -370px;
1018
- }
1019
- .icns_tab_3 .row_6_11 {
1020
- background-position: -711px -370px;
1021
- }
1022
- .icns_tab_3 .row_6_14 {
1023
- background-position: -773px -370px;
1024
- }
1025
- .icns_tab_3 .row_6_15 {
1026
- background-position: -838px -370px;
1027
- }
1028
- .icns_tab_3 .row_6_16 {
1029
- background-position: -909px -370px;
1030
- }
1031
- .icns_tab_3 .row_6_17 {
1032
- background-position: -977px -370px;
1033
- }
1034
- .icns_tab_3 .row_6_18 {
1035
- background: url(../images/icons_theme/chrome_blue/chrome_blue_wechat.png);
1036
- background-size: contain;
1037
- }
1038
- .icns_tab_3 .row_7_1 {
1039
- background-position: 0 -444px;
1040
- }
1041
- .icns_tab_3 .row_7_2 {
1042
- background-position: -60px -444px;
1043
- }
1044
- .icns_tab_3 .row_7_3 {
1045
- background-position: -118px -444px;
1046
- }
1047
- .icns_tab_3 .row_7_4 {
1048
- background-position: -176px -444px;
1049
- }
1050
- .icns_tab_3 .row_7_5 {
1051
- background-position: -235px -444px;
1052
- }
1053
- .icns_tab_3 .row_7_6 {
1054
- background-position: -293px -444px;
1055
- }
1056
- .icns_tab_3 .row_7_7 {
1057
- background-position: -350px -444px;
1058
- }
1059
- .icns_tab_3 .row_7_8 {
1060
- background-position: -409px -444px;
1061
- }
1062
- .icns_tab_3 .row_7_9 {
1063
- background-position: -466px -444px;
1064
- }
1065
- .icns_tab_3 .row_7_10 {
1066
- background-position: -526px -444px;
1067
- }
1068
- .icns_tab_3 .row_7_11 {
1069
- background-position: -711px -444px;
1070
- }
1071
- .icns_tab_3 .row_7_14 {
1072
- background-position: -773px -444px;
1073
- }
1074
- .icns_tab_3 .row_7_15 {
1075
- background-position: -838px -444px;
1076
- }
1077
- .icns_tab_3 .row_7_16 {
1078
- background-position: -909px -444px;
1079
- }
1080
- .icns_tab_3 .row_7_17 {
1081
- background-position: -977px -444px;
1082
- }
1083
- .icns_tab_3 .row_7_18 {
1084
- background: url(../images/icons_theme/chrome_grey/chrome_grey_wechat.png);
1085
- background-size: contain;
1086
- }
1087
- .icns_tab_3 .row_8_1 {
1088
- background-position: 0 -518px;
1089
- }
1090
- .icns_tab_3 .row_8_2 {
1091
- background-position: -60px -518px;
1092
- }
1093
- .icns_tab_3 .row_8_3 {
1094
- background-position: -118px -518px;
1095
- }
1096
- .icns_tab_3 .row_8_4 {
1097
- background-position: -176px -518px;
1098
- }
1099
- .icns_tab_3 .row_8_5 {
1100
- background-position: -235px -518px;
1101
- }
1102
- .icns_tab_3 .row_8_6 {
1103
- background-position: -293px -518px;
1104
- }
1105
- .icns_tab_3 .row_8_7 {
1106
- background-position: -350px -518px;
1107
- }
1108
- .icns_tab_3 .row_8_8 {
1109
- background-position: -409px -518px;
1110
- }
1111
- .icns_tab_3 .row_8_9 {
1112
- background-position: -467px -518px;
1113
- }
1114
- .icns_tab_3 .row_8_10 {
1115
- background-position: -526px -518px;
1116
- }
1117
- .icns_tab_3 .row_8_11 {
1118
- background-position: -711px -518px;
1119
- }
1120
- .icns_tab_3 .row_8_14 {
1121
- background-position: -773px -518px;
1122
- }
1123
- .icns_tab_3 .row_8_15 {
1124
- background-position: -838px -518px;
1125
- }
1126
- .icns_tab_3 .row_8_16 {
1127
- background-position: -909px -518px;
1128
- }
1129
- .icns_tab_3 .row_8_17 {
1130
- background-position: -977px -518px;
1131
- }
1132
- .icns_tab_3 .row_8_18 {
1133
- background: url(../images/icons_theme/splash/splash_wechat.png);
1134
- background-size: contain;
1135
- }
1136
- .icns_tab_3 .row_9_1 {
1137
- background-position: 0 -592px;
1138
- }
1139
- .icns_tab_3 .row_9_2 {
1140
- background-position: -60px -592px;
1141
- }
1142
- .icns_tab_3 .row_9_3 {
1143
- background-position: -118px -592px;
1144
- }
1145
- .icns_tab_3 .row_9_4 {
1146
- background-position: -176px -592px;
1147
- }
1148
- .icns_tab_3 .row_9_5 {
1149
- background-position: -235px -592px;
1150
- }
1151
- .icns_tab_3 .row_9_6 {
1152
- background-position: -293px -592px;
1153
- }
1154
- .icns_tab_3 .row_9_7 {
1155
- background-position: -350px -592px;
1156
- }
1157
- .icns_tab_3 .row_9_8 {
1158
- background-position: -409px -592px;
1159
- }
1160
- .icns_tab_3 .row_9_9 {
1161
- background-position: -467px -592px;
1162
- }
1163
- .icns_tab_3 .row_9_10 {
1164
- background-position: -526px -592px;
1165
- }
1166
- .icns_tab_3 .row_9_11 {
1167
- background-position: -711px -592px;
1168
- }
1169
- .icns_tab_3 .row_9_14 {
1170
- background-position: -773px -592px;
1171
- }
1172
- .icns_tab_3 .row_9_15 {
1173
- background-position: -838px -592px;
1174
- }
1175
- .icns_tab_3 .row_9_16 {
1176
- background-position: -909px -592px;
1177
- }
1178
- .icns_tab_3 .row_9_17 {
1179
- background-position: -977px -592px;
1180
- }
1181
- .icns_tab_3 .row_9_18 {
1182
- background: url(../images/icons_theme/orange/orange_wechat.png);
1183
- background-size: contain;
1184
- }
1185
- .icns_tab_3 .row_10_1 {
1186
- background-position: 0 -666px;
1187
- }
1188
- .icns_tab_3 .row_10_2 {
1189
- background-position: -60px -666px;
1190
- }
1191
- .icns_tab_3 .row_10_3 {
1192
- background-position: -118px -666px;
1193
- }
1194
- .icns_tab_3 .row_10_4 {
1195
- background-position: -176px -666px;
1196
- }
1197
- .icns_tab_3 .row_10_5 {
1198
- background-position: -235px -666px;
1199
- }
1200
- .icns_tab_3 .row_10_6 {
1201
- background-position: -293px -666px;
1202
- }
1203
- .icns_tab_3 .row_10_7 {
1204
- background-position: -350px -666px;
1205
- }
1206
- .icns_tab_3 .row_10_8 {
1207
- background-position: -409px -666px;
1208
- }
1209
- .icns_tab_3 .row_10_9 {
1210
- background-position: -467px -666px;
1211
- }
1212
- .icns_tab_3 .row_10_10 {
1213
- background-position: -526px -666px;
1214
- }
1215
- .icns_tab_3 .row_10_11 {
1216
- background-position: -711px -666px;
1217
- }
1218
- .icns_tab_3 .row_10_14 {
1219
- background-position: -773px -666px;
1220
- }
1221
- .icns_tab_3 .row_10_15 {
1222
- background-position: -838px -666px;
1223
- }
1224
- .icns_tab_3 .row_10_16 {
1225
- background-position: -909px -666px;
1226
- }
1227
- .icns_tab_3 .row_10_17 {
1228
- background-position: -977px -666px;
1229
- }
1230
- .icns_tab_3 .row_10_18 {
1231
- background: url(../images/icons_theme/crystal/crystal_wechat.png);
1232
- background-size: contain;
1233
- }
1234
- .icns_tab_3 .row_11_1 {
1235
- background-position: 0 -740px;
1236
- }
1237
- .icns_tab_3 .row_11_2 {
1238
- background-position: -60px -740px;
1239
- }
1240
- .icns_tab_3 .row_11_3 {
1241
- background-position: -118px -740px;
1242
- }
1243
- .icns_tab_3 .row_11_4 {
1244
- background-position: -176px -740px;
1245
- }
1246
- .icns_tab_3 .row_11_5 {
1247
- background-position: -235px -740px;
1248
- }
1249
- .icns_tab_3 .row_11_6 {
1250
- background-position: -293px -740px;
1251
- }
1252
- .icns_tab_3 .row_11_7 {
1253
- background-position: -350px -740px;
1254
- }
1255
- .icns_tab_3 .row_11_8 {
1256
- background-position: -409px -740px;
1257
- }
1258
- .icns_tab_3 .row_11_9 {
1259
- background-position: -467px -740px;
1260
- }
1261
- .icns_tab_3 .row_11_10 {
1262
- background-position: -526px -740px;
1263
- }
1264
- .icns_tab_3 .row_11_11 {
1265
- background-position: -711px -740px;
1266
- }
1267
- .icns_tab_3 .row_11_14 {
1268
- background-position: -773px -740px;
1269
- }
1270
- .icns_tab_3 .row_11_15 {
1271
- background-position: -838px -740px;
1272
- }
1273
- .icns_tab_3 .row_11_16 {
1274
- background-position: -909px -740px;
1275
- }
1276
- .icns_tab_3 .row_11_17 {
1277
- background-position: -977px -740px;
1278
- }
1279
- .icns_tab_3 .row_11_18 {
1280
- background: url(../images/icons_theme/glossy/glossy_wechat.png);
1281
- background-size: contain;
1282
- }
1283
- .icns_tab_3 .row_12_1 {
1284
- background-position: 0 -814px;
1285
- }
1286
- .icns_tab_3 .row_12_2 {
1287
- background-position: -60px -814px;
1288
- }
1289
- .icns_tab_3 .row_12_3 {
1290
- background-position: -118px -814px;
1291
- }
1292
- .icns_tab_3 .row_12_4 {
1293
- background-position: -176px -814px;
1294
- }
1295
- .icns_tab_3 .row_12_5 {
1296
- background-position: -235px -814px;
1297
- }
1298
- .icns_tab_3 .row_12_6 {
1299
- background-position: -293px -814px;
1300
- }
1301
- .icns_tab_3 .row_12_7 {
1302
- background-position: -350px -814px;
1303
- }
1304
- .icns_tab_3 .row_12_8 {
1305
- background-position: -409px -814px;
1306
- }
1307
- .icns_tab_3 .row_12_9 {
1308
- background-position: -467px -814px;
1309
- }
1310
- .icns_tab_3 .row_12_10 {
1311
- background-position: -526px -814px;
1312
- }
1313
- .icns_tab_3 .row_12_11 {
1314
- background-position: -711px -814px;
1315
- }
1316
- .icns_tab_3 .row_12_14 {
1317
- background-position: -773px -814px;
1318
- }
1319
- .icns_tab_3 .row_12_15 {
1320
- background-position: -838px -814px;
1321
- }
1322
- .icns_tab_3 .row_12_16 {
1323
- background-position: -909px -814px;
1324
- }
1325
- .icns_tab_3 .row_12_17 {
1326
- background-position: -977px -814px;
1327
- }
1328
- .icns_tab_3 .row_12_18 {
1329
- background: url(../images/icons_theme/black/black_wechat.png);
1330
- background-size: contain;
1331
- }
1332
- .icns_tab_3 .row_13_1 {
1333
- background-position: 0 -888px;
1334
- }
1335
- .icns_tab_3 .row_13_2 {
1336
- background-position: -60px -888px;
1337
- }
1338
- .icns_tab_3 .row_13_3 {
1339
- background-position: -118px -888px;
1340
- }
1341
- .icns_tab_3 .row_13_4 {
1342
- background-position: -176px -888px;
1343
- }
1344
- .icns_tab_3 .row_13_5 {
1345
- background-position: -235px -888px;
1346
- }
1347
- .icns_tab_3 .row_13_6 {
1348
- background-position: -293px -888px;
1349
- }
1350
- .icns_tab_3 .row_13_7 {
1351
- background-position: -350px -888px;
1352
- }
1353
- .icns_tab_3 .row_13_8 {
1354
- background-position: -409px -888px;
1355
- }
1356
- .icns_tab_3 .row_13_9 {
1357
- background-position: -467px -888px;
1358
- }
1359
- .icns_tab_3 .row_13_10 {
1360
- background-position: -526px -888px;
1361
- }
1362
- .icns_tab_3 .row_13_11 {
1363
- background-position: -711px -888px;
1364
- }
1365
- .icns_tab_3 .row_13_14 {
1366
- background-position: -773px -888px;
1367
- }
1368
- .icns_tab_3 .row_13_15 {
1369
- background-position: -838px -888px;
1370
- }
1371
- .icns_tab_3 .row_13_16 {
1372
- background-position: -909px -888px;
1373
- }
1374
- .icns_tab_3 .row_13_17 {
1375
- background-position: -977px -888px;
1376
- }
1377
- .icns_tab_3 .row_13_18 {
1378
- background: url(../images/icons_theme/silver/silver_wechat.png);
1379
-
1380
- background-size: contain;
1381
- }
1382
- .icns_tab_3 .row_14_1 {
1383
- background-position: 0 -962px;
1384
- }
1385
- .icns_tab_3 .row_14_2 {
1386
- background-position: -60px -962px;
1387
- }
1388
- .icns_tab_3 .row_14_3 {
1389
- background-position: -118px -962px;
1390
- }
1391
- .icns_tab_3 .row_14_4 {
1392
- background-position: -176px -962px;
1393
- }
1394
- .icns_tab_3 .row_14_5 {
1395
- background-position: -235px -962px;
1396
- }
1397
- .icns_tab_3 .row_14_6 {
1398
- background-position: -293px -962px;
1399
- }
1400
- .icns_tab_3 .row_14_7 {
1401
- background-position: -350px -962px;
1402
- }
1403
- .icns_tab_3 .row_14_8 {
1404
- background-position: -409px -962px;
1405
- }
1406
- .icns_tab_3 .row_14_9 {
1407
- background-position: -467px -962px;
1408
- }
1409
- .icns_tab_3 .row_14_10 {
1410
- background-position: -526px -962px;
1411
- }
1412
- .icns_tab_3 .row_14_11 {
1413
- background-position: -711px -962px;
1414
- }
1415
- .icns_tab_3 .row_14_14 {
1416
- background-position: -773px -962px;
1417
- }
1418
- .icns_tab_3 .row_14_15 {
1419
- background-position: -838px -962px;
1420
- }
1421
- .icns_tab_3 .row_14_16 {
1422
- background-position: -909px -962px;
1423
- }
1424
- .icns_tab_3 .row_14_17 {
1425
- background-position: -977px -962px;
1426
- }
1427
- .icns_tab_3 .row_14_18 {
1428
- background: url(../images/icons_theme/shaded_dark/shaded_dark_wechat.png);
1429
-
1430
- background-size: contain;
1431
- }
1432
- .icns_tab_3 .row_15_1 {
1433
- background-position: 0 -1036px;
1434
- }
1435
- .icns_tab_3 .row_15_2 {
1436
- background-position: -60px -1036px;
1437
- }
1438
- .icns_tab_3 .row_15_3 {
1439
- background-position: -118px -1036px;
1440
- }
1441
- .icns_tab_3 .row_15_4 {
1442
- background-position: -176px -1036px;
1443
- }
1444
- .icns_tab_3 .row_15_5 {
1445
- background-position: -235px -1036px;
1446
- }
1447
- .icns_tab_3 .row_15_6 {
1448
- background-position: -293px -1036px;
1449
- }
1450
- .icns_tab_3 .row_15_7 {
1451
- background-position: -350px -1036px;
1452
- }
1453
- .icns_tab_3 .row_15_8 {
1454
- background-position: -409px -1036px;
1455
- }
1456
- .icns_tab_3 .row_15_9 {
1457
- background-position: -467px -1036px;
1458
- }
1459
- .icns_tab_3 .row_15_10 {
1460
- background-position: -526px -1036px;
1461
- }
1462
- .icns_tab_3 .row_15_11 {
1463
- background-position: -711px -1036px;
1464
- }
1465
- .icns_tab_3 .row_15_14 {
1466
- background-position: -773px -1036px;
1467
- }
1468
- .icns_tab_3 .row_15_15 {
1469
- background-position: -838px -1036px;
1470
- }
1471
- .icns_tab_3 .row_15_16 {
1472
- background-position: -909px -1036px;
1473
- }
1474
- .icns_tab_3 .row_15_17 {
1475
- background-position: -977px -1036px;
1476
- }
1477
- .icns_tab_3 .row_15_18 {
1478
- background: url(../images/icons_theme/shaded_light/shaded_light_wechat.png);
1479
- background-size: contain;
1480
- }
1481
- .icns_tab_3 .row_16_1 {
1482
- background-position: 0 -1109px;
1483
- }
1484
- .icns_tab_3 .row_16_2 {
1485
- background-position: -60px -1109px;
1486
- }
1487
- .icns_tab_3 .row_16_3 {
1488
- background-position: -118px -1109px;
1489
- }
1490
- .icns_tab_3 .row_16_4 {
1491
- background-position: -176px -1109px;
1492
- }
1493
- .icns_tab_3 .row_16_5 {
1494
- background-position: -235px -1109px;
1495
- }
1496
- .icns_tab_3 .row_16_6 {
1497
- background-position: -293px -1109px;
1498
- }
1499
- .icns_tab_3 .row_16_7 {
1500
- background-position: -350px -1109px;
1501
- }
1502
- .icns_tab_3 .row_16_8 {
1503
- background-position: -409px -1109px;
1504
- }
1505
- .icns_tab_3 .row_16_9 {
1506
- background-position: -467px -1109px;
1507
- }
1508
- .icns_tab_3 .row_16_10 {
1509
- background-position: -526px -1109px;
1510
- }
1511
- .icns_tab_3 .row_16_11 {
1512
- background-position: -711px -1109px;
1513
- }
1514
- .icns_tab_3 .row_16_14 {
1515
- background-position: -773px -1109px;
1516
- }
1517
- .icns_tab_3 .row_16_15 {
1518
- background-position: -838px -1109px;
1519
- }
1520
- .icns_tab_3 .row_16_16 {
1521
- background-position: -909px -1109px;
1522
- }
1523
- .icns_tab_3 .row_16_17 {
1524
- background-position: -977px -1109px;
1525
- }
1526
- .icns_tab_3 .row_16_18 {
1527
- background: url(../images/icons_theme/transparent/transparent_wechat.png);
1528
- background-size: contain;
1529
- }
1530
-
1531
- /*tab 6 css*/
1532
- .tab6 .social_icon_like1 {
1533
- width: 100%;
1534
- float: left;
1535
- margin: 0;
1536
- padding: 35px 0 0;
1537
- text-align: center;
1538
- }
1539
- .tab6 .social_icon_like1 ul {
1540
- margin: 0;
1541
- padding: 0;
1542
- list-style: none;
1543
- text-align: center;
1544
- }
1545
- .tab6 .social_icon_like1 li {
1546
- margin: 0 10px 0 0;
1547
- padding: 0;
1548
- width: auto;
1549
- list-style: none;
1550
- display: inline-block;
1551
- }
1552
- .tab6 .social_icon_like1 li span {
1553
- margin: 0;
1554
- width: 44px;
1555
- display: block;
1556
- background: url(../images/count_bg1.png) no-repeat;
1557
- height: 22px;
1558
- overflow: hidden;
1559
- padding: 2px 2px 2px 10px;
1560
- font-family: helveticaregular;
1561
- font-size: 15px;
1562
- text-align: center;
1563
- line-height: 20px;
1564
- color: #5a6570;
1565
- float: left;
1566
- }
1567
- .tab6 .social_icon_like1 li img {
1568
- float: left;
1569
- margin-right: 5px;
1570
- display: block;
1571
- }
1572
- .tab6 .social_icon_like1 li a {
1573
- color: #5a6570;
1574
- text-decoration: none;
1575
- display: block;
1576
- }
1577
- .tab6 ul.usually {
1578
- margin: 7px 0 6px 60px;
1579
- padding: 0;
1580
- list-style: none;
1581
- }
1582
- .tab6 ul.usually li {
1583
- margin: 0;
1584
- padding: 0;
1585
- width: auto;
1586
- list-style: none;
1587
- text-align: left;
1588
- font-size: 17px;
1589
- color: #5a6570;
1590
- }
1591
- .tab6 ul.enough_waffling {
1592
- margin: 9px 0 0;
1593
- padding: 0;
1594
- list-style: none;
1595
- text-align: center;
1596
- }
1597
- .tab6 ul.enough_waffling li {
1598
- margin: 0 22px;
1599
- padding: 0;
1600
- list-style: none;
1601
- display: inline-block;
1602
- }
1603
- .tab6 ul.enough_waffling li span {
1604
- float: left;
1605
- }
1606
- .tab6 ul.enough_waffling li label {
1607
- margin: 0 0 0 20px;
1608
- float: left;
1609
- font-family: helveticaregular;
1610
- font-size: 18px;
1611
- font-weight: 400;
1612
- text-align: center;
1613
- line-height: 38px;
1614
- color: #5a6570;
1615
- }
1616
- .tab6 .row {
1617
- border-top: 1px solid #eaebee;
1618
- margin-top: 25px;
1619
- padding-top: 15px;
1620
- clear: both;
1621
- display: block;
1622
- width: 100%;
1623
- float: left;
1624
- font-family: "Helvetica CE 35 Thin";
1625
- line-height: 42px;
1626
- }
1627
- .tab6 .options {
1628
- margin-top: 25px;
1629
- clear: both;
1630
- width: 100%;
1631
- float: left;
1632
- }
1633
- .tab6 .options label {
1634
- width: 345px;
1635
- float: left;
1636
- font-size: 17px;
1637
- /*font-family: helveticaregular;*/
1638
- font-family: 'helveticaneue-light';
1639
- color: #5a6570;
1640
- line-height: 46px;
1641
- }
1642
- .tab6 .options label.first {
1643
- /*font-family: helveticaregular;*/
1644
-
1645
- font-family: 'helveticaneue-light';
1646
- font-size: 17px;
1647
- }
1648
- .tab6 .options input {
1649
- width: 308px;
1650
- float: left;
1651
- background: #e5e5e5;
1652
- box-shadow: 2px 2px 3px #dcdcdc inset;
1653
- border: 0;
1654
- padding: 10px;
1655
- }
1656
- .tab6 .options .field {
1657
-
1658
- float: left;
1659
- position: relative;
1660
- }
1661
- .tab6 .options .field .select {
1662
- width: 207px;
1663
- background: url(../images/select_bg1.jpg) no-repeat;
1664
- display: block;
1665
- padding-left: 17px;
1666
- font-family: helveticaregular;
1667
- }.tab6 .cstmdsplyulwpr .radio_section.tb_4_ck { float: left;
1668
-
1669
- width: auto;
1670
- }
1671
- .tab6 .social_icon_like1 li span.checkbox {
1672
- background: rgba(0, 0, 0, 0) url(../images/check_bg.jpg) no-repeat scroll 0 0;
1673
- display: inherit;
1674
- height: 31px;
1675
- width: 31px;
1676
- }
1677
- .tab6 .cstmdsplyulwpr a {
1678
- margin-top: 3px;
1679
- float: left;
1680
- }
1681
- /*tab 7 css*/
1682
- .tab7 h3 {
1683
- margin: 14px 0 6px;
1684
- padding: 0;
1685
- /* color: #a7a9ac;*/
1686
- color: #414951;
1687
- /* font-family: helveticaregular;*/
1688
- font-family: 'helveticaneue-light';
1689
- /* font-size: 20px;*/
1690
- font-size: 18px;
1691
- text-align: left;
1692
- }
1693
-
1694
- .tab7 .close {
1695
- position: absolute;
1696
- right: 18px;
1697
- top: 18px;
1698
- }
1699
- .tab7 .text_options {
1700
- width: 500px;
1701
- float: left;
1702
- }
1703
- .tab7 .text_options.layout {
1704
- margin-left: -25px;
1705
- }
1706
- .tab7 .row_tab {
1707
- margin-top: 10px;
1708
- width: 100%;
1709
- float: left;
1710
- }
1711
- .tab7 .text_options label {
1712
- width: 121px;
1713
- float: left;
1714
- line-height: 46px;
1715
- font-size: 18px;
1716
- }
1717
- .tab7 .text_options.layout label {
1718
- line-height: 20px;
1719
- font-size: 18px;
1720
- }
1721
- .tab7 .text_options.layout label.border {
1722
- line-height: 46px;
1723
- }
1724
- .tab7 .text_options input {
1725
- width: 274px;
1726
- float: left;
1727
- background: #e5e5e5;
1728
- box-shadow: 2px 2px 3px #dcdcdc inset;
1729
- border: 0;
1730
- padding: 13px 10px;
1731
- font-size: 17px;
1732
- color: #5a6570;
1733
- }
1734
- .tab7 .text_options input.small {
1735
- width: 50px;
1736
- }
1737
- .tab7 .text_options .field {
1738
- width: 223px;
1739
- float: left;
1740
- position: relative;
1741
- }
1742
- .tab7 .text_options .field .select {
1743
- width: 183px;
1744
- padding-right: 21px;
1745
- height: 47px;
1746
- background: url(../images/select_bg1.jpg) no-repeat;
1747
- display: block;
1748
- padding-left: 10px;
1749
- line-height: 46px;
1750
- font-size: 17px;
1751
- color: #414951;
1752
- }
1753
- .tab7 .text_options .field select.styled {
1754
- position: absolute;
1755
- left: 0;
1756
- top: 0;
1757
- width: 213px;
1758
- line-height: 46px;
1759
- height: 46px;
1760
- }
1761
- .tab7 .color_box {
1762
- width: 40px;
1763
- height: 34px;
1764
- border: 3px solid #fff;
1765
- box-shadow: 1px 2px 2px #ccc;
1766
- float: left;
1767
- position: relative;
1768
- margin-left: 13px;
1769
- }
1770
- .tab7 .color_box1 {
1771
- width: 100%;
1772
- height: 34px;
1773
- background: #5a6570;
1774
- box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
1775
- }
1776
- .tab7 .corner {
1777
- width: 10px;
1778
- height: 10px;
1779
- background: #fff;
1780
- position: absolute;
1781
- right: 0;
1782
- bottom: 0;
1783
- }
1784
- .tab7 ul.border_shadow {
1785
- margin: 0;
1786
- padding: 5px 0 0;
1787
- list-style: none;
1788
- float: left;
1789
- width: 257px;
1790
- }
1791
- .tab7 ul.border_shadow li {
1792
- margin: 0;
1793
- padding: 0 0 0 40px;
1794
- list-style: none;
1795
- float: left;
1796
- }
1797
- .tab7 ul.border_shadow li:first-child {
1798
- padding: 0;
1799
- }
1800
- .tab7 ul.border_shadow li span {
1801
- float: left;
1802
- }
1803
- .tab7 ul.border_shadow li label {
1804
- float: left;
1805
- width: auto;
1806
- font-family: helveticaregular;
1807
- font-size: 18px;
1808
- font-weight: 400;
1809
- text-align: center;
1810
- line-height: 40px !important;
1811
- color: #5a6570;
1812
- padding: 0 0 0 20px;
1813
- }
1814
- .tab7 .row {
1815
- border-top: 1px solid #eaebee;
1816
- margin-top: 25px;
1817
- padding-top: 15px;
1818
- clear: both;
1819
- display: block;
1820
- width: 100%;
1821
- float: left;
1822
- font-family: helveticaregular;
1823
- line-height: 42px;
1824
- }
1825
- .tab7 .pop_up_show {
1826
- width: 100%;
1827
- float: left;
1828
- margin-top: 20px;
1829
- }
1830
- .tab7 .pop_up_show span {
1831
- float: left;
1832
- }
1833
- .tab7 .pop_up_show label {
1834
- float: left;
1835
- width: auto;
1836
- font-size: 18px;
1837
- font-weight: 400;
1838
- text-align: center;
1839
- line-height: 38px !important;
1840
- color: #5a6570;
1841
- padding: 0 0 0 20px;
1842
- }
1843
- .tab7 .pop_up_show input.add {
1844
- width: 257px;
1845
- float: left;
1846
- background: #e5e5e5;
1847
- box-shadow: 2px 2px 3px #dcdcdc inset;
1848
- border: 0;
1849
- padding: 10px;
1850
- margin-left: 40px;
1851
- }
1852
- .tab7 .pop_up_show input.seconds {
1853
- width: 60px;
1854
- background: #e5e5e5;
1855
- box-shadow: 2px 2px 3px #dcdcdc inset;
1856
- border: 0;
1857
- padding: 10px;
1858
- margin: 0 7px;
1859
- }
1860
- .tab7 .pop_up_show a {
1861
- text-decoration: underline;
1862
- color: #a4a9ad;
1863
- font-size: 16px;
1864
- margin-left: 20px;
1865
- }
1866
- .tab7 .pop_up_show .field {
1867
- width: 135px;
1868
- float: left;
1869
- position: relative;
1870
- margin-left: 20px;
1871
- font-size: 17px;
1872
- font-family: helveticaregular;
1873
- }
1874
- .tab7 .pop_up_show .field .select {
1875
- width: 127px;
1876
- height: 48px;
1877
- background: url(../images/select_bg.jpg) no-repeat;
1878
- display: block;
1879
- padding-left: 10px;
1880
- line-height: 46px;
1881
- font-size: 16px;
1882
- color: #5a6570;
1883
- }
1884
- .tab7 .pop_up_show .field select.styled {
1885
- position: absolute;
1886
- left: 0;
1887
- top: 0;
1888
- width: 135px;
1889
- line-height: 46px;
1890
- height: 46px;
1891
- }
1892
- /*tab 8 css*/
1893
- .tab8 .sfsi_tab8_container {
1894
- width: 100%;
1895
- float: left;
1896
- }
1897
- .tab8 .sfsi_tab8_subcontainer {
1898
- float: left;
1899
- padding: 20px 0;
1900
- width: 100%;
1901
- }
1902
- .tab8 h3.sfsi_section_title {
1903
- font-weight: bold;
1904
- }
1905
- .tab8 .like_pop_box {
1906
- width: 100%;
1907
- margin: 35px auto auto;
1908
- position: relative;
1909
- text-align: center;
1910
- }
1911
- .tab8 .like_pop_box h2 {
1912
- font-family: helveticabold;
1913
- text-align: center;
1914
- color: #414951;
1915
- font-size: 26px;
1916
- }
1917
- .tab8 .sfsi_subscribe_Popinner {
1918
- display: inline-block;
1919
- padding: 18px 20px;
1920
- -webkit-box-shadow: 0 0 5px #ccc;
1921
- border: 1px solid #ededed;
1922
- background: #FFF;
1923
- position: relative;
1924
- }
1925
- .tab8 .sfsi_subscribe_Popinner .form-overlay {
1926
- height: 100%;
1927
- left: 0;
1928
- position: absolute;
1929
- top: 0;
1930
- width: 100%;
1931
- }
1932
- .tab8 .like_pop_box .sfsi_subscribe_Popinner {
1933
- box-shadow: 0 0 5px #ccc;
1934
- }
1935
- .tab8 .like_pop_box .sfsi_subscribe_Popinner h5 {
1936
- margin: 0 0 10px;
1937
- padding: 0;
1938
- color: #414951;
1939
- font-size: 22px;
1940
- text-align: center;
1941
- }
1942
- .tab8 .sfsi_subscribe_Popinner h5 {
1943
- margin: 0 0 10px;
1944
- padding: 0;
1945
- color: #414951;
1946
- font-size: 18px;
1947
- text-align: center;
1948
- }
1949
- .tab8 .sfsi_subscription_form_field {
1950
- float: left;
1951
- margin: 5px 0;
1952
- width: 100%;
1953
- }
1954
- .tab8 .sfsi_subscription_form_field input {
1955
- padding: 10px 0px;
1956
- text-align: center;
1957
- width: 100%;
1958
- }
1959
- .tab8 .sfsi_tab8_subcontainer label.sfsi_label_text {
1960
- float: left;
1961
- margin: 10px 0;
1962
- width: 100%;
1963
- }
1964
- .tab8 ul.sfsi_form_info {
1965
- list-style: none !important;
1966
- margin-left: 32px;
1967
- }
1968
- .tab8 ul.sfsi_form_info li {
1969
- margin: 3px 0;
1970
- }
1971
- .tab8 .sfsi_subscription_html {
1972
- background-color: #e5e5e5;
1973
- float: left;
1974
- margin: 12px 0 0 30px;
1975
- width: 90%;
1976
- }
1977
- .tab8 .sfsi_seprater {
1978
- border-bottom: 1px solid #ccc;
1979
- }
1980
- .tab8 .sfsi_tab8_subcontainer h5.sfsi_section_subtitle {
1981
- float: left;
1982
- font-size: 18px;
1983
- margin: 5px 0;
1984
- width: 100%;
1985
- }
1986
- .tab8 .sfsi_left_container {
1987
- margin-top: 30px;
1988
- text-align: center;
1989
- width: 24%;
1990
- display: inline-block;
1991
- }
1992
- .tab8 .sfsi_right_container {
1993
- display: inline-block;
1994
- margin-top: 30px;
1995
- padding: 0 20px;
1996
- vertical-align: top;
1997
- width: 72%;
1998
- }
1999
- .tab8 .row_tab {
2000
- display: inline-block;
2001
- margin-bottom: 30px;
2002
- width: 100%;
2003
- }
2004
- .tab8 .row_tab label {
2005
- color: #5a6570;
2006
- font-size: 16px;
2007
- }
2008
- .tab8 .row_tab div.sfsi_field {
2009
- display: inline-block;
2010
- vertical-align: middle;
2011
- width: auto;
2012
- margin-right: 25px;
2013
- padding-top: 10px;
2014
- }
2015
- .tab8 .color_box {
2016
- width: 40px;
2017
- height: 34px;
2018
- border: 3px solid #fff;
2019
- box-shadow: 1px 2px 2px #ccc;
2020
- float: right;
2021
- position: relative;
2022
- margin-left: 13px;
2023
- }
2024
- .tab8 .color_box1 {
2025
- width: 100%;
2026
- height: 34px;
2027
- background: #5a6570;
2028
- box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
2029
- }
2030
- .tab8 .corner {
2031
- width: 10px;
2032
- height: 10px;
2033
- background: #fff;
2034
- position: absolute;
2035
- right: 0;
2036
- bottom: 0;
2037
- }
2038
- .tab8 .sfsi_right_container label {
2039
- color: #5a6570;
2040
- font-size: 18px;
2041
- }
2042
- .tab8 label.sfsi_heding {
2043
- display: inline-block;
2044
- /* font-weight: bold; */
2045
- padding-top: 10px;
2046
- width: 303px;
2047
- }
2048
- .tab8 .border_shadow {
2049
- display: inline-block;
2050
- vertical-align: top;
2051
- }
2052
- .tab8 .border_shadow li {
2053
- display: inline-block;
2054
- vertical-align: top;
2055
- padding-right: 20px;
2056
- }
2057
- .tab8 .border_shadow li span {
2058
- vertical-align: middle;
2059
- }
2060
- .tab8 .border_shadow .radio {
2061
- margin-right: 5px;
2062
- }
2063
- .tab8 .sfsi_field .rec-inp {
2064
- background: #e5e5e5 none repeat scroll 0 0;
2065
- height: 44px;
2066
- text-align: center;
2067
- width: 54px;
2068
- }
2069
- .tab8 .pix {
2070
- color: #5a6570;
2071
- font-size: 18px;
2072
- vertical-align: middle;
2073
- }
2074
- .tab8 .sfsi_heding.autowidth {
2075
- width: auto;
2076
- margin-right: 15px;
2077
- }
2078
- .tab8 .sfsi_heding.fixwidth {
2079
- width: 80px;
2080
- }
2081
- .tab8 .small {
2082
- background-color: #e5e5e5;
2083
- height: 44px;
2084
- width: 200px;
2085
- }
2086
- .tab8 .small.new-inp {
2087
- background-color: #e5e5e5;
2088
- height: 44px;
2089
- width: 277px;
2090
- }
2091
- .tab8 .small.color-code {
2092
- width: 138px !important;
2093
- }
2094
- .tab8 .select-same {
2095
- border: 1px solid #d6d6d6;
2096
- height: 47px !important;
2097
- width: 171px;
2098
- appearance: none;
2099
- -moz-appearance: none;
2100
- -webkit-appearance: none;
2101
- background-image: url(images/select-arrow.png);
2102
- background-repeat: no-repeat;
2103
- background-position: right 15px center;
2104
- }
2105
- .sfsi_mainContainer .tab8 .sfsi_same_width {
2106
- display: inline-block;
2107
- width: 100px !important;
2108
- }
2109
- .sfsi_mainContainer .tab7 .wp-picker-container input {
2110
- background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
2111
- border: 1px solid #ccc !important;
2112
- box-shadow: none !important;
2113
- float: left !important;
2114
- height: auto !important;
2115
- padding: 0 !important;
2116
- width: auto !important;
2117
- }
2118
- .sfsi_mainContainer .tab7 .wp-picker-container input[type="text"] {
2119
- padding: 3px !important;
2120
- }
2121
- .sfsi_mainContainer .tab7 .wp-picker-container input[type="button"] {
2122
- padding: 0 5px !important;
2123
- }
2124
- .sfsi_mainContainer .tab7 .wp-picker-open .wp-picker-input-wrap,
2125
- .sfsi_mainContainer .tab8 .wp-picker-open .wp-picker-input-wrap {
2126
- vertical-align: middle !important;
2127
- }
2128
- .sfsi_mainContainer .tab7 .wp-color-result,
2129
- .sfsi_mainContainer .tab8 .wp-color-result {
2130
- margin: 0 6px 0 0 !important;
2131
- }
2132
- .sfsi_mainContainer .tab7 .wp-picker-holder,
2133
- .sfsi_mainContainer .tab8 .wp-picker-holder {
2134
- position: absolute !important;
2135
- z-index: 999;
2136
- }
2137
- .sfsi_mainContainer .sfsi_subscribe_Popinner .sfsi_highlight {
2138
- border: 3px solid red !important;
2139
- }
2140
- .sfsi_mainContainer .sfsi_subscription_html xmp {
2141
- display: block;
2142
- padding: 0 10px;
2143
- white-space: pre-line;
2144
- word-wrap: break-word;
2145
- }
2146
- ul.sfsi_floaticon_margin_sec {
2147
- float: left;
2148
- width: 600px;
2149
- }
2150
- ul.sfsi_floaticon_margin_sec li {
2151
- float: left;
2152
- width: 300px;
2153
- margin-bottom: 20px;
2154
- }
2155
- ul.sfsi_floaticon_margin_sec label {
2156
- float: left;
2157
- font-size: 17px;
2158
- padding-right: 20px;
2159
- width: 65px;
2160
- }
2161
- ul.sfsi_floaticon_margin_sec li input {
2162
- background-color: #E5E5E5;
2163
- border: medium none;
2164
- box-shadow: none;
2165
- padding: 14px 8px;
2166
- width: 80px;
2167
- float: left;
2168
- }
2169
- ul.sfsi_floaticon_margin_sec li ins {
2170
- float: left;
2171
- font-size: 17px;
2172
- font-weight: 400;
2173
- margin-left: 15px;
2174
- text-decoration: none;
2175
- }
2176
- .custom-img img,
2177
- .custom_section img,
2178
- .custom_iconOrder img,
2179
- .sample_icons img {
2180
- width: 51px;
2181
- }
2182
- .cstomskins_upload span.sfsi-bgimage {
2183
- background-size: 51px 51px !important;
2184
- }
2185
-
2186
- .sfsi_feedClaimingOverlay h1 {
2187
- font-size: 22px !important;
2188
- font-weight: bolder !important;
2189
- margin-top: 7px !important;
2190
- }
2191
- .sfsi_feedClaimingOverlay input[type="email"] {
2192
- font-size: 16px;
2193
- margin: 26px 0 0;
2194
- padding: 10px 0;
2195
- text-align: center;
2196
- width: 100%;
2197
- color: #bebebe !important;
2198
- box-shadow: none;
2199
- }
2200
- .sfsi_feedClaimingOverlay input[type="email"]::-webkit-input-placeholder {
2201
- color: #bebebe !important;
2202
- }
2203
- .sfsi_feedClaimingOverlay input[type="email"]:-moz-placeholder {
2204
- /* Firefox 18- */
2205
- color: #bebebe !important;
2206
- }
2207
- .sfsi_feedClaimingOverlay input[type="email"]::-moz-placeholder {
2208
- /* Firefox 19+ */
2209
- color: #bebebe !important;
2210
- }
2211
- .sfsi_feedClaimingOverlay input[type="email"]:-ms-input-placeholder {
2212
- color: #bebebe !important;
2213
- }
2214
- .sfsi_feedClaimingOverlay .save_button {
2215
- padding: 0 !important;
2216
- width: 100%;
2217
- }
2218
- .sfsi_feedClaimingOverlay .save_button a#getMeFullAccess {
2219
- border-radius: 4px;
2220
- font-size: 18px;
2221
- font-weight: bolder;
2222
- }
2223
- .sfsi_feedClaimingOverlay .sfsicloseBtn {
2224
- right: 8px !important;
2225
- top: 8px !important;
2226
- }
2227
- .sfsi_feedClaimingOverlay p {
2228
- text-align: center !important;
2229
- font-size: 12px !important;
2230
- line-height: 23px !important;
2231
- padding: 18px 0 0 !important;
2232
- color: #bebebe !important;
2233
- }
2234
- .sfsi_feedClaimingOverlay p a {
2235
- display: inline-block;
2236
- font-size: 12px;
2237
- margin: 0;
2238
- padding: 0;
2239
- width: auto;
2240
- color: #274da3 !important;
2241
- }
2242
- .sfsi_feedClaimingOverlay .pop_up_box {
2243
- padding: 25px 30px !important;
2244
- width: 435px !important;
2245
- min-height: 220px;
2246
- }
2247
-
2248
- @media (max-width:1160px) {
2249
- .sfsi_subscription_html xmp {
2250
- display: block;
2251
- padding: 0 10px;
2252
- white-space: pre-line;
2253
- word-wrap: break-word;
2254
- }
2255
- }
2256
- @media (max-width:1350px) {
2257
- .tab8 .sfsi_left_container {
2258
- width: 100% !important;
2259
- }
2260
-
2261
- .tab8 .sfsi_right_container {
2262
- width: 100%;
2263
- }
2264
-
2265
- .tab8 .border_shadow {
2266
- margin-top: 10px;
2267
- }
2268
-
2269
- .tab8 .row_tab div.sfsi_field {
2270
- margin-bottom: 10px;
2271
- }
2272
-
2273
- }
2274
- @media (max-width:770px) {
2275
- #sfsi_form_heading_fontstyle {
2276
- margin-left: 19px !important;
2277
- margin-top: 10px !important;
2278
- }
2279
- }
2280
-
2281
- /* premium plugin features */
2282
- .tab5 .icons_prem_disc {
2283
- float: left;
2284
- padding-top: 20px;
2285
- }
2286
- .sfsi_prem_fbpgiddesc {
2287
- font-size: 14px;
2288
- padding: 4px 0 0 60px;
2289
- width: 42%;
2290
- float: right;
2291
- line-height: 22px;
2292
- color: #080808;
2293
- }
2294
- .instagram_userLi p.sfsi_shared_premium {
2295
- float: right;
2296
- width: 41%;
2297
- line-height: 20px;
2298
- color: #1f1d1d;
2299
- font-size: 13px;
2300
- }
2301
- .sfsi_facebook_pagedeasc {
2302
- font-size: 14px;
2303
- padding: 15px 0 0 60px;
2304
- width: 42%;
2305
- float: right;
2306
- line-height: 22px;
2307
- color: #080808;
2308
- }
2309
-
2310
- .sf_si_default_design ul li {
2311
- width: auto !important;
2312
- display: inline-block;
2313
- float: none !important;
2314
- }.sf_si_our_prmium_plugin-add,
2315
- .sfsi_prem_icons_added {
2316
- background: #f3faf6;
2317
- border: 1px solid #12a252;
2318
- padding: 25px 38px 35px 40px;
2319
- clear: both;
2320
- }
2321
- .sf_si_prmium_head h2 {
2322
- font-size: 26px;
2323
- color: #000;
2324
- font-weight: bold;
2325
- padding-bottom: 13px;
2326
- margin-top: 0;
2327
- }
2328
-
2329
- .sfsi_new_prmium_follw {
2330
- background: #f3faf6;
2331
- border: 1px solid #12a252;
2332
- padding: 25px 38px 35px 40px;
2333
- float: left;
2334
- clear: both;
2335
- }
2336
- .notice_custom_icons_premium.sfsi_new_prmium_follw {
2337
- margin-left: 96px;
2338
- }
2339
- .sf_si_default_design ul {
2340
- padding: 0;
2341
- margin: 0;
2342
- }
2343
- .sf_si_default_design ul li {
2344
- list-style: none;
2345
- font-size: 20px;
2346
- color: #1a1d20;
2347
- clear: both;
2348
- }
2349
- .sfsi_need_another_tell_us,
2350
- .sfsi_need_another_one_link {
2351
- clear: both;
2352
- }
2353
- .sf_si_all_features_premium a,
2354
- .sfsi_need_another_tell_us a {
2355
- color: #12a252 !important;
2356
- font-size: 18.9px;
2357
- font-weight: bold;
2358
- border-bottom: 1px solid #12a252;
2359
- text-decoration: none;
2360
- }
2361
- .sf_si_default_design ul li b {
2362
- font-weight: bold;
2363
- }
2364
- .sf_si_our_prmium_plugin-add .sf_si_prmium_head h2 {
2365
- padding-bottom: 23px;
2366
- }
2367
-
2368
- .sf_si_default_design ul li img {}
2369
- .sfsi_need_another_one_link p {
2370
- color: #c1c3c5;
2371
- font-size: 18.9px !important;
2372
- }
2373
- .sfsi_need_another_one_link p a {
2374
- color: #12a252 !important;
2375
- text-decoration: none;
2376
- }
2377
- .sfsi_brdr_box {
2378
- box-sizing: border-box;
2379
- }
2380
- .sfsi_prem_cmn_rowlisting {
2381
- width: 225px;
2382
- float: left;
2383
- margin-top: 10px;
2384
- margin-bottom: 1px;
2385
- }
2386
- .sfsi_row {
2387
- clear: both;
2388
- }
2389
- .sfsi_prem_cmn_rowlisting span {
2390
- color: #1a1d20;
2391
- font-size: 20px;
2392
- display: table-cell;
2393
- vertical-align: middle;
2394
- padding-right: 10px;
2395
- }
2396
- .sfsi_need_another_one_link {
2397
- padding: 23px 0 20px 5px;
2398
- }
2399
- .sfsi_need_another_tell_us a {
2400
- margin-left: 5px;
2401
- }
2402
- .sfsi_new_prmium_follw {
2403
- margin-top: 20px;
2404
- display: inline-block;
2405
- padding: 15px 75px 20px 24px;
2406
- float: left;
2407
- }
2408
- .sfsi_new_prmium_follw p {
2409
- margin: 0 !important;
2410
- }
2411
- .sfsi_new_prmium_follw p {
2412
- color: #1a1d20 !important;
2413
- font-size: 20px !important;
2414
- font-family: helveticaregular !important;
2415
- }
2416
- .sfsi_new_prmium_follw p a {
2417
- color: #12a252 !important;
2418
- text-decoration: none;
2419
- }
2420
- .sfsi_new_prmium_follw p b {
2421
- font-weight: bold;
2422
- color: #1a1d20 !important;
2423
- }
2424
- .sf_si_default_design ul li h4 {
2425
- color: #1a1d20 !important;
2426
- font-size: 20px !important;
2427
- font-weight: bold;
2428
- padding-bottom: 21px !important;
2429
- }
2430
- .sf_si_default_design ul li h4 span {
2431
- font-weight: normal;
2432
- }
2433
- p.sfsi_shared_premium {
2434
- color: #1a1d20 !important;
2435
- font-family: helveticaregular !important;
2436
- padding-top: 0 !important;
2437
- }
2438
- p.sfsi_shared_premium a {
2439
- text-decoration: none;
2440
- color: #00a0d2 !important;
2441
- }
2442
- p.sfsi_shared_premium b {
2443
- font-weight: bold;
2444
- }
2445
- .sfsi_fbpaget {
2446
- float: left !important;
2447
- padding: 4px 0 0 0px !important;
2448
- width: 100% !important;
2449
- margin-left: 60px;
2450
- }
2451
- .sfsi_fbpaget .sfsi_facebook_count {
2452
- width: 100% !important;
2453
- padding: 4px 0 0 0px !important;
2454
- }
2455
- .sfsi_prem_show a {
2456
- color: #0c0b0b;
2457
- margin: 2px;
2458
- }
2459
- .sfsi_prem_show {
2460
- padding-top: 140px !important;
2461
- }
2462
- .sf_si_default_design ul li b span {
2463
- font-weight: normal !important;
2464
- }
2465
- p.sfsi_prem_plu_desc a {
2466
- text-decoration: none;
2467
- color: #00a0d2 !important;
2468
- }
2469
- .sfsi_fb_popup_contain {
2470
- width: 50%;
2471
- display: inline-block;
2472
- }
2473
- .sfsi_first_icon_field,
2474
- .sfsi_second_icon_img {
2475
- display: table-cell;
2476
- vertical-align: middle;
2477
- padding: 5px 0;
2478
- }
2479
- .sfsi_first_icon_field {
2480
- width: 125px;
2481
- }
2482
- .sfsi_first_icon_field h2 {
2483
- font-size: 18px !important;
2484
- color: #1a1d20 !important;
2485
- margin: 0 !important;
2486
- font-weight: bold;
2487
- }
2488
- .sfsi_first_icon_field p {
2489
- color: #1a1d20 !important;
2490
- font-size: 12px !important;
2491
- margin: 0 !important;
2492
- padding: 0 !important;
2493
- line-height: 18px !important;
2494
- }
2495
- .sfsi_first_icon_more h2 {
2496
- font-size: 18px !important;
2497
- color: #1a1d20 !important;
2498
- margin: 0 !important;
2499
- padding-top: 17px;
2500
- padding-bottom: 22px;
2501
- }
2502
- .sfsi_cool_font_weight h2 {
2503
- font-weight: normal;
2504
- }
2505
- .sf_si_default_design ul li {
2506
- margin: 0 !important;
2507
- }
2508
- .sf_si_default_design ul li h4.sfsi_second_themedTitle {
2509
- padding-bottom: 16px !important;
2510
- }
2511
- .sfsi_mainContainer .sfsi_prem_cmn_rowlisting img {
2512
- width: 52px;
2513
- height: 52px;
2514
- }
2515
- .sfsi_icons_other_allign {
2516
- width: auto;
2517
- font-size: 15px !important;
2518
- }
2519
-
2520
- /* new notification bar css*/
2521
-
2522
- .sfsi_new_notification {
2523
- background-color: #fff;
2524
- border: 4px dashed #00c853;
2525
- margin-bottom: 30px;
2526
- width: 100%;
2527
- }
2528
- .sfsi_new_notification_header {
2529
- background-color: #e8faef;
2530
- display: -webkit-box;
2531
- display: -webkit-flex;
2532
- display: -ms-flexbox;
2533
- display: flex;
2534
- -webkit-box-align: center;
2535
- -webkit-align-items: center;
2536
- -ms-flex-align: center;
2537
- align-items: center;
2538
- -webkit-box-pack: justify;
2539
- -webkit-justify-content: space-between;
2540
- -ms-flex-pack: justify;
2541
- justify-content: space-between;
2542
- padding: 10px 0 12px 0;
2543
- }
2544
- .sfsi_new_notification_header h1 {
2545
- margin: 0;
2546
- color: #00c853;
2547
- font-size: 18px;
2548
- margin: 0 auto;
2549
- font-family: Arial, Helvetica, sans-serif;
2550
- }
2551
- .sfsi_new_notification_header h1 a {
2552
- margin: 0;
2553
- color: #00c853;
2554
- font-size: 18px;
2555
- margin: 0 auto;
2556
- font-family: Arial, Helvetica, sans-serif;
2557
- text-decoration: none;
2558
- }
2559
- .sfsi_new_notification_cross {
2560
- float: right;
2561
- font-size: 18px;
2562
- font-weight: 700;
2563
- line-height: 1;
2564
- color: #00c853;
2565
- font-family: Arial, Helvetica, sans-serif;
2566
- margin-right: 15px;
2567
- cursor: pointer;
2568
- }
2569
- .sfsi_new_notification_body {
2570
- width: 100%;
2571
- background-color: #fff;
2572
- display: -webkit-box;
2573
- display: -webkit-flex;
2574
- display: -ms-flexbox;
2575
- display: flex;
2576
- -webkit-box-align: center;
2577
- -webkit-align-items: center;
2578
- -ms-flex-align: center;
2579
- align-items: center;
2580
- -webkit-box-pack: justify;
2581
- -webkit-justify-content: space-between;
2582
- -ms-flex-pack: justify;
2583
- justify-content: space-between;
2584
- }
2585
- .sfsi_new_notification_image {
2586
- margin: 0 20px 0px 20px;
2587
- width: 100%;
2588
- text-align: center;
2589
- overflow: hidden;
2590
- }
2591
- .sfsi_new_notification_image img {
2592
- width: auto;
2593
- }
2594
- .sfsi_new_notification_learnmore {
2595
- float: right;
2596
- }
2597
- .sfsi_new_notification_learnmore {
2598
- background-color: #00c853;
2599
- display: block;
2600
- text-decoration: none;
2601
- text-align: center;
2602
- font-size: 20px;
2603
- font-family: Arial, Helvetica, sans-serif;
2604
- width: 150px;
2605
- margin-bottom: -4px;
2606
- margin-right: -4px;
2607
- position: relative;
2608
- color: #fff;
2609
- padding: 70px 10px;
2610
- }
2611
- .sfsi_new_notification_body_link a {
2612
- display: block;
2613
- text-decoration: none;
2614
- text-align: center;
2615
- font-size: 20px;
2616
- font-family: Arial, Helvetica, sans-serif;
2617
- color: #fff;
2618
- }
2619
- .tab4 .sfsi_tokenGenerateButton {
2620
- margin: 25px 0;
2621
- }
2622
- .tab4 .sfsi_tokenGenerateButton p {
2623
- display: inline-block;
2624
- margin-bottom: 11px;
2625
- vertical-align: middle;
2626
- width: 100%;
2627
- }
2628
- .tab4 .sfsi_tokenGenerateButton a {
2629
- background-color: #12a252;
2630
- color: #fff;
2631
- padding: 10px 20px;
2632
- text-decoration: none;
2633
- }
2634
-
2635
- .tab4 .sfsi_instagramFields {
2636
- float: left;
2637
- margin-bottom: 12px;
2638
- /* width: 550px;*/
2639
- width: 50%;
2640
- margin-left: 60px;
2641
- }
2642
-
2643
- .tab4 .sfsi_instagramInstruction {
2644
- float: left;
2645
- margin-bottom: 12px;
2646
- /* width: 450px; */
2647
- width: 40%;
2648
- margin-left: 30px;
2649
- }
2650
- #accordion1 p {
2651
- color: #5a6570;
2652
- text-align: left;
2653
- font-family: 'helveticaneue-light';
2654
- font-size: 17px;
2655
- line-height: 26px;
2656
- padding-top: 19px;
2657
- }
2658
- .specify_counts .listing .sfsi_instagramInstruction ul {
2659
- margin: 0;
2660
- padding: 0;
2661
- list-style: none;
2662
- text-align: left;
2663
- }
2664
- .specify_counts .listing .sfsi_instagramInstruction ul {
2665
- padding-left: 14px !important;
2666
- }
2667
- .specify_counts .listing .sfsi_instagramInstruction li {
2668
- font-size: 13px !important;
2669
- line-height: 20px !important;
2670
- list-style: outside none bullets !important;
2671
- margin-top: 5px !important;
2672
- padding: 0 !important;
2673
- }
2674
- /* tab2 email section */
2675
- .sfsi_service_row {
2676
- margin-right: -15px;
2677
- margin-left: -15px;
2678
- }
2679
- .sfsi_service_column {
2680
- float: left;
2681
- margin-bottom: 40px;
2682
- margin-top: 15px;
2683
- padding-left: 30px;
2684
- width: 47%;
2685
- }
2686
- .sfsi_service_column ul {
2687
- margin-left: 11% !important;
2688
- }
2689
- .sfsi_service_column ul li {
2690
- padding-bottom: 10px;
2691
- font-size: 16px;
2692
- line-height: 25px;
2693
- }
2694
- .sfsi_service_column ul li span {
2695
- color: #12a252;
2696
- }
2697
- .sfsi_service_column ul li::before {
2698
- content: url(../images/tick-icon.png);
2699
- position: relative;
2700
- top: 0px;
2701
- right: 10px;
2702
- text-indent: -22px;
2703
- float: left;
2704
- }
2705
- .sfsi_inputbtn {
2706
- clear: both;
2707
- display: block;
2708
- }
2709
- .sfsi_inputbtn input {
2710
- width: 100%;
2711
- padding: 15px 0px;
2712
- text-align: center;
2713
- margin-bottom: 10px;
2714
- }
2715
- .sfsi_email_services_text {
2716
- clear: both;
2717
- }
2718
- .sfsi_email_services_paragraph {
2719
- width: 600px;
2720
- float: left;
2721
- margin-top: 10px;
2722
- margin-bottom: 40px;
2723
- }
2724
- .sfsi_more_services_link a {
2725
- background-color: #12a252;
2726
- color: #fff !important;
2727
- padding: 20px 0px;
2728
- text-decoration: none;
2729
- text-align: center;
2730
- font-size: 20px;
2731
- display: block;
2732
- clear: both;
2733
- font-weight: bold;
2734
- }
2735
- .sfsi_subscribe_popbox_link a {
2736
- color: #00a0d2 !important;
2737
- }
2738
- .sfsi_email_services_paragraph ul {
2739
- margin-left: 11% !important;
2740
- }
2741
- .sfsi_email_services_paragraph ul li {
2742
- padding-bottom: 10px;
2743
- font-size: 16px;
2744
- }
2745
- .sfsi_email_services_paragraph ul li span {
2746
- color: #12a252;
2747
- }
2748
- .sfsi_email_services_paragraph ul li::before {
2749
- content: url(../images/tick-icon.png);
2750
- position: relative;
2751
- top: 5px;
2752
- right: 10px;
2753
- text-indent: -22px;
2754
- float: left;
2755
- }
2756
- .sfsi_email_last_paragraph {
2757
- width: 60%;
2758
- text-align: center !important;
2759
- margin: 20px auto ! important;
2760
- font-size: 16px !important;
2761
- color: #a4a9ad !important;
2762
- padding-top: 0 !important;
2763
- }
2764
- .sfsi_email_last_paragraph a {
2765
- color: #12a252 !important;
2766
- font-family: 'helveticaneue-light' !important;
2767
- }
2768
- /*new banner styles*/
2769
- .sfsi_new_notification_cat {
2770
- width: 100%;
2771
- min-height: 300px;
2772
- max-width: 700px;
2773
- }
2774
- .sfsi_new_notification_cat {
2775
- background-color: #fff;
2776
- margin: 30px auto;
2777
- width: 100%;
2778
- }
2779
- .sfsi_new_notification_header_cat {
2780
- background-color: #e8faef;
2781
- /*display: -webkit-box;
2782
- display: -webkit-flex;
2783
- display: -ms-flexbox;
2784
- display: flex;
2785
- -webkit-box-align: center;
2786
- -webkit-align-items: center;
2787
- -ms-flex-align: center;
2788
- align-items: center;
2789
- -webkit-box-pack: justify;
2790
- -webkit-justify-content: space-between;
2791
- -ms-flex-pack: justify;
2792
- justify-content: space-between;*/
2793
- padding: 21px 0 21px 0;
2794
- text-align: center;
2795
- }
2796
- .sfsi_new_notification_header_cat h1 {
2797
- margin: 0;
2798
- color: #000000;
2799
- font-size: 24px;
2800
- margin: 0 auto;
2801
- font-family: Arial, Helvetica, sans-serif;
2802
- font-weight: bold;
2803
- }
2804
- .sfsi_new_notification_header_cat h3 {
2805
- margin-top: 10px;
2806
- font-size: 16px;
2807
- color: #000000;
2808
- }
2809
- .sfsi_new_notification_header_cat h3 a {
2810
- text-decoration: none;
2811
- color: #38B54A
2812
- }
2813
- .sfsi_new_notification_header_cat h1 a {
2814
- margin: 0;
2815
- color: #00c853;
2816
- font-size: 18px;
2817
- margin: 0 auto;
2818
- font-family: Arial, Helvetica, sans-serif;
2819
- text-decoration: none;
2820
- }
2821
- .sfsi_new_notification_cross_cat {
2822
- float: right;
2823
- font-size: 18px;
2824
- font-weight: 700;
2825
- line-height: 1;
2826
- color: #000000;
2827
- font-family: Arial, Helvetica, sans-serif;
2828
- margin-right: 15px;
2829
- cursor: pointer;
2830
- margin-top: -50px;
2831
- }
2832
- .sfsi_new_notification_body_link_cat a {
2833
- display: block;
2834
- text-decoration: none;
2835
- text-align: center;
2836
- font-size: 20px;
2837
- font-family: Arial, Helvetica, sans-serif;
2838
- color: #fff;
2839
- }
2840
- .sfsi_new_notification_body_cat {
2841
- width: 100%;
2842
- background-color: #fff;
2843
- /*display: -webkit-box;
2844
- display: -webkit-flex;
2845
- display: -ms-flexbox;
2846
- display: flex;
2847
- -webkit-box-align: center;
2848
- -webkit-align-items: center;
2849
- -ms-flex-align: center;
2850
- align-items: center;
2851
- -webkit-box-pack: justify;
2852
- -webkit-justify-content: space-between;
2853
- -ms-flex-pack: justify;
2854
- justify-content: space-between;*/
2855
- }
2856
- .sfsi_new_notification_image_cat {
2857
- /* margin: 0 20px 0px 20px; */
2858
- width: 100%;
2859
- text-align: center;
2860
- overflow: hidden;
2861
- /*padding: 10px 0px;*/
2862
- }
2863
- .sfsi_new_notification_image_cat img {
2864
- width: auto;
2865
- border: 0;
2866
- vertical-align: middle;
2867
- }
2868
- .bottom_text {
2869
- background: #38B54A;
2870
- text-align: center;
2871
- padding: 15px 0px;
2872
- font-size: 18px;
2873
- font-weight: bold;
2874
- color: #fff;
2875
- }
2876
- .sfsi_new_notification_image_cat p {
2877
- color: #000000;
2878
- padding: 10px;
2879
- font-size: 16px;
2880
- }
2881
- .sfsi_new_notification_body_link_cat .tailored_icons_img {
2882
- display: block;
2883
- text-decoration: none;
2884
- text-align: center;
2885
- font-size: 20px;
2886
- font-family: Arial, Helvetica, sans-serif;
2887
- color: #fff;
2888
- margin: 28px 0px;
2889
- }
2890
- /**curl error box*/
2891
- .sfsi_curlerror {
2892
- margin: 0px 0px 10px 94px;
2893
- background: rgba(244, 67, 54, 0.08);
2894
- padding: 20px;
2895
- line-height: 20px;
2896
- }
2897
- .sfsi_curlerrorNotification .sfsi_curlerror {
2898
- background: rgba(244, 67, 54, 0.08);
2899
- padding: 20px;
2900
- line-height: 20px;
2901
- margin: 0px 0px 10px 0px;
2902
- }
2903
- .sfsi_curlerror_cross {
2904
- float: right;
2905
- text-decoration: underline;
2906
- margin-top: 10px;
2907
- }
2908
- .sfsi_curlerrortab4 a {
2909
- color: #0073aa !important;
2910
- }
2911
- .sfsi_curlerror a {
2912
- color: #0073aa !important;
2913
- }
2914
-
2915
- .social_data_post_types {
2916
- float: left;
2917
- width: 100%;
2918
- margin-top: 10px;
2919
- }
2920
- .social_data_post_types .checkbox {
2921
- float: left;
2922
- margin-top: 5px;
2923
- margin-right: 5px;
2924
- }
2925
- .social_data_post_types ul {
2926
- float: left;
2927
- margin-top: 5px;
2928
- }
2929
- .social_data_post_types li {
2930
- float: left;
2931
- min-width: 90px;
2932
- }
2933
- .social_data_post_types .radio_section.tb_4_ck {
2934
- float: left;
2935
- margin-right: 5px;
2936
- }
2937
- .social_data_post_types .radio_section.tb_4_ck .cstmdsplsub {
2938
- font-size: 16px;
2939
- }
2940
- .social_data_post_types ul {
2941
- float: left;
2942
- width: 84%;
2943
- }
2944
- .social_data_post_types .radio_section.tb_4_ck input.styled {
2945
- margin-top: 20px;
2946
- }
2947
- ul.sfsi_show_hide_section {
2948
- float: right;
2949
- width: 16%;
2950
- }
2951
-
2952
- .sfsi_social_sharing {
2953
- margin-bottom: 15px;
2954
- float: left;
2955
- width: 51%;
2956
- }
2957
- .socialPostTypesUl span {
2958
- pointer-events: none
2959
- }
2960
- .bannerPopupQue6 {
2961
- width: 98% !important;
2962
- float: left !important;
2963
- padding: 15px !important;
2964
- }
2965
- .pinterest_section .sfsi_new_prmium_follw a {
2966
- font-weight: bold !important;
2967
- }
2968
- #accordion,
2969
- #accordion1 {
2970
- float: left;
2971
- clear: both;
2972
- width: 100%;
2973
- }
2974
- h2.optional {
2975
- float: left;
2976
- clear: both;
2977
- margin-top: 25px !important;
2978
- }
2979
-
2980
- /*support forum*/
2981
- .welcometext {
2982
- float: left;
2983
- width: 72%;
2984
- }
2985
- .welcometext p {
2986
- margin-bottom: 8px !important;
2987
- margin-top: 15px !important;
2988
- font-size: 16px;
2989
- }
2990
- .supportforum {
2991
- float: right;
2992
- width: auto;
2993
- background: #fff;
2994
- text-align: center;
2995
- padding: 0 20px 3px 7px;
2996
- }
2997
- .support-container p {
2998
- font-family: helveticaregular !important;
2999
- }
3000
- .support-container {
3001
- padding: 7px 4px;
3002
- }
3003
- .have-questions {
3004
- text-align: center;
3005
- font-size: 20px;
3006
- }
3007
- .have-questions img {
3008
- width: 45px;
3009
- display: inline-block;
3010
- }
3011
- .have-questions .have-quest {
3012
- display: inline-block;
3013
- font-size: 20px;
3014
- font-weight: 700;
3015
- margin: 0;
3016
- vertical-align: sub;
3017
- }
3018
- .have-questions .ask-question {
3019
- margin-bottom: 3px !important;
3020
- margin-top: 2px !important;
3021
- }
3022
- .support-forum-green-bg {
3023
- margin-top: 5px;
3024
- margin-left: 20px;
3025
- background: #26B654;
3026
- width: 145px;
3027
- border-radius: 5px;
3028
- padding: 10px 16px 8px 15px;
3029
- }
3030
- .support-forum-green-bg img {
3031
- display: inline-block;
3032
- padding-right: 5px;
3033
- }
3034
- .support-forum-green-div p.support-forum {
3035
- display: inline-block;
3036
- color: #fff;
3037
- font-weight: 700;
3038
- margin: 0 !important;
3039
- }
3040
- .support-forum-green-div a {
3041
- text-decoration: none !important;
3042
- }
3043
- .respond-text p {
3044
- margin: 10px 0 0 0px !important
3045
- }
3046
- .respond-text {
3047
- margin-left: 20px;
3048
- float: left;
3049
- margin-bottom: 8px;
3050
- }
3051
-
3052
- @media (min-width: 1631px) and (max-width: 1631px) {
3053
- .premiumComponent {
3054
- width: 52% !important;
3055
- }
3056
- .premiumButtonsContainer {
3057
- width: 44% !important;
3058
- }
3059
- .premiumButtonsContainer .premiumSection2 {
3060
- width: 41% !important;
3061
- }
3062
- .premiumButtonsContainer .premiumSection3 {
3063
- width: 41% !important;
3064
- }
3065
- }
3066
-
3067
- /************************************ Question 3-> Where shall they be displayed? CSS STARTS *************************/
3068
- .tab9 h1 {
3069
- font-size: 20px !important;
3070
- ont-weight: bold !important;
3071
- margin-bottom: 20px !important;
3072
- }
3073
- .tab9 span.checkbox {
3074
- margin-top: 3px;
3075
- }
3076
- .tab9 input {
3077
- width: 317px;
3078
- background: #e5e5e5;
3079
- box-shadow: 2px 2px 3px #dcdcdc inset;
3080
- border: 0;
3081
- padding: 13px 10px !important;
3082
- font-size: 17px;
3083
- color: #5a6570;
3084
- }
3085
- .tab9 ul.sfsi_icn_listing8 {
3086
- list-style: outside none none;
3087
- margin: 5px 0 0;
3088
- overflow: hidden;
3089
- }
3090
- .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3091
- font-family: helveticaregular;
3092
- width: 94.7%;
3093
- float: left;
3094
- }
3095
- .tab9 ul.sfsi_icn_listing8 li {
3096
- float: left;
3097
- padding: 11px 0 15px 8px;
3098
- width: 100%;
3099
- margin: 0;
3100
- }
3101
- .tab9 .sfsi_float_position_icon_label img {
3102
- margin-left: auto;
3103
- margin-right: auto;
3104
- display: block;
3105
- margin-top: 7px;
3106
- }
3107
- .tab9 .sfsi_float_position_icon_label img.sfsi_img_center_bottom {
3108
- position: absolute;
3109
- bottom: 0px;
3110
- left: 18%;
3111
- }
3112
- .tab9 .sfsiLocationli .cstmfltonpgstck p {
3113
- padding-top: 5px !important;
3114
- padding-left: 20px !important;
3115
- display: table;
3116
- font-size: 19px !important
3117
- }
3118
- .sfsi_mainContainer .checkbox {
3119
- float: left;
3120
- }#accordion .tab9 .sfsi_icn_listing8 li .sfsi_right_info .kckslctn p:first-child {
3121
- margin-top: 17px !important;
3122
- }
3123
- #accordion .tab9 .sfsi_icn_listing8 li .sfsi_right_info p {
3124
- padding-left: 20px;
3125
- font-size: 19px !important;
3126
- display: table
3127
- }
3128
- #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_shortcode .sfsi_right_info p:last-child {
3129
- padding-top: 0px;
3130
- }
3131
- #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_shortcode .sfsi_right_info .kckslctn p:last-child {
3132
- padding-top: 19px !important;
3133
- }
3134
- .tab9 .sfsi_feature_note {
3135
- font-size: 18px !important;
3136
- margin-left: 12px !important;
3137
- padding-top: 0px !important;
3138
- }
3139
- .tab9 .ul.sfsi_make_icons.sfsi_mobile_float {
3140
- float: left;
3141
- }
3142
- .tab9 .sfsi_disable_floatingicons_mobile {
3143
- width: 88%;
3144
- float: left;
3145
- margin: 25px 0 0 27px
3146
- }
3147
- .tab9 .sfsi_disable_floatingicons_mobile h4 {
3148
- float: left;
3149
- line-height: 56px !important;
3150
- margin-right: 40px !important;
3151
- font-family: 'helveticaneue-light' !important;
3152
- color: #5a6570 !important;
3153
- }
3154
- .tab9 .sfsi_toglepstpgspn {
3155
- font-weight: bold;
3156
- }
3157
- .tab9 .sfsi_show_via_shortcode .kckslctn,
3158
- .tab9 .sfsi_show_via_afterposts .kckslctn {
3159
- font-size: 15px;
3160
- margin-top: 5px;
3161
- }
3162
- .tab9 .sfsi_show_via_shortcode .kckslctn h4,
3163
- .tab9 .sfsi_show_via_afterposts .kckslctn h4 {
3164
- font-size: 18px !important;
3165
- padding: 18px 0 0 0 !important;
3166
- }
3167
- .tab9 .sfsi_navigate_to_question7 {
3168
- text-decoration: underline;
3169
- cursor: pointer
3170
- }
3171
- .tab9 .sfsiLocationli h4 {
3172
- font-size: 19px !important
3173
- }
3174
- .tab9 .sfsi_make_icons span.radio {
3175
- background-position: 0 0;
3176
- display: inline-block;
3177
- vertical-align: middle;
3178
- float: left;
3179
- }
3180
- .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3181
- min-width: 33%;
3182
- width: 33% !important
3183
- }
3184
-
3185
- . .tab9 .radio_section.tb_4_ck {
3186
- margin: 0 20px 0 0 !important;
3187
- float: left
3188
- }
3189
- .tab9 .sfsi_tab_3_icns {
3190
- display: block;
3191
- }
3192
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3193
- width: 13%;
3194
- min-width: 35px
3195
- }
3196
- .tab9 .sfsi_make_icons .sfsi_flicnsoptn3 {
3197
- color: #69737c;
3198
- display: inline-block;
3199
- float: none;
3200
- font-family: helveticaneue-light;
3201
- font-size: 20px;
3202
- margin: 7px 0 0 15px;
3203
- vertical-align: middle;
3204
- width: auto
3205
- }
3206
- .tab9 .sfsi_float_position_icon_label {
3207
- border: 1px solid #ccc;
3208
- border-radius: 18px;
3209
- margin-top: 3px;
3210
- position: relative;
3211
- width: 189px;
3212
- height: 148px
3213
- }
3214
- .tab9 .save_button {
3215
- padding-top: 0
3216
- }
3217
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns li {
3218
- padding-left: 0;
3219
- padding-bottom: 15px
3220
- }
3221
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_floaticon_margin_sec li {
3222
- min-width: 50%;
3223
- padding-left: 0;
3224
- padding-bottom: 15px;
3225
- float: left;
3226
- width: 50%
3227
- }
3228
- .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3229
- margin-top: 55px
3230
- }
3231
- .tab9 .sfsi_position_divider {
3232
- float: left;
3233
- margin-top: 0;
3234
- margin-left: 15px;
3235
- width: 100%
3236
- }
3237
- #accordion .tab9 ul.shwthmbfraftr .labelhdng4,
3238
- #accordion .tab9 ul.shwthmbfraftr .row h4.labelhdng4 {
3239
- color: #555;
3240
- font-size: 20px;
3241
- margin-left: 20px;
3242
- font-family: helveticaregular
3243
- }
3244
- .tab9 .sfsiLocationli .sfsi_right_info .sfsi_tab_3_icns {
3245
- float: left;
3246
- clear: both
3247
- }
3248
- .tab9 ul.sfsi_tab_3_icns li .icns_tab_3,
3249
- ul.sfsi_tab_3_icns li .radio {
3250
- float: left
3251
- }
3252
- .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3253
- margin-top: 20px
3254
- }
3255
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li {
3256
- float: left
3257
- }
3258
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec label {
3259
- font-size: 17px;
3260
- padding-right: 7px;
3261
- width: 63px !important;
3262
- display: inline-block;
3263
- margin-top: 10px
3264
- }
3265
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec ins {
3266
- margin-top: 10px
3267
- }
3268
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li input {
3269
- background-color: #dedede;
3270
- border: none;
3271
- box-shadow: none;
3272
- padding: 14px 8px;
3273
- width: 80px
3274
- }
3275
- .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li ins {
3276
- font-size: 17px;
3277
- font-weight: 400;
3278
- margin-left: 15px;
3279
- text-decoration: none
3280
- }
3281
- .tab9 .sfsi_flicnsoptn3 {
3282
- color: #69737c;
3283
- float: left;
3284
- font-size: 20px;
3285
- margin: 62px 5px 0 20px;
3286
- font-family: helveticaneue-light;
3287
- width: 136px
3288
- }
3289
- .tab9 ul.sfsi_tab_3_icns label {
3290
- float: left;
3291
- line-height: 42px;
3292
- color: #69737C;
3293
- font-size: 18px;
3294
- font-family: helveticaregular;
3295
- min-width: 120px
3296
- }
3297
-
3298
- @media screen and (max-width: 823px) {
3299
- .wapper {
3300
- padding: 0 15px;
3301
- }
3302
- .welcometext {
3303
- width: 62% !important;
3304
- }
3305
- .supportforum {
3306
- margin-top: 22px;
3307
- }
3308
- .main_contant h1 {
3309
- line-height: 35px;
3310
- }
3311
- #sfpageLoad {
3312
- width: 100% !important;
3313
- left: 0px !important;
3314
- }
3315
- .tab9 .sfsi_position_divider {
3316
- margin-left: 0px !important;
3317
- }
3318
- .row ul.tab_2_email_sec li {
3319
- width: 31%;
3320
- }
3321
- .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3322
- width: 89.7% !important;
3323
- }
3324
- .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3325
- width: 100% !important;
3326
- }
3327
- .tab9 .sfsi_float_position_icon_label {
3328
- clear: both !important;
3329
- }
3330
- .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3331
- margin-top: 0px !important;
3332
- }
3333
- .tab9 .sfsi_flicnsoptn3 {
3334
- margin: 5px 5px 0 20px !important;
3335
- width: 131px !important;
3336
- }
3337
- .tab9 .sfsiLocationli label,
3338
- .tab9 .sfsi_float_position_icon_label {
3339
- margin-top: 13px;
3340
- clear: both !important;
3341
- }
3342
- .tab9 .sfsi_position_divider:nth-child(2) {
3343
- margin: 20px 0;
3344
- }
3345
- .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3346
- margin-left: 44px;
3347
- }
3348
-
3349
- .tab9 ul.sfsi_make_icons.sfsi_mobile_float {
3350
- float: left;
3351
- clear: both;
3352
- }
3353
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3354
- width: 50% !important;
3355
- }
3356
- }
3357
- @media screen and (min-width: 360px) and (max-width: 414px) {
3358
- .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3359
- width: 100% !important;
3360
- }
3361
- }
3362
- @media screen and (min-width: 640px) and (max-width: 640px) {
3363
- .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3364
- width: 100% !important;
3365
- }
3366
- .tab9 .sfsi_img_center_bottom {
3367
- padding-top: 0px !important;
3368
- width: 62% !important;
3369
- margin-top: -10px;
3370
- margin-left: 5px;
3371
- }
3372
- }
3373
- @media screen and (min-width: 1024px) and (max-width: 1024px) {
3374
- .wapper {
3375
- padding: 0 30px 0px 15px;
3376
- }
3377
- .welcometext {
3378
- width: 62% !important;
3379
- }
3380
- .supportforum {
3381
- margin-top: 22px;
3382
- }
3383
- .main_contant h1 {
3384
- line-height: 35px;
3385
- }
3386
- #sfpageLoad {
3387
- width: 100% !important;
3388
- }
3389
- .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3390
- margin-left: 45px;
3391
- }
3392
- .row ul.tab_2_email_sec li {
3393
- width: 31%;
3394
- }
3395
- .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3396
- width: 90.7% !important;
3397
- }
3398
- .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3399
- width: 100% !important;
3400
- }
3401
- .tab9 .sfsi_float_position_icon_label {
3402
- clear: both !important;
3403
- }
3404
- .tab9 .sfsiLocationli label,
3405
- .tab9 .sfsi_float_position_icon_label {
3406
- margin-top: 13px;
3407
- clear: both;
3408
- float: left;
3409
- }
3410
- .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3411
- margin-top: 0px !important;
3412
- }
3413
- .tab9 .sfsi_flicnsoptn3 {
3414
- margin-top: 3px !important
3415
- }
3416
- .tab9 .sfsi_position_divider:nth-child(2) {
3417
- margin: 20px 0;
3418
- }
3419
- .tab9 .sfsi_position_divider {
3420
- margin-left: 0px !important;
3421
- }
3422
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3423
- width: 30% !important;
3424
- }
3425
- .tab9 ul.sfsi_make_icons.sfsi_mobile_float {
3426
- width: 100% !important;
3427
- }
3428
- }
3429
-
3430
- @media screen and (min-width: 1080px) and (max-width: 1080px) {
3431
- .tab9 ul.sfsi_tab_3_icns label {
3432
- clear: both;
3433
- margin-top: 20px;
3434
- }
3435
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons {
3436
- float: left;
3437
- clear: both;
3438
- width: 100%;
3439
- }
3440
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons li {
3441
- width: 50%;
3442
- }
3443
- }
3444
-
3445
- @media screen and (min-width: 1920px) and (max-width: 1920px) {
3446
- .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons li span.sfsi_flicnsoptn3 {
3447
- padding-top: 6px;
3448
- padding-left: 5px;
3449
- }
3450
- }
3451
-
3452
- @media screen and (min-width: 1366px) and (max-width: 1366px) {
3453
- .wapper {
3454
- padding: 40px 40px 40px 10px;
3455
- }
3456
- .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3457
- width: 100% !important;
3458
- }
3459
- .tab9 .sfsi_flicnsoptn3 {
3460
- font-size: 18px !important;
3461
- min-width: 113px !important;
3462
- margin: 60px 0px 0 10px !important;
3463
- width: auto !important;
3464
- }
3465
- .tab9 .sfsi_position_divider {
3466
- margin-left: 0px !important;
3467
- }
3468
- }
3469
- /************************************ Question 3-> Where shall they be displayed? CSS CLOSES *************************/
3470
-
3471
- /* Link to support forum left of every Save button */
3472
- .ui-accordion .ui-accordion-content {
3473
- position: relative;
3474
- }
3475
- .sfsi_askforhelp {
3476
- float: left;
3477
- width: 32%;
3478
- position: absolute;
3479
- bottom: 30px;
3480
- }
3481
- .sfsi_askforhelp img {
3482
- float: left;
3483
- width: 35px;
3484
- height: 35px;
3485
- vertical-align: middle;
3486
- }
3487
- .sfsi_askforhelp span {
3488
- float: left;
3489
- margin-left: 6px;
3490
- margin-top: 8px;
3491
- }
3492
- .askhelpInview2 {
3493
- bottom: 25px;
3494
- }
3495
- .askhelpInview3 {
3496
- bottom: 38px;
3497
- }
3498
- .askhelpInview7 {
3499
- bottom: 50px;
3500
- }
3501
-
3502
- div#sfsi_langnotice,
3503
- div#sfsi_addThis_removal_notice,
3504
- div#sfsi_error_reporting_notice {
3505
- padding: 10px;
3506
- margin-left: 0px;
3507
- position: relative;
3508
- }
3509
-
3510
- .clear {
3511
- clear: both;
3512
- }
3513
- .show {
3514
- display: block;
3515
- }
3516
- .hide {
3517
- display: none;
3518
- }
3519
-
3520
- .zeropadding {
3521
- padding: 0px !important;
3522
- }
3523
- .zerotoppadding {
3524
- padding-top: 0px !important;
3525
- }
3526
- .zerobottompadding {
3527
- padding-bottom: 0px !important;
3528
- }
3529
- .zerotopmargin {
3530
- margin-top: 0px !important;
3531
- }
3532
-
3533
- .rowpadding10 {
3534
- padding: 10px 0 !important;
3535
- }
3536
- .rowmarginleft15 {
3537
- margin-left: 15px !important;
3538
- }
3539
- .rowmarginleft25 {
3540
- margin-left: 25px !important;
3541
- }
3542
- .rowmarginleft45 {
3543
- margin-left: 45px !important;
3544
- }
3545
-
3546
- .bottommargin20 {
3547
- margin-bottom: 20px !important;
3548
- }
3549
- .bottommargin30 {
3550
- margin-bottom: 30px !important;
3551
- }
3552
- .bottommargin40 {
3553
- margin-bottom: 40px !important;
3554
- }
3555
- .inactiveSection {
3556
- opacity: 0.2;
3557
- pointer-events: none;
3558
- }
3559
-
3560
- /* */
3561
- .tab3 .sub_row {
3562
- float: left;
3563
- margin: 15px 0 0 4%;
3564
- width: 80%;
3565
- }
3566
- .tab3 .sub_row label {
3567
- float: left;
3568
- margin: 0 0px 0 10px;
3569
- line-height: 36px;
3570
- font-size: 18px;
3571
- }
3572
- .tab3 .sub_row .effectContainer {
3573
- float: left;
3574
- width: 100%;
3575
- margin-left: 45px;
3576
- }
3577
- .tab3 .sub_row .effectName {
3578
- float: left;
3579
- width: 35%;
3580
- }
3581
- .tab3 .tab_3_sav {
3582
- padding-top: 0;
3583
- margin: 0px auto 10px;
3584
- position: relative;
3585
- z-index: 9;
3586
- }
3587
- .tab3 .Shuffle_auto {
3588
- float: left;
3589
- width: 80%;
3590
- clear: both;
3591
- }
3592
- .tab3 #animationSection label {
3593
- font-family: 'helveticaneue-light';
3594
- }
3595
-
3596
- .tab3 select[name='mouseover_other_icons_transition_effect'] {
3597
- margin-left: 10px;
3598
- padding: 0px 11px;
3599
- margin-top: 4px;
3600
- font-size: 15px;
3601
- border-radius: 5px;
3602
- }
3603
- .tab3 .other_icons_effects_options .mouseover_other_icon_label {
3604
- float: left;
3605
- width: 30%;
3606
- font-size: 16px;
3607
- }
3608
- .tab3 .mouse-over-effects span.radio {
3609
- float: left;
3610
- display: inline-block;
3611
- }
3612
- .tab3 .same_icons_effects label span {
3613
- float: left;
3614
- clear: both;
3615
- line-height: 20px;
3616
- }
3617
- .tab3 .same_icons_effects label span:nth-child(2) {
3618
- font-size: 14px;
3619
- }
3620
- .tab3 .other_icons_effects_options .mouseover_other_icon_img {
3621
- float: left;
3622
- width: 40px;
3623
- height: 40px;
3624
- }
3625
- .tab3 .other_icons_effects_options .mouseover_other_icon_change_link,
3626
- .tab3 .other_icons_effects_options .mouseover_other_icon_revert_link {
3627
- float: left;
3628
- color: #337ab7;
3629
- margin-left: 15px;
3630
- padding: 5px 0px;
3631
- font-size: 15px;
3632
- text-decoration: underline;
3633
- }
3634
- .mouseover-premium-notice {}
3635
- .mouseover-premium-notice label {
3636
- width: auto !important;
3637
- margin: 0 !important;
3638
- }
3639
- .mouseover-premium-notice a {
3640
- float: left;
3641
- color: #12a252 !important;
3642
- padding-top: 5px;
3643
- margin-left: 5px;
3644
- font-size: 18px;
3645
- }
3646
-
3647
- @media (min-width:414px) and (max-width: 736px) and (orientation:portrait) {
3648
- .tab3 .sub_row {
3649
- width: 100%;
3650
- }
3651
- .tab3 .sub_row .effectContainer {
3652
- margin-left: 25px;
3653
- margin-bottom: 0px;
3654
- clear: both;
3655
- }
3656
- .tab3 .sub_row .effectName {
3657
- width: 100%;
3658
- margin-bottom: 25px
3659
- }
3660
- .rowmarginleft45 {
3661
- margin-left: 0px !important;
3662
- }
3663
- .bottommargin40 {
3664
- margin-bottom: 0px !important;
3665
- }
3666
- }
3667
-
3668
- @media (min-width:414px) and (max-width: 736px) and (orientation:landscape) {
3669
- .tab3 .sub_row {
3670
- width: 100%;
3671
- }
3672
- .tab3 .sub_row .effectContainer {
3673
- margin-left: 25px;
3674
- margin-bottom: 0px;
3675
- clear: both;
3676
- }
3677
- .tab3 .sub_row .effectName {
3678
- width: 50%;
3679
- margin-bottom: 25px
3680
- }
3681
- .rowmarginleft45 {
3682
- margin-left: 25px !important;
3683
- }
3684
- .bottommargin40 {
3685
- margin-bottom: 0px !important;
3686
- }
3687
- }
3688
- @media (min-width:768px) and (max-width: 1024px) {
3689
- .tab3 .sub_row {
3690
- width: 100%;
3691
- }
3692
- .tab3 .sub_row .effectContainer {
3693
- margin-bottom: 25px;
3694
- clear: both;
3695
- }
3696
- .tab3 .sub_row .effectName {
3697
- width: 50%;
3698
- }
3699
- }/* */
3700
-
3701
- .col-lg-1,
3702
- .col-lg-10,
3703
- .col-lg-11,
3704
- .col-lg-12,
3705
- .col-lg-2,
3706
- .col-lg-3,
3707
- .col-lg-4,
3708
- .col-lg-5,
3709
- .col-lg-6,
3710
- .col-lg-7,
3711
- .col-lg-8,
3712
- .col-lg-9,
3713
- .col-md-1,
3714
- .col-md-10,
3715
- .col-md-11,
3716
- .col-md-12,
3717
- .col-md-2,
3718
- .col-md-3,
3719
- .col-md-4,
3720
- .col-md-5,
3721
- .col-md-6,
3722
- .col-md-7,
3723
- .col-md-8,
3724
- .col-md-9,
3725
- .col-sm-1,
3726
- .col-sm-10,
3727
- .col-sm-11,
3728
- .col-sm-12,
3729
- .col-sm-2,
3730
- .col-sm-3,
3731
- .col-sm-4,
3732
- .col-sm-5,
3733
- .col-sm-6,
3734
- .col-sm-7,
3735
- .col-sm-8,
3736
- .col-sm-9,
3737
- .col-xs-1,
3738
- .col-xs-10,
3739
- .col-xs-11,
3740
- .col-xs-12,
3741
- .col-xs-2,
3742
- .col-xs-3,
3743
- .col-xs-4,
3744
- .col-xs-5,
3745
- .col-xs-6,
3746
- .col-xs-7,
3747
- .col-xs-8,
3748
- .col-xs-9 {
3749
- position: relative;
3750
- min-height: 1px;
3751
- padding-right: 15px;
3752
- padding-left: 15px;
3753
- }
3754
- @media (min-width: 992px) {
3755
- .col-md-12 {
3756
- width: 100%;
3757
- }
3758
-
3759
- .col-md-3 {
3760
- width: 25%;
3761
- }
3762
-
3763
- .col-md-1,
3764
- .col-md-10,
3765
- .col-md-11,
3766
- .col-md-12,
3767
- .col-md-2,
3768
- .col-md-3,
3769
- .col-md-4,
3770
- .col-md-5,
3771
- .col-md-6,
3772
- .col-md-7,
3773
- .col-md-8,
3774
- .col-md-9 {
3775
- float: left;
3776
- }
3777
-
3778
- .col-md-12 {
3779
- width: 100%
3780
- }
3781
-
3782
- .col-md-11 {
3783
- width: 91.66666667%
3784
- }
3785
-
3786
- .col-md-10 {
3787
- width: 83.33333333%
3788
- }
3789
-
3790
- .col-md-9 {
3791
- width: 75%
3792
- }
3793
-
3794
- .col-md-8 {
3795
- width: 66.66666667%
3796
- }
3797
-
3798
- .col-md-7 {
3799
- width: 58.33333333%
3800
- }
3801
-
3802
- .col-md-6 {
3803
- width: 50%
3804
- }
3805
-
3806
- .col-md-5 {
3807
- width: 41.66666667%
3808
- }
3809
-
3810
- .col-md-4 {
3811
- width: 33.33333333%
3812
- }
3813
-
3814
- .col-md-3 {
3815
- width: 25%
3816
- }
3817
-
3818
- .col-md-2 {
3819
- width: 16.66666667%
3820
- }
3821
-
3822
- .col-md-1 {
3823
- width: 8.33333333%
3824
- }
3825
-
3826
- .col-md-pull-12 {
3827
- right: 100%
3828
- }
3829
-
3830
- .col-md-pull-11 {
3831
- right: 91.66666667%
3832
- }
3833
-
3834
- .col-md-pull-10 {
3835
- right: 83.33333333%
3836
- }
3837
-
3838
- .col-md-pull-9 {
3839
- right: 75%
3840
- }
3841
-
3842
- .col-md-pull-8 {
3843
- right: 66.66666667%
3844
- }
3845
-
3846
- .col-md-pull-7 {
3847
- right: 58.33333333%
3848
- }
3849
-
3850
- .col-md-pull-6 {
3851
- right: 50%
3852
- }
3853
-
3854
- .col-md-pull-5 {
3855
- right: 41.66666667%
3856
- }
3857
-
3858
- .col-md-pull-4 {
3859
- right: 33.33333333%
3860
- }
3861
-
3862
- .col-md-pull-3 {
3863
- right: 25%
3864
- }
3865
-
3866
- .col-md-pull-2 {
3867
- right: 16.66666667%
3868
- }
3869
-
3870
- .col-md-pull-1 {
3871
- right: 8.33333333%
3872
- }
3873
-
3874
- .col-md-pull-0 {
3875
- right: auto
3876
- }
3877
-
3878
- .col-md-push-12 {
3879
- left: 100%
3880
- }
3881
-
3882
- .col-md-push-11 {
3883
- left: 91.66666667%
3884
- }
3885
-
3886
- .col-md-push-10 {
3887
- left: 83.33333333%
3888
- }
3889
-
3890
- .col-md-push-9 {
3891
- left: 75%
3892
- }
3893
-
3894
- .col-md-push-8 {
3895
- left: 66.66666667%
3896
- }
3897
-
3898
- .col-md-push-7 {
3899
- left: 58.33333333%
3900
- }
3901
-
3902
- .col-md-push-6 {
3903
- left: 50%
3904
- }
3905
-
3906
- .col-md-push-5 {
3907
- left: 41.66666667%
3908
- }
3909
-
3910
- .col-md-push-4 {
3911
- left: 33.33333333%
3912
- }
3913
-
3914
- .col-md-push-3 {
3915
- left: 25%
3916
- }
3917
-
3918
- .col-md-push-2 {
3919
- left: 16.66666667%
3920
- }
3921
-
3922
- .col-md-push-1 {
3923
- left: 8.33333333%
3924
- }
3925
-
3926
- .col-md-push-0 {
3927
- left: auto
3928
- }
3929
-
3930
- .col-md-offset-12 {
3931
- margin-left: 100%
3932
- }
3933
-
3934
- .col-md-offset-11 {
3935
- margin-left: 91.66666667%
3936
- }
3937
-
3938
- .col-md-offset-10 {
3939
- margin-left: 83.33333333%
3940
- }
3941
-
3942
- .col-md-offset-9 {
3943
- margin-left: 75%
3944
- }
3945
-
3946
- .col-md-offset-8 {
3947
- margin-left: 66.66666667%
3948
- }
3949
-
3950
- .col-md-offset-7 {
3951
- margin-left: 58.33333333%
3952
- }
3953
-
3954
- .col-md-offset-6 {
3955
- margin-left: 50%
3956
- }
3957
-
3958
- .col-md-offset-5 {
3959
- margin-left: 41.66666667%
3960
- }
3961
-
3962
- .col-md-offset-4 {
3963
- margin-left: 33.33333333%
3964
- }
3965
-
3966
- .col-md-offset-3 {
3967
- margin-left: 25%
3968
- }
3969
-
3970
- .col-md-offset-2 {
3971
- margin-left: 16.66666667%
3972
- }
3973
-
3974
- .col-md-offset-1 {
3975
- margin-left: 8.33333333%
3976
- }
3977
-
3978
- .col-md-offset-0 {
3979
- margin-left: 0
3980
- }
3981
- }
3982
- @media (min-width:768px) {
3983
-
3984
- .col-sm-1,
3985
- .col-sm-10,
3986
- .col-sm-11,
3987
- .col-sm-12,
3988
- .col-sm-2,
3989
- .col-sm-3,
3990
- .col-sm-4,
3991
- .col-sm-5,
3992
- .col-sm-6,
3993
- .col-sm-7,
3994
- .col-sm-8,
3995
- .col-sm-9 {
3996
- float: left
3997
- }
3998
-
3999
- .col-sm-12 {
4000
- width: 100%
4001
- }
4002
-
4003
- .col-sm-11 {
4004
- width: 91.66666667%
4005
- }
4006
-
4007
- .col-sm-10 {
4008
- width: 83.33333333%
4009
- }
4010
-
4011
- .col-sm-9 {
4012
- width: 75%
4013
- }
4014
-
4015
- .col-sm-8 {
4016
- width: 66.66666667%
4017
- }
4018
-
4019
- .col-sm-7 {
4020
- width: 58.33333333%
4021
- }
4022
-
4023
- .col-sm-6 {
4024
- width: 50%
4025
- }
4026
-
4027
- .col-sm-5 {
4028
- width: 41.66666667%
4029
- }
4030
-
4031
- .col-sm-4 {
4032
- width: 33.33333333%
4033
- }
4034
-
4035
- .col-sm-3 {
4036
- width: 25%
4037
- }
4038
-
4039
- .col-sm-2 {
4040
- width: 16.66666667%
4041
- }
4042
-
4043
- .col-sm-1 {
4044
- width: 8.33333333%
4045
- }
4046
-
4047
- .col-sm-pull-12 {
4048
- right: 100%
4049
- }
4050
-
4051
- .col-sm-pull-11 {
4052
- right: 91.66666667%
4053
- }
4054
-
4055
- .col-sm-pull-10 {
4056
- right: 83.33333333%
4057
- }
4058
-
4059
- .col-sm-pull-9 {
4060
- right: 75%
4061
- }
4062
-
4063
- .col-sm-pull-8 {
4064
- right: 66.66666667%
4065
- }
4066
-
4067
- .col-sm-pull-7 {
4068
- right: 58.33333333%
4069
- }
4070
-
4071
- .col-sm-pull-6 {
4072
- right: 50%
4073
- }
4074
-
4075
- .col-sm-pull-5 {
4076
- right: 41.66666667%
4077
- }
4078
-
4079
- .col-sm-pull-4 {
4080
- right: 33.33333333%
4081
- }
4082
-
4083
- .col-sm-pull-3 {
4084
- right: 25%
4085
- }
4086
-
4087
- .col-sm-pull-2 {
4088
- right: 16.66666667%
4089
- }
4090
-
4091
- .col-sm-pull-1 {
4092
- right: 8.33333333%
4093
- }
4094
-
4095
- .col-sm-pull-0 {
4096
- right: auto
4097
- }
4098
-
4099
- .col-sm-push-12 {
4100
- left: 100%
4101
- }
4102
-
4103
- .col-sm-push-11 {
4104
- left: 91.66666667%
4105
- }
4106
-
4107
- .col-sm-push-10 {
4108
- left: 83.33333333%
4109
- }
4110
-
4111
- .col-sm-push-9 {
4112
- left: 75%
4113
- }
4114
-
4115
- .col-sm-push-8 {
4116
- left: 66.66666667%
4117
- }
4118
-
4119
- .col-sm-push-7 {
4120
- left: 58.33333333%
4121
- }
4122
-
4123
- .col-sm-push-6 {
4124
- left: 50%
4125
- }
4126
-
4127
- .col-sm-push-5 {
4128
- left: 41.66666667%
4129
- }
4130
-
4131
- .col-sm-push-4 {
4132
- left: 33.33333333%
4133
- }
4134
-
4135
- .col-sm-push-3 {
4136
- left: 25%
4137
- }
4138
-
4139
- .col-sm-push-2 {
4140
- left: 16.66666667%
4141
- }
4142
-
4143
- .col-sm-push-1 {
4144
- left: 8.33333333%
4145
- }
4146
-
4147
- .col-sm-push-0 {
4148
- left: auto
4149
- }
4150
-
4151
- .col-sm-offset-12 {
4152
- margin-left: 100%
4153
- }
4154
-
4155
- .col-sm-offset-11 {
4156
- margin-left: 91.66666667%
4157
- }
4158
-
4159
- .col-sm-offset-10 {
4160
- margin-left: 83.33333333%
4161
- }
4162
-
4163
- .col-sm-offset-9 {
4164
- margin-left: 75%
4165
- }
4166
-
4167
- .col-sm-offset-8 {
4168
- margin-left: 66.66666667%
4169
- }
4170
-
4171
- .col-sm-offset-7 {
4172
- margin-left: 58.33333333%
4173
- }
4174
-
4175
- .col-sm-offset-6 {
4176
- margin-left: 50%
4177
- }
4178
-
4179
- .col-sm-offset-5 {
4180
- margin-left: 41.66666667%
4181
- }
4182
-
4183
- .col-sm-offset-4 {
4184
- margin-left: 33.33333333%
4185
- }
4186
-
4187
- .col-sm-offset-3 {
4188
- margin-left: 25%
4189
- }
4190
-
4191
- .col-sm-offset-2 {
4192
- margin-left: 16.66666667%
4193
- }
4194
-
4195
- .col-sm-offset-1 {
4196
- margin-left: 8.33333333%
4197
- }
4198
-
4199
- .col-sm-offset-0 {
4200
- margin-left: 0
4201
- }
4202
- }
4203
- @media (min-width:1200px) {
4204
-
4205
- .col-lg-1,
4206
- .col-lg-10,
4207
- .col-lg-11,
4208
- .col-lg-12,
4209
- .col-lg-2,
4210
- .col-lg-3,
4211
- .col-lg-4,
4212
- .col-lg-5,
4213
- .col-lg-6,
4214
- .col-lg-7,
4215
- .col-lg-8,
4216
- .col-lg-9 {
4217
- float: left
4218
- }
4219
-
4220
- .col-lg-12 {
4221
- width: 100%
4222
- }
4223
-
4224
- .col-lg-11 {
4225
- width: 91.66666667%
4226
- }
4227
-
4228
- .col-lg-10 {
4229
- width: 83.33333333%
4230
- }
4231
-
4232
- .col-lg-9 {
4233
- width: 75%
4234
- }
4235
-
4236
- .col-lg-8 {
4237
- width: 66.66666667%
4238
- }
4239
-
4240
- .col-lg-7 {
4241
- width: 58.33333333%
4242
- }
4243
-
4244
- .col-lg-6 {
4245
- width: 50%
4246
- }
4247
-
4248
- .col-lg-5 {
4249
- width: 41.66666667%
4250
- }
4251
-
4252
- .col-lg-4 {
4253
- width: 33.33333333%
4254
- }
4255
-
4256
- .col-lg-3 {
4257
- width: 25%
4258
- }
4259
-
4260
- .col-lg-2 {
4261
- width: 16.66666667%
4262
- }
4263
-
4264
- .col-lg-1 {
4265
- width: 8.33333333%
4266
- }
4267
-
4268
- .col-lg-pull-12 {
4269
- right: 100%
4270
- }
4271
-
4272
- .col-lg-pull-11 {
4273
- right: 91.66666667%
4274
- }
4275
-
4276
- .col-lg-pull-10 {
4277
- right: 83.33333333%
4278
- }
4279
-
4280
- .col-lg-pull-9 {
4281
- right: 75%
4282
- }
4283
-
4284
- .col-lg-pull-8 {
4285
- right: 66.66666667%
4286
- }
4287
-
4288
- .col-lg-pull-7 {
4289
- right: 58.33333333%
4290
- }
4291
-
4292
- .col-lg-pull-6 {
4293
- right: 50%
4294
- }
4295
-
4296
- .col-lg-pull-5 {
4297
- right: 41.66666667%
4298
- }
4299
-
4300
- .col-lg-pull-4 {
4301
- right: 33.33333333%
4302
- }
4303
-
4304
- .col-lg-pull-3 {
4305
- right: 25%
4306
- }
4307
-
4308
- .col-lg-pull-2 {
4309
- right: 16.66666667%
4310
- }
4311
-
4312
- .col-lg-pull-1 {
4313
- right: 8.33333333%
4314
- }
4315
-
4316
- .col-lg-pull-0 {
4317
- right: auto
4318
- }
4319
-
4320
- .col-lg-push-12 {
4321
- left: 100%
4322
- }
4323
-
4324
- .col-lg-push-11 {
4325
- left: 91.66666667%
4326
- }
4327
-
4328
- .col-lg-push-10 {
4329
- left: 83.33333333%
4330
- }
4331
-
4332
- .col-lg-push-9 {
4333
- left: 75%
4334
- }
4335
-
4336
- .col-lg-push-8 {
4337
- left: 66.66666667%
4338
- }
4339
-
4340
- .col-lg-push-7 {
4341
- left: 58.33333333%
4342
- }
4343
-
4344
- .col-lg-push-6 {
4345
- left: 50%
4346
- }
4347
-
4348
- .col-lg-push-5 {
4349
- left: 41.66666667%
4350
- }
4351
-
4352
- .col-lg-push-4 {
4353
- left: 33.33333333%
4354
- }
4355
-
4356
- .col-lg-push-3 {
4357
- left: 25%
4358
- }
4359
-
4360
- .col-lg-push-2 {
4361
- left: 16.66666667%
4362
- }
4363
-
4364
- .col-lg-push-1 {
4365
- left: 8.33333333%
4366
- }
4367
-
4368
- .col-lg-push-0 {
4369
- left: auto
4370
- }
4371
-
4372
- .col-lg-offset-12 {
4373
- margin-left: 100%
4374
- }
4375
-
4376
- .col-lg-offset-11 {
4377
- margin-left: 91.66666667%
4378
- }
4379
-
4380
- .col-lg-offset-10 {
4381
- margin-left: 83.33333333%
4382
- }
4383
-
4384
- .col-lg-offset-9 {
4385
- margin-left: 75%
4386
- }
4387
-
4388
- .col-lg-offset-8 {
4389
- margin-left: 66.66666667%
4390
- }
4391
-
4392
- .col-lg-offset-7 {
4393
- margin-left: 58.33333333%
4394
- }
4395
-
4396
- .col-lg-offset-6 {
4397
- margin-left: 50%
4398
- }
4399
-
4400
- .col-lg-offset-5 {
4401
- margin-left: 41.66666667%
4402
- }
4403
-
4404
- .col-lg-offset-4 {
4405
- margin-left: 33.33333333%
4406
- }
4407
-
4408
- .col-lg-offset-3 {
4409
- margin-left: 25%
4410
- }
4411
-
4412
- .col-lg-offset-2 {
4413
- margin-left: 16.66666667%
4414
- }
4415
-
4416
- .col-lg-offset-1 {
4417
- margin-left: 8.33333333%
4418
- }
4419
-
4420
- .col-lg-offset-0 {
4421
- margin-left: 0
4422
- }
4423
- }
4424
- #sfsi_jivo_offline_chat {
4425
- position: fixed;
4426
- bottom: 0;
4427
- right: 30px;
4428
- height: 350px;
4429
- min-width: 45%;
4430
- background: #fff;
4431
- border-top-left-radius: 30px;
4432
- border-top-right-radius: 30px;
4433
- padding: 10px;
4434
- border: 3px solid #ddd;
4435
- border-bottom: 0;
4436
- }
4437
- #sfsi_jivo_offline_chat .heading-text {
4438
- font-size: 16px;
4439
- font-weight: 500;
4440
- color: #999;
4441
- }
4442
- #sfsi_jivo_offline_chat .heading-text a {
4443
- font-size: 16px;
4444
- font-weight: 900;
4445
- color: #999;
4446
- }
4447
- #sfsi_jivo_offline_chat .tab-changer {
4448
- /*width:100%;*/
4449
- padding: 0 15px;
4450
-
4451
- }
4452
- #sfsi_jivo_offline_chat .tab-changer .tab-link {
4453
- float: left;
4454
- width: 50%;
4455
- text-align: center;
4456
- background: #eee;
4457
- border-bottom: 5px solid #24497B;
4458
- }
4459
- #sfsi_jivo_offline_chat .tab-changer .tab-link:first-child {
4460
- border-top-left-radius: 8px;
4461
- }
4462
- #sfsi_jivo_offline_chat .tab-changer .tab-link:last-child {
4463
- border-top-right-radius: 8px;
4464
- }
4465
- #sfsi_jivo_offline_chat .tab-changer .tab-link p {
4466
- background: #eee;
4467
- padding: 5px 0;
4468
- margin: 0;
4469
- border-top-left-radius: 10px;
4470
- border-top-right-radius: 10px;
4471
- font-size: 25px;
4472
- cursor: pointer;
4473
- line-height: 1;
4474
- }
4475
- #sfsi_jivo_offline_chat .tab-changer .tab-link p span {
4476
- font-size: 15px;
4477
- }
4478
- #sfsi_jivo_offline_chat .tab-changer .tab-link.active p {
4479
- background: #24497B;
4480
- color: #fff;
4481
- }
4482
- #sfsi_jivo_offline_chat .tabs {
4483
- /*background: #dbeef4;*/
4484
- background: #ddd;
4485
- margin: -6px 15px 0 15px;
4486
- min-height: 250px;
4487
- }
4488
- #sfsi_jivo_offline_chat #sfsi_technical {
4489
- padding: 50px;
4490
- }
4491
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div {
4492
- margin: 10px 0;
4493
- }
4494
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div a {
4495
- padding: 20px 26px 18px 25px;
4496
- width: 245px;
4497
- margin: 0;
4498
- }
4499
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div a img {
4500
- margin-top: 11px;
4501
- }
4502
- #sfsi_jivo_offline_chat .tabs #sfsi_technical p {
4503
- font-size: 20px;
4504
- padding-top: 5px;
4505
- margin: 0;
4506
- margin-top: 20px;
4507
- }
4508
- #sfsi_jivo_offline_chat .tabs #sfsi_sales {
4509
- padding: 15px;
4510
- }
4511
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .right-message {
4512
- width: 50%;
4513
- float: right;
4514
- text-align: right;
4515
- margin: 0;
4516
- }
4517
- #sfsi_jivo_offline_chat .tabs #sfsi_sales form>div {
4518
- margin-top: 5px;
4519
- }
4520
- #sfsi_jivo_offline_chat .tabs #sfsi_sales label {
4521
- font-size: 20px;
4522
- color: #000;
4523
- font-weight: 900;
4524
- padding-bottom: 5px;
4525
- }
4526
-
4527
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input,
4528
- #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4529
- margin-top: 5px;
4530
- width: 100%;
4531
- border: 0;
4532
- box-shadow: 0 0 5px 0 #888;
4533
- }
4534
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input {
4535
- height: 40px;
4536
- }
4537
- #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4538
- height: 80px;
4539
- resize: none;
4540
- }
4541
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4542
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4543
- border: 0;
4544
- background: #079345;
4545
- color: #fff;
4546
- margin-top: 23px;
4547
- width: 100%;
4548
- font-size: 16px;
4549
- border-radius: 4px;
4550
- cursor: pointer;
4551
- box-shadow: none;
4552
- }
4553
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent {
4554
- text-align: center;
4555
- }
4556
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4557
- font-size: 35px;
4558
- }
4559
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4560
- font-size: 25px;
4561
- font-weight: 300;
4562
- }
4563
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4564
- width: auto;
4565
- margin-top: 0;
4566
- padding: 10px;
4567
- }
4568
- #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4569
- font-size: 13px !important;
4570
- font-weight: 900;
4571
- /*float: right;*/
4572
- /*text-align: right;*/
4573
- margin-top: -40px !important;
4574
- margin-left: 320px !important;
4575
- }
4576
- #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4577
- background-image: url('images/select-arrow.png');
4578
- width: 15px;
4579
- height: 9px;
4580
- display: inline-block;
4581
- -webkit-transform: rotate(90deg);
4582
- -moz-transform: rotate(90deg);
4583
- -ms-transform: rotate(90deg);
4584
- -o-transform: rotate(90deg);
4585
- transform: rotate(90deg);
4586
- }
4587
- @media (max-width: 543px) {
4588
- #sfsi_jivo_offline_chat {
4589
- width: 400px;
4590
- }
4591
- }
4592
-
4593
- #sfsi_jivo_offline_chat {
4594
- border: 3px solid #ececec;
4595
- }
4596
-
4597
- #sfsi_jivo_offline_chat {
4598
- padding-bottom: 30px;
4599
- }
4600
-
4601
- #sfsi_jivo_offline_chat .heading-text {
4602
- font-size: 14px;
4603
- }
4604
-
4605
- #sfsi_jivo_offline_chat .tabs {
4606
- background-color: #ededed;
4607
- }#sfsi_jivo_offline_chat .tab-changer li p {
4608
- padding: 8px !important;
4609
- }
4610
-
4611
- #sfsi_jivo_offline_chat .tab-changer .tab-link p {
4612
- font-size: 21px !important;
4613
- font-weight: 500;
4614
- color: #000000;
4615
- }#sfsi_jivo_offline_chat .tab-changer .tab-link p span {
4616
- font-size: 14px !important;
4617
- font-weight: 400;
4618
- color: #000000;
4619
- }
4620
-
4621
- #sfsi_jivo_offline_chat .tab-changer .active p span {
4622
- color: #ffffff;
4623
- }
4624
-
4625
- #sfsi_jivo_offline_chat .tabs #sfsi_sales {
4626
- padding: 30px 30px 40px 30px;
4627
- background: #ededed;
4628
- }#sfsi_jivo_offline_chat .tabs #sfsi_sales .label {
4629
- margin-bottom: 8px;
4630
- font-size: 17px;
4631
- font-weight: 500;
4632
- color: #000000;
4633
- }#sfsi_jivo_offline_chat .tabs #sfsi_sales .email {
4634
- margin-top: 15px;
4635
- }
4636
-
4637
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .right-message {
4638
- font-size: 14px;
4639
- color: #000000;
4640
- }
4641
-
4642
- #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4643
- padding: 10px !important;
4644
- font-size: 14px;
4645
- font-weight: 500;
4646
- margin-top: 0 !important;
4647
- }
4648
-
4649
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input {
4650
- padding: 10px;
4651
- font-size: 14px;
4652
- font-weight: 500;
4653
- margin-top: 0 !important;
4654
- }
4655
-
4656
- #sfsi_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4657
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4658
- background: #52b250;
4659
- }#sfsi_jivo_offline_chat #sfsi_technical {
4660
- padding: 57px;
4661
- background-color: #ededed
4662
- }
4663
-
4664
- #sfsi_technical h5 {
4665
- font-size: 18px;
4666
- color: #000000;
4667
- margin: 10px;
4668
- }
4669
-
4670
- #sfsi_technical h5 b {
4671
- font-weight: 700;
4672
- }
4673
-
4674
- #sfsi_technical h5 b {
4675
- font-weight: 700;
4676
- }
4677
-
4678
- #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4679
- font-size: 12px !important;
4680
- font-weight: 700;
4681
- margin-top: 0px !important;
4682
- margin-left: 0px !important;
4683
- color: #000000;
4684
- position: absolute;
4685
- padding: 12px;
4686
- }
4687
-
4688
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div {
4689
- text-align: center;
4690
- margin: 20px 0 25px 0;
4691
- }
4692
-
4693
- #sfsi_jivo_offline_chat .tabs .support-forum-green-div a {
4694
- padding: 12px 25px;
4695
- background: #52b250;
4696
- }
4697
-
4698
- #sfsi_jivo_offline_chat #sfsi_technical .support-forum-green-div .support-forum-green-bg p {
4699
- padding: 0;
4700
- margin: 0;
4701
- font-size: 18px;
4702
- font-weight: 500;
4703
- }
4704
-
4705
- #sfsi_jivo_offline_chat #sfsi_technical .support-forum-green-div .support-forum-green-bg img {
4706
- height: 28px;
4707
- position: relative;
4708
- top: 9px;
4709
- padding-right: 5px;
4710
- margin-top: 0px;
4711
- }
4712
-
4713
- #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4714
- padding-right: -1px;
4715
- }
4716
-
4717
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4718
- font-size: 20px;
4719
- font-weight: 500;
4720
- }
4721
-
4722
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4723
- font-size: 35px;
4724
- font-weight: 700;
4725
- margin: 25px 0;
4726
- }
4727
-
4728
- #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4729
- width: auto;
4730
- margin-top: 6px;
4731
- padding: 8px 30px;
4732
- font-size: 16px;
4733
- background: #52b250;
4734
- }
4735
- @media (max-width: 543px) {
4736
- #sfsi_jivo_offline_chat {
4737
- width: 400px;
4738
- }
4739
- }
4740
- .sfsi_unbold_link {
4741
- font-family: inherit !important;
4742
- }
4743
- .sfsi_quickpay-overlay a {
4744
- display: inline;
4745
- font-size: inherit;
4746
- text-decoration: underline;
4747
- font-weight: 900;
4748
- color: #666;
4749
- }
4750
- .sfsi_row {
4751
- width: 100%;
4752
- }
4753
- .sfsi_col_6 {
4754
- width: 49%;
4755
- display: inline-block;
4756
- }
4757
- .sfsi_text_center {
4758
- text-align: center;
4759
- }
4760
- .sfsi_col_6>div {
4761
- padding: 18px 30px !important;
4762
- margin: 20px 0 0 0;
4763
- border: 1px solid #999;
4764
- display: inline-block;
4765
- float: none;
4766
- /* height: 42px;
4767
- width: 150px;*/
4768
- }
4769
- .sfsi_col_6>div:hover {
4770
- background-image: radial-gradient(circle, #fff, #eee);
4771
- }.sfsi_quickpay-overlay .sfsi_pop_up .sellcodes-quick-purchase img {
4772
- vertical-align: middle;
4773
- height: 40px;
4774
- }
4775
-
4776
- .sfsi_quickpay-overlay .sfsi_pop_up .sellcodes-quick-purchase p {
4777
- text-align: center;
4778
- }
4779
-
4780
- .pop-overlay.read-overlay.sfsi_quickpay-overlay * {
4781
- font-family: 'Josefin Sans', sans-serif;
4782
- }
4783
- .sfsi_quickpay-overlay a {
4784
- display: inline !important;
4785
- font-size: inherit !important;
4786
- text-decoration: underline !important;
4787
- font-weight: 900;
4788
- color: #666;
4789
- }
4790
-
4791
- .wp-admin select {
4792
- padding: 9px;
4793
- }
4794
-
4795
- .sfsi_mainContainer .no_check .checkbox {
4796
- display: none;
4797
- }
4798
-
4799
- .sfsi_new_prmium_follw p .sfsi-share-op {
4800
- color: #0c0b0b !important;
4801
- text-decoration: none !important;
4802
- border-bottom: none;
4803
- }
4804
- .sfsi_instagramInstruction ol>li {
4805
- list-style-type: decimal !important;
4806
- }
4807
- .sfsi_instagramInstruction>p {
4808
- list-style-type: decimal !important;
4809
- }
4810
- .sfsi_font_inherit {
4811
- font-family: inherit !important;
4812
- border: 0 !important;
4813
- }
4814
-
4815
- .pop-up {
4816
- font-weight: normal;
4817
- }
4818
- /* by developer 23-05-2019 */
4819
-
4820
- .sfsi_instagramFields .input_facebook {
4821
-
4822
- margin-left: 0 !important;
4823
-
4824
- }
4825
-
4826
- body .specify_counts .listing .sfsi_instagramInstruction li {
4827
- font-size: 17px !important;
4828
- font-family: helveticaregular !important;
4829
- font-weight: 400 !important;
4830
- color: #1a1d20 !important;
4831
- }
4832
-
4833
- /* end */
4834
-
4835
- /*start 4-6-19*/
4836
- .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.twt_tool_bdr {
4837
- margin-bottom: -12px !important;
4838
- }
4839
-
4840
- .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.printst_tool_bdr {
4841
- margin-bottom: 2px;
4842
- }
4843
-
4844
- .wp-admin .pop-overlay .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.printst_tool_bdr {
4845
- margin-bottom: 2px;
4846
- }
4847
-
4848
- .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.linkedin_tool_bdr {
4849
- margin-bottom: -12px;
4850
- }
4851
-
4852
- /*end 4-6-19*/
4853
-
4854
- .sfsi_border_left_0 {
4855
- border-left: 0 !important;
4856
- }
4857
-
4858
- .tab8 .sfsi_inputSec input {
4859
- width: 140px !important;
4860
- padding: 13px;
4861
- }
4862
-
4863
- .tab8 .sfsi_inputSec span {
4864
- width: auto;
4865
- }
4866
-
4867
- .tab8 .sfsi_inputSec span {
4868
- display: inline-block;
4869
- font-size: 18px;
4870
- vertical-align: middle;
4871
- width: 200px;
4872
- color: #5A6570;
4873
- }
4874
-
4875
- .sfsi_responsive_icon_item_container {
4876
- height: 40px;
4877
- vertical-align: middle;
4878
- margin-top: auto;
4879
- margin-bottom: auto;
4880
- }
4881
-
4882
- .sfsi_responsive_icon_item_container img {
4883
- padding: 7px;
4884
- vertical-align: middle !important;
4885
- box-shadow: unset !important;
4886
- -webkit-box-shadow: unset !important;
4887
- max-width: 40px !important;
4888
- max-height: 40px;
4889
- }
4890
-
4891
- .sfsi_responsive_icon_item_container span {
4892
- padding: 7px;
4893
- vertical-align: middle !important;
4894
- box-shadow: unset !important;
4895
- -webkit-box-shadow: unset !important;
4896
- line-height: 40px
4897
- }.sfsi_responsive_icon_facebook_container {
4898
- background-color: #336699;
4899
- }
4900
-
4901
- .sfsi_responsive_icon_follow_container {
4902
- background-color: #00B04E;
4903
- }
4904
-
4905
- .sfsi_responsive_icon_twitter_container {
4906
- background-color: #55ACEE;
4907
- }.sfsi_icons_container_box_fully_container {
4908
- flex-wrap: wrap;
4909
- }
4910
-
4911
- .sfsi_icons_container_box_fully_container a {
4912
- flex-basis: auto !important;
4913
- flex-grow: 1;
4914
- flex-shrink: 1;
4915
- }
4916
-
4917
- .sfsi_responsive_icons .sfsi_icons_container span {
4918
- font-family: sans-serif;
4919
- font-size: 15px;
4920
- }
4921
-
4922
- .sfsi_widget_title {
4923
- font-weight: 700;
4924
- line-height: 1.2;
4925
- font-size: 27px;
4926
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
4927
-
4928
- }
4929
-
4930
- .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container,
4931
- .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container {
4932
- width: 236px;
4933
- text-align: center;
4934
- margin-right: 8px;
4935
- margin-top: -5px;
4936
- }
4937
-
4938
- .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container img,
4939
- .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container img {
4940
- max-height: 25px !important;
4941
- max-width: 40px !important;
4942
- float: left;
4943
- height: 25px;
4944
- }
4945
-
4946
- .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container span,
4947
- .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container span {
4948
- color: #ffffff;
4949
- font-size: 20px;
4950
- padding: 0 10px;
4951
- letter-spacing: 0.5px;
4952
- font-weight: 500;
4953
- }
4954
-
4955
- .tab6 .sfsi_responsive_default_icon_container,
4956
- .tab6 .sfsi_responsive_custom_icon_container {
4957
- width: 100% !important;
4958
- max-width: unset !important;
4959
- /* padding-left: 60px!important; */
4960
- }
4961
-
4962
- .tab6 .sfsi_responsive_default_icon_container input {
4963
- padding: 8px 11px;
4964
- height: 39px;
4965
- }
4966
-
4967
- .tab6 .heading-label {
4968
- font-size: 18px !important;
4969
- font-weight: 400;
4970
- }
4971
-
4972
- .sfsi_responsive_default_icon_container,
4973
- .sfsi_responsive_custom_icon_container {
4974
- padding: 2px 0 !important;
4975
- }
4976
-
4977
- .sfsi_responsive_default_icon_container .sfsi_responsive_default_url_toggler,
4978
- .sfsi_responsive_custom_icon_container .sfsi_responsive_default_url_toggler,
4979
- .sfsi_responsive_default_icon_container .sfsi_responsive_default_url_hide {
4980
- color: #337ab7 !important;
4981
- font-size: 18px !important;
4982
- letter-spacing: 1px;
4983
- font-weight: 500;
4984
- margin-left: 20px;
4985
- text-decoration: none !important
4986
- }
4987
-
4988
- .sfsi_responsive_fluid {
4989
- text-decoration: none !important;
4990
- }
4991
-
4992
- .sfsi_large_button_container {
4993
- width: calc(100% - 81px) !important;
4994
- }
4995
-
4996
- .sfsi_medium_button_container {
4997
- width: calc(100% - 70px) !important;
4998
- }
4999
-
5000
- .sfsi_small_button_container {
5001
- width: calc(100% - 100px) !important;
5002
- }
5003
-
5004
- /* .sfsi_responsive_custom_icon{line-height: 6px;} */
5005
- /* .sfsi_responsive_fixed_width .sfsi_responsive_custom_icon{line-height: 6px;} */
5006
- /*Override for front end - icon of right height*/
5007
- /* .sfsi_responsive_fluid .sfsi_large_button{padding: 13px !important;} */
5008
- /* .sfsi_responsive_fluid .sfsi_medium_button{padding: 10px !important;} */
5009
-
5010
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
5011
- padding: 12px 13px 9px 13px !important;
5012
- }
5013
-
5014
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button h3 {
5015
- margin: 0px 0px 15px 0px !important;
5016
- }
5017
-
5018
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
5019
- padding: 9px 10px 7px 10px !important;
5020
- }
5021
-
5022
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_large_button {
5023
- padding: 12px 13px 9px 13px !important;
5024
- }
5025
-
5026
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
5027
- margin: 0px 0px 15px 0px !important;
5028
- }
5029
-
5030
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
5031
- padding: 9px 10px 7px 10px !important;
5032
- }
5033
-
5034
- .sfsi_responsive_icon_preview .sfsi_icons_container a .sfsi_responsive_icon_item_container {
5035
- /* white-space: nowrap;
5036
- overflow: hidden;
5037
- text-overflow: ellipsis;*/
5038
- display: inline-block;
5039
- }
5040
-
5041
- .sfsi_right_info ul .sfsi_responsive_icon_option_li .options .field .sfsi_responsive_icons_icon_width input,
5042
- .sfsi_right_info ul .sfsi_responsive_icon_option_li .options .field input {
5043
- width: 75px !important;
5044
- background: #ffffff;
5045
- box-shadow: none;
5046
- border: 1px solid rgb(221, 221, 221);
5047
- border-radius: 0px;
5048
- }
5049
-
5050
- input[type="number"] {
5051
- height: 46px !important;
5052
- }
5053
-
5054
- .tab6 .sfsi_inputSec span {
5055
- display: inline-block;
5056
- font-size: 18px;
5057
- margin-left: 10px;
5058
- vertical-align: middle;
5059
- width: 200px;
5060
- color: #5A6570;
5061
- }
5062
-
5063
- .tab6 .sfsi_responsive_icon_item_container {
5064
- width: 300px;
5065
- /* padding: 5px 10px; */
5066
- display: inline-block;
5067
- box-sizing: border-box !important;
5068
- }
5069
-
5070
- .tab6 .options select.styled {
5071
- line-height: 46px;
5072
- }
5073
-
5074
- .tab6 .options select.styled {
5075
- height: 46px;
5076
- left: 0;
5077
- line-height: 46px;
5078
- position: absolute;
5079
- top: 0;
5080
- width: 213px;
5081
- }
5082
-
5083
- .tab6 .sfsi_responsive_icon_option_li span{
5084
- margin-left: 0!important;
5085
- }
5086
-
5087
- .tab6 ul.sfsi_icn_listing8 li .sfsi_right_info {
5088
- font-family: helveticaregular;
5089
- float: left;
5090
- }
5091
- .sfsi_margin_top_0{
5092
- margin-top: 0 !important;
5093
- }
5094
- .sfsi_responsive_icon_preview .sfsi_icons_container a{
5095
- text-decoration: none;
5096
- }
5097
- .sfsi_small_button {
5098
- line-height: 0px;
5099
- height: unset;
5100
- padding: 6px !important;
5101
- }
5102
- .sfsi_small_button span {
5103
- margin-left: 10px;
5104
- font-size: 16px;
5105
- padding: 0px;
5106
- line-height: 16px;
5107
- vertical-align: -webkit-baseline-middle !important;
5108
- margin-left: 10px;
5109
- }
5110
- .sfsi_small_button img {
5111
- max-height: 16px !important;
5112
- padding: 0px;
5113
- line-height: 0px;
5114
- vertical-align: -webkit-baseline-middle !important;
5115
- }
5116
- .sfsi_medium_button span {
5117
- margin-left: 10px;
5118
- font-size: 18px;
5119
- padding: 0px;
5120
- line-height: 16px;
5121
- vertical-align: -webkit-baseline-middle !important;
5122
- margin-left: 10px;
5123
- }
5124
- .sfsi_medium_button img {
5125
- max-height: 16px !important;
5126
- padding: 0px;
5127
- line-height: 0px;
5128
- vertical-align: -webkit-baseline-middle !important;
5129
- }
5130
- .sfsi_medium_button {
5131
- line-height: 0px;
5132
- height: unset;
5133
- padding: 10px !important;
5134
- }
5135
-
5136
- .sfsi_medium_button span {
5137
- margin-left: 10px;
5138
- font-size: 18px;
5139
- padding: 0px;
5140
- line-height: 16px;
5141
- vertical-align: -webkit-baseline-middle !important;
5142
- margin-left: 10px;
5143
- }
5144
- .sfsi_medium_button img {
5145
- max-height: 16px !important;
5146
- padding: 0px;
5147
- line-height: 0px;
5148
- vertical-align: -webkit-baseline-middle !important;
5149
- }
5150
- .sfsi_medium_button {
5151
- line-height: 0px;
5152
- height: unset;
5153
- padding: 10px !important;
5154
- }
5155
- .sfsi_large_button span {
5156
- font-size: 20px;
5157
- padding: 0px;
5158
- line-height: 16px;
5159
- vertical-align: -webkit-baseline-middle !important;
5160
- display: inline;
5161
- margin-left: 10px;
5162
- }
5163
- .sfsi_large_button img {
5164
- max-height: 16px !important;
5165
- padding: 0px;
5166
- line-height: 0px;
5167
- vertical-align: -webkit-baseline-middle !important;
5168
- display: inline;
5169
- }
5170
- .sfsi_large_button {
5171
- line-height: 0px;
5172
- height: unset;
5173
- padding: 13px !important;
5174
- }
5175
- .sfsi_responsive_icons_count{
5176
- padding: 5px 10px;
5177
- float: left !important;
5178
- display: inline-block;
5179
- margin-right: 0px;
5180
- margin-top: 2px;
5181
- }
5182
-
5183
- .sfsi_responsive_icons_count h3{
5184
- font-family: 'sans-serif' !important;
5185
- font-weight: 900;
5186
- font-size: 32px !important;
5187
- line-height: 0px !important;
5188
- padding: 0px;
5189
- margin: 0px;
5190
- }
5191
-
5192
- .sfsi_responsive_icons_count h6{
5193
- font-family: 'sans-serif' !important;
5194
- font-weight: 900;
5195
- padding: 0px;
5196
- margin: 0px;
5197
- }
5198
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
5199
- text-decoration: none!important;
5200
- border: 0!important;
5201
- }
5202
- .sfsi_responsive_with_counter_icons{
5203
- width: calc(100% - 100px)!important;
5204
- }
5205
- .sfsiresponsive_icon_preview {
5206
- padding: 0px 0 20px 0;
5207
- min-width: 100%;
5208
- }
5209
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
5210
- padding: 12px 13px 9px 13px !important;
5211
- }
5212
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
5213
- padding: 9px 10px 7px 10px !important;
5214
- }
5215
- .sfsi_responsive_icons_count.sfsi_small_button {
5216
- padding: 7px 6px !important;
5217
- }
5218
- .sfsi_responsive_icons_count.sfsi_small_button {
5219
- padding: 7px 6px !important;
5220
- margin-top: 2px;
5221
- }
5222
- .sfsi_responsive_icons_count.sfsi_small_button h6 {
5223
- display: inline-block;
5224
- font-size: 12px !important;
5225
- vertical-align: middle;
5226
- }
5227
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
5228
- padding: 9px 10px 7px 10px !important;
5229
- }
5230
- .sfsi_responsive_icons_count.sfsi_medium_button h3 {
5231
- font-size: 21px !important;
5232
- vertical-align: top;
5233
- line-height: 8px !important;
5234
- margin: 0px 0px 12px 0px !important;
5235
- font-family: 'sans-serif' !important;
5236
- font-weight: 900;
5237
- padding: 0px;
5238
- }
5239
- .sfsi_esponsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
5240
- margin: 0px 0px 15px 0px !important;
5241
- }
5242
- .sfsi_responsive_icons_count.sfsi_large_button h3 {
5243
- font-size: 26px !important;
5244
- vertical-align: top;
5245
- line-height: 6px !important;
5246
- }
5247
-
5248
- .sfsi_responsive_icons_count h3 {
5249
- font-family: 'sans-serif' !important;
5250
- font-weight: 900;
5251
- padding: 0px;
5252
- }
5253
-
5254
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
5255
- font-size: 20px !important;
5256
- display: inline-block;
5257
- vertical-align: middle;
5258
- }
5259
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
5260
- margin: 0px !important;
5261
- }
5262
- .sfsi_responsive_icons_count h3 {
5263
- font-family: 'sans-serif' !important;
5264
- font-weight: 900;
5265
- line-height: 0px !important;
5266
- padding: 0px;
5267
- margin: 0px;
5268
- }
5269
- #accordion .ui-state-active, #accordion1 .ui-state-active, #accordion2 .ui-state-active{
5270
- background: #d22b30 url(../images/arrow.png) right -105px no-repeat !important;
5271
- color: #eee !important;
5272
- border: 0;
5273
- }
5274
-
5275
- #accordion .ui-state-hover, #accordion1 .ui-state-hover, #accordion2 .ui-state-hover {
5276
- background: #d22b30 url(../images/arrow.png) right -105px no-repeat !important;
5277
- color: #eee !important;
5278
- }
 
 
 
 
 
 
 
 
 
1
+ @charset "utf-8";
2
+ @font-face {
3
+ font-family: helveticabold;
4
+ src: url(fonts/helvetica_bold_0-webfont.eot);
5
+ src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
6
+ font-weight: 400;
7
+ font-style: normal;
8
+ }
9
+ @font-face {
10
+ font-family: helveticaregular;
11
+ src: url(fonts/helvetica_0-webfont.eot);
12
+ src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
13
+ font-weight: 400;
14
+ font-style: normal;
15
+ }
16
+ @font-face {
17
+ font-family: helveticaneue-light;
18
+ src: url(fonts/helveticaneue-light.eot);
19
+ src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'),
20
+ url(fonts/helveticaneue-light.woff) format('woff'),
21
+ url(fonts/helveticaneue-light.ttf) format('truetype'),
22
+ url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
23
+ font-weight: 400;
24
+ font-style: normal;
25
+ }
26
+ body {
27
+ margin: 0;
28
+ padding: 0;
29
+ }
30
+ .sfsi_mainContainer {
31
+ font-family: helveticaregular;
32
+ }
33
+ .sfsi_mainContainer h1,
34
+ .sfsi_mainContainer h2,
35
+ .sfsi_mainContainer h3,
36
+ .sfsi_mainContainer h4,
37
+ .sfsi_mainContainer h5,
38
+ .sfsi_mainContainer h6,
39
+ .sfsi_mainContainer li,
40
+ .sfsi_mainContainer p,
41
+ .sfsi_mainContainer ul {
42
+ margin: 0;
43
+ padding: 0;
44
+ font-weight: 400;
45
+ }
46
+ .sfsi_mainContainer img {
47
+ border: 0;
48
+ vertical-align: middle;
49
+ }
50
+ .main_contant p,
51
+ .ui-accordion .ui-accordion-header {
52
+ /*font-family: helveticaregular;*/
53
+ font-family: 'helveticaneue-light';
54
+ }
55
+ .sfsi_mainContainer input,
56
+ .sfsi_mainContainer select {
57
+ outline: 0;
58
+ }
59
+ .wapper {
60
+ padding: 30px 40px 40px 40px;
61
+ display: block;
62
+ background: #f1f1f1;
63
+ }
64
+ .main_contant {
65
+ margin: 0;
66
+ padding: 20px 0 0 0;
67
+ width: 100%;
68
+ float: left;
69
+ }
70
+ .main_contant h1 {
71
+ padding: 0;
72
+ color: #1a1d20;
73
+ font-family: helveticabold;
74
+ font-size: 28px;
75
+ }
76
+ .main_contant p {
77
+ padding: 0;
78
+ color: #414951;
79
+ font-size: 17px;
80
+ line-height: 26px;
81
+ }
82
+ .main_contant p span {
83
+ text-decoration: underline;
84
+ font-family: helveticabold;
85
+ }
86
+ a#save_all_settings {
87
+ padding: 15px 10px;
88
+ }
89
+ #accordion p,
90
+ #accordion1 p {
91
+ color: #5a6570;
92
+ text-align: left;
93
+ /*font-family: helveticaregular;*/
94
+ font-family: 'helveticaneue-light';
95
+ font-size: 17px;
96
+ line-height: 26px;
97
+ padding-top: 19px;
98
+ }
99
+ #accordion p:first-child,
100
+ #accordion1 p:first-child {
101
+ padding-top: 5px;
102
+
103
+ /* padding-bottom: 10px;*/
104
+
105
+ padding-bottom: 5px;
106
+ }
107
+ #accordion h4,
108
+ #accordion1 h4 {
109
+ margin: 0;
110
+ padding: 30px 0 0;
111
+ color: #414951 !important;
112
+ font-size: 20px;
113
+ line-height: 22px;
114
+ font-family: helveticaregular;
115
+ }
116
+ #accordion1 h4.sfsi_dsplyatend {
117
+ width: 47%;
118
+ float: left;
119
+ }
120
+ #accordion h4:first-child,
121
+ #accordion1 h4:first-child {
122
+ padding-top: 0;
123
+ }
124
+ .tab1,
125
+ .tab2,
126
+ .tab3,
127
+ .tab4,
128
+ .tab5,
129
+ .tab6,
130
+ .tab7 {
131
+ color: #5a6570;
132
+ text-align: left;
133
+ font-family: helveticaneue-light;
134
+ font-size: 18px;
135
+ line-height: 26px;
136
+ }
137
+
138
+ /*Admin menu*/
139
+ ul#adminmenu li.toplevel_page_sfsi-options div.wp-menu-image {
140
+ display: none;
141
+ }
142
+ #adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options {
143
+ padding: 0 0 0 38px;
144
+ font-family: Arial, Helvetica, sans-serif !important;
145
+
146
+ /* font-family: helveticabold; */
147
+ }
148
+ ul#adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options {
149
+ color: #e12522;
150
+ transition: 0s;
151
+ background: url(images/left_log_icn.png) 6px 15px no-repeat #000;
152
+ background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
153
+ color: #e12522;
154
+ font-family: Arial, Helvetica, sans-serif !important;
155
+
156
+ }
157
+ ul#adminmenu li.toplevel_page_sfsi-options a.toplevel_page_sfsi-options:hover {
158
+ background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;
159
+ color: #e12522;
160
+
161
+ }
162
+
163
+ ul#adminmenu li.toplevel_page_sfsi-options a.current,
164
+ ul#adminmenu li.toplevel_page_sfsi-options a.current:hover {
165
+ background: url(images/left_log_icn.png) 6px 15px no-repeat #000000;
166
+ /*background: url(images/left_log_icn.png) 6px -43px no-repeat #444444;*/
167
+ color: #e12522;
168
+ }
169
+ /*Tab1*/
170
+ .tab1 ul.icn_listing {
171
+ list-style: none;
172
+ overflow: hidden;
173
+ border-top: #e7e8eb solid 1px;
174
+ margin: 35px 0 0;
175
+ }
176
+ .tab1 ul.icn_listing li {
177
+ border-bottom: #eaebed solid 1px;
178
+ padding: 11px 0 11px 8px;
179
+ float: left;
180
+ width: 100%
181
+ }
182
+ ul.icn_listing li .tb_4_ck {
183
+ float: left;
184
+ margin: 10px 0 0;
185
+ }
186
+ .tab1 ul.icn_listing li .custom,
187
+ .tab1 ul.icn_listing li .sfsicls_email,
188
+ .tab1 ul.icn_listing li .sfsicls_facebook,
189
+ .tab1 ul.icn_listing li .sfsicls_instagram,
190
+ .tab1 ul.icn_listing li .sfsicls_telegram,
191
+ .tab1 ul.icn_listing li .sfsicls_vk,
192
+ .tab1 ul.icn_listing li .sfsicls_ok,
193
+ .tab1 ul.icn_listing li .sfsicls_wechat,
194
+ .tab1 ul.icn_listing li .sfsicls_weibo,
195
+ .sfsicls_linkdin,
196
+ .tab1 ul.icn_listing li .sfsicls_pinterest,
197
+ .tab1 ul.icn_listing li .sfsicls_rs_s,
198
+ .tab1 ul.icn_listing li .sfsicls_share,
199
+ .tab1 ul.icn_listing li .sfsicls_twt,
200
+ .tab1 ul.icn_listing li .sfsicls_utube {
201
+ background: url(../images/tab_1_icn_list.png) no-repeat;
202
+ float: left;
203
+ padding: 0 0 0 59px;
204
+ margin: 0 0 0 17px;
205
+ height: 52px;
206
+ line-height: 51px;
207
+ font-family: helveticaregular;
208
+ font-size: 22px;
209
+ }
210
+ .tab1 ul.icn_listing li .sfsicls_telegram {
211
+ background: url(../images/icons_theme/default/default_telegram.png) no-repeat;
212
+ background-size: contain;
213
+ }
214
+ .tab1 ul.icn_listing li .sfsicls_vk {
215
+ background: url(../images/icons_theme/default/default_vk.png) no-repeat;
216
+ background-size: contain;
217
+ }
218
+ .tab1 ul.icn_listing li .sfsicls_ok {
219
+ background: url(../images/icons_theme/default/default_ok.png) no-repeat;
220
+ background-size: contain;
221
+ }
222
+ .tab1 ul.icn_listing li .sfsicls_wechat {
223
+ background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
224
+ background-size: contain;
225
+ }
226
+ .tab1 ul.icn_listing li .sfsicls_weibo {
227
+ background: url(../images/icons_theme/default/default_weibo.png) no-repeat;
228
+ background-size: contain;
229
+ }
230
+
231
+ .tab1 ul.icn_listing li .sfsicls_rs_s {
232
+ background-position: 0 0;
233
+ color: #f7941d;
234
+ }
235
+ .tab1 ul.icn_listing li .sfsicls_email {
236
+ background-position: 0 -73px;
237
+ color: #d1c800;
238
+ }
239
+ .tab1 ul.icn_listing li .sfsicls_facebook {
240
+ background-position: 0 -145px;
241
+ color: #004088;
242
+ }
243
+ .tab1 ul.icn_listing li .sfsicls_twt {
244
+ background-position: 0 -221px;
245
+ color: #00abe3;
246
+ }
247
+
248
+ .tab1 ul.icn_listing li .sfsicls_share {
249
+ background-position: 0 -372px;
250
+ color: #ef4746;
251
+ }
252
+ .tab1 ul.icn_listing li .sfsicls_utube {
253
+ background-position: 0 -448px;
254
+ color: #f07963;
255
+ }
256
+ .tab1 ul.icn_listing li .sfsicls_linkdin {
257
+ background-position: 0 -548px;
258
+ color: #1e88c9;
259
+ }
260
+ .tab1 ul.icn_listing li .sfsicls_pinterest {
261
+ background-position: 0 -623px;
262
+ color: #f15f5d;
263
+ }
264
+ .tab1 ul.icn_listing li .sfsicls_instagram {
265
+ background-position: 0 -781px;
266
+ color: #369;
267
+ }
268
+ .tab1 ul.icn_listing li .custom {
269
+ background-position: 0 -702px;
270
+ color: #5a6570;
271
+ }
272
+ .tab1 ul.icn_listing li .right_info {
273
+ width: 70%;
274
+ float: right;
275
+ font-family: helveticaregular;
276
+ margin-right: 13px;
277
+ }
278
+ ul.icn_listing li .right_info a {
279
+ text-decoration: underline;
280
+ color: #a4a9ad;
281
+ font-size: 16px;
282
+ }
283
+ .tab1 .tab_2_sav {
284
+ padding-top: 30px;
285
+ }
286
+ /*Tab2*/
287
+ .tab2 {
288
+ overflow: hidden;
289
+ }
290
+ .tab2 .rss_url_row {
291
+ width: 100%;
292
+ float: left;
293
+ margin: 0 0 10px;
294
+ }
295
+ .tab2 .rss_url_row h4 {
296
+ float: left;
297
+ line-height: 43px;
298
+ }
299
+ .tab2 .inr_cont input.add,
300
+ .tab2 .inr_cont textarea.add_txt,
301
+ .tab2 .rss_url_row input.add {
302
+ width: 363px;
303
+ float: left;
304
+ background: #e5e5e5;
305
+ box-shadow: 2px 2px 3px #dcdcdc inset;
306
+ border: 0;
307
+ padding: 12px 10px 11px;
308
+ margin-left: 10px;
309
+ }
310
+ .tab2 .rss_url_row a.rit_link {
311
+ float: left;
312
+ margin: 10px 0 0 16px;
313
+ font-size: 17px;
314
+ }
315
+ .tab2 .row {
316
+ float: left;
317
+ border-top: 2px solid #f2f3f4;
318
+ clear: both;
319
+ padding: 0 0 15px;
320
+ width: 100%
321
+ }
322
+ .tab2 .row .tab_2_email_sec {
323
+ list-style: none;
324
+ margin: 17px 0 0;
325
+ overflow: hidden;
326
+ }
327
+ .row ul.tab_2_email_sec li {
328
+ float: left;
329
+ margin-right: 10px;
330
+ width: 32%;
331
+ }
332
+ .row ul.tab_2_email_sec li label span {
333
+ font-size: 15px;
334
+ color: #808080;
335
+ width: 100%;
336
+ float: left;
337
+ }
338
+ .row ul.tab_2_email_sec:first-child {
339
+ margin-right: 2%
340
+ }
341
+ .tab2 .row h2.sfsicls_email,
342
+ .tab2 .row h2.sfsicls_facebook,
343
+ .tab2 .row h2.sfsicls_telegram,
344
+ .tab2 .row h2.sfsicls_vk,
345
+ .tab2 .row h2.sfsicls_ok,
346
+ .tab2 .row h2.sfsicls_wechat,
347
+ .tab2 .row h2.sfsicls_weibo,
348
+ .tab2 .row h2.sfsicls_instagram,
349
+ .tab2 .row h2.sfsicls_linkdin,
350
+ .tab2 .row h2.sfsicls_pinterest,
351
+ .tab2 .row h2.sfsicls_rs_s,
352
+ .tab2 .row h2.sfsicls_share,
353
+ .tab2 .row h2.sfsicls_twt,
354
+ .tab2 .row h2.sfsicls_utube {
355
+ background: url(../images/tab_1_icn_list.png) no-repeat;
356
+ padding: 0 0 0 70px;
357
+ margin: 15px 0 7px 21px;
358
+ height: 52px;
359
+ line-height: 51px;
360
+ font-family: helveticaregular;
361
+ font-size: 22px;
362
+ }
363
+ .tab2 .row h2.sfsicls_rs_s {
364
+ background-position: 0 0;
365
+ color: #f7941d;
366
+ }
367
+ .tab2 .row h2.sfsicls_telegram {
368
+ background: url(../images/icons_theme/default/default_telegram.png) no-repeat;
369
+ background-size: contain;
370
+ }
371
+ .tab2 .row h2.sfsicls_vk {
372
+ background: url(../images/icons_theme/default/default_vk.png) no-repeat;
373
+ background-size: contain;
374
+ }
375
+ .tab2 .row h2.sfsicls_ok {
376
+ background: url(../images/icons_theme/default/default_ok.png) no-repeat;
377
+ background-size: contain;
378
+ }
379
+ .tab2 .row h2.sfsicls_wechat {
380
+ background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
381
+ background-size: contain;
382
+ }
383
+ .tab2 .row h2.sfsicls_weibo {
384
+ background: url(../images/icons_theme/default/default_weibo.png) no-repeat;
385
+ background-size: contain;
386
+ }
387
+ .tab2 .row h2.sfsicls_email {
388
+ background-position: 0 -71px;
389
+ color: #d1c800;
390
+ }
391
+ .tab2 .row h2.sfsicls_facebook {
392
+ background-position: 0 -145px;
393
+ color: #004088;
394
+ }
395
+ .tab2 .row h2.sfsicls_twt {
396
+ background-position: 0 -221px;
397
+ color: #00abe3;
398
+ }
399
+
400
+ .tab2 .row h2.sfsicls_share {
401
+ background-position: 0 -372px;
402
+ color: #ef4746;
403
+ }
404
+ .tab2 .row h2.sfsicls_utube {
405
+ background-position: 0 -448px;
406
+ color: #f07963;
407
+ }
408
+ .tab2 .row h2.sfsicls_linkdin {
409
+ background-position: 0 -548px;
410
+ color: #1e88c9;
411
+ width: 100%;
412
+ }
413
+ .tab2 .row h2.sfsicls_pinterest {
414
+ background-position: 0 -623px;
415
+ color: #f15f5d;
416
+ }
417
+ .tab2 .row h2.sfsicls_instagram {
418
+ background-position: 0 -781px;
419
+ color: #369;
420
+ }
421
+ .tab2 .inr_cont {
422
+ margin: 0 0 12px 94px;
423
+ }
424
+ ul.tab_2_email_sec .sf_arow {
425
+ width: 52px;
426
+ height: 52px;
427
+ float: left;
428
+ background: url(../images/sf_arow_icn.png) no-repeat;
429
+ margin: 0 8px 0 6px;
430
+ }
431
+ ul.tab_2_email_sec .email_icn {
432
+ background: url(../images/tab_1_icn_list.png) 0 -71px no-repeat;
433
+ width: 52px;
434
+ height: 52px;
435
+ float: left;
436
+ margin: 0 8px;
437
+ }
438
+ ul.tab_2_email_sec .subscribe_icn {
439
+ background: url(../images/tab_1_icn_list.png) 0 -860px no-repeat;
440
+ width: 52px;
441
+ height: 52px;
442
+ float: left;
443
+ margin: 0 0 0 5px;
444
+ }
445
+ ul.tab_2_email_sec li .radio {
446
+ float: left;
447
+ margin: 8px 0 0;
448
+ }
449
+ .row ul.tab_2_email_sec li label {
450
+ margin: 13px 0 0 7px;
451
+ font-size: 16px;
452
+ float: left;
453
+ width: 160px;
454
+ }
455
+ /*Tab 3*/
456
+ .icns_tab_3 .row_10_1,
457
+ .icns_tab_3 .row_10_10,
458
+ .icns_tab_3 .row_10_11,
459
+ .icns_tab_3 .row_10_2,
460
+ .icns_tab_3 .row_10_3,
461
+ .icns_tab_3 .row_10_4,
462
+ .icns_tab_3 .row_10_5,
463
+ .icns_tab_3 .row_10_6,
464
+ .icns_tab_3 .row_10_7,
465
+ .icns_tab_3 .row_10_8,
466
+ .icns_tab_3 .row_10_9,
467
+ .icns_tab_3 .row_11_1,
468
+ .icns_tab_3 .row_11_10,
469
+ .icns_tab_3 .row_11_11,
470
+ .icns_tab_3 .row_11_2,
471
+ .icns_tab_3 .row_11_3,
472
+ .icns_tab_3 .row_11_4,
473
+ .icns_tab_3 .row_11_5,
474
+ .icns_tab_3 .row_11_6,
475
+ .icns_tab_3 .row_11_7,
476
+ .icns_tab_3 .row_11_8,
477
+ .icns_tab_3 .row_11_9,
478
+ .icns_tab_3 .row_12_1,
479
+ .icns_tab_3 .row_12_10,
480
+ .icns_tab_3 .row_12_11,
481
+ .icns_tab_3 .row_12_2,
482
+ .icns_tab_3 .row_12_3,
483
+ .icns_tab_3 .row_12_4,
484
+ .icns_tab_3 .row_12_5,
485
+ .icns_tab_3 .row_12_6,
486
+ .icns_tab_3 .row_12_7,
487
+ .icns_tab_3 .row_12_8,
488
+ .icns_tab_3 .row_12_9,
489
+ .icns_tab_3 .row_13_1,
490
+ .icns_tab_3 .row_13_10,
491
+ .icns_tab_3 .row_13_11,
492
+ .icns_tab_3 .row_13_2,
493
+ .icns_tab_3 .row_13_3,
494
+ .icns_tab_3 .row_13_4,
495
+ .icns_tab_3 .row_13_5,
496
+ .icns_tab_3 .row_13_6,
497
+ .icns_tab_3 .row_13_7,
498
+ .icns_tab_3 .row_13_8,
499
+ .icns_tab_3 .row_13_9,
500
+ .icns_tab_3 .row_14_1,
501
+ .icns_tab_3 .row_14_10,
502
+ .icns_tab_3 .row_14_11,
503
+ .icns_tab_3 .row_14_2,
504
+ .icns_tab_3 .row_14_3,
505
+ .icns_tab_3 .row_14_4,
506
+ .icns_tab_3 .row_14_5,
507
+ .icns_tab_3 .row_14_6,
508
+ .icns_tab_3 .row_14_7,
509
+ .icns_tab_3 .row_14_8,
510
+ .icns_tab_3 .row_14_9,
511
+ .icns_tab_3 .row_15_1,
512
+ .icns_tab_3 .row_15_10,
513
+ .icns_tab_3 .row_15_11,
514
+ .icns_tab_3 .row_15_2,
515
+ .icns_tab_3 .row_15_3,
516
+ .icns_tab_3 .row_15_4,
517
+ .icns_tab_3 .row_15_5,
518
+ .icns_tab_3 .row_15_6,
519
+ .icns_tab_3 .row_15_7,
520
+ .icns_tab_3 .row_15_8,
521
+ .icns_tab_3 .row_15_9,
522
+ .icns_tab_3 .row_16_1,
523
+ .icns_tab_3 .row_16_10,
524
+ .icns_tab_3 .row_16_11,
525
+ .icns_tab_3 .row_16_2,
526
+ .icns_tab_3 .row_16_3,
527
+ .icns_tab_3 .row_16_4,
528
+ .icns_tab_3 .row_16_5,
529
+ .icns_tab_3 .row_16_6,
530
+ .icns_tab_3 .row_16_7,
531
+ .icns_tab_3 .row_16_8,
532
+ .icns_tab_3 .row_16_9,
533
+ .icns_tab_3 .row_1_1,
534
+ .icns_tab_3 .row_1_10,
535
+ .icns_tab_3 .row_1_11,
536
+ .icns_tab_3 .row_1_14,
537
+ .icns_tab_3 .row_1_2,
538
+ .icns_tab_3 .row_1_3,
539
+ .icns_tab_3 .row_1_4,
540
+ .icns_tab_3 .row_1_5,
541
+ .icns_tab_3 .row_1_6,
542
+ .icns_tab_3 .row_1_7,
543
+ .icns_tab_3 .row_1_8,
544
+ .icns_tab_3 .row_1_9,
545
+ .icns_tab_3 .row_2_1,
546
+ .icns_tab_3 .row_2_10,
547
+ .icns_tab_3 .row_2_11,
548
+ .icns_tab_3 .row_2_14,
549
+ .icns_tab_3 .row_2_2,
550
+ .icns_tab_3 .row_2_3,
551
+ .icns_tab_3 .row_2_4,
552
+ .icns_tab_3 .row_2_5,
553
+ .icns_tab_3 .row_2_6,
554
+ .icns_tab_3 .row_2_7,
555
+ .icns_tab_3 .row_2_8,
556
+ .icns_tab_3 .row_2_9,
557
+ .icns_tab_3 .row_3_1,
558
+ .icns_tab_3 .row_3_10,
559
+ .icns_tab_3 .row_3_11,
560
+ .icns_tab_3 .row_3_14,
561
+ .icns_tab_3 .row_3_2,
562
+ .icns_tab_3 .row_3_3,
563
+ .icns_tab_3 .row_3_4,
564
+ .icns_tab_3 .row_3_5,
565
+ .icns_tab_3 .row_3_6,
566
+ .icns_tab_3 .row_3_7,
567
+ .icns_tab_3 .row_3_8,
568
+ .icns_tab_3 .row_3_9,
569
+ .icns_tab_3 .row_4_1,
570
+ .icns_tab_3 .row_4_10,
571
+ .icns_tab_3 .row_4_11,
572
+ .icns_tab_3 .row_4_14,
573
+ .icns_tab_3 .row_4_2,
574
+ .icns_tab_3 .row_4_3,
575
+ .icns_tab_3 .row_4_4,
576
+ .icns_tab_3 .row_4_5,
577
+ .icns_tab_3 .row_4_6,
578
+ .icns_tab_3 .row_4_7,
579
+ .icns_tab_3 .row_4_8,
580
+ .icns_tab_3 .row_4_9,
581
+ .icns_tab_3 .row_5_1,
582
+ .icns_tab_3 .row_5_10,
583
+ .icns_tab_3 .row_5_11,
584
+ .icns_tab_3 .row_5_14,
585
+ .icns_tab_3 .row_5_2,
586
+ .icns_tab_3 .row_5_3,
587
+ .icns_tab_3 .row_5_4,
588
+ .icns_tab_3 .row_5_5,
589
+ .icns_tab_3 .row_5_6,
590
+ .icns_tab_3 .row_5_7,
591
+ .icns_tab_3 .row_5_8,
592
+ .icns_tab_3 .row_5_9,
593
+ .icns_tab_3 .row_6_1,
594
+ .icns_tab_3 .row_6_10,
595
+ .icns_tab_3 .row_6_11,
596
+ .icns_tab_3 .row_6_14,
597
+ .icns_tab_3 .row_6_2,
598
+ .icns_tab_3 .row_6_3,
599
+ .icns_tab_3 .row_6_4,
600
+ .icns_tab_3 .row_6_5,
601
+ .icns_tab_3 .row_6_6,
602
+ .icns_tab_3 .row_6_7,
603
+ .icns_tab_3 .row_6_8,
604
+ .icns_tab_3 .row_6_9,
605
+ .icns_tab_3 .row_7_1,
606
+ .icns_tab_3 .row_7_10,
607
+ .icns_tab_3 .row_7_11,
608
+ .icns_tab_3 .row_7_2,
609
+ .icns_tab_3 .row_7_3,
610
+ .icns_tab_3 .row_7_4,
611
+ .icns_tab_3 .row_7_5,
612
+ .icns_tab_3 .row_7_6,
613
+ .icns_tab_3 .row_7_7,
614
+ .icns_tab_3 .row_7_8,
615
+ .icns_tab_3 .row_7_9,
616
+ .icns_tab_3 .row_8_1,
617
+ .icns_tab_3 .row_8_10,
618
+ .icns_tab_3 .row_8_11,
619
+ .icns_tab_3 .row_8_2,
620
+ .icns_tab_3 .row_8_3,
621
+ .icns_tab_3 .row_8_4,
622
+ .icns_tab_3 .row_8_5,
623
+ .icns_tab_3 .row_8_6,
624
+ .icns_tab_3 .row_8_7,
625
+ .icns_tab_3 .row_8_8,
626
+ .icns_tab_3 .row_8_9,
627
+ .icns_tab_3 .row_9_1,
628
+ .icns_tab_3 .row_9_10,
629
+ .icns_tab_3 .row_9_11,
630
+ .icns_tab_3 .row_9_2,
631
+ .icns_tab_3 .row_9_3,
632
+ .icns_tab_3 .row_9_4,
633
+ .icns_tab_3 .row_9_5,
634
+ .icns_tab_3 .row_9_6,
635
+ .icns_tab_3 .row_9_7,
636
+ .icns_tab_3 .row_9_8,
637
+ .icns_tab_3 .row_9_9,
638
+ .icns_tab_3 .row_17_1,
639
+ .icns_tab_3 .row_17_2,
640
+ .icns_tab_3 .row_17_3,
641
+ .icns_tab_3 .row_17_4,
642
+ .icns_tab_3 .row_17_5,
643
+ .icns_tab_3 .row_17_6,
644
+ .icns_tab_3 .row_17_7,
645
+ .icns_tab_3 .row_17_8,
646
+ .icns_tab_3 .row_17_9,
647
+ .icns_tab_3 .row_17_10,
648
+ .icns_tab_3 .row_17_14,
649
+ .icns_tab_3 .row_17_15,
650
+ .icns_tab_3 .row_17_16,
651
+ .icns_tab_3 .row_17_17,
652
+ .icns_tab_3 .row_17_18,
653
+ .icns_tab_3 .row_17_11,
654
+ .icns_tab_3 .row_7_14,
655
+ .icns_tab_3 .row_8_14,
656
+ .icns_tab_3 .row_9_14,
657
+ .icns_tab_3 .row_10_14,
658
+ .icns_tab_3 .row_11_14,
659
+ .icns_tab_3 .row_12_14,
660
+ .icns_tab_3 .row_13_14,
661
+ .icns_tab_3 .row_14_14,
662
+ .icns_tab_3 .row_15_22,
663
+ .icns_tab_3 .row_16_22,
664
+ .icns_tab_3 .row_17_22,
665
+ .icns_tab_3 .row_17_15,
666
+ .icns_tab_3 .row_17_16,
667
+ .icns_tab_3 .row_17_17,
668
+ .icns_tab_3 .row_1_15,
669
+ .icns_tab_3 .row_2_15,
670
+ .icns_tab_3 .row_3_15,
671
+ .icns_tab_3 .row_4_15,
672
+ .icns_tab_3 .row_5_15,
673
+ .icns_tab_3 .row_6_15,
674
+ .icns_tab_3 .row_7_15,
675
+ .icns_tab_3 .row_8_15,
676
+ .icns_tab_3 .row_9_15,
677
+ .icns_tab_3 .row_10_15,
678
+ .icns_tab_3 .row_11_15,
679
+ .icns_tab_3 .row_12_15,
680
+ .icns_tab_3 .row_13_15,
681
+ .icns_tab_3 .row_14_15,
682
+ .icns_tab_3 .row_15_15,
683
+ .icns_tab_3 .row_16_15,
684
+
685
+ .icns_tab_3 .row_1_16,
686
+ .icns_tab_3 .row_2_16,
687
+ .icns_tab_3 .row_3_16,
688
+ .icns_tab_3 .row_4_16,
689
+ .icns_tab_3 .row_5_16,
690
+ .icns_tab_3 .row_6_16,
691
+ .icns_tab_3 .row_7_16,
692
+ .icns_tab_3 .row_8_16,
693
+ .icns_tab_3 .row_9_16,
694
+ .icns_tab_3 .row_10_16,
695
+ .icns_tab_3 .row_11_16,
696
+ .icns_tab_3 .row_12_16,
697
+ .icns_tab_3 .row_13_16,
698
+ .icns_tab_3 .row_14_16,
699
+ .icns_tab_3 .row_15_16,
700
+ .icns_tab_3 .row_16_16,
701
+
702
+ .icns_tab_3 .row_1_17,
703
+ .icns_tab_3 .row_2_17,
704
+ .icns_tab_3 .row_3_17,
705
+ .icns_tab_3 .row_4_17,
706
+ .icns_tab_3 .row_5_17,
707
+ .icns_tab_3 .row_6_17,
708
+ .icns_tab_3 .row_7_17,
709
+ .icns_tab_3 .row_8_17,
710
+ .icns_tab_3 .row_9_17,
711
+ .icns_tab_3 .row_10_17,
712
+ .icns_tab_3 .row_11_17,
713
+ .icns_tab_3 .row_12_17,
714
+ .icns_tab_3 .row_13_17,
715
+ .icns_tab_3 .row_14_17,
716
+ .icns_tab_3 .row_15_17,
717
+ .icns_tab_3 .row_16_17,
718
+
719
+ .icns_tab_3 .row_1_18,
720
+ .icns_tab_3 .row_2_18,
721
+ .icns_tab_3 .row_3_18,
722
+ .icns_tab_3 .row_4_18,
723
+ .icns_tab_3 .row_5_18,
724
+ .icns_tab_3 .row_6_18,
725
+ .icns_tab_3 .row_7_18,
726
+ .icns_tab_3 .row_8_18,
727
+ .icns_tab_3 .row_9_18,
728
+ .icns_tab_3 .row_10_18,
729
+ .icns_tab_3 .row_11_18,
730
+ .icns_tab_3 .row_12_18,
731
+ .icns_tab_3 .row_13_18,
732
+ .icns_tab_3 .row_14_18,
733
+ .icns_tab_3 .row_15_18,
734
+ .icns_tab_3 .row_16_18,
735
+ .icns_tab_3 .row_17_18,
736
+ .icns_tab_3 .row_15_14,
737
+ .icns_tab_3 .row_16_14 {
738
+ background: url(../images/tab_3_icns.png) no-repeat;
739
+ width: 53px;
740
+ height: 52px;
741
+ float: left;
742
+ margin: 0 4px 0 0;
743
+ }
744
+ .icns_tab_3 .row_1_1 {
745
+ background-position: -1px 0;
746
+ }
747
+ .icns_tab_3 .row_1_2 {
748
+ background-position: -60px 0;
749
+ }
750
+ .icns_tab_3 .row_1_3 {
751
+ background-position: -118px 0;
752
+ }
753
+ .icns_tab_3 .row_1_4 {
754
+ background-position: -176px 0;
755
+ }
756
+ .icns_tab_3 .row_1_5 {
757
+ background-position: -235px 0;
758
+ }
759
+ .icns_tab_3 .row_1_6 {
760
+ background-position: -293px 0;
761
+ }
762
+ .icns_tab_3 .row_1_7 {
763
+ background-position: -350px 0;
764
+ }
765
+ .icns_tab_3 .row_1_8 {
766
+ background-position: -409px 0;
767
+ }
768
+ .icns_tab_3 .row_1_9 {
769
+ background-position: -467px 0;
770
+ }
771
+ .icns_tab_3 .row_1_10 {
772
+ background-position: -526px 0;
773
+ }
774
+ .icns_tab_3 .row_1_11 {
775
+ background-position: -711px 0;
776
+ }
777
+
778
+ .icns_tab_3 .row_1_14 {
779
+ background-position: -773px 0;
780
+ }
781
+ .icns_tab_3 .row_1_15 {
782
+ background-position: -838px 0;
783
+ }
784
+ .icns_tab_3 .row_1_16 {
785
+ background-position: -909px 0;
786
+ }
787
+ .icns_tab_3 .row_1_17 {
788
+ background-position: -977px 0;
789
+ }
790
+ .icns_tab_3 .row_1_18 {
791
+ background: url(../images/icons_theme/default/default_wechat.png) no-repeat;
792
+ background-size: contain;
793
+ }.icns_tab_3 .row_2_1 {
794
+ background-position: 0 -74px;
795
+ }
796
+ .icns_tab_3 .row_2_2 {
797
+ background-position: -60px -74px;
798
+ }
799
+ .icns_tab_3 .row_2_3 {
800
+ background-position: -118px -74px;
801
+ }
802
+ .icns_tab_3 .row_2_4 {
803
+ background-position: -176px -74px;
804
+ }
805
+ .icns_tab_3 .row_2_5 {
806
+ background-position: -235px -74px;
807
+ }
808
+ .icns_tab_3 .row_2_6 {
809
+ background-position: -293px -74px;
810
+ }
811
+ .icns_tab_3 .row_2_7 {
812
+ background-position: -350px -74px;
813
+ }
814
+ .icns_tab_3 .row_2_8 {
815
+ background-position: -409px -74px;
816
+ }
817
+ .icns_tab_3 .row_2_9 {
818
+ background-position: -467px -74px;
819
+ }
820
+ .icns_tab_3 .row_2_10 {
821
+ background-position: -526px -74px;
822
+ }
823
+ .icns_tab_3 .row_2_11 {
824
+ background-position: -711px -74px;
825
+ }
826
+ .icns_tab_3 .row_2_14 {
827
+ background-position: -773px -74px;
828
+ }
829
+ .icns_tab_3 .row_2_15 {
830
+ background-position: -838px -74px;
831
+ }
832
+ .icns_tab_3 .row_2_16 {
833
+ background-position: -909px -74px;
834
+ }
835
+ .icns_tab_3 .row_2_17 {
836
+ background-position: -977px -74px;
837
+ }
838
+ .icns_tab_3 .row_2_18 {
839
+ background: url(../images/icons_theme/flat/flat_wechat.png) no-repeat;
840
+ background-size: contain;
841
+ }
842
+ .icns_tab_3 .row_3_1 {
843
+ background-position: 0 -146px;
844
+ }
845
+ .icns_tab_3 .row_3_2 {
846
+ background-position: -60px -146px;
847
+ }
848
+ .icns_tab_3 .row_3_3 {
849
+ background-position: -118px -146px;
850
+ }
851
+ .icns_tab_3 .row_3_4 {
852
+ background-position: -176px -146px;
853
+ }
854
+ .icns_tab_3 .row_3_5 {
855
+ background-position: -235px -146px;
856
+ }
857
+ .icns_tab_3 .row_3_6 {
858
+ background-position: -293px -146px;
859
+ }
860
+ .icns_tab_3 .row_3_7 {
861
+ background-position: -350px -146px;
862
+ }
863
+ .icns_tab_3 .row_3_8 {
864
+ background-position: -409px -146px;
865
+ }
866
+ .icns_tab_3 .row_3_9 {
867
+ background-position: -467px -146px;
868
+ }
869
+ .icns_tab_3 .row_3_10 {
870
+ background-position: -526px -146px;
871
+ }
872
+ .icns_tab_3 .row_3_11 {
873
+ background-position: -711px -147px;
874
+ }
875
+ .icns_tab_3 .row_3_14 {
876
+ background-position: -773px -147px;
877
+ }
878
+ .icns_tab_3 .row_3_15 {
879
+ background-position: -838px -147px;
880
+ }
881
+ .icns_tab_3 .row_3_16 {
882
+ background-position: -909px -147px;
883
+ }
884
+ .icns_tab_3 .row_3_17 {
885
+ background-position: -977px -147px;
886
+ }
887
+ .icns_tab_3 .row_3_18 {
888
+ background: url(../images/icons_theme/thin/thin_wechat.png) no-repeat;
889
+ background-size: contain;
890
+ }
891
+ .icns_tab_3 .row_4_1 {
892
+ background-position: 0 -222px;
893
+ }
894
+ .icns_tab_3 .row_4_2 {
895
+ background-position: -60px -222px;
896
+ }
897
+ .icns_tab_3 .row_4_3 {
898
+ background-position: -118px -222px;
899
+ }
900
+ .icns_tab_3 .row_4_4 {
901
+ background-position: -176px -222px;
902
+ }
903
+ .icns_tab_3 .row_4_5 {
904
+ background-position: -235px -222px;
905
+ }
906
+ .icns_tab_3 .row_4_6 {
907
+ background-position: -293px -222px;
908
+ }
909
+ .icns_tab_3 .row_4_7 {
910
+ background-position: -350px -222px;
911
+ }
912
+ .icns_tab_3 .row_4_8 {
913
+ background-position: -409px -222px;
914
+ }
915
+ .icns_tab_3 .row_4_9 {
916
+ background-position: -467px -222px;
917
+ }
918
+ .icns_tab_3 .row_4_10 {
919
+ background-position: -526px -222px;
920
+ }
921
+ .icns_tab_3 .row_4_11 {
922
+ background-position: -711px -222px;
923
+ }
924
+ .icns_tab_3 .row_4_14 {
925
+ background-position: -773px -222px;
926
+ }
927
+ .icns_tab_3 .row_4_15 {
928
+ background-position: -838px -222px;
929
+ }
930
+ .icns_tab_3 .row_4_16 {
931
+ background-position: -909px -222px;
932
+ }
933
+ .icns_tab_3 .row_4_17 {
934
+ background-position: -977px -222px;
935
+ }
936
+ .icns_tab_3 .row_4_18 {
937
+ background: url(../images/icons_theme/cute/cute_wechat.png) no-repeat;
938
+ background-size: contain;
939
+ }
940
+ .icns_tab_3 .row_5_1 {
941
+ background-position: 0 -296px;
942
+ }
943
+ .icns_tab_3 .row_5_2 {
944
+ background-position: -60px -296px;
945
+ }
946
+ .icns_tab_3 .row_5_3 {
947
+ background-position: -118px -296px;
948
+ }
949
+ .icns_tab_3 .row_5_4 {
950
+ background-position: -176px -296px;
951
+ }
952
+ .icns_tab_3 .row_5_5 {
953
+ background-position: -235px -296px;
954
+ }
955
+ .icns_tab_3 .row_5_6 {
956
+ background-position: -293px -296px;
957
+ }
958
+ .icns_tab_3 .row_5_7 {
959
+ background-position: -350px -296px;
960
+ }
961
+ .icns_tab_3 .row_5_8 {
962
+ background-position: -409px -296px;
963
+ }
964
+ .icns_tab_3 .row_5_9 {
965
+ background-position: -467px -296px;
966
+ }
967
+ .icns_tab_3 .row_5_10 {
968
+ background-position: -526px -296px;
969
+ }
970
+ .icns_tab_3 .row_5_11 {
971
+ background-position: -711px -296px;
972
+ }
973
+ .icns_tab_3 .row_5_14 {
974
+ background-position: -773px -296px;
975
+ }
976
+ .icns_tab_3 .row_5_15 {
977
+ background-position: -838px -296px;
978
+ }
979
+ .icns_tab_3 .row_5_16 {
980
+ background-position: -909px -296px;
981
+ }
982
+ .icns_tab_3 .row_5_17 {
983
+ background-position: -977px -296px;
984
+ }
985
+ .icns_tab_3 .row_5_18 {
986
+ background: url(../images/icons_theme/cubes/cubes_wechat.png);
987
+ background-size: contain;
988
+ }
989
+ .icns_tab_3 .row_6_1 {
990
+ background-position: 0 -370px;
991
+ }
992
+ .icns_tab_3 .row_6_2 {
993
+ background-position: -60px -370px;
994
+ }
995
+ .icns_tab_3 .row_6_3 {
996
+ background-position: -118px -370px;
997
+ }
998
+ .icns_tab_3 .row_6_4 {
999
+ background-position: -176px -370px;
1000
+ }
1001
+ .icns_tab_3 .row_6_5 {
1002
+ background-position: -235px -370px;
1003
+ }
1004
+ .icns_tab_3 .row_6_6 {
1005
+ background-position: -293px -370px;
1006
+ }
1007
+ .icns_tab_3 .row_6_7 {
1008
+ background-position: -350px -370px;
1009
+ }
1010
+ .icns_tab_3 .row_6_8 {
1011
+ background-position: -409px -370px;
1012
+ }
1013
+ .icns_tab_3 .row_6_9 {
1014
+ background-position: -468px -370px;
1015
+ }
1016
+ .icns_tab_3 .row_6_10 {
1017
+ background-position: -526px -370px;
1018
+ }
1019
+ .icns_tab_3 .row_6_11 {
1020
+ background-position: -711px -370px;
1021
+ }
1022
+ .icns_tab_3 .row_6_14 {
1023
+ background-position: -773px -370px;
1024
+ }
1025
+ .icns_tab_3 .row_6_15 {
1026
+ background-position: -838px -370px;
1027
+ }
1028
+ .icns_tab_3 .row_6_16 {
1029
+ background-position: -909px -370px;
1030
+ }
1031
+ .icns_tab_3 .row_6_17 {
1032
+ background-position: -977px -370px;
1033
+ }
1034
+ .icns_tab_3 .row_6_18 {
1035
+ background: url(../images/icons_theme/chrome_blue/chrome_blue_wechat.png);
1036
+ background-size: contain;
1037
+ }
1038
+ .icns_tab_3 .row_7_1 {
1039
+ background-position: 0 -444px;
1040
+ }
1041
+ .icns_tab_3 .row_7_2 {
1042
+ background-position: -60px -444px;
1043
+ }
1044
+ .icns_tab_3 .row_7_3 {
1045
+ background-position: -118px -444px;
1046
+ }
1047
+ .icns_tab_3 .row_7_4 {
1048
+ background-position: -176px -444px;
1049
+ }
1050
+ .icns_tab_3 .row_7_5 {
1051
+ background-position: -235px -444px;
1052
+ }
1053
+ .icns_tab_3 .row_7_6 {
1054
+ background-position: -293px -444px;
1055
+ }
1056
+ .icns_tab_3 .row_7_7 {
1057
+ background-position: -350px -444px;
1058
+ }
1059
+ .icns_tab_3 .row_7_8 {
1060
+ background-position: -409px -444px;
1061
+ }
1062
+ .icns_tab_3 .row_7_9 {
1063
+ background-position: -466px -444px;
1064
+ }
1065
+ .icns_tab_3 .row_7_10 {
1066
+ background-position: -526px -444px;
1067
+ }
1068
+ .icns_tab_3 .row_7_11 {
1069
+ background-position: -711px -444px;
1070
+ }
1071
+ .icns_tab_3 .row_7_14 {
1072
+ background-position: -773px -444px;
1073
+ }
1074
+ .icns_tab_3 .row_7_15 {
1075
+ background-position: -838px -444px;
1076
+ }
1077
+ .icns_tab_3 .row_7_16 {
1078
+ background-position: -909px -444px;
1079
+ }
1080
+ .icns_tab_3 .row_7_17 {
1081
+ background-position: -977px -444px;
1082
+ }
1083
+ .icns_tab_3 .row_7_18 {
1084
+ background: url(../images/icons_theme/chrome_grey/chrome_grey_wechat.png);
1085
+ background-size: contain;
1086
+ }
1087
+ .icns_tab_3 .row_8_1 {
1088
+ background-position: 0 -518px;
1089
+ }
1090
+ .icns_tab_3 .row_8_2 {
1091
+ background-position: -60px -518px;
1092
+ }
1093
+ .icns_tab_3 .row_8_3 {
1094
+ background-position: -118px -518px;
1095
+ }
1096
+ .icns_tab_3 .row_8_4 {
1097
+ background-position: -176px -518px;
1098
+ }
1099
+ .icns_tab_3 .row_8_5 {
1100
+ background-position: -235px -518px;
1101
+ }
1102
+ .icns_tab_3 .row_8_6 {
1103
+ background-position: -293px -518px;
1104
+ }
1105
+ .icns_tab_3 .row_8_7 {
1106
+ background-position: -350px -518px;
1107
+ }
1108
+ .icns_tab_3 .row_8_8 {
1109
+ background-position: -409px -518px;
1110
+ }
1111
+ .icns_tab_3 .row_8_9 {
1112
+ background-position: -467px -518px;
1113
+ }
1114
+ .icns_tab_3 .row_8_10 {
1115
+ background-position: -526px -518px;
1116
+ }
1117
+ .icns_tab_3 .row_8_11 {
1118
+ background-position: -711px -518px;
1119
+ }
1120
+ .icns_tab_3 .row_8_14 {
1121
+ background-position: -773px -518px;
1122
+ }
1123
+ .icns_tab_3 .row_8_15 {
1124
+ background-position: -838px -518px;
1125
+ }
1126
+ .icns_tab_3 .row_8_16 {
1127
+ background-position: -909px -518px;
1128
+ }
1129
+ .icns_tab_3 .row_8_17 {
1130
+ background-position: -977px -518px;
1131
+ }
1132
+ .icns_tab_3 .row_8_18 {
1133
+ background: url(../images/icons_theme/splash/splash_wechat.png);
1134
+ background-size: contain;
1135
+ }
1136
+ .icns_tab_3 .row_9_1 {
1137
+ background-position: 0 -592px;
1138
+ }
1139
+ .icns_tab_3 .row_9_2 {
1140
+ background-position: -60px -592px;
1141
+ }
1142
+ .icns_tab_3 .row_9_3 {
1143
+ background-position: -118px -592px;
1144
+ }
1145
+ .icns_tab_3 .row_9_4 {
1146
+ background-position: -176px -592px;
1147
+ }
1148
+ .icns_tab_3 .row_9_5 {
1149
+ background-position: -235px -592px;
1150
+ }
1151
+ .icns_tab_3 .row_9_6 {
1152
+ background-position: -293px -592px;
1153
+ }
1154
+ .icns_tab_3 .row_9_7 {
1155
+ background-position: -350px -592px;
1156
+ }
1157
+ .icns_tab_3 .row_9_8 {
1158
+ background-position: -409px -592px;
1159
+ }
1160
+ .icns_tab_3 .row_9_9 {
1161
+ background-position: -467px -592px;
1162
+ }
1163
+ .icns_tab_3 .row_9_10 {
1164
+ background-position: -526px -592px;
1165
+ }
1166
+ .icns_tab_3 .row_9_11 {
1167
+ background-position: -711px -592px;
1168
+ }
1169
+ .icns_tab_3 .row_9_14 {
1170
+ background-position: -773px -592px;
1171
+ }
1172
+ .icns_tab_3 .row_9_15 {
1173
+ background-position: -838px -592px;
1174
+ }
1175
+ .icns_tab_3 .row_9_16 {
1176
+ background-position: -909px -592px;
1177
+ }
1178
+ .icns_tab_3 .row_9_17 {
1179
+ background-position: -977px -592px;
1180
+ }
1181
+ .icns_tab_3 .row_9_18 {
1182
+ background: url(../images/icons_theme/orange/orange_wechat.png);
1183
+ background-size: contain;
1184
+ }
1185
+ .icns_tab_3 .row_10_1 {
1186
+ background-position: 0 -666px;
1187
+ }
1188
+ .icns_tab_3 .row_10_2 {
1189
+ background-position: -60px -666px;
1190
+ }
1191
+ .icns_tab_3 .row_10_3 {
1192
+ background-position: -118px -666px;
1193
+ }
1194
+ .icns_tab_3 .row_10_4 {
1195
+ background-position: -176px -666px;
1196
+ }
1197
+ .icns_tab_3 .row_10_5 {
1198
+ background-position: -235px -666px;
1199
+ }
1200
+ .icns_tab_3 .row_10_6 {
1201
+ background-position: -293px -666px;
1202
+ }
1203
+ .icns_tab_3 .row_10_7 {
1204
+ background-position: -350px -666px;
1205
+ }
1206
+ .icns_tab_3 .row_10_8 {
1207
+ background-position: -409px -666px;
1208
+ }
1209
+ .icns_tab_3 .row_10_9 {
1210
+ background-position: -467px -666px;
1211
+ }
1212
+ .icns_tab_3 .row_10_10 {
1213
+ background-position: -526px -666px;
1214
+ }
1215
+ .icns_tab_3 .row_10_11 {
1216
+ background-position: -711px -666px;
1217
+ }
1218
+ .icns_tab_3 .row_10_14 {
1219
+ background-position: -773px -666px;
1220
+ }
1221
+ .icns_tab_3 .row_10_15 {
1222
+ background-position: -838px -666px;
1223
+ }
1224
+ .icns_tab_3 .row_10_16 {
1225
+ background-position: -909px -666px;
1226
+ }
1227
+ .icns_tab_3 .row_10_17 {
1228
+ background-position: -977px -666px;
1229
+ }
1230
+ .icns_tab_3 .row_10_18 {
1231
+ background: url(../images/icons_theme/crystal/crystal_wechat.png);
1232
+ background-size: contain;
1233
+ }
1234
+ .icns_tab_3 .row_11_1 {
1235
+ background-position: 0 -740px;
1236
+ }
1237
+ .icns_tab_3 .row_11_2 {
1238
+ background-position: -60px -740px;
1239
+ }
1240
+ .icns_tab_3 .row_11_3 {
1241
+ background-position: -118px -740px;
1242
+ }
1243
+ .icns_tab_3 .row_11_4 {
1244
+ background-position: -176px -740px;
1245
+ }
1246
+ .icns_tab_3 .row_11_5 {
1247
+ background-position: -235px -740px;
1248
+ }
1249
+ .icns_tab_3 .row_11_6 {
1250
+ background-position: -293px -740px;
1251
+ }
1252
+ .icns_tab_3 .row_11_7 {
1253
+ background-position: -350px -740px;
1254
+ }
1255
+ .icns_tab_3 .row_11_8 {
1256
+ background-position: -409px -740px;
1257
+ }
1258
+ .icns_tab_3 .row_11_9 {
1259
+ background-position: -467px -740px;
1260
+ }
1261
+ .icns_tab_3 .row_11_10 {
1262
+ background-position: -526px -740px;
1263
+ }
1264
+ .icns_tab_3 .row_11_11 {
1265
+ background-position: -711px -740px;
1266
+ }
1267
+ .icns_tab_3 .row_11_14 {
1268
+ background-position: -773px -740px;
1269
+ }
1270
+ .icns_tab_3 .row_11_15 {
1271
+ background-position: -838px -740px;
1272
+ }
1273
+ .icns_tab_3 .row_11_16 {
1274
+ background-position: -909px -740px;
1275
+ }
1276
+ .icns_tab_3 .row_11_17 {
1277
+ background-position: -977px -740px;
1278
+ }
1279
+ .icns_tab_3 .row_11_18 {
1280
+ background: url(../images/icons_theme/glossy/glossy_wechat.png);
1281
+ background-size: contain;
1282
+ }
1283
+ .icns_tab_3 .row_12_1 {
1284
+ background-position: 0 -814px;
1285
+ }
1286
+ .icns_tab_3 .row_12_2 {
1287
+ background-position: -60px -814px;
1288
+ }
1289
+ .icns_tab_3 .row_12_3 {
1290
+ background-position: -118px -814px;
1291
+ }
1292
+ .icns_tab_3 .row_12_4 {
1293
+ background-position: -176px -814px;
1294
+ }
1295
+ .icns_tab_3 .row_12_5 {
1296
+ background-position: -235px -814px;
1297
+ }
1298
+ .icns_tab_3 .row_12_6 {
1299
+ background-position: -293px -814px;
1300
+ }
1301
+ .icns_tab_3 .row_12_7 {
1302
+ background-position: -350px -814px;
1303
+ }
1304
+ .icns_tab_3 .row_12_8 {
1305
+ background-position: -409px -814px;
1306
+ }
1307
+ .icns_tab_3 .row_12_9 {
1308
+ background-position: -467px -814px;
1309
+ }
1310
+ .icns_tab_3 .row_12_10 {
1311
+ background-position: -526px -814px;
1312
+ }
1313
+ .icns_tab_3 .row_12_11 {
1314
+ background-position: -711px -814px;
1315
+ }
1316
+ .icns_tab_3 .row_12_14 {
1317
+ background-position: -773px -814px;
1318
+ }
1319
+ .icns_tab_3 .row_12_15 {
1320
+ background-position: -838px -814px;
1321
+ }
1322
+ .icns_tab_3 .row_12_16 {
1323
+ background-position: -909px -814px;
1324
+ }
1325
+ .icns_tab_3 .row_12_17 {
1326
+ background-position: -977px -814px;
1327
+ }
1328
+ .icns_tab_3 .row_12_18 {
1329
+ background: url(../images/icons_theme/black/black_wechat.png);
1330
+ background-size: contain;
1331
+ }
1332
+ .icns_tab_3 .row_13_1 {
1333
+ background-position: 0 -888px;
1334
+ }
1335
+ .icns_tab_3 .row_13_2 {
1336
+ background-position: -60px -888px;
1337
+ }
1338
+ .icns_tab_3 .row_13_3 {
1339
+ background-position: -118px -888px;
1340
+ }
1341
+ .icns_tab_3 .row_13_4 {
1342
+ background-position: -176px -888px;
1343
+ }
1344
+ .icns_tab_3 .row_13_5 {
1345
+ background-position: -235px -888px;
1346
+ }
1347
+ .icns_tab_3 .row_13_6 {
1348
+ background-position: -293px -888px;
1349
+ }
1350
+ .icns_tab_3 .row_13_7 {
1351
+ background-position: -350px -888px;
1352
+ }
1353
+ .icns_tab_3 .row_13_8 {
1354
+ background-position: -409px -888px;
1355
+ }
1356
+ .icns_tab_3 .row_13_9 {
1357
+ background-position: -467px -888px;
1358
+ }
1359
+ .icns_tab_3 .row_13_10 {
1360
+ background-position: -526px -888px;
1361
+ }
1362
+ .icns_tab_3 .row_13_11 {
1363
+ background-position: -711px -888px;
1364
+ }
1365
+ .icns_tab_3 .row_13_14 {
1366
+ background-position: -773px -888px;
1367
+ }
1368
+ .icns_tab_3 .row_13_15 {
1369
+ background-position: -838px -888px;
1370
+ }
1371
+ .icns_tab_3 .row_13_16 {
1372
+ background-position: -909px -888px;
1373
+ }
1374
+ .icns_tab_3 .row_13_17 {
1375
+ background-position: -977px -888px;
1376
+ }
1377
+ .icns_tab_3 .row_13_18 {
1378
+ background: url(../images/icons_theme/silver/silver_wechat.png);
1379
+
1380
+ background-size: contain;
1381
+ }
1382
+ .icns_tab_3 .row_14_1 {
1383
+ background-position: 0 -962px;
1384
+ }
1385
+ .icns_tab_3 .row_14_2 {
1386
+ background-position: -60px -962px;
1387
+ }
1388
+ .icns_tab_3 .row_14_3 {
1389
+ background-position: -118px -962px;
1390
+ }
1391
+ .icns_tab_3 .row_14_4 {
1392
+ background-position: -176px -962px;
1393
+ }
1394
+ .icns_tab_3 .row_14_5 {
1395
+ background-position: -235px -962px;
1396
+ }
1397
+ .icns_tab_3 .row_14_6 {
1398
+ background-position: -293px -962px;
1399
+ }
1400
+ .icns_tab_3 .row_14_7 {
1401
+ background-position: -350px -962px;
1402
+ }
1403
+ .icns_tab_3 .row_14_8 {
1404
+ background-position: -409px -962px;
1405
+ }
1406
+ .icns_tab_3 .row_14_9 {
1407
+ background-position: -467px -962px;
1408
+ }
1409
+ .icns_tab_3 .row_14_10 {
1410
+ background-position: -526px -962px;
1411
+ }
1412
+ .icns_tab_3 .row_14_11 {
1413
+ background-position: -711px -962px;
1414
+ }
1415
+ .icns_tab_3 .row_14_14 {
1416
+ background-position: -773px -962px;
1417
+ }
1418
+ .icns_tab_3 .row_14_15 {
1419
+ background-position: -838px -962px;
1420
+ }
1421
+ .icns_tab_3 .row_14_16 {
1422
+ background-position: -909px -962px;
1423
+ }
1424
+ .icns_tab_3 .row_14_17 {
1425
+ background-position: -977px -962px;
1426
+ }
1427
+ .icns_tab_3 .row_14_18 {
1428
+ background: url(../images/icons_theme/shaded_dark/shaded_dark_wechat.png);
1429
+
1430
+ background-size: contain;
1431
+ }
1432
+ .icns_tab_3 .row_15_1 {
1433
+ background-position: 0 -1036px;
1434
+ }
1435
+ .icns_tab_3 .row_15_2 {
1436
+ background-position: -60px -1036px;
1437
+ }
1438
+ .icns_tab_3 .row_15_3 {
1439
+ background-position: -118px -1036px;
1440
+ }
1441
+ .icns_tab_3 .row_15_4 {
1442
+ background-position: -176px -1036px;
1443
+ }
1444
+ .icns_tab_3 .row_15_5 {
1445
+ background-position: -235px -1036px;
1446
+ }
1447
+ .icns_tab_3 .row_15_6 {
1448
+ background-position: -293px -1036px;
1449
+ }
1450
+ .icns_tab_3 .row_15_7 {
1451
+ background-position: -350px -1036px;
1452
+ }
1453
+ .icns_tab_3 .row_15_8 {
1454
+ background-position: -409px -1036px;
1455
+ }
1456
+ .icns_tab_3 .row_15_9 {
1457
+ background-position: -467px -1036px;
1458
+ }
1459
+ .icns_tab_3 .row_15_10 {
1460
+ background-position: -526px -1036px;
1461
+ }
1462
+ .icns_tab_3 .row_15_11 {
1463
+ background-position: -711px -1036px;
1464
+ }
1465
+ .icns_tab_3 .row_15_14 {
1466
+ background-position: -773px -1036px;
1467
+ }
1468
+ .icns_tab_3 .row_15_15 {
1469
+ background-position: -838px -1036px;
1470
+ }
1471
+ .icns_tab_3 .row_15_16 {
1472
+ background-position: -909px -1036px;
1473
+ }
1474
+ .icns_tab_3 .row_15_17 {
1475
+ background-position: -977px -1036px;
1476
+ }
1477
+ .icns_tab_3 .row_15_18 {
1478
+ background: url(../images/icons_theme/shaded_light/shaded_light_wechat.png);
1479
+ background-size: contain;
1480
+ }
1481
+ .icns_tab_3 .row_16_1 {
1482
+ background-position: 0 -1109px;
1483
+ }
1484
+ .icns_tab_3 .row_16_2 {
1485
+ background-position: -60px -1109px;
1486
+ }
1487
+ .icns_tab_3 .row_16_3 {
1488
+ background-position: -118px -1109px;
1489
+ }
1490
+ .icns_tab_3 .row_16_4 {
1491
+ background-position: -176px -1109px;
1492
+ }
1493
+ .icns_tab_3 .row_16_5 {
1494
+ background-position: -235px -1109px;
1495
+ }
1496
+ .icns_tab_3 .row_16_6 {
1497
+ background-position: -293px -1109px;
1498
+ }
1499
+ .icns_tab_3 .row_16_7 {
1500
+ background-position: -350px -1109px;
1501
+ }
1502
+ .icns_tab_3 .row_16_8 {
1503
+ background-position: -409px -1109px;
1504
+ }
1505
+ .icns_tab_3 .row_16_9 {
1506
+ background-position: -467px -1109px;
1507
+ }
1508
+ .icns_tab_3 .row_16_10 {
1509
+ background-position: -526px -1109px;
1510
+ }
1511
+ .icns_tab_3 .row_16_11 {
1512
+ background-position: -711px -1109px;
1513
+ }
1514
+ .icns_tab_3 .row_16_14 {
1515
+ background-position: -773px -1109px;
1516
+ }
1517
+ .icns_tab_3 .row_16_15 {
1518
+ background-position: -838px -1109px;
1519
+ }
1520
+ .icns_tab_3 .row_16_16 {
1521
+ background-position: -909px -1109px;
1522
+ }
1523
+ .icns_tab_3 .row_16_17 {
1524
+ background-position: -977px -1109px;
1525
+ }
1526
+ .icns_tab_3 .row_16_18 {
1527
+ background: url(../images/icons_theme/transparent/transparent_wechat.png);
1528
+ background-size: contain;
1529
+ }
1530
+
1531
+ /*tab 6 css*/
1532
+ .tab6 .social_icon_like1 {
1533
+ width: 100%;
1534
+ float: left;
1535
+ margin: 0;
1536
+ padding: 35px 0 0;
1537
+ text-align: center;
1538
+ }
1539
+ .tab6 .social_icon_like1 ul {
1540
+ margin: 0;
1541
+ padding: 0;
1542
+ list-style: none;
1543
+ text-align: center;
1544
+ }
1545
+ .tab6 .social_icon_like1 li {
1546
+ margin: 0 10px 0 0;
1547
+ padding: 0;
1548
+ width: auto;
1549
+ list-style: none;
1550
+ display: inline-block;
1551
+ }
1552
+ .tab6 .social_icon_like1 li span {
1553
+ margin: 0;
1554
+ width: 44px;
1555
+ display: block;
1556
+ background: url(../images/count_bg1.png) no-repeat;
1557
+ height: 22px;
1558
+ overflow: hidden;
1559
+ padding: 2px 2px 2px 10px;
1560
+ font-family: helveticaregular;
1561
+ font-size: 15px;
1562
+ text-align: center;
1563
+ line-height: 20px;
1564
+ color: #5a6570;
1565
+ float: left;
1566
+ }
1567
+ .tab6 .social_icon_like1 li img {
1568
+ float: left;
1569
+ margin-right: 5px;
1570
+ display: block;
1571
+ }
1572
+ .tab6 .social_icon_like1 li a {
1573
+ color: #5a6570;
1574
+ text-decoration: none;
1575
+ display: block;
1576
+ }
1577
+ .tab6 ul.usually {
1578
+ margin: 7px 0 6px 60px;
1579
+ padding: 0;
1580
+ list-style: none;
1581
+ }
1582
+ .tab6 ul.usually li {
1583
+ margin: 0;
1584
+ padding: 0;
1585
+ width: auto;
1586
+ list-style: none;
1587
+ text-align: left;
1588
+ font-size: 17px;
1589
+ color: #5a6570;
1590
+ }
1591
+ .tab6 ul.enough_waffling {
1592
+ margin: 9px 0 0;
1593
+ padding: 0;
1594
+ list-style: none;
1595
+ text-align: center;
1596
+ }
1597
+ .tab6 ul.enough_waffling li {
1598
+ margin: 0 22px;
1599
+ padding: 0;
1600
+ list-style: none;
1601
+ display: inline-block;
1602
+ }
1603
+ .tab6 ul.enough_waffling li span {
1604
+ float: left;
1605
+ }
1606
+ .tab6 ul.enough_waffling li label {
1607
+ margin: 0 0 0 20px;
1608
+ float: left;
1609
+ font-family: helveticaregular;
1610
+ font-size: 18px;
1611
+ font-weight: 400;
1612
+ text-align: center;
1613
+ line-height: 38px;
1614
+ color: #5a6570;
1615
+ }
1616
+ .tab6 .row {
1617
+ border-top: 1px solid #eaebee;
1618
+ margin-top: 25px;
1619
+ padding-top: 15px;
1620
+ clear: both;
1621
+ display: block;
1622
+ width: 100%;
1623
+ float: left;
1624
+ font-family: "Helvetica CE 35 Thin";
1625
+ line-height: 42px;
1626
+ }
1627
+ .tab6 .options {
1628
+ margin-top: 25px;
1629
+ clear: both;
1630
+ width: 100%;
1631
+ float: left;
1632
+ }
1633
+ .tab6 .options label {
1634
+ width: 345px;
1635
+ float: left;
1636
+ font-size: 17px;
1637
+ /*font-family: helveticaregular;*/
1638
+ font-family: 'helveticaneue-light';
1639
+ color: #5a6570;
1640
+ line-height: 46px;
1641
+ }
1642
+ .tab6 .options label.first {
1643
+ /*font-family: helveticaregular;*/
1644
+
1645
+ font-family: 'helveticaneue-light';
1646
+ font-size: 17px;
1647
+ }
1648
+ .tab6 .options input {
1649
+ width: 308px;
1650
+ float: left;
1651
+ background: #e5e5e5;
1652
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1653
+ border: 0;
1654
+ padding: 10px;
1655
+ }
1656
+ .tab6 .options .field {
1657
+
1658
+ float: left;
1659
+ position: relative;
1660
+ }
1661
+ .tab6 .options .field .select {
1662
+ width: 207px;
1663
+ background: url(../images/select_bg1.jpg) no-repeat;
1664
+ display: block;
1665
+ padding-left: 17px;
1666
+ font-family: helveticaregular;
1667
+ }.tab6 .cstmdsplyulwpr .radio_section.tb_4_ck { float: left;
1668
+
1669
+ width: auto;
1670
+ }
1671
+ .tab6 .social_icon_like1 li span.checkbox {
1672
+ background: rgba(0, 0, 0, 0) url(../images/check_bg.jpg) no-repeat scroll 0 0;
1673
+ display: inherit;
1674
+ height: 31px;
1675
+ width: 31px;
1676
+ }
1677
+ .tab6 .cstmdsplyulwpr a {
1678
+ margin-top: 3px;
1679
+ float: left;
1680
+ }
1681
+ /*tab 7 css*/
1682
+ .tab7 h3 {
1683
+ margin: 14px 0 6px;
1684
+ padding: 0;
1685
+ /* color: #a7a9ac;*/
1686
+ color: #414951;
1687
+ /* font-family: helveticaregular;*/
1688
+ font-family: 'helveticaneue-light';
1689
+ /* font-size: 20px;*/
1690
+ font-size: 18px;
1691
+ text-align: left;
1692
+ }
1693
+
1694
+ .tab7 .close {
1695
+ position: absolute;
1696
+ right: 18px;
1697
+ top: 18px;
1698
+ }
1699
+ .tab7 .text_options {
1700
+ width: 500px;
1701
+ float: left;
1702
+ }
1703
+ .tab7 .text_options.layout {
1704
+ margin-left: -25px;
1705
+ }
1706
+ .tab7 .row_tab {
1707
+ margin-top: 10px;
1708
+ width: 100%;
1709
+ float: left;
1710
+ }
1711
+ .tab7 .text_options label {
1712
+ width: 121px;
1713
+ float: left;
1714
+ line-height: 46px;
1715
+ font-size: 18px;
1716
+ }
1717
+ .tab7 .text_options.layout label {
1718
+ line-height: 20px;
1719
+ font-size: 18px;
1720
+ }
1721
+ .tab7 .text_options.layout label.border {
1722
+ line-height: 46px;
1723
+ }
1724
+ .tab7 .text_options input {
1725
+ width: 274px;
1726
+ float: left;
1727
+ background: #e5e5e5;
1728
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1729
+ border: 0;
1730
+ padding: 13px 10px;
1731
+ font-size: 17px;
1732
+ color: #5a6570;
1733
+ }
1734
+ .tab7 .text_options input.small {
1735
+ width: 50px;
1736
+ }
1737
+ .tab7 .text_options .field {
1738
+ width: 223px;
1739
+ float: left;
1740
+ position: relative;
1741
+ }
1742
+ .tab7 .text_options .field .select {
1743
+ width: 183px;
1744
+ padding-right: 21px;
1745
+ height: 47px;
1746
+ background: url(../images/select_bg1.jpg) no-repeat;
1747
+ display: block;
1748
+ padding-left: 10px;
1749
+ line-height: 46px;
1750
+ font-size: 17px;
1751
+ color: #414951;
1752
+ }
1753
+ .tab7 .text_options .field select.styled {
1754
+ position: absolute;
1755
+ left: 0;
1756
+ top: 0;
1757
+ width: 213px;
1758
+ line-height: 46px;
1759
+ height: 46px;
1760
+ }
1761
+ .tab7 .color_box {
1762
+ width: 40px;
1763
+ height: 34px;
1764
+ border: 3px solid #fff;
1765
+ box-shadow: 1px 2px 2px #ccc;
1766
+ float: left;
1767
+ position: relative;
1768
+ margin-left: 13px;
1769
+ }
1770
+ .tab7 .color_box1 {
1771
+ width: 100%;
1772
+ height: 34px;
1773
+ background: #5a6570;
1774
+ box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
1775
+ }
1776
+ .tab7 .corner {
1777
+ width: 10px;
1778
+ height: 10px;
1779
+ background: #fff;
1780
+ position: absolute;
1781
+ right: 0;
1782
+ bottom: 0;
1783
+ }
1784
+ .tab7 ul.border_shadow {
1785
+ margin: 0;
1786
+ padding: 5px 0 0;
1787
+ list-style: none;
1788
+ float: left;
1789
+ width: 257px;
1790
+ }
1791
+ .tab7 ul.border_shadow li {
1792
+ margin: 0;
1793
+ padding: 0 0 0 40px;
1794
+ list-style: none;
1795
+ float: left;
1796
+ }
1797
+ .tab7 ul.border_shadow li:first-child {
1798
+ padding: 0;
1799
+ }
1800
+ .tab7 ul.border_shadow li span {
1801
+ float: left;
1802
+ }
1803
+ .tab7 ul.border_shadow li label {
1804
+ float: left;
1805
+ width: auto;
1806
+ font-family: helveticaregular;
1807
+ font-size: 18px;
1808
+ font-weight: 400;
1809
+ text-align: center;
1810
+ line-height: 40px !important;
1811
+ color: #5a6570;
1812
+ padding: 0 0 0 20px;
1813
+ }
1814
+ .tab7 .row {
1815
+ border-top: 1px solid #eaebee;
1816
+ margin-top: 25px;
1817
+ padding-top: 15px;
1818
+ clear: both;
1819
+ display: block;
1820
+ width: 100%;
1821
+ float: left;
1822
+ font-family: helveticaregular;
1823
+ line-height: 42px;
1824
+ }
1825
+ .tab7 .pop_up_show {
1826
+ width: 100%;
1827
+ float: left;
1828
+ margin-top: 20px;
1829
+ }
1830
+ .tab7 .pop_up_show span {
1831
+ float: left;
1832
+ }
1833
+ .tab7 .pop_up_show label {
1834
+ float: left;
1835
+ width: auto;
1836
+ font-size: 18px;
1837
+ font-weight: 400;
1838
+ text-align: center;
1839
+ line-height: 38px !important;
1840
+ color: #5a6570;
1841
+ padding: 0 0 0 20px;
1842
+ }
1843
+ .tab7 .pop_up_show input.add {
1844
+ width: 257px;
1845
+ float: left;
1846
+ background: #e5e5e5;
1847
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1848
+ border: 0;
1849
+ padding: 10px;
1850
+ margin-left: 40px;
1851
+ }
1852
+ .tab7 .pop_up_show input.seconds {
1853
+ width: 60px;
1854
+ background: #e5e5e5;
1855
+ box-shadow: 2px 2px 3px #dcdcdc inset;
1856
+ border: 0;
1857
+ padding: 10px;
1858
+ margin: 0 7px;
1859
+ }
1860
+ .tab7 .pop_up_show a {
1861
+ text-decoration: underline;
1862
+ color: #a4a9ad;
1863
+ font-size: 16px;
1864
+ margin-left: 20px;
1865
+ }
1866
+ .tab7 .pop_up_show .field {
1867
+ width: 135px;
1868
+ float: left;
1869
+ position: relative;
1870
+ margin-left: 20px;
1871
+ font-size: 17px;
1872
+ font-family: helveticaregular;
1873
+ }
1874
+ .tab7 .pop_up_show .field .select {
1875
+ width: 127px;
1876
+ height: 48px;
1877
+ background: url(../images/select_bg.jpg) no-repeat;
1878
+ display: block;
1879
+ padding-left: 10px;
1880
+ line-height: 46px;
1881
+ font-size: 16px;
1882
+ color: #5a6570;
1883
+ }
1884
+ .tab7 .pop_up_show .field select.styled {
1885
+ position: absolute;
1886
+ left: 0;
1887
+ top: 0;
1888
+ width: 135px;
1889
+ line-height: 46px;
1890
+ height: 46px;
1891
+ }
1892
+ /*tab 8 css*/
1893
+ .tab8 .sfsi_tab8_container {
1894
+ width: 100%;
1895
+ float: left;
1896
+ }
1897
+ .tab8 .sfsi_tab8_subcontainer {
1898
+ float: left;
1899
+ padding: 20px 0;
1900
+ width: 100%;
1901
+ }
1902
+ .tab8 h3.sfsi_section_title {
1903
+ font-weight: bold;
1904
+ }
1905
+ .tab8 .like_pop_box {
1906
+ width: 100%;
1907
+ margin: 35px auto auto;
1908
+ position: relative;
1909
+ text-align: center;
1910
+ }
1911
+ .tab8 .like_pop_box h2 {
1912
+ font-family: helveticabold;
1913
+ text-align: center;
1914
+ color: #414951;
1915
+ font-size: 26px;
1916
+ }
1917
+ .tab8 .sfsi_subscribe_Popinner {
1918
+ display: inline-block;
1919
+ padding: 18px 20px;
1920
+ -webkit-box-shadow: 0 0 5px #ccc;
1921
+ border: 1px solid #ededed;
1922
+ background: #FFF;
1923
+ position: relative;
1924
+ }
1925
+ .tab8 .sfsi_subscribe_Popinner .form-overlay {
1926
+ height: 100%;
1927
+ left: 0;
1928
+ position: absolute;
1929
+ top: 0;
1930
+ width: 100%;
1931
+ }
1932
+ .tab8 .like_pop_box .sfsi_subscribe_Popinner {
1933
+ box-shadow: 0 0 5px #ccc;
1934
+ }
1935
+ .tab8 .like_pop_box .sfsi_subscribe_Popinner h5 {
1936
+ margin: 0 0 10px;
1937
+ padding: 0;
1938
+ color: #414951;
1939
+ font-size: 22px;
1940
+ text-align: center;
1941
+ }
1942
+ .tab8 .sfsi_subscribe_Popinner h5 {
1943
+ margin: 0 0 10px;
1944
+ padding: 0;
1945
+ color: #414951;
1946
+ font-size: 18px;
1947
+ text-align: center;
1948
+ }
1949
+ .tab8 .sfsi_subscription_form_field {
1950
+ float: left;
1951
+ margin: 5px 0;
1952
+ width: 100%;
1953
+ }
1954
+ .tab8 .sfsi_subscription_form_field input {
1955
+ padding: 10px 0px;
1956
+ text-align: center;
1957
+ width: 100%;
1958
+ }
1959
+ .tab8 .sfsi_tab8_subcontainer label.sfsi_label_text {
1960
+ float: left;
1961
+ margin: 10px 0;
1962
+ width: 100%;
1963
+ }
1964
+ .tab8 ul.sfsi_form_info {
1965
+ list-style: none !important;
1966
+ margin-left: 32px;
1967
+ }
1968
+ .tab8 ul.sfsi_form_info li {
1969
+ margin: 3px 0;
1970
+ }
1971
+ .tab8 .sfsi_subscription_html {
1972
+ background-color: #e5e5e5;
1973
+ float: left;
1974
+ margin: 12px 0 0 30px;
1975
+ width: 90%;
1976
+ }
1977
+ .tab8 .sfsi_seprater {
1978
+ border-bottom: 1px solid #ccc;
1979
+ }
1980
+ .tab8 .sfsi_tab8_subcontainer h5.sfsi_section_subtitle {
1981
+ float: left;
1982
+ font-size: 18px;
1983
+ margin: 5px 0;
1984
+ width: 100%;
1985
+ }
1986
+ .tab8 .sfsi_left_container {
1987
+ margin-top: 30px;
1988
+ text-align: center;
1989
+ width: 24%;
1990
+ display: inline-block;
1991
+ }
1992
+ .tab8 .sfsi_right_container {
1993
+ display: inline-block;
1994
+ margin-top: 30px;
1995
+ padding: 0 20px;
1996
+ vertical-align: top;
1997
+ width: 72%;
1998
+ }
1999
+ .tab8 .row_tab {
2000
+ display: inline-block;
2001
+ margin-bottom: 30px;
2002
+ width: 100%;
2003
+ }
2004
+ .tab8 .row_tab label {
2005
+ color: #5a6570;
2006
+ font-size: 16px;
2007
+ }
2008
+ .tab8 .row_tab div.sfsi_field {
2009
+ display: inline-block;
2010
+ vertical-align: middle;
2011
+ width: auto;
2012
+ margin-right: 25px;
2013
+ padding-top: 10px;
2014
+ }
2015
+ .tab8 .color_box {
2016
+ width: 40px;
2017
+ height: 34px;
2018
+ border: 3px solid #fff;
2019
+ box-shadow: 1px 2px 2px #ccc;
2020
+ float: right;
2021
+ position: relative;
2022
+ margin-left: 13px;
2023
+ }
2024
+ .tab8 .color_box1 {
2025
+ width: 100%;
2026
+ height: 34px;
2027
+ background: #5a6570;
2028
+ box-shadow: 1px -2px 15px -2px #d3d3d3 inset;
2029
+ }
2030
+ .tab8 .corner {
2031
+ width: 10px;
2032
+ height: 10px;
2033
+ background: #fff;
2034
+ position: absolute;
2035
+ right: 0;
2036
+ bottom: 0;
2037
+ }
2038
+ .tab8 .sfsi_right_container label {
2039
+ color: #5a6570;
2040
+ font-size: 18px;
2041
+ }
2042
+ .tab8 label.sfsi_heding {
2043
+ display: inline-block;
2044
+ /* font-weight: bold; */
2045
+ padding-top: 10px;
2046
+ width: 303px;
2047
+ }
2048
+ .tab8 .border_shadow {
2049
+ display: inline-block;
2050
+ vertical-align: top;
2051
+ }
2052
+ .tab8 .border_shadow li {
2053
+ display: inline-block;
2054
+ vertical-align: top;
2055
+ padding-right: 20px;
2056
+ }
2057
+ .tab8 .border_shadow li span {
2058
+ vertical-align: middle;
2059
+ }
2060
+ .tab8 .border_shadow .radio {
2061
+ margin-right: 5px;
2062
+ }
2063
+ .tab8 .sfsi_field .rec-inp {
2064
+ background: #e5e5e5 none repeat scroll 0 0;
2065
+ height: 44px;
2066
+ text-align: center;
2067
+ width: 54px;
2068
+ }
2069
+ .tab8 .pix {
2070
+ color: #5a6570;
2071
+ font-size: 18px;
2072
+ vertical-align: middle;
2073
+ }
2074
+ .tab8 .sfsi_heding.autowidth {
2075
+ width: auto;
2076
+ margin-right: 15px;
2077
+ }
2078
+ .tab8 .sfsi_heding.fixwidth {
2079
+ width: 80px;
2080
+ }
2081
+ .tab8 .small {
2082
+ background-color: #e5e5e5;
2083
+ height: 44px;
2084
+ width: 200px;
2085
+ }
2086
+ .tab8 .small.new-inp {
2087
+ background-color: #e5e5e5;
2088
+ height: 44px;
2089
+ width: 277px;
2090
+ }
2091
+ .tab8 .small.color-code {
2092
+ width: 138px !important;
2093
+ }
2094
+ .tab8 .select-same {
2095
+ border: 1px solid #d6d6d6;
2096
+ height: 47px !important;
2097
+ width: 171px;
2098
+ appearance: none;
2099
+ -moz-appearance: none;
2100
+ -webkit-appearance: none;
2101
+ background-image: url(images/select-arrow.png);
2102
+ background-repeat: no-repeat;
2103
+ background-position: right 15px center;
2104
+ }
2105
+ .sfsi_mainContainer .tab8 .sfsi_same_width {
2106
+ display: inline-block;
2107
+ width: 100px !important;
2108
+ }
2109
+ .sfsi_mainContainer .tab7 .wp-picker-container input {
2110
+ background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
2111
+ border: 1px solid #ccc !important;
2112
+ box-shadow: none !important;
2113
+ float: left !important;
2114
+ height: auto !important;
2115
+ padding: 0 !important;
2116
+ width: auto !important;
2117
+ }
2118
+ .sfsi_mainContainer .tab7 .wp-picker-container input[type="text"] {
2119
+ padding: 3px !important;
2120
+ }
2121
+ .sfsi_mainContainer .tab7 .wp-picker-container input[type="button"] {
2122
+ padding: 0 5px !important;
2123
+ }
2124
+ .sfsi_mainContainer .tab7 .wp-picker-open .wp-picker-input-wrap,
2125
+ .sfsi_mainContainer .tab8 .wp-picker-open .wp-picker-input-wrap {
2126
+ vertical-align: middle !important;
2127
+ }
2128
+ .sfsi_mainContainer .tab7 .wp-color-result,
2129
+ .sfsi_mainContainer .tab8 .wp-color-result {
2130
+ margin: 0 6px 0 0 !important;
2131
+ }
2132
+ .sfsi_mainContainer .tab7 .wp-picker-holder,
2133
+ .sfsi_mainContainer .tab8 .wp-picker-holder {
2134
+ position: absolute !important;
2135
+ z-index: 999;
2136
+ }
2137
+ .sfsi_mainContainer .sfsi_subscribe_Popinner .sfsi_highlight {
2138
+ border: 3px solid red !important;
2139
+ }
2140
+ .sfsi_mainContainer .sfsi_subscription_html xmp {
2141
+ display: block;
2142
+ padding: 0 10px;
2143
+ white-space: pre-line;
2144
+ word-wrap: break-word;
2145
+ }
2146
+ ul.sfsi_floaticon_margin_sec {
2147
+ float: left;
2148
+ width: 600px;
2149
+ }
2150
+ ul.sfsi_floaticon_margin_sec li {
2151
+ float: left;
2152
+ width: 300px;
2153
+ margin-bottom: 20px;
2154
+ }
2155
+ ul.sfsi_floaticon_margin_sec label {
2156
+ float: left;
2157
+ font-size: 17px;
2158
+ padding-right: 20px;
2159
+ width: 65px;
2160
+ }
2161
+ ul.sfsi_floaticon_margin_sec li input {
2162
+ background-color: #E5E5E5;
2163
+ border: medium none;
2164
+ box-shadow: none;
2165
+ padding: 14px 8px;
2166
+ width: 80px;
2167
+ float: left;
2168
+ }
2169
+ ul.sfsi_floaticon_margin_sec li ins {
2170
+ float: left;
2171
+ font-size: 17px;
2172
+ font-weight: 400;
2173
+ margin-left: 15px;
2174
+ text-decoration: none;
2175
+ }
2176
+ .custom-img img,
2177
+ .custom_section img,
2178
+ .custom_iconOrder img,
2179
+ .sample_icons img {
2180
+ width: 51px;
2181
+ }
2182
+ .cstomskins_upload span.sfsi-bgimage {
2183
+ background-size: 51px 51px !important;
2184
+ }
2185
+
2186
+ .sfsi_feedClaimingOverlay h1 {
2187
+ font-size: 22px !important;
2188
+ font-weight: bolder !important;
2189
+ margin-top: 7px !important;
2190
+ }
2191
+ .sfsi_feedClaimingOverlay input[type="email"] {
2192
+ font-size: 16px;
2193
+ margin: 26px 0 0;
2194
+ padding: 10px 0;
2195
+ text-align: center;
2196
+ width: 100%;
2197
+ color: #bebebe !important;
2198
+ box-shadow: none;
2199
+ }
2200
+ .sfsi_feedClaimingOverlay input[type="email"]::-webkit-input-placeholder {
2201
+ color: #bebebe !important;
2202
+ }
2203
+ .sfsi_feedClaimingOverlay input[type="email"]:-moz-placeholder {
2204
+ /* Firefox 18- */
2205
+ color: #bebebe !important;
2206
+ }
2207
+ .sfsi_feedClaimingOverlay input[type="email"]::-moz-placeholder {
2208
+ /* Firefox 19+ */
2209
+ color: #bebebe !important;
2210
+ }
2211
+ .sfsi_feedClaimingOverlay input[type="email"]:-ms-input-placeholder {
2212
+ color: #bebebe !important;
2213
+ }
2214
+ .sfsi_feedClaimingOverlay .save_button {
2215
+ padding: 0 !important;
2216
+ width: 100%;
2217
+ }
2218
+ .sfsi_feedClaimingOverlay .save_button a#getMeFullAccess {
2219
+ border-radius: 4px;
2220
+ font-size: 18px;
2221
+ font-weight: bolder;
2222
+ }
2223
+ .sfsi_feedClaimingOverlay .sfsicloseBtn {
2224
+ right: 8px !important;
2225
+ top: 8px !important;
2226
+ }
2227
+ .sfsi_feedClaimingOverlay p {
2228
+ text-align: center !important;
2229
+ font-size: 12px !important;
2230
+ line-height: 23px !important;
2231
+ padding: 18px 0 0 !important;
2232
+ color: #bebebe !important;
2233
+ }
2234
+ .sfsi_feedClaimingOverlay p a {
2235
+ display: inline-block;
2236
+ font-size: 12px;
2237
+ margin: 0;
2238
+ padding: 0;
2239
+ width: auto;
2240
+ color: #274da3 !important;
2241
+ }
2242
+ .sfsi_feedClaimingOverlay .pop_up_box {
2243
+ padding: 25px 30px !important;
2244
+ width: 435px !important;
2245
+ min-height: 220px;
2246
+ }
2247
+
2248
+ @media (max-width:1160px) {
2249
+ .sfsi_subscription_html xmp {
2250
+ display: block;
2251
+ padding: 0 10px;
2252
+ white-space: pre-line;
2253
+ word-wrap: break-word;
2254
+ }
2255
+ }
2256
+ @media (max-width:1350px) {
2257
+ .tab8 .sfsi_left_container {
2258
+ width: 100% !important;
2259
+ }
2260
+
2261
+ .tab8 .sfsi_right_container {
2262
+ width: 100%;
2263
+ }
2264
+
2265
+ .tab8 .border_shadow {
2266
+ margin-top: 10px;
2267
+ }
2268
+
2269
+ .tab8 .row_tab div.sfsi_field {
2270
+ margin-bottom: 10px;
2271
+ }
2272
+
2273
+ }
2274
+ @media (max-width:770px) {
2275
+ #sfsi_form_heading_fontstyle {
2276
+ margin-left: 19px !important;
2277
+ margin-top: 10px !important;
2278
+ }
2279
+ }
2280
+
2281
+ /* premium plugin features */
2282
+ .tab5 .icons_prem_disc {
2283
+ float: left;
2284
+ padding-top: 20px;
2285
+ }
2286
+ .sfsi_prem_fbpgiddesc {
2287
+ font-size: 14px;
2288
+ padding: 4px 0 0 60px;
2289
+ width: 42%;
2290
+ float: right;
2291
+ line-height: 22px;
2292
+ color: #080808;
2293
+ }
2294
+ .instagram_userLi p.sfsi_shared_premium {
2295
+ float: right;
2296
+ width: 41%;
2297
+ line-height: 20px;
2298
+ color: #1f1d1d;
2299
+ font-size: 13px;
2300
+ }
2301
+ .sfsi_facebook_pagedeasc {
2302
+ font-size: 14px;
2303
+ padding: 15px 0 0 60px;
2304
+ width: 42%;
2305
+ float: right;
2306
+ line-height: 22px;
2307
+ color: #080808;
2308
+ }
2309
+
2310
+ .sf_si_default_design ul li {
2311
+ width: auto !important;
2312
+ display: inline-block;
2313
+ float: none !important;
2314
+ }.sf_si_our_prmium_plugin-add,
2315
+ .sfsi_prem_icons_added {
2316
+ background: #f3faf6;
2317
+ border: 1px solid #12a252;
2318
+ padding: 25px 38px 35px 40px;
2319
+ clear: both;
2320
+ }
2321
+ .sf_si_prmium_head h2 {
2322
+ font-size: 26px;
2323
+ color: #000;
2324
+ font-weight: bold;
2325
+ padding-bottom: 13px;
2326
+ margin-top: 0;
2327
+ }
2328
+
2329
+ .sfsi_new_prmium_follw {
2330
+ background: #f3faf6;
2331
+ border: 1px solid #12a252;
2332
+ padding: 25px 38px 35px 40px;
2333
+ float: left;
2334
+ clear: both;
2335
+ }
2336
+ .notice_custom_icons_premium.sfsi_new_prmium_follw {
2337
+ margin-left: 96px;
2338
+ }
2339
+ .sf_si_default_design ul {
2340
+ padding: 0;
2341
+ margin: 0;
2342
+ }
2343
+ .sf_si_default_design ul li {
2344
+ list-style: none;
2345
+ font-size: 20px;
2346
+ color: #1a1d20;
2347
+ clear: both;
2348
+ }
2349
+ .sfsi_need_another_tell_us,
2350
+ .sfsi_need_another_one_link {
2351
+ clear: both;
2352
+ }
2353
+ .sf_si_all_features_premium a,
2354
+ .sfsi_need_another_tell_us a {
2355
+ color: #12a252 !important;
2356
+ font-size: 18.9px;
2357
+ font-weight: bold;
2358
+ border-bottom: 1px solid #12a252;
2359
+ text-decoration: none;
2360
+ }
2361
+ .sf_si_default_design ul li b {
2362
+ font-weight: bold;
2363
+ }
2364
+ .sf_si_our_prmium_plugin-add .sf_si_prmium_head h2 {
2365
+ padding-bottom: 23px;
2366
+ }
2367
+
2368
+ .sf_si_default_design ul li img {}
2369
+ .sfsi_need_another_one_link p {
2370
+ color: #c1c3c5;
2371
+ font-size: 18.9px !important;
2372
+ }
2373
+ .sfsi_need_another_one_link p a {
2374
+ color: #12a252 !important;
2375
+ text-decoration: none;
2376
+ }
2377
+ .sfsi_brdr_box {
2378
+ box-sizing: border-box;
2379
+ }
2380
+ .sfsi_prem_cmn_rowlisting {
2381
+ width: 225px;
2382
+ float: left;
2383
+ margin-top: 10px;
2384
+ margin-bottom: 1px;
2385
+ }
2386
+ .sfsi_row {
2387
+ clear: both;
2388
+ }
2389
+ .sfsi_prem_cmn_rowlisting span {
2390
+ color: #1a1d20;
2391
+ font-size: 20px;
2392
+ display: table-cell;
2393
+ vertical-align: middle;
2394
+ padding-right: 10px;
2395
+ }
2396
+ .sfsi_need_another_one_link {
2397
+ padding: 23px 0 20px 5px;
2398
+ }
2399
+ .sfsi_need_another_tell_us a {
2400
+ margin-left: 5px;
2401
+ }
2402
+ .sfsi_new_prmium_follw {
2403
+ margin-top: 20px;
2404
+ display: inline-block;
2405
+ padding: 15px 75px 20px 24px;
2406
+ float: left;
2407
+ }
2408
+ .sfsi_new_prmium_follw p {
2409
+ margin: 0 !important;
2410
+ }
2411
+ .sfsi_new_prmium_follw p {
2412
+ color: #1a1d20 !important;
2413
+ font-size: 20px !important;
2414
+ font-family: helveticaregular !important;
2415
+ }
2416
+ .sfsi_new_prmium_follw p a {
2417
+ color: #12a252 !important;
2418
+ text-decoration: none;
2419
+ }
2420
+ .sfsi_new_prmium_follw p b {
2421
+ font-weight: bold;
2422
+ color: #1a1d20 !important;
2423
+ }
2424
+ .sf_si_default_design ul li h4 {
2425
+ color: #1a1d20 !important;
2426
+ font-size: 20px !important;
2427
+ font-weight: bold;
2428
+ padding-bottom: 21px !important;
2429
+ }
2430
+ .sf_si_default_design ul li h4 span {
2431
+ font-weight: normal;
2432
+ }
2433
+ p.sfsi_shared_premium {
2434
+ color: #1a1d20 !important;
2435
+ font-family: helveticaregular !important;
2436
+ padding-top: 0 !important;
2437
+ }
2438
+ p.sfsi_shared_premium a {
2439
+ text-decoration: none;
2440
+ color: #00a0d2 !important;
2441
+ }
2442
+ p.sfsi_shared_premium b {
2443
+ font-weight: bold;
2444
+ }
2445
+ .sfsi_fbpaget {
2446
+ float: left !important;
2447
+ padding: 4px 0 0 0px !important;
2448
+ width: 100% !important;
2449
+ margin-left: 60px;
2450
+ }
2451
+ .sfsi_fbpaget .sfsi_facebook_count {
2452
+ width: 100% !important;
2453
+ padding: 4px 0 0 0px !important;
2454
+ }
2455
+ .sfsi_prem_show a {
2456
+ color: #0c0b0b;
2457
+ margin: 2px;
2458
+ }
2459
+ .sfsi_prem_show {
2460
+ padding-top: 140px !important;
2461
+ }
2462
+ .sf_si_default_design ul li b span {
2463
+ font-weight: normal !important;
2464
+ }
2465
+ p.sfsi_prem_plu_desc a {
2466
+ text-decoration: none;
2467
+ color: #00a0d2 !important;
2468
+ }
2469
+ .sfsi_fb_popup_contain {
2470
+ width: 50%;
2471
+ display: inline-block;
2472
+ }
2473
+ .sfsi_first_icon_field,
2474
+ .sfsi_second_icon_img {
2475
+ display: table-cell;
2476
+ vertical-align: middle;
2477
+ padding: 5px 0;
2478
+ }
2479
+ .sfsi_first_icon_field {
2480
+ width: 125px;
2481
+ }
2482
+ .sfsi_first_icon_field h2 {
2483
+ font-size: 18px !important;
2484
+ color: #1a1d20 !important;
2485
+ margin: 0 !important;
2486
+ font-weight: bold;
2487
+ }
2488
+ .sfsi_first_icon_field p {
2489
+ color: #1a1d20 !important;
2490
+ font-size: 12px !important;
2491
+ margin: 0 !important;
2492
+ padding: 0 !important;
2493
+ line-height: 18px !important;
2494
+ }
2495
+ .sfsi_first_icon_more h2 {
2496
+ font-size: 18px !important;
2497
+ color: #1a1d20 !important;
2498
+ margin: 0 !important;
2499
+ padding-top: 17px;
2500
+ padding-bottom: 22px;
2501
+ }
2502
+ .sfsi_cool_font_weight h2 {
2503
+ font-weight: normal;
2504
+ }
2505
+ .sf_si_default_design ul li {
2506
+ margin: 0 !important;
2507
+ }
2508
+ .sf_si_default_design ul li h4.sfsi_second_themedTitle {
2509
+ padding-bottom: 16px !important;
2510
+ }
2511
+ .sfsi_mainContainer .sfsi_prem_cmn_rowlisting img {
2512
+ width: 52px;
2513
+ height: 52px;
2514
+ }
2515
+ .sfsi_icons_other_allign {
2516
+ width: auto;
2517
+ font-size: 15px !important;
2518
+ }
2519
+
2520
+ /* new notification bar css*/
2521
+
2522
+ .sfsi_new_notification {
2523
+ background-color: #fff;
2524
+ border: 4px dashed #00c853;
2525
+ margin-bottom: 30px;
2526
+ width: 100%;
2527
+ }
2528
+ .sfsi_new_notification_header {
2529
+ background-color: #e8faef;
2530
+ display: -webkit-box;
2531
+ display: -webkit-flex;
2532
+ display: -ms-flexbox;
2533
+ display: flex;
2534
+ -webkit-box-align: center;
2535
+ -webkit-align-items: center;
2536
+ -ms-flex-align: center;
2537
+ align-items: center;
2538
+ -webkit-box-pack: justify;
2539
+ -webkit-justify-content: space-between;
2540
+ -ms-flex-pack: justify;
2541
+ justify-content: space-between;
2542
+ padding: 10px 0 12px 0;
2543
+ }
2544
+ .sfsi_new_notification_header h1 {
2545
+ margin: 0;
2546
+ color: #00c853;
2547
+ font-size: 18px;
2548
+ margin: 0 auto;
2549
+ font-family: Arial, Helvetica, sans-serif;
2550
+ }
2551
+ .sfsi_new_notification_header h1 a {
2552
+ margin: 0;
2553
+ color: #00c853;
2554
+ font-size: 18px;
2555
+ margin: 0 auto;
2556
+ font-family: Arial, Helvetica, sans-serif;
2557
+ text-decoration: none;
2558
+ }
2559
+ .sfsi_new_notification_cross {
2560
+ float: right;
2561
+ font-size: 18px;
2562
+ font-weight: 700;
2563
+ line-height: 1;
2564
+ color: #00c853;
2565
+ font-family: Arial, Helvetica, sans-serif;
2566
+ margin-right: 15px;
2567
+ cursor: pointer;
2568
+ }
2569
+ .sfsi_new_notification_body {
2570
+ width: 100%;
2571
+ background-color: #fff;
2572
+ display: -webkit-box;
2573
+ display: -webkit-flex;
2574
+ display: -ms-flexbox;
2575
+ display: flex;
2576
+ -webkit-box-align: center;
2577
+ -webkit-align-items: center;
2578
+ -ms-flex-align: center;
2579
+ align-items: center;
2580
+ -webkit-box-pack: justify;
2581
+ -webkit-justify-content: space-between;
2582
+ -ms-flex-pack: justify;
2583
+ justify-content: space-between;
2584
+ }
2585
+ .sfsi_new_notification_image {
2586
+ margin: 0 20px 0px 20px;
2587
+ width: 100%;
2588
+ text-align: center;
2589
+ overflow: hidden;
2590
+ }
2591
+ .sfsi_new_notification_image img {
2592
+ width: auto;
2593
+ }
2594
+ .sfsi_new_notification_learnmore {
2595
+ float: right;
2596
+ }
2597
+ .sfsi_new_notification_learnmore {
2598
+ background-color: #00c853;
2599
+ display: block;
2600
+ text-decoration: none;
2601
+ text-align: center;
2602
+ font-size: 20px;
2603
+ font-family: Arial, Helvetica, sans-serif;
2604
+ width: 150px;
2605
+ margin-bottom: -4px;
2606
+ margin-right: -4px;
2607
+ position: relative;
2608
+ color: #fff;
2609
+ padding: 70px 10px;
2610
+ }
2611
+ .sfsi_new_notification_body_link a {
2612
+ display: block;
2613
+ text-decoration: none;
2614
+ text-align: center;
2615
+ font-size: 20px;
2616
+ font-family: Arial, Helvetica, sans-serif;
2617
+ color: #fff;
2618
+ }
2619
+ .tab4 .sfsi_tokenGenerateButton {
2620
+ margin: 25px 0;
2621
+ }
2622
+ .tab4 .sfsi_tokenGenerateButton p {
2623
+ display: inline-block;
2624
+ margin-bottom: 11px;
2625
+ vertical-align: middle;
2626
+ width: 100%;
2627
+ }
2628
+ .tab4 .sfsi_tokenGenerateButton a {
2629
+ background-color: #12a252;
2630
+ color: #fff;
2631
+ padding: 10px 20px;
2632
+ text-decoration: none;
2633
+ }
2634
+
2635
+ .tab4 .sfsi_instagramFields {
2636
+ float: left;
2637
+ margin-bottom: 12px;
2638
+ /* width: 550px;*/
2639
+ width: 50%;
2640
+ margin-left: 60px;
2641
+ }
2642
+
2643
+ .tab4 .sfsi_instagramInstruction {
2644
+ float: left;
2645
+ margin-bottom: 12px;
2646
+ /* width: 450px; */
2647
+ width: 40%;
2648
+ margin-left: 30px;
2649
+ }
2650
+ #accordion1 p {
2651
+ color: #5a6570;
2652
+ text-align: left;
2653
+ font-family: 'helveticaneue-light';
2654
+ font-size: 17px;
2655
+ line-height: 26px;
2656
+ padding-top: 19px;
2657
+ }
2658
+ .specify_counts .listing .sfsi_instagramInstruction ul {
2659
+ margin: 0;
2660
+ padding: 0;
2661
+ list-style: none;
2662
+ text-align: left;
2663
+ }
2664
+ .specify_counts .listing .sfsi_instagramInstruction ul {
2665
+ padding-left: 14px !important;
2666
+ }
2667
+ .specify_counts .listing .sfsi_instagramInstruction li {
2668
+ font-size: 13px !important;
2669
+ line-height: 20px !important;
2670
+ list-style: outside none bullets !important;
2671
+ margin-top: 5px !important;
2672
+ padding: 0 !important;
2673
+ }
2674
+ /* tab2 email section */
2675
+ .sfsi_service_row {
2676
+ margin-right: -15px;
2677
+ margin-left: -15px;
2678
+ }
2679
+ .sfsi_service_column {
2680
+ float: left;
2681
+ margin-bottom: 40px;
2682
+ margin-top: 15px;
2683
+ padding-left: 30px;
2684
+ width: 47%;
2685
+ }
2686
+ .sfsi_service_column ul {
2687
+ margin-left: 11% !important;
2688
+ }
2689
+ .sfsi_service_column ul li {
2690
+ padding-bottom: 10px;
2691
+ font-size: 16px;
2692
+ line-height: 25px;
2693
+ }
2694
+ .sfsi_service_column ul li span {
2695
+ color: #12a252;
2696
+ }
2697
+ .sfsi_service_column ul li::before {
2698
+ content: url(../images/tick-icon.png);
2699
+ position: relative;
2700
+ top: 0px;
2701
+ right: 10px;
2702
+ text-indent: -22px;
2703
+ float: left;
2704
+ }
2705
+ .sfsi_inputbtn {
2706
+ clear: both;
2707
+ display: block;
2708
+ }
2709
+ .sfsi_inputbtn input {
2710
+ width: 100%;
2711
+ padding: 15px 0px;
2712
+ text-align: center;
2713
+ margin-bottom: 10px;
2714
+ }
2715
+ .sfsi_email_services_text {
2716
+ clear: both;
2717
+ }
2718
+ .sfsi_email_services_paragraph {
2719
+ width: 600px;
2720
+ float: left;
2721
+ margin-top: 10px;
2722
+ margin-bottom: 40px;
2723
+ }
2724
+ .sfsi_more_services_link a {
2725
+ background-color: #12a252;
2726
+ color: #fff !important;
2727
+ padding: 20px 0px;
2728
+ text-decoration: none;
2729
+ text-align: center;
2730
+ font-size: 20px;
2731
+ display: block;
2732
+ clear: both;
2733
+ font-weight: bold;
2734
+ }
2735
+ .sfsi_subscribe_popbox_link a {
2736
+ color: #00a0d2 !important;
2737
+ }
2738
+ .sfsi_email_services_paragraph ul {
2739
+ margin-left: 11% !important;
2740
+ }
2741
+ .sfsi_email_services_paragraph ul li {
2742
+ padding-bottom: 10px;
2743
+ font-size: 16px;
2744
+ }
2745
+ .sfsi_email_services_paragraph ul li span {
2746
+ color: #12a252;
2747
+ }
2748
+ .sfsi_email_services_paragraph ul li::before {
2749
+ content: url(../images/tick-icon.png);
2750
+ position: relative;
2751
+ top: 5px;
2752
+ right: 10px;
2753
+ text-indent: -22px;
2754
+ float: left;
2755
+ }
2756
+ .sfsi_email_last_paragraph {
2757
+ width: 60%;
2758
+ text-align: center !important;
2759
+ margin: 20px auto ! important;
2760
+ font-size: 16px !important;
2761
+ color: #a4a9ad !important;
2762
+ padding-top: 0 !important;
2763
+ }
2764
+ .sfsi_email_last_paragraph a {
2765
+ color: #12a252 !important;
2766
+ font-family: 'helveticaneue-light' !important;
2767
+ }
2768
+ /*new banner styles*/
2769
+ .sfsi_new_notification_cat {
2770
+ width: 100%;
2771
+ min-height: 300px;
2772
+ max-width: 700px;
2773
+ }
2774
+ .sfsi_new_notification_cat {
2775
+ background-color: #fff;
2776
+ margin: 30px auto;
2777
+ width: 100%;
2778
+ }
2779
+ .sfsi_new_notification_header_cat {
2780
+ background-color: #e8faef;
2781
+ /*display: -webkit-box;
2782
+ display: -webkit-flex;
2783
+ display: -ms-flexbox;
2784
+ display: flex;
2785
+ -webkit-box-align: center;
2786
+ -webkit-align-items: center;
2787
+ -ms-flex-align: center;
2788
+ align-items: center;
2789
+ -webkit-box-pack: justify;
2790
+ -webkit-justify-content: space-between;
2791
+ -ms-flex-pack: justify;
2792
+ justify-content: space-between;*/
2793
+ padding: 21px 0 21px 0;
2794
+ text-align: center;
2795
+ }
2796
+ .sfsi_new_notification_header_cat h1 {
2797
+ margin: 0;
2798
+ color: #000000;
2799
+ font-size: 24px;
2800
+ margin: 0 auto;
2801
+ font-family: Arial, Helvetica, sans-serif;
2802
+ font-weight: bold;
2803
+ }
2804
+ .sfsi_new_notification_header_cat h3 {
2805
+ margin-top: 10px;
2806
+ font-size: 16px;
2807
+ color: #000000;
2808
+ }
2809
+ .sfsi_new_notification_header_cat h3 a {
2810
+ text-decoration: none;
2811
+ color: #38B54A
2812
+ }
2813
+ .sfsi_new_notification_header_cat h1 a {
2814
+ margin: 0;
2815
+ color: #00c853;
2816
+ font-size: 18px;
2817
+ margin: 0 auto;
2818
+ font-family: Arial, Helvetica, sans-serif;
2819
+ text-decoration: none;
2820
+ }
2821
+ .sfsi_new_notification_cross_cat {
2822
+ float: right;
2823
+ font-size: 18px;
2824
+ font-weight: 700;
2825
+ line-height: 1;
2826
+ color: #000000;
2827
+ font-family: Arial, Helvetica, sans-serif;
2828
+ margin-right: 15px;
2829
+ cursor: pointer;
2830
+ margin-top: -50px;
2831
+ }
2832
+ .sfsi_new_notification_body_link_cat a {
2833
+ display: block;
2834
+ text-decoration: none;
2835
+ text-align: center;
2836
+ font-size: 20px;
2837
+ font-family: Arial, Helvetica, sans-serif;
2838
+ color: #fff;
2839
+ }
2840
+ .sfsi_new_notification_body_cat {
2841
+ width: 100%;
2842
+ background-color: #fff;
2843
+ /*display: -webkit-box;
2844
+ display: -webkit-flex;
2845
+ display: -ms-flexbox;
2846
+ display: flex;
2847
+ -webkit-box-align: center;
2848
+ -webkit-align-items: center;
2849
+ -ms-flex-align: center;
2850
+ align-items: center;
2851
+ -webkit-box-pack: justify;
2852
+ -webkit-justify-content: space-between;
2853
+ -ms-flex-pack: justify;
2854
+ justify-content: space-between;*/
2855
+ }
2856
+ .sfsi_new_notification_image_cat {
2857
+ /* margin: 0 20px 0px 20px; */
2858
+ width: 100%;
2859
+ text-align: center;
2860
+ overflow: hidden;
2861
+ /*padding: 10px 0px;*/
2862
+ }
2863
+ .sfsi_new_notification_image_cat img {
2864
+ width: auto;
2865
+ border: 0;
2866
+ vertical-align: middle;
2867
+ }
2868
+ .bottom_text {
2869
+ background: #38B54A;
2870
+ text-align: center;
2871
+ padding: 15px 0px;
2872
+ font-size: 18px;
2873
+ font-weight: bold;
2874
+ color: #fff;
2875
+ }
2876
+ .sfsi_new_notification_image_cat p {
2877
+ color: #000000;
2878
+ padding: 10px;
2879
+ font-size: 16px;
2880
+ }
2881
+ .sfsi_new_notification_body_link_cat .tailored_icons_img {
2882
+ display: block;
2883
+ text-decoration: none;
2884
+ text-align: center;
2885
+ font-size: 20px;
2886
+ font-family: Arial, Helvetica, sans-serif;
2887
+ color: #fff;
2888
+ margin: 28px 0px;
2889
+ }
2890
+ /**curl error box*/
2891
+ .sfsi_curlerror {
2892
+ margin: 0px 0px 10px 94px;
2893
+ background: rgba(244, 67, 54, 0.08);
2894
+ padding: 20px;
2895
+ line-height: 20px;
2896
+ }
2897
+ .sfsi_curlerrorNotification .sfsi_curlerror {
2898
+ background: rgba(244, 67, 54, 0.08);
2899
+ padding: 20px;
2900
+ line-height: 20px;
2901
+ margin: 0px 0px 10px 0px;
2902
+ }
2903
+ .sfsi_curlerror_cross {
2904
+ float: right;
2905
+ text-decoration: underline;
2906
+ margin-top: 10px;
2907
+ }
2908
+ .sfsi_curlerrortab4 a {
2909
+ color: #0073aa !important;
2910
+ }
2911
+ .sfsi_curlerror a {
2912
+ color: #0073aa !important;
2913
+ }
2914
+
2915
+ .social_data_post_types {
2916
+ float: left;
2917
+ width: 100%;
2918
+ margin-top: 10px;
2919
+ }
2920
+ .social_data_post_types .checkbox {
2921
+ float: left;
2922
+ margin-top: 5px;
2923
+ margin-right: 5px;
2924
+ }
2925
+ .social_data_post_types ul {
2926
+ float: left;
2927
+ margin-top: 5px;
2928
+ }
2929
+ .social_data_post_types li {
2930
+ float: left;
2931
+ min-width: 90px;
2932
+ }
2933
+ .social_data_post_types .radio_section.tb_4_ck {
2934
+ float: left;
2935
+ margin-right: 5px;
2936
+ }
2937
+ .social_data_post_types .radio_section.tb_4_ck .cstmdsplsub {
2938
+ font-size: 16px;
2939
+ }
2940
+ .social_data_post_types ul {
2941
+ float: left;
2942
+ width: 84%;
2943
+ }
2944
+ .social_data_post_types .radio_section.tb_4_ck input.styled {
2945
+ margin-top: 20px;
2946
+ }
2947
+ ul.sfsi_show_hide_section {
2948
+ float: right;
2949
+ width: 16%;
2950
+ }
2951
+
2952
+ .sfsi_social_sharing {
2953
+ margin-bottom: 15px;
2954
+ float: left;
2955
+ width: 51%;
2956
+ }
2957
+ .socialPostTypesUl span {
2958
+ pointer-events: none
2959
+ }
2960
+ .bannerPopupQue6 {
2961
+ width: 98% !important;
2962
+ float: left !important;
2963
+ padding: 15px !important;
2964
+ }
2965
+ .pinterest_section .sfsi_new_prmium_follw a {
2966
+ font-weight: bold !important;
2967
+ }
2968
+ #accordion,
2969
+ #accordion1 {
2970
+ float: left;
2971
+ clear: both;
2972
+ width: 100%;
2973
+ }
2974
+ h2.optional {
2975
+ float: left;
2976
+ clear: both;
2977
+ margin-top: 25px !important;
2978
+ }
2979
+
2980
+ /*support forum*/
2981
+ .welcometext {
2982
+ float: left;
2983
+ width: 72%;
2984
+ }
2985
+ .welcometext p {
2986
+ margin-bottom: 8px !important;
2987
+ margin-top: 15px !important;
2988
+ font-size: 16px;
2989
+ }
2990
+ .supportforum {
2991
+ float: right;
2992
+ width: auto;
2993
+ background: #fff;
2994
+ text-align: center;
2995
+ padding: 0 20px 3px 7px;
2996
+ }
2997
+ .support-container p {
2998
+ font-family: helveticaregular !important;
2999
+ }
3000
+ .support-container {
3001
+ padding: 7px 4px;
3002
+ }
3003
+ .have-questions {
3004
+ text-align: center;
3005
+ font-size: 20px;
3006
+ }
3007
+ .have-questions img {
3008
+ width: 45px;
3009
+ display: inline-block;
3010
+ }
3011
+ .have-questions .have-quest {
3012
+ display: inline-block;
3013
+ font-size: 20px;
3014
+ font-weight: 700;
3015
+ margin: 0;
3016
+ vertical-align: sub;
3017
+ }
3018
+ .have-questions .ask-question {
3019
+ margin-bottom: 3px !important;
3020
+ margin-top: 2px !important;
3021
+ }
3022
+ .support-forum-green-bg {
3023
+ margin-top: 5px;
3024
+ margin-left: 20px;
3025
+ background: #26B654;
3026
+ width: 145px;
3027
+ border-radius: 5px;
3028
+ padding: 10px 16px 8px 15px;
3029
+ }
3030
+ .support-forum-green-bg img {
3031
+ display: inline-block;
3032
+ padding-right: 5px;
3033
+ }
3034
+ .support-forum-green-div p.support-forum {
3035
+ display: inline-block;
3036
+ color: #fff;
3037
+ font-weight: 700;
3038
+ margin: 0 !important;
3039
+ }
3040
+ .support-forum-green-div a {
3041
+ text-decoration: none !important;
3042
+ }
3043
+ .respond-text p {
3044
+ margin: 10px 0 0 0px !important
3045
+ }
3046
+ .respond-text {
3047
+ margin-left: 20px;
3048
+ float: left;
3049
+ margin-bottom: 8px;
3050
+ }
3051
+
3052
+ @media (min-width: 1631px) and (max-width: 1631px) {
3053
+ .premiumComponent {
3054
+ width: 52% !important;
3055
+ }
3056
+ .premiumButtonsContainer {
3057
+ width: 44% !important;
3058
+ }
3059
+ .premiumButtonsContainer .premiumSection2 {
3060
+ width: 41% !important;
3061
+ }
3062
+ .premiumButtonsContainer .premiumSection3 {
3063
+ width: 41% !important;
3064
+ }
3065
+ }
3066
+
3067
+ /************************************ Question 3-> Where shall they be displayed? CSS STARTS *************************/
3068
+ .tab9 h1 {
3069
+ font-size: 20px !important;
3070
+ ont-weight: bold !important;
3071
+ margin-bottom: 20px !important;
3072
+ }
3073
+ .tab9 span.checkbox {
3074
+ margin-top: 3px;
3075
+ }
3076
+ .tab9 input {
3077
+ width: 317px;
3078
+ background: #e5e5e5;
3079
+ box-shadow: 2px 2px 3px #dcdcdc inset;
3080
+ border: 0;
3081
+ padding: 13px 10px !important;
3082
+ font-size: 17px;
3083
+ color: #5a6570;
3084
+ }
3085
+ .tab9 ul.sfsi_icn_listing8 {
3086
+ list-style: outside none none;
3087
+ margin: 5px 0 0;
3088
+ overflow: hidden;
3089
+ }
3090
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3091
+ font-family: helveticaregular;
3092
+ width: 94.7%;
3093
+ float: left;
3094
+ }
3095
+ .tab9 ul.sfsi_icn_listing8 li {
3096
+ float: left;
3097
+ padding: 11px 0 15px 8px;
3098
+ width: 100%;
3099
+ margin: 0;
3100
+ }
3101
+ .tab9 .sfsi_float_position_icon_label img {
3102
+ margin-left: auto;
3103
+ margin-right: auto;
3104
+ display: block;
3105
+ margin-top: 7px;
3106
+ }
3107
+ .tab9 .sfsi_float_position_icon_label img.sfsi_img_center_bottom {
3108
+ position: absolute;
3109
+ bottom: 0px;
3110
+ left: 18%;
3111
+ }
3112
+ .tab9 .sfsiLocationli .cstmfltonpgstck p {
3113
+ padding-top: 5px !important;
3114
+ padding-left: 20px !important;
3115
+ display: table;
3116
+ font-size: 19px !important
3117
+ }
3118
+ .sfsi_mainContainer .checkbox {
3119
+ float: left;
3120
+ }#accordion .tab9 .sfsi_icn_listing8 li .sfsi_right_info .kckslctn p:first-child {
3121
+ margin-top: 17px !important;
3122
+ }
3123
+ #accordion .tab9 .sfsi_icn_listing8 li .sfsi_right_info p {
3124
+ padding-left: 20px;
3125
+ font-size: 19px !important;
3126
+ display: table
3127
+ }
3128
+ #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_shortcode .sfsi_right_info p:last-child {
3129
+ padding-top: 0px;
3130
+ }
3131
+ #accordion .tab9 .sfsi_icn_listing8 li.sfsi_show_via_shortcode .sfsi_right_info .kckslctn p:last-child {
3132
+ padding-top: 19px !important;
3133
+ }
3134
+ .tab9 .sfsi_feature_note {
3135
+ font-size: 18px !important;
3136
+ margin-left: 12px !important;
3137
+ padding-top: 0px !important;
3138
+ }
3139
+ .tab9 .ul.sfsi_make_icons.sfsi_mobile_float {
3140
+ float: left;
3141
+ }
3142
+ .tab9 .sfsi_disable_floatingicons_mobile {
3143
+ width: 88%;
3144
+ float: left;
3145
+ margin: 25px 0 0 27px
3146
+ }
3147
+ .tab9 .sfsi_disable_floatingicons_mobile h4 {
3148
+ float: left;
3149
+ line-height: 56px !important;
3150
+ margin-right: 40px !important;
3151
+ font-family: 'helveticaneue-light' !important;
3152
+ color: #5a6570 !important;
3153
+ }
3154
+ .tab9 .sfsi_toglepstpgspn {
3155
+ font-weight: bold;
3156
+ }
3157
+ .tab9 .sfsi_show_via_shortcode .kckslctn,
3158
+ .tab9 .sfsi_show_via_afterposts .kckslctn {
3159
+ font-size: 15px;
3160
+ margin-top: 5px;
3161
+ }
3162
+ .tab9 .sfsi_show_via_shortcode .kckslctn h4,
3163
+ .tab9 .sfsi_show_via_afterposts .kckslctn h4 {
3164
+ font-size: 18px !important;
3165
+ padding: 18px 0 0 0 !important;
3166
+ }
3167
+ .tab9 .sfsi_navigate_to_question7 {
3168
+ text-decoration: underline;
3169
+ cursor: pointer
3170
+ }
3171
+ .tab9 .sfsiLocationli h4 {
3172
+ font-size: 19px !important
3173
+ }
3174
+ .tab9 .sfsi_make_icons span.radio {
3175
+ background-position: 0 0;
3176
+ display: inline-block;
3177
+ vertical-align: middle;
3178
+ float: left;
3179
+ }
3180
+ .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3181
+ min-width: 33%;
3182
+ width: 33% !important
3183
+ }
3184
+
3185
+ . .tab9 .radio_section.tb_4_ck {
3186
+ margin: 0 20px 0 0 !important;
3187
+ float: left
3188
+ }
3189
+ .tab9 .sfsi_tab_3_icns {
3190
+ display: block;
3191
+ }
3192
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3193
+ width: 13%;
3194
+ min-width: 35px
3195
+ }
3196
+ .tab9 .sfsi_make_icons .sfsi_flicnsoptn3 {
3197
+ color: #69737c;
3198
+ display: inline-block;
3199
+ float: none;
3200
+ font-family: helveticaneue-light;
3201
+ font-size: 20px;
3202
+ margin: 7px 0 0 15px;
3203
+ vertical-align: middle;
3204
+ width: auto
3205
+ }
3206
+ .tab9 .sfsi_float_position_icon_label {
3207
+ border: 1px solid #ccc;
3208
+ border-radius: 18px;
3209
+ margin-top: 3px;
3210
+ position: relative;
3211
+ width: 189px;
3212
+ height: 148px
3213
+ }
3214
+ .tab9 .save_button {
3215
+ padding-top: 0
3216
+ }
3217
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns li {
3218
+ padding-left: 0;
3219
+ padding-bottom: 15px
3220
+ }
3221
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_floaticon_margin_sec li {
3222
+ min-width: 50%;
3223
+ padding-left: 0;
3224
+ padding-bottom: 15px;
3225
+ float: left;
3226
+ width: 50%
3227
+ }
3228
+ .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3229
+ margin-top: 55px
3230
+ }
3231
+ .tab9 .sfsi_position_divider {
3232
+ float: left;
3233
+ margin-top: 0;
3234
+ margin-left: 15px;
3235
+ width: 100%
3236
+ }
3237
+ #accordion .tab9 ul.shwthmbfraftr .labelhdng4,
3238
+ #accordion .tab9 ul.shwthmbfraftr .row h4.labelhdng4 {
3239
+ color: #555;
3240
+ font-size: 20px;
3241
+ margin-left: 20px;
3242
+ font-family: helveticaregular
3243
+ }
3244
+ .tab9 .sfsiLocationli .sfsi_right_info .sfsi_tab_3_icns {
3245
+ float: left;
3246
+ clear: both
3247
+ }
3248
+ .tab9 ul.sfsi_tab_3_icns li .icns_tab_3,
3249
+ ul.sfsi_tab_3_icns li .radio {
3250
+ float: left
3251
+ }
3252
+ .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3253
+ margin-top: 20px
3254
+ }
3255
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li {
3256
+ float: left
3257
+ }
3258
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec label {
3259
+ font-size: 17px;
3260
+ padding-right: 7px;
3261
+ width: 63px !important;
3262
+ display: inline-block;
3263
+ margin-top: 10px
3264
+ }
3265
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec ins {
3266
+ margin-top: 10px
3267
+ }
3268
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li input {
3269
+ background-color: #dedede;
3270
+ border: none;
3271
+ box-shadow: none;
3272
+ padding: 14px 8px;
3273
+ width: 80px
3274
+ }
3275
+ .tab9 .sfsi_right_info ul.sfsi_floaticon_margin_sec li ins {
3276
+ font-size: 17px;
3277
+ font-weight: 400;
3278
+ margin-left: 15px;
3279
+ text-decoration: none
3280
+ }
3281
+ .tab9 .sfsi_flicnsoptn3 {
3282
+ color: #69737c;
3283
+ float: left;
3284
+ font-size: 20px;
3285
+ margin: 62px 5px 0 20px;
3286
+ font-family: helveticaneue-light;
3287
+ width: 136px
3288
+ }
3289
+ .tab9 ul.sfsi_tab_3_icns label {
3290
+ float: left;
3291
+ line-height: 42px;
3292
+ color: #69737C;
3293
+ font-size: 18px;
3294
+ font-family: helveticaregular;
3295
+ min-width: 120px
3296
+ }
3297
+
3298
+ @media screen and (max-width: 823px) {
3299
+ .wapper {
3300
+ padding: 0 15px;
3301
+ }
3302
+ .welcometext {
3303
+ width: 62% !important;
3304
+ }
3305
+ .supportforum {
3306
+ margin-top: 22px;
3307
+ }
3308
+ .main_contant h1 {
3309
+ line-height: 35px;
3310
+ }
3311
+ #sfpageLoad {
3312
+ width: 100% !important;
3313
+ left: 0px !important;
3314
+ }
3315
+ .tab9 .sfsi_position_divider {
3316
+ margin-left: 0px !important;
3317
+ }
3318
+ .row ul.tab_2_email_sec li {
3319
+ width: 31%;
3320
+ }
3321
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3322
+ width: 89.7% !important;
3323
+ }
3324
+ .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3325
+ width: 100% !important;
3326
+ }
3327
+ .tab9 .sfsi_float_position_icon_label {
3328
+ clear: both !important;
3329
+ }
3330
+ .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3331
+ margin-top: 0px !important;
3332
+ }
3333
+ .tab9 .sfsi_flicnsoptn3 {
3334
+ margin: 5px 5px 0 20px !important;
3335
+ width: 131px !important;
3336
+ }
3337
+ .tab9 .sfsiLocationli label,
3338
+ .tab9 .sfsi_float_position_icon_label {
3339
+ margin-top: 13px;
3340
+ clear: both !important;
3341
+ }
3342
+ .tab9 .sfsi_position_divider:nth-child(2) {
3343
+ margin: 20px 0;
3344
+ }
3345
+ .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3346
+ margin-left: 44px;
3347
+ }
3348
+
3349
+ .tab9 ul.sfsi_make_icons.sfsi_mobile_float {
3350
+ float: left;
3351
+ clear: both;
3352
+ }
3353
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3354
+ width: 50% !important;
3355
+ }
3356
+ }
3357
+ @media screen and (min-width: 360px) and (max-width: 414px) {
3358
+ .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3359
+ width: 100% !important;
3360
+ }
3361
+ }
3362
+ @media screen and (min-width: 640px) and (max-width: 640px) {
3363
+ .tab9 ul.sfsi_icn_listing8 li .flthmonpg li {
3364
+ width: 100% !important;
3365
+ }
3366
+ .tab9 .sfsi_img_center_bottom {
3367
+ padding-top: 0px !important;
3368
+ width: 62% !important;
3369
+ margin-top: -10px;
3370
+ margin-left: 5px;
3371
+ }
3372
+ }
3373
+ @media screen and (min-width: 1024px) and (max-width: 1024px) {
3374
+ .wapper {
3375
+ padding: 0 30px 0px 15px;
3376
+ }
3377
+ .welcometext {
3378
+ width: 62% !important;
3379
+ }
3380
+ .supportforum {
3381
+ margin-top: 22px;
3382
+ }
3383
+ .main_contant h1 {
3384
+ line-height: 35px;
3385
+ }
3386
+ #sfpageLoad {
3387
+ width: 100% !important;
3388
+ }
3389
+ .tab9 ul.sfsi_tab_3_icns.flthmonpg {
3390
+ margin-left: 45px;
3391
+ }
3392
+ .row ul.tab_2_email_sec li {
3393
+ width: 31%;
3394
+ }
3395
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_right_info {
3396
+ width: 90.7% !important;
3397
+ }
3398
+ .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3399
+ width: 100% !important;
3400
+ }
3401
+ .tab9 .sfsi_float_position_icon_label {
3402
+ clear: both !important;
3403
+ }
3404
+ .tab9 .sfsiLocationli label,
3405
+ .tab9 .sfsi_float_position_icon_label {
3406
+ margin-top: 13px;
3407
+ clear: both;
3408
+ float: left;
3409
+ }
3410
+ .tab9 .sfsi_tab_3_icns.flthmonpg .radio {
3411
+ margin-top: 0px !important;
3412
+ }
3413
+ .tab9 .sfsi_flicnsoptn3 {
3414
+ margin-top: 3px !important
3415
+ }
3416
+ .tab9 .sfsi_position_divider:nth-child(2) {
3417
+ margin: 20px 0;
3418
+ }
3419
+ .tab9 .sfsi_position_divider {
3420
+ margin-left: 0px !important;
3421
+ }
3422
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns .sfsi_make_icons li {
3423
+ width: 30% !important;
3424
+ }
3425
+ .tab9 ul.sfsi_make_icons.sfsi_mobile_float {
3426
+ width: 100% !important;
3427
+ }
3428
+ }
3429
+
3430
+ @media screen and (min-width: 1080px) and (max-width: 1080px) {
3431
+ .tab9 ul.sfsi_tab_3_icns label {
3432
+ clear: both;
3433
+ margin-top: 20px;
3434
+ }
3435
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons {
3436
+ float: left;
3437
+ clear: both;
3438
+ width: 100%;
3439
+ }
3440
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons li {
3441
+ width: 50%;
3442
+ }
3443
+ }
3444
+
3445
+ @media screen and (min-width: 1920px) and (max-width: 1920px) {
3446
+ .tab9 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns ul.sfsi_make_icons li span.sfsi_flicnsoptn3 {
3447
+ padding-top: 6px;
3448
+ padding-left: 5px;
3449
+ }
3450
+ }
3451
+
3452
+ @media screen and (min-width: 1366px) and (max-width: 1366px) {
3453
+ .wapper {
3454
+ padding: 40px 40px 40px 10px;
3455
+ }
3456
+ .tab9 ul.sfsi_icn_listing8 li.sfsiLocationli .sfsi_right_info {
3457
+ width: 100% !important;
3458
+ }
3459
+ .tab9 .sfsi_flicnsoptn3 {
3460
+ font-size: 18px !important;
3461
+ min-width: 113px !important;
3462
+ margin: 60px 0px 0 10px !important;
3463
+ width: auto !important;
3464
+ }
3465
+ .tab9 .sfsi_position_divider {
3466
+ margin-left: 0px !important;
3467
+ }
3468
+ }
3469
+ /************************************ Question 3-> Where shall they be displayed? CSS CLOSES *************************/
3470
+
3471
+ /* Link to support forum left of every Save button */
3472
+ .ui-accordion .ui-accordion-content {
3473
+ position: relative;
3474
+ }
3475
+ .sfsi_askforhelp {
3476
+ float: left;
3477
+ width: 32%;
3478
+ position: absolute;
3479
+ bottom: 30px;
3480
+ }
3481
+ .sfsi_askforhelp img {
3482
+ float: left;
3483
+ width: 35px;
3484
+ height: 35px;
3485
+ vertical-align: middle;
3486
+ }
3487
+ .sfsi_askforhelp span {
3488
+ float: left;
3489
+ margin-left: 6px;
3490
+ margin-top: 8px;
3491
+ }
3492
+ .askhelpInview2 {
3493
+ bottom: 25px;
3494
+ }
3495
+ .askhelpInview3 {
3496
+ bottom: 38px;
3497
+ }
3498
+ .askhelpInview7 {
3499
+ bottom: 50px;
3500
+ }
3501
+
3502
+ div#sfsi_langnotice,
3503
+ div#sfsi_addThis_removal_notice,
3504
+ div#sfsi_error_reporting_notice {
3505
+ padding: 10px;
3506
+ margin-left: 0px;
3507
+ position: relative;
3508
+ }
3509
+
3510
+ .clear {
3511
+ clear: both;
3512
+ }
3513
+ .show {
3514
+ display: block;
3515
+ }
3516
+ .hide {
3517
+ display: none;
3518
+ }
3519
+
3520
+ .zeropadding {
3521
+ padding: 0px !important;
3522
+ }
3523
+ .zerotoppadding {
3524
+ padding-top: 0px !important;
3525
+ }
3526
+ .zerobottompadding {
3527
+ padding-bottom: 0px !important;
3528
+ }
3529
+ .zerotopmargin {
3530
+ margin-top: 0px !important;
3531
+ }
3532
+
3533
+ .rowpadding10 {
3534
+ padding: 10px 0 !important;
3535
+ }
3536
+ .rowmarginleft15 {
3537
+ margin-left: 15px !important;
3538
+ }
3539
+ .rowmarginleft25 {
3540
+ margin-left: 25px !important;
3541
+ }
3542
+ .rowmarginleft45 {
3543
+ margin-left: 45px !important;
3544
+ }
3545
+
3546
+ .bottommargin20 {
3547
+ margin-bottom: 20px !important;
3548
+ }
3549
+ .bottommargin30 {
3550
+ margin-bottom: 30px !important;
3551
+ }
3552
+ .bottommargin40 {
3553
+ margin-bottom: 40px !important;
3554
+ }
3555
+ .inactiveSection {
3556
+ opacity: 0.2;
3557
+ pointer-events: none;
3558
+ }
3559
+
3560
+ /* */
3561
+ .tab3 .sub_row {
3562
+ float: left;
3563
+ margin: 15px 0 0 4%;
3564
+ width: 80%;
3565
+ }
3566
+ .tab3 .sub_row label {
3567
+ float: left;
3568
+ margin: 0 0px 0 10px;
3569
+ line-height: 36px;
3570
+ font-size: 18px;
3571
+ }
3572
+ .tab3 .sub_row .effectContainer {
3573
+ float: left;
3574
+ width: 100%;
3575
+ margin-left: 45px;
3576
+ }
3577
+ .tab3 .sub_row .effectName {
3578
+ float: left;
3579
+ width: 35%;
3580
+ }
3581
+ .tab3 .tab_3_sav {
3582
+ padding-top: 0;
3583
+ margin: 0px auto 10px;
3584
+ position: relative;
3585
+ z-index: 9;
3586
+ }
3587
+ .tab3 .Shuffle_auto {
3588
+ float: left;
3589
+ width: 80%;
3590
+ clear: both;
3591
+ }
3592
+ .tab3 #animationSection label {
3593
+ font-family: 'helveticaneue-light';
3594
+ }
3595
+
3596
+ .tab3 select[name='mouseover_other_icons_transition_effect'] {
3597
+ margin-left: 10px;
3598
+ padding: 0px 11px;
3599
+ margin-top: 4px;
3600
+ font-size: 15px;
3601
+ border-radius: 5px;
3602
+ }
3603
+ .tab3 .other_icons_effects_options .mouseover_other_icon_label {
3604
+ float: left;
3605
+ width: 30%;
3606
+ font-size: 16px;
3607
+ }
3608
+ .tab3 .mouse-over-effects span.radio {
3609
+ float: left;
3610
+ display: inline-block;
3611
+ }
3612
+ .tab3 .same_icons_effects label span {
3613
+ float: left;
3614
+ clear: both;
3615
+ line-height: 20px;
3616
+ }
3617
+ .tab3 .same_icons_effects label span:nth-child(2) {
3618
+ font-size: 14px;
3619
+ }
3620
+ .tab3 .other_icons_effects_options .mouseover_other_icon_img {
3621
+ float: left;
3622
+ width: 40px;
3623
+ height: 40px;
3624
+ }
3625
+ .tab3 .other_icons_effects_options .mouseover_other_icon_change_link,
3626
+ .tab3 .other_icons_effects_options .mouseover_other_icon_revert_link {
3627
+ float: left;
3628
+ color: #337ab7;
3629
+ margin-left: 15px;
3630
+ padding: 5px 0px;
3631
+ font-size: 15px;
3632
+ text-decoration: underline;
3633
+ }
3634
+ .mouseover-premium-notice {}
3635
+ .mouseover-premium-notice label {
3636
+ width: auto !important;
3637
+ margin: 0 !important;
3638
+ }
3639
+ .mouseover-premium-notice a {
3640
+ float: left;
3641
+ color: #12a252 !important;
3642
+ padding-top: 5px;
3643
+ margin-left: 5px;
3644
+ font-size: 18px;
3645
+ }
3646
+
3647
+ @media (min-width:414px) and (max-width: 736px) and (orientation:portrait) {
3648
+ .tab3 .sub_row {
3649
+ width: 100%;
3650
+ }
3651
+ .tab3 .sub_row .effectContainer {
3652
+ margin-left: 25px;
3653
+ margin-bottom: 0px;
3654
+ clear: both;
3655
+ }
3656
+ .tab3 .sub_row .effectName {
3657
+ width: 100%;
3658
+ margin-bottom: 25px
3659
+ }
3660
+ .rowmarginleft45 {
3661
+ margin-left: 0px !important;
3662
+ }
3663
+ .bottommargin40 {
3664
+ margin-bottom: 0px !important;
3665
+ }
3666
+ }
3667
+
3668
+ @media (min-width:414px) and (max-width: 736px) and (orientation:landscape) {
3669
+ .tab3 .sub_row {
3670
+ width: 100%;
3671
+ }
3672
+ .tab3 .sub_row .effectContainer {
3673
+ margin-left: 25px;
3674
+ margin-bottom: 0px;
3675
+ clear: both;
3676
+ }
3677
+ .tab3 .sub_row .effectName {
3678
+ width: 50%;
3679
+ margin-bottom: 25px
3680
+ }
3681
+ .rowmarginleft45 {
3682
+ margin-left: 25px !important;
3683
+ }
3684
+ .bottommargin40 {
3685
+ margin-bottom: 0px !important;
3686
+ }
3687
+ }
3688
+ @media (min-width:768px) and (max-width: 1024px) {
3689
+ .tab3 .sub_row {
3690
+ width: 100%;
3691
+ }
3692
+ .tab3 .sub_row .effectContainer {
3693
+ margin-bottom: 25px;
3694
+ clear: both;
3695
+ }
3696
+ .tab3 .sub_row .effectName {
3697
+ width: 50%;
3698
+ }
3699
+ }/* */
3700
+
3701
+ .col-lg-1,
3702
+ .col-lg-10,
3703
+ .col-lg-11,
3704
+ .col-lg-12,
3705
+ .col-lg-2,
3706
+ .col-lg-3,
3707
+ .col-lg-4,
3708
+ .col-lg-5,
3709
+ .col-lg-6,
3710
+ .col-lg-7,
3711
+ .col-lg-8,
3712
+ .col-lg-9,
3713
+ .col-md-1,
3714
+ .col-md-10,
3715
+ .col-md-11,
3716
+ .col-md-12,
3717
+ .col-md-2,
3718
+ .col-md-3,
3719
+ .col-md-4,
3720
+ .col-md-5,
3721
+ .col-md-6,
3722
+ .col-md-7,
3723
+ .col-md-8,
3724
+ .col-md-9,
3725
+ .col-sm-1,
3726
+ .col-sm-10,
3727
+ .col-sm-11,
3728
+ .col-sm-12,
3729
+ .col-sm-2,
3730
+ .col-sm-3,
3731
+ .col-sm-4,
3732
+ .col-sm-5,
3733
+ .col-sm-6,
3734
+ .col-sm-7,
3735
+ .col-sm-8,
3736
+ .col-sm-9,
3737
+ .col-xs-1,
3738
+ .col-xs-10,
3739
+ .col-xs-11,
3740
+ .col-xs-12,
3741
+ .col-xs-2,
3742
+ .col-xs-3,
3743
+ .col-xs-4,
3744
+ .col-xs-5,
3745
+ .col-xs-6,
3746
+ .col-xs-7,
3747
+ .col-xs-8,
3748
+ .col-xs-9 {
3749
+ position: relative;
3750
+ min-height: 1px;
3751
+ padding-right: 15px;
3752
+ padding-left: 15px;
3753
+ }
3754
+ @media (min-width: 992px) {
3755
+ .col-md-12 {
3756
+ width: 100%;
3757
+ }
3758
+
3759
+ .col-md-3 {
3760
+ width: 25%;
3761
+ }
3762
+
3763
+ .col-md-1,
3764
+ .col-md-10,
3765
+ .col-md-11,
3766
+ .col-md-12,
3767
+ .col-md-2,
3768
+ .col-md-3,
3769
+ .col-md-4,
3770
+ .col-md-5,
3771
+ .col-md-6,
3772
+ .col-md-7,
3773
+ .col-md-8,
3774
+ .col-md-9 {
3775
+ float: left;
3776
+ }
3777
+
3778
+ .col-md-12 {
3779
+ width: 100%
3780
+ }
3781
+
3782
+ .col-md-11 {
3783
+ width: 91.66666667%
3784
+ }
3785
+
3786
+ .col-md-10 {
3787
+ width: 83.33333333%
3788
+ }
3789
+
3790
+ .col-md-9 {
3791
+ width: 75%
3792
+ }
3793
+
3794
+ .col-md-8 {
3795
+ width: 66.66666667%
3796
+ }
3797
+
3798
+ .col-md-7 {
3799
+ width: 58.33333333%
3800
+ }
3801
+
3802
+ .col-md-6 {
3803
+ width: 50%
3804
+ }
3805
+
3806
+ .col-md-5 {
3807
+ width: 41.66666667%
3808
+ }
3809
+
3810
+ .col-md-4 {
3811
+ width: 33.33333333%
3812
+ }
3813
+
3814
+ .col-md-3 {
3815
+ width: 25%
3816
+ }
3817
+
3818
+ .col-md-2 {
3819
+ width: 16.66666667%
3820
+ }
3821
+
3822
+ .col-md-1 {
3823
+ width: 8.33333333%
3824
+ }
3825
+
3826
+ .col-md-pull-12 {
3827
+ right: 100%
3828
+ }
3829
+
3830
+ .col-md-pull-11 {
3831
+ right: 91.66666667%
3832
+ }
3833
+
3834
+ .col-md-pull-10 {
3835
+ right: 83.33333333%
3836
+ }
3837
+
3838
+ .col-md-pull-9 {
3839
+ right: 75%
3840
+ }
3841
+
3842
+ .col-md-pull-8 {
3843
+ right: 66.66666667%
3844
+ }
3845
+
3846
+ .col-md-pull-7 {
3847
+ right: 58.33333333%
3848
+ }
3849
+
3850
+ .col-md-pull-6 {
3851
+ right: 50%
3852
+ }
3853
+
3854
+ .col-md-pull-5 {
3855
+ right: 41.66666667%
3856
+ }
3857
+
3858
+ .col-md-pull-4 {
3859
+ right: 33.33333333%
3860
+ }
3861
+
3862
+ .col-md-pull-3 {
3863
+ right: 25%
3864
+ }
3865
+
3866
+ .col-md-pull-2 {
3867
+ right: 16.66666667%
3868
+ }
3869
+
3870
+ .col-md-pull-1 {
3871
+ right: 8.33333333%
3872
+ }
3873
+
3874
+ .col-md-pull-0 {
3875
+ right: auto
3876
+ }
3877
+
3878
+ .col-md-push-12 {
3879
+ left: 100%
3880
+ }
3881
+
3882
+ .col-md-push-11 {
3883
+ left: 91.66666667%
3884
+ }
3885
+
3886
+ .col-md-push-10 {
3887
+ left: 83.33333333%
3888
+ }
3889
+
3890
+ .col-md-push-9 {
3891
+ left: 75%
3892
+ }
3893
+
3894
+ .col-md-push-8 {
3895
+ left: 66.66666667%
3896
+ }
3897
+
3898
+ .col-md-push-7 {
3899
+ left: 58.33333333%
3900
+ }
3901
+
3902
+ .col-md-push-6 {
3903
+ left: 50%
3904
+ }
3905
+
3906
+ .col-md-push-5 {
3907
+ left: 41.66666667%
3908
+ }
3909
+
3910
+ .col-md-push-4 {
3911
+ left: 33.33333333%
3912
+ }
3913
+
3914
+ .col-md-push-3 {
3915
+ left: 25%
3916
+ }
3917
+
3918
+ .col-md-push-2 {
3919
+ left: 16.66666667%
3920
+ }
3921
+
3922
+ .col-md-push-1 {
3923
+ left: 8.33333333%
3924
+ }
3925
+
3926
+ .col-md-push-0 {
3927
+ left: auto
3928
+ }
3929
+
3930
+ .col-md-offset-12 {
3931
+ margin-left: 100%
3932
+ }
3933
+
3934
+ .col-md-offset-11 {
3935
+ margin-left: 91.66666667%
3936
+ }
3937
+
3938
+ .col-md-offset-10 {
3939
+ margin-left: 83.33333333%
3940
+ }
3941
+
3942
+ .col-md-offset-9 {
3943
+ margin-left: 75%
3944
+ }
3945
+
3946
+ .col-md-offset-8 {
3947
+ margin-left: 66.66666667%
3948
+ }
3949
+
3950
+ .col-md-offset-7 {
3951
+ margin-left: 58.33333333%
3952
+ }
3953
+
3954
+ .col-md-offset-6 {
3955
+ margin-left: 50%
3956
+ }
3957
+
3958
+ .col-md-offset-5 {
3959
+ margin-left: 41.66666667%
3960
+ }
3961
+
3962
+ .col-md-offset-4 {
3963
+ margin-left: 33.33333333%
3964
+ }
3965
+
3966
+ .col-md-offset-3 {
3967
+ margin-left: 25%
3968
+ }
3969
+
3970
+ .col-md-offset-2 {
3971
+ margin-left: 16.66666667%
3972
+ }
3973
+
3974
+ .col-md-offset-1 {
3975
+ margin-left: 8.33333333%
3976
+ }
3977
+
3978
+ .col-md-offset-0 {
3979
+ margin-left: 0
3980
+ }
3981
+ }
3982
+ @media (min-width:768px) {
3983
+
3984
+ .col-sm-1,
3985
+ .col-sm-10,
3986
+ .col-sm-11,
3987
+ .col-sm-12,
3988
+ .col-sm-2,
3989
+ .col-sm-3,
3990
+ .col-sm-4,
3991
+ .col-sm-5,
3992
+ .col-sm-6,
3993
+ .col-sm-7,
3994
+ .col-sm-8,
3995
+ .col-sm-9 {
3996
+ float: left
3997
+ }
3998
+
3999
+ .col-sm-12 {
4000
+ width: 100%
4001
+ }
4002
+
4003
+ .col-sm-11 {
4004
+ width: 91.66666667%
4005
+ }
4006
+
4007
+ .col-sm-10 {
4008
+ width: 83.33333333%
4009
+ }
4010
+
4011
+ .col-sm-9 {
4012
+ width: 75%
4013
+ }
4014
+
4015
+ .col-sm-8 {
4016
+ width: 66.66666667%
4017
+ }
4018
+
4019
+ .col-sm-7 {
4020
+ width: 58.33333333%
4021
+ }
4022
+
4023
+ .col-sm-6 {
4024
+ width: 50%
4025
+ }
4026
+
4027
+ .col-sm-5 {
4028
+ width: 41.66666667%
4029
+ }
4030
+
4031
+ .col-sm-4 {
4032
+ width: 33.33333333%
4033
+ }
4034
+
4035
+ .col-sm-3 {
4036
+ width: 25%
4037
+ }
4038
+
4039
+ .col-sm-2 {
4040
+ width: 16.66666667%
4041
+ }
4042
+
4043
+ .col-sm-1 {
4044
+ width: 8.33333333%
4045
+ }
4046
+
4047
+ .col-sm-pull-12 {
4048
+ right: 100%
4049
+ }
4050
+
4051
+ .col-sm-pull-11 {
4052
+ right: 91.66666667%
4053
+ }
4054
+
4055
+ .col-sm-pull-10 {
4056
+ right: 83.33333333%
4057
+ }
4058
+
4059
+ .col-sm-pull-9 {
4060
+ right: 75%
4061
+ }
4062
+
4063
+ .col-sm-pull-8 {
4064
+ right: 66.66666667%
4065
+ }
4066
+
4067
+ .col-sm-pull-7 {
4068
+ right: 58.33333333%
4069
+ }
4070
+
4071
+ .col-sm-pull-6 {
4072
+ right: 50%
4073
+ }
4074
+
4075
+ .col-sm-pull-5 {
4076
+ right: 41.66666667%
4077
+ }
4078
+
4079
+ .col-sm-pull-4 {
4080
+ right: 33.33333333%
4081
+ }
4082
+
4083
+ .col-sm-pull-3 {
4084
+ right: 25%
4085
+ }
4086
+
4087
+ .col-sm-pull-2 {
4088
+ right: 16.66666667%
4089
+ }
4090
+
4091
+ .col-sm-pull-1 {
4092
+ right: 8.33333333%
4093
+ }
4094
+
4095
+ .col-sm-pull-0 {
4096
+ right: auto
4097
+ }
4098
+
4099
+ .col-sm-push-12 {
4100
+ left: 100%
4101
+ }
4102
+
4103
+ .col-sm-push-11 {
4104
+ left: 91.66666667%
4105
+ }
4106
+
4107
+ .col-sm-push-10 {
4108
+ left: 83.33333333%
4109
+ }
4110
+
4111
+ .col-sm-push-9 {
4112
+ left: 75%
4113
+ }
4114
+
4115
+ .col-sm-push-8 {
4116
+ left: 66.66666667%
4117
+ }
4118
+
4119
+ .col-sm-push-7 {
4120
+ left: 58.33333333%
4121
+ }
4122
+
4123
+ .col-sm-push-6 {
4124
+ left: 50%
4125
+ }
4126
+
4127
+ .col-sm-push-5 {
4128
+ left: 41.66666667%
4129
+ }
4130
+
4131
+ .col-sm-push-4 {
4132
+ left: 33.33333333%
4133
+ }
4134
+
4135
+ .col-sm-push-3 {
4136
+ left: 25%
4137
+ }
4138
+
4139
+ .col-sm-push-2 {
4140
+ left: 16.66666667%
4141
+ }
4142
+
4143
+ .col-sm-push-1 {
4144
+ left: 8.33333333%
4145
+ }
4146
+
4147
+ .col-sm-push-0 {
4148
+ left: auto
4149
+ }
4150
+
4151
+ .col-sm-offset-12 {
4152
+ margin-left: 100%
4153
+ }
4154
+
4155
+ .col-sm-offset-11 {
4156
+ margin-left: 91.66666667%
4157
+ }
4158
+
4159
+ .col-sm-offset-10 {
4160
+ margin-left: 83.33333333%
4161
+ }
4162
+
4163
+ .col-sm-offset-9 {
4164
+ margin-left: 75%
4165
+ }
4166
+
4167
+ .col-sm-offset-8 {
4168
+ margin-left: 66.66666667%
4169
+ }
4170
+
4171
+ .col-sm-offset-7 {
4172
+ margin-left: 58.33333333%
4173
+ }
4174
+
4175
+ .col-sm-offset-6 {
4176
+ margin-left: 50%
4177
+ }
4178
+
4179
+ .col-sm-offset-5 {
4180
+ margin-left: 41.66666667%
4181
+ }
4182
+
4183
+ .col-sm-offset-4 {
4184
+ margin-left: 33.33333333%
4185
+ }
4186
+
4187
+ .col-sm-offset-3 {
4188
+ margin-left: 25%
4189
+ }
4190
+
4191
+ .col-sm-offset-2 {
4192
+ margin-left: 16.66666667%
4193
+ }
4194
+
4195
+ .col-sm-offset-1 {
4196
+ margin-left: 8.33333333%
4197
+ }
4198
+
4199
+ .col-sm-offset-0 {
4200
+ margin-left: 0
4201
+ }
4202
+ }
4203
+ @media (min-width:1200px) {
4204
+
4205
+ .col-lg-1,
4206
+ .col-lg-10,
4207
+ .col-lg-11,
4208
+ .col-lg-12,
4209
+ .col-lg-2,
4210
+ .col-lg-3,
4211
+ .col-lg-4,
4212
+ .col-lg-5,
4213
+ .col-lg-6,
4214
+ .col-lg-7,
4215
+ .col-lg-8,
4216
+ .col-lg-9 {
4217
+ float: left
4218
+ }
4219
+
4220
+ .col-lg-12 {
4221
+ width: 100%
4222
+ }
4223
+
4224
+ .col-lg-11 {
4225
+ width: 91.66666667%
4226
+ }
4227
+
4228
+ .col-lg-10 {
4229
+ width: 83.33333333%
4230
+ }
4231
+
4232
+ .col-lg-9 {
4233
+ width: 75%
4234
+ }
4235
+
4236
+ .col-lg-8 {
4237
+ width: 66.66666667%
4238
+ }
4239
+
4240
+ .col-lg-7 {
4241
+ width: 58.33333333%
4242
+ }
4243
+
4244
+ .col-lg-6 {
4245
+ width: 50%
4246
+ }
4247
+
4248
+ .col-lg-5 {
4249
+ width: 41.66666667%
4250
+ }
4251
+
4252
+ .col-lg-4 {
4253
+ width: 33.33333333%
4254
+ }
4255
+
4256
+ .col-lg-3 {
4257
+ width: 25%
4258
+ }
4259
+
4260
+ .col-lg-2 {
4261
+ width: 16.66666667%
4262
+ }
4263
+
4264
+ .col-lg-1 {
4265
+ width: 8.33333333%
4266
+ }
4267
+
4268
+ .col-lg-pull-12 {
4269
+ right: 100%
4270
+ }
4271
+
4272
+ .col-lg-pull-11 {
4273
+ right: 91.66666667%
4274
+ }
4275
+
4276
+ .col-lg-pull-10 {
4277
+ right: 83.33333333%
4278
+ }
4279
+
4280
+ .col-lg-pull-9 {
4281
+ right: 75%
4282
+ }
4283
+
4284
+ .col-lg-pull-8 {
4285
+ right: 66.66666667%
4286
+ }
4287
+
4288
+ .col-lg-pull-7 {
4289
+ right: 58.33333333%
4290
+ }
4291
+
4292
+ .col-lg-pull-6 {
4293
+ right: 50%
4294
+ }
4295
+
4296
+ .col-lg-pull-5 {
4297
+ right: 41.66666667%
4298
+ }
4299
+
4300
+ .col-lg-pull-4 {
4301
+ right: 33.33333333%
4302
+ }
4303
+
4304
+ .col-lg-pull-3 {
4305
+ right: 25%
4306
+ }
4307
+
4308
+ .col-lg-pull-2 {
4309
+ right: 16.66666667%
4310
+ }
4311
+
4312
+ .col-lg-pull-1 {
4313
+ right: 8.33333333%
4314
+ }
4315
+
4316
+ .col-lg-pull-0 {
4317
+ right: auto
4318
+ }
4319
+
4320
+ .col-lg-push-12 {
4321
+ left: 100%
4322
+ }
4323
+
4324
+ .col-lg-push-11 {
4325
+ left: 91.66666667%
4326
+ }
4327
+
4328
+ .col-lg-push-10 {
4329
+ left: 83.33333333%
4330
+ }
4331
+
4332
+ .col-lg-push-9 {
4333
+ left: 75%
4334
+ }
4335
+
4336
+ .col-lg-push-8 {
4337
+ left: 66.66666667%
4338
+ }
4339
+
4340
+ .col-lg-push-7 {
4341
+ left: 58.33333333%
4342
+ }
4343
+
4344
+ .col-lg-push-6 {
4345
+ left: 50%
4346
+ }
4347
+
4348
+ .col-lg-push-5 {
4349
+ left: 41.66666667%
4350
+ }
4351
+
4352
+ .col-lg-push-4 {
4353
+ left: 33.33333333%
4354
+ }
4355
+
4356
+ .col-lg-push-3 {
4357
+ left: 25%
4358
+ }
4359
+
4360
+ .col-lg-push-2 {
4361
+ left: 16.66666667%
4362
+ }
4363
+
4364
+ .col-lg-push-1 {
4365
+ left: 8.33333333%
4366
+ }
4367
+
4368
+ .col-lg-push-0 {
4369
+ left: auto
4370
+ }
4371
+
4372
+ .col-lg-offset-12 {
4373
+ margin-left: 100%
4374
+ }
4375
+
4376
+ .col-lg-offset-11 {
4377
+ margin-left: 91.66666667%
4378
+ }
4379
+
4380
+ .col-lg-offset-10 {
4381
+ margin-left: 83.33333333%
4382
+ }
4383
+
4384
+ .col-lg-offset-9 {
4385
+ margin-left: 75%
4386
+ }
4387
+
4388
+ .col-lg-offset-8 {
4389
+ margin-left: 66.66666667%
4390
+ }
4391
+
4392
+ .col-lg-offset-7 {
4393
+ margin-left: 58.33333333%
4394
+ }
4395
+
4396
+ .col-lg-offset-6 {
4397
+ margin-left: 50%
4398
+ }
4399
+
4400
+ .col-lg-offset-5 {
4401
+ margin-left: 41.66666667%
4402
+ }
4403
+
4404
+ .col-lg-offset-4 {
4405
+ margin-left: 33.33333333%
4406
+ }
4407
+
4408
+ .col-lg-offset-3 {
4409
+ margin-left: 25%
4410
+ }
4411
+
4412
+ .col-lg-offset-2 {
4413
+ margin-left: 16.66666667%
4414
+ }
4415
+
4416
+ .col-lg-offset-1 {
4417
+ margin-left: 8.33333333%
4418
+ }
4419
+
4420
+ .col-lg-offset-0 {
4421
+ margin-left: 0
4422
+ }
4423
+ }
4424
+ #sfsi_jivo_offline_chat {
4425
+ position: fixed;
4426
+ bottom: 0;
4427
+ right: 30px;
4428
+ height: 350px;
4429
+ min-width: 45%;
4430
+ background: #fff;
4431
+ border-top-left-radius: 30px;
4432
+ border-top-right-radius: 30px;
4433
+ padding: 10px;
4434
+ border: 3px solid #ddd;
4435
+ border-bottom: 0;
4436
+ }
4437
+ #sfsi_jivo_offline_chat .heading-text {
4438
+ font-size: 16px;
4439
+ font-weight: 500;
4440
+ color: #999;
4441
+ }
4442
+ #sfsi_jivo_offline_chat .heading-text a {
4443
+ font-size: 16px;
4444
+ font-weight: 900;
4445
+ color: #999;
4446
+ }
4447
+ #sfsi_jivo_offline_chat .tab-changer {
4448
+ /*width:100%;*/
4449
+ padding: 0 15px;
4450
+
4451
+ }
4452
+ #sfsi_jivo_offline_chat .tab-changer .tab-link {
4453
+ float: left;
4454
+ width: 50%;
4455
+ text-align: center;
4456
+ background: #eee;
4457
+ border-bottom: 5px solid #24497B;
4458
+ }
4459
+ #sfsi_jivo_offline_chat .tab-changer .tab-link:first-child {
4460
+ border-top-left-radius: 8px;
4461
+ }
4462
+ #sfsi_jivo_offline_chat .tab-changer .tab-link:last-child {
4463
+ border-top-right-radius: 8px;
4464
+ }
4465
+ #sfsi_jivo_offline_chat .tab-changer .tab-link p {
4466
+ background: #eee;
4467
+ padding: 5px 0;
4468
+ margin: 0;
4469
+ border-top-left-radius: 10px;
4470
+ border-top-right-radius: 10px;
4471
+ font-size: 25px;
4472
+ cursor: pointer;
4473
+ line-height: 1;
4474
+ }
4475
+ #sfsi_jivo_offline_chat .tab-changer .tab-link p span {
4476
+ font-size: 15px;
4477
+ }
4478
+ #sfsi_jivo_offline_chat .tab-changer .tab-link.active p {
4479
+ background: #24497B;
4480
+ color: #fff;
4481
+ }
4482
+ #sfsi_jivo_offline_chat .tabs {
4483
+ /*background: #dbeef4;*/
4484
+ background: #ddd;
4485
+ margin: -6px 15px 0 15px;
4486
+ min-height: 250px;
4487
+ }
4488
+ #sfsi_jivo_offline_chat #sfsi_technical {
4489
+ padding: 50px;
4490
+ }
4491
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div {
4492
+ margin: 10px 0;
4493
+ }
4494
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div a {
4495
+ padding: 20px 26px 18px 25px;
4496
+ width: 245px;
4497
+ margin: 0;
4498
+ }
4499
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div a img {
4500
+ margin-top: 11px;
4501
+ }
4502
+ #sfsi_jivo_offline_chat .tabs #sfsi_technical p {
4503
+ font-size: 20px;
4504
+ padding-top: 5px;
4505
+ margin: 0;
4506
+ margin-top: 20px;
4507
+ }
4508
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales {
4509
+ padding: 15px;
4510
+ }
4511
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .right-message {
4512
+ width: 50%;
4513
+ float: right;
4514
+ text-align: right;
4515
+ margin: 0;
4516
+ }
4517
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales form>div {
4518
+ margin-top: 5px;
4519
+ }
4520
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales label {
4521
+ font-size: 20px;
4522
+ color: #000;
4523
+ font-weight: 900;
4524
+ padding-bottom: 5px;
4525
+ }
4526
+
4527
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input,
4528
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4529
+ margin-top: 5px;
4530
+ width: 100%;
4531
+ border: 0;
4532
+ box-shadow: 0 0 5px 0 #888;
4533
+ }
4534
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input {
4535
+ height: 40px;
4536
+ }
4537
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4538
+ height: 80px;
4539
+ resize: none;
4540
+ }
4541
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4542
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4543
+ border: 0;
4544
+ background: #079345;
4545
+ color: #fff;
4546
+ margin-top: 23px;
4547
+ width: 100%;
4548
+ font-size: 16px;
4549
+ border-radius: 4px;
4550
+ cursor: pointer;
4551
+ box-shadow: none;
4552
+ }
4553
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent {
4554
+ text-align: center;
4555
+ }
4556
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4557
+ font-size: 35px;
4558
+ }
4559
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4560
+ font-size: 25px;
4561
+ font-weight: 300;
4562
+ }
4563
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4564
+ width: auto;
4565
+ margin-top: 0;
4566
+ padding: 10px;
4567
+ }
4568
+ #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4569
+ font-size: 13px !important;
4570
+ font-weight: 900;
4571
+ /*float: right;*/
4572
+ /*text-align: right;*/
4573
+ margin-top: -40px !important;
4574
+ margin-left: 320px !important;
4575
+ }
4576
+ #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4577
+ background-image: url('images/select-arrow.png');
4578
+ width: 15px;
4579
+ height: 9px;
4580
+ display: inline-block;
4581
+ -webkit-transform: rotate(90deg);
4582
+ -moz-transform: rotate(90deg);
4583
+ -ms-transform: rotate(90deg);
4584
+ -o-transform: rotate(90deg);
4585
+ transform: rotate(90deg);
4586
+ }
4587
+ @media (max-width: 543px) {
4588
+ #sfsi_jivo_offline_chat {
4589
+ width: 400px;
4590
+ }
4591
+ }
4592
+
4593
+ #sfsi_jivo_offline_chat {
4594
+ border: 3px solid #ececec;
4595
+ }
4596
+
4597
+ #sfsi_jivo_offline_chat {
4598
+ padding-bottom: 30px;
4599
+ }
4600
+
4601
+ #sfsi_jivo_offline_chat .heading-text {
4602
+ font-size: 14px;
4603
+ }
4604
+
4605
+ #sfsi_jivo_offline_chat .tabs {
4606
+ background-color: #ededed;
4607
+ }#sfsi_jivo_offline_chat .tab-changer li p {
4608
+ padding: 8px !important;
4609
+ }
4610
+
4611
+ #sfsi_jivo_offline_chat .tab-changer .tab-link p {
4612
+ font-size: 21px !important;
4613
+ font-weight: 500;
4614
+ color: #000000;
4615
+ }#sfsi_jivo_offline_chat .tab-changer .tab-link p span {
4616
+ font-size: 14px !important;
4617
+ font-weight: 400;
4618
+ color: #000000;
4619
+ }
4620
+
4621
+ #sfsi_jivo_offline_chat .tab-changer .active p span {
4622
+ color: #ffffff;
4623
+ }
4624
+
4625
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales {
4626
+ padding: 30px 30px 40px 30px;
4627
+ background: #ededed;
4628
+ }#sfsi_jivo_offline_chat .tabs #sfsi_sales .label {
4629
+ margin-bottom: 8px;
4630
+ font-size: 17px;
4631
+ font-weight: 500;
4632
+ color: #000000;
4633
+ }#sfsi_jivo_offline_chat .tabs #sfsi_sales .email {
4634
+ margin-top: 15px;
4635
+ }
4636
+
4637
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .right-message {
4638
+ font-size: 14px;
4639
+ color: #000000;
4640
+ }
4641
+
4642
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales textarea {
4643
+ padding: 10px !important;
4644
+ font-size: 14px;
4645
+ font-weight: 500;
4646
+ margin-top: 0 !important;
4647
+ }
4648
+
4649
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input {
4650
+ padding: 10px;
4651
+ font-size: 14px;
4652
+ font-weight: 500;
4653
+ margin-top: 0 !important;
4654
+ }
4655
+
4656
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales input[type="submit"],
4657
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4658
+ background: #52b250;
4659
+ }#sfsi_jivo_offline_chat #sfsi_technical {
4660
+ padding: 57px;
4661
+ background-color: #ededed
4662
+ }
4663
+
4664
+ #sfsi_technical h5 {
4665
+ font-size: 18px;
4666
+ color: #000000;
4667
+ margin: 10px;
4668
+ }
4669
+
4670
+ #sfsi_technical h5 b {
4671
+ font-weight: 700;
4672
+ }
4673
+
4674
+ #sfsi_technical h5 b {
4675
+ font-weight: 700;
4676
+ }
4677
+
4678
+ #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side {
4679
+ font-size: 12px !important;
4680
+ font-weight: 700;
4681
+ margin-top: 0px !important;
4682
+ margin-left: 0px !important;
4683
+ color: #000000;
4684
+ position: absolute;
4685
+ padding: 12px;
4686
+ }
4687
+
4688
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div {
4689
+ text-align: center;
4690
+ margin: 20px 0 25px 0;
4691
+ }
4692
+
4693
+ #sfsi_jivo_offline_chat .tabs .support-forum-green-div a {
4694
+ padding: 12px 25px;
4695
+ background: #52b250;
4696
+ }
4697
+
4698
+ #sfsi_jivo_offline_chat #sfsi_technical .support-forum-green-div .support-forum-green-bg p {
4699
+ padding: 0;
4700
+ margin: 0;
4701
+ font-size: 18px;
4702
+ font-weight: 500;
4703
+ }
4704
+
4705
+ #sfsi_jivo_offline_chat #sfsi_technical .support-forum-green-div .support-forum-green-bg img {
4706
+ height: 28px;
4707
+ position: relative;
4708
+ top: 9px;
4709
+ padding-right: 5px;
4710
+ margin-top: 0px;
4711
+ }
4712
+
4713
+ #sfsi_jivo_offline_chat #sfsi_technical .sfsi-button-right-side .sfsi-button-right-side-icon {
4714
+ padding-right: -1px;
4715
+ }
4716
+
4717
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h3 {
4718
+ font-size: 20px;
4719
+ font-weight: 500;
4720
+ }
4721
+
4722
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent h2 {
4723
+ font-size: 35px;
4724
+ font-weight: 700;
4725
+ margin: 25px 0;
4726
+ }
4727
+
4728
+ #sfsi_jivo_offline_chat .tabs #sfsi_sales .after_message_sent button {
4729
+ width: auto;
4730
+ margin-top: 6px;
4731
+ padding: 8px 30px;
4732
+ font-size: 16px;
4733
+ background: #52b250;
4734
+ }
4735
+ @media (max-width: 543px) {
4736
+ #sfsi_jivo_offline_chat {
4737
+ width: 400px;
4738
+ }
4739
+ }
4740
+ .sfsi_unbold_link {
4741
+ font-family: inherit !important;
4742
+ }
4743
+ .sfsi_quickpay-overlay a {
4744
+ display: inline;
4745
+ font-size: inherit;
4746
+ text-decoration: underline;
4747
+ font-weight: 900;
4748
+ color: #666;
4749
+ }
4750
+ .sfsi_row {
4751
+ width: 100%;
4752
+ }
4753
+ .sfsi_col_6 {
4754
+ width: 49%;
4755
+ display: inline-block;
4756
+ }
4757
+ .sfsi_text_center {
4758
+ text-align: center;
4759
+ }
4760
+ .sfsi_col_6>div {
4761
+ padding: 18px 30px !important;
4762
+ margin: 20px 0 0 0;
4763
+ border: 1px solid #999;
4764
+ display: inline-block;
4765
+ float: none;
4766
+ /* height: 42px;
4767
+ width: 150px;*/
4768
+ }
4769
+ .sfsi_col_6>div:hover {
4770
+ background-image: radial-gradient(circle, #fff, #eee);
4771
+ }.sfsi_quickpay-overlay .sfsi_pop_up .sellcodes-quick-purchase img {
4772
+ vertical-align: middle;
4773
+ height: 40px;
4774
+ }
4775
+
4776
+ .sfsi_quickpay-overlay .sfsi_pop_up .sellcodes-quick-purchase p {
4777
+ text-align: center;
4778
+ }
4779
+
4780
+ .pop-overlay.read-overlay.sfsi_quickpay-overlay * {
4781
+ font-family: 'Josefin Sans', sans-serif;
4782
+ }
4783
+ .sfsi_quickpay-overlay a {
4784
+ display: inline !important;
4785
+ font-size: inherit !important;
4786
+ text-decoration: underline !important;
4787
+ font-weight: 900;
4788
+ color: #666;
4789
+ }
4790
+
4791
+ .wp-admin select {
4792
+ padding: 9px;
4793
+ }
4794
+
4795
+ .sfsi_mainContainer .no_check .checkbox {
4796
+ display: none;
4797
+ }
4798
+
4799
+ .sfsi_new_prmium_follw p .sfsi-share-op {
4800
+ color: #0c0b0b !important;
4801
+ text-decoration: none !important;
4802
+ border-bottom: none;
4803
+ }
4804
+ .sfsi_instagramInstruction ol>li {
4805
+ list-style-type: decimal !important;
4806
+ }
4807
+ .sfsi_instagramInstruction>p {
4808
+ list-style-type: decimal !important;
4809
+ }
4810
+ .sfsi_font_inherit {
4811
+ font-family: inherit !important;
4812
+ border: 0 !important;
4813
+ }
4814
+
4815
+ .pop-up {
4816
+ font-weight: normal;
4817
+ }
4818
+ /* by developer 23-05-2019 */
4819
+
4820
+ .sfsi_instagramFields .input_facebook {
4821
+
4822
+ margin-left: 0 !important;
4823
+
4824
+ }
4825
+
4826
+ body .specify_counts .listing .sfsi_instagramInstruction li {
4827
+ font-size: 17px !important;
4828
+ font-family: helveticaregular !important;
4829
+ font-weight: 400 !important;
4830
+ color: #1a1d20 !important;
4831
+ }
4832
+
4833
+ /* end */
4834
+
4835
+ /*start 4-6-19*/
4836
+ .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.twt_tool_bdr {
4837
+ margin-bottom: -12px !important;
4838
+ }
4839
+
4840
+ .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.printst_tool_bdr {
4841
+ margin-bottom: 2px;
4842
+ }
4843
+
4844
+ .wp-admin .pop-overlay .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.printst_tool_bdr {
4845
+ margin-bottom: 2px;
4846
+ }
4847
+
4848
+ .wp-admin .sfsi_tool_tip_2.sfsi_tool_tip_2_inr.linkedin_tool_bdr {
4849
+ margin-bottom: -12px;
4850
+ }
4851
+
4852
+ /*end 4-6-19*/
4853
+
4854
+ .sfsi_border_left_0 {
4855
+ border-left: 0 !important;
4856
+ }
4857
+
4858
+ .tab8 .sfsi_inputSec input {
4859
+ width: 140px !important;
4860
+ padding: 13px;
4861
+ }
4862
+
4863
+ .tab8 .sfsi_inputSec span {
4864
+ width: auto;
4865
+ }
4866
+
4867
+ .tab8 .sfsi_inputSec span {
4868
+ display: inline-block;
4869
+ font-size: 18px;
4870
+ vertical-align: middle;
4871
+ width: 200px;
4872
+ color: #5A6570;
4873
+ }
4874
+
4875
+ .sfsi_responsive_icon_item_container {
4876
+ height: 40px;
4877
+ vertical-align: middle;
4878
+ margin-top: auto;
4879
+ margin-bottom: auto;
4880
+ }
4881
+
4882
+ .sfsi_responsive_icon_item_container img {
4883
+ padding: 7px;
4884
+ vertical-align: middle !important;
4885
+ box-shadow: unset !important;
4886
+ -webkit-box-shadow: unset !important;
4887
+ max-width: 40px !important;
4888
+ max-height: 40px;
4889
+ }
4890
+
4891
+ .sfsi_responsive_icon_item_container span {
4892
+ padding: 7px;
4893
+ vertical-align: middle !important;
4894
+ box-shadow: unset !important;
4895
+ -webkit-box-shadow: unset !important;
4896
+ line-height: 40px
4897
+ }.sfsi_responsive_icon_facebook_container {
4898
+ background-color: #336699;
4899
+ }
4900
+
4901
+ .sfsi_responsive_icon_follow_container {
4902
+ background-color: #00B04E;
4903
+ }
4904
+
4905
+ .sfsi_responsive_icon_twitter_container {
4906
+ background-color: #55ACEE;
4907
+ }.sfsi_icons_container_box_fully_container {
4908
+ flex-wrap: wrap;
4909
+ }
4910
+
4911
+ .sfsi_icons_container_box_fully_container a {
4912
+ flex-basis: auto !important;
4913
+ flex-grow: 1;
4914
+ flex-shrink: 1;
4915
+ }
4916
+
4917
+ .sfsi_responsive_icons .sfsi_icons_container span {
4918
+ font-family: sans-serif;
4919
+ font-size: 15px;
4920
+ }
4921
+
4922
+ .sfsi_widget_title {
4923
+ font-weight: 700;
4924
+ line-height: 1.2;
4925
+ font-size: 27px;
4926
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
4927
+
4928
+ }
4929
+
4930
+ .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container,
4931
+ .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container {
4932
+ width: 236px;
4933
+ text-align: center;
4934
+ margin-right: 8px;
4935
+ margin-top: -5px;
4936
+ }
4937
+
4938
+ .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container img,
4939
+ .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container img {
4940
+ max-height: 25px !important;
4941
+ max-width: 40px !important;
4942
+ float: left;
4943
+ height: 25px;
4944
+ }
4945
+
4946
+ .sfsi_responsive_default_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container span,
4947
+ .sfsi_responsive_custom_icon_container .sfsi_icon_container .sfsi_responsive_icon_item_container span {
4948
+ color: #ffffff;
4949
+ font-size: 20px;
4950
+ padding: 0 10px;
4951
+ letter-spacing: 0.5px;
4952
+ font-weight: 500;
4953
+ }
4954
+
4955
+ .tab6 .sfsi_responsive_default_icon_container,
4956
+ .tab6 .sfsi_responsive_custom_icon_container {
4957
+ width: 100% !important;
4958
+ max-width: unset !important;
4959
+ /* padding-left: 60px!important; */
4960
+ }
4961
+
4962
+ .tab6 .sfsi_responsive_default_icon_container input {
4963
+ padding: 8px 11px;
4964
+ height: 39px;
4965
+ }
4966
+
4967
+ .tab6 .heading-label {
4968
+ font-size: 18px !important;
4969
+ font-weight: 400;
4970
+ }
4971
+
4972
+ .sfsi_responsive_default_icon_container,
4973
+ .sfsi_responsive_custom_icon_container {
4974
+ padding: 2px 0 !important;
4975
+ }
4976
+
4977
+ .sfsi_responsive_default_icon_container .sfsi_responsive_default_url_toggler,
4978
+ .sfsi_responsive_custom_icon_container .sfsi_responsive_default_url_toggler,
4979
+ .sfsi_responsive_default_icon_container .sfsi_responsive_default_url_hide {
4980
+ color: #337ab7 !important;
4981
+ font-size: 18px !important;
4982
+ letter-spacing: 1px;
4983
+ font-weight: 500;
4984
+ margin-left: 20px;
4985
+ text-decoration: none !important
4986
+ }
4987
+
4988
+ .sfsi_responsive_fluid {
4989
+ text-decoration: none !important;
4990
+ }
4991
+
4992
+ .sfsi_large_button_container {
4993
+ width: calc(100% - 81px) !important;
4994
+ }
4995
+
4996
+ .sfsi_medium_button_container {
4997
+ width: calc(100% - 70px) !important;
4998
+ }
4999
+
5000
+ .sfsi_small_button_container {
5001
+ width: calc(100% - 100px) !important;
5002
+ }
5003
+
5004
+ /* .sfsi_responsive_custom_icon{line-height: 6px;} */
5005
+ /* .sfsi_responsive_fixed_width .sfsi_responsive_custom_icon{line-height: 6px;} */
5006
+ /*Override for front end - icon of right height*/
5007
+ /* .sfsi_responsive_fluid .sfsi_large_button{padding: 13px !important;} */
5008
+ /* .sfsi_responsive_fluid .sfsi_medium_button{padding: 10px !important;} */
5009
+
5010
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
5011
+ padding: 12px 13px 9px 13px !important;
5012
+ }
5013
+
5014
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button h3 {
5015
+ margin: 0px 0px 15px 0px !important;
5016
+ }
5017
+
5018
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
5019
+ padding: 9px 10px 7px 10px !important;
5020
+ }
5021
+
5022
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_large_button {
5023
+ padding: 12px 13px 9px 13px !important;
5024
+ }
5025
+
5026
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
5027
+ margin: 0px 0px 15px 0px !important;
5028
+ }
5029
+
5030
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
5031
+ padding: 9px 10px 7px 10px !important;
5032
+ }
5033
+
5034
+ .sfsi_responsive_icon_preview .sfsi_icons_container a .sfsi_responsive_icon_item_container {
5035
+ /* white-space: nowrap;
5036
+ overflow: hidden;
5037
+ text-overflow: ellipsis;*/
5038
+ display: inline-block;
5039
+ }
5040
+
5041
+ .sfsi_right_info ul .sfsi_responsive_icon_option_li .options .field .sfsi_responsive_icons_icon_width input,
5042
+ .sfsi_right_info ul .sfsi_responsive_icon_option_li .options .field input {
5043
+ width: 75px !important;
5044
+ background: #ffffff;
5045
+ box-shadow: none;
5046
+ border: 1px solid rgb(221, 221, 221);
5047
+ border-radius: 0px;
5048
+ }
5049
+
5050
+ input[type="number"] {
5051
+ height: 46px !important;
5052
+ }
5053
+
5054
+ .tab6 .sfsi_inputSec span {
5055
+ display: inline-block;
5056
+ font-size: 18px;
5057
+ margin-left: 10px;
5058
+ vertical-align: middle;
5059
+ width: 200px;
5060
+ color: #5A6570;
5061
+ }
5062
+
5063
+ .tab6 .sfsi_responsive_icon_item_container {
5064
+ width: 300px;
5065
+ /* padding: 5px 10px; */
5066
+ display: inline-block;
5067
+ box-sizing: border-box !important;
5068
+ }
5069
+
5070
+ .tab6 .options select.styled {
5071
+ line-height: 46px;
5072
+ }
5073
+
5074
+ .tab6 .options select.styled {
5075
+ height: 46px;
5076
+ left: 0;
5077
+ line-height: 46px;
5078
+ position: absolute;
5079
+ top: 0;
5080
+ width: 213px;
5081
+ }
5082
+
5083
+ .tab6 .sfsi_responsive_icon_option_li span{
5084
+ margin-left: 0!important;
5085
+ }
5086
+
5087
+ .tab6 ul.sfsi_icn_listing8 li .sfsi_right_info {
5088
+ font-family: helveticaregular;
5089
+ float: left;
5090
+ }
5091
+ .sfsi_margin_top_0{
5092
+ margin-top: 0 !important;
5093
+ }
5094
+ .sfsi_responsive_icon_preview .sfsi_icons_container a{
5095
+ text-decoration: none;
5096
+ }
5097
+ .sfsi_small_button {
5098
+ line-height: 0px;
5099
+ height: unset;
5100
+ padding: 6px !important;
5101
+ }
5102
+ .sfsi_small_button span {
5103
+ margin-left: 10px;
5104
+ font-size: 16px;
5105
+ padding: 0px;
5106
+ line-height: 16px;
5107
+ vertical-align: -webkit-baseline-middle !important;
5108
+ margin-left: 10px;
5109
+ }
5110
+ .sfsi_small_button img {
5111
+ max-height: 16px !important;
5112
+ padding: 0px;
5113
+ line-height: 0px;
5114
+ vertical-align: -webkit-baseline-middle !important;
5115
+ }
5116
+ .sfsi_medium_button span {
5117
+ margin-left: 10px;
5118
+ font-size: 18px;
5119
+ padding: 0px;
5120
+ line-height: 16px;
5121
+ vertical-align: -webkit-baseline-middle !important;
5122
+ margin-left: 10px;
5123
+ }
5124
+ .sfsi_medium_button img {
5125
+ max-height: 16px !important;
5126
+ padding: 0px;
5127
+ line-height: 0px;
5128
+ vertical-align: -webkit-baseline-middle !important;
5129
+ }
5130
+ .sfsi_medium_button {
5131
+ line-height: 0px;
5132
+ height: unset;
5133
+ padding: 10px !important;
5134
+ }
5135
+
5136
+ .sfsi_medium_button span {
5137
+ margin-left: 10px;
5138
+ font-size: 18px;
5139
+ padding: 0px;
5140
+ line-height: 16px;
5141
+ vertical-align: -webkit-baseline-middle !important;
5142
+ margin-left: 10px;
5143
+ }
5144
+ .sfsi_medium_button img {
5145
+ max-height: 16px !important;
5146
+ padding: 0px;
5147
+ line-height: 0px;
5148
+ vertical-align: -webkit-baseline-middle !important;
5149
+ }
5150
+ .sfsi_medium_button {
5151
+ line-height: 0px;
5152
+ height: unset;
5153
+ padding: 10px !important;
5154
+ }
5155
+ .sfsi_large_button span {
5156
+ font-size: 20px;
5157
+ padding: 0px;
5158
+ line-height: 16px;
5159
+ vertical-align: -webkit-baseline-middle !important;
5160
+ display: inline;
5161
+ margin-left: 10px;
5162
+ }
5163
+ .sfsi_large_button img {
5164
+ max-height: 16px !important;
5165
+ padding: 0px;
5166
+ line-height: 0px;
5167
+ vertical-align: -webkit-baseline-middle !important;
5168
+ display: inline;
5169
+ }
5170
+ .sfsi_large_button {
5171
+ line-height: 0px;
5172
+ height: unset;
5173
+ padding: 13px !important;
5174
+ }
5175
+ .sfsi_responsive_icons_count{
5176
+ padding: 5px 10px;
5177
+ float: left !important;
5178
+ display: inline-block;
5179
+ margin-right: 0px;
5180
+ margin-top: 2px;
5181
+ }
5182
+
5183
+ .sfsi_responsive_icons_count h3{
5184
+ font-family: 'sans-serif' !important;
5185
+ font-weight: 900;
5186
+ font-size: 32px !important;
5187
+ line-height: 0px !important;
5188
+ padding: 0px;
5189
+ margin: 0px;
5190
+ }
5191
+
5192
+ .sfsi_responsive_icons_count h6{
5193
+ font-family: 'sans-serif' !important;
5194
+ font-weight: 900;
5195
+ padding: 0px;
5196
+ margin: 0px;
5197
+ }
5198
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
5199
+ text-decoration: none!important;
5200
+ border: 0!important;
5201
+ }
5202
+ .sfsi_responsive_with_counter_icons{
5203
+ width: calc(100% - 100px)!important;
5204
+ }
5205
+ .sfsiresponsive_icon_preview {
5206
+ padding: 0px 0 20px 0;
5207
+ min-width: 100%;
5208
+ }
5209
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
5210
+ padding: 12px 13px 9px 13px !important;
5211
+ }
5212
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
5213
+ padding: 9px 10px 7px 10px !important;
5214
+ }
5215
+ .sfsi_responsive_icons_count.sfsi_small_button {
5216
+ padding: 7px 6px !important;
5217
+ }
5218
+ .sfsi_responsive_icons_count.sfsi_small_button {
5219
+ padding: 7px 6px !important;
5220
+ margin-top: 2px;
5221
+ }
5222
+ .sfsi_responsive_icons_count.sfsi_small_button h6 {
5223
+ display: inline-block;
5224
+ font-size: 12px !important;
5225
+ vertical-align: middle;
5226
+ }
5227
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
5228
+ padding: 9px 10px 7px 10px !important;
5229
+ }
5230
+ .sfsi_responsive_icons_count.sfsi_medium_button h3 {
5231
+ font-size: 21px !important;
5232
+ vertical-align: top;
5233
+ line-height: 8px !important;
5234
+ margin: 0px 0px 12px 0px !important;
5235
+ font-family: 'sans-serif' !important;
5236
+ font-weight: 900;
5237
+ padding: 0px;
5238
+ }
5239
+ .sfsi_esponsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
5240
+ margin: 0px 0px 15px 0px !important;
5241
+ }
5242
+ .sfsi_responsive_icons_count.sfsi_large_button h3 {
5243
+ font-size: 26px !important;
5244
+ vertical-align: top;
5245
+ line-height: 6px !important;
5246
+ }
5247
+
5248
+ .sfsi_responsive_icons_count h3 {
5249
+ font-family: 'sans-serif' !important;
5250
+ font-weight: 900;
5251
+ padding: 0px;
5252
+ }
5253
+
5254
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
5255
+ font-size: 20px !important;
5256
+ display: inline-block;
5257
+ vertical-align: middle;
5258
+ }
5259
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
5260
+ margin: 0px !important;
5261
+ }
5262
+ .sfsi_responsive_icons_count h3 {
5263
+ font-family: 'sans-serif' !important;
5264
+ font-weight: 900;
5265
+ line-height: 0px !important;
5266
+ padding: 0px;
5267
+ margin: 0px;
5268
+ }
5269
+ #accordion .ui-state-active, #accordion1 .ui-state-active, #accordion2 .ui-state-active{
5270
+ background: #d22b30 url(../images/arrow.png) right -105px no-repeat !important;
5271
+ color: #eee !important;
5272
+ border: 0;
5273
+ }
5274
+
5275
+ #accordion .ui-state-hover, #accordion1 .ui-state-hover, #accordion2 .ui-state-hover {
5276
+ background: #d22b30 url(../images/arrow.png) right -105px no-repeat !important;
5277
+ color: #eee !important;
5278
+ }
5279
+
5280
+
5281
+ .sfsi_disable_radio .radio{
5282
+ background-position: 0px 0px !important;
5283
+ opacity: 0.3;
5284
+ }
5285
+ .sfsi_disable_radio .labelhdng4{
5286
+ opacity: 0.3;
5287
+ }
css/sfsi-style.css CHANGED
@@ -1,3473 +1,3471 @@
1
- @charset "utf-8";
2
-
3
- @font-face {
4
- font-family: helveticabold;
5
- src: url(fonts/helvetica_bold_0-webfont.eot);
6
- src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
7
- font-weight: 400;
8
- font-style: normal;
9
- }
10
-
11
- @font-face {
12
- font-family: helveticaregular;
13
- src: url(fonts/helvetica_0-webfont.eot);
14
- src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
15
- font-weight: 400;
16
- font-style: normal;
17
- }
18
-
19
- @font-face {
20
- font-family: helveticaneue-light;
21
- src: url(fonts/helveticaneue-light.eot);
22
- src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'), url(fonts/helveticaneue-light.woff) format('woff'), url(fonts/helveticaneue-light.ttf) format('truetype'), url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
23
- font-weight: 400;
24
- font-style: normal;
25
- }
26
-
27
- body {
28
- margin: 0;
29
- padding: 0;
30
- }
31
-
32
- .clear {
33
- clear: both;
34
- }
35
-
36
- .space {
37
- clear: both;
38
- padding: 30px 0 0;
39
- width: 100%;
40
- float: left;
41
- }
42
-
43
- .like_txt {
44
- margin: 30px 0 0;
45
- padding: 0;
46
- color: #12a252;
47
- font-family: helveticaregular;
48
- font-size: 20px;
49
- line-height: 20px;
50
- text-align: center;
51
- }
52
-
53
- .like_txt a {
54
- color: #12a252;
55
- }
56
-
57
- .sfsibeforpstwpr iframe,
58
- .sfsiaftrpstwpr iframe {
59
- max-width: none;
60
- }
61
-
62
- .sfwp_fivestar_ul li {
63
- display: block;
64
- padding-right: 20px;
65
- }
66
-
67
- .shwthmbfraftr {
68
- margin-top: 5px !important
69
- }
70
-
71
- label.toglpstpgsbttl {
72
- float: left;
73
- margin-top: 5px !important
74
- }
75
-
76
- .tab_3_icns.shwthmbfraftr .cstmdisplaysharingtxt {
77
- float: left;
78
- }
79
-
80
- .tab6 ul.enough_waffling.sfsi_dsplyatend {
81
- width: 24%;
82
- float: left;
83
- }
84
-
85
- .tab4 ul.like_icon {
86
- margin: 0;
87
- padding: 20px 0 0;
88
- list-style: none;
89
- text-align: center;
90
- }
91
-
92
- .tab4 ul.like_icon li {
93
- margin: 0;
94
- padding: 0;
95
- list-style: none;
96
- display: inline-block;
97
- }
98
-
99
- .tab4 ul.like_icon li span {
100
- margin: 0;
101
- width: 54px;
102
- display: block;
103
- background: url(../images/count_bg.png) no-repeat;
104
- height: 24px;
105
- overflow: hidden;
106
- padding: 10px 2px 2px;
107
- font-size: 17px;
108
- text-align: center;
109
- line-height: 24px;
110
- color: #5a6570;
111
- }
112
-
113
- .tab4 ul.like_icon li a {
114
- color: #5a6570;
115
- text-decoration: none;
116
- }
117
-
118
- .tab4 ul.enough_waffling {
119
- margin: 0;
120
- padding: 25px 0 27px;
121
- list-style: none;
122
- text-align: center;
123
- }
124
-
125
- .tab4 ul.enough_waffling li {
126
- margin: 0 22px;
127
- padding: 0;
128
- list-style: none;
129
- display: inline-block;
130
- }
131
-
132
- .tab4 ul.enough_waffling li span {
133
- float: left;
134
- }
135
-
136
- .tab4 ul.enough_waffling li label {
137
- margin: 0 0 0 20px;
138
- float: left;
139
- font-family: helveticaregular;
140
- font-size: 18px;
141
- font-weight: 400;
142
- text-align: center;
143
- line-height: 38px;
144
- color: #5a6570;
145
- }
146
-
147
- .sfsi_mainContainer .checkbox {
148
- width: 31px;
149
- height: 31px;
150
- background: url(../images/check_bg.jpg) no-repeat;
151
- display: inherit;
152
- }
153
-
154
- .sfsi_mainContainer .radio {
155
- width: 40px;
156
- height: 40px;
157
- background: url(../images/radio_bg.png) no-repeat;
158
- display: inherit;
159
- }
160
-
161
- .sfsi_mainContainer .select {
162
- width: 127px;
163
- height: 47px;
164
- font-size: 17px;
165
- background: url(../images/select_bg.jpg) no-repeat;
166
- display: block;
167
- padding-left: 16px;
168
- line-height: 49px;
169
- }
170
-
171
- .sfsi_mainContainer .line {
172
- background: #eaebee;
173
- height: 1px;
174
- font-size: 0;
175
- margin: 15px 0 0;
176
- clear: both;
177
- width: 100%;
178
- float: left;
179
- }
180
-
181
- .specify_counts {
182
- display: block;
183
- margin-top: 15px;
184
- padding-top: 15px;
185
- clear: both;
186
- width: 100%;
187
- float: left;
188
- border-top: 1px solid #eaebee;
189
- }
190
-
191
- .specify_counts .radio_section {
192
- width: 30px;
193
- float: left;
194
- margin: 12px 10px 0 0;
195
- }
196
-
197
- .specify_counts .social_icon_like {
198
- width: 54px;
199
- float: left;
200
- margin: 0 15px 0 0;
201
- }
202
-
203
- .specify_counts .social_icon_like ul {
204
- margin: 0;
205
- padding: 0;
206
- list-style: none;
207
- text-align: center;
208
- }
209
-
210
- .specify_counts .social_icon_like li {
211
- margin: 0;
212
- padding: 0;
213
- list-style: none;
214
- display: inline-block;
215
- }
216
-
217
- .specify_counts .social_icon_like li span {
218
- margin: 0;
219
- width: 54px;
220
- display: block;
221
- background: url(../images/count_bg.jpg) no-repeat;
222
- height: 24px;
223
- overflow: hidden;
224
- padding: 10px 2px 2px;
225
- font-family: helveticaregular;
226
- font-size: 16px;
227
- text-align: center;
228
- line-height: 24px;
229
- color: #5a6570;
230
- }
231
-
232
- .specify_counts .social_icon_like li a {
233
- color: #5a6570;
234
- text-decoration: none;
235
- }
236
-
237
- .specify_counts .listing {
238
- width: 88%;
239
- margin-top: -5px;
240
- display: inherit;
241
- float: left;
242
- }
243
-
244
- .specify_counts .listing ul {
245
- margin: 0;
246
- padding: 0;
247
- list-style: none;
248
- text-align: left;
249
- }
250
-
251
- .specify_counts .listing li {
252
- margin: 15px 0 0;
253
- padding: 0;
254
- list-style: none;
255
- clear: both;
256
- line-height: 39px;
257
- font-size: 17px;
258
- }
259
-
260
- .specify_counts .listing li span {
261
- float: left;
262
- margin-right: 20px;
263
- }
264
-
265
- .specify_counts .listing li .input {
266
- background: #e5e5e5;
267
- box-shadow: 2px 2px 3px #dcdcdc inset;
268
- border: 0;
269
- padding: 10px;
270
- margin-left: 25px;
271
- }
272
-
273
- .specify_counts .listing li .input_facebook {
274
- width: 288px;
275
- background: #e5e5e5;
276
- box-shadow: 2px 2px 3px #dcdcdc inset;
277
- border: 0;
278
- padding: 10px;
279
- margin-left: 16px;
280
- }
281
-
282
- .save_button {
283
- width: 450px;
284
- padding-top: 30px;
285
- clear: both;
286
- margin: auto;
287
- }
288
-
289
- .save_button a {
290
- background: #12a252;
291
- text-align: center;
292
- font-size: 23px;
293
- color: #FFF !important;
294
- display: block;
295
- padding: 11px 0;
296
- text-decoration: none;
297
- }
298
-
299
- .save_button a:hover {
300
- background: #079345
301
- }
302
-
303
- .tab5 ul.share_icon_order {
304
- margin: 0;
305
- padding: 0;
306
- list-style: none;
307
- text-align: left;
308
- }
309
-
310
- .tab5 ul.share_icon_order li {
311
- margin: 22px 6px 0 0;
312
- padding: 0;
313
- list-style: none;
314
- float: left;
315
- line-height: 37px;
316
- }
317
-
318
- .tab5 ul.share_icon_order li:last-child {
319
- margin: 22px 0 0 3px;
320
- }
321
-
322
- .tab5 .row {
323
- border-top: 1px solid #eaebee;
324
- margin-top: 25px;
325
- padding-top: 15px;
326
- clear: both;
327
- display: block;
328
- width: 100%;
329
- float: left;
330
- font-family: helveticaregular;
331
- line-height: 42px;
332
- }
333
-
334
- .tab5 .icons_size {
335
- position: relative;
336
- }
337
-
338
- .tab5 .icons_size span {
339
- margin-right: 18px;
340
- display: block;
341
- float: left;
342
- font-size: 18px;
343
- font-weight: 400;
344
- line-height: 46px;
345
- }
346
-
347
- .tab5 .icons_size span.last {
348
- margin-left: 55px;
349
- }
350
-
351
- .tab5 .icons_size input {
352
- width: 73px;
353
- background: #e5e5e5;
354
- box-shadow: 2px 2px 3px #dcdcdc inset;
355
- border: 0;
356
- padding: 13px 13px 12px;
357
- margin-right: 18px;
358
- float: left;
359
- display: block;
360
- }
361
-
362
- .tab5 .icons_size select.styled {
363
- position: absolute;
364
- left: 0;
365
- width: 135px;
366
- height: 46px;
367
- line-height: 46px;
368
- }
369
-
370
- .tab5 .icons_size .field {
371
- position: relative;
372
- float: left;
373
- display: block;
374
- margin-right: 20px;
375
- }
376
-
377
- .tab5 .icons_size ins {
378
- margin-right: 25px;
379
- float: left;
380
- font-size: 17px;
381
- font-weight: 400;
382
- text-decoration: none;
383
- }
384
-
385
- .tab5 .icons_size ins.leave_empty {
386
- line-height: 23px;
387
- }
388
-
389
- .tab5 .icons_size {
390
- padding-top: 15px;
391
- }
392
-
393
- .tab5 ul.enough_waffling {
394
- margin: -5px 0 0;
395
- padding: 0;
396
- list-style: none;
397
- text-align: center;
398
- }
399
-
400
- .tab5 .new_wind .row_onl ul.enough_waffling {
401
- /*margin: 14px 0 0 167px;*/
402
- margin: 20px 0 0 0;
403
- padding: 0;
404
- list-style: none;
405
- height: 38px;
406
- text-align: center;
407
- width: 61%;
408
- }
409
-
410
- .tab5 ul.enough_waffling li {
411
- margin: 0 22px;
412
- padding: 0;
413
- list-style: none;
414
- display: inline-block;
415
- float: left;
416
- }
417
-
418
- .tab5 ul.enough_waffling li span {
419
- float: left;
420
- }
421
-
422
- .tab5 ul.enough_waffling li label {
423
- margin: 0 0 0 20px;
424
- float: left;
425
- font-family: helveticaregular;
426
- font-size: 18px;
427
- font-weight: 400;
428
- text-align: center;
429
- line-height: 38px;
430
- color: #5a6570;
431
- }
432
-
433
- .sticking p {
434
- float: left;
435
- font-size: 18px !important;
436
- }
437
-
438
- .sticking p.list {
439
- width: 168px;
440
- }
441
-
442
- .sticking p.link {
443
- margin: 3px 0 0 12px;
444
- padding: 0 !important;
445
- float: left;
446
- }
447
-
448
- .sticking .float {
449
- margin-left: 188px;
450
- margin-top: 3px;
451
- float: left;
452
- font-size: 17px;
453
- }
454
-
455
- .sticking ul {
456
- margin: 0;
457
- padding: 30px 0 0;
458
- list-style: none;
459
- float: left;
460
- }
461
-
462
- .sticking a {
463
- color: #a4a9ad;
464
- }
465
-
466
- .sticking p {
467
- line-height: 19px !important;
468
- }
469
-
470
- .sticking .field {
471
- position: relative;
472
- float: left;
473
- display: block;
474
- margin-left: 20px;
475
- }
476
-
477
- .sticking .field .select {
478
- width: 206px;
479
- height: 47px;
480
- background: url(../images/select_bg1.jpg) no-repeat;
481
- display: block;
482
- padding-left: 10px;
483
- }
484
-
485
- .sticking .field select.styled {
486
- position: absolute;
487
- left: 0;
488
- top: 0;
489
- width: 211px;
490
- line-height: 46px;
491
- height: 46px;
492
- }
493
-
494
- .mouseover_field {
495
- width: 455px;
496
- float: left;
497
- font-size: 18px;
498
- margin-top: 10px;
499
- }
500
-
501
- .mouseover_field label {
502
- width: 125px;
503
- float: left;
504
- }
505
-
506
- .mouseover_field input {
507
- width: 256px;
508
- float: left;
509
- background: #e5e5e5;
510
- box-shadow: 2px 2px 3px #dcdcdc inset;
511
- border: 0;
512
- padding: 10px;
513
- }
514
-
515
- .pop_up_box {
516
- width: 474px;
517
- background: #FFF;
518
- box-shadow: 0 0 5px 3px #d8d8d8;
519
- margin: 200px auto;
520
- padding: 20px 25px 0px;
521
- font-family: helveticaregular;
522
- color: #5a6570;
523
- min-height: 250px;
524
- position: relative;
525
- }
526
-
527
- .pop_up_box h4,
528
- .pop_up_box_ex h4 {
529
- font-size: 20px;
530
- color: #5a6570;
531
- text-align: center;
532
- margin: 0;
533
- padding: 0;
534
- line-height: 22px;
535
- }
536
-
537
- .pop_up_box p,
538
- .pop_up_box_ex p {
539
- font-size: 17px;
540
- line-height: 28px;
541
- color: #5a6570;
542
- text-align: left;
543
- margin: 0;
544
- padding: 25px 0 0;
545
- font-family: helveticaregular;
546
- }
547
-
548
- .sfsi_popupcntnr {
549
- float: left;
550
- width: 100%
551
- }
552
-
553
- .sfsi_popupcntnr>h3 {
554
- color: #000;
555
- float: left;
556
- font-weight: 700;
557
- margin-bottom: 5px;
558
- width: 100%
559
- }
560
-
561
- ul.flwstep {
562
- float: left;
563
- width: 100%
564
- }
565
-
566
- ul.flwstep>li {
567
- color: #000;
568
- font-size: 16px;
569
- margin: 5px;
570
- }
571
-
572
- .upldbtn {
573
- float: left;
574
- text-align: center;
575
- width: 100%
576
- }
577
-
578
- .upload_butt {
579
- background-color: #12a252;
580
- border: none;
581
- color: #fff;
582
- font-weight: 700;
583
- margin-top: 10px;
584
- padding: 7px 22px;
585
- width: auto;
586
- cursor: pointer;
587
- font-size: 19px;
588
- }
589
-
590
- .pop_up_box .button {
591
- background: #12a252;
592
- font-size: 22px;
593
- line-height: 24px;
594
- color: #5a6570;
595
- text-align: center;
596
- min-height: 80px;
597
- margin-top: 32px;
598
- box-shadow: none;
599
- }
600
-
601
- .pop_up_box .button:hover {
602
- box-shadow: none !important;
603
- }
604
-
605
- .pop_up_box .button a.activate {
606
- padding: 0px 0;
607
- }
608
-
609
- .pop_up_box a,
610
- .pop_up_box_ex a {
611
- color: #a4a9ad;
612
- font-size: 20px;
613
- text-decoration: none;
614
- text-align: center;
615
- display: inline-block;
616
- margin-top: 18px;
617
- width: 100%;
618
- }
619
-
620
- .pop_up_box .upload {
621
- width: 100%;
622
- float: left;
623
- text-align: left;
624
- margin-top: 15px;
625
- height: 46px;
626
- }
627
-
628
- .pop_up_box .upload label {
629
- width: 135px;
630
- float: left;
631
- line-height: 45px;
632
- font-size: 18px;
633
- font-family: helveticaregular;
634
- text-align: left;
635
- }
636
-
637
- .pop_up_box .upload input[type=text] {
638
- width: 248px;
639
- float: left;
640
- background: #e5e5e5;
641
- box-shadow: 2px 2px 3px #dcdcdc inset;
642
- border: 0;
643
- padding: 0 10px;
644
- font-size: 16px;
645
- height: 44px;
646
- text-align: left;
647
- color: #5a6570;
648
- font-family: helveticaregular;
649
- }
650
-
651
- .pop_up_box .upload input.upload_butt {
652
- width: 100px;
653
- background: #12a252;
654
- box-shadow: 0 0 0;
655
- border: 0;
656
- text-align: center;
657
- font-size: 18px;
658
- color: #fff;
659
- font-family: helveticaregular;
660
- height: 45px;
661
- right: 32px;
662
- top: 71px;
663
- position: absolute;
664
- }
665
-
666
- .pop_up_box .upload a {
667
- color: #12a252;
668
- font-size: 18px;
669
- text-decoration: underline;
670
- font-family: helveticaregular;
671
- margin: 0 0 16px 140px;
672
- }
673
-
674
- .pop_up_box a:hover,
675
- .pop_up_box_ex a:hover {
676
- color: #a4a9ad;
677
- }
678
-
679
- .inr_cont .fb_url {
680
- clear: both;
681
- }
682
-
683
- .inr_cont .fb_url .checkbox,
684
- .inr_cont .fb_url input.add,
685
- .inr_cont .fb_url label,
686
- .inr_cont .fb_url lable {
687
- float: left;
688
- }
689
-
690
- .inr_cont .fb_url input.add {
691
- margin-left: 19px;
692
- }
693
-
694
- .inr_cont .fb_url .checkbox {
695
- margin: 6px 0 0;
696
- }
697
-
698
- .inr_cont .fb_url label {
699
- /*line-height: 41px; margin: 0 0 0 15px;*/
700
- line-height: 22px;
701
- margin: 10px 0 0 15px;
702
- font-size: 17px;
703
- }
704
-
705
- .inr_cont textarea.add_txt {
706
- resize: none;
707
- margin: 0 0 0 19px !important;
708
- height: 60px;
709
- }
710
-
711
- .tab2 .inr_cont textarea.add_txt {
712
- width: 382px !important;
713
- height: 90px;
714
- overflow: hidden;
715
- }
716
-
717
- .tab2 .inr_cont input.add {
718
- width: 417px;
719
- }
720
-
721
- .red_txt,
722
- .tab2 .red_txt {
723
- color: #ef4745 !important;
724
- text-align: center !important;
725
- padding-top: 5px !important;
726
- }
727
-
728
- .green_txt {
729
- color: #12A252 !important;
730
- text-align: center !important;
731
- padding-top: 5px !important;
732
- }
733
-
734
- .red_txt {
735
- color: #f80000 !important;
736
- text-align: center !important;
737
- padding-top: 5px !important;
738
- }
739
-
740
- .linked_tab_2 .fb_url label {
741
- /* width: 32%;*/
742
- /* width: 26.99%;*/
743
- width: 22%;
744
- }
745
-
746
- .twt_tab_2 label {
747
- width: 18%
748
- }
749
-
750
- .bdr_top {
751
- border-top: none !important;
752
- }
753
-
754
- .linked_tab_2 .fb_url input.link_dbl {
755
- margin-bottom: 6px;
756
- }
757
-
758
- .tab3 {
759
- overflow: hidden;
760
- }
761
-
762
- .tab3 .row {
763
- /*border-top: 1px solid #EAEBEE;*/
764
- padding: 25px 0;
765
- clear: both;
766
- overflow: hidden;
767
- }
768
-
769
- .tab3 ul.tab_3_list {
770
- overflow: hidden;
771
- margin: 4px 0 11px;
772
- }
773
-
774
- ul.tab_3_list li {
775
- background: url(../images/tab_3_list_bg.jpg) 13px 7px no-repeat;
776
- padding: 0 0 0 30px;
777
- color: #778088;
778
- font-family: helveticaregular;
779
- font-size: 17px;
780
- margin-bottom: 4px;
781
- }
782
-
783
- .tab5 ul.tab_3_list li {
784
- background: url(../images/tab_3_list_bg.jpg) 13px 18px no-repeat;
785
- }
786
-
787
- .tab3 .row h3 {
788
- /* margin: 0 0 20px;*/
789
- margin: 20px 0 0px;
790
- color: #414951;
791
- font-family: helveticabold;
792
- font-size: 20px;
793
- }
794
-
795
- ul.tab_3_icns {
796
- list-style: none;
797
- margin: 10px 0 0;
798
- overflow: hidden;
799
- }
800
-
801
- ul.tab_3_icns li {
802
- width: 100%;
803
- margin: 0 0 21px;
804
- float: left;
805
- }
806
-
807
- ul.tab_3_icns label {
808
- float: left;
809
- line-height: 42px;
810
- /*margin: 0 20px;*/
811
- color: #69737C;
812
- font-size: 18px;
813
- font-family: helveticaregular;
814
- min-width: 125px;
815
- }
816
-
817
- ul.tab_3_icns li .icns_tab_3,
818
- ul.tab_3_icns li .radio {
819
- float: left;
820
- }
821
-
822
- .tab3 .sub_row h4 {
823
- color: #a4a9ad !important;
824
- }
825
-
826
- .tab3 .sub_row p {
827
- padding-top: 18px !important;
828
- clear: both;
829
- overflow: hidden;
830
- }
831
-
832
- .sub_row .sub_sub_box p {
833
- padding-top: 18px !important;
834
- }
835
-
836
- .tab3 .sub_row .checkbox {
837
- float: left;
838
- margin-top: 4px;
839
- }
840
-
841
- .tab3 .sub_row .sub_sub_box {
842
- width: 80%;
843
- margin: 7px 0 15px 10%;
844
- float: left;
845
- }
846
-
847
- .tab3 .sub_row input.smal_inpt {
848
- width: 73px;
849
- background: #e5e5e5;
850
- box-shadow: 2px 2px 3px #dcdcdc inset;
851
- border: 0;
852
- padding: 10px;
853
- float: left;
854
- margin-left: 10px;
855
- }
856
-
857
- .tab3 .sub_row .drop_lst {
858
- border: 1px solid #d6d6d6;
859
- font-size: 16px;
860
- color: #5a6570;
861
- width: 120px;
862
- }
863
-
864
- .tab3 .first_row,
865
- .tab3 .first_row p,
866
- .tab3 .first_row p .radio,
867
- .tab3 .first_row p label {
868
- float: left;
869
- }
870
-
871
- .tab3 .first_row {
872
- width: 90%;
873
- float: left;
874
- }
875
-
876
- .tab3 .first_row p {
877
- padding: 0 !important;
878
- }
879
-
880
- .tab3 .first_row p label {
881
- line-height: 44px;
882
- margin: 0 10px;
883
- }
884
-
885
- .tab3 .first_row p:last-child {
886
- margin-left: 27%
887
- }
888
-
889
- .tab3 .tab_1_sav {
890
- padding-top: 20px !important;
891
- margin: 10px auto 20px;
892
- }
893
-
894
- .suc_msg {
895
- background: #12A252;
896
- color: #FFF;
897
- display: none;
898
- font-size: 23px;
899
- padding: 10px;
900
- text-align: left;
901
- text-decoration: none;
902
- }
903
-
904
- .error_msg {
905
- background: #D22B30;
906
- color: #FFF;
907
- display: none;
908
- font-size: 23px;
909
- padding: 10px;
910
- text-align: left;
911
- text-decoration: none;
912
- }
913
-
914
- .fileUPInput {
915
- cursor: pointer;
916
- position: relative;
917
- top: -43px;
918
- right: 0;
919
- z-index: 99;
920
- height: 42px;
921
- font-size: 5px;
922
- opacity: 0;
923
- -moz-opacity: 0;
924
- filter: alpha(opacity=0);
925
- width: 100%
926
- }
927
-
928
- .inputWrapper {
929
- height: 20px;
930
- width: 50px;
931
- overflow: hidden;
932
- position: relative;
933
- cursor: pointer;
934
- }
935
-
936
- .custom-txt {
937
- background: none !important;
938
- padding-left: 2px !important;
939
- }
940
-
941
- .custom-img {
942
- float: left;
943
- margin-left: 20px;
944
- }
945
-
946
- .loader-img {
947
- float: left;
948
- margin-left: -70px;
949
- display: none;
950
- }
951
-
952
- .pop-overlay {
953
- position: fixed;
954
- top: 0;
955
- left: 0;
956
- width: 100%;
957
- height: 100%;
958
- backgound-color: #d3d3d3;
959
- z-index: 10;
960
- padding: 20px;
961
- display: none;
962
- }
963
-
964
- .fb-overlay {
965
- position: fixed;
966
- top: 0;
967
- left: 0;
968
- width: 100%;
969
- height: 100%;
970
- backgound-color: #d3d3d3;
971
- z-index: -1000;
972
- padding: 20px;
973
- opacity: 0;
974
- display: block;
975
- }
976
-
977
- .inputError {
978
- border: 1px solid #f80000 !important;
979
- }
980
-
981
- .sfsicloseBtn {
982
- position: absolute;
983
- top: 0;
984
- right: 0;
985
- cursor: pointer;
986
- }
987
-
988
- .top_arow {
989
- background: url(../images/top_aro.png) no-repeat;
990
- position: absolute;
991
- top: -29px;
992
- left: 38%;
993
- width: 33px;
994
- height: 29px;
995
- backgoround-color: #fff;
996
- }
997
-
998
- .sfsi_tool_tip_2 .top_arow .sfsi_inside,
999
- .top_arow .sfsi_inside {
1000
- float: left;
1001
- }
1002
-
1003
- .sfsi_tool_tip_2 .tool_tip>img,
1004
- .tool_tip>img {
1005
- display: inline-block;
1006
- margin-right: 4px;
1007
- float: left;
1008
- }
1009
-
1010
- .norm_row {
1011
- float: left;
1012
- min-width: 25px;
1013
- }
1014
-
1015
- .norm_row a {
1016
- border: none;
1017
- display: inline-block;
1018
- position: relative;
1019
- float: left;
1020
- }
1021
-
1022
- .sfsi_tool_tip_2 a {
1023
- min-height: 0 !important;
1024
- }
1025
-
1026
- .sfsi_widget {
1027
- min-height: 55px;
1028
- }
1029
-
1030
- .sfsi_widget a img {
1031
- box-shadow: none !important;
1032
- outline: 0;
1033
- }
1034
-
1035
- .sfsi_wicons {
1036
- display: inline-block;
1037
- color: #000;
1038
- }
1039
-
1040
- .sel-active {
1041
- background-color: #f7941d;
1042
- }
1043
-
1044
- .sfsi_outr_div .close {
1045
- position: absolute;
1046
- right: 18px;
1047
- top: 18px;
1048
- }
1049
-
1050
- .sfsi_outr_div h2 {
1051
- color: #778088;
1052
- font-family: helveticaregular;
1053
- font-size: 26px;
1054
- margin: 0 0 9px;
1055
- padding: 0;
1056
- text-align: center;
1057
- font-weight: 400;
1058
- }
1059
-
1060
- .sfsi_outr_div ul li a {
1061
- color: #5A6570;
1062
- text-decoration: none;
1063
- }
1064
-
1065
- .sfsi_outr_div ul li {
1066
- display: inline-block;
1067
- list-style: none;
1068
- margin: 0;
1069
- padding: 0;
1070
- float: none;
1071
- }
1072
-
1073
- .expanded-area {
1074
- display: none;
1075
- }
1076
-
1077
- .sfsi_wicons a {
1078
- -webkit-transition: all .2s ease-in-out;
1079
- -moz-transition: all .2s ease-in-out;
1080
- -o-transition: all .2s ease-in-out;
1081
- -ms-transition: all .2s ease-in-out;
1082
- }
1083
-
1084
- .scale,
1085
- .scale-div {
1086
- -webkit-transform: scale(1.1);
1087
- -moz-transform: scale(1.1);
1088
- -o-transform: scale(1.1);
1089
- transform: scale(1.1);
1090
- }
1091
-
1092
- .sfsi_Sicons {
1093
- float: left;
1094
- }
1095
-
1096
- .sfsi_Sicons .sf_subscrbe {
1097
- margin: 2px 3px 3px 0;
1098
- line-height: 20px;
1099
- }
1100
-
1101
- .sfsi_Sicons .sf_fb {
1102
- margin: 0 4px 0 5px;
1103
- line-height: 20px;
1104
- }
1105
-
1106
- .sfsi_Sicons .sf_twiter {
1107
- margin: 2px 7px 0 4px;
1108
- line-height: 17px;
1109
- }
1110
-
1111
- .sfsi_Sicons.left .sf_subscrbe {
1112
- margin: 2px 8px 3px 0;
1113
- }
1114
-
1115
- .sfsi_Sicons.left .sf_fb {
1116
- margin: 0 8px 0 0;
1117
- }
1118
-
1119
- .sfsi_Sicons.left .sf_twiter {
1120
- margin: 2px 7px 0 0;
1121
- }
1122
-
1123
- .sfsi_Sicons.right .sf_subscrbe {
1124
- margin: 2px 0 3px;
1125
- }
1126
-
1127
- .sfsi_Sicons.right .sf_fb {
1128
- margin: 0 0 0 7px;
1129
- }
1130
-
1131
- .sfsi_Sicons.right .sf_twiter {
1132
- margin: 2px 0 0 8px;
1133
- }
1134
-
1135
- .sfsi_Sicons .sf_subscrbe,
1136
- .sfsi_Sicons .sf_twiter {
1137
- position: relative;
1138
- width: 75px;
1139
- }
1140
-
1141
- .sfsi_Sicons .sf_twiter iframe {
1142
- margin: 0px;
1143
- height: 20px !important;
1144
- overflow: visible !important;
1145
- }
1146
-
1147
- .sfsi_Sicons .sf_twiter iframe #widget {
1148
- overflow: visible !important;
1149
- }
1150
-
1151
- .sfsi_Sicons .sf_subscrbe a {
1152
- width: auto;
1153
- float: left;
1154
- border: medium none;
1155
- padding-top: 0px;
1156
- }
1157
-
1158
- .sfsi_Sicons .sf_subscrbe a:focus {
1159
- outline: medium none;
1160
- }
1161
-
1162
- .sfsi_Sicons .sf_subscrbe a img {
1163
- width: 65px;
1164
- float: left;
1165
- height: 20px !important;
1166
- }
1167
-
1168
- .sfsi_Sicons .sf_fb {
1169
- position: relative;
1170
- width: 75px;
1171
- }
1172
-
1173
- .sfsi_Sicons .fb_iframe_widget {
1174
- float: left;
1175
- /*min-width: 98px;*/
1176
- width: 73px;
1177
- margin: 2px 0 0;
1178
- }
1179
-
1180
- .sfsi_pop_up .button a:hover {
1181
- color: #fff;
1182
- }
1183
-
1184
- .sfsi_pop_up .button:hover {
1185
- background: #12a252;
1186
- color: #fff;
1187
- border: none;
1188
- }
1189
-
1190
- ul.icn_listing li .right_info a {
1191
- outline: 0;
1192
- font-family: helveticaregular;
1193
- }
1194
-
1195
- .upload_pop_up .upload_butt {
1196
- line-height: 27px;
1197
- margin-left: 6px;
1198
- }
1199
-
1200
- .drop_lsts {
1201
- left: 220px;
1202
- position: relative;
1203
- top: -40px;
1204
- }
1205
-
1206
- .drop_lsts .styled {
1207
- top: -42px;
1208
- width: 127px;
1209
- height: 33px;
1210
- }
1211
-
1212
- .drop_lsts span {
1213
- line-height: 50px;
1214
- }
1215
-
1216
- .drag_drp {
1217
- left: 11px;
1218
- position: relative;
1219
- top: 38px;
1220
- font-size: 17px;
1221
- }
1222
-
1223
- .listing ul li label {
1224
- width: 224px;
1225
- float: left;
1226
- }
1227
-
1228
- .row_onl {
1229
- width: 100%;
1230
- float: left;
1231
- }
1232
-
1233
- #sfsi_Show_popupOn_PageIDs option.sel-active {
1234
- background: #f7941d;
1235
- }
1236
-
1237
- .sfsi_inside div iframe {
1238
- float: left;
1239
- margin: 0;
1240
- }
1241
-
1242
- .sfsi_inside div #___plus_0,
1243
- .sfsi_inside div #___plusone_0 {
1244
- height: 27px;
1245
- }
1246
-
1247
- .sfsi_outr_div li {
1248
- float: left;
1249
- }
1250
-
1251
- .sfsi_tool_tip_2 .sfsi_inside div {
1252
- min-height: 0;
1253
- }
1254
-
1255
- #___plus_1>iframe {
1256
- height: 30px;
1257
- }
1258
-
1259
- .main_contant h1 {
1260
- margin: 0 0 19px;
1261
- }
1262
-
1263
- .main_contant p {
1264
- margin: 0 0 26px;
1265
- }
1266
-
1267
- .main_contant p>a {
1268
- color: #1a1d20;
1269
- text-decoration: underline;
1270
- }
1271
-
1272
- .tab1 .gary_bg {
1273
- background: #f1f1f1;
1274
- }
1275
-
1276
- #accordion {
1277
- margin-top: 25px;
1278
- }
1279
-
1280
- .main_contant p>a,
1281
- .tab1 p span {
1282
- font-family: helveticabold;
1283
- }
1284
-
1285
- .wapper .ui-accordion-header-active {
1286
- margin-top: 20px !important;
1287
- }
1288
-
1289
- .wapper .tab2 {
1290
- padding: 20px 33px 12px 34px !important;
1291
- }
1292
-
1293
- .wapper .tab2 p {
1294
- margin-bottom: 6px;
1295
- }
1296
-
1297
- .tab2 .twt_tab_2 label {
1298
- width: 175px;
1299
- }
1300
-
1301
- .tab2 .twt_fld {
1302
- margin: 16px 0 23px;
1303
- float: left;
1304
- }
1305
-
1306
- .tab2 .twt_fld_2 {
1307
- margin: 0 0 12px;
1308
- float: left;
1309
- }
1310
-
1311
- .tab2 .utube_inn {
1312
- padding-bottom: 2px;
1313
- float: left;
1314
- }
1315
-
1316
- .tab2 .utube_inn label {
1317
- max-width: 90%
1318
- }
1319
-
1320
- .tab2 .utube_inn label span {
1321
- font-family: helveticabold;
1322
- }
1323
-
1324
- .tab2 .inr_cont p>a {
1325
- font-family: helveticaneue-light;
1326
- color: #778088;
1327
- text-decoration: underline;
1328
- }
1329
-
1330
- .pinterest_section .inr_cont .pint_url {
1331
- float: left;
1332
- padding-top: 6px;
1333
- clear: both;
1334
- }
1335
-
1336
- .pinterest_section .inr_cont .add {
1337
- width: 417px !important;
1338
- }
1339
-
1340
- .linkedin_section .link_1,
1341
- .linkedin_section .link_2,
1342
- .linkedin_section .link_3,
1343
- .linkedin_section .link_4 {
1344
- float: left;
1345
- width: 100%
1346
- }
1347
-
1348
- .linkedin_section .link_1 input.add,
1349
- .linkedin_section .link_2 input.add,
1350
- .linkedin_section .link_3 input.add,
1351
- .linkedin_section .link_4 input.add {
1352
- width: 417px;
1353
- }
1354
-
1355
- .linkedin_section .link_1 {
1356
- margin-bottom: 7px;
1357
- }
1358
-
1359
- .linkedin_section .link_2 {
1360
- margin-bottom: 12px;
1361
- }
1362
-
1363
- .linkedin_section .link_3,
1364
- .linkedin_section .link_4 {
1365
- margin-bottom: 13px;
1366
- }
1367
-
1368
- .tab2 .linkedin_section .link_4 {
1369
- margin-bottom: 0;
1370
- }
1371
-
1372
- ul.tab_3_list li span {
1373
- font-family: helveticaregular;
1374
- }
1375
-
1376
- #accordion .tab4 h4,
1377
- #accordion1 .tab4 h4 {
1378
- color: #414951;
1379
- font-size: 20px;
1380
- }
1381
-
1382
- .specify_counts .listing li .input {
1383
- width: 73px;
1384
- }
1385
-
1386
- .sfsi_fbpgidwpr {
1387
- width: 160px;
1388
- float: left;
1389
- font-weight: bold;
1390
- font-size: 17px;
1391
- color: #000000;
1392
- }
1393
-
1394
- .sfsi_fbpgiddesc {
1395
- font-weight: normal;
1396
- width: 42%;
1397
- font-size: 14px;
1398
- color: #888888;
1399
- padding: 4px 0 0 60px;
1400
- }
1401
-
1402
- .specify_counts .listing li .input.mypginpt {
1403
- width: 288px;
1404
- }
1405
-
1406
- .tab3 .Shuffle_auto .sub_sub_box .tab_3_option {
1407
- padding-top: 0 !important;
1408
- margin-bottom: 10px !important;
1409
- }
1410
-
1411
- .tab4 {
1412
- padding-top: 35px !important;
1413
- }
1414
-
1415
- .tab4 .save_button {
1416
- padding-top: 46px;
1417
- }
1418
-
1419
- .tab5 {
1420
- padding-top: 31px !important;
1421
- }
1422
-
1423
- .tab6,
1424
- .tab7 {
1425
- padding-top: 28px !important;
1426
- }
1427
-
1428
- .tab5 .row_onl {
1429
- margin-top: 15px;
1430
- }
1431
-
1432
- .tab5 .sticking .link>a {
1433
- color: #a4a9ad;
1434
- text-decoration: underline;
1435
- }
1436
-
1437
- .tab5 .mouse_txt h4 {
1438
- /*margin-bottom: 8px!important;*/
1439
- padding-bottom: 30px !important;
1440
- }
1441
-
1442
- .tab5 .save_button {
1443
- padding-top: 54px;
1444
- }
1445
-
1446
- .tab7 .like_pop_box h2 {
1447
- font-family: helveticabold;
1448
- text-align: center;
1449
- color: #414951;
1450
- font-size: 26px;
1451
- }
1452
-
1453
- .tab1 ul.icn_listing li .right_info label:hover {
1454
- text-decoration: none !important;
1455
- }
1456
-
1457
- .tab1 ul.icn_listing li .right_info label.expanded-area {
1458
- clear: both;
1459
- float: left;
1460
- margin-top: 14px;
1461
- width: 100%;
1462
- }
1463
-
1464
- .tab7 .space {
1465
- margin-top: 14px;
1466
- }
1467
-
1468
- .tab7 .pop_up_show label {
1469
- font-family: helveticaregular !important;
1470
- }
1471
-
1472
- .tab7 .save_button {
1473
- padding-top: 78px;
1474
- }
1475
-
1476
- .like_txt a {
1477
- text-decoration: none;
1478
- font-family: helveticaregular;
1479
- }
1480
-
1481
- .bdr_btm_non {
1482
- border-bottom: none !important;
1483
- }
1484
-
1485
- .tab1 .tab_1_sav {
1486
- padding-top: 13px;
1487
- }
1488
-
1489
- #accordion .tab2 .facebook_section .inr_cont p.extra_sp,
1490
- #accordion1 .tab2 .facebook_section .inr_cont p.extra_sp {
1491
- padding-top: 7px;
1492
- }
1493
-
1494
- .tab2 .custom_section {
1495
- width: 100%
1496
- }
1497
-
1498
- .tab7 {
1499
- padding-bottom: 40px !important;
1500
- }
1501
-
1502
- .tab9 .save_button {
1503
- padding-top: 40px;
1504
- }
1505
-
1506
- .tab9 .save_button a {
1507
- padding: 16px 0;
1508
- }
1509
-
1510
- .tab2 .twitter_section .twt_fld input.add,
1511
- .tab2 .twitter_section .twt_fld_2 textarea.add_txt {
1512
- width: 464px !important;
1513
- }
1514
-
1515
- .tab2 .utube_inn .fb_url label span {
1516
- font-family: helveticaneue-light;
1517
- }
1518
-
1519
- .tab1 label,
1520
- .tab2 label,
1521
- .tab3 label,
1522
- .tab4 label,
1523
- .tab5 label,
1524
- .tab6 label,
1525
- .tab7 label,
1526
- .tab8 label {
1527
- cursor: default !important;
1528
- }
1529
-
1530
- .tab5 .new_wind h4 {
1531
- margin-bottom: 11px !important;
1532
- }
1533
-
1534
- .pop_up_box .fb_2 span {
1535
- height: 28px !important;
1536
- }
1537
-
1538
- .pop_up_box .sfsi_tool_tip_2 .fbb .fb_1 a {
1539
- margin-top: 0;
1540
- }
1541
-
1542
- .tab6 .social_icon_like1 ul li span {
1543
- margin-top: -1px;
1544
- }
1545
-
1546
- #sfpageLoad {
1547
- background: url(../images/ajax-loader.gif) 50% 50% no-repeat #F9F9F9;
1548
- height: 100%;
1549
- left: 160px;
1550
- opacity: 1;
1551
- position: fixed;
1552
- top: 0;
1553
- width: 92%;
1554
- z-index: 9999;
1555
- }
1556
-
1557
- .sfsi_tool_tip_2,
1558
- .tool_tip {
1559
- background: #FFF;
1560
- border: 1px solid #e7e7e7;
1561
- box-shadow: #e7e7e7 0 0 2px 1px;
1562
- display: block;
1563
- float: left;
1564
- margin: 0 0 0 -52px;
1565
- padding: 5px 14px 5px 14px;
1566
- position: absolute;
1567
- z-index: 10000;
1568
- border-bottom: #e5e5e5 solid 4px;
1569
- width: 100px;
1570
- }
1571
-
1572
- .sfsi_tool_tip_2 {
1573
- display: inline-table;
1574
- }
1575
-
1576
- .inerCnt,
1577
- .inerCnt:hover,
1578
- .inerCnt>a,
1579
- .inerCnt>a:hover,
1580
- .widget-area .widget a {
1581
- outline: 0;
1582
- }
1583
-
1584
- .sfsi_tool_tip_2_inr {
1585
- bottom: 90%;
1586
- left: 20%;
1587
- opacity: 0;
1588
- }
1589
-
1590
- .sfsi_tool_tip_2 .bot_arow {
1591
- background: url(../images/bot_tip_icn.png) no-repeat;
1592
- position: absolute;
1593
- bottom: -21px;
1594
- left: 50%;
1595
- width: 15px;
1596
- height: 21px;
1597
- margin-left: -5px;
1598
- }
1599
-
1600
- .sfsi_tool_tip_2 .top_big_arow {
1601
- position: absolute;
1602
- -webkit-transform: rotate(180deg);
1603
- -moz-transform: rotate(180deg);
1604
- -ms-transform: rotate(180deg);
1605
- -o-transform: rotate(180deg);
1606
- transform: rotate(180deg);
1607
- top: -21px;
1608
- left: 50%;
1609
- width: 15px;
1610
- height: 21px;
1611
- margin-right: -5px;
1612
- }
1613
-
1614
- .sfsi_tool_tip_2_inr .gpls_visit>a,
1615
- .sfsi_tool_tip_2_inr .prints_visit_1 a,
1616
- .sfsi_tool_tip_2_inr .utub_visit>a {
1617
- margin-top: 0;
1618
- }
1619
-
1620
- .sfsi_tool_tip_2_inr .linkin_1 a,
1621
- .sfsi_tool_tip_2_inr .linkin_2 a,
1622
- .sfsi_tool_tip_2_inr .linkin_3 a,
1623
- .sfsi_tool_tip_2_inr .linkin_4 a,
1624
- .sfsi_tool_tip_2_inr .prints_visit a {
1625
- margin: 0;
1626
- }
1627
-
1628
- .sfsiTlleftBig {
1629
- bottom: 121%;
1630
- left: 22%;
1631
- margin-left: -54%
1632
- }
1633
-
1634
- .sfsiTlleft {
1635
- bottom: 100%;
1636
- left: 50%;
1637
- margin-left: -66px;
1638
- margin-bottom: 2px;
1639
- }
1640
-
1641
- .sfsi_plc_btm {
1642
- bottom: auto;
1643
- top: 100%;
1644
- left: 50%;
1645
- margin-left: -63px;
1646
- margin-top: -6px;
1647
- margin-bottom: auto;
1648
- }
1649
-
1650
- .inerCnt {
1651
- position: relative;
1652
- z-index: inherit !important;
1653
- float: left;
1654
- width: 100%;
1655
- float: left;
1656
- }
1657
-
1658
- .sfsi_wicons {
1659
- margin-bottom: 30px;
1660
- position: relative;
1661
- padding-top: 5px;
1662
- }
1663
-
1664
- .norm_row .bot_no {
1665
- position: absolute;
1666
- padding: 1px 0;
1667
- font-size: 12px !important;
1668
- text-align: center;
1669
- line-height: 12px !important;
1670
- background: #fff;
1671
- border-radius: 5px;
1672
- left: 50%;
1673
- margin-left: -20px;
1674
- z-index: 9;
1675
- border: 1px solid #333;
1676
- top: 100%;
1677
- white-space: pre;
1678
- -webkit-box-sizing: border-box;
1679
- -moz-box-sizing: border-box;
1680
- box-sizing: border-box;
1681
- margin-top: 0px;
1682
- width: 40px;
1683
- }
1684
-
1685
- .norm_row .bot_no:before {
1686
- content: url(images/count_top_arow.png);
1687
- position: absolute;
1688
- height: 9px;
1689
- margin-left: -7.5px;
1690
- top: -10px;
1691
- left: 50%;
1692
- width: 15px;
1693
- }
1694
-
1695
- .bot_no.sfsiSmBtn {
1696
- font-size: 10px;
1697
- margin-top: 4px;
1698
- }
1699
-
1700
- .bot_no.sfsiSmBtn:before {
1701
- margin-left: -8px;
1702
- top: -9px;
1703
- }
1704
-
1705
- .norm_row .cbtn_vsmall {
1706
- font-size: 9px;
1707
- left: -28%;
1708
- top: 4px;
1709
- }
1710
-
1711
- .norm_row .cbtn_vsmall:before {
1712
- left: 31%;
1713
- top: -9px;
1714
- margin-left: -31%
1715
- }
1716
-
1717
- h2.optional {
1718
- font-family: helveticaregular;
1719
- font-size: 25px;
1720
- margin: 14px 0 19px;
1721
- color: #5a6570;
1722
- }
1723
-
1724
- .utube_tool_bdr .utub_visit {
1725
- margin: 9px 0 0;
1726
- height: 24px;
1727
- display: inline-block;
1728
- float: none;
1729
- }
1730
-
1731
- .utube_tool_bdr .utub_2 {
1732
- margin: 9px 0 0;
1733
- height: 24px;
1734
- width: 86px;
1735
- display: inline-block;
1736
- float: none;
1737
- }
1738
-
1739
- .printst_tool_bdr {
1740
- width: 79px;
1741
- }
1742
-
1743
- .printst_tool_bdr .prints_visit {
1744
- margin: 0 0 10px -22px;
1745
- }
1746
-
1747
- .printst_tool_bdr .prints_visit_1 {
1748
- margin: 0 0 0 -53px;
1749
- }
1750
-
1751
- .fb_tool_bdr {
1752
- width: 68px;
1753
- height: auto;
1754
- }
1755
-
1756
- .fb_tool_bdr .sfsi_inside {
1757
- text-align: center;
1758
- width: 100%;
1759
- float: left;
1760
- overflow: hidden;
1761
- }
1762
-
1763
- .fb_tool_bdr .sfsi_inside .icon1 {
1764
- /* margin: 0 0 -5px 0;*/
1765
- margin: 2px 0px 4px 0;
1766
- height: auto;
1767
- display: inline-block;
1768
- float: none;
1769
- width: 62px;
1770
- }
1771
-
1772
- .fb_tool_bdr .sfsi_inside .icon2 {
1773
- margin: 2px 0 3px 0 !important;
1774
- height: auto;
1775
- width: 53px;
1776
- display: inline-block;
1777
- overflow: hidden;
1778
- }
1779
-
1780
- .fb_tool_bdr .sfsi_inside .icon3 {
1781
- margin: 2px 0 2px 0;
1782
- height: auto;
1783
- width: 62px;
1784
- display: inline-block;
1785
- float: none;
1786
- }
1787
-
1788
- .fb_tool_bdr .sfsi_inside .fb_1,
1789
- .fb_tool_bdr .sfsi_inside .fb_2,
1790
- .fb_tool_bdr .sfsi_inside .fb_3 {
1791
- margin: 9px 0 0;
1792
- height: 25px;
1793
- }
1794
-
1795
- .printst_tool_bdr .sfsi_inside {
1796
- text-align: center;
1797
- float: left;
1798
- width: 100%
1799
- }
1800
-
1801
- .printst_tool_bdr .sfsi_inside .icon1 {
1802
- /* margin: 2px 0;*/
1803
- margin: 3px 0 3px 0;
1804
- /* height: 24px;*/
1805
- height: auto;
1806
- display: inline-block;
1807
- float: none;
1808
- width: 73px;
1809
- }
1810
-
1811
- .printst_tool_bdr .sfsi_inside .icon2 {
1812
- /* margin: 2px 0;*/
1813
- margin: 2px 0 2px 0;
1814
- height: auto;
1815
- display: inline-block;
1816
- float: none;
1817
- max-width: 73px;
1818
- width: auto;
1819
- }
1820
-
1821
- .printst_tool_bdr .sfsi_inside .prints_visit,
1822
- .printst_tool_bdr .sfsi_inside .prints_visit_1 {
1823
- margin: 9px 0 0;
1824
- height: 20px;
1825
- float: none;
1826
- display: inline-block;
1827
- }
1828
-
1829
- .printst_tool_bdr {
1830
- margin-left: -59px;
1831
- }
1832
-
1833
- .fb_tool_bdr .sfsi_inside .icon1>a>img,
1834
- .gpls_tool_bdr .sfsi_inside .icon1>a>img,
1835
- .linkedin_tool_bdr .sfsi_inside .icon1>a>img,
1836
- .linkedin_tool_bdr .sfsi_inside .icon4>a>img,
1837
- .printst_tool_bdr .sfsi_inside .icon1>a>img,
1838
- .printst_tool_bdr .sfsi_inside .icon2>a>img,
1839
- .utube_tool_bdr .sfsi_inside .icon1>a>img {
1840
- padding-top: 0;
1841
- }
1842
-
1843
- .gpls_tool_bdr {
1844
- width: 76px;
1845
- }
1846
-
1847
- .gpls_tool_bdr .sfsi_inside .icon1>a>img {
1848
- padding-top: 0;
1849
- }
1850
-
1851
- .gpls_tool_bdr .sfsi_inside {
1852
- text-align: center;
1853
- width: 100%;
1854
- float: left;
1855
- }
1856
-
1857
- .gpls_tool_bdr .sfsi_inside .icon1 {
1858
- margin: 2px 0;
1859
- display: inline-block;
1860
- float: none;
1861
- height: 29px;
1862
- width: 76px;
1863
- }
1864
-
1865
- .gpls_tool_bdr .sfsi_inside .icon2 {
1866
- margin: 2px 0 3px 0;
1867
- display: inline-block;
1868
- float: none;
1869
- height: 24px;
1870
- width: 38px;
1871
- }
1872
-
1873
- .gpls_tool_bdr .sfsi_inside .icon3 {
1874
- margin: 3px 0 2px 0;
1875
- display: inline-block;
1876
- float: none;
1877
- height: 24px;
1878
- width: 76px;
1879
- }
1880
-
1881
- .gpls_tool_bdr .sfsi_inside .gpls_visit,
1882
- .gpls_tool_bdr .sfsi_inside .gtalk_2,
1883
- .gpls_tool_bdr .sfsi_inside .gtalk_3 {
1884
- margin: 9px 0 0;
1885
- height: 29px;
1886
- }
1887
-
1888
- .pop_up_box_ex.sfsi_pop_up .fb_tool_bdr,
1889
- .gpls_tool_bdr,
1890
- .linkedin_tool_bdr,
1891
- .twt_tool_bdr {
1892
- bottom: 100%;
1893
- left: 50%;
1894
- margin-bottom: -12px;
1895
- }
1896
-
1897
- .fb_tool_bdr,
1898
- .gpls_tool_bdr,
1899
- .linkedin_tool_bdr,
1900
- .twt_tool_bdr {
1901
- bottom: 100%;
1902
- left: 50%;
1903
- margin-bottom: 8px;
1904
- }
1905
-
1906
- .printst_tool_bdr {
1907
- bottom: 80%;
1908
- left: 50%;
1909
- /* margin-bottom: 2px;*/
1910
- margin-bottom: 0px;
1911
- margin-bottom: 18px;
1912
- }
1913
-
1914
- .printst_tool_bdr {
1915
- bottom: 80%;
1916
- left: 50%;
1917
- margin-bottom: 18px;
1918
- }
1919
-
1920
- .twt_tool_bdr .sfsi_inside {
1921
- text-align: center;
1922
- width: 100%;
1923
- float: left;
1924
- }
1925
-
1926
- .twt_tool_bdr .sfsi_inside .cstmicon1 {
1927
- margin: 2px 0px 2px 0 !important;
1928
- /*margin: 2px 0!important; display: inline-block;*/
1929
- float: none;
1930
- width: 62px;
1931
- /* overflow: hidden;*/
1932
- /*height: 20px;*/
1933
- }
1934
-
1935
- .twt_tool_bdr .sfsi_inside .cstmicon1 a img {
1936
- float: left;
1937
- }
1938
-
1939
- .twt_tool_bdr .sfsi_inside .icon1 {
1940
- /*margin: -4px 0 -5px 0 !important;*/
1941
- margin: 5px 0px 3px 0 !important;
1942
- display: inline-block;
1943
- float: none;
1944
- width: 61px;
1945
- /* overflow: hidden;*/
1946
- height: auto;
1947
- }
1948
-
1949
- .twt_tool_bdr .sfsi_inside .icon1 iframe {
1950
- width: 61px !important;
1951
- }
1952
-
1953
- .twt_tool_bdr .sfsi_inside .icon2 {
1954
- margin: 3px 0px 2px 0px !important;
1955
- display: inline-block;
1956
- float: none;
1957
- height: auto;
1958
- width: 58px;
1959
- }
1960
-
1961
- .twt_tool_bdr .sfsi_inside .twt_1 {
1962
- margin: 9px 0 0;
1963
- display: inline-block;
1964
- float: none;
1965
- width: 58px;
1966
- height: 20px;
1967
- overflow: hidden;
1968
- }
1969
-
1970
- .twt_tool_bdr .sfsi_inside .twt_1 iframe {
1971
- width: 100% !important;
1972
- }
1973
-
1974
- .twt_tool_bdr .sfsi_inside .twt_2 {
1975
- margin: 9px 0 0;
1976
- height: 20px;
1977
- display: inline-block;
1978
- float: none;
1979
- width: 58px;
1980
- }
1981
-
1982
- .utube_tool_bdr .sfsi_inside {
1983
- text-align: center;
1984
- width: 100%;
1985
- float: left;
1986
- }
1987
-
1988
- .utube_tool_bdr .sfsi_inside .icon1 {
1989
- /*margin: 5px 0 0;*/
1990
- margin: 4px 0px 3px 0;
1991
- height: 24px;
1992
- display: inline-block;
1993
- float: none;
1994
- width: 96px;
1995
- }
1996
-
1997
- .utube_tool_bdr .sfsi_inside .icon2 {
1998
- /* margin: 9px 0 0;*/
1999
- margin: 2px 0 3px 0 !important;
2000
- height: 24px;
2001
- display: inline-block;
2002
- float: none;
2003
- max-width: 96px;
2004
- width: 82px;
2005
- }
2006
-
2007
- .pop-overlay.read-overlay.ytex-s2 .utube_tool_bdr {
2008
- width: 93px;
2009
- bottom: 100%;
2010
- left: 50%;
2011
- margin-bottom: -12px;
2012
- }
2013
-
2014
- .utube_tool_bdr {
2015
- width: 93px;
2016
- bottom: 100%;
2017
- left: 50%;
2018
- margin-bottom: 8px;
2019
- }
2020
-
2021
- .linkedin_tool_bdr {
2022
- width: 66px;
2023
- }
2024
-
2025
- .linkedin_tool_bdr .sfsi_inside {
2026
- text-align: center;
2027
- float: left;
2028
- width: 100%
2029
- }
2030
-
2031
- .linkedin_tool_bdr .sfsi_inside .icon1 {
2032
- margin: 2px 0 2px 0px;
2033
- display: inline-block;
2034
- float: none;
2035
- /* height: 20px;*/
2036
- width: 100%;
2037
- }
2038
-
2039
- .linkedin_tool_bdr .sfsi_inside .icon2 {
2040
- margin: 2px 0 2px 0px;
2041
- display: inline-block;
2042
- float: none;
2043
- /* height: 20px;*/
2044
- width: 100%;
2045
- }
2046
-
2047
- .linkedin_tool_bdr .sfsi_inside .icon3 {
2048
- margin: 2px 0 2px 0px;
2049
- display: inline-block;
2050
- float: none;
2051
- /* height: 20px;*/
2052
- width: 100%;
2053
- }
2054
-
2055
- .linkedin_tool_bdr .sfsi_inside .icon4 {
2056
- margin: 2px 0 1px 0px;
2057
- display: inline-block;
2058
- float: none;
2059
- /* height: 25px !important;*/
2060
- width: 100%;
2061
- }
2062
-
2063
- .sfsi_FrntInner_chg .linkedin_tool_bdr .sfsi_inside .icon1 {
2064
- margin: 7px 0;
2065
- }
2066
-
2067
- .sfsi_widget .linkedin_tool_bdr .sfsi_inside .icon4,
2068
- .sfsi_widget .gpls_tool_bdr .sfsi_inside .icon1,
2069
- .sfsi_widget .fb_tool_bdr .sfsi_inside .icon1 {
2070
- height: auto
2071
- }
2072
-
2073
- .linkedin_tool_bdr .linkin_1,
2074
- .linkedin_tool_bdr .linkin_2,
2075
- .linkedin_tool_bdr .linkin_3,
2076
- .linkedin_tool_bdr .linkin_4 {
2077
- margin: 9px 0 0 !important;
2078
- height: 20px;
2079
- display: inline-block;
2080
- float: none;
2081
- overflow: hidden;
2082
- }
2083
-
2084
- .twt_tool_bdr {
2085
- width: 62px;
2086
- height: auto;
2087
- }
2088
-
2089
- .twt_tool_bdr .sfsi_inside .icon1>iframe {
2090
- margin: 0 auto !important;
2091
- float: none !important;
2092
- width: 100%
2093
- }
2094
-
2095
- .twt_tool_bdr .sfsi_inside .icon1>iframe #widget {
2096
- text-align: center;
2097
- }
2098
-
2099
- .sfsi_pop_up .button {
2100
- border: none;
2101
- padding: 0;
2102
- }
2103
-
2104
- .pop_up_box .button a {
2105
- color: #fff;
2106
- line-height: normal;
2107
- font-size: 22px;
2108
- text-decoration: none;
2109
- text-align: center;
2110
- width: 482px;
2111
- height: 80px;
2112
- margin: 0;
2113
- display: table-cell;
2114
- vertical-align: middle;
2115
- font-family: helveticabold;
2116
- }
2117
-
2118
- .tab3 ul.tab_3_icns li .radio {
2119
- margin-top: 7px;
2120
- }
2121
-
2122
- .tab3 ul.tab_3_icns li label {
2123
- line-height: 50px !important;
2124
- margin-left: 20px;
2125
- }
2126
-
2127
- .sfsi_mainContainer input[type=email],
2128
- .sfsi_mainContainer input[type=number],
2129
- .sfsi_mainContainer input[type=password],
2130
- .sfsi_mainContainer input[type=search],
2131
- .sfsi_mainContainer input[type=tel],
2132
- .sfsi_mainContainer input[type=text],
2133
- .sfsi_mainContainer input[type=url],
2134
- .sfsi_mainContainer select,
2135
- .sfsi_mainContainer textarea {
2136
- color: #5a6570 !important;
2137
- }
2138
-
2139
- .adminTooltip {
2140
- left: 142px;
2141
- position: absolute;
2142
- }
2143
-
2144
- .adPopWidth {
2145
- min-height: 100px !important;
2146
- }
2147
-
2148
- .main_contant p>a.lit_txt,
2149
- .tab4 p>a {
2150
- font-family: helveticaregular;
2151
- color: #414951;
2152
- }
2153
-
2154
- .tab1 ul.icn_listing li .custom-txt {
2155
- margin-left: 5px;
2156
- }
2157
-
2158
- .tab1 ul.icn_listing li .custom-img {
2159
- margin-left: 18px;
2160
- }
2161
-
2162
- .linkedin_section .link_4>label.anthr_labl {
2163
- height: 94px;
2164
- }
2165
-
2166
- .mediam_txt {
2167
- font-family: helveticabold;
2168
- }
2169
-
2170
- .sfsiCtxt {
2171
- line-height: 51px;
2172
- font-family: helveticaregular;
2173
- font-size: 22px;
2174
- float: left;
2175
- padding-left: 19px;
2176
- color: #5a6570;
2177
- }
2178
-
2179
- .customstep2-img {
2180
- width: 51px;
2181
- float: left;
2182
- }
2183
-
2184
- .tab2 .row h2.custom {
2185
- margin: 15px 0 7px 21px;
2186
- height: 52px;
2187
- line-height: 51px;
2188
- font-family: helveticaregular;
2189
- font-size: 22px;
2190
- }
2191
-
2192
- .custom-links p.cus_link label {
2193
- margin-left: 0;
2194
- }
2195
-
2196
- .pop_up_box .sfsi_tool_tip_2 .fbb .fb_1 a>img:hover {
2197
- opacity: .9;
2198
- }
2199
-
2200
- .tab2 .rss_url_row .sfrsTxt {
2201
- font-size: 17px;
2202
- line-height: 47px;
2203
- margin: 0 0 0 4px;
2204
- font-family: helveticaregular;
2205
- }
2206
-
2207
- .tab2 .rss_url_row .sfrsTxt>strong {
2208
- font-family: helveticaregular;
2209
- }
2210
-
2211
- .tab2 .utube_inn p.extra_pp {
2212
- float: left;
2213
- width: 100%;
2214
- margin: 0 0 0 48px;
2215
- }
2216
-
2217
- .tab2 .utube_inn p.extra_pp label {
2218
- float: left;
2219
- line-height: 41px;
2220
- margin-right: 8px;
2221
- }
2222
-
2223
- .sfsi_inside .icon2 .fb_iframe_widget span {
2224
- width: 500px !important;
2225
- }
2226
-
2227
- @media (max-width:767px) {
2228
- .sfsi_inside .icon2 .fb_iframe_widget span {
2229
- width: auto;
2230
- }
2231
-
2232
- .sfsi_outr_div {
2233
- top: 10%
2234
- }
2235
-
2236
- .sfsi_outr_div h2 {
2237
- font-size: 22px !important;
2238
- line-height: 28px;
2239
- }
2240
-
2241
- .sfsi_wicons {
2242
- padding-top: 0;
2243
- }
2244
- }
2245
-
2246
- .specify_counts .listing li .high_prb {
2247
- height: 41px;
2248
- }
2249
-
2250
- .sfsi_Sicons {
2251
- position: relative;
2252
- }
2253
-
2254
- .sfsi_Sicons .sf_fb {
2255
- position: relative;
2256
- /*z-index: 1;*/
2257
- width: 75px;
2258
- }
2259
-
2260
- .sfsi_Sicons .fb_iframe_widget {
2261
- float: left;
2262
- width: 73px;
2263
- margin: 2px 0 0;
2264
- }
2265
-
2266
- .sfsi_Sicons .sf_fb .fb_iframe_widget>span {
2267
- position: absolute;
2268
- /*width: 450px!important; z-index: 1;*/
2269
- }
2270
-
2271
- .tab2 .utube_inn label {
2272
- font-size: 17px;
2273
- }
2274
-
2275
- .sfsi_plc_btm {
2276
- padding: 5px 14px 9px;
2277
- }
2278
-
2279
- .tab7 .field {
2280
- margin-top: 7px;
2281
- }
2282
-
2283
- .sfsi_outr_div ul li .cmcls img {
2284
- margin-top: 0 !important;
2285
- }
2286
-
2287
- .sfsi_outr_div ul li .inerCnt {
2288
- float: left;
2289
- }
2290
-
2291
- .sfsi_outr_div ul li .inerCnt .bot_no {
2292
- position: absolute;
2293
- padding: 1px 0;
2294
- font-size: 12px !important;
2295
- line-height: 12px !important;
2296
- text-align: center;
2297
- background: #fff;
2298
- border-radius: 5px;
2299
- display: block;
2300
- left: 50%;
2301
- margin-left: -20px;
2302
- border: 1px solid #333;
2303
- white-space: pre;
2304
- -webkit-box-sizing: border-box;
2305
- -moz-box-sizing: border-box;
2306
- box-sizing: border-box;
2307
- margin-top: 6px;
2308
- width: 40px;
2309
- word-break: break-all;
2310
- word-wrap: break-word;
2311
- }
2312
-
2313
- .sfsi_outr_div ul li .inerCnt .bot_no:before {
2314
- content: url(images/count_top_arow.png);
2315
- position: absolute;
2316
- height: 9px;
2317
- margin-left: -7.5px;
2318
- top: -10px;
2319
- left: 50%;
2320
- width: 15px;
2321
- }
2322
-
2323
- .sfsi_outr_div {
2324
- position: fixed;
2325
- width: 100%;
2326
- float: none;
2327
- left: 50%;
2328
- top: 20%;
2329
- margin-left: -50%;
2330
- opacity: 0;
2331
- z-index: -1;
2332
- display: block;
2333
- text-align: center;
2334
- }
2335
-
2336
- .sfsi_outr_div .sfsi_FrntInner_chg {
2337
- display: inline-block;
2338
- padding: 15px 17px 27px 18px;
2339
- background: #FFF;
2340
- border: 1px solid #EDEDED;
2341
- box-shadow: 0 0 5px #CCC;
2342
- margin: 20px;
2343
- position: relative;
2344
- }
2345
-
2346
- .sfsi_FrntInner_chg .sfsiclpupwpr {
2347
- position: absolute;
2348
- right: -10px;
2349
- top: -10px;
2350
- width: 25px;
2351
- cursor: pointer;
2352
- }
2353
-
2354
- .sfsi_FrntInner_chg .sfsiclpupwpr img {
2355
- width: auto;
2356
- float: left;
2357
- border: medium none;
2358
- }
2359
-
2360
- .tab7 .like_pop_box {
2361
- width: 100%;
2362
- margin: 35px auto auto;
2363
- position: relative;
2364
- text-align: center;
2365
- }
2366
-
2367
- .tab7 .like_pop_box .sfsi_Popinner {
2368
- display: inline-block;
2369
- padding: 18px 20px;
2370
- box-shadow: 0 0 5px #ccc;
2371
- -webkit-box-shadow: 0 0 5px #ccc;
2372
- border: 1px solid #ededed;
2373
- background: #FFF;
2374
- }
2375
-
2376
- .tab7 .like_pop_box .sfsi_Popinner h2 {
2377
- margin: 0 0 23px;
2378
- padding: 0;
2379
- color: #414951;
2380
- font-family: helveticabold;
2381
- font-size: 26px;
2382
- text-align: center;
2383
- }
2384
-
2385
- .tab7 .like_pop_box .sfsi_Popinner ul {
2386
- margin: 0;
2387
- padding: 0;
2388
- list-style: none;
2389
- text-align: center;
2390
- }
2391
-
2392
- .tab7 .like_pop_box .sfsi_Popinner ul li {
2393
- margin: 0;
2394
- padding: 0;
2395
- list-style: none;
2396
- display: inline-block;
2397
- }
2398
-
2399
- .tab7 .like_pop_box .sfsi_Popinner ul li span {
2400
- margin: 0;
2401
- width: 54px;
2402
- display: block;
2403
- background: url(../images/count_bg.png) no-repeat;
2404
- height: 24px;
2405
- overflow: hidden;
2406
- padding: 10px 2px 2px;
2407
- font-family: helveticaregular;
2408
- font-size: 16px;
2409
- text-align: center;
2410
- line-height: 24px;
2411
- color: #5a6570;
2412
- }
2413
-
2414
- .tab7 .like_pop_box .sfsi_Popinner ul li a {
2415
- color: #5a6570;
2416
- text-decoration: none;
2417
- }
2418
-
2419
- .sfsi_outr_div .sfsi_FrntInner_chg .sfsi_wicons {
2420
- margin-bottom: 0;
2421
- }
2422
-
2423
- .sfsi_outr_div ul {
2424
- list-style: none;
2425
- margin: 0 0 24px;
2426
- padding: 0;
2427
- text-align: center;
2428
- }
2429
-
2430
- a.sfsiColbtn {
2431
- color: #5a6570 !important;
2432
- float: right;
2433
- font-size: 14px;
2434
- margin: -35px -30px 0 0;
2435
- position: relative;
2436
- right: 0;
2437
- font-family: helveticaregular;
2438
- width: 100px;
2439
- text-decoration: none;
2440
- }
2441
-
2442
- .tab3 a.sfsiColbtn {
2443
- margin-top: -43px;
2444
- }
2445
-
2446
- .sfsi_FrntInner_chg ul li:first-of-type .sfsi_wicons {
2447
- margin-left: 0 !important;
2448
- }
2449
-
2450
- ul.tab_3_icns li .trans_bg {
2451
- background: #000;
2452
- padding-left: 3px;
2453
- }
2454
-
2455
- .tab2 .instagram_section {
2456
- padding-bottom: 20px;
2457
- }
2458
-
2459
- h1.abt_titl {
2460
- text-align: center;
2461
- margin: 19% 0 0;
2462
- }
2463
-
2464
- .sfcm.sfsi_wicon {
2465
- padding: 0;
2466
- width: 100%;
2467
- border: medium none;
2468
- }
2469
-
2470
- .fb_iframe_widget span {
2471
- vertical-align: top !important;
2472
- }
2473
-
2474
- .sfsi_outr_div .sfsi_FrntInner_chg ul {
2475
- margin: 0 0 0 3px;
2476
- }
2477
-
2478
- .sfsi_outr_div .sfsi_FrntInner_chg ul li {
2479
- margin: 0 3px 0 0;
2480
- }
2481
-
2482
- .sfcm.sfsi_wicon {
2483
- margin: -1px;
2484
- padding: 0;
2485
- }
2486
-
2487
- @media (min-width:320px) and (max-width:480px) {
2488
-
2489
- .sfsi_tool_tip_2,
2490
- .tool_tip {
2491
- padding: 5px 14px 0;
2492
- }
2493
-
2494
- .sfsi_inside:last-child {
2495
- margin-bottom: 18px;
2496
- clear: both;
2497
- }
2498
-
2499
- .sfsi_outr_div {
2500
- top: 10%;
2501
- }
2502
-
2503
- .sfsi_FrntInner_chg .sfsi_wicons {
2504
- width: 31px !important;
2505
- height: 31px !important;
2506
- }
2507
-
2508
- .sfsi_FrntInner_chg .sfsi_wicons img {
2509
- width: 100%;
2510
- }
2511
-
2512
- .sfsi_Sicons .sf_fb {
2513
- margin-bottom: 24px;
2514
- }
2515
-
2516
- .sfsi_Sicons .sf_twiter {
2517
- margin-bottom: 4px;
2518
- }
2519
- }
2520
-
2521
- @media (max-width:320px) {
2522
-
2523
- .sfsi_tool_tip_2,
2524
- .tool_tip {
2525
- padding: 5px 14px 0;
2526
- }
2527
-
2528
- .sfsi_inside:last-child {
2529
- margin-bottom: 18px;
2530
- clear: both;
2531
- }
2532
-
2533
- .sfsi_FrntInner_chg .sfsi_wicons {
2534
- width: 31px !important;
2535
- height: 31px !important;
2536
- }
2537
-
2538
- .sfsi_FrntInner_chg .sfsi_wicons img {
2539
- width: 100%
2540
- }
2541
- }
2542
-
2543
- ul.SFSI_lsngfrm {
2544
- float: left;
2545
- /* width: 61%;*/
2546
- width: 51.33%;
2547
- padding-left: 60px !important;
2548
- }
2549
-
2550
- ul.SFSI_instructions {
2551
- float: left;
2552
- width: 35%;
2553
- }
2554
-
2555
- li.youtube_options {
2556
- padding-left: 60px !important;
2557
- }
2558
-
2559
- input[name="sfsi_pinterest_manualCounts"] {
2560
- margin-left: -20px !important;
2561
- }
2562
-
2563
- ul.SFSI_instructions li {
2564
- font-size: 12px !important;
2565
- line-height: 25px !important;
2566
- margin: 0 !important;
2567
- padding: 0 0 0 15px !important;
2568
- width: 100%
2569
- }
2570
-
2571
- /*{Monad}*/
2572
- /*Upload Skins css*/
2573
- .cstmskin_popup {
2574
- width: 500px;
2575
- background: #FFF;
2576
- box-shadow: 0 0 5px 3px #d8d8d8;
2577
- margin: 40px 0px auto;
2578
- padding: 20px 25px 20px;
2579
- font-family: helveticaregular;
2580
- color: #5a6570;
2581
- height: auto;
2582
- float: left;
2583
- position: relative;
2584
- left: 35%;
2585
- }
2586
-
2587
- .cstomskins_wrpr {
2588
- float: left;
2589
- width: 100%;
2590
- }
2591
-
2592
- .custskinmsg {
2593
- float: left;
2594
- font-size: 15px;
2595
- margin-top: 10px;
2596
- width: 100%;
2597
- }
2598
-
2599
- .custskinmsg>ul {
2600
- color: #000;
2601
- float: left;
2602
- margin-top: 8px;
2603
- width: 100%;
2604
- }
2605
-
2606
- ul.cstmskin_iconlist {
2607
- float: left;
2608
- padding: 11px 0 40px 8px;
2609
- width: 100%;
2610
- max-width: 1000px;
2611
- margin: 0;
2612
- height: 307px;
2613
- overflow-y: scroll;
2614
- }
2615
-
2616
- .placethemanulywpr {
2617
- max-width: 98% !important
2618
- }
2619
-
2620
- .cstmskin_iconlist>li {
2621
- float: left;
2622
- margin: 3px 0;
2623
- width: 100%;
2624
- }
2625
-
2626
- .cstm_icnname {
2627
- float: left;
2628
- width: 30%;
2629
- }
2630
-
2631
- .cstmskins_btn>img {
2632
- float: left;
2633
- margin-right: 25px;
2634
- }
2635
-
2636
- .cstmskin_btn {
2637
- width: auto;
2638
- float: left;
2639
- padding: 3px 20px;
2640
- color: #fff;
2641
- background-color: #12a252;
2642
- text-decoration: none;
2643
- margin: 0 10px;
2644
- }
2645
-
2646
- .cstmskins_sbmt {
2647
- width: 100%;
2648
- float: left;
2649
- text-align: center;
2650
- margin-top: 15px;
2651
- }
2652
-
2653
- .done_btn {
2654
- width: auto;
2655
- padding: 3px 80px;
2656
- color: #fff;
2657
- background-color: #12a252;
2658
- text-decoration: none;
2659
- font-size: 18px;
2660
- }
2661
-
2662
- .cstmskin_btn:hover,
2663
- .done_btn:hover,
2664
- .cstmskin_btn:focus,
2665
- .done_btn:focus {
2666
- color: #fff;
2667
- }
2668
-
2669
- .skswrpr,
2670
- .dlt_btn {
2671
- display: none;
2672
- }
2673
-
2674
- .cstmutbewpr {
2675
- width: 100%;
2676
- float: left;
2677
- margin-top: 10px;
2678
- margin-left: 40px;
2679
- }
2680
-
2681
- .cstmutbewpr ul.enough_waffling li {
2682
- width: auto;
2683
- float: left;
2684
- margin-right: 20px;
2685
- }
2686
-
2687
- .cstmutbewpr ul.enough_waffling li span {
2688
- float: left;
2689
- }
2690
-
2691
- .cstmutbewpr ul.enough_waffling li label {
2692
- width: auto;
2693
- float: left;
2694
- margin-top: 10px;
2695
- margin-left: 10px;
2696
- }
2697
-
2698
- .cstmutbewpr .cstmutbtxtwpr {
2699
- width: 100%;
2700
- float: left;
2701
- padding-top: 10px;
2702
- }
2703
-
2704
- .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr {
2705
- width: 100%;
2706
- float: left;
2707
- display: none;
2708
- }
2709
-
2710
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p,
2711
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p {
2712
- margin-left: 0px;
2713
- }
2714
-
2715
- .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr {
2716
- width: 100%;
2717
- float: left;
2718
- display: none;
2719
- }
2720
-
2721
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p label,
2722
- #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p label {
2723
- width: 120px;
2724
- }
2725
-
2726
- .sfsi_widget .sfsi_wDiv .sfsi_wicons .inerCnt a,
2727
- .sfsi_widget .sfsi_wDiv .sfsi_wicons .inerCnt a.sficn {
2728
- padding: 0px;
2729
- margin: 0px;
2730
- width: 100%;
2731
- float: left;
2732
- border: medium none;
2733
- }
2734
-
2735
- .sfsi_socialwpr {
2736
- width: auto;
2737
- display: inline-block;
2738
- vertical-align: middle;
2739
- }
2740
-
2741
- .sfsi_socialwpr .sf_fb {
2742
- float: left;
2743
- }
2744
-
2745
- .sfsipyplfrm {
2746
- float: left;
2747
- margin-top: 10px;
2748
- width: 100%;
2749
- }
2750
-
2751
- .sfsipyplfrm input[type="submit"] {
2752
- background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
2753
- border: medium none;
2754
- color: #0074a2;
2755
- cursor: pointer;
2756
- font-weight: normal;
2757
- margin: 0;
2758
- padding: 5px 10px;
2759
- text-decoration: underline;
2760
- }
2761
-
2762
- .sfsipyplfrm input[type="submit"]:hover {
2763
- color: #2ea2cc
2764
- }
2765
-
2766
- .pop_up_box_ex {
2767
- background: none repeat scroll 0 0 #fff;
2768
- box-shadow: 0 0 5px 3px #d8d8d8;
2769
- color: #5a6570;
2770
- font-family: helveticaregular;
2771
- margin: 200px auto;
2772
- min-height: 150px;
2773
- padding: 20px 25px 0px;
2774
- position: relative;
2775
- width: 290px;
2776
- }
2777
-
2778
- .pop_up_box_ex {
2779
- color: #5a6570;
2780
- font-family: helveticaregular;
2781
- }
2782
-
2783
- .cstmutbchnlidwpr .utbe_instruction,
2784
- .cstmutbchnlnmewpr .utbe_instruction,
2785
- .lnkdin_instruction {
2786
- float: left;
2787
- line-height: 22px;
2788
- margin-top: 10px;
2789
- width: 100%;
2790
- }
2791
-
2792
- .fb_iframe_widget iframe {
2793
- max-width: none;
2794
- }
2795
-
2796
- .sfsi_mainContainer p.bldtxtmsg {
2797
- float: left;
2798
- font-size: 15px;
2799
- font-weight: bold;
2800
- margin-top: 12px;
2801
- width: 100%;
2802
- text-align: center;
2803
- }
2804
-
2805
- .sfsinewplgndesc {
2806
- background: none repeat scroll 0 0 #e5e5e5;
2807
- float: left;
2808
- padding: 5px 10px 8px;
2809
- margin-top: 25px;
2810
- }
2811
-
2812
- .sfsinewplgndesc>.clear>a {
2813
- color: #5a6570;
2814
- font-weight: bold;
2815
- }
2816
-
2817
- .sfsiicnsdvwrp {
2818
- float: left;
2819
- width: 110px;
2820
- }
2821
-
2822
- .sfsi_Sicons .sf_subscrbe .bot_no {
2823
- background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
2824
- font-size: 12px !important;
2825
- left: 67px;
2826
- line-height: 18px !important;
2827
- margin-left: 0px;
2828
- margin-top: 8px;
2829
- padding: 1px 0;
2830
- position: absolute;
2831
- text-align: center;
2832
- top: -8px;
2833
- white-space: pre;
2834
- width: 33px;
2835
- height: 24px;
2836
- z-index: 9;
2837
- }
2838
-
2839
- .sfsi_wicons a.sficn,
2840
- .sfsi_wicons .sfsi_inside a,
2841
- .sfsi_Sicons div a {
2842
- box-shadow: none;
2843
- border: none;
2844
- }
2845
-
2846
- .sfsi_Sicons .sf_pinit>span {
2847
- height: 20px !important;
2848
- }
2849
-
2850
- .sfsi_Sicons .sf_pinit>span>span {
2851
- width: 38px !important;
2852
- right: -45px !important;
2853
- }
2854
-
2855
- .sfsi_wicons a {
2856
- box-shadow: none !important;
2857
- }
2858
-
2859
- a.sficn {
2860
- cursor: pointer;
2861
- }
2862
-
2863
- .sfsi_Sicons .fb_iframe_widget>span {
2864
- vertical-align: top !important;
2865
- }
2866
-
2867
- .sfsi_Sicons .sf_fb {
2868
- margin: 0 0 0 5px !important;
2869
- }
2870
-
2871
- .disabled_checkbox .sfsi_right_info:before {
2872
- position: absolute;
2873
- content: "";
2874
- width: 500px;
2875
- height: 60px;
2876
- display: inline-block;
2877
- z-index: 99;
2878
- margin-left: -66px;
2879
- margin-top: -14px;
2880
- background: rgba(255, 255, 255, .8);
2881
- }
2882
-
2883
- #sfsi_floater .fb_tool_bdr .sfsi_inside .icon2 {
2884
- /*margin: -2px 0 -5px 0;*/
2885
- }
2886
-
2887
- .sfsi_wechat_follow_overlay {
2888
- position: fixed;
2889
- top: 0;
2890
- width: 100%;
2891
- z-index: 99999;
2892
- background: rgba(0, 0, 0, 0.7);
2893
- }
2894
-
2895
- .sfsi_wechat_follow_overlay .close_btn {
2896
- position: absolute;
2897
- right: 60px;
2898
- top: 60px;
2899
- font-size: 40px;
2900
- line-height: 40px;
2901
- text-decoration: none;
2902
- border: 1px solid #fff;
2903
- padding: 0 10px;
2904
- border-radius: 60px;
2905
- color: #333;
2906
- background-color: #ffff;
2907
- text-decoration: none;
2908
- }
2909
-
2910
- @media (max-width:786px) {
2911
- .sfsi_upload_butt_container {
2912
- display: inline-block;
2913
- }
2914
-
2915
- .upload_butt {
2916
- height: 38px;
2917
- }
2918
-
2919
- .sfsi_wechat_follow_overlay .sfsi_inner_display>div div.sfsi_upload_butt_container:first-child {
2920
- margin-left: 0;
2921
- margin-right: 20px;
2922
- }
2923
- }
2924
-
2925
- /*added by Developer */
2926
- #accordion1 p:nth-child(2) {
2927
- padding-top: 0px !important;
2928
- }
2929
-
2930
- input[name="sfsi_instagram_manualCounts"] {
2931
- margin-left: -15px !important;
2932
- }
2933
-
2934
- .sfsi_prem_cmn_rowlisting {
2935
- width: 33.33%;
2936
- }
2937
-
2938
- .rss_url_row h4 {
2939
- line-height: 43px !important;
2940
- font-size: 17px !important;
2941
- font-family: 'helveticaneue-light' !important;
2942
- }
2943
-
2944
- .cstmutbchnlnmewpr p.extra_pp label {
2945
- width: auto !important;
2946
- }
2947
-
2948
- .cstmutbchnlidwpr p.extra_pp label {
2949
- width: auto !important;
2950
- }
2951
-
2952
- .tab_3_option {
2953
- margin: 10px 0 0;
2954
- }
2955
-
2956
- div.tab3 .sub_row.stand.sec_new {
2957
- margin: 0;
2958
- }
2959
-
2960
- div#custom_social_data_setting h4 {
2961
- padding-bottom: 30px;
2962
- }
2963
-
2964
- .like_pop_box img.sfcm {
2965
- height: 50px;
2966
- width: 50px;
2967
- }
2968
-
2969
- .linkedin_tool_bdr {
2970
- line-height: 0 !important;
2971
- }
2972
-
2973
- .twt_tool_bdr {
2974
- line-height: 0 !important;
2975
- }
2976
-
2977
- div#sfsiid_facebook {
2978
- line-height: 0 !important;
2979
- }
2980
-
2981
- div#sfsiid_youtube {
2982
- line-height: 0 !important;
2983
- }
2984
-
2985
- .printst_tool_bdr {
2986
- line-height: 0 !important;
2987
- }
2988
-
2989
- /*end added by Developer */
2990
- /*by developer - 29-5-2019 */
2991
- ul.SFSI_instructions li,
2992
- ul.SFSI_instructions li a {
2993
- font-size: 17px !important;
2994
- font-family: helveticaregular !important;
2995
- font-weight: 400;
2996
- color: #1a1d20 !important;
2997
- }
2998
-
2999
- body .specify_counts .listing .sfsi_instagramInstruction li {
3000
- font-size: 17px !important;
3001
- font-family: helveticaregular !important;
3002
- font-weight: 400 !important;
3003
- color: #1a1d20 !important;
3004
- line-height: 26px !important;
3005
- }
3006
-
3007
- /*end - 29-5-2019*/
3008
-
3009
- a.pop-up .radio{
3010
- opacity: 0.5;
3011
- background-position: 0px 0px !important;
3012
- /* padding-right: 3px; */
3013
- }
3014
-
3015
- .sfsi_vertically_center{
3016
- display: flex;
3017
- justify-content: space-between;
3018
- align-items: center;
3019
- }
3020
- .sfsi_center{
3021
- display: flex;
3022
- justify-content: center;
3023
- }
3024
- .sfsi_custom_icons_q4{
3025
- display: flex;
3026
- align-items: center;
3027
- }
3028
- .tab6 .sfsi_responsive_icon_option_li .options .first.first.first {
3029
- width: 25%!important;
3030
- }
3031
- .sfsi_responsive_icon_gradient{
3032
- background-image: -webkit-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3033
- background-image: -moz-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3034
- background-image: linear-gradient(bottom,rgba(0,0,0,.17) 0%,rgba(255,255,255,.17) 100%);
3035
- }
3036
- .tab6 ul.sfsi_icn_listing8 ul.sfsi_tab_3_icns li {
3037
- width: 50%;
3038
- max-width: 450px;
3039
- min-width: 420px;
3040
- padding-left: 0;
3041
- padding-bottom: 0;
3042
- }
3043
- .tab6 .sfsi_tab_3_icns.sfsi_shwthmbfraftr > li {
3044
- width:100% !important;
3045
- max-width:100% !important;
3046
- border-left: 45px solid transparent;
3047
- }
3048
-
3049
- .tab6 ul.sfsi_icn_listing8 li {
3050
- float: left;
3051
- padding: 11px 0 40px 8px;
3052
- width: 100%;
3053
- max-width: 1000px;
3054
- margin: 0;
3055
- }
3056
-
3057
- ul.sfsi_icn_listing8 li .sfsi_right_info a {
3058
- outline: 0;
3059
- font-family: helveticaregular;
3060
- }
3061
- #accordion .tab6 ul.sfsi_tab_3_icns {
3062
- margin-top: 25px;
3063
- }
3064
- .sfsi_tab_3_icns.sfsi_shwthmbfraftr {
3065
- overflow: visible;
3066
- }
3067
- ul.sfsi_tab_3_icns {
3068
- list-style: none;
3069
- margin: 34px 0 0;
3070
- overflow: hidden;
3071
- }
3072
-
3073
- .tab6 ul.sfsi_icn_listing8 li {
3074
- float: left;
3075
- padding: 11px 0 40px 8px;
3076
- width: 100%;
3077
- max-width: 1000px;
3078
- margin: 0;
3079
- }
3080
- .tab6 .sfsi_tab_3_icns.sfsi_shwthmbfraftr .social_icon_like1 li {
3081
- width: auto;
3082
- max-width: auto;
3083
- min-width: auto;
3084
- margin: 0 30px 0 0;
3085
- }
3086
-
3087
- ul.sfsi_tab_3_icns label {
3088
- float: left;
3089
- line-height: 42px;
3090
- color: #69737C;
3091
- font-size: 18px;
3092
- font-family: helveticaregular;
3093
- min-width: 120px;
3094
- }
3095
- .tab6 ul.sfsi_tab_3_icns li label {
3096
- line-height: 50px !important;
3097
- }
3098
-
3099
- #accordion1 .tab6 ul.sfsi_shwthmbfraftr .labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .row h4.labelhdng4 {
3100
- color: #555;
3101
- font-size: 20px;
3102
- margin-left: 20px;
3103
- font-family: 'helveticaregular';
3104
- }
3105
- .tab6 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns.sfsi_shwthmbfraftr>li:nth-child(1), .tab6 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns.sfsi_shwthmbfraftr>li:nth-child(2){
3106
- width: 50% !important;
3107
- }
3108
-
3109
- .tab6 ul.sfsi_tab_3_icns li .radio{
3110
- margin-top: 7px;
3111
- }
3112
-
3113
- ul.sfsi_icn_listing8 li .tb_4_ck{
3114
- float: left;
3115
- }
3116
- .sfsi_responsive_default_icon_container .radio_section.tb_4_ck, .sfsi_responsive_custom_icon_container .radio_section.tb_4_ck {
3117
- margin: 5px 20px 0 0 !important;
3118
- }
3119
-
3120
- .sfsi_responsive_icon_option_li .options .field .select {
3121
- font-family: helveticaregular;
3122
- font-weight: 400;
3123
- font-size: 17px;
3124
- color: #5a6570!important;
3125
- }
3126
-
3127
- .tab6 ul.sfsi_icn_listing8 ul.sfsi_tab_3_icns .usually li {
3128
- width: 100% !important;
3129
- max-width: 1000px !important;
3130
- padding: 3px 0 5px 5px !important;
3131
- }
3132
- .sfsi_responsive_icons a{
3133
- text-decoration: none!important;
3134
- box-shadow: none!important;
3135
- }
3136
- .sfsi_responsive_icons .sfsi_responsive_icon_facebook_container{ background-color:#336699;}
3137
- .sfsi_responsive_icons .sfsi_responsive_icon_follow_container{ background-color:#00B04E;}
3138
- .sfsi_responsive_icons .sfsi_responsive_icon_twitter_container{ background-color:#55ACEE;}
3139
- .sfsi_small_button {
3140
- line-height: 0px;
3141
- height: unset;
3142
- padding: 6px !important;
3143
- }
3144
- .sfsi_small_button span {
3145
- margin-left: 10px;
3146
- font-size: 16px;
3147
- padding: 0px;
3148
- line-height: 16px;
3149
- vertical-align: -webkit-baseline-middle !important;
3150
- margin-left: 10px;
3151
- }
3152
- .sfsi_small_button img {
3153
- max-height: 16px !important;
3154
- padding: 0px;
3155
- line-height: 0px;
3156
- vertical-align: -webkit-baseline-middle !important;
3157
- }
3158
- .sfsi_medium_button span {
3159
- margin-left: 10px;
3160
- font-size: 18px;
3161
- padding: 0px;
3162
- line-height: 16px;
3163
- vertical-align: -webkit-baseline-middle !important;
3164
- margin-left: 10px;
3165
- }
3166
- .sfsi_medium_button img {
3167
- max-height: 16px !important;
3168
- padding: 0px;
3169
- line-height: 0px;
3170
- vertical-align: -webkit-baseline-middle !important;
3171
- }
3172
- .sfsi_medium_button {
3173
- line-height: 0px;
3174
- height: unset;
3175
- padding: 10px !important;
3176
- }
3177
-
3178
- .sfsi_medium_button span {
3179
- margin-left: 10px;
3180
- font-size: 18px;
3181
- padding: 0px;
3182
- line-height: 16px;
3183
- vertical-align: -webkit-baseline-middle !important;
3184
- margin-left: 10px;
3185
- }
3186
- .sfsi_medium_button img {
3187
- max-height: 16px !important;
3188
- padding: 0px;
3189
- line-height: 0px;
3190
- vertical-align: -webkit-baseline-middle !important;
3191
- }
3192
- .sfsi_medium_button {
3193
- line-height: 0px;
3194
- height: unset;
3195
- padding: 10px !important;
3196
- }
3197
- .sfsi_large_button span {
3198
- font-size: 20px;
3199
- padding: 0px;
3200
- line-height: 16px;
3201
- vertical-align: -webkit-baseline-middle !important;
3202
- display: inline;
3203
- margin-left: 10px;
3204
- }
3205
- .sfsi_large_button img {
3206
- max-height: 16px !important;
3207
- padding: 0px;
3208
- line-height: 0px;
3209
- vertical-align: -webkit-baseline-middle !important;
3210
- display: inline;
3211
- }
3212
- .sfsi_large_button {
3213
- line-height: 0px;
3214
- height: unset;
3215
- padding: 13px !important;
3216
- }
3217
- .sfsi_responsive_icons .sfsi_icons_container span {
3218
- font-family: sans-serif;
3219
- font-size: 15px;
3220
- }
3221
- .sfsi_icons_container_box_fully_container {
3222
- flex-wrap: wrap;
3223
- }
3224
- .sfsi_icons_container_box_fully_container a {
3225
- flex-basis: auto !important;
3226
- flex-grow: 1;
3227
- flex-shrink: 1;
3228
- margin-bottom: 5px;
3229
- }
3230
- .sfsi_icons_container>a {
3231
- float: left!important;
3232
- text-decoration: none!important;
3233
- -webkit-box-shadow: unset!important;
3234
- box-shadow: unset!important;
3235
- -webkit-transition: unset!important;
3236
- transition: unset!important;
3237
- margin-bottom:5px!important;
3238
- }
3239
- .sfsi_small_button {
3240
- line-height: 0px;
3241
- height: unset;
3242
- padding: 6px !important;
3243
- }
3244
- .sfsi_small_button span {
3245
- margin-left: 10px;
3246
- font-size: 16px;
3247
- padding: 0px;
3248
- line-height: 16px;
3249
- vertical-align: -webkit-baseline-middle !important;
3250
- margin-left: 10px;
3251
- }
3252
- .sfsi_small_button img {
3253
- max-height: 16px !important;
3254
- padding: 0px;
3255
- line-height: 0px;
3256
- vertical-align: -webkit-baseline-middle !important;
3257
- }
3258
- .sfsi_medium_button span {
3259
- margin-left: 10px;
3260
- font-size: 18px;
3261
- padding: 0px;
3262
- line-height: 16px;
3263
- vertical-align: -webkit-baseline-middle !important;
3264
- margin-left: 10px;
3265
- }
3266
- .sfsi_medium_button img {
3267
- max-height: 16px !important;
3268
- padding: 0px;
3269
- line-height: 0px;
3270
- vertical-align: -webkit-baseline-middle !important;
3271
- }
3272
- .sfsi_medium_button {
3273
- line-height: 0px;
3274
- height: unset;
3275
- padding: 10px !important;
3276
- }
3277
-
3278
- .sfsi_medium_button span {
3279
- margin-left: 10px;
3280
- font-size: 18px;
3281
- padding: 0px;
3282
- line-height: 16px;
3283
- vertical-align: -webkit-baseline-middle !important;
3284
- margin-left: 10px;
3285
- }
3286
- .sfsi_medium_button img {
3287
- max-height: 16px !important;
3288
- padding: 0px;
3289
- line-height: 0px;
3290
- vertical-align: -webkit-baseline-middle !important;
3291
- }
3292
- .sfsi_medium_button {
3293
- line-height: 0px;
3294
- height: unset;
3295
- padding: 10px !important;
3296
- }
3297
- .sfsi_large_button span {
3298
- font-size: 20px;
3299
- padding: 0px;
3300
- line-height: 16px;
3301
- vertical-align: -webkit-baseline-middle !important;
3302
- display: inline;
3303
- margin-left: 10px;
3304
- }
3305
- .sfsi_large_button img {
3306
- max-height: 16px !important;
3307
- padding: 0px;
3308
- line-height: 0px;
3309
- vertical-align: -webkit-baseline-middle !important;
3310
- display: inline;
3311
- }
3312
- .sfsi_large_button {
3313
- line-height: 0px;
3314
- height: unset;
3315
- padding: 13px !important;
3316
- }
3317
- .sfsi_responsive_icons_count{
3318
- padding: 5px 10px;
3319
- float: left !important;
3320
- display: inline-block;
3321
- margin-right: 0px;
3322
- margin-top: 2px;
3323
- }
3324
-
3325
- .sfsi_responsive_icons_count h3{
3326
- font-family: 'sans-serif' !important;
3327
- font-weight: 900;
3328
- font-size: 32px !important;
3329
- line-height: 0px !important;
3330
- padding: 0px;
3331
- margin: 0px;
3332
- }
3333
-
3334
- .sfsi_responsive_icons_count h6{
3335
- font-family: 'sans-serif' !important;
3336
- font-weight: 900;
3337
- padding: 0px;
3338
- margin: 0px;
3339
- }
3340
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3341
- text-decoration: none!important;
3342
- border: 0!important;
3343
- }
3344
- .sfsi_responsive_with_counter_icons{
3345
- width: calc(100% - 100px)!important;
3346
- }
3347
- .sfsiresponsive_icon_preview {
3348
- padding: 0px 0 20px 0;
3349
- min-width: 100%;
3350
- }
3351
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
3352
- padding: 12px 13px 9px 13px !important;
3353
- }
3354
- .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
3355
- padding: 9px 10px 7px 10px !important;
3356
- }
3357
- .sfsi_responsive_icons_count.sfsi_small_button {
3358
- padding: 7px 6px !important;
3359
- }
3360
- .sfsi_responsive_icons_count.sfsi_small_button {
3361
- padding: 7px 6px !important;
3362
- margin-top: 2px;
3363
- }
3364
- .sfsi_responsive_icons_count.sfsi_small_button h6 {
3365
- display: inline-block;
3366
- font-size: 12px !important;
3367
- vertical-align: middle;
3368
- }
3369
- .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
3370
- padding: 9px 10px 7px 10px !important;
3371
- }
3372
- .sfsi_responsive_icons_count.sfsi_medium_button h3 {
3373
- font-size: 21px !important;
3374
- vertical-align: top;
3375
- line-height: 8px !important;
3376
- margin: 0px 0px 12px 0px !important;
3377
- font-weight: 900;
3378
- padding: 0px;
3379
- }
3380
- .sfsi_esponsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
3381
- margin: 0px 0px 15px 0px !important;
3382
- }
3383
- .sfsi_responsive_icons_count.sfsi_large_button h3 {
3384
- font-size: 26px !important;
3385
- vertical-align: top;
3386
- line-height: 6px !important;
3387
- }
3388
-
3389
- .sfsi_responsive_icons_count h3 {
3390
- font-family: 'sans-serif' !important;
3391
- font-weight: 900;
3392
- padding: 0px;
3393
- }
3394
-
3395
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
3396
- font-size: 20px !important;
3397
- display: inline-block;
3398
- vertical-align: middle;
3399
- }
3400
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
3401
- margin: 0px !important;
3402
- }
3403
- .sfsi_responsive_icons_count h3 {
3404
- font-family: 'sans-serif' !important;
3405
- font-weight: 900;
3406
- line-height: 0px !important;
3407
- padding: 0px;
3408
- margin: 0px;
3409
- }
3410
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3411
- text-decoration: none!important;
3412
- border: 0!important;
3413
- }
3414
- .sfsi_responsive_icons_count.sfsi_small_button {
3415
- padding: 7px 6px !important;
3416
- margin-top: 2px;
3417
- }
3418
-
3419
- .sfsi_responsive_icons_count {
3420
- vertical-align: top;
3421
- }
3422
- .sfsi_responsive_icons_count {
3423
- float: left;
3424
- }
3425
- .sfsi_small_button {
3426
- line-height: 0px;
3427
- height: unset;
3428
- }
3429
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3430
- text-decoration: none!important;
3431
- border: 0!important;
3432
- }
3433
- .sfsi_responsive_icons_count.sfsi_small_button h3 {
3434
- font-size: 20px !important;
3435
- display: inline-block;
3436
- vertical-align: middle;
3437
- margin: 0px !important;
3438
- }
3439
-
3440
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3441
- text-decoration: none!important;
3442
- font-family: helveticaregular!important;
3443
- border: 0!important;
3444
- }
3445
- .sfsi_responsive_icons_count h3 {
3446
- line-height: 0px !important;
3447
- padding: 0px;
3448
- }
3449
- .sfsi_responsive_icons_count.sfsi_small_button h6 {
3450
- display: inline-block;
3451
- font-size: 12px !important;
3452
- /*vertical-align: middle;*/
3453
- margin: 0px !important;
3454
- line-height: initial !important;
3455
- padding: 0;
3456
- margin: 0;
3457
- }
3458
- .sfsi_responsive_icons_count h6{
3459
- margin:0!important;
3460
- }
3461
- .sfsi_responsive_icons_count h6 {
3462
- padding: 0px;
3463
- }
3464
- .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6{
3465
- text-decoration: none!important;
3466
- font-family: helveticaregular!important;
3467
- border: 0!important;
3468
- }
3469
- .sfsi_responsive_icons_count.sfsi_medium_button h6{
3470
- font-size: 11px !important;
3471
- line-height: 0px !important;
3472
- margin: 0px 0px 0px 0px !important;
3473
- }
1
+ @charset "utf-8";
2
+
3
+ @font-face {
4
+ font-family: helveticabold;
5
+ src: url(fonts/helvetica_bold_0-webfont.eot);
6
+ src: url(fonts/helvetica_bold_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_bold_0-webfont.woff) format('woff'), url(fonts/helvetica_bold_0-webfont.ttf) format('truetype'), url(fonts/helvetica_bold_0-webfont.svg#helveticabold) format('svg');
7
+ font-weight: 400;
8
+ font-style: normal;
9
+ }
10
+
11
+ @font-face {
12
+ font-family: helveticaregular;
13
+ src: url(fonts/helvetica_0-webfont.eot);
14
+ src: url(fonts/helvetica_0-webfont.eot?#iefix) format('embedded-opentype'), url(fonts/helvetica_0-webfont.woff) format('woff'), url(fonts/helvetica_0-webfont.ttf) format('truetype'), url(fonts/helvetica_0-webfont.svg#helveticaregular) format('svg');
15
+ font-weight: 400;
16
+ font-style: normal;
17
+ }
18
+
19
+ @font-face {
20
+ font-family: helveticaneue-light;
21
+ src: url(fonts/helveticaneue-light.eot);
22
+ src: url(fonts/helveticaneue-light.eot?#iefix) format('embedded-opentype'), url(fonts/helveticaneue-light.woff) format('woff'), url(fonts/helveticaneue-light.ttf) format('truetype'), url(fonts/helveticaneue-light.svg#helveticaneue-light) format('svg');
23
+ font-weight: 400;
24
+ font-style: normal;
25
+ }
26
+
27
+ body {
28
+ margin: 0;
29
+ padding: 0;
30
+ }
31
+
32
+ .clear {
33
+ clear: both;
34
+ }
35
+
36
+ .space {
37
+ clear: both;
38
+ padding: 30px 0 0;
39
+ width: 100%;
40
+ float: left;
41
+ }
42
+
43
+ .like_txt {
44
+ margin: 30px 0 0;
45
+ padding: 0;
46
+ color: #12a252;
47
+ font-family: helveticaregular;
48
+ font-size: 20px;
49
+ line-height: 20px;
50
+ text-align: center;
51
+ }
52
+
53
+ .like_txt a {
54
+ color: #12a252;
55
+ }
56
+
57
+ .sfsibeforpstwpr iframe,
58
+ .sfsiaftrpstwpr iframe {
59
+ max-width: none;
60
+ }
61
+
62
+ .sfwp_fivestar_ul li {
63
+ display: block;
64
+ padding-right: 20px;
65
+ }
66
+
67
+ .shwthmbfraftr {
68
+ margin-top: 5px !important
69
+ }
70
+
71
+ label.toglpstpgsbttl {
72
+ float: left;
73
+ margin-top: 5px !important
74
+ }
75
+
76
+ .tab_3_icns.shwthmbfraftr .cstmdisplaysharingtxt {
77
+ float: left;
78
+ }
79
+
80
+ .tab6 ul.enough_waffling.sfsi_dsplyatend {
81
+ width: 24%;
82
+ float: left;
83
+ }
84
+
85
+ .tab4 ul.like_icon {
86
+ margin: 0;
87
+ padding: 20px 0 0;
88
+ list-style: none;
89
+ text-align: center;
90
+ }
91
+
92
+ .tab4 ul.like_icon li {
93
+ margin: 0;
94
+ padding: 0;
95
+ list-style: none;
96
+ display: inline-block;
97
+ }
98
+
99
+ .tab4 ul.like_icon li span {
100
+ margin: 0;
101
+ width: 54px;
102
+ display: block;
103
+ background: url(../images/count_bg.png) no-repeat;
104
+ height: 24px;
105
+ overflow: hidden;
106
+ padding: 10px 2px 2px;
107
+ font-size: 17px;
108
+ text-align: center;
109
+ line-height: 24px;
110
+ color: #5a6570;
111
+ }
112
+
113
+ .tab4 ul.like_icon li a {
114
+ color: #5a6570;
115
+ text-decoration: none;
116
+ }
117
+
118
+ .tab4 ul.enough_waffling {
119
+ margin: 0;
120
+ padding: 25px 0 27px;
121
+ list-style: none;
122
+ text-align: center;
123
+ }
124
+
125
+ .tab4 ul.enough_waffling li {
126
+ margin: 0 22px;
127
+ padding: 0;
128
+ list-style: none;
129
+ display: inline-block;
130
+ }
131
+
132
+ .tab4 ul.enough_waffling li span {
133
+ float: left;
134
+ }
135
+
136
+ .tab4 ul.enough_waffling li label {
137
+ margin: 0 0 0 20px;
138
+ float: left;
139
+ font-family: helveticaregular;
140
+ font-size: 18px;
141
+ font-weight: 400;
142
+ text-align: center;
143
+ line-height: 38px;
144
+ color: #5a6570;
145
+ }
146
+
147
+ .sfsi_mainContainer .checkbox {
148
+ width: 31px;
149
+ height: 31px;
150
+ background: url(../images/check_bg.jpg) no-repeat;
151
+ display: inherit;
152
+ }
153
+
154
+ .sfsi_mainContainer .radio {
155
+ width: 40px;
156
+ height: 40px;
157
+ background: url(../images/radio_bg.png) no-repeat;
158
+ display: inherit;
159
+ }
160
+
161
+ .sfsi_mainContainer .select {
162
+ width: 127px;
163
+ height: 47px;
164
+ font-size: 17px;
165
+ background: url(../images/select_bg.jpg) no-repeat;
166
+ display: block;
167
+ padding-left: 16px;
168
+ line-height: 49px;
169
+ }
170
+
171
+ .sfsi_mainContainer .line {
172
+ background: #eaebee;
173
+ height: 1px;
174
+ font-size: 0;
175
+ margin: 15px 0 0;
176
+ clear: both;
177
+ width: 100%;
178
+ float: left;
179
+ }
180
+
181
+ .specify_counts {
182
+ display: block;
183
+ margin-top: 15px;
184
+ padding-top: 15px;
185
+ clear: both;
186
+ width: 100%;
187
+ float: left;
188
+ border-top: 1px solid #eaebee;
189
+ }
190
+
191
+ .specify_counts .radio_section {
192
+ width: 30px;
193
+ float: left;
194
+ margin: 12px 10px 0 0;
195
+ }
196
+
197
+ .specify_counts .social_icon_like {
198
+ width: 54px;
199
+ float: left;
200
+ margin: 0 15px 0 0;
201
+ }
202
+
203
+ .specify_counts .social_icon_like ul {
204
+ margin: 0;
205
+ padding: 0;
206
+ list-style: none;
207
+ text-align: center;
208
+ }
209
+
210
+ .specify_counts .social_icon_like li {
211
+ margin: 0;
212
+ padding: 0;
213
+ list-style: none;
214
+ display: inline-block;
215
+ }
216
+
217
+ .specify_counts .social_icon_like li span {
218
+ margin: 0;
219
+ width: 54px;
220
+ display: block;
221
+ background: url(../images/count_bg.jpg) no-repeat;
222
+ height: 24px;
223
+ overflow: hidden;
224
+ padding: 10px 2px 2px;
225
+ font-family: helveticaregular;
226
+ font-size: 16px;
227
+ text-align: center;
228
+ line-height: 24px;
229
+ color: #5a6570;
230
+ }
231
+
232
+ .specify_counts .social_icon_like li a {
233
+ color: #5a6570;
234
+ text-decoration: none;
235
+ }
236
+
237
+ .specify_counts .listing {
238
+ width: 88%;
239
+ margin-top: -5px;
240
+ display: inherit;
241
+ float: left;
242
+ }
243
+
244
+ .specify_counts .listing ul {
245
+ margin: 0;
246
+ padding: 0;
247
+ list-style: none;
248
+ text-align: left;
249
+ }
250
+
251
+ .specify_counts .listing li {
252
+ margin: 15px 0 0;
253
+ padding: 0;
254
+ list-style: none;
255
+ clear: both;
256
+ line-height: 39px;
257
+ font-size: 17px;
258
+ }
259
+
260
+ .specify_counts .listing li span {
261
+ float: left;
262
+ margin-right: 20px;
263
+ }
264
+
265
+ .specify_counts .listing li .input {
266
+ background: #e5e5e5;
267
+ box-shadow: 2px 2px 3px #dcdcdc inset;
268
+ border: 0;
269
+ padding: 10px;
270
+ margin-left: 25px;
271
+ }
272
+
273
+ .specify_counts .listing li .input_facebook {
274
+ width: 288px;
275
+ background: #e5e5e5;
276
+ box-shadow: 2px 2px 3px #dcdcdc inset;
277
+ border: 0;
278
+ padding: 10px;
279
+ margin-left: 16px;
280
+ }
281
+
282
+ .save_button {
283
+ width: 450px;
284
+ padding-top: 30px;
285
+ clear: both;
286
+ margin: auto;
287
+ }
288
+
289
+ .save_button a {
290
+ background: #12a252;
291
+ text-align: center;
292
+ font-size: 23px;
293
+ color: #FFF !important;
294
+ display: block;
295
+ padding: 11px 0;
296
+ text-decoration: none;
297
+ }
298
+
299
+ .save_button a:hover {
300
+ background: #079345
301
+ }
302
+
303
+ .tab5 ul.share_icon_order {
304
+ margin: 0;
305
+ padding: 0;
306
+ list-style: none;
307
+ text-align: left;
308
+ }
309
+
310
+ .tab5 ul.share_icon_order li {
311
+ margin: 22px 6px 0 0;
312
+ padding: 0;
313
+ list-style: none;
314
+ float: left;
315
+ line-height: 37px;
316
+ }
317
+
318
+ .tab5 ul.share_icon_order li:last-child {
319
+ margin: 22px 0 0 3px;
320
+ }
321
+
322
+ .tab5 .row {
323
+ border-top: 1px solid #eaebee;
324
+ margin-top: 25px;
325
+ padding-top: 15px;
326
+ clear: both;
327
+ display: block;
328
+ width: 100%;
329
+ float: left;
330
+ font-family: helveticaregular;
331
+ line-height: 42px;
332
+ }
333
+
334
+ .tab5 .icons_size {
335
+ position: relative;
336
+ }
337
+
338
+ .tab5 .icons_size span {
339
+ margin-right: 18px;
340
+ display: block;
341
+ float: left;
342
+ font-size: 18px;
343
+ font-weight: 400;
344
+ line-height: 46px;
345
+ }
346
+
347
+ .tab5 .icons_size span.last {
348
+ margin-left: 55px;
349
+ }
350
+
351
+ .tab5 .icons_size input {
352
+ width: 73px;
353
+ background: #e5e5e5;
354
+ box-shadow: 2px 2px 3px #dcdcdc inset;
355
+ border: 0;
356
+ padding: 13px 13px 12px;
357
+ margin-right: 18px;
358
+ float: left;
359
+ display: block;
360
+ }
361
+
362
+ .tab5 .icons_size select.styled {
363
+ position: absolute;
364
+ left: 0;
365
+ width: 135px;
366
+ height: 46px;
367
+ line-height: 46px;
368
+ }
369
+
370
+ .tab5 .icons_size .field {
371
+ position: relative;
372
+ float: left;
373
+ display: block;
374
+ margin-right: 20px;
375
+ }
376
+
377
+ .tab5 .icons_size ins {
378
+ margin-right: 25px;
379
+ float: left;
380
+ font-size: 17px;
381
+ font-weight: 400;
382
+ text-decoration: none;
383
+ }
384
+
385
+ .tab5 .icons_size ins.leave_empty {
386
+ line-height: 23px;
387
+ }
388
+
389
+ .tab5 .icons_size {
390
+ padding-top: 15px;
391
+ }
392
+
393
+ .tab5 ul.enough_waffling {
394
+ margin: -5px 0 0;
395
+ padding: 0;
396
+ list-style: none;
397
+ text-align: center;
398
+ }
399
+
400
+ .tab5 .new_wind .row_onl ul.enough_waffling {
401
+ /*margin: 14px 0 0 167px;*/
402
+ margin: 20px 0 0 0;
403
+ padding: 0;
404
+ list-style: none;
405
+ height: 38px;
406
+ text-align: center;
407
+ width: 61%;
408
+ }
409
+
410
+ .tab5 ul.enough_waffling li {
411
+ margin: 0 22px;
412
+ padding: 0;
413
+ list-style: none;
414
+ display: inline-block;
415
+ float: left;
416
+ }
417
+
418
+ .tab5 ul.enough_waffling li span {
419
+ float: left;
420
+ }
421
+
422
+ .tab5 ul.enough_waffling li label {
423
+ margin: 0 0 0 20px;
424
+ float: left;
425
+ font-family: helveticaregular;
426
+ font-size: 18px;
427
+ font-weight: 400;
428
+ text-align: center;
429
+ line-height: 38px;
430
+ color: #5a6570;
431
+ }
432
+
433
+ .sticking p {
434
+ float: left;
435
+ font-size: 18px !important;
436
+ }
437
+
438
+ .sticking p.list {
439
+ width: 168px;
440
+ }
441
+
442
+ .sticking p.link {
443
+ margin: 3px 0 0 12px;
444
+ padding: 0 !important;
445
+ float: left;
446
+ }
447
+
448
+ .sticking .float {
449
+ margin-left: 188px;
450
+ margin-top: 3px;
451
+ float: left;
452
+ font-size: 17px;
453
+ }
454
+
455
+ .sticking ul {
456
+ margin: 0;
457
+ padding: 30px 0 0;
458
+ list-style: none;
459
+ float: left;
460
+ }
461
+
462
+ .sticking a {
463
+ color: #a4a9ad;
464
+ }
465
+
466
+ .sticking p {
467
+ line-height: 19px !important;
468
+ }
469
+
470
+ .sticking .field {
471
+ position: relative;
472
+ float: left;
473
+ display: block;
474
+ margin-left: 20px;
475
+ }
476
+
477
+ .sticking .field .select {
478
+ width: 206px;
479
+ height: 47px;
480
+ background: url(../images/select_bg1.jpg) no-repeat;
481
+ display: block;
482
+ padding-left: 10px;
483
+ }
484
+
485
+ .sticking .field select.styled {
486
+ position: absolute;
487
+ left: 0;
488
+ top: 0;
489
+ width: 211px;
490
+ line-height: 46px;
491
+ height: 46px;
492
+ }
493
+
494
+ .mouseover_field {
495
+ width: 455px;
496
+ float: left;
497
+ font-size: 18px;
498
+ margin-top: 10px;
499
+ }
500
+
501
+ .mouseover_field label {
502
+ width: 125px;
503
+ float: left;
504
+ }
505
+
506
+ .mouseover_field input {
507
+ width: 256px;
508
+ float: left;
509
+ background: #e5e5e5;
510
+ box-shadow: 2px 2px 3px #dcdcdc inset;
511
+ border: 0;
512
+ padding: 10px;
513
+ }
514
+
515
+ .pop_up_box {
516
+ width: 474px;
517
+ background: #FFF;
518
+ box-shadow: 0 0 5px 3px #d8d8d8;
519
+ margin: 200px auto;
520
+ padding: 20px 25px 0px;
521
+ font-family: helveticaregular;
522
+ color: #5a6570;
523
+ min-height: 250px;
524
+ position: relative;
525
+ }
526
+
527
+ .pop_up_box h4,
528
+ .pop_up_box_ex h4 {
529
+ font-size: 20px;
530
+ color: #5a6570;
531
+ text-align: center;
532
+ margin: 0;
533
+ padding: 0;
534
+ line-height: 22px;
535
+ }
536
+
537
+ .pop_up_box p,
538
+ .pop_up_box_ex p {
539
+ font-size: 17px;
540
+ line-height: 28px;
541
+ color: #5a6570;
542
+ text-align: left;
543
+ margin: 0;
544
+ padding: 25px 0 0;
545
+ font-family: helveticaregular;
546
+ }
547
+
548
+ .sfsi_popupcntnr {
549
+ float: left;
550
+ width: 100%
551
+ }
552
+
553
+ .sfsi_popupcntnr>h3 {
554
+ color: #000;
555
+ float: left;
556
+ font-weight: 700;
557
+ margin-bottom: 5px;
558
+ width: 100%
559
+ }
560
+
561
+ ul.flwstep {
562
+ float: left;
563
+ width: 100%
564
+ }
565
+
566
+ ul.flwstep>li {
567
+ color: #000;
568
+ font-size: 16px;
569
+ margin: 5px;
570
+ }
571
+
572
+ .upldbtn {
573
+ float: left;
574
+ text-align: center;
575
+ width: 100%
576
+ }
577
+
578
+ .upload_butt {
579
+ background-color: #12a252;
580
+ border: none;
581
+ color: #fff;
582
+ font-weight: 700;
583
+ margin-top: 10px;
584
+ padding: 7px 22px;
585
+ width: auto;
586
+ cursor: pointer;
587
+ font-size: 19px;
588
+ }
589
+
590
+ .pop_up_box .button {
591
+ background: #12a252;
592
+ font-size: 22px;
593
+ line-height: 24px;
594
+ color: #5a6570;
595
+ text-align: center;
596
+ min-height: 80px;
597
+ margin-top: 32px;
598
+ box-shadow: none;
599
+ }
600
+
601
+ .pop_up_box .button:hover {
602
+ box-shadow: none !important;
603
+ }
604
+
605
+ .pop_up_box .button a.activate {
606
+ padding: 0px 0;
607
+ }
608
+
609
+ .pop_up_box a,
610
+ .pop_up_box_ex a {
611
+ color: #a4a9ad;
612
+ font-size: 20px;
613
+ text-decoration: none;
614
+ text-align: center;
615
+ display: inline-block;
616
+ margin-top: 18px;
617
+ width: 100%;
618
+ }
619
+
620
+ .pop_up_box .upload {
621
+ width: 100%;
622
+ float: left;
623
+ text-align: left;
624
+ margin-top: 15px;
625
+ height: 46px;
626
+ }
627
+
628
+ .pop_up_box .upload label {
629
+ width: 135px;
630
+ float: left;
631
+ line-height: 45px;
632
+ font-size: 18px;
633
+ font-family: helveticaregular;
634
+ text-align: left;
635
+ }
636
+
637
+ .pop_up_box .upload input[type=text] {
638
+ width: 248px;
639
+ float: left;
640
+ background: #e5e5e5;
641
+ box-shadow: 2px 2px 3px #dcdcdc inset;
642
+ border: 0;
643
+ padding: 0 10px;
644
+ font-size: 16px;
645
+ height: 44px;
646
+ text-align: left;
647
+ color: #5a6570;
648
+ font-family: helveticaregular;
649
+ }
650
+
651
+ .pop_up_box .upload input.upload_butt {
652
+ width: 100px;
653
+ background: #12a252;
654
+ box-shadow: 0 0 0;
655
+ border: 0;
656
+ text-align: center;
657
+ font-size: 18px;
658
+ color: #fff;
659
+ font-family: helveticaregular;
660
+ height: 45px;
661
+ right: 32px;
662
+ top: 71px;
663
+ position: absolute;
664
+ }
665
+
666
+ .pop_up_box .upload a {
667
+ color: #12a252;
668
+ font-size: 18px;
669
+ text-decoration: underline;
670
+ font-family: helveticaregular;
671
+ margin: 0 0 16px 140px;
672
+ }
673
+
674
+ .pop_up_box a:hover,
675
+ .pop_up_box_ex a:hover {
676
+ color: #a4a9ad;
677
+ }
678
+
679
+ .inr_cont .fb_url {
680
+ clear: both;
681
+ }
682
+
683
+ .inr_cont .fb_url .checkbox,
684
+ .inr_cont .fb_url input.add,
685
+ .inr_cont .fb_url label,
686
+ .inr_cont .fb_url lable {
687
+ float: left;
688
+ }
689
+
690
+ .inr_cont .fb_url input.add {
691
+ margin-left: 19px;
692
+ }
693
+
694
+ .inr_cont .fb_url .checkbox {
695
+ margin: 6px 0 0;
696
+ }
697
+
698
+ .inr_cont .fb_url label {
699
+ /*line-height: 41px; margin: 0 0 0 15px;*/
700
+ line-height: 22px;
701
+ margin: 10px 0 0 15px;
702
+ font-size: 17px;
703
+ }
704
+
705
+ .inr_cont textarea.add_txt {
706
+ resize: none;
707
+ margin: 0 0 0 19px !important;
708
+ height: 60px;
709
+ }
710
+
711
+ .tab2 .inr_cont textarea.add_txt {
712
+ width: 382px !important;
713
+ height: 90px;
714
+ overflow: hidden;
715
+ }
716
+
717
+ .tab2 .inr_cont input.add {
718
+ width: 417px;
719
+ }
720
+
721
+ .red_txt,
722
+ .tab2 .red_txt {
723
+ color: #ef4745 !important;
724
+ text-align: center !important;
725
+ padding-top: 5px !important;
726
+ }
727
+
728
+ .green_txt {
729
+ color: #12A252 !important;
730
+ text-align: center !important;
731
+ padding-top: 5px !important;
732
+ }
733
+
734
+ .red_txt {
735
+ color: #f80000 !important;
736
+ text-align: center !important;
737
+ padding-top: 5px !important;
738
+ }
739
+
740
+ .linked_tab_2 .fb_url label {
741
+ /* width: 32%;*/
742
+ /* width: 26.99%;*/
743
+ width: 22%;
744
+ }
745
+
746
+ .twt_tab_2 label {
747
+ width: 18%
748
+ }
749
+
750
+ .bdr_top {
751
+ border-top: none !important;
752
+ }
753
+
754
+ .linked_tab_2 .fb_url input.link_dbl {
755
+ margin-bottom: 6px;
756
+ }
757
+
758
+ .tab3 {
759
+ overflow: hidden;
760
+ }
761
+
762
+ .tab3 .row {
763
+ /*border-top: 1px solid #EAEBEE;*/
764
+ padding: 25px 0;
765
+ clear: both;
766
+ overflow: hidden;
767
+ }
768
+
769
+ .tab3 ul.tab_3_list {
770
+ overflow: hidden;
771
+ margin: 4px 0 11px;
772
+ }
773
+
774
+ ul.tab_3_list li {
775
+ background: url(../images/tab_3_list_bg.jpg) 13px 7px no-repeat;
776
+ padding: 0 0 0 30px;
777
+ color: #778088;
778
+ font-family: helveticaregular;
779
+ font-size: 17px;
780
+ margin-bottom: 4px;
781
+ }
782
+
783
+ .tab5 ul.tab_3_list li {
784
+ background: url(../images/tab_3_list_bg.jpg) 13px 18px no-repeat;
785
+ }
786
+
787
+ .tab3 .row h3 {
788
+ /* margin: 0 0 20px;*/
789
+ margin: 20px 0 0px;
790
+ color: #414951;
791
+ font-family: helveticabold;
792
+ font-size: 20px;
793
+ }
794
+
795
+ ul.tab_3_icns {
796
+ list-style: none;
797
+ margin: 10px 0 0;
798
+ overflow: hidden;
799
+ }
800
+
801
+ ul.tab_3_icns li {
802
+ width: 100%;
803
+ margin: 0 0 21px;
804
+ float: left;
805
+ }
806
+
807
+ ul.tab_3_icns label {
808
+ float: left;
809
+ line-height: 42px;
810
+ /*margin: 0 20px;*/
811
+ color: #69737C;
812
+ font-size: 18px;
813
+ font-family: helveticaregular;
814
+ min-width: 125px;
815
+ }
816
+
817
+ ul.tab_3_icns li .icns_tab_3,
818
+ ul.tab_3_icns li .radio {
819
+ float: left;
820
+ }
821
+
822
+ .tab3 .sub_row h4 {
823
+ color: #a4a9ad !important;
824
+ }
825
+
826
+ .tab3 .sub_row p {
827
+ padding-top: 18px !important;
828
+ clear: both;
829
+ overflow: hidden;
830
+ }
831
+
832
+ .sub_row .sub_sub_box p {
833
+ padding-top: 18px !important;
834
+ }
835
+
836
+ .tab3 .sub_row .checkbox {
837
+ float: left;
838
+ margin-top: 4px;
839
+ }
840
+
841
+ .tab3 .sub_row .sub_sub_box {
842
+ width: 80%;
843
+ margin: 7px 0 15px 10%;
844
+ float: left;
845
+ }
846
+
847
+ .tab3 .sub_row input.smal_inpt {
848
+ width: 73px;
849
+ background: #e5e5e5;
850
+ box-shadow: 2px 2px 3px #dcdcdc inset;
851
+ border: 0;
852
+ padding: 10px;
853
+ float: left;
854
+ margin-left: 10px;
855
+ }
856
+
857
+ .tab3 .sub_row .drop_lst {
858
+ border: 1px solid #d6d6d6;
859
+ font-size: 16px;
860
+ color: #5a6570;
861
+ width: 120px;
862
+ }
863
+
864
+ .tab3 .first_row,
865
+ .tab3 .first_row p,
866
+ .tab3 .first_row p .radio,
867
+ .tab3 .first_row p label {
868
+ float: left;
869
+ }
870
+
871
+ .tab3 .first_row {
872
+ width: 90%;
873
+ float: left;
874
+ }
875
+
876
+ .tab3 .first_row p {
877
+ padding: 0 !important;
878
+ }
879
+
880
+ .tab3 .first_row p label {
881
+ line-height: 44px;
882
+ margin: 0 10px;
883
+ }
884
+
885
+ .tab3 .first_row p:last-child {
886
+ margin-left: 27%
887
+ }
888
+
889
+ .tab3 .tab_1_sav {
890
+ padding-top: 20px !important;
891
+ margin: 10px auto 20px;
892
+ }
893
+
894
+ .suc_msg {
895
+ background: #12A252;
896
+ color: #FFF;
897
+ display: none;
898
+ font-size: 23px;
899
+ padding: 10px;
900
+ text-align: left;
901
+ text-decoration: none;
902
+ }
903
+
904
+ .error_msg {
905
+ background: #D22B30;
906
+ color: #FFF;
907
+ display: none;
908
+ font-size: 23px;
909
+ padding: 10px;
910
+ text-align: left;
911
+ text-decoration: none;
912
+ }
913
+
914
+ .fileUPInput {
915
+ cursor: pointer;
916
+ position: relative;
917
+ top: -43px;
918
+ right: 0;
919
+ z-index: 99;
920
+ height: 42px;
921
+ font-size: 5px;
922
+ opacity: 0;
923
+ -moz-opacity: 0;
924
+ filter: alpha(opacity=0);
925
+ width: 100%
926
+ }
927
+
928
+ .inputWrapper {
929
+ height: 20px;
930
+ width: 50px;
931
+ overflow: hidden;
932
+ position: relative;
933
+ cursor: pointer;
934
+ }
935
+
936
+ .custom-txt {
937
+ background: none !important;
938
+ padding-left: 2px !important;
939
+ }
940
+
941
+ .custom-img {
942
+ float: left;
943
+ margin-left: 20px;
944
+ }
945
+
946
+ .loader-img {
947
+ float: left;
948
+ margin-left: -70px;
949
+ display: none;
950
+ }
951
+
952
+ .pop-overlay {
953
+ position: fixed;
954
+ top: 0;
955
+ left: 0;
956
+ width: 100%;
957
+ height: 100%;
958
+ backgound-color: #d3d3d3;
959
+ z-index: 10;
960
+ padding: 20px;
961
+ display: none;
962
+ }
963
+
964
+ .fb-overlay {
965
+ position: fixed;
966
+ top: 0;
967
+ left: 0;
968
+ width: 100%;
969
+ height: 100%;
970
+ backgound-color: #d3d3d3;
971
+ z-index: -1000;
972
+ padding: 20px;
973
+ opacity: 0;
974
+ display: block;
975
+ }
976
+
977
+ .inputError {
978
+ border: 1px solid #f80000 !important;
979
+ }
980
+
981
+ .sfsicloseBtn {
982
+ position: absolute;
983
+ top: 0;
984
+ right: 0;
985
+ cursor: pointer;
986
+ }
987
+
988
+ .top_arow {
989
+ background: url(../images/top_aro.png) no-repeat;
990
+ position: absolute;
991
+ top: -29px;
992
+ left: 38%;
993
+ width: 33px;
994
+ height: 29px;
995
+ backgoround-color: #fff;
996
+ }
997
+
998
+ .sfsi_tool_tip_2 .top_arow .sfsi_inside,
999
+ .top_arow .sfsi_inside {
1000
+ float: left;
1001
+ }
1002
+
1003
+ .sfsi_tool_tip_2 .tool_tip>img,
1004
+ .tool_tip>img {
1005
+ display: inline-block;
1006
+ margin-right: 4px;
1007
+ float: left;
1008
+ }
1009
+
1010
+ .norm_row {
1011
+ float: left;
1012
+ min-width: 25px;
1013
+ }
1014
+
1015
+ .norm_row a {
1016
+ border: none;
1017
+ display: inline-block;
1018
+ position: relative;
1019
+ float: left;
1020
+ }
1021
+
1022
+ .sfsi_tool_tip_2 a {
1023
+ min-height: 0 !important;
1024
+ }
1025
+
1026
+ .sfsi_widget {
1027
+ min-height: 55px;
1028
+ }
1029
+
1030
+ .sfsi_widget a img {
1031
+ box-shadow: none !important;
1032
+ outline: 0;
1033
+ }
1034
+
1035
+ .sfsi_wicons {
1036
+ display: inline-block;
1037
+ color: #000;
1038
+ }
1039
+
1040
+ .sel-active {
1041
+ background-color: #f7941d;
1042
+ }
1043
+
1044
+ .sfsi_outr_div .close {
1045
+ position: absolute;
1046
+ right: 18px;
1047
+ top: 18px;
1048
+ }
1049
+
1050
+ .sfsi_outr_div h2 {
1051
+ color: #778088;
1052
+ font-family: helveticaregular;
1053
+ font-size: 26px;
1054
+ margin: 0 0 9px;
1055
+ padding: 0;
1056
+ text-align: center;
1057
+ font-weight: 400;
1058
+ }
1059
+
1060
+ .sfsi_outr_div ul li a {
1061
+ color: #5A6570;
1062
+ text-decoration: none;
1063
+ }
1064
+
1065
+ .sfsi_outr_div ul li {
1066
+ display: inline-block;
1067
+ list-style: none;
1068
+ margin: 0;
1069
+ padding: 0;
1070
+ float: none;
1071
+ }
1072
+
1073
+ .expanded-area {
1074
+ display: none;
1075
+ }
1076
+
1077
+ .sfsi_wicons a {
1078
+ -webkit-transition: all .2s ease-in-out;
1079
+ -moz-transition: all .2s ease-in-out;
1080
+ -o-transition: all .2s ease-in-out;
1081
+ -ms-transition: all .2s ease-in-out;
1082
+ }
1083
+
1084
+ .scale,
1085
+ .scale-div {
1086
+ -webkit-transform: scale(1.1);
1087
+ -moz-transform: scale(1.1);
1088
+ -o-transform: scale(1.1);
1089
+ transform: scale(1.1);
1090
+ }
1091
+
1092
+ .sfsi_Sicons {
1093
+ float: left;
1094
+ }
1095
+
1096
+ .sfsi_Sicons .sf_subscrbe {
1097
+ margin: 2px 3px 3px 0;
1098
+ line-height: 20px;
1099
+ }
1100
+
1101
+ .sfsi_Sicons .sf_fb {
1102
+ margin: 0 4px 0 5px;
1103
+ line-height: 20px;
1104
+ }
1105
+
1106
+ .sfsi_Sicons .sf_twiter {
1107
+ margin: 2px 7px 0 4px;
1108
+ line-height: 17px;
1109
+ }
1110
+
1111
+ .sfsi_Sicons.left .sf_subscrbe {
1112
+ margin: 2px 8px 3px 0;
1113
+ }
1114
+
1115
+ .sfsi_Sicons.left .sf_fb {
1116
+ margin: 0 8px 0 0;
1117
+ }
1118
+
1119
+ .sfsi_Sicons.left .sf_twiter {
1120
+ margin: 2px 7px 0 0;
1121
+ }
1122
+
1123
+ .sfsi_Sicons.right .sf_subscrbe {
1124
+ margin: 2px 0 3px;
1125
+ }
1126
+
1127
+ .sfsi_Sicons.right .sf_fb {
1128
+ margin: 0 0 0 7px;
1129
+ }
1130
+
1131
+ .sfsi_Sicons.right .sf_twiter {
1132
+ margin: 2px 0 0 8px;
1133
+ }
1134
+
1135
+ .sfsi_Sicons .sf_subscrbe,
1136
+ .sfsi_Sicons .sf_twiter {
1137
+ position: relative;
1138
+ width: 75px;
1139
+ }
1140
+
1141
+ .sfsi_Sicons .sf_twiter iframe {
1142
+ margin: 0px;
1143
+ height: 20px !important;
1144
+ overflow: visible !important;
1145
+ }
1146
+
1147
+ .sfsi_Sicons .sf_twiter iframe #widget {
1148
+ overflow: visible !important;
1149
+ }
1150
+
1151
+ .sfsi_Sicons .sf_subscrbe a {
1152
+ width: auto;
1153
+ float: left;
1154
+ border: medium none;
1155
+ padding-top: 0px;
1156
+ }
1157
+
1158
+ .sfsi_Sicons .sf_subscrbe a:focus {
1159
+ outline: medium none;
1160
+ }
1161
+
1162
+ .sfsi_Sicons .sf_subscrbe a img {
1163
+ width: 65px;
1164
+ float: left;
1165
+ height: 20px !important;
1166
+ }
1167
+
1168
+ .sfsi_Sicons .sf_fb {
1169
+ position: relative;
1170
+ width: 75px;
1171
+ }
1172
+
1173
+ .sfsi_Sicons .fb_iframe_widget {
1174
+ float: left;
1175
+ /*min-width: 98px;*/
1176
+ width: 73px;
1177
+ margin: 2px 0 0;
1178
+ }
1179
+
1180
+ .sfsi_pop_up .button a:hover {
1181
+ color: #fff;
1182
+ }
1183
+
1184
+ .sfsi_pop_up .button:hover {
1185
+ background: #12a252;
1186
+ color: #fff;
1187
+ border: none;
1188
+ }
1189
+
1190
+ ul.icn_listing li .right_info a {
1191
+ outline: 0;
1192
+ font-family: helveticaregular;
1193
+ }
1194
+
1195
+ .upload_pop_up .upload_butt {
1196
+ line-height: 27px;
1197
+ margin-left: 6px;
1198
+ }
1199
+
1200
+ .drop_lsts {
1201
+ left: 220px;
1202
+ position: relative;
1203
+ top: -40px;
1204
+ }
1205
+
1206
+ .drop_lsts .styled {
1207
+ top: -42px;
1208
+ width: 127px;
1209
+ height: 33px;
1210
+ }
1211
+
1212
+ .drop_lsts span {
1213
+ line-height: 50px;
1214
+ }
1215
+
1216
+ .drag_drp {
1217
+ left: 11px;
1218
+ position: relative;
1219
+ top: 38px;
1220
+ font-size: 17px;
1221
+ }
1222
+
1223
+ .listing ul li label {
1224
+ width: 224px;
1225
+ float: left;
1226
+ }
1227
+
1228
+ .row_onl {
1229
+ width: 100%;
1230
+ float: left;
1231
+ }
1232
+
1233
+ #sfsi_Show_popupOn_PageIDs option.sel-active {
1234
+ background: #f7941d;
1235
+ }
1236
+
1237
+ .sfsi_inside div iframe {
1238
+ float: left;
1239
+ margin: 0;
1240
+ }
1241
+
1242
+ .sfsi_inside div #___plus_0,
1243
+ .sfsi_inside div #___plusone_0 {
1244
+ height: 27px;
1245
+ }
1246
+
1247
+ .sfsi_outr_div li {
1248
+ float: left;
1249
+ }
1250
+
1251
+ .sfsi_tool_tip_2 .sfsi_inside div {
1252
+ min-height: 0;
1253
+ }
1254
+
1255
+ #___plus_1>iframe {
1256
+ height: 30px;
1257
+ }
1258
+
1259
+ .main_contant h1 {
1260
+ margin: 0 0 19px;
1261
+ }
1262
+
1263
+ .main_contant p {
1264
+ margin: 0 0 26px;
1265
+ }
1266
+
1267
+ .main_contant p>a {
1268
+ color: #1a1d20;
1269
+ text-decoration: underline;
1270
+ }
1271
+
1272
+ .tab1 .gary_bg {
1273
+ background: #f1f1f1;
1274
+ }
1275
+
1276
+ #accordion {
1277
+ margin-top: 25px;
1278
+ }
1279
+
1280
+ .main_contant p>a,
1281
+ .tab1 p span {
1282
+ font-family: helveticabold;
1283
+ }
1284
+
1285
+ .wapper .ui-accordion-header-active {
1286
+ margin-top: 20px !important;
1287
+ }
1288
+
1289
+ .wapper .tab2 {
1290
+ padding: 20px 33px 12px 34px !important;
1291
+ }
1292
+
1293
+ .wapper .tab2 p {
1294
+ margin-bottom: 6px;
1295
+ }
1296
+
1297
+ .tab2 .twt_tab_2 label {
1298
+ width: 175px;
1299
+ }
1300
+
1301
+ .tab2 .twt_fld {
1302
+ margin: 16px 0 23px;
1303
+ float: left;
1304
+ }
1305
+
1306
+ .tab2 .twt_fld_2 {
1307
+ margin: 0 0 12px;
1308
+ float: left;
1309
+ }
1310
+
1311
+ .tab2 .utube_inn {
1312
+ padding-bottom: 2px;
1313
+ float: left;
1314
+ }
1315
+
1316
+ .tab2 .utube_inn label {
1317
+ max-width: 90%
1318
+ }
1319
+
1320
+ .tab2 .utube_inn label span {
1321
+ font-family: helveticabold;
1322
+ }
1323
+
1324
+ .tab2 .inr_cont p>a {
1325
+ font-family: helveticaneue-light;
1326
+ color: #778088;
1327
+ text-decoration: underline;
1328
+ }
1329
+
1330
+ .pinterest_section .inr_cont .pint_url {
1331
+ float: left;
1332
+ padding-top: 6px;
1333
+ clear: both;
1334
+ }
1335
+
1336
+ .pinterest_section .inr_cont .add {
1337
+ width: 417px !important;
1338
+ }
1339
+
1340
+ .linkedin_section .link_1,
1341
+ .linkedin_section .link_2,
1342
+ .linkedin_section .link_3,
1343
+ .linkedin_section .link_4 {
1344
+ float: left;
1345
+ width: 100%
1346
+ }
1347
+
1348
+ .linkedin_section .link_1 input.add,
1349
+ .linkedin_section .link_2 input.add,
1350
+ .linkedin_section .link_3 input.add,
1351
+ .linkedin_section .link_4 input.add {
1352
+ width: 417px;
1353
+ }
1354
+
1355
+ .linkedin_section .link_1 {
1356
+ margin-bottom: 7px;
1357
+ }
1358
+
1359
+ .linkedin_section .link_2 {
1360
+ margin-bottom: 12px;
1361
+ }
1362
+
1363
+ .linkedin_section .link_3,
1364
+ .linkedin_section .link_4 {
1365
+ margin-bottom: 13px;
1366
+ }
1367
+
1368
+ .tab2 .linkedin_section .link_4 {
1369
+ margin-bottom: 0;
1370
+ }
1371
+
1372
+ ul.tab_3_list li span {
1373
+ font-family: helveticaregular;
1374
+ }
1375
+
1376
+ #accordion .tab4 h4,
1377
+ #accordion1 .tab4 h4 {
1378
+ color: #414951;
1379
+ font-size: 20px;
1380
+ }
1381
+
1382
+ .specify_counts .listing li .input {
1383
+ width: 73px;
1384
+ }
1385
+
1386
+ .sfsi_fbpgidwpr {
1387
+ width: 160px;
1388
+ float: left;
1389
+ font-weight: bold;
1390
+ font-size: 17px;
1391
+ color: #000000;
1392
+ }
1393
+
1394
+ .sfsi_fbpgiddesc {
1395
+ font-weight: normal;
1396
+ width: 42%;
1397
+ font-size: 14px;
1398
+ color: #888888;
1399
+ padding: 4px 0 0 60px;
1400
+ }
1401
+
1402
+ .specify_counts .listing li .input.mypginpt {
1403
+ width: 288px;
1404
+ }
1405
+
1406
+ .tab3 .Shuffle_auto .sub_sub_box .tab_3_option {
1407
+ padding-top: 0 !important;
1408
+ margin-bottom: 10px !important;
1409
+ }
1410
+
1411
+ .tab4 {
1412
+ padding-top: 35px !important;
1413
+ }
1414
+
1415
+ .tab4 .save_button {
1416
+ padding-top: 46px;
1417
+ }
1418
+
1419
+ .tab5 {
1420
+ padding-top: 31px !important;
1421
+ }
1422
+
1423
+ .tab7 {
1424
+ padding-top: 28px !important;
1425
+ }
1426
+
1427
+ .tab5 .row_onl {
1428
+ margin-top: 15px;
1429
+ }
1430
+
1431
+ .tab5 .sticking .link>a {
1432
+ color: #a4a9ad;
1433
+ text-decoration: underline;
1434
+ }
1435
+
1436
+ .tab5 .mouse_txt h4 {
1437
+ /*margin-bottom: 8px!important;*/
1438
+ padding-bottom: 30px !important;
1439
+ }
1440
+
1441
+ .tab5 .save_button {
1442
+ padding-top: 54px;
1443
+ }
1444
+
1445
+ .tab7 .like_pop_box h2 {
1446
+ font-family: helveticabold;
1447
+ text-align: center;
1448
+ color: #414951;
1449
+ font-size: 26px;
1450
+ }
1451
+
1452
+ .tab1 ul.icn_listing li .right_info label:hover {
1453
+ text-decoration: none !important;
1454
+ }
1455
+
1456
+ .tab1 ul.icn_listing li .right_info label.expanded-area {
1457
+ clear: both;
1458
+ float: left;
1459
+ margin-top: 14px;
1460
+ width: 100%;
1461
+ }
1462
+
1463
+ .tab7 .space {
1464
+ margin-top: 14px;
1465
+ }
1466
+
1467
+ .tab7 .pop_up_show label {
1468
+ font-family: helveticaregular !important;
1469
+ }
1470
+
1471
+ .tab7 .save_button {
1472
+ padding-top: 78px;
1473
+ }
1474
+
1475
+ .like_txt a {
1476
+ text-decoration: none;
1477
+ font-family: helveticaregular;
1478
+ }
1479
+
1480
+ .bdr_btm_non {
1481
+ border-bottom: none !important;
1482
+ }
1483
+
1484
+ .tab1 .tab_1_sav {
1485
+ padding-top: 13px;
1486
+ }
1487
+
1488
+ #accordion .tab2 .facebook_section .inr_cont p.extra_sp,
1489
+ #accordion1 .tab2 .facebook_section .inr_cont p.extra_sp {
1490
+ padding-top: 7px;
1491
+ }
1492
+
1493
+ .tab2 .custom_section {
1494
+ width: 100%
1495
+ }
1496
+
1497
+ .tab7 {
1498
+ padding-bottom: 40px !important;
1499
+ }
1500
+
1501
+ .tab9 .save_button {
1502
+ padding-top: 40px;
1503
+ }
1504
+
1505
+ .tab9 .save_button a {
1506
+ padding: 16px 0;
1507
+ }
1508
+
1509
+ .tab2 .twitter_section .twt_fld input.add,
1510
+ .tab2 .twitter_section .twt_fld_2 textarea.add_txt {
1511
+ width: 464px !important;
1512
+ }
1513
+
1514
+ .tab2 .utube_inn .fb_url label span {
1515
+ font-family: helveticaneue-light;
1516
+ }
1517
+
1518
+ .tab1 label,
1519
+ .tab2 label,
1520
+ .tab3 label,
1521
+ .tab4 label,
1522
+ .tab5 label,
1523
+ .tab6 label,
1524
+ .tab7 label,
1525
+ .tab8 label {
1526
+ cursor: default !important;
1527
+ }
1528
+
1529
+ .tab5 .new_wind h4 {
1530
+ margin-bottom: 11px !important;
1531
+ }
1532
+
1533
+ .pop_up_box .fb_2 span {
1534
+ height: 28px !important;
1535
+ }
1536
+
1537
+ .pop_up_box .sfsi_tool_tip_2 .fbb .fb_1 a {
1538
+ margin-top: 0;
1539
+ }
1540
+
1541
+ .tab6 .social_icon_like1 ul li span {
1542
+ margin-top: -1px;
1543
+ }
1544
+
1545
+ #sfpageLoad {
1546
+ background: url(../images/ajax-loader.gif) 50% 50% no-repeat #F9F9F9;
1547
+ height: 100%;
1548
+ left: 160px;
1549
+ opacity: 1;
1550
+ position: fixed;
1551
+ top: 0;
1552
+ width: 92%;
1553
+ z-index: 9999;
1554
+ }
1555
+
1556
+ .sfsi_tool_tip_2,
1557
+ .tool_tip {
1558
+ background: #FFF;
1559
+ border: 1px solid #e7e7e7;
1560
+ box-shadow: #e7e7e7 0 0 2px 1px;
1561
+ display: block;
1562
+ float: left;
1563
+ margin: 0 0 0 -52px;
1564
+ padding: 5px 14px 5px 14px;
1565
+ position: absolute;
1566
+ z-index: 10000;
1567
+ border-bottom: #e5e5e5 solid 4px;
1568
+ width: 100px;
1569
+ }
1570
+
1571
+ .sfsi_tool_tip_2 {
1572
+ display: inline-table;
1573
+ }
1574
+
1575
+ .inerCnt,
1576
+ .inerCnt:hover,
1577
+ .inerCnt>a,
1578
+ .inerCnt>a:hover,
1579
+ .widget-area .widget a {
1580
+ outline: 0;
1581
+ }
1582
+
1583
+ .sfsi_tool_tip_2_inr {
1584
+ bottom: 90%;
1585
+ left: 20%;
1586
+ opacity: 0;
1587
+ }
1588
+
1589
+ .sfsi_tool_tip_2 .bot_arow {
1590
+ background: url(../images/bot_tip_icn.png) no-repeat;
1591
+ position: absolute;
1592
+ bottom: -21px;
1593
+ left: 50%;
1594
+ width: 15px;
1595
+ height: 21px;
1596
+ margin-left: -5px;
1597
+ }
1598
+
1599
+ .sfsi_tool_tip_2 .top_big_arow {
1600
+ position: absolute;
1601
+ -webkit-transform: rotate(180deg);
1602
+ -moz-transform: rotate(180deg);
1603
+ -ms-transform: rotate(180deg);
1604
+ -o-transform: rotate(180deg);
1605
+ transform: rotate(180deg);
1606
+ top: -21px;
1607
+ left: 50%;
1608
+ width: 15px;
1609
+ height: 21px;
1610
+ margin-right: -5px;
1611
+ }
1612
+
1613
+ .sfsi_tool_tip_2_inr .gpls_visit>a,
1614
+ .sfsi_tool_tip_2_inr .prints_visit_1 a,
1615
+ .sfsi_tool_tip_2_inr .utub_visit>a {
1616
+ margin-top: 0;
1617
+ }
1618
+
1619
+ .sfsi_tool_tip_2_inr .linkin_1 a,
1620
+ .sfsi_tool_tip_2_inr .linkin_2 a,
1621
+ .sfsi_tool_tip_2_inr .linkin_3 a,
1622
+ .sfsi_tool_tip_2_inr .linkin_4 a,
1623
+ .sfsi_tool_tip_2_inr .prints_visit a {
1624
+ margin: 0;
1625
+ }
1626
+
1627
+ .sfsiTlleftBig {
1628
+ bottom: 121%;
1629
+ left: 22%;
1630
+ margin-left: -54%
1631
+ }
1632
+
1633
+ .sfsiTlleft {
1634
+ bottom: 100%;
1635
+ left: 50%;
1636
+ margin-left: -66px;
1637
+ margin-bottom: 2px;
1638
+ }
1639
+
1640
+ .sfsi_plc_btm {
1641
+ bottom: auto;
1642
+ top: 100%;
1643
+ left: 50%;
1644
+ margin-left: -63px;
1645
+ margin-top: -6px;
1646
+ margin-bottom: auto;
1647
+ }
1648
+
1649
+ .inerCnt {
1650
+ position: relative;
1651
+ z-index: inherit !important;
1652
+ float: left;
1653
+ width: 100%;
1654
+ float: left;
1655
+ }
1656
+
1657
+ .sfsi_wicons {
1658
+ margin-bottom: 30px;
1659
+ position: relative;
1660
+ padding-top: 5px;
1661
+ }
1662
+
1663
+ .norm_row .bot_no {
1664
+ position: absolute;
1665
+ padding: 1px 0;
1666
+ font-size: 12px !important;
1667
+ text-align: center;
1668
+ line-height: 12px !important;
1669
+ background: #fff;
1670
+ border-radius: 5px;
1671
+ left: 50%;
1672
+ margin-left: -20px;
1673
+ z-index: 9;
1674
+ border: 1px solid #333;
1675
+ top: 100%;
1676
+ white-space: pre;
1677
+ -webkit-box-sizing: border-box;
1678
+ -moz-box-sizing: border-box;
1679
+ box-sizing: border-box;
1680
+ margin-top: 0px;
1681
+ width: 40px;
1682
+ }
1683
+
1684
+ .norm_row .bot_no:before {
1685
+ content: url(images/count_top_arow.png);
1686
+ position: absolute;
1687
+ height: 9px;
1688
+ margin-left: -7.5px;
1689
+ top: -10px;
1690
+ left: 50%;
1691
+ width: 15px;
1692
+ }
1693
+
1694
+ .bot_no.sfsiSmBtn {
1695
+ font-size: 10px;
1696
+ margin-top: 4px;
1697
+ }
1698
+
1699
+ .bot_no.sfsiSmBtn:before {
1700
+ margin-left: -8px;
1701
+ top: -9px;
1702
+ }
1703
+
1704
+ .norm_row .cbtn_vsmall {
1705
+ font-size: 9px;
1706
+ left: -28%;
1707
+ top: 4px;
1708
+ }
1709
+
1710
+ .norm_row .cbtn_vsmall:before {
1711
+ left: 31%;
1712
+ top: -9px;
1713
+ margin-left: -31%
1714
+ }
1715
+
1716
+ h2.optional {
1717
+ font-family: helveticaregular;
1718
+ font-size: 25px;
1719
+ margin: 14px 0 19px;
1720
+ color: #5a6570;
1721
+ }
1722
+
1723
+ .utube_tool_bdr .utub_visit {
1724
+ margin: 9px 0 0;
1725
+ height: 24px;
1726
+ display: inline-block;
1727
+ float: none;
1728
+ }
1729
+
1730
+ .utube_tool_bdr .utub_2 {
1731
+ margin: 9px 0 0;
1732
+ height: 24px;
1733
+ width: 86px;
1734
+ display: inline-block;
1735
+ float: none;
1736
+ }
1737
+
1738
+ .printst_tool_bdr {
1739
+ width: 79px;
1740
+ }
1741
+
1742
+ .printst_tool_bdr .prints_visit {
1743
+ margin: 0 0 10px -22px;
1744
+ }
1745
+
1746
+ .printst_tool_bdr .prints_visit_1 {
1747
+ margin: 0 0 0 -53px;
1748
+ }
1749
+
1750
+ .fb_tool_bdr {
1751
+ width: 68px;
1752
+ height: auto;
1753
+ }
1754
+
1755
+ .fb_tool_bdr .sfsi_inside {
1756
+ text-align: center;
1757
+ width: 100%;
1758
+ float: left;
1759
+ overflow: hidden;
1760
+ }
1761
+
1762
+ .fb_tool_bdr .sfsi_inside .icon1 {
1763
+ /* margin: 0 0 -5px 0;*/
1764
+ margin: 2px 0px 4px 0;
1765
+ height: auto;
1766
+ display: inline-block;
1767
+ float: none;
1768
+ width: 62px;
1769
+ }
1770
+
1771
+ .fb_tool_bdr .sfsi_inside .icon2 {
1772
+ margin: 2px 0 3px 0 !important;
1773
+ height: auto;
1774
+ width: 53px;
1775
+ display: inline-block;
1776
+ overflow: hidden;
1777
+ }
1778
+
1779
+ .fb_tool_bdr .sfsi_inside .icon3 {
1780
+ margin: 2px 0 2px 0;
1781
+ height: auto;
1782
+ width: 62px;
1783
+ display: inline-block;
1784
+ float: none;
1785
+ }
1786
+
1787
+ .fb_tool_bdr .sfsi_inside .fb_1,
1788
+ .fb_tool_bdr .sfsi_inside .fb_2,
1789
+ .fb_tool_bdr .sfsi_inside .fb_3 {
1790
+ margin: 9px 0 0;
1791
+ height: 25px;
1792
+ }
1793
+
1794
+ .printst_tool_bdr .sfsi_inside {
1795
+ text-align: center;
1796
+ float: left;
1797
+ width: 100%
1798
+ }
1799
+
1800
+ .printst_tool_bdr .sfsi_inside .icon1 {
1801
+ /* margin: 2px 0;*/
1802
+ margin: 3px 0 3px 0;
1803
+ /* height: 24px;*/
1804
+ height: auto;
1805
+ display: inline-block;
1806
+ float: none;
1807
+ width: 73px;
1808
+ }
1809
+
1810
+ .printst_tool_bdr .sfsi_inside .icon2 {
1811
+ /* margin: 2px 0;*/
1812
+ margin: 2px 0 2px 0;
1813
+ height: auto;
1814
+ display: inline-block;
1815
+ float: none;
1816
+ max-width: 73px;
1817
+ width: auto;
1818
+ }
1819
+
1820
+ .printst_tool_bdr .sfsi_inside .prints_visit,
1821
+ .printst_tool_bdr .sfsi_inside .prints_visit_1 {
1822
+ margin: 9px 0 0;
1823
+ height: 20px;
1824
+ float: none;
1825
+ display: inline-block;
1826
+ }
1827
+
1828
+ .printst_tool_bdr {
1829
+ margin-left: -59px;
1830
+ }
1831
+
1832
+ .fb_tool_bdr .sfsi_inside .icon1>a>img,
1833
+ .gpls_tool_bdr .sfsi_inside .icon1>a>img,
1834
+ .linkedin_tool_bdr .sfsi_inside .icon1>a>img,
1835
+ .linkedin_tool_bdr .sfsi_inside .icon4>a>img,
1836
+ .printst_tool_bdr .sfsi_inside .icon1>a>img,
1837
+ .printst_tool_bdr .sfsi_inside .icon2>a>img,
1838
+ .utube_tool_bdr .sfsi_inside .icon1>a>img {
1839
+ padding-top: 0;
1840
+ }
1841
+
1842
+ .gpls_tool_bdr {
1843
+ width: 76px;
1844
+ }
1845
+
1846
+ .gpls_tool_bdr .sfsi_inside .icon1>a>img {
1847
+ padding-top: 0;
1848
+ }
1849
+
1850
+ .gpls_tool_bdr .sfsi_inside {
1851
+ text-align: center;
1852
+ width: 100%;
1853
+ float: left;
1854
+ }
1855
+
1856
+ .gpls_tool_bdr .sfsi_inside .icon1 {
1857
+ margin: 2px 0;
1858
+ display: inline-block;
1859
+ float: none;
1860
+ height: 29px;
1861
+ width: 76px;
1862
+ }
1863
+
1864
+ .gpls_tool_bdr .sfsi_inside .icon2 {
1865
+ margin: 2px 0 3px 0;
1866
+ display: inline-block;
1867
+ float: none;
1868
+ height: 24px;
1869
+ width: 38px;
1870
+ }
1871
+
1872
+ .gpls_tool_bdr .sfsi_inside .icon3 {
1873
+ margin: 3px 0 2px 0;
1874
+ display: inline-block;
1875
+ float: none;
1876
+ height: 24px;
1877
+ width: 76px;
1878
+ }
1879
+
1880
+ .gpls_tool_bdr .sfsi_inside .gpls_visit,
1881
+ .gpls_tool_bdr .sfsi_inside .gtalk_2,
1882
+ .gpls_tool_bdr .sfsi_inside .gtalk_3 {
1883
+ margin: 9px 0 0;
1884
+ height: 29px;
1885
+ }
1886
+
1887
+ .pop_up_box_ex.sfsi_pop_up .fb_tool_bdr,
1888
+ .gpls_tool_bdr,
1889
+ .linkedin_tool_bdr,
1890
+ .twt_tool_bdr {
1891
+ bottom: 100%;
1892
+ left: 50%;
1893
+ margin-bottom: -12px;
1894
+ }
1895
+
1896
+ .fb_tool_bdr,
1897
+ .gpls_tool_bdr,
1898
+ .linkedin_tool_bdr,
1899
+ .twt_tool_bdr {
1900
+ bottom: 100%;
1901
+ left: 50%;
1902
+ margin-bottom: 8px;
1903
+ }
1904
+
1905
+ .printst_tool_bdr {
1906
+ bottom: 80%;
1907
+ left: 50%;
1908
+ /* margin-bottom: 2px;*/
1909
+ margin-bottom: 0px;
1910
+ margin-bottom: 18px;
1911
+ }
1912
+
1913
+ .printst_tool_bdr {
1914
+ bottom: 80%;
1915
+ left: 50%;
1916
+ margin-bottom: 18px;
1917
+ }
1918
+
1919
+ .twt_tool_bdr .sfsi_inside {
1920
+ text-align: center;
1921
+ width: 100%;
1922
+ float: left;
1923
+ }
1924
+
1925
+ .twt_tool_bdr .sfsi_inside .cstmicon1 {
1926
+ margin: 2px 0px 2px 0 !important;
1927
+ /*margin: 2px 0!important; display: inline-block;*/
1928
+ float: none;
1929
+ width: 62px;
1930
+ /* overflow: hidden;*/
1931
+ /*height: 20px;*/
1932
+ }
1933
+
1934
+ .twt_tool_bdr .sfsi_inside .cstmicon1 a img {
1935
+ float: left;
1936
+ }
1937
+
1938
+ .twt_tool_bdr .sfsi_inside .icon1 {
1939
+ /*margin: -4px 0 -5px 0 !important;*/
1940
+ margin: 5px 0px 3px 0 !important;
1941
+ display: inline-block;
1942
+ float: none;
1943
+ width: 61px;
1944
+ /* overflow: hidden;*/
1945
+ height: auto;
1946
+ }
1947
+
1948
+ .twt_tool_bdr .sfsi_inside .icon1 iframe {
1949
+ width: 61px !important;
1950
+ }
1951
+
1952
+ .twt_tool_bdr .sfsi_inside .icon2 {
1953
+ margin: 3px 0px 2px 0px !important;
1954
+ display: inline-block;
1955
+ float: none;
1956
+ height: auto;
1957
+ width: 58px;
1958
+ }
1959
+
1960
+ .twt_tool_bdr .sfsi_inside .twt_1 {
1961
+ margin: 9px 0 0;
1962
+ display: inline-block;
1963
+ float: none;
1964
+ width: 58px;
1965
+ height: 20px;
1966
+ overflow: hidden;
1967
+ }
1968
+
1969
+ .twt_tool_bdr .sfsi_inside .twt_1 iframe {
1970
+ width: 100% !important;
1971
+ }
1972
+
1973
+ .twt_tool_bdr .sfsi_inside .twt_2 {
1974
+ margin: 9px 0 0;
1975
+ height: 20px;
1976
+ display: inline-block;
1977
+ float: none;
1978
+ width: 58px;
1979
+ }
1980
+
1981
+ .utube_tool_bdr .sfsi_inside {
1982
+ text-align: center;
1983
+ width: 100%;
1984
+ float: left;
1985
+ }
1986
+
1987
+ .utube_tool_bdr .sfsi_inside .icon1 {
1988
+ /*margin: 5px 0 0;*/
1989
+ margin: 4px 0px 3px 0;
1990
+ height: 24px;
1991
+ display: inline-block;
1992
+ float: none;
1993
+ width: 96px;
1994
+ }
1995
+
1996
+ .utube_tool_bdr .sfsi_inside .icon2 {
1997
+ /* margin: 9px 0 0;*/
1998
+ margin: 2px 0 3px 0 !important;
1999
+ height: 24px;
2000
+ display: inline-block;
2001
+ float: none;
2002
+ max-width: 96px;
2003
+ width: 82px;
2004
+ }
2005
+
2006
+ .pop-overlay.read-overlay.ytex-s2 .utube_tool_bdr {
2007
+ width: 93px;
2008
+ bottom: 100%;
2009
+ left: 50%;
2010
+ margin-bottom: -12px;
2011
+ }
2012
+
2013
+ .utube_tool_bdr {
2014
+ width: 93px;
2015
+ bottom: 100%;
2016
+ left: 50%;
2017
+ margin-bottom: 8px;
2018
+ }
2019
+
2020
+ .linkedin_tool_bdr {
2021
+ width: 66px;
2022
+ }
2023
+
2024
+ .linkedin_tool_bdr .sfsi_inside {
2025
+ text-align: center;
2026
+ float: left;
2027
+ width: 100%
2028
+ }
2029
+
2030
+ .linkedin_tool_bdr .sfsi_inside .icon1 {
2031
+ margin: 2px 0 2px 0px;
2032
+ display: inline-block;
2033
+ float: none;
2034
+ /* height: 20px;*/
2035
+ width: 100%;
2036
+ }
2037
+
2038
+ .linkedin_tool_bdr .sfsi_inside .icon2 {
2039
+ margin: 2px 0 2px 0px;
2040
+ display: inline-block;
2041
+ float: none;
2042
+ /* height: 20px;*/
2043
+ width: 100%;
2044
+ }
2045
+
2046
+ .linkedin_tool_bdr .sfsi_inside .icon3 {
2047
+ margin: 2px 0 2px 0px;
2048
+ display: inline-block;
2049
+ float: none;
2050
+ /* height: 20px;*/
2051
+ width: 100%;
2052
+ }
2053
+
2054
+ .linkedin_tool_bdr .sfsi_inside .icon4 {
2055
+ margin: 2px 0 1px 0px;
2056
+ display: inline-block;
2057
+ float: none;
2058
+ /* height: 25px !important;*/
2059
+ width: 100%;
2060
+ }
2061
+
2062
+ .sfsi_FrntInner_chg .linkedin_tool_bdr .sfsi_inside .icon1 {
2063
+ margin: 7px 0;
2064
+ }
2065
+
2066
+ .sfsi_widget .linkedin_tool_bdr .sfsi_inside .icon4,
2067
+ .sfsi_widget .gpls_tool_bdr .sfsi_inside .icon1,
2068
+ .sfsi_widget .fb_tool_bdr .sfsi_inside .icon1 {
2069
+ height: auto
2070
+ }
2071
+
2072
+ .linkedin_tool_bdr .linkin_1,
2073
+ .linkedin_tool_bdr .linkin_2,
2074
+ .linkedin_tool_bdr .linkin_3,
2075
+ .linkedin_tool_bdr .linkin_4 {
2076
+ margin: 9px 0 0 !important;
2077
+ height: 20px;
2078
+ display: inline-block;
2079
+ float: none;
2080
+ overflow: hidden;
2081
+ }
2082
+
2083
+ .twt_tool_bdr {
2084
+ width: 62px;
2085
+ height: auto;
2086
+ }
2087
+
2088
+ .twt_tool_bdr .sfsi_inside .icon1>iframe {
2089
+ margin: 0 auto !important;
2090
+ float: none !important;
2091
+ width: 100%
2092
+ }
2093
+
2094
+ .twt_tool_bdr .sfsi_inside .icon1>iframe #widget {
2095
+ text-align: center;
2096
+ }
2097
+
2098
+ .sfsi_pop_up .button {
2099
+ border: none;
2100
+ padding: 0;
2101
+ }
2102
+
2103
+ .pop_up_box .button a {
2104
+ color: #fff;
2105
+ line-height: normal;
2106
+ font-size: 22px;
2107
+ text-decoration: none;
2108
+ text-align: center;
2109
+ width: 482px;
2110
+ height: 80px;
2111
+ margin: 0;
2112
+ display: table-cell;
2113
+ vertical-align: middle;
2114
+ font-family: helveticabold;
2115
+ }
2116
+
2117
+ .tab3 ul.tab_3_icns li .radio {
2118
+ margin-top: 7px;
2119
+ }
2120
+
2121
+ .tab3 ul.tab_3_icns li label {
2122
+ line-height: 50px !important;
2123
+ margin-left: 20px;
2124
+ }
2125
+
2126
+ .sfsi_mainContainer input[type=email],
2127
+ .sfsi_mainContainer input[type=number],
2128
+ .sfsi_mainContainer input[type=password],
2129
+ .sfsi_mainContainer input[type=search],
2130
+ .sfsi_mainContainer input[type=tel],
2131
+ .sfsi_mainContainer input[type=text],
2132
+ .sfsi_mainContainer input[type=url],
2133
+ .sfsi_mainContainer select,
2134
+ .sfsi_mainContainer textarea {
2135
+ color: #5a6570 !important;
2136
+ }
2137
+
2138
+ .adminTooltip {
2139
+ left: 142px;
2140
+ position: absolute;
2141
+ }
2142
+
2143
+ .adPopWidth {
2144
+ min-height: 100px !important;
2145
+ }
2146
+
2147
+ .main_contant p>a.lit_txt,
2148
+ .tab4 p>a {
2149
+ font-family: helveticaregular;
2150
+ color: #414951;
2151
+ }
2152
+
2153
+ .tab1 ul.icn_listing li .custom-txt {
2154
+ margin-left: 5px;
2155
+ }
2156
+
2157
+ .tab1 ul.icn_listing li .custom-img {
2158
+ margin-left: 18px;
2159
+ }
2160
+
2161
+ .linkedin_section .link_4>label.anthr_labl {
2162
+ height: 94px;
2163
+ }
2164
+
2165
+ .mediam_txt {
2166
+ font-family: helveticabold;
2167
+ }
2168
+
2169
+ .sfsiCtxt {
2170
+ line-height: 51px;
2171
+ font-family: helveticaregular;
2172
+ font-size: 22px;
2173
+ float: left;
2174
+ padding-left: 19px;
2175
+ color: #5a6570;
2176
+ }
2177
+
2178
+ .customstep2-img {
2179
+ width: 51px;
2180
+ float: left;
2181
+ }
2182
+
2183
+ .tab2 .row h2.custom {
2184
+ margin: 15px 0 7px 21px;
2185
+ height: 52px;
2186
+ line-height: 51px;
2187
+ font-family: helveticaregular;
2188
+ font-size: 22px;
2189
+ }
2190
+
2191
+ .custom-links p.cus_link label {
2192
+ margin-left: 0;
2193
+ }
2194
+
2195
+ .pop_up_box .sfsi_tool_tip_2 .fbb .fb_1 a>img:hover {
2196
+ opacity: .9;
2197
+ }
2198
+
2199
+ .tab2 .rss_url_row .sfrsTxt {
2200
+ font-size: 17px;
2201
+ line-height: 47px;
2202
+ margin: 0 0 0 4px;
2203
+ font-family: helveticaregular;
2204
+ }
2205
+
2206
+ .tab2 .rss_url_row .sfrsTxt>strong {
2207
+ font-family: helveticaregular;
2208
+ }
2209
+
2210
+ .tab2 .utube_inn p.extra_pp {
2211
+ float: left;
2212
+ width: 100%;
2213
+ margin: 0 0 0 48px;
2214
+ }
2215
+
2216
+ .tab2 .utube_inn p.extra_pp label {
2217
+ float: left;
2218
+ line-height: 41px;
2219
+ margin-right: 8px;
2220
+ }
2221
+
2222
+ .sfsi_inside .icon2 .fb_iframe_widget span {
2223
+ width: 500px !important;
2224
+ }
2225
+
2226
+ @media (max-width:767px) {
2227
+ .sfsi_inside .icon2 .fb_iframe_widget span {
2228
+ width: auto;
2229
+ }
2230
+
2231
+ .sfsi_outr_div {
2232
+ top: 10%
2233
+ }
2234
+
2235
+ .sfsi_outr_div h2 {
2236
+ font-size: 22px !important;
2237
+ line-height: 28px;
2238
+ }
2239
+
2240
+ .sfsi_wicons {
2241
+ padding-top: 0;
2242
+ }
2243
+ }
2244
+
2245
+ .specify_counts .listing li .high_prb {
2246
+ height: 41px;
2247
+ }
2248
+
2249
+ .sfsi_Sicons {
2250
+ position: relative;
2251
+ }
2252
+
2253
+ .sfsi_Sicons .sf_fb {
2254
+ position: relative;
2255
+ /*z-index: 1;*/
2256
+ width: 75px;
2257
+ }
2258
+
2259
+ .sfsi_Sicons .fb_iframe_widget {
2260
+ float: left;
2261
+ width: 73px;
2262
+ margin: 2px 0 0;
2263
+ }
2264
+
2265
+ .sfsi_Sicons .sf_fb .fb_iframe_widget>span {
2266
+ position: absolute;
2267
+ /*width: 450px!important; z-index: 1;*/
2268
+ }
2269
+
2270
+ .tab2 .utube_inn label {
2271
+ font-size: 17px;
2272
+ }
2273
+
2274
+ .sfsi_plc_btm {
2275
+ padding: 5px 14px 9px;
2276
+ }
2277
+
2278
+ .tab7 .field {
2279
+ margin-top: 7px;
2280
+ }
2281
+
2282
+ .sfsi_outr_div ul li .cmcls img {
2283
+ margin-top: 0 !important;
2284
+ }
2285
+
2286
+ .sfsi_outr_div ul li .inerCnt {
2287
+ float: left;
2288
+ }
2289
+
2290
+ .sfsi_outr_div ul li .inerCnt .bot_no {
2291
+ position: absolute;
2292
+ padding: 1px 0;
2293
+ font-size: 12px !important;
2294
+ line-height: 12px !important;
2295
+ text-align: center;
2296
+ background: #fff;
2297
+ border-radius: 5px;
2298
+ display: block;
2299
+ left: 50%;
2300
+ margin-left: -20px;
2301
+ border: 1px solid #333;
2302
+ white-space: pre;
2303
+ -webkit-box-sizing: border-box;
2304
+ -moz-box-sizing: border-box;
2305
+ box-sizing: border-box;
2306
+ margin-top: 6px;
2307
+ width: 40px;
2308
+ word-break: break-all;
2309
+ word-wrap: break-word;
2310
+ }
2311
+
2312
+ .sfsi_outr_div ul li .inerCnt .bot_no:before {
2313
+ content: url(images/count_top_arow.png);
2314
+ position: absolute;
2315
+ height: 9px;
2316
+ margin-left: -7.5px;
2317
+ top: -10px;
2318
+ left: 50%;
2319
+ width: 15px;
2320
+ }
2321
+
2322
+ .sfsi_outr_div {
2323
+ position: fixed;
2324
+ width: 100%;
2325
+ float: none;
2326
+ left: 50%;
2327
+ top: 20%;
2328
+ margin-left: -50%;
2329
+ opacity: 0;
2330
+ z-index: -1;
2331
+ display: block;
2332
+ text-align: center;
2333
+ }
2334
+
2335
+ .sfsi_outr_div .sfsi_FrntInner_chg {
2336
+ display: inline-block;
2337
+ padding: 15px 17px 27px 18px;
2338
+ background: #FFF;
2339
+ border: 1px solid #EDEDED;
2340
+ box-shadow: 0 0 5px #CCC;
2341
+ margin: 20px;
2342
+ position: relative;
2343
+ }
2344
+
2345
+ .sfsi_FrntInner_chg .sfsiclpupwpr {
2346
+ position: absolute;
2347
+ right: -10px;
2348
+ top: -10px;
2349
+ width: 25px;
2350
+ cursor: pointer;
2351
+ }
2352
+
2353
+ .sfsi_FrntInner_chg .sfsiclpupwpr img {
2354
+ width: auto;
2355
+ float: left;
2356
+ border: medium none;
2357
+ }
2358
+
2359
+ .tab7 .like_pop_box {
2360
+ width: 100%;
2361
+ margin: 35px auto auto;
2362
+ position: relative;
2363
+ text-align: center;
2364
+ }
2365
+
2366
+ .tab7 .like_pop_box .sfsi_Popinner {
2367
+ display: inline-block;
2368
+ padding: 18px 20px;
2369
+ box-shadow: 0 0 5px #ccc;
2370
+ -webkit-box-shadow: 0 0 5px #ccc;
2371
+ border: 1px solid #ededed;
2372
+ background: #FFF;
2373
+ }
2374
+
2375
+ .tab7 .like_pop_box .sfsi_Popinner h2 {
2376
+ margin: 0 0 23px;
2377
+ padding: 0;
2378
+ color: #414951;
2379
+ font-family: helveticabold;
2380
+ font-size: 26px;
2381
+ text-align: center;
2382
+ }
2383
+
2384
+ .tab7 .like_pop_box .sfsi_Popinner ul {
2385
+ margin: 0;
2386
+ padding: 0;
2387
+ list-style: none;
2388
+ text-align: center;
2389
+ }
2390
+
2391
+ .tab7 .like_pop_box .sfsi_Popinner ul li {
2392
+ margin: 0;
2393
+ padding: 0;
2394
+ list-style: none;
2395
+ display: inline-block;
2396
+ }
2397
+
2398
+ .tab7 .like_pop_box .sfsi_Popinner ul li span {
2399
+ margin: 0;
2400
+ width: 54px;
2401
+ display: block;
2402
+ background: url(../images/count_bg.png) no-repeat;
2403
+ height: 24px;
2404
+ overflow: hidden;
2405
+ padding: 10px 2px 2px;
2406
+ font-family: helveticaregular;
2407
+ font-size: 16px;
2408
+ text-align: center;
2409
+ line-height: 24px;
2410
+ color: #5a6570;
2411
+ }
2412
+
2413
+ .tab7 .like_pop_box .sfsi_Popinner ul li a {
2414
+ color: #5a6570;
2415
+ text-decoration: none;
2416
+ }
2417
+
2418
+ .sfsi_outr_div .sfsi_FrntInner_chg .sfsi_wicons {
2419
+ margin-bottom: 0;
2420
+ }
2421
+
2422
+ .sfsi_outr_div ul {
2423
+ list-style: none;
2424
+ margin: 0 0 24px;
2425
+ padding: 0;
2426
+ text-align: center;
2427
+ }
2428
+
2429
+ a.sfsiColbtn {
2430
+ color: #5a6570 !important;
2431
+ float: right;
2432
+ font-size: 14px;
2433
+ margin: -35px -30px 0 0;
2434
+ position: relative;
2435
+ right: 0;
2436
+ font-family: helveticaregular;
2437
+ width: 100px;
2438
+ text-decoration: none;
2439
+ }
2440
+
2441
+ .tab3 a.sfsiColbtn {
2442
+ margin-top: -43px;
2443
+ }
2444
+
2445
+ .sfsi_FrntInner_chg ul li:first-of-type .sfsi_wicons {
2446
+ margin-left: 0 !important;
2447
+ }
2448
+
2449
+ ul.tab_3_icns li .trans_bg {
2450
+ background: #000;
2451
+ padding-left: 3px;
2452
+ }
2453
+
2454
+ .tab2 .instagram_section {
2455
+ padding-bottom: 20px;
2456
+ }
2457
+
2458
+ h1.abt_titl {
2459
+ text-align: center;
2460
+ margin: 19% 0 0;
2461
+ }
2462
+
2463
+ .sfcm.sfsi_wicon {
2464
+ padding: 0;
2465
+ width: 100%;
2466
+ border: medium none;
2467
+ }
2468
+
2469
+ .fb_iframe_widget span {
2470
+ vertical-align: top !important;
2471
+ }
2472
+
2473
+ .sfsi_outr_div .sfsi_FrntInner_chg ul {
2474
+ margin: 0 0 0 3px;
2475
+ }
2476
+
2477
+ .sfsi_outr_div .sfsi_FrntInner_chg ul li {
2478
+ margin: 0 3px 0 0;
2479
+ }
2480
+
2481
+ .sfcm.sfsi_wicon {
2482
+ margin: -1px;
2483
+ padding: 0;
2484
+ }
2485
+
2486
+ @media (min-width:320px) and (max-width:480px) {
2487
+
2488
+ .sfsi_tool_tip_2,
2489
+ .tool_tip {
2490
+ padding: 5px 14px 0;
2491
+ }
2492
+
2493
+ .sfsi_inside:last-child {
2494
+ margin-bottom: 18px;
2495
+ clear: both;
2496
+ }
2497
+
2498
+ .sfsi_outr_div {
2499
+ top: 10%;
2500
+ }
2501
+
2502
+ .sfsi_FrntInner_chg .sfsi_wicons {
2503
+ width: 31px !important;
2504
+ height: 31px !important;
2505
+ }
2506
+
2507
+ .sfsi_FrntInner_chg .sfsi_wicons img {
2508
+ width: 100%;
2509
+ }
2510
+
2511
+ .sfsi_Sicons .sf_fb {
2512
+ margin-bottom: 24px;
2513
+ }
2514
+
2515
+ .sfsi_Sicons .sf_twiter {
2516
+ margin-bottom: 4px;
2517
+ }
2518
+ }
2519
+
2520
+ @media (max-width:320px) {
2521
+
2522
+ .sfsi_tool_tip_2,
2523
+ .tool_tip {
2524
+ padding: 5px 14px 0;
2525
+ }
2526
+
2527
+ .sfsi_inside:last-child {
2528
+ margin-bottom: 18px;
2529
+ clear: both;
2530
+ }
2531
+
2532
+ .sfsi_FrntInner_chg .sfsi_wicons {
2533
+ width: 31px !important;
2534
+ height: 31px !important;
2535
+ }
2536
+
2537
+ .sfsi_FrntInner_chg .sfsi_wicons img {
2538
+ width: 100%
2539
+ }
2540
+ }
2541
+
2542
+ ul.SFSI_lsngfrm {
2543
+ float: left;
2544
+ /* width: 61%;*/
2545
+ width: 51.33%;
2546
+ padding-left: 60px !important;
2547
+ }
2548
+
2549
+ ul.SFSI_instructions {
2550
+ float: left;
2551
+ width: 35%;
2552
+ }
2553
+
2554
+ li.youtube_options {
2555
+ padding-left: 60px !important;
2556
+ }
2557
+
2558
+ input[name="sfsi_pinterest_manualCounts"] {
2559
+ margin-left: -20px !important;
2560
+ }
2561
+
2562
+ ul.SFSI_instructions li {
2563
+ font-size: 12px !important;
2564
+ line-height: 25px !important;
2565
+ margin: 0 !important;
2566
+ padding: 0 0 0 15px !important;
2567
+ width: 100%
2568
+ }
2569
+
2570
+ /*{Monad}*/
2571
+ /*Upload Skins css*/
2572
+ .cstmskin_popup {
2573
+ width: 500px;
2574
+ background: #FFF;
2575
+ box-shadow: 0 0 5px 3px #d8d8d8;
2576
+ margin: 40px 0px auto;
2577
+ padding: 20px 25px 20px;
2578
+ font-family: helveticaregular;
2579
+ color: #5a6570;
2580
+ height: auto;
2581
+ float: left;
2582
+ position: relative;
2583
+ left: 35%;
2584
+ }
2585
+
2586
+ .cstomskins_wrpr {
2587
+ float: left;
2588
+ width: 100%;
2589
+ }
2590
+
2591
+ .custskinmsg {
2592
+ float: left;
2593
+ font-size: 15px;
2594
+ margin-top: 10px;
2595
+ width: 100%;
2596
+ }
2597
+
2598
+ .custskinmsg>ul {
2599
+ color: #000;
2600
+ float: left;
2601
+ margin-top: 8px;
2602
+ width: 100%;
2603
+ }
2604
+
2605
+ ul.cstmskin_iconlist {
2606
+ float: left;
2607
+ padding: 11px 0 40px 8px;
2608
+ width: 100%;
2609
+ max-width: 1000px;
2610
+ margin: 0;
2611
+ height: 307px;
2612
+ overflow-y: scroll;
2613
+ }
2614
+
2615
+ .placethemanulywpr {
2616
+ max-width: 98% !important
2617
+ }
2618
+
2619
+ .cstmskin_iconlist>li {
2620
+ float: left;
2621
+ margin: 3px 0;
2622
+ width: 100%;
2623
+ }
2624
+
2625
+ .cstm_icnname {
2626
+ float: left;
2627
+ width: 30%;
2628
+ }
2629
+
2630
+ .cstmskins_btn>img {
2631
+ float: left;
2632
+ margin-right: 25px;
2633
+ }
2634
+
2635
+ .cstmskin_btn {
2636
+ width: auto;
2637
+ float: left;
2638
+ padding: 3px 20px;
2639
+ color: #fff;
2640
+ background-color: #12a252;
2641
+ text-decoration: none;
2642
+ margin: 0 10px;
2643
+ }
2644
+
2645
+ .cstmskins_sbmt {
2646
+ width: 100%;
2647
+ float: left;
2648
+ text-align: center;
2649
+ margin-top: 15px;
2650
+ }
2651
+
2652
+ .done_btn {
2653
+ width: auto;
2654
+ padding: 3px 80px;
2655
+ color: #fff;
2656
+ background-color: #12a252;
2657
+ text-decoration: none;
2658
+ font-size: 18px;
2659
+ }
2660
+
2661
+ .cstmskin_btn:hover,
2662
+ .done_btn:hover,
2663
+ .cstmskin_btn:focus,
2664
+ .done_btn:focus {
2665
+ color: #fff;
2666
+ }
2667
+
2668
+ .skswrpr,
2669
+ .dlt_btn {
2670
+ display: none;
2671
+ }
2672
+
2673
+ .cstmutbewpr {
2674
+ width: 100%;
2675
+ float: left;
2676
+ margin-top: 10px;
2677
+ margin-left: 40px;
2678
+ }
2679
+
2680
+ .cstmutbewpr ul.enough_waffling li {
2681
+ width: auto;
2682
+ float: left;
2683
+ margin-right: 20px;
2684
+ }
2685
+
2686
+ .cstmutbewpr ul.enough_waffling li span {
2687
+ float: left;
2688
+ }
2689
+
2690
+ .cstmutbewpr ul.enough_waffling li label {
2691
+ width: auto;
2692
+ float: left;
2693
+ margin-top: 10px;
2694
+ margin-left: 10px;
2695
+ }
2696
+
2697
+ .cstmutbewpr .cstmutbtxtwpr {
2698
+ width: 100%;
2699
+ float: left;
2700
+ padding-top: 10px;
2701
+ }
2702
+
2703
+ .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr {
2704
+ width: 100%;
2705
+ float: left;
2706
+ display: none;
2707
+ }
2708
+
2709
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p,
2710
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p {
2711
+ margin-left: 0px;
2712
+ }
2713
+
2714
+ .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr {
2715
+ width: 100%;
2716
+ float: left;
2717
+ display: none;
2718
+ }
2719
+
2720
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlnmewpr p label,
2721
+ #accordion .cstmutbewpr .cstmutbtxtwpr .cstmutbchnlidwpr p label {
2722
+ width: 120px;
2723
+ }
2724
+
2725
+ .sfsi_widget .sfsi_wDiv .sfsi_wicons .inerCnt a,
2726
+ .sfsi_widget .sfsi_wDiv .sfsi_wicons .inerCnt a.sficn {
2727
+ padding: 0px;
2728
+ margin: 0px;
2729
+ width: 100%;
2730
+ float: left;
2731
+ border: medium none;
2732
+ }
2733
+
2734
+ .sfsi_socialwpr {
2735
+ width: auto;
2736
+ display: inline-block;
2737
+ vertical-align: middle;
2738
+ }
2739
+
2740
+ .sfsi_socialwpr .sf_fb {
2741
+ float: left;
2742
+ }
2743
+
2744
+ .sfsipyplfrm {
2745
+ float: left;
2746
+ margin-top: 10px;
2747
+ width: 100%;
2748
+ }
2749
+
2750
+ .sfsipyplfrm input[type="submit"] {
2751
+ background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
2752
+ border: medium none;
2753
+ color: #0074a2;
2754
+ cursor: pointer;
2755
+ font-weight: normal;
2756
+ margin: 0;
2757
+ padding: 5px 10px;
2758
+ text-decoration: underline;
2759
+ }
2760
+
2761
+ .sfsipyplfrm input[type="submit"]:hover {
2762
+ color: #2ea2cc
2763
+ }
2764
+
2765
+ .pop_up_box_ex {
2766
+ background: none repeat scroll 0 0 #fff;
2767
+ box-shadow: 0 0 5px 3px #d8d8d8;
2768
+ color: #5a6570;
2769
+ font-family: helveticaregular;
2770
+ margin: 200px auto;
2771
+ min-height: 150px;
2772
+ padding: 20px 25px 0px;
2773
+ position: relative;
2774
+ width: 290px;
2775
+ }
2776
+
2777
+ .pop_up_box_ex {
2778
+ color: #5a6570;
2779
+ font-family: helveticaregular;
2780
+ }
2781
+
2782
+ .cstmutbchnlidwpr .utbe_instruction,
2783
+ .cstmutbchnlnmewpr .utbe_instruction,
2784
+ .lnkdin_instruction {
2785
+ float: left;
2786
+ line-height: 22px;
2787
+ margin-top: 10px;
2788
+ width: 100%;
2789
+ }
2790
+
2791
+ .fb_iframe_widget iframe {
2792
+ max-width: none;
2793
+ }
2794
+
2795
+ .sfsi_mainContainer p.bldtxtmsg {
2796
+ float: left;
2797
+ font-size: 15px;
2798
+ font-weight: bold;
2799
+ margin-top: 12px;
2800
+ width: 100%;
2801
+ text-align: center;
2802
+ }
2803
+
2804
+ .sfsinewplgndesc {
2805
+ background: none repeat scroll 0 0 #e5e5e5;
2806
+ float: left;
2807
+ padding: 5px 10px 8px;
2808
+ margin-top: 25px;
2809
+ }
2810
+
2811
+ .sfsinewplgndesc>.clear>a {
2812
+ color: #5a6570;
2813
+ font-weight: bold;
2814
+ }
2815
+
2816
+ .sfsiicnsdvwrp {
2817
+ float: left;
2818
+ width: 110px;
2819
+ }
2820
+
2821
+ .sfsi_Sicons .sf_subscrbe .bot_no {
2822
+ background: rgba(0, 0, 0, 0) url(images/count_left_arow.png) no-repeat scroll 0 0 / 27px auto;
2823
+ font-size: 12px !important;
2824
+ left: 67px;
2825
+ line-height: 18px !important;
2826
+ margin-left: 0px;
2827
+ margin-top: 8px;
2828
+ padding: 1px 0;
2829
+ position: absolute;
2830
+ text-align: center;
2831
+ top: -8px;
2832
+ white-space: pre;
2833
+ width: 33px;
2834
+ height: 24px;
2835
+ z-index: 9;
2836
+ }
2837
+
2838
+ .sfsi_wicons a.sficn,
2839
+ .sfsi_wicons .sfsi_inside a,
2840
+ .sfsi_Sicons div a {
2841
+ box-shadow: none;
2842
+ border: none;
2843
+ }
2844
+
2845
+ .sfsi_Sicons .sf_pinit>span {
2846
+ height: 20px !important;
2847
+ }
2848
+
2849
+ .sfsi_Sicons .sf_pinit>span>span {
2850
+ width: 38px !important;
2851
+ right: -45px !important;
2852
+ }
2853
+
2854
+ .sfsi_wicons a {
2855
+ box-shadow: none !important;
2856
+ }
2857
+
2858
+ a.sficn {
2859
+ cursor: pointer;
2860
+ }
2861
+
2862
+ .sfsi_Sicons .fb_iframe_widget>span {
2863
+ vertical-align: top !important;
2864
+ }
2865
+
2866
+ .sfsi_Sicons .sf_fb {
2867
+ margin: 0 0 0 5px !important;
2868
+ }
2869
+
2870
+ .disabled_checkbox .sfsi_right_info:before {
2871
+ position: absolute;
2872
+ content: "";
2873
+ width: 500px;
2874
+ height: 60px;
2875
+ display: inline-block;
2876
+ z-index: 99;
2877
+ margin-left: -66px;
2878
+ margin-top: -14px;
2879
+ background: rgba(255, 255, 255, .8);
2880
+ }
2881
+
2882
+ #sfsi_floater .fb_tool_bdr .sfsi_inside .icon2 {
2883
+ /*margin: -2px 0 -5px 0;*/
2884
+ }
2885
+
2886
+ .sfsi_wechat_follow_overlay {
2887
+ position: fixed;
2888
+ top: 0;
2889
+ width: 100%;
2890
+ z-index: 99999;
2891
+ background: rgba(0, 0, 0, 0.7);
2892
+ }
2893
+
2894
+ .sfsi_wechat_follow_overlay .close_btn {
2895
+ position: absolute;
2896
+ right: 60px;
2897
+ top: 60px;
2898
+ font-size: 40px;
2899
+ line-height: 40px;
2900
+ text-decoration: none;
2901
+ border: 1px solid #fff;
2902
+ padding: 0 10px;
2903
+ border-radius: 60px;
2904
+ color: #333;
2905
+ background-color: #ffff;
2906
+ text-decoration: none;
2907
+ }
2908
+
2909
+ @media (max-width:786px) {
2910
+ .sfsi_upload_butt_container {
2911
+ display: inline-block;
2912
+ }
2913
+
2914
+ .upload_butt {
2915
+ height: 38px;
2916
+ }
2917
+
2918
+ .sfsi_wechat_follow_overlay .sfsi_inner_display>div div.sfsi_upload_butt_container:first-child {
2919
+ margin-left: 0;
2920
+ margin-right: 20px;
2921
+ }
2922
+ }
2923
+
2924
+ /*added by Developer */
2925
+ #accordion1 p:nth-child(2) {
2926
+ padding-top: 0px !important;
2927
+ }
2928
+
2929
+ input[name="sfsi_instagram_manualCounts"] {
2930
+ margin-left: -15px !important;
2931
+ }
2932
+
2933
+ .sfsi_prem_cmn_rowlisting {
2934
+ width: 33.33%;
2935
+ }
2936
+
2937
+ .rss_url_row h4 {
2938
+ line-height: 43px !important;
2939
+ font-size: 17px !important;
2940
+ font-family: 'helveticaneue-light' !important;
2941
+ }
2942
+
2943
+ .cstmutbchnlnmewpr p.extra_pp label {
2944
+ width: auto !important;
2945
+ }
2946
+
2947
+ .cstmutbchnlidwpr p.extra_pp label {
2948
+ width: auto !important;
2949
+ }
2950
+
2951
+ .tab_3_option {
2952
+ margin: 10px 0 0;
2953
+ }
2954
+
2955
+ div.tab3 .sub_row.stand.sec_new {
2956
+ margin: 0;
2957
+ }
2958
+
2959
+ div#custom_social_data_setting h4 {
2960
+ padding-bottom: 30px;
2961
+ }
2962
+
2963
+ .like_pop_box img.sfcm {
2964
+ height: 50px;
2965
+ width: 50px;
2966
+ }
2967
+
2968
+ .linkedin_tool_bdr {
2969
+ line-height: 0 !important;
2970
+ }
2971
+
2972
+ .twt_tool_bdr {
2973
+ line-height: 0 !important;
2974
+ }
2975
+
2976
+ div#sfsiid_facebook {
2977
+ line-height: 0 !important;
2978
+ }
2979
+
2980
+ div#sfsiid_youtube {
2981
+ line-height: 0 !important;
2982
+ }
2983
+
2984
+ .printst_tool_bdr {
2985
+ line-height: 0 !important;
2986
+ }
2987
+
2988
+ /*end added by Developer */
2989
+ /*by developer - 29-5-2019 */
2990
+ ul.SFSI_instructions li,
2991
+ ul.SFSI_instructions li a {
2992
+ font-size: 17px !important;
2993
+ font-family: helveticaregular !important;
2994
+ font-weight: 400;
2995
+ color: #1a1d20 !important;
2996
+ }
2997
+
2998
+ body .specify_counts .listing .sfsi_instagramInstruction li {
2999
+ font-size: 17px !important;
3000
+ font-family: helveticaregular !important;
3001
+ font-weight: 400 !important;
3002
+ color: #1a1d20 !important;
3003
+ line-height: 26px !important;
3004
+ }
3005
+
3006
+ /*end - 29-5-2019*/
3007
+
3008
+ a.pop-up .radio{
3009
+ opacity: 0.5;
3010
+ background-position: 0px 0px !important;
3011
+ /* padding-right: 3px; */
3012
+ }
3013
+
3014
+ .sfsi_vertically_center{
3015
+ display: flex;
3016
+ justify-content: space-between;
3017
+ align-items: center;
3018
+ }
3019
+ .sfsi_center{
3020
+ display: flex;
3021
+ justify-content: center;
3022
+ }
3023
+ .sfsi_custom_icons_q4{
3024
+ display: flex;
3025
+ align-items: center;
3026
+ }
3027
+ .tab6 .sfsi_responsive_icon_option_li .options .first.first.first {
3028
+ width: 25%!important;
3029
+ }
3030
+ .sfsi_responsive_icon_gradient{
3031
+ background-image: -webkit-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3032
+ background-image: -moz-linear-gradient(bottom,rgba(0, 0, 0, 0.17) 0%,rgba(255, 255, 255, 0.17) 100%);
3033
+ background-image: linear-gradient(bottom,rgba(0,0,0,.17) 0%,rgba(255,255,255,.17) 100%);
3034
+ }
3035
+ .tab6 ul.sfsi_icn_listing8 ul.sfsi_tab_3_icns li {
3036
+ width: 50%;
3037
+ max-width: 450px;
3038
+ padding-left: 0;
3039
+ padding-bottom: 0;
3040
+ }
3041
+ .tab6 .sfsi_tab_3_icns.sfsi_shwthmbfraftr > li {
3042
+ width:100% !important;
3043
+ max-width:100% !important;
3044
+ border-left: 45px solid transparent;
3045
+ }
3046
+
3047
+ .tab6 ul.sfsi_icn_listing8 li {
3048
+ float: left;
3049
+ padding: 11px 0 40px 8px;
3050
+ width: 100%;
3051
+ max-width: 1000px;
3052
+ margin: 0;
3053
+ }
3054
+
3055
+ ul.sfsi_icn_listing8 li .sfsi_right_info a {
3056
+ outline: 0;
3057
+ font-family: helveticaregular;
3058
+ }
3059
+ #accordion .tab6 ul.sfsi_tab_3_icns {
3060
+ margin-top: 25px;
3061
+ }
3062
+ .sfsi_tab_3_icns.sfsi_shwthmbfraftr {
3063
+ overflow: visible;
3064
+ }
3065
+ ul.sfsi_tab_3_icns {
3066
+ list-style: none;
3067
+ margin: 34px 0 0;
3068
+ overflow: hidden;
3069
+ }
3070
+
3071
+ .tab6 ul.sfsi_icn_listing8 li {
3072
+ float: left;
3073
+ padding: 11px 0 40px 8px;
3074
+ width: 100%;
3075
+ max-width: 1000px;
3076
+ margin: 0;
3077
+ }
3078
+ .tab6 .sfsi_tab_3_icns.sfsi_shwthmbfraftr .social_icon_like1 li {
3079
+ width: auto;
3080
+ max-width: auto;
3081
+ min-width: auto;
3082
+ margin: 0 30px 0 0;
3083
+ }
3084
+
3085
+ ul.sfsi_tab_3_icns label {
3086
+ float: left;
3087
+ line-height: 42px;
3088
+ color: #69737C;
3089
+ font-size: 18px;
3090
+ font-family: helveticaregular;
3091
+ min-width: 120px;
3092
+ }
3093
+ .tab6 ul.sfsi_tab_3_icns li label {
3094
+ line-height: 50px !important;
3095
+ }
3096
+
3097
+ #accordion1 .tab6 ul.sfsi_shwthmbfraftr .labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .row h4.labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .labelhdng4, #accordion .tab6 ul.sfsi_shwthmbfraftr .row h4.labelhdng4 {
3098
+ color: #555;
3099
+ font-size: 20px;
3100
+ margin-left: 20px;
3101
+ font-family: 'helveticaregular';
3102
+ }
3103
+ .tab6 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns.sfsi_shwthmbfraftr>li:nth-child(1), .tab6 ul.sfsi_icn_listing8 li .sfsi_tab_3_icns.sfsi_shwthmbfraftr>li:nth-child(2){
3104
+ width: 27% !important;
3105
+ }
3106
+
3107
+ .tab6 ul.sfsi_tab_3_icns li .radio{
3108
+ margin-top: 7px;
3109
+ }
3110
+
3111
+ ul.sfsi_icn_listing8 li .tb_4_ck{
3112
+ float: left;
3113
+ }
3114
+ .sfsi_responsive_default_icon_container .radio_section.tb_4_ck, .sfsi_responsive_custom_icon_container .radio_section.tb_4_ck {
3115
+ margin: 5px 20px 0 0 !important;
3116
+ }
3117
+
3118
+ .sfsi_responsive_icon_option_li .options .field .select {
3119
+ font-family: helveticaregular;
3120
+ font-weight: 400;
3121
+ font-size: 17px;
3122
+ color: #5a6570!important;
3123
+ }
3124
+
3125
+ .tab6 ul.sfsi_icn_listing8 ul.sfsi_tab_3_icns .usually li {
3126
+ width: 100% !important;
3127
+ max-width: 1000px !important;
3128
+ padding: 3px 0 5px 5px !important;
3129
+ }
3130
+ .sfsi_responsive_icons a{
3131
+ text-decoration: none!important;
3132
+ box-shadow: none!important;
3133
+ }
3134
+ .sfsi_responsive_icons .sfsi_responsive_icon_facebook_container{ background-color:#336699;}
3135
+ .sfsi_responsive_icons .sfsi_responsive_icon_follow_container{ background-color:#00B04E;}
3136
+ .sfsi_responsive_icons .sfsi_responsive_icon_twitter_container{ background-color:#55ACEE;}
3137
+ .sfsi_small_button {
3138
+ line-height: 0px;
3139
+ height: unset;
3140
+ padding: 6px !important;
3141
+ }
3142
+ .sfsi_small_button span {
3143
+ margin-left: 10px;
3144
+ font-size: 16px;
3145
+ padding: 0px;
3146
+ line-height: 16px;
3147
+ vertical-align: -webkit-baseline-middle !important;
3148
+ margin-left: 10px;
3149
+ }
3150
+ .sfsi_small_button img {
3151
+ max-height: 16px !important;
3152
+ padding: 0px;
3153
+ line-height: 0px;
3154
+ vertical-align: -webkit-baseline-middle !important;
3155
+ }
3156
+ .sfsi_medium_button span {
3157
+ margin-left: 10px;
3158
+ font-size: 18px;
3159
+ padding: 0px;
3160
+ line-height: 16px;
3161
+ vertical-align: -webkit-baseline-middle !important;
3162
+ margin-left: 10px;
3163
+ }
3164
+ .sfsi_medium_button img {
3165
+ max-height: 16px !important;
3166
+ padding: 0px;
3167
+ line-height: 0px;
3168
+ vertical-align: -webkit-baseline-middle !important;
3169
+ }
3170
+ .sfsi_medium_button {
3171
+ line-height: 0px;
3172
+ height: unset;
3173
+ padding: 10px !important;
3174
+ }
3175
+
3176
+ .sfsi_medium_button span {
3177
+ margin-left: 10px;
3178
+ font-size: 18px;
3179
+ padding: 0px;
3180
+ line-height: 16px;
3181
+ vertical-align: -webkit-baseline-middle !important;
3182
+ margin-left: 10px;
3183
+ }
3184
+ .sfsi_medium_button img {
3185
+ max-height: 16px !important;
3186
+ padding: 0px;
3187
+ line-height: 0px;
3188
+ vertical-align: -webkit-baseline-middle !important;
3189
+ }
3190
+ .sfsi_medium_button {
3191
+ line-height: 0px;
3192
+ height: unset;
3193
+ padding: 10px !important;
3194
+ }
3195
+ .sfsi_large_button span {
3196
+ font-size: 20px;
3197
+ padding: 0px;
3198
+ line-height: 16px;
3199
+ vertical-align: -webkit-baseline-middle !important;
3200
+ display: inline;
3201
+ margin-left: 10px;
3202
+ }
3203
+ .sfsi_large_button img {
3204
+ max-height: 16px !important;
3205
+ padding: 0px;
3206
+ line-height: 0px;
3207
+ vertical-align: -webkit-baseline-middle !important;
3208
+ display: inline;
3209
+ }
3210
+ .sfsi_large_button {
3211
+ line-height: 0px;
3212
+ height: unset;
3213
+ padding: 13px !important;
3214
+ }
3215
+ .sfsi_responsive_icons .sfsi_icons_container span {
3216
+ font-family: sans-serif;
3217
+ font-size: 15px;
3218
+ }
3219
+ .sfsi_icons_container_box_fully_container {
3220
+ flex-wrap: wrap;
3221
+ }
3222
+ .sfsi_icons_container_box_fully_container a {
3223
+ flex-basis: auto !important;
3224
+ flex-grow: 1;
3225
+ flex-shrink: 1;
3226
+ margin-bottom: 5px;
3227
+ }
3228
+ .sfsi_icons_container>a {
3229
+ float: left!important;
3230
+ text-decoration: none!important;
3231
+ -webkit-box-shadow: unset!important;
3232
+ box-shadow: unset!important;
3233
+ -webkit-transition: unset!important;
3234
+ transition: unset!important;
3235
+ margin-bottom:5px!important;
3236
+ }
3237
+ .sfsi_small_button {
3238
+ line-height: 0px;
3239
+ height: unset;
3240
+ padding: 6px !important;
3241
+ }
3242
+ .sfsi_small_button span {
3243
+ margin-left: 10px;
3244
+ font-size: 16px;
3245
+ padding: 0px;
3246
+ line-height: 16px;
3247
+ vertical-align: -webkit-baseline-middle !important;
3248
+ margin-left: 10px;
3249
+ }
3250
+ .sfsi_small_button img {
3251
+ max-height: 16px !important;
3252
+ padding: 0px;
3253
+ line-height: 0px;
3254
+ vertical-align: -webkit-baseline-middle !important;
3255
+ }
3256
+ .sfsi_medium_button span {
3257
+ margin-left: 10px;
3258
+ font-size: 18px;
3259
+ padding: 0px;
3260
+ line-height: 16px;
3261
+ vertical-align: -webkit-baseline-middle !important;
3262
+ margin-left: 10px;
3263
+ }
3264
+ .sfsi_medium_button img {
3265
+ max-height: 16px !important;
3266
+ padding: 0px;
3267
+ line-height: 0px;
3268
+ vertical-align: -webkit-baseline-middle !important;
3269
+ }
3270
+ .sfsi_medium_button {
3271
+ line-height: 0px;
3272
+ height: unset;
3273
+ padding: 10px !important;
3274
+ }
3275
+
3276
+ .sfsi_medium_button span {
3277
+ margin-left: 10px;
3278
+ font-size: 18px;
3279
+ padding: 0px;
3280
+ line-height: 16px;
3281
+ vertical-align: -webkit-baseline-middle !important;
3282
+ margin-left: 10px;
3283
+ }
3284
+ .sfsi_medium_button img {
3285
+ max-height: 16px !important;
3286
+ padding: 0px;
3287
+ line-height: 0px;
3288
+ vertical-align: -webkit-baseline-middle !important;
3289
+ }
3290
+ .sfsi_medium_button {
3291
+ line-height: 0px;
3292
+ height: unset;
3293
+ padding: 10px !important;
3294
+ }
3295
+ .sfsi_large_button span {
3296
+ font-size: 20px;
3297
+ padding: 0px;
3298
+ line-height: 16px;
3299
+ vertical-align: -webkit-baseline-middle !important;
3300
+ display: inline;
3301
+ margin-left: 10px;
3302
+ }
3303
+ .sfsi_large_button img {
3304
+ max-height: 16px !important;
3305
+ padding: 0px;
3306
+ line-height: 0px;
3307
+ vertical-align: -webkit-baseline-middle !important;
3308
+ display: inline;
3309
+ }
3310
+ .sfsi_large_button {
3311
+ line-height: 0px;
3312
+ height: unset;
3313
+ padding: 13px !important;
3314
+ }
3315
+ .sfsi_responsive_icons_count{
3316
+ padding: 5px 10px;
3317
+ float: left !important;
3318
+ display: inline-block;
3319
+ margin-right: 0px;
3320
+ margin-top: 2px;
3321
+ }
3322
+
3323
+ .sfsi_responsive_icons_count h3{
3324
+ font-family: 'sans-serif' !important;
3325
+ font-weight: 900;
3326
+ font-size: 32px !important;
3327
+ line-height: 0px !important;
3328
+ padding: 0px;
3329
+ margin: 0px;
3330
+ }
3331
+
3332
+ .sfsi_responsive_icons_count h6{
3333
+ font-family: 'sans-serif' !important;
3334
+ font-weight: 900;
3335
+ padding: 0px;
3336
+ margin: 0px;
3337
+ }
3338
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3339
+ text-decoration: none!important;
3340
+ border: 0!important;
3341
+ }
3342
+ .sfsi_responsive_with_counter_icons{
3343
+ width: calc(100% - 100px)!important;
3344
+ }
3345
+ .sfsiresponsive_icon_preview {
3346
+ padding: 0px 0 20px 0;
3347
+ min-width: 100%;
3348
+ }
3349
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_large_button {
3350
+ padding: 12px 13px 9px 13px !important;
3351
+ }
3352
+ .sfsi_responsive_icons_count.sfsi_fixed_count_container.sfsi_medium_button {
3353
+ padding: 9px 10px 7px 10px !important;
3354
+ }
3355
+ .sfsi_responsive_icons_count.sfsi_small_button {
3356
+ padding: 7px 6px !important;
3357
+ }
3358
+ .sfsi_responsive_icons_count.sfsi_small_button {
3359
+ padding: 7px 6px !important;
3360
+ margin-top: 2px;
3361
+ }
3362
+ .sfsi_responsive_icons_count.sfsi_small_button h6 {
3363
+ display: inline-block;
3364
+ font-size: 12px !important;
3365
+ vertical-align: middle;
3366
+ }
3367
+ .sfsi_responsive_icons_count.sfsi_responsive_count_container.sfsi_medium_button {
3368
+ padding: 9px 10px 7px 10px !important;
3369
+ }
3370
+ .sfsi_responsive_icons_count.sfsi_medium_button h3 {
3371
+ font-size: 21px !important;
3372
+ vertical-align: top;
3373
+ line-height: 8px !important;
3374
+ margin: 0px 0px 12px 0px !important;
3375
+ font-weight: 900;
3376
+ padding: 0px;
3377
+ }
3378
+ .sfsi_esponsive_icons_count.sfsi_responsive_count_container.sfsi_large_button h3 {
3379
+ margin: 0px 0px 15px 0px !important;
3380
+ }
3381
+ .sfsi_responsive_icons_count.sfsi_large_button h3 {
3382
+ font-size: 26px !important;
3383
+ vertical-align: top;
3384
+ line-height: 6px !important;
3385
+ }
3386
+
3387
+ .sfsi_responsive_icons_count h3 {
3388
+ font-family: 'sans-serif' !important;
3389
+ font-weight: 900;
3390
+ padding: 0px;
3391
+ }
3392
+
3393
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
3394
+ font-size: 20px !important;
3395
+ display: inline-block;
3396
+ vertical-align: middle;
3397
+ }
3398
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
3399
+ margin: 0px !important;
3400
+ }
3401
+ .sfsi_responsive_icons_count h3 {
3402
+ font-family: 'sans-serif' !important;
3403
+ font-weight: 900;
3404
+ line-height: 0px !important;
3405
+ padding: 0px;
3406
+ margin: 0px;
3407
+ }
3408
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3409
+ text-decoration: none!important;
3410
+ border: 0!important;
3411
+ }
3412
+ .sfsi_responsive_icons_count.sfsi_small_button {
3413
+ padding: 7px 6px !important;
3414
+ margin-top: 2px;
3415
+ }
3416
+
3417
+ .sfsi_responsive_icons_count {
3418
+ vertical-align: top;
3419
+ }
3420
+ .sfsi_responsive_icons_count {
3421
+ float: left;
3422
+ }
3423
+ .sfsi_small_button {
3424
+ line-height: 0px;
3425
+ height: unset;
3426
+ }
3427
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3428
+ text-decoration: none!important;
3429
+ border: 0!important;
3430
+ }
3431
+ .sfsi_responsive_icons_count.sfsi_small_button h3 {
3432
+ font-size: 20px !important;
3433
+ display: inline-block;
3434
+ vertical-align: middle;
3435
+ margin: 0px !important;
3436
+ }
3437
+
3438
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6 {
3439
+ text-decoration: none!important;
3440
+ font-family: helveticaregular!important;
3441
+ border: 0!important;
3442
+ }
3443
+ .sfsi_responsive_icons_count h3 {
3444
+ line-height: 0px !important;
3445
+ padding: 0px;
3446
+ }
3447
+ .sfsi_responsive_icons_count.sfsi_small_button h6 {
3448
+ display: inline-block;
3449
+ font-size: 12px !important;
3450
+ /*vertical-align: middle;*/
3451
+ margin: 0px !important;
3452
+ line-height: initial !important;
3453
+ padding: 0;
3454
+ margin: 0;
3455
+ }
3456
+ .sfsi_responsive_icons_count h6{
3457
+ margin:0!important;
3458
+ }
3459
+ .sfsi_responsive_icons_count h6 {
3460
+ padding: 0px;
3461
+ }
3462
+ .sfsi_responsive_icons a, .sfsi_responsive_icons h3, .sfsi_responsive_icons h6{
3463
+ text-decoration: none!important;
3464
+ font-family: helveticaregular!important;
3465
+ border: 0!important;
3466
+ }
3467
+ .sfsi_responsive_icons_count.sfsi_medium_button h6{
3468
+ font-size: 11px !important;
3469
+ line-height: 0px !important;
3470
+ margin: 0px 0px 0px 0px !important;
3471
+ }
 
 
js/custom-admin.js CHANGED
@@ -1,3341 +1,3343 @@
1
- function sfsi_update_index() {
2
- var s = 1;
3
- SFSI("ul.icn_listing li.custom").each(function () {
4
- SFSI(this).children("span.custom-txt").html("Custom " + s), s++;
5
- }), cntt = 1, SFSI("div.cm_lnk").each(function () {
6
- SFSI(this).find("h2.custom").find("span.sfsiCtxt").html("Custom " + cntt + ":"),
7
- cntt++;
8
- }), cntt = 1, SFSI("div.custom_m").find("div.custom_section").each(function () {
9
- SFSI(this).find("label").html("Custom " + cntt + ":"), cntt++;
10
- });
11
- }
12
-
13
- function sfsicollapse(s) {
14
- var i = !0,
15
- e = SFSI(s).closest("div.ui-accordion-content").prev("h3.ui-accordion-header"),
16
- t = SFSI(s).closest("div.ui-accordion-content").first();
17
- e.toggleClass("ui-corner-all", i).toggleClass("accordion-header-active ui-state-active ui-corner-top", !i).attr("aria-selected", (!i).toString()),
18
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", i).toggleClass("ui-icon-triangle-1-s", !i),
19
- t.toggleClass("accordion-content-active", !i), i ? t.slideUp() : t.slideDown();
20
- }
21
-
22
- function sfsi_delete_CusIcon(s, i) {
23
- beForeLoad();
24
- var e = {
25
- action: "deleteIcons",
26
- icon_name: i.attr("name"),
27
- nonce: SFSI(i).parents('.custom').find('input[name="nonce"]').val()
28
- };
29
- SFSI.ajax({
30
- url: sfsi_icon_ajax_object.ajax_url,
31
- type: "post",
32
- data: e,
33
- dataType: "json",
34
- success: function (e) {
35
- if ("success" == e.res) {
36
- showErrorSuc("success", "Saved !", 1);
37
- var t = e.last_index + 1;
38
- SFSI("#total_cusotm_icons").val(e.total_up), SFSI(s).closest(".custom").remove(),
39
- SFSI("li.custom:last-child").addClass("bdr_btm_non"), SFSI(".custom-links").find("div." + i.attr("name")).remove(),
40
- SFSI(".custom_m").find("div." + i.attr("name")).remove(), SFSI(".share_icon_order").children("li." + i.attr("name")).remove(),
41
- SFSI("ul.sfsi_sample_icons").children("li." + i.attr("name")).remove();
42
-
43
- if (e.total_up == 0) {
44
- SFSI(".notice_custom_icons_premium").hide();
45
- }
46
- var n = e.total_up + 1;
47
- 4 == e.total_up && SFSI(".icn_listing").append('<li id="c' + t + '" class="custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style="background-position: 0px 0px;"></span><input name="sfsiICON_' + t + '_display" type="checkbox" value="yes" class="styled" style="display:none;" isNew="yes" /></div> <span class="custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="CImg_' + t + '" alt="error" /> </span> <span class="custom custom-txt">Custom' + n + ' </span> <div class="right_info"> <p><span>It depends:</span> Upload a custom icon if you have other accounts/websites you want to link to.</p><div class="inputWrapper"></div></li>');
48
- } else showErrorSuc("error", "Unkown error , please try again", 1);
49
- return sfsi_update_index(), update_Sec5Iconorder(), sfsi_update_step1(), sfsi_update_step5(),
50
- afterLoad(), "suc";
51
- }
52
- });
53
- }
54
-
55
- function update_Sec5Iconorder() {
56
- SFSI("ul.share_icon_order").children("li").each(function () {
57
- SFSI(this).attr("data-index", SFSI(this).index() + 1);
58
- });
59
- }
60
-
61
- function sfsi_section_Display(s, i) {
62
- "hide" == i ? (SFSI("." + s + " :input").prop("disabled", !0), SFSI("." + s + " :button").prop("disabled", !0),
63
- SFSI("." + s).hide()) : (SFSI("." + s + " :input").removeAttr("disabled", !0), SFSI("." + s + " :button").removeAttr("disabled", !0),
64
- SFSI("." + s).show());
65
- }
66
-
67
- function sfsi_depened_sections() {
68
- if ("sfsi" == SFSI("input[name='sfsi_rss_icons']:checked").val()) {
69
- for (i = 0; 16 > i; i++) {
70
- var s = i + 1,
71
- e = 74 * i;
72
- SFSI(".row_" + s + "_2").css("background-position", "-588px -" + e + "px");
73
- }
74
- var t = SFSI(".icon_img").attr("src");
75
- if (t) {
76
- if (t.indexOf("subscribe") != -1) {
77
- var n = t.replace("subscribe.png", "sf_arow_icn.png");
78
- } else {
79
- var n = t.replace("email.png", "sf_arow_icn.png");
80
- }
81
- SFSI(".icon_img").attr("src", n);
82
- }
83
- } else {
84
- if ("email" == SFSI("input[name='sfsi_rss_icons']:checked").val()) {
85
- for (SFSI(".row_1_2").css("background-position", "-58px 0"), i = 0; 16 > i; i++) {
86
- var s = i + 1,
87
- e = 74 * i;
88
- SFSI(".row_" + s + "_2").css("background-position", "-58px -" + e + "px");
89
- }
90
- var t = SFSI(".icon_img").attr("src");
91
- if (t) {
92
- if (t.indexOf("sf_arow_icn") != -1) {
93
- var n = t.replace("sf_arow_icn.png", "email.png");
94
- } else {
95
- var n = t.replace("subscribe.png", "email.png");
96
- }
97
- SFSI(".icon_img").attr("src", n);
98
- }
99
- } else {
100
- for (SFSI(".row_1_2").css("background-position", "-649px 0"), i = 0; 16 > i; i++) {
101
- var s = i + 1,
102
- e = 74 * i;
103
- SFSI(".row_" + s + "_2").css("background-position", "-649px -" + e + "px");
104
- }
105
- var t = SFSI(".icon_img").attr("src");
106
- if (t) {
107
- if (t.indexOf("email") != -1) {
108
- var n = t.replace("email.png", "subscribe.png");
109
- } else {
110
- var n = t.replace("sf_arow_icn.png", "subscribe.png");
111
- }
112
- SFSI(".icon_img").attr("src", n);
113
- }
114
- }
115
- }
116
- SFSI("input[name='sfsi_rss_display']").prop("checked") ? sfsi_section_Display("rss_section", "show") : sfsi_section_Display("rss_section", "hide"),
117
- SFSI("input[name='sfsi_email_display']").prop("checked") ? sfsi_section_Display("email_section", "show") : sfsi_section_Display("email_section", "hide"),
118
- SFSI("input[name='sfsi_facebook_display']").prop("checked") ? sfsi_section_Display("facebook_section", "show") : sfsi_section_Display("facebook_section", "hide"),
119
- SFSI("input[name='sfsi_twitter_display']").prop("checked") ? sfsi_section_Display("twitter_section", "show") : sfsi_section_Display("twitter_section", "hide"),
120
- SFSI("input[name='sfsi_youtube_display']").prop("checked") ? sfsi_section_Display("youtube_section", "show") : sfsi_section_Display("youtube_section", "hide"),
121
- SFSI("input[name='sfsi_pinterest_display']").prop("checked") ? sfsi_section_Display("pinterest_section", "show") : sfsi_section_Display("pinterest_section", "hide"),
122
- SFSI("input[name='sfsi_telegram_display']").prop("checked") ? sfsi_section_Display("telegram_section", "show") : sfsi_section_Display("telegram_section", "hide"),
123
- SFSI("input[name='sfsi_vk_display']").prop("checked") ? sfsi_section_Display("vk_section", "show") : sfsi_section_Display("vk_section", "hide"),
124
- SFSI("input[name='sfsi_ok_display']").prop("checked") ? sfsi_section_Display("ok_section", "show") : sfsi_section_Display("ok_section", "hide"),
125
- SFSI("input[name='sfsi_wechat_display']").prop("checked") ? sfsi_section_Display("wechat_section", "show") : sfsi_section_Display("wechat_section", "hide"),
126
- SFSI("input[name='sfsi_weibo_display']").prop("checked") ? sfsi_section_Display("weibo_section", "show") : sfsi_section_Display("weibo_section", "hide"),
127
- SFSI("input[name='sfsi_instagram_display']").prop("checked") ? sfsi_section_Display("instagram_section", "show") : sfsi_section_Display("instagram_section", "hide"),
128
- SFSI("input[name='sfsi_linkedin_display']").prop("checked") ? sfsi_section_Display("linkedin_section", "show") : sfsi_section_Display("linkedin_section", "hide"),
129
- SFSI("input[element-type='cusotm-icon']").prop("checked") ? sfsi_section_Display("custom_section", "show") : sfsi_section_Display("custom_section", "hide");
130
- }
131
-
132
- function CustomIConSectionsUpdate() {
133
- sfsi_section_Display("counter".ele, show);
134
- }
135
-
136
- // Upload Custom Skin {Monad}
137
- function sfsi_customskin_upload(s, ref, nonce) {
138
- var ttl = jQuery(ref).attr("title");
139
- var i = s,
140
- e = {
141
- action: "UploadSkins",
142
- custom_imgurl: i,
143
- nonce: nonce
144
- };
145
- SFSI.ajax({
146
- url: sfsi_icon_ajax_object.ajax_url,
147
- type: "post",
148
- data: e,
149
- success: function (msg) {
150
- if (msg.res = "success") {
151
- var arr = s.split('=');
152
- jQuery(ref).prev('.imgskin').attr('src', arr[1]);
153
- jQuery(ref).prev('.imgskin').css("display", "block");
154
- jQuery(ref).text("Update");
155
- jQuery(ref).next('.dlt_btn').css("display", "block");
156
- }
157
- }
158
- });
159
- }
160
-
161
- // Delete Custom Skin {Monad}
162
- function deleteskin_icon(s) {
163
- var iconname = jQuery(s).attr("title");
164
- var nonce = jQuery(s).attr("data-nonce");
165
- var i = iconname,
166
- e = {
167
- action: "DeleteSkin",
168
- iconname: i,
169
- nonce: nonce
170
- };
171
- console.log('delete sin icon', i, iconname, nonce);
172
- SFSI.ajax({
173
- url: sfsi_icon_ajax_object.ajax_url,
174
- type: "post",
175
- data: e,
176
- dataType: "json",
177
- success: function (msg) {
178
- console.log(s, e, msg);
179
-
180
- if (msg.res === "success") {
181
- SFSI(s).prev("a").text("Upload");
182
- SFSI(s).prev("a").prev("img").attr("src", '');
183
- SFSI(s).prev("a").prev("img").css("display", "none");
184
- SFSI(s).css("display", "none");
185
- } else {
186
- alert("Whoops! something went wrong.")
187
- }
188
- }
189
- });
190
- }
191
-
192
- // Save Custom Skin {Monad}
193
- function SFSI_done(nonce) {
194
- e = {
195
- action: "Iamdone",
196
- nonce: nonce
197
- };
198
-
199
- SFSI.ajax({
200
- url: sfsi_icon_ajax_object.ajax_url,
201
- type: "post",
202
- data: e,
203
- success: function (msg) {
204
- if (msg.res === "success") {
205
-
206
-
207
- jQuery("li.cstomskins_upload").children(".icns_tab_3").html(msg);
208
- SFSI("input[name='sfsi_rss_display']").prop("checked") ? sfsi_section_Display("rss_section", "show") : sfsi_section_Display("rss_section", "hide"), SFSI("input[name='sfsi_email_display']").prop("checked") ? sfsi_section_Display("email_section", "show") : sfsi_section_Display("email_section", "hide"), SFSI("input[name='sfsi_facebook_display']").prop("checked") ? sfsi_section_Display("facebook_section", "show") : sfsi_section_Display("facebook_section", "hide"), SFSI("input[name='sfsi_twitter_display']").prop("checked") ? sfsi_section_Display("twitter_section", "show") : sfsi_section_Display("twitter_section", "hide"), SFSI("input[name='sfsi_youtube_display']").prop("checked") ? sfsi_section_Display("youtube_section", "show") : sfsi_section_Display("youtube_section", "hide"), SFSI("input[name='sfsi_pinterest_display']").prop("checked") ? sfsi_section_Display("pinterest_section", "show") : sfsi_section_Display("pinterest_section", "hide"), SFSI("input[name='sfsi_instagram_display']").prop("checked") ? sfsi_section_Display("instagram_section", "show") : sfsi_section_Display("instagram_section", "hide"), SFSI("input[name='sfsi_linkedin_display']").prop("checked") ? sfsi_section_Display("linkedin_section", "show") : sfsi_section_Display("linkedin_section", "hide"), SFSI("input[element-type='cusotm-icon']").prop("checked") ? sfsi_section_Display("custom_section", "show") : sfsi_section_Display("custom_section", "hide");
209
- SFSI(".cstmskins-overlay").hide("slow");
210
- sfsi_update_step3() && sfsicollapse(this);
211
- }
212
- }
213
- });
214
- }
215
-
216
- // Upload Custom Icons {Monad}
217
- function sfsi_newcustomicon_upload(s, nonce, nonce2) {
218
- var i = s,
219
- e = {
220
- action: "UploadIcons",
221
- custom_imgurl: i,
222
- nonce: nonce
223
- };
224
- SFSI.ajax({
225
- url: sfsi_icon_ajax_object.ajax_url,
226
- type: "post",
227
- data: e,
228
- dataType: "json",
229
- async: !0,
230
- success: function (s) {
231
- if (s.res == 'success') {
232
- afterIconSuccess(s, nonce2);
233
- } else {
234
- SFSI(".upload-overlay").hide("slow");
235
- SFSI(".uperror").html(s.res);
236
- showErrorSuc("Error", "Some Error Occured During Upload Custom Icon", 1)
237
- }
238
- }
239
- });
240
- }
241
-
242
- function sfsi_update_step1() {
243
- var nonce = SFSI("#sfsi_save1").attr("data-nonce");
244
- global_error = 0, beForeLoad(), sfsi_depened_sections();
245
- var s = !1,
246
- i = SFSI("input[name='sfsi_rss_display']:checked").val(),
247
- e = SFSI("input[name='sfsi_email_display']:checked").val(),
248
- t = SFSI("input[name='sfsi_facebook_display']:checked").val(),
249
- n = SFSI("input[name='sfsi_twitter_display']:checked").val(),
250
- r = SFSI("input[name='sfsi_youtube_display']:checked").val(),
251
- c = SFSI("input[name='sfsi_pinterest_display']:checked").val(),
252
- p = SFSI("input[name='sfsi_linkedin_display']:checked").val(),
253
- tg = SFSI("input[name='sfsi_telegram_display']:checked").val(),
254
- vk = SFSI("input[name='sfsi_vk_display']:checked").val(),
255
- ok = SFSI("input[name='sfsi_ok_display']:checked").val(),
256
- wc = SFSI("input[name='sfsi_wechat_display']:checked").val(),
257
- wb = SFSI("input[name='sfsi_weibo_display']:checked").val(),
258
- _ = SFSI("input[name='sfsi_instagram_display']:checked").val(),
259
- l = SFSI("input[name='sfsi_custom1_display']:checked").val(),
260
- S = SFSI("input[name='sfsi_custom2_display']:checked").val(),
261
- u = SFSI("input[name='sfsi_custom3_display']:checked").val(),
262
- f = SFSI("input[name='sfsi_custom4_display']:checked").val(),
263
- d = SFSI("input[name='sfsi_custom5_display']:checked").val(),
264
- I = {
265
- action: "updateSrcn1",
266
- sfsi_rss_display: i,
267
- sfsi_email_display: e,
268
- sfsi_facebook_display: t,
269
- sfsi_twitter_display: n,
270
- sfsi_youtube_display: r,
271
- sfsi_pinterest_display: c,
272
- sfsi_linkedin_display: p,
273
- sfsi_telegram_display: tg,
274
- sfsi_vk_display: vk,
275
- sfsi_ok_display: ok,
276
- sfsi_wechat_display: wc,
277
- sfsi_weibo_display: wb,
278
- sfsi_instagram_display: _,
279
- sfsi_custom1_display: l,
280
- sfsi_custom2_display: S,
281
- sfsi_custom3_display: u,
282
- sfsi_custom4_display: f,
283
- sfsi_custom5_display: d,
284
- nonce: nonce
285
- };
286
- SFSI.ajax({
287
- url: sfsi_icon_ajax_object.ajax_url,
288
- type: "post",
289
- data: I,
290
- async: !0,
291
- dataType: "json",
292
- success: function (i) {
293
- if (i == "wrong_nonce") {
294
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 1);
295
- s = !1;
296
- afterLoad();
297
- } else {
298
- "success" == i ? (showErrorSuc("success", "Saved !", 1), sfsicollapse("#sfsi_save1"),
299
- sfsi_make_popBox()) : (global_error = 1, showErrorSuc("error", "Unkown error , please try again", 1),
300
- s = !1), afterLoad();
301
- }
302
- }
303
- });
304
- }
305
-
306
- function sfsi_update_step2() {
307
-
308
- var nonce = SFSI("#sfsi_save2").attr("data-nonce");
309
- var s = sfsi_validationStep2();
310
- if (!s) return global_error = 1, !1;
311
- beForeLoad();
312
- var i = 1 == SFSI("input[name='sfsi_rss_url']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_url']").val(),
313
- e = 1 == SFSI("input[name='sfsi_rss_icons']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_icons']:checked").val(),
314
-
315
- t = 1 == SFSI("input[name='sfsi_facebookPage_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookPage_option']:checked").val(),
316
- n = 1 == SFSI("input[name='sfsi_facebookLike_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookLike_option']:checked").val(),
317
- o = 1 == SFSI("input[name='sfsi_facebookShare_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookShare_option']:checked").val(),
318
- a = SFSI("input[name='sfsi_facebookPage_url']").val(),
319
- r = 1 == SFSI("input[name='sfsi_twitter_followme']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_followme']:checked").val(),
320
- c = 1 == SFSI("input[name='sfsi_twitter_followUserName']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_followUserName']").val(),
321
- p = 1 == SFSI("input[name='sfsi_twitter_aboutPage']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_aboutPage']:checked").val(),
322
- _ = 1 == SFSI("input[name='sfsi_twitter_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_page']:checked").val(),
323
- l = SFSI("input[name='sfsi_twitter_pageURL']").val(),
324
- S = SFSI("textarea[name='sfsi_twitter_aboutPageText']").val(),
325
- m = 1 == SFSI("input[name='sfsi_youtube_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_page']:checked").val(),
326
- F = 1 == SFSI("input[name='sfsi_youtube_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_pageUrl']").val(),
327
- h = 1 == SFSI("input[name='sfsi_youtube_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_follow']:checked").val(),
328
- cls = SFSI("input[name='sfsi_youtubeusernameorid']:checked").val(),
329
- v = SFSI("input[name='sfsi_ytube_user']").val(),
330
- vchid = SFSI("input[name='sfsi_ytube_chnlid']").val(),
331
- g = 1 == SFSI("input[name='sfsi_pinterest_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_page']:checked").val(),
332
- k = 1 == SFSI("input[name='sfsi_pinterest_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_pageUrl']").val(),
333
- y = 1 == SFSI("input[name='sfsi_pinterest_pingBlog']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_pingBlog']:checked").val(),
334
- b = 1 == SFSI("input[name='sfsi_instagram_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_pageUrl']").val(),
335
- w = 1 == SFSI("input[name='sfsi_linkedin_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_page']:checked").val(),
336
- x = 1 == SFSI("input[name='sfsi_linkedin_pageURL']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_pageURL']").val(),
337
- C = 1 == SFSI("input[name='sfsi_linkedin_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_follow']:checked").val(),
338
- D = SFSI("input[name='sfsi_linkedin_followCompany']").val(),
339
- U = 1 == SFSI("input[name='sfsi_linkedin_SharePage']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_SharePage']:checked").val(),
340
- O = SFSI("input[name='sfsi_linkedin_recommendBusines']:checked").val(),
341
- T = SFSI("input[name='sfsi_linkedin_recommendProductId']").val(),
342
- j = SFSI("input[name='sfsi_linkedin_recommendCompany']").val(),
343
- tp = 1 == SFSI("input[name='sfsi_telegram_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_page']:checked").val(),
344
- tpu = SFSI("input[name='sfsi_telegram_pageURL']").val(),
345
- tm = SFSI("input[name='sfsi_telegram_message']").val(),
346
- tmn = SFSI("input[name='sfsi_telegram_username']").val(),
347
- wp = 1 == SFSI("input[name='sfsi_weibo_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_page']:checked").val(),
348
- wpu = SFSI("input[name='sfsi_weibo_pageURL']").val(),
349
- vp = 1 == SFSI("input[name='sfsi_vk_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_page']:checked").val(),
350
- vpu = SFSI("input[name='sfsi_vk_pageURL']").val(),
351
- op = 1 == SFSI("input[name='sfsi_ok_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_page']:checked").val(),
352
- opu = SFSI("input[name='sfsi_ok_pageURL']").val(),
353
- P = {};
354
- SFSI("input[name='sfsi_CustomIcon_links[]']").each(function () {
355
- P[SFSI(this).attr("file-id")] = this.value;
356
- });
357
- var M = {
358
- action: "updateSrcn2",
359
- sfsi_rss_url: i,
360
- sfsi_rss_icons: e,
361
- sfsi_facebookPage_option: t,
362
- sfsi_facebookLike_option: n,
363
- sfsi_facebookShare_option: o,
364
- sfsi_facebookPage_url: a,
365
- sfsi_twitter_followme: r,
366
- sfsi_twitter_followUserName: c,
367
- sfsi_twitter_aboutPage: p,
368
- sfsi_twitter_page: _,
369
- sfsi_twitter_pageURL: l,
370
- sfsi_twitter_aboutPageText: S,
371
- sfsi_youtube_page: m,
372
- sfsi_youtube_pageUrl: F,
373
- sfsi_youtube_follow: h,
374
- sfsi_youtubeusernameorid: cls,
375
- sfsi_ytube_user: v,
376
- sfsi_ytube_chnlid: vchid,
377
- sfsi_pinterest_page: g,
378
- sfsi_pinterest_pageUrl: k,
379
- sfsi_instagram_pageUrl: b,
380
- sfsi_pinterest_pingBlog: y,
381
- sfsi_linkedin_page: w,
382
- sfsi_linkedin_pageURL: x,
383
- sfsi_linkedin_follow: C,
384
- sfsi_linkedin_followCompany: D,
385
- sfsi_linkedin_SharePage: U,
386
- sfsi_linkedin_recommendBusines: O,
387
- sfsi_linkedin_recommendCompany: j,
388
- sfsi_linkedin_recommendProductId: T,
389
- sfsi_custom_links: P,
390
- sfsi_telegram_page: tp,
391
- sfsi_telegram_pageURL: tpu,
392
- sfsi_telegram_message: tm,
393
- sfsi_telegram_username: tmn,
394
- sfsi_weibo_page: wp,
395
- sfsi_weibo_pageURL: wpu,
396
- sfsi_vk_page: vp,
397
- sfsi_vk_pageURL: vpu,
398
- sfsi_ok_page: op,
399
- sfsi_ok_pageURL: opu,
400
- nonce: nonce
401
- };
402
- SFSI.ajax({
403
- url: sfsi_icon_ajax_object.ajax_url,
404
- type: "post",
405
- data: M,
406
- async: !0,
407
- dataType: "json",
408
- success: function (s) {
409
- if (s == "wrong_nonce") {
410
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 2);
411
- return_value = !1;
412
- afterLoad();
413
- } else {
414
- "success" == s ? (showErrorSuc("success", "Saved !", 2), sfsicollapse("#sfsi_save2"),
415
- sfsi_depened_sections()) : (global_error = 1, showErrorSuc("error", "Unkown error , please try again", 2),
416
- return_value = !1), afterLoad();
417
- }
418
- }
419
- });
420
- }
421
-
422
- function sfsi_update_step3() {
423
- var nonce = SFSI("#sfsi_save3").attr("data-nonce");
424
- var s = sfsi_validationStep3();
425
- if (!s) return global_error = 1, !1;
426
- beForeLoad();
427
- var i = SFSI("input[name='sfsi_actvite_theme']:checked").val(),
428
- e = SFSI("input[name='sfsi_mouseOver']:checked").val(),
429
- t = SFSI("input[name='sfsi_shuffle_icons']:checked").val(),
430
- n = SFSI("input[name='sfsi_shuffle_Firstload']:checked").val(),
431
- o = SFSI("input[name='sfsi_same_icons_mouseOver_effect']:checked").val(),
432
- a = SFSI("input[name='sfsi_shuffle_interval']:checked").val(),
433
- r = SFSI("input[name='sfsi_shuffle_intervalTime']").val(),
434
- c = SFSI("input[name='sfsi_specialIcon_animation']:checked").val(),
435
- p = SFSI("input[name='sfsi_specialIcon_MouseOver']:checked").val(),
436
- _ = SFSI("input[name='sfsi_specialIcon_Firstload']:checked").val(),
437
- l = SFSI("#sfsi_specialIcon_Firstload_Icons option:selected").val(),
438
- S = SFSI("input[name='sfsi_specialIcon_interval']:checked").val(),
439
- u = SFSI("input[name='sfsi_specialIcon_intervalTime']").val(),
440
- f = SFSI("#sfsi_specialIcon_intervalIcons option:selected").val();
441
-
442
- var mouseover_effect_type = 'same_icons'; //SFSI("input[name='sfsi_mouseOver_effect_type']:checked").val();
443
-
444
- d = {
445
- action: "updateSrcn3",
446
- sfsi_actvite_theme: i,
447
- sfsi_mouseOver: e,
448
- sfsi_shuffle_icons: t,
449
- sfsi_shuffle_Firstload: n,
450
- sfsi_mouseOver_effect: o,
451
- sfsi_mouseover_effect_type: mouseover_effect_type,
452
- sfsi_shuffle_interval: a,
453
- sfsi_shuffle_intervalTime: r,
454
- sfsi_specialIcon_animation: c,
455
- sfsi_specialIcon_MouseOver: p,
456
- sfsi_specialIcon_Firstload: _,
457
- sfsi_specialIcon_Firstload_Icons: l,
458
- sfsi_specialIcon_interval: S,
459
- sfsi_specialIcon_intervalTime: u,
460
- sfsi_specialIcon_intervalIcons: f,
461
- nonce: nonce
462
- };
463
- SFSI.ajax({
464
- url: sfsi_icon_ajax_object.ajax_url,
465
- type: "post",
466
- data: d,
467
- async: !0,
468
- dataType: "json",
469
- success: function (s) {
470
- if (s == "wrong_nonce") {
471
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 3);
472
- return_value = !1;
473
- afterLoad();
474
- } else {
475
- "success" == s ? (showErrorSuc("success", "Saved !", 3), sfsicollapse("#sfsi_save3")) : (showErrorSuc("error", "Unkown error , please try again", 3),
476
- return_value = !1), afterLoad();
477
- }
478
- }
479
- });
480
- }
481
-
482
- function sfsi_show_counts() {
483
- "yes" == SFSI("input[name='sfsi_display_counts']:checked").val() ? (SFSI(".count_sections").slideDown(),
484
- sfsi_showPreviewCounts()) : (SFSI(".count_sections").slideUp(), sfsi_showPreviewCounts());
485
- }
486
-
487
- function sfsi_showPreviewCounts() {
488
- var s = 0;
489
- 1 == SFSI("input[name='sfsi_rss_countsDisplay']").prop("checked") ? (SFSI("#sfsi_rss_countsDisplay").css("opacity", 1), s = 1) : SFSI("#sfsi_rss_countsDisplay").css("opacity", 0),
490
- 1 == SFSI("input[name='sfsi_email_countsDisplay']").prop("checked") ? (SFSI("#sfsi_email_countsDisplay").css("opacity", 1),
491
- s = 1) : SFSI("#sfsi_email_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_facebook_countsDisplay']").prop("checked") ? (SFSI("#sfsi_facebook_countsDisplay").css("opacity", 1),
492
- s = 1) : SFSI("#sfsi_facebook_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_twitter_countsDisplay']").prop("checked") ? (SFSI("#sfsi_twitter_countsDisplay").css("opacity", 1),
493
- s = 1) : SFSI("#sfsi_twitter_countsDisplay").css("opacity", 0),
494
- 1 == SFSI("input[name='sfsi_linkedIn_countsDisplay']").prop("checked") ? (SFSI("#sfsi_linkedIn_countsDisplay").css("opacity", 1), s = 1) : SFSI("#sfsi_linkedIn_countsDisplay").css("opacity", 0),
495
- 1 == SFSI("input[name='sfsi_youtube_countsDisplay']").prop("checked") ? (SFSI("#sfsi_youtube_countsDisplay").css("opacity", 1),
496
- s = 1) : SFSI("#sfsi_youtube_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_pinterest_countsDisplay']").prop("checked") ? (SFSI("#sfsi_pinterest_countsDisplay").css("opacity", 1),
497
- s = 1) : SFSI("#sfsi_pinterest_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_instagram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_instagram_countsDisplay").css("opacity", 1),
498
- s = 1) : SFSI("#sfsi_instagram_countsDisplay").css("opacity", 0),
499
- 1 == SFSI("input[name='sfsi_telegram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_telegram_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_telegram_countsDisplay").css("opacity", 0),
500
- 1 == SFSI("input[name='sfsi_vk_countsDisplay']").prop("checked") ? (SFSI("#sfsi_vk_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_vk_countsDisplay").css("opacity", 0),
501
- 1 == SFSI("input[name='sfsi_ok_countsDisplay']").prop("checked") ? (SFSI("#sfsi_ok_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_ok_countsDisplay").css("opacity", 0),
502
- 1 == SFSI("input[name='sfsi_weibo_countsDisplay']").prop("checked") ? (SFSI("#sfsi_weibo_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_weibo_countsDisplay").css("opacity", 0),
503
- 1 == SFSI("input[name='sfsi_wechat_countsDisplay']").prop("checked") ? (SFSI("#sfsi_wechat_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_wechat_countsDisplay").css("opacity", 0),
504
-
505
- 0 == s || "no" == SFSI("input[name='sfsi_display_counts']:checked").val() ? SFSI(".sfsi_Cdisplay").hide() : SFSI(".sfsi_Cdisplay").show();
506
- }
507
-
508
- function sfsi_show_OnpostsDisplay() {
509
- //"yes" == SFSI("input[name='sfsi_show_Onposts']:checked").val() ? SFSI(".PostsSettings_section").slideDown() :SFSI(".PostsSettings_section").slideUp();
510
- }
511
-
512
- function sfsi_update_step4() {
513
- var nonce = SFSI("#sfsi_save4").attr("data-nonce");
514
- var s = !1,
515
- i = sfsi_validationStep4();
516
- if (!i) return global_error = 1, !1;
517
- beForeLoad();
518
- var e = SFSI("input[name='sfsi_display_counts']:checked").val(),
519
- t = 1 == SFSI("input[name='sfsi_email_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_countsDisplay']:checked").val(),
520
- n = 1 == SFSI("input[name='sfsi_email_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_countsFrom']:checked").val(),
521
- o = SFSI("input[name='sfsi_email_manualCounts']").val(),
522
- r = 1 == SFSI("input[name='sfsi_rss_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_countsDisplay']:checked").val(),
523
- c = SFSI("input[name='sfsi_rss_manualCounts']").val(),
524
- p = 1 == SFSI("input[name='sfsi_facebook_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_countsDisplay']:checked").val(),
525
- _ = 1 == SFSI("input[name='sfsi_facebook_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_countsFrom']:checked").val(),
526
- mp = SFSI("input[name='sfsi_facebook_mypageCounts']").val(),
527
- l = SFSI("input[name='sfsi_facebook_manualCounts']").val(),
528
- S = 1 == SFSI("input[name='sfsi_twitter_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_countsDisplay']:checked").val(),
529
- u = 1 == SFSI("input[name='sfsi_twitter_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_countsFrom']:checked").val(),
530
- f = SFSI("input[name='sfsi_twitter_manualCounts']").val(),
531
- d = SFSI("input[name='tw_consumer_key']").val(),
532
- I = SFSI("input[name='tw_consumer_secret']").val(),
533
- m = SFSI("input[name='tw_oauth_access_token']").val(),
534
- F = SFSI("input[name='tw_oauth_access_token_secret']").val(),
535
- k = 1 == SFSI("input[name='sfsi_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val(),
536
- y = SFSI("input[name='sfsi_linkedIn_manualCounts']").val(),
537
- b = SFSI("input[name='ln_company']").val(),
538
- w = SFSI("input[name='ln_api_key']").val(),
539
- x = SFSI("input[name='ln_secret_key']").val(),
540
- C = SFSI("input[name='ln_oAuth_user_token']").val(),
541
- D = 1 == SFSI("input[name='sfsi_linkedIn_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsDisplay']:checked").val(),
542
- k = 1 == SFSI("input[name='sfsi_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val(),
543
- y = SFSI("input[name='sfsi_linkedIn_manualCounts']").val(),
544
- U = 1 == SFSI("input[name='sfsi_youtube_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_countsDisplay']:checked").val(),
545
- O = 1 == SFSI("input[name='sfsi_youtube_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_countsFrom']:checked").val(),
546
- T = SFSI("input[name='sfsi_youtube_manualCounts']").val(),
547
- j = SFSI("input[name='sfsi_youtube_user']").val(),
548
- P = 1 == SFSI("input[name='sfsi_pinterest_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_countsDisplay']:checked").val(),
549
- M = 1 == SFSI("input[name='sfsi_pinterest_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_countsFrom']:checked").val(),
550
- L = SFSI("input[name='sfsi_pinterest_manualCounts']").val(),
551
- B = SFSI("input[name='sfsi_pinterest_user']").val(),
552
- E = SFSI("input[name='sfsi_pinterest_board']").val(),
553
- z = 1 == SFSI("input[name='sfsi_instagram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_countsDisplay']:checked").val(),
554
- A = 1 == SFSI("input[name='sfsi_instagram_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_countsFrom']:checked").val(),
555
- N = SFSI("input[name='sfsi_instagram_manualCounts']").val(),
556
- H = SFSI("input[name='sfsi_instagram_User']").val(),
557
- ha = SFSI("input[name='sfsi_instagram_clientid']").val(),
558
- ia = SFSI("input[name='sfsi_instagram_appurl']").val(),
559
- ja = SFSI("input[name='sfsi_instagram_token']").val(),
560
-
561
- tc = 1 == SFSI("input[name='sfsi_telegram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_countsDisplay']:checked").val(),
562
- tm = SFSI("input[name='sfsi_telegram_manualCounts']").val(),
563
-
564
- vc = 1 == SFSI("input[name='sfsi_vk_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_countsDisplay']:checked").val(),
565
- vm = SFSI("input[name='sfsi_vk_manualCounts']").val(),
566
-
567
-
568
- oc = 1 == SFSI("input[name='sfsi_ok_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_countsDisplay']:checked").val(),
569
- om = SFSI("input[name='sfsi_ok_manualCounts']").val(),
570
-
571
-
572
- wc = 1 == SFSI("input[name='sfsi_weibo_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_countsDisplay']:checked").val(),
573
- wm = SFSI("input[name='sfsi_weibo_manualCounts']").val(),
574
-
575
- wcc = 1 == SFSI("input[name='sfsi_wechat_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_wechat_countsDisplay']:checked").val(),
576
- wcm = SFSI("input[name='sfsi_wechat_manualCounts']").val(),
577
- $ = {
578
- action: "updateSrcn4",
579
- sfsi_display_counts: e,
580
- sfsi_email_countsDisplay: t,
581
- sfsi_email_countsFrom: n,
582
- sfsi_email_manualCounts: o,
583
- sfsi_rss_countsDisplay: r,
584
- sfsi_rss_manualCounts: c,
585
- sfsi_facebook_countsDisplay: p,
586
- sfsi_facebook_countsFrom: _,
587
- sfsi_facebook_mypageCounts: mp,
588
- sfsi_facebook_manualCounts: l,
589
- sfsi_twitter_countsDisplay: S,
590
- sfsi_twitter_countsFrom: u,
591
- sfsi_twitter_manualCounts: f,
592
- tw_consumer_key: d,
593
- tw_consumer_secret: I,
594
- tw_oauth_access_token: m,
595
- tw_oauth_access_token_secret: F,
596
- sfsi_linkedIn_countsDisplay: D,
597
- sfsi_linkedIn_countsFrom: k,
598
- sfsi_linkedIn_manualCounts: y,
599
- ln_company: b,
600
- ln_api_key: w,
601
- ln_secret_key: x,
602
- ln_oAuth_user_token: C,
603
- sfsi_youtube_countsDisplay: U,
604
- sfsi_youtube_countsFrom: O,
605
- sfsi_youtube_manualCounts: T,
606
- sfsi_youtube_user: j,
607
- sfsi_youtube_channelId: SFSI("input[name='sfsi_youtube_channelId']").val(),
608
- sfsi_pinterest_countsDisplay: P,
609
- sfsi_pinterest_countsFrom: M,
610
- sfsi_pinterest_manualCounts: L,
611
- sfsi_pinterest_user: B,
612
- sfsi_pinterest_board: E,
613
- sfsi_instagram_countsDisplay: z,
614
- sfsi_instagram_countsFrom: A,
615
- sfsi_instagram_manualCounts: N,
616
- sfsi_instagram_User: H,
617
- sfsi_instagram_clientid: ha,
618
- sfsi_instagram_appurl: ia,
619
- sfsi_instagram_token: ja,
620
- sfsi_telegram_countsDisplay: tc,
621
- sfsi_telegram_manualCounts: tm,
622
- sfsi_vk_countsDisplay: vc,
623
- sfsi_vk_manualCounts: vm,
624
- sfsi_ok_countsDisplay: oc,
625
- sfsi_ok_manualCounts: om,
626
- sfsi_weibo_countsDisplay: wc,
627
- sfsi_weibo_manualCounts: wm,
628
- sfsi_wechat_countsDisplay: wcc,
629
- sfsi_wechat_manualCounts: wcm,
630
- nonce: nonce
631
- };
632
- console.log($);
633
- return SFSI.ajax({
634
- url: sfsi_icon_ajax_object.ajax_url,
635
- type: "post",
636
- data: $,
637
- dataType: "json",
638
- async: !0,
639
- success: function (s) {
640
- if (s == "wrong_nonce") {
641
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 4);
642
- global_error = 1;
643
- afterLoad();
644
- } else {
645
- "success" == s.res ? (showErrorSuc("success", "Saved !", 4), sfsicollapse("#sfsi_save4"),
646
- sfsi_showPreviewCounts()) : (showErrorSuc("error", "Unkown error , please try again", 4),
647
- global_error = 1), afterLoad();
648
- }
649
- }
650
- }), s;
651
- }
652
-
653
- function sfsi_update_step5() {
654
- var nonce = SFSI("#sfsi_save5").attr("data-nonce");
655
- sfsi_update_step3();
656
-
657
- var s = sfsi_validationStep5();
658
-
659
- if (!s) return global_error = 1, !1;
660
-
661
- beForeLoad();
662
-
663
- var i = SFSI("input[name='sfsi_icons_size']").val(),
664
- e = SFSI("input[name='sfsi_icons_perRow']").val(),
665
- t = SFSI("input[name='sfsi_icons_spacing']").val(),
666
- n = SFSI("#sfsi_icons_Alignment").val(),
667
- o = SFSI("input[name='sfsi_icons_ClickPageOpen']:checked").val(),
668
-
669
- se = SFSI("input[name='sfsi_icons_suppress_errors']:checked").val(),
670
- c = SFSI("input[name='sfsi_icons_stick']:checked").val(),
671
- p = SFSI("#sfsi_rssIcon_order").attr("data-index"),
672
- _ = SFSI("#sfsi_emailIcon_order").attr("data-index"),
673
- S = SFSI("#sfsi_facebookIcon_order").attr("data-index"),
674
- u = SFSI("#sfsi_twitterIcon_order").attr("data-index"),
675
- f = SFSI("#sfsi_youtubeIcon_order").attr("data-index"),
676
- d = SFSI("#sfsi_pinterestIcon_order").attr("data-index"),
677
- I = SFSI("#sfsi_instagramIcon_order").attr("data-index"),
678
- F = SFSI("#sfsi_linkedinIcon_order").attr("data-index"),
679
- tgi = SFSI("#sfsi_telegramIcon_order").attr("data-index"),
680
- vki = SFSI("#sfsi_vkIcon_order").attr("data-index"),
681
- oki = SFSI("#sfsi_okIcon_order").attr("data-index"),
682
- wbi = SFSI("#sfsi_weiboIcon_order").attr("data-index"),
683
- wci = SFSI("#sfsi_wechatIcon_order").attr("data-index"),
684
-
685
- h = new Array();
686
-
687
- SFSI(".custom_iconOrder").each(function () {
688
- h.push({
689
- order: SFSI(this).attr("data-index"),
690
- ele: SFSI(this).attr("element-id")
691
- });
692
- });
693
-
694
- var v = 1 == SFSI("input[name='sfsi_rss_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_MouseOverText']").val(),
695
- g = 1 == SFSI("input[name='sfsi_email_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_MouseOverText']").val(),
696
- k = 1 == SFSI("input[name='sfsi_twitter_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_MouseOverText']").val(),
697
- y = 1 == SFSI("input[name='sfsi_facebook_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_MouseOverText']").val(),
698
- w = 1 == SFSI("input[name='sfsi_linkedIn_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_MouseOverText']").val(),
699
- x = 1 == SFSI("input[name='sfsi_youtube_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_MouseOverText']").val(),
700
- C = 1 == SFSI("input[name='sfsi_pinterest_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_MouseOverText']").val(),
701
- D = 1 == SFSI("input[name='sfsi_instagram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_MouseOverText']").val(),
702
- tg = 1 == SFSI("input[name='sfsi_telegram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_MouseOverText']").val(),
703
- vk = 1 == SFSI("input[name='sfsi_vk_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_MouseOverText']").val(),
704
- ok = 1 == SFSI("input[name='sfsi_ok_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_MouseOverText']").val(),
705
- wb = 1 == SFSI("input[name='sfsi_weibo_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_MouseOverText']").val(),
706
- wc = 1 == SFSI("input[name='sfsi_wechat_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_wechat_MouseOverText']").val(),
707
-
708
- O = {};
709
- SFSI("input[name='sfsi_custom_MouseOverTexts[]']").each(function () {
710
- O[SFSI(this).attr("file-id")] = this.value;
711
- });
712
-
713
- var sfsi_custom_social_hide = SFSI("input[name='sfsi_custom_social_hide']").val();
714
-
715
- var T = {
716
- action: "updateSrcn5",
717
- sfsi_icons_size: i,
718
- sfsi_icons_Alignment: n,
719
- sfsi_icons_perRow: e,
720
- sfsi_icons_spacing: t,
721
- sfsi_icons_ClickPageOpen: o,
722
- sfsi_icons_suppress_errors: se,
723
- sfsi_icons_stick: c,
724
- sfsi_rss_MouseOverText: v,
725
- sfsi_email_MouseOverText: g,
726
- sfsi_twitter_MouseOverText: k,
727
- sfsi_facebook_MouseOverText: y,
728
- sfsi_youtube_MouseOverText: x,
729
- sfsi_linkedIn_MouseOverText: w,
730
- sfsi_pinterest_MouseOverText: C,
731
- sfsi_instagram_MouseOverText: D,
732
- sfsi_telegram_MouseOverText: tg,
733
- sfsi_vk_MouseOverText: vk,
734
- sfsi_ok_MouseOverText: ok,
735
- sfsi_weibo_MouseOverText: wb,
736
- sfsi_wechat_MouseOverText: wc,
737
- sfsi_custom_MouseOverTexts: O,
738
- sfsi_rssIcon_order: p,
739
- sfsi_emailIcon_order: _,
740
- sfsi_facebookIcon_order: S,
741
- sfsi_twitterIcon_order: u,
742
- sfsi_youtubeIcon_order: f,
743
- sfsi_pinterestIcon_order: d,
744
- sfsi_instagramIcon_order: I,
745
- sfsi_linkedinIcon_order: F,
746
- sfsi_telegramIcon_order: tgi,
747
- sfsi_vkIcon_order: vki,
748
- sfsi_okIcon_order: oki,
749
- sfsi_weiboIcon_order: wbi,
750
- sfsi_wechatIcon_order: wci,
751
-
752
- sfsi_custom_orders: h,
753
- sfsi_custom_social_hide: sfsi_custom_social_hide,
754
- nonce: nonce
755
- };
756
- console.log(T);
757
- SFSI.ajax({
758
- url: sfsi_icon_ajax_object.ajax_url,
759
- type: "post",
760
- data: T,
761
- dataType: "json",
762
- async: !0,
763
- success: function (s) {
764
- if (s == "wrong_nonce") {
765
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 5);
766
- global_error = 1;
767
- afterLoad();
768
- } else {
769
- "success" == s ? (showErrorSuc("success", "Saved !", 5), sfsicollapse("#sfsi_save5")) : (global_error = 1,
770
- showErrorSuc("error", "Unkown error , please try again", 5)), afterLoad();
771
- }
772
- }
773
- });
774
- }
775
-
776
- function sfsi_update_step6() {
777
- var nonce = SFSI("#sfsi_save6").attr("data-nonce");
778
- beForeLoad();
779
- var s = SFSI("input[name='sfsi_show_Onposts']:checked").val(),
780
- i = SFSI("input[name='sfsi_textBefor_icons']").val(),
781
- e = SFSI("#sfsi_icons_alignment").val(),
782
- t = SFSI("#sfsi_icons_DisplayCounts").val(),
783
- rsub = SFSI("input[name='sfsi_rectsub']:checked").val(),
784
- rfb = SFSI("input[name='sfsi_rectfb']:checked").val(),
785
- rpin = SFSI("input[name='sfsi_rectpinit']:checked").val(),
786
- rshr = SFSI("input[name='sfsi_rectshr']:checked").val(),
787
- rtwr = SFSI("input[name='sfsi_recttwtr']:checked").val(),
788
- rfbshare = SFSI("input[name='sfsi_rectfbshare']:checked").val(),
789
- a = SFSI("input[name='sfsi_display_button_type']:checked").val();
790
- countshare = SFSI("input[name='sfsi_share_count']:checked").val();
791
- endpost = SFSI("input[name='sfsi_responsive_icons_end_post']:checked").val();
792
-
793
- var responsive_icons = {
794
- "default_icons": {},
795
- "settings": {}
796
- };
797
- SFSI('.sfsi_responsive_default_icon_container input[type="checkbox"]').each(function (index, obj) {
798
- var data_obj = {};
799
- data_obj.active = ('checked' == SFSI(obj).attr('checked')) ? 'yes' : 'no';
800
- var iconname = SFSI(obj).attr('data-icon');
801
- var next_section = SFSI(obj).parent().parent();
802
- data_obj.text = next_section.find('input[name="sfsi_responsive_' + iconname + '_input"]').val();
803
- data_obj.url = next_section.find('input[name="sfsi_responsive_' + iconname + '_url_input"]').val();
804
- responsive_icons.default_icons[iconname] = data_obj;
805
- });
806
- SFSI('.sfsi_responsive_custom_icon_container input[type="checkbox"]').each(function (index, obj) {
807
- if (SFSI(obj).attr('id') != "sfsi_responsive_custom_new_display") {
808
- var data_obj = {};
809
- data_obj.active = 'checked' == SFSI(obj).attr('checked') ? 'yes' : 'no';
810
- var icon_index = SFSI(obj).attr('data-custom-index');
811
- var next_section = SFSI(obj).parent().parent();
812
- data_obj['added'] = SFSI('input[name="sfsi_responsive_custom_' + index + '_added"]').val();
813
- data_obj.icon = next_section.find('img').attr('src');
814
- data_obj["bg-color"] = next_section.find('.sfsi_bg-color-picker').val();
815
-
816
- data_obj.text = next_section.find('input[name="sfsi_responsive_custom_' + icon_index + '_input"]').val();
817
- data_obj.url = next_section.find('input[name="sfsi_responsive_custom_' + icon_index + '_url_input"]').val();
818
- responsive_icons.custom_icons[index] = data_obj;
819
- }
820
- });
821
- responsive_icons.settings.icon_size = SFSI('select[name="sfsi_responsive_icons_settings_icon_size"]').val();
822
- responsive_icons.settings.icon_width_type = SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val();
823
- responsive_icons.settings.icon_width_size = SFSI('input[name="sfsi_responsive_icons_sttings_icon_width_size"]').val();
824
- responsive_icons.settings.edge_type = SFSI('select[name="sfsi_responsive_icons_settings_edge_type"]').val();
825
- responsive_icons.settings.edge_radius = SFSI('select[name="sfsi_responsive_icons_settings_edge_radius"]').val();
826
- responsive_icons.settings.style = SFSI('select[name="sfsi_responsive_icons_settings_style"]').val();
827
- responsive_icons.settings.margin = SFSI('input[name="sfsi_responsive_icons_settings_margin"]').val();
828
- responsive_icons.settings.text_align = SFSI('select[name="sfsi_responsive_icons_settings_text_align"]').val();
829
- responsive_icons.settings.show_count = SFSI('input[name="sfsi_responsive_icon_show_count"]:checked').val();
830
- responsive_icons.settings.counter_color = SFSI('input[name="sfsi_responsive_counter_color"]').val();
831
- responsive_icons.settings.counter_bg_color = SFSI('input[name="sfsi_responsive_counter_bg_color"]').val();
832
- responsive_icons.settings.share_count_text = SFSI('input[name="sfsi_responsive_counter_share_count_text"]').val();
833
- responsive_icons.settings.show_count = countshare;
834
- n = {
835
- action: "updateSrcn6",
836
- sfsi_show_Onposts: s,
837
- sfsi_icons_DisplayCounts: t,
838
- sfsi_icons_alignment: e,
839
- sfsi_textBefor_icons: i,
840
- sfsi_rectsub: rsub,
841
- sfsi_rectfb: rfb,
842
- sfsi_rectpinit: rpin,
843
- sfsi_rectshr: rshr,
844
- sfsi_recttwtr: rtwr,
845
- sfsi_rectfbshare: rfbshare,
846
- sfsi_responsive_icons: responsive_icons,
847
- sfsi_display_button_type: a,
848
- sfsi_responsive_icons_end_post:endpost,
849
- sfsi_share_count: countshare,
850
- nonce: nonce
851
- };
852
- SFSI.ajax({
853
- url: sfsi_icon_ajax_object.ajax_url,
854
- type: "post",
855
- data: n,
856
- dataType: "json",
857
- async: !0,
858
- success: function (s) {
859
- if (s == "wrong_nonce") {
860
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
861
- global_error = 1;
862
- afterLoad();
863
- } else {
864
- "success" == s ? (showErrorSuc("success", "Saved !", 6), sfsicollapse("#sfsi_save6")) : (global_error = 1,
865
- showErrorSuc("error", "Unkown error , please try again", 6)), afterLoad();
866
- }
867
- }
868
- });
869
- }
870
-
871
- function sfsi_update_step7() {
872
- var nonce = SFSI("#sfsi_save7").attr("data-nonce");
873
- var s = sfsi_validationStep7();
874
- if (!s) return global_error = 1, !1;
875
- beForeLoad();
876
- var i = SFSI("input[name='sfsi_popup_text']").val(),
877
- e = SFSI("#sfsi_popup_font option:selected").val(),
878
- t = SFSI("#sfsi_popup_fontStyle option:selected").val(),
879
- color = SFSI("input[name='sfsi_popup_fontColor']").val(),
880
- n = SFSI("input[name='sfsi_popup_fontSize']").val(),
881
- o = SFSI("input[name='sfsi_popup_background_color']").val(),
882
- a = SFSI("input[name='sfsi_popup_border_color']").val(),
883
- r = SFSI("input[name='sfsi_popup_border_thickness']").val(),
884
- c = SFSI("input[name='sfsi_popup_border_shadow']:checked").val(),
885
- p = SFSI("input[name='sfsi_Show_popupOn']:checked").val(),
886
- _ = [];
887
- SFSI("#sfsi_Show_popupOn_PageIDs :selected").each(function (s, i) {
888
- _[s] = SFSI(i).val();
889
- });
890
- var l = SFSI("input[name='sfsi_Shown_pop']:checked").val(),
891
- S = SFSI("input[name='sfsi_Shown_popupOnceTime']").val(),
892
- u = SFSI("#sfsi_Shown_popuplimitPerUserTime").val(),
893
- f = {
894
- action: "updateSrcn7",
895
- sfsi_popup_text: i,
896
- sfsi_popup_font: e,
897
- sfsi_popup_fontColor: color,
898
- /*sfsi_popup_fontStyle: t,*/
899
- sfsi_popup_fontSize: n,
900
- sfsi_popup_background_color: o,
901
- sfsi_popup_border_color: a,
902
- sfsi_popup_border_thickness: r,
903
- sfsi_popup_border_shadow: c,
904
- sfsi_Show_popupOn: p,
905
- sfsi_Show_popupOn_PageIDs: _,
906
- sfsi_Shown_pop: l,
907
- sfsi_Shown_popupOnceTime: S,
908
- sfsi_Shown_popuplimitPerUserTime: u,
909
- nonce: nonce
910
- };
911
- SFSI.ajax({
912
- url: sfsi_icon_ajax_object.ajax_url,
913
- type: "post",
914
- data: f,
915
- dataType: "json",
916
- async: !0,
917
- success: function (s) {
918
- if (s == "wrong_nonce") {
919
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
920
- afterLoad();
921
- } else {
922
- "success" == s ? (showErrorSuc("success", "Saved !", 7), sfsicollapse("#sfsi_save7")) : showErrorSuc("error", "Unkown error , please try again", 7),
923
- afterLoad();
924
- }
925
- }
926
- });
927
- }
928
-
929
- function sfsi_update_step8() {
930
- var nonce = SFSI("#sfsi_save8").attr("data-nonce");
931
- beForeLoad();
932
- var ie = SFSI("input[name='sfsi_form_adjustment']:checked").val(),
933
- je = SFSI("input[name='sfsi_form_height']").val(),
934
- ke = SFSI("input[name='sfsi_form_width']").val(),
935
- le = SFSI("input[name='sfsi_form_border']:checked").val(),
936
- me = SFSI("input[name='sfsi_form_border_thickness']").val(),
937
- ne = SFSI("input[name='sfsi_form_border_color']").val(),
938
- oe = SFSI("input[name='sfsi_form_background']").val(),
939
-
940
- ae = SFSI("input[name='sfsi_form_heading_text']").val(),
941
- be = SFSI("#sfsi_form_heading_font option:selected").val(),
942
- ce = SFSI("#sfsi_form_heading_fontstyle option:selected").val(),
943
- de = SFSI("input[name='sfsi_form_heading_fontcolor']").val(),
944
- ee = SFSI("input[name='sfsi_form_heading_fontsize']").val(),
945
- fe = SFSI("#sfsi_form_heading_fontalign option:selected").val(),
946
-
947
- ue = SFSI("input[name='sfsi_form_field_text']").val(),
948
- ve = SFSI("#sfsi_form_field_font option:selected").val(),
949
- we = SFSI("#sfsi_form_field_fontstyle option:selected").val(),
950
- xe = SFSI("input[name='sfsi_form_field_fontcolor']").val(),
951
- ye = SFSI("input[name='sfsi_form_field_fontsize']").val(),
952
- ze = SFSI("#sfsi_form_field_fontalign option:selected").val(),
953
-
954
- i = SFSI("input[name='sfsi_form_button_text']").val(),
955
- j = SFSI("#sfsi_form_button_font option:selected").val(),
956
- k = SFSI("#sfsi_form_button_fontstyle option:selected").val(),
957
- l = SFSI("input[name='sfsi_form_button_fontcolor']").val(),
958
- m = SFSI("input[name='sfsi_form_button_fontsize']").val(),
959
- n = SFSI("#sfsi_form_button_fontalign option:selected").val(),
960
- o = SFSI("input[name='sfsi_form_button_background']").val();
961
-
962
- var f = {
963
- action: "updateSrcn8",
964
- sfsi_form_adjustment: ie,
965
- sfsi_form_height: je,
966
- sfsi_form_width: ke,
967
- sfsi_form_border: le,
968
- sfsi_form_border_thickness: me,
969
- sfsi_form_border_color: ne,
970
- sfsi_form_background: oe,
971
-
972
- sfsi_form_heading_text: ae,
973
- sfsi_form_heading_font: be,
974
- sfsi_form_heading_fontstyle: ce,
975
- sfsi_form_heading_fontcolor: de,
976
- sfsi_form_heading_fontsize: ee,
977
- sfsi_form_heading_fontalign: fe,
978
-
979
- sfsi_form_field_text: ue,
980
- sfsi_form_field_font: ve,
981
- sfsi_form_field_fontstyle: we,
982
- sfsi_form_field_fontcolor: xe,
983
- sfsi_form_field_fontsize: ye,
984
- sfsi_form_field_fontalign: ze,
985
-
986
- sfsi_form_button_text: i,
987
- sfsi_form_button_font: j,
988
- sfsi_form_button_fontstyle: k,
989
- sfsi_form_button_fontcolor: l,
990
- sfsi_form_button_fontsize: m,
991
- sfsi_form_button_fontalign: n,
992
- sfsi_form_button_background: o,
993
-
994
- nonce: nonce
995
- };
996
- SFSI.ajax({
997
- url: sfsi_icon_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
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
1005
- afterLoad();
1006
- } else {
1007
- "success" == s ? (showErrorSuc("success", "Saved !", 8), sfsicollapse("#sfsi_save8"), create_suscriber_form()) : showErrorSuc("error", "Unkown error , please try again", 8),
1008
- afterLoad();
1009
- }
1010
- }
1011
- });
1012
- }
1013
-
1014
- // Queestion 3
1015
- function sfsi_update_step9() {
1016
- var nonce = SFSI("#sfsi_save9").attr("data-nonce");
1017
- beForeLoad();
1018
-
1019
- var i_float = SFSI("input[name='sfsi_icons_float']:checked").val(),
1020
- i_floatP = SFSI("input[name='sfsi_icons_floatPosition']:checked").val(),
1021
- i_floatMt = SFSI("input[name='sfsi_icons_floatMargin_top']").val(),
1022
- i_floatMb = SFSI("input[name='sfsi_icons_floatMargin_bottom']").val(),
1023
- i_floatMl = SFSI("input[name='sfsi_icons_floatMargin_left']").val(),
1024
- i_floatMr = SFSI("input[name='sfsi_icons_floatMargin_right']").val(),
1025
- i_disableFloat = SFSI("input[name='sfsi_disable_floaticons']:checked").val(),
1026
-
1027
- show_via_widget = SFSI("input[name='sfsi_show_via_widget']").val(),
1028
- show_via__shortcode = SFSI("input[name='sfsi_show_via_shortcode']:checked").length==0?"no":"yes",
1029
- sfsi_show_via_afterposts = SFSI("input[name='sfsi_show_via_afterposts']").val();
1030
-
1031
- var f = {
1032
-
1033
- action: "updateSrcn9",
1034
-
1035
- sfsi_icons_float: i_float,
1036
- sfsi_icons_floatPosition: i_floatP,
1037
- sfsi_icons_floatMargin_top: i_floatMt,
1038
- sfsi_icons_floatMargin_bottom: i_floatMb,
1039
- sfsi_icons_floatMargin_left: i_floatMl,
1040
- sfsi_icons_floatMargin_right: i_floatMr,
1041
- sfsi_disable_floaticons: i_disableFloat,
1042
-
1043
- sfsi_show_via_widget: show_via_widget,
1044
- sfsi_show_via_shortcode: show_via__shortcode,
1045
- sfsi_show_via_afterposts: sfsi_show_via_afterposts,
1046
- nonce: nonce
1047
- };
1048
- SFSI.ajax({
1049
- url: sfsi_icon_ajax_object.ajax_url,
1050
- type: "post",
1051
- data: f,
1052
- dataType: "json",
1053
- async: !0,
1054
- success: function (s) {
1055
- if (s == "wrong_nonce") {
1056
- showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 9);
1057
- afterLoad();
1058
- } else {
1059
- "success" == s ? (showErrorSuc("success", "Saved !", 9), sfsicollapse("#sfsi_save9")) : showErrorSuc("error", "Unkown error , please try again", 9),
1060
- afterLoad();
1061
- }
1062
- }
1063
- });
1064
- }
1065
-
1066
- function sfsi_validationStep2() {
1067
- //var class_name= SFSI(element).hasAttr('sfsi_validate');
1068
- SFSI('input').removeClass('inputError'); // remove previous error
1069
- if (sfsi_validator(SFSI('input[name="sfsi_rss_display"]'), 'checked')) {
1070
- if (!sfsi_validator(SFSI('input[name="sfsi_rss_url"]'), 'url')) {
1071
- showErrorSuc("error", "Error : Invalid Rss url ", 2);
1072
- SFSI('input[name="sfsi_rss_url"]').addClass('inputError');
1073
-
1074
- return false;
1075
- }
1076
- }
1077
- /* validate facebook */
1078
- if (sfsi_validator(SFSI('input[name="sfsi_facebookPage_option"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_facebookPage_option"]'), 'checked')) {
1079
- if (!sfsi_validator(SFSI('input[name="sfsi_facebookPage_url"]'), 'blank')) {
1080
- showErrorSuc("error", "Error : Invalid Facebook page url ", 2);
1081
- SFSI('input[name="sfsi_facebookPage_url"]').addClass('inputError');
1082
-
1083
- return false;
1084
- }
1085
- }
1086
- /* validate twitter user name */
1087
- if (sfsi_validator(SFSI('input[name="sfsi_twitter_followme"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_followme"]'), 'checked')) {
1088
- if (!sfsi_validator(SFSI('input[name="sfsi_twitter_followUserName"]'), 'blank')) {
1089
- showErrorSuc("error", "Error : Invalid Twitter UserName ", 2);
1090
- SFSI('input[name="sfsi_twitter_followUserName"]').addClass('inputError');
1091
- return false;
1092
- }
1093
- }
1094
- /* validate twitter about page */
1095
- if (sfsi_validator(SFSI('input[name="sfsi_twitter_aboutPage"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_aboutPage"]'), 'checked')) {
1096
- if (!sfsi_validator(SFSI('#sfsi_twitter_aboutPageText'), 'blank')) {
1097
- showErrorSuc("error", "Error : Tweet about my page is blank ", 2);
1098
- SFSI('#sfsi_twitter_aboutPageText').addClass('inputError');
1099
- return false;
1100
- }
1101
- }
1102
- /* twitter validation */
1103
- if (sfsi_validator(SFSI('input[name="sfsi_twitter_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_page"]'), 'checked')) {
1104
- if (!sfsi_validator(SFSI('input[name="sfsi_twitter_pageURL"]'), 'blank')) {
1105
- showErrorSuc("error", "Error : Invalid twitter page Url ", 2);
1106
- SFSI('input[name="sfsi_twitter_pageURL"]').addClass('inputError');
1107
- return false;
1108
- }
1109
- }
1110
-
1111
- /* youtube validation */
1112
- if (sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'checked')) {
1113
- if (!sfsi_validator(SFSI('input[name="sfsi_youtube_pageUrl"]'), 'blank')) {
1114
- showErrorSuc("error", "Error : Invalid youtube Url ", 2);
1115
- SFSI('input[name="sfsi_youtube_pageUrl"]').addClass('inputError');
1116
- return false;
1117
- }
1118
- }
1119
- /* youtube validation */
1120
- if (sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_follow"]'), 'checked')) {
1121
- cls = SFSI("input[name='sfsi_youtubeusernameorid']:checked").val();
1122
- if (cls == 'name' && !sfsi_validator(SFSI('input[name="sfsi_ytube_user"]'), 'blank')) {
1123
- showErrorSuc("error", "Error : Invalid youtube user name", 2);
1124
- SFSI('input[name="sfsi_ytube_user"]').addClass('inputError');
1125
- return false;
1126
- }
1127
-
1128
- if (cls == 'id' && !sfsi_validator(SFSI('input[name="sfsi_ytube_chnlid"]'), 'blank')) {
1129
- showErrorSuc("error", "Error : Invalid youtube Channel ID ", 2);
1130
- SFSI('input[name="sfsi_ytube_user"]').addClass('inputError');
1131
- return false;
1132
- }
1133
- }
1134
- /* pinterest validation */
1135
- if (sfsi_validator(SFSI('input[name="sfsi_pinterest_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_pinterest_page"]'), 'checked')) {
1136
- if (!sfsi_validator(SFSI('input[name="sfsi_pinterest_pageUrl"]'), 'blank')) {
1137
- showErrorSuc("error", "Error : Invalid pinterest page url ", 2);
1138
- SFSI('input[name="sfsi_pinterest_pageUrl"]').addClass('inputError');
1139
- return false;
1140
- }
1141
- }
1142
- /* instagram validation */
1143
- if (sfsi_validator(SFSI('input[name="sfsi_instagram_display"]'), 'checked')) {
1144
- if (!sfsi_validator(SFSI('input[name="sfsi_instagram_pageUrl"]'), 'blank')) {
1145
- showErrorSuc("error", "Error : Invalid Instagram url ", 2);
1146
- SFSI('input[name="sfsi_instagram_pageUrl"]').addClass('inputError');
1147
- return false;
1148
- }
1149
- }
1150
- /* telegram validation */
1151
- if (sfsi_validator(SFSI('input[name="sfsi_telegram_display"]'), 'checked')) {
1152
- if (!sfsi_validator(SFSI('input[name="sfsi_telegram_username"]'), 'blank')) {
1153
- showErrorSuc("error", "Error : Invalid telegram username ", 2);
1154
- SFSI('input[name="sfsi_telegram_username"]').addClass('inputError');
1155
- return false;
1156
- }
1157
- }
1158
- /* telegram validation */
1159
- if (sfsi_validator(SFSI('input[name="sfsi_telegram_display"]'), 'checked')) {
1160
- if (!sfsi_validator(SFSI('input[name="sfsi_telegram_message"]'), 'blank')) {
1161
- showErrorSuc("error", "Error : Invalid Message ", 2);
1162
- SFSI('input[name="sfsi_telegram_message"]').addClass('inputError');
1163
- return false;
1164
- }
1165
- }
1166
- /* vk validation */
1167
- if (sfsi_validator(SFSI('input[name="sfsi_vk_display"]'), 'checked')) {
1168
- if (!sfsi_validator(SFSI('input[name="sfsi_vk_pageURL"]'), 'blank')) {
1169
- showErrorSuc("error", "Error : Invalid vk url ", 2);
1170
- SFSI('input[name="sfsi_vk_pageURL"]').addClass('inputError');
1171
- return false;
1172
- }
1173
- }
1174
- /* ok validation */
1175
- if (sfsi_validator(SFSI('input[name="sfsi_ok_display"]'), 'checked')) {
1176
- if (!sfsi_validator(SFSI('input[name="sfsi_ok_pageURL"]'), 'blank')) {
1177
- showErrorSuc("error", "Error : Invalid ok url ", 2);
1178
- SFSI('input[name="sfsi_ok_pageURL"]').addClass('inputError');
1179
- return false;
1180
- }
1181
- }
1182
- /* weibo validation */
1183
- if (sfsi_validator(SFSI('input[name="sfsi_weibo_display"]'), 'checked')) {
1184
- if (!sfsi_validator(SFSI('input[name="sfsi_weibo_pageURL"]'), 'blank')) {
1185
- showErrorSuc("error", "Error : Invalid weibo url ", 2);
1186
- SFSI('input[name="sfsi_weibo_pageURL"]').addClass('inputError');
1187
- return false;
1188
- }
1189
- }
1190
- /* LinkedIn validation */
1191
- if (sfsi_validator(SFSI('input[name="sfsi_linkedin_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedin_page"]'), 'checked')) {
1192
- if (!sfsi_validator(SFSI('input[name="sfsi_linkedin_pageURL"]'), 'blank')) {
1193
- showErrorSuc("error", "Error : Invalid LinkedIn page url ", 2);
1194
- SFSI('input[name="sfsi_linkedin_pageURL"]').addClass('inputError');
1195
- return false;
1196
- }
1197
- }
1198
- if (sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendBusines"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendBusines"]'), 'checked')) {
1199
- if (!sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendProductId"]'), 'blank') || !sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendCompany"]'), 'blank')) {
1200
- showErrorSuc("error", "Error : Please Enter Product Id and Company for LinkedIn Recommendation ", 2);
1201
- SFSI('input[name="sfsi_linkedin_recommendProductId"]').addClass('inputError');
1202
- SFSI('input[name="sfsi_linkedin_recommendCompany"]').addClass('inputError');
1203
- return false;
1204
- }
1205
- }
1206
- /* validate custom links */
1207
- var er = 0;
1208
- SFSI("input[name='sfsi_CustomIcon_links[]']").each(function () {
1209
-
1210
- //if(!sfsi_validator(SFSI(this),'blank') || !sfsi_validator(SFSI(SFSI(this)),'url') )
1211
- if (!sfsi_validator(SFSI(this), 'blank')) {
1212
- showErrorSuc("error", "Error : Please Enter a valid Custom link ", 2);
1213
- SFSI(this).addClass('inputError');
1214
- er = 1;
1215
- }
1216
- });
1217
- if (!er) return true;
1218
- else return false;
1219
- }
1220
-
1221
- function sfsi_validationStep3() {
1222
- SFSI('input').removeClass('inputError'); // remove previous error
1223
- /* validate shuffle effect */
1224
- if (sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'checked')) {
1225
- if ((!sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'activte') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'checked')) && (!sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'activte') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked'))) {
1226
- showErrorSuc("error", "Error : Please Chose a Shuffle option ", 3);
1227
- SFSI('input[name="sfsi_shuffle_Firstload"]').addClass('inputError');
1228
- SFSI('input[name="sfsi_shuffle_interval"]').addClass('inputError');
1229
- return false;
1230
- }
1231
- }
1232
- if (!sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'checked') && (sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'checked') || sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked'))) {
1233
- showErrorSuc("error", "Error : Please check \"Shuffle them automatically\" option also ", 3);
1234
- SFSI('input[name="sfsi_shuffle_Firstload"]').addClass('inputError');
1235
- SFSI('input[name="sfsi_shuffle_interval"]').addClass('inputError');
1236
- return false;
1237
- }
1238
-
1239
- /* validate twitter user name */
1240
- if (sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked')) {
1241
-
1242
- if (!sfsi_validator(SFSI('input[name="sfsi_shuffle_intervalTime"]'), 'blank') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_intervalTime"]'), 'int')) {
1243
- showErrorSuc("error", "Error : Invalid shuffle time interval", 3);
1244
- SFSI('input[name="sfsi_shuffle_intervalTime"]').addClass('inputError');
1245
- return false;
1246
- }
1247
- }
1248
- return true;
1249
- }
1250
-
1251
- function sfsi_validationStep4() {
1252
- //var class_name= SFSI(element).hasAttr('sfsi_validate');
1253
- /* validate email */
1254
- if (sfsi_validator(SFSI('input[name="sfsi_email_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_email_countsDisplay"]'), 'checked')) {
1255
- if (SFSI('input[name="sfsi_email_countsFrom"]:checked').val() == 'manual') {
1256
- if (!sfsi_validator(SFSI('input[name="sfsi_email_manualCounts"]'), 'blank')) {
1257
- showErrorSuc("error", "Error : Please Enter manual counts for Email icon ", 4);
1258
- SFSI('input[name="sfsi_email_manualCounts"]').addClass('inputError');
1259
- return false;
1260
- }
1261
- }
1262
- }
1263
- /* validate RSS count */
1264
- if (sfsi_validator(SFSI('input[name="sfsi_rss_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_rss_countsDisplay"]'), 'checked')) {
1265
- if (!sfsi_validator(SFSI('input[name="sfsi_rss_manualCounts"]'), 'blank')) {
1266
- showErrorSuc("error", "Error : Please Enter manual counts for Rss icon ", 4);
1267
- SFSI('input[name="sfsi_rss_countsDisplay"]').addClass('inputError');
1268
- return false;
1269
- }
1270
- }
1271
- /* validate facebook */
1272
- if (sfsi_validator(SFSI('input[name="sfsi_facebook_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_facebook_countsDisplay"]'), 'checked')) {
1273
- /*if(SFSI('input[name="sfsi_facebook_countsFrom"]:checked').val()=='likes' )
1274
- {
1275
- if(!sfsi_validator(SFSI('input[name="sfsi_facebook_PageLink"]'),'blank'))
1276
- { showErrorSuc("error","Error : Please Enter facebook page Url ",4);
1277
- SFSI('input[name="sfsi_facebook_PageLink"]').addClass('inputError');
1278
- return false;
1279
- }
1280
- } */
1281
- if (SFSI('input[name="sfsi_facebook_countsFrom"]:checked').val() == 'manual') {
1282
- if (!sfsi_validator(SFSI('input[name="sfsi_facebook_manualCounts"]'), 'blank') && !sfsi_validator(SFSI('input[name="sfsi_facebook_manualCounts"]'), 'url')) {
1283
- showErrorSuc("error", "Error : Please Enter a valid facebook manual counts ", 4);
1284
- SFSI('input[name="sfsi_facebook_manualCounts"]').addClass('inputError');
1285
- return false;
1286
- }
1287
- }
1288
- }
1289
-
1290
- /* validate twitter */
1291
- if (sfsi_validator(SFSI('input[name="sfsi_twitter_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_countsDisplay"]'), 'checked')) {
1292
- if (SFSI('input[name="sfsi_twitter_countsFrom"]:checked').val() == 'source') {
1293
- if (!sfsi_validator(SFSI('input[name="tw_consumer_key"]'), 'blank')) {
1294
- showErrorSuc("error", "Error : Please Enter a valid consumer key", 4);
1295
- SFSI('input[name="tw_consumer_key"]').addClass('inputError');
1296
- return false;
1297
- }
1298
- if (!sfsi_validator(SFSI('input[name="tw_consumer_secret"]'), 'blank')) {
1299
- showErrorSuc("error", "Error : Please Enter a valid consume secret ", 4);
1300
- SFSI('input[name="tw_consumer_secret"]').addClass('inputError');
1301
- return false;
1302
- }
1303
- if (!sfsi_validator(SFSI('input[name="tw_oauth_access_token"]'), 'blank')) {
1304
- showErrorSuc("error", "Error : Please Enter a valid oauth access token", 4);
1305
- SFSI('input[name="tw_oauth_access_token"]').addClass('inputError');
1306
- return false;
1307
- }
1308
- if (!sfsi_validator(SFSI('input[name="tw_oauth_access_token_secret"]'), 'blank')) {
1309
- showErrorSuc("error", "Error : Please Enter a oAuth access token secret", 4);
1310
- SFSI('input[name="tw_oauth_access_token_secret"]').addClass('inputError');
1311
- return false;
1312
- }
1313
- }
1314
- if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'manual') {
1315
-
1316
- if (!sfsi_validator(SFSI('input[name="sfsi_twitter_manualCounts"]'), 'blank')) {
1317
- showErrorSuc("error", "Error : Please Enter Twitter manual counts ", 4);
1318
- SFSI('input[name="sfsi_twitter_manualCounts"]').addClass('inputError');
1319
- return false;
1320
- }
1321
- }
1322
- }
1323
- /* validate LinkedIn */
1324
- if (sfsi_validator(SFSI('input[name="sfsi_linkedIn_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedIn_countsDisplay"]'), 'checked')) {
1325
- if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'follower') {
1326
- if (!sfsi_validator(SFSI('input[name="ln_company"]'), 'blank')) {
1327
- showErrorSuc("error", "Error : Please Enter a valid company name", 4);
1328
- SFSI('input[name="ln_company"]').addClass('inputError');
1329
- return false;
1330
- }
1331
- if (!sfsi_validator(SFSI('input[name="ln_api_key"]'), 'blank')) {
1332
- showErrorSuc("error", "Error : Please Enter a valid API key ", 4);
1333
- SFSI('input[name="ln_api_key"]').addClass('inputError');
1334
- return false;
1335
- }
1336
- if (!sfsi_validator(SFSI('input[name="ln_secret_key"]'), 'blank')) {
1337
- showErrorSuc("error", "Error : Please Enter a valid secret ", 4);
1338
- SFSI('input[name="ln_secret_key"]').addClass('inputError');
1339
- return false;
1340
- }
1341
- if (!sfsi_validator(SFSI('input[name="ln_oAuth_user_token"]'), 'blank')) {
1342
- showErrorSuc("error", "Error : Please Enter a oAuth Access Token", 4);
1343
- SFSI('input[name="ln_oAuth_user_token"]').addClass('inputError');
1344
- return false;
1345
- }
1346
- }
1347
- if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'manual') {
1348
- if (!sfsi_validator(SFSI('input[name="sfsi_linkedIn_manualCounts"]'), 'blank')) {
1349
- showErrorSuc("error", "Error : Please Enter LinkedIn manual counts ", 4);
1350
- SFSI('input[name="sfsi_linkedIn_manualCounts"]').addClass('inputError');
1351
- return false;
1352
- }
1353
- }
1354
- }
1355
- /* validate youtube */
1356
- if (sfsi_validator(SFSI('input[name="sfsi_youtube_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_countsDisplay"]'), 'checked')) {
1357
- if (SFSI('input[name="sfsi_youtube_countsFrom"]:checked').val() == 'subscriber') {
1358
- if (
1359
- !sfsi_validator(SFSI('input[name="sfsi_youtube_user"]'), 'blank') &&
1360
- !sfsi_validator(SFSI('input[name="sfsi_youtube_channelId"]'), 'blank')
1361
- ) {
1362
- showErrorSuc("error", "Error : Please Enter a youtube user name or channel id", 4);
1363
- SFSI('input[name="sfsi_youtube_user"]').addClass('inputError');
1364
- SFSI('input[name="sfsi_youtube_channelId"]').addClass('inputError');
1365
- return false;
1366
- }
1367
- }
1368
- if (SFSI('input[name="sfsi_youtube_countsFrom"]:checked').val() == 'manual') {
1369
- if (!sfsi_validator(SFSI('input[name="sfsi_youtube_manualCounts"]'), 'blank')) {
1370
- showErrorSuc("error", "Error : Please Enter youtube manual counts ", 4);
1371
- SFSI('input[name="sfsi_youtube_manualCounts"]').addClass('inputError');
1372
- return false;
1373
- }
1374
- }
1375
- }
1376
- /* validate pinterest */
1377
- if (sfsi_validator(SFSI('input[name="sfsi_pinterest_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_pinterest_countsDisplay"]'), 'checked')) {
1378
- if (SFSI('input[name="sfsi_pinterest_countsFrom"]:checked').val() == 'manual') {
1379
- if (!sfsi_validator(SFSI('input[name="sfsi_pinterest_manualCounts"]'), 'blank')) {
1380
- showErrorSuc("error", "Error : Please Enter Pinterest manual counts ", 4);
1381
- SFSI('input[name="sfsi_pinterest_manualCounts"]').addClass('inputError');
1382
- return false;
1383
- }
1384
- }
1385
- }
1386
- /* validate instagram */
1387
- if (sfsi_validator(SFSI('input[name="sfsi_instagram_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_instagram_countsDisplay"]'), 'checked')) {
1388
- if (SFSI('input[name="sfsi_instagram_countsFrom"]:checked').val() == 'manual') {
1389
- if (!sfsi_validator(SFSI('input[name="sfsi_instagram_manualCounts"]'), 'blank')) {
1390
- showErrorSuc("error", "Error : Please Enter Instagram manual counts ", 4);
1391
- SFSI('input[name="sfsi_instagram_manualCounts"]').addClass('inputError');
1392
- return false;
1393
- }
1394
- }
1395
- if (SFSI('input[name="sfsi_instagram_countsFrom"]:checked').val() == 'followers') {
1396
- if (!sfsi_validator(SFSI('input[name="sfsi_instagram_User"]'), 'blank')) {
1397
- showErrorSuc("error", "Error : Please Enter a instagram user name", 4);
1398
- SFSI('input[name="sfsi_instagram_User"]').addClass('inputError');
1399
- return false;
1400
- }
1401
- }
1402
- }
1403
- return true;
1404
- }
1405
-
1406
- function sfsi_validationStep5() {
1407
- //var class_name= SFSI(element).hasAttr('sfsi_validate');
1408
- /* validate size */
1409
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_size"]'), 'int')) {
1410
- showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1411
- SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1412
- return false;
1413
- }
1414
- if (parseInt(SFSI('input[name="sfsi_icons_size"]').val()) > 100) {
1415
- showErrorSuc("error", "Error : Icons Size allow 100px maximum ", 5);
1416
- SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1417
- return false;
1418
- }
1419
- if (parseInt(SFSI('input[name="sfsi_icons_size"]').val()) <= 0) {
1420
- showErrorSuc("error", "Error : Icons Size should be more than 0 ", 5);
1421
- SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1422
- return false;
1423
- }
1424
- /* validate spacing */
1425
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_spacing"]'), 'int')) {
1426
- showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1427
- SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1428
- return false;
1429
- }
1430
- if (parseInt(SFSI('input[name="sfsi_icons_spacing"]').val()) < 0) {
1431
- showErrorSuc("error", "Error : Icons Spacing should be 0 or more", 5);
1432
- SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1433
- return false;
1434
- }
1435
- /* icons per row spacing */
1436
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_perRow"]'), 'int')) {
1437
- showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1438
- SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1439
- return false;
1440
- }
1441
- if (parseInt(SFSI('input[name="sfsi_icons_perRow"]').val()) <= 0) {
1442
- showErrorSuc("error", "Error : Icons Per row should be more than 0", 5);
1443
- SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1444
- return false;
1445
- }
1446
- /* validate icons effects */
1447
- // if(SFSI('input[name="sfsi_icons_float"]:checked').val()=="yes" && SFSI('input[name="sfsi_icons_stick"]:checked').val()=="yes")
1448
- // {
1449
- // showErrorSuc("error","Error : Only one allow from Sticking & floating ",5);
1450
- // SFSI('input[name="sfsi_icons_float"][value="no"]').prop("checked", true);
1451
- // return false;
1452
- // }
1453
- return true;
1454
- }
1455
-
1456
- function sfsi_validationStep7() {
1457
- //var class_name= SFSI(element).hasAttr('sfsi_validate');
1458
- /* validate border thikness */
1459
- if (!sfsi_validator(SFSI('input[name="sfsi_popup_border_thickness"]'), 'int')) {
1460
- showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1461
- SFSI('input[name="sfsi_popup_border_thickness"]').addClass('inputError');
1462
- return false;
1463
- }
1464
- /* validate fotn size */
1465
- if (!sfsi_validator(SFSI('input[name="sfsi_popup_fontSize"]'), 'int')) {
1466
- showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1467
- SFSI('input[name="sfsi_popup_fontSize"]').addClass('inputError');
1468
- return false;
1469
- }
1470
- /* validate pop up shown */
1471
- if (SFSI('input[name="sfsi_Shown_pop"]:checked').val() == 'once') {
1472
-
1473
- if (!sfsi_validator(SFSI('input[name="sfsi_Shown_popupOnceTime"]'), 'blank') && !sfsi_validator(SFSI('input[name="sfsi_Shown_popupOnceTime"]'), 'url')) {
1474
- showErrorSuc("error", "Error : Please Enter a valid pop up shown time ", 7);
1475
- SFSI('input[name="sfsi_Shown_popupOnceTime"]').addClass('inputError');
1476
- return false;
1477
- }
1478
- }
1479
- /* validate page ids */
1480
- if (SFSI('input[name="sfsi_Show_popupOn"]:checked').val() == 'selectedpage') {
1481
- if (!sfsi_validator(SFSI('input[name="sfsi_Show_popupOn"]'), 'blank')) {
1482
- showErrorSuc("error", "Error : Please Enter page ids with comma ", 7);
1483
- SFSI('input[name="sfsi_Show_popupOn"]').addClass('inputError');
1484
- return false;
1485
- }
1486
- }
1487
- /* validate spacing */
1488
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_spacing"]'), 'int')) {
1489
- showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1490
- SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1491
- return false;
1492
- }
1493
- /* icons per row spacing */
1494
- if (!sfsi_validator(SFSI('input[name="sfsi_icons_perRow"]'), 'int')) {
1495
- showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1496
- SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1497
- return false;
1498
- }
1499
- return true;
1500
- }
1501
-
1502
- function sfsi_validator(element, valType) {
1503
- var Vurl = new RegExp("^(http|https|ftp)\://([a-zA-Z0-9\.\-]+(\:[a-zA-Z0-9\.&amp;%\$\-]+)*@)*((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])|([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9\-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\@\?\'\\\+&amp;%\$#\=~_\-]+))*$");
1504
- //var Vurl = /http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/;
1505
-
1506
- switch (valType) {
1507
- case "blank":
1508
- if (!element.val().trim()) return false;
1509
- else return true;
1510
- break;
1511
- case "url":
1512
- if (!Vurl.test(element.val().trim())) return false;
1513
- else return true;
1514
- break;
1515
- case "checked":
1516
- if (!element.attr('checked') === true) return false;
1517
- else return true;
1518
- break;
1519
- case "activte":
1520
- if (!element.attr('disabled')) return true;
1521
- else return false;
1522
- break;
1523
- case "int":
1524
- if (!isNaN(element.val())) return true;
1525
- else return false;
1526
- break;
1527
-
1528
- }
1529
- }
1530
-
1531
- function afterIconSuccess(s, nonce) {
1532
- if (s.res = "success") {
1533
- var i = s.key + 1,
1534
- e = s.element,
1535
- t = e + 1;
1536
- SFSI("#total_cusotm_icons").val(s.element);
1537
- SFSI(".upload-overlay").hide("slow");
1538
- SFSI(".uperror").html("");
1539
- showErrorSuc("success", "Custom Icon updated successfully", 1);
1540
- d = new Date();
1541
-
1542
- var ele = SFSI(".notice_custom_icons_premium");
1543
-
1544
- SFSI("li.custom:last-child").removeClass("bdr_btm_non");
1545
- SFSI("li.custom:last-child").children("span.custom-img").children("img").attr("src", s.img_path + "?" + d.getTime());
1546
- SFSI("input[name=sfsiICON_" + s.key + "]").removeAttr("ele-type");
1547
- SFSI("input[name=sfsiICON_" + s.key + "]").removeAttr("isnew");
1548
- icons_name = SFSI("li.custom:last-child").find("input.styled").attr("name");
1549
- var n = icons_name.split("_");
1550
- s.key = s.key, s.img_path += "?" + d.getTime(), 5 > e && SFSI(".icn_listing").append('<li id="c' + i + '" class="custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style="background-position: 0px 0px;"></span><input name="sfsiICON_' + i + '" type="checkbox" value="yes" class="styled" style="display:none;" element-type="cusotm-icon" isNew="yes" /></div> <span class="custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="CImg_' + i + '" alt="error" /> </span> <span class="custom custom-txt">Custom' + t + ' </span> <div class="right_info"> <p><span>It depends:</span> Upload a custom icon if you have other accounts/websites you want to link to.</p><div class="inputWrapper"></div></li>'),
1551
- SFSI(".custom_section").show(),
1552
- SFSI('<div class="row sfsiICON_' + s.key + ' cm_lnk"> <h2 class="custom"> <span class="customstep2-img"> <img src="' + s.img_path + "?" + d.getTime() + '" style="border-radius:48%" alt="error" /> </span> <span class="sfsiCtxt">Custom ' + e + '</span> </h2> <div class="inr_cont "><p>Where do you want this icon to link to?</p> <p class="radio_section fb_url custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>').insertBefore('.notice_custom_icons_premium');
1553
- //SFSI(".custom-links").append(' <div class="row sfsiICON_' + s.key + ' cm_lnk"> <h2 class="custom"> <span class="customstep2-img"> <img src="' + s.img_path + "?" + d.getTime() + '" style="border-radius:48%" /> </span> <span class="sfsiCtxt">Custom ' + e + '</span> </h2> <div class="inr_cont "><p>Where do you want this icon to link to?</p> <p class="radio_section fb_url custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>');
1554
- SFSI(".notice_custom_icons_premium").show();
1555
- SFSI("#c" + s.key).append('<input type="hidden" name="nonce" value="' + nonce + '">');
1556
- var o = SFSI("div.custom_m").find("div.mouseover_field").length;
1557
- SFSI("div.custom_m").append(0 == o % 2 ? '<div class="clear"> </div> <div class="mouseover_field custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>' : '<div class="cHover " ><div class="mouseover_field custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>'),
1558
- SFSI("ul.share_icon_order").append('<li class="custom_iconOrder sfsiICON_' + s.key + '" data-index="" element-id="' + s.key + '" id=""><a href="#" title="Custom Icon" ><img src="' + s.img_path + '" alt="Linked In" class="sfcm"/></a></li>'),
1559
- SFSI("ul.sfsi_sample_icons").append('<li class="sfsiICON_' + s.key + '" element-id="' + s.key + '" ><div><img src="' + s.img_path + '" alt="Linked In" class="sfcm"/><span class="sfsi_Cdisplay">12k</span></div></li>'),
1560
- sfsi_update_index(), update_Sec5Iconorder(), sfsi_update_step1(), sfsi_update_step2(),
1561
- sfsi_update_step5(), SFSI(".upload-overlay").css("pointer-events", "auto"), sfsi_showPreviewCounts(),
1562
- afterLoad();
1563
- }
1564
- }
1565
-
1566
- function beforeIconSubmit(s) {
1567
- if (SFSI(".uperror").html("Uploading....."), window.File && window.FileReader && window.FileList && window.Blob) {
1568
- SFSI(s).val() || SFSI(".uperror").html("File is empty");
1569
- var i = s.files[0].size,
1570
- e = s.files[0].type;
1571
- switch (e) {
1572
- case "image/png":
1573
- case "image/gif":
1574
- case "image/jpeg":
1575
- case "image/pjpeg":
1576
- break;
1577
-
1578
- default:
1579
- return SFSI(".uperror").html("Unsupported file"), !1;
1580
- }
1581
- return i > 1048576 ? (SFSI(".uperror").html("Image should be less than 1 MB"), !1) : !0;
1582
- }
1583
- return !0;
1584
- }
1585
-
1586
- function bytesToSize(s) {
1587
- var i = ["Bytes", "KB", "MB", "GB", "TB"];
1588
- if (0 == s) return "0 Bytes";
1589
- var e = parseInt(Math.floor(Math.log(s) / Math.log(1024)));
1590
- return Math.round(s / Math.pow(1024, e), 2) + " " + i[e];
1591
- }
1592
-
1593
- function showErrorSuc(s, i, e) {
1594
- if ("error" == s) var t = "errorMsg";
1595
- else var t = "sucMsg";
1596
- return SFSI(".tab" + e + ">." + t).html(i), SFSI(".tab" + e + ">." + t).show(),
1597
- SFSI(".tab" + e + ">." + t).effect("highlight", {}, 5e3), setTimeout(function () {
1598
- SFSI("." + t).slideUp("slow");
1599
- }, 5e3), !1;
1600
- }
1601
-
1602
- function beForeLoad() {
1603
- SFSI(".loader-img").show(), SFSI(".save_button >a").html("Saving..."), SFSI(".save_button >a").css("pointer-events", "none");
1604
- }
1605
-
1606
- function afterLoad() {
1607
- SFSI("input").removeClass("inputError"), SFSI(".save_button >a").html("Save"), SFSI(".tab10>div.save_button >a").html("Save All Settings"),
1608
- SFSI(".save_button >a").css("pointer-events", "auto"), SFSI(".save_button >a").removeAttr("onclick"),
1609
- SFSI(".loader-img").hide();
1610
- }
1611
-
1612
- function sfsi_make_popBox() {
1613
- var s = 0;
1614
- SFSI(".sfsi_sample_icons >li").each(function () {
1615
- "none" != SFSI(this).css("display") && (s = 1);
1616
- }),
1617
- 0 == s ? SFSI(".sfsi_Popinner").hide() : SFSI(".sfsi_Popinner").show(),
1618
- "" != SFSI('input[name="sfsi_popup_text"]').val() ? (SFSI(".sfsi_Popinner >h2").html(SFSI('input[name="sfsi_popup_text"]').val()),
1619
- SFSI(".sfsi_Popinner >h2").show()) : SFSI(".sfsi_Popinner >h2").hide(), SFSI(".sfsi_Popinner").css({
1620
- "border-color": SFSI('input[name="sfsi_popup_border_color"]').val(),
1621
- "border-width": SFSI('input[name="sfsi_popup_border_thickness"]').val(),
1622
- "border-style": "solid"
1623
- }),
1624
- SFSI(".sfsi_Popinner").css("background-color", SFSI('input[name="sfsi_popup_background_color"]').val()),
1625
- SFSI(".sfsi_Popinner h2").css("font-family", SFSI("#sfsi_popup_font").val()), SFSI(".sfsi_Popinner h2").css("font-style", SFSI("#sfsi_popup_fontStyle").val()),
1626
- SFSI(".sfsi_Popinner >h2").css("font-size", parseInt(SFSI('input[name="sfsi_popup_fontSize"]').val())),
1627
- SFSI(".sfsi_Popinner >h2").css("color", SFSI('input[name="sfsi_popup_fontColor"]').val() + " !important"),
1628
- "yes" == SFSI('input[name="sfsi_popup_border_shadow"]:checked').val() ? SFSI(".sfsi_Popinner").css("box-shadow", "12px 30px 18px #CCCCCC") : SFSI(".sfsi_Popinner").css("box-shadow", "none");
1629
- }
1630
-
1631
- function sfsi_stick_widget(s) {
1632
- 0 == initTop.length && (SFSI(".sfsi_widget").each(function (s) {
1633
- initTop[s] = SFSI(this).position().top;
1634
- }), console.log(initTop));
1635
- var i = SFSI(window).scrollTop(),
1636
- e = [],
1637
- t = [];
1638
- SFSI(".sfsi_widget").each(function (s) {
1639
- e[s] = SFSI(this).position().top, t[s] = SFSI(this);
1640
- });
1641
- var n = !1;
1642
- for (var o in e) {
1643
- var a = parseInt(o) + 1;
1644
- e[o] < i && e[a] > i && a < e.length ? (SFSI(t[o]).css({
1645
- position: "fixed",
1646
- top: s
1647
- }), SFSI(t[a]).css({
1648
- position: "",
1649
- top: initTop[a]
1650
- }), n = !0) : SFSI(t[o]).css({
1651
- position: "",
1652
- top: initTop[o]
1653
- });
1654
- }
1655
- if (!n) {
1656
- var r = e.length - 1,
1657
- c = -1;
1658
- e.length > 1 && (c = e.length - 2), initTop[r] < i ? (SFSI(t[r]).css({
1659
- position: "fixed",
1660
- top: s
1661
- }), c >= 0 && SFSI(t[c]).css({
1662
- position: "",
1663
- top: initTop[c]
1664
- })) : (SFSI(t[r]).css({
1665
- position: "",
1666
- top: initTop[r]
1667
- }), c >= 0 && e[c] < i);
1668
- }
1669
- }
1670
-
1671
- function sfsi_setCookie(s, i, e) {
1672
- var t = new Date();
1673
- t.setTime(t.getTime() + 1e3 * 60 * 60 * 24 * e);
1674
- var n = "expires=" + t.toGMTString();
1675
- document.cookie = s + "=" + i + "; " + n;
1676
- }
1677
-
1678
- function sfsfi_getCookie(s) {
1679
- for (var i = s + "=", e = document.cookie.split(";"), t = 0; t < e.length; t++) {
1680
- var n = e[t].trim();
1681
- if (0 == n.indexOf(i)) return n.substring(i.length, n.length);
1682
- }
1683
- return "";
1684
- }
1685
-
1686
- function sfsi_hideFooter() {}
1687
-
1688
- window.onerror = function () {},
1689
- SFSI = jQuery,
1690
- SFSI(window).on('load', function () {
1691
- SFSI("#sfpageLoad").fadeOut(2e3);
1692
- });
1693
-
1694
- //changes done {Monad}
1695
- function selectText(containerid) {
1696
- if (document.selection) {
1697
- var range = document.body.createTextRange();
1698
- range.moveToElementText(document.getElementById(containerid));
1699
- range.select();
1700
- } else if (window.getSelection()) {
1701
- var range = document.createRange();
1702
- range.selectNode(document.getElementById(containerid));
1703
- window.getSelection().removeAllRanges();
1704
- window.getSelection().addRange(range);
1705
- }
1706
- }
1707
-
1708
- function create_suscriber_form() {
1709
- //Popbox customization
1710
- "no" == SFSI('input[name="sfsi_form_adjustment"]:checked').val() ? SFSI(".sfsi_subscribe_Popinner").css({
1711
- "width": parseInt(SFSI('input[name="sfsi_form_width"]').val()),
1712
- "height": parseInt(SFSI('input[name="sfsi_form_height"]').val())
1713
- }) : SFSI(".sfsi_subscribe_Popinner").css({
1714
- "width": '',
1715
- "height": ''
1716
- });
1717
-
1718
- "yes" == SFSI('input[name="sfsi_form_adjustment"]:checked').val() ? SFSI(".sfsi_html > .sfsi_subscribe_Popinner").css({
1719
- "width": "100%"
1720
- }) : '';
1721
-
1722
- "yes" == SFSI('input[name="sfsi_form_border"]:checked').val() ? SFSI(".sfsi_subscribe_Popinner").css({
1723
- "border": SFSI('input[name="sfsi_form_border_thickness"]').val() + "px solid " + SFSI('input[name="sfsi_form_border_color"]').val()
1724
- }) : SFSI(".sfsi_subscribe_Popinner").css("border", "none");
1725
-
1726
- SFSI('input[name="sfsi_form_background"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").css("background-color", SFSI('input[name="sfsi_form_background"]').val())) : '';
1727
-
1728
- //Heading customization
1729
- SFSI('input[name="sfsi_form_heading_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").html(SFSI('input[name="sfsi_form_heading_text"]').val())) : SFSI(".sfsi_subscribe_Popinner > form > h5").html('');
1730
-
1731
- SFSI('#sfsi_form_heading_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-family", SFSI("#sfsi_form_heading_font").val())) : '';
1732
-
1733
- if (SFSI('#sfsi_form_heading_fontstyle').val() != 'bold') {
1734
- SFSI('#sfsi_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-style", SFSI("#sfsi_form_heading_fontstyle").val())) : '';
1735
- SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-weight", '');
1736
- } else {
1737
- SFSI('#sfsi_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-weight", "bold")) : '';
1738
- SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-style", '');
1739
- }
1740
-
1741
- SFSI('input[name="sfsi_form_heading_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("color", SFSI('input[name="sfsi_form_heading_fontcolor"]').val())) : '';
1742
-
1743
- SFSI('input[name="sfsi_form_heading_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css({
1744
- "font-size": parseInt(SFSI('input[name="sfsi_form_heading_fontsize"]').val())
1745
- })) : '';
1746
-
1747
- SFSI('#sfsi_form_heading_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("text-align", SFSI("#sfsi_form_heading_fontalign").val())) : '';
1748
-
1749
- //Field customization
1750
- SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", '');
1751
-
1752
- SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".sfsi_left_container > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".sfsi_left_container > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1753
-
1754
- SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".like_pop_box > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".like_pop_box > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1755
-
1756
- SFSI('#sfsi_form_field_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-family", SFSI("#sfsi_form_field_font").val())) : '';
1757
-
1758
- if (SFSI('#sfsi_form_field_fontstyle').val() != "bold") {
1759
- SFSI('#sfsi_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", SFSI("#sfsi_form_field_fontstyle").val())) : '';
1760
- SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", '');
1761
- } else {
1762
- SFSI('#sfsi_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", 'bold')) : '';
1763
- SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", '');
1764
- }
1765
-
1766
- SFSI('input[name="sfsi_form_field_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("color", SFSI('input[name="sfsi_form_field_fontcolor"]').val())) : '';
1767
-
1768
- SFSI('input[name="sfsi_form_field_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css({
1769
- "font-size": parseInt(SFSI('input[name="sfsi_form_field_fontsize"]').val())
1770
- })) : '';
1771
-
1772
- SFSI('#sfsi_form_field_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("text-align", SFSI("#sfsi_form_field_fontalign").val())) : '';
1773
-
1774
- //Button customization
1775
- SFSI('input[name="sfsi_form_button_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').attr("value", SFSI('input[name="sfsi_form_button_text"]').val())) : '';
1776
-
1777
- SFSI('#sfsi_form_button_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-family", SFSI("#sfsi_form_button_font").val())) : '';
1778
-
1779
- if (SFSI('#sfsi_form_button_fontstyle').val() != "bold") {
1780
- SFSI('#sfsi_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", SFSI("#sfsi_form_button_fontstyle").val())) : '';
1781
- SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", '');
1782
- } else {
1783
- SFSI('#sfsi_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", 'bold')) : '';
1784
- SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", '');
1785
- }
1786
-
1787
- SFSI('input[name="sfsi_form_button_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("color", SFSI('input[name="sfsi_form_button_fontcolor"]').val())) : '';
1788
-
1789
- SFSI('input[name="sfsi_form_button_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css({
1790
- "font-size": parseInt(SFSI('input[name="sfsi_form_button_fontsize"]').val())
1791
- })) : '';
1792
-
1793
- SFSI('#sfsi_form_button_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("text-align", SFSI("#sfsi_form_button_fontalign").val())) : '';
1794
-
1795
- SFSI('input[name="sfsi_form_button_background"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("background-color", SFSI('input[name="sfsi_form_button_background"]').val())) : '';
1796
-
1797
- var innerHTML = SFSI(".sfsi_html > .sfsi_subscribe_Popinner").html();
1798
- var styleCss = SFSI(".sfsi_html > .sfsi_subscribe_Popinner").attr("style");
1799
- innerHTML = '<div style="' + styleCss + '">' + innerHTML + '</div>';
1800
- SFSI(".sfsi_subscription_html > xmp").html(innerHTML);
1801
-
1802
- /*var data = {
1803
- action:"getForm",
1804
- heading: SFSI('input[name="sfsi_form_heading_text"]').val(),
1805
- placeholder:SFSI('input[name="sfsi_form_field_text"]').val(),
1806
- button:SFSI('input[name="sfsi_form_button_text"]').val()
1807
- };
1808
- SFSI.ajax({
1809
- url:sfsi_icon_ajax_object.ajax_url,
1810
- type:"post",
1811
- data:data,
1812
- success:function(s) {
1813
- SFSI(".sfsi_subscription_html").html(s);
1814
- }
1815
- });*/
1816
- }
1817
-
1818
- var global_error = 0;
1819
- if (typeof SFSI != 'undefined') {
1820
-
1821
- function sfsi_dismiss_notice(btnClass, ajaxAction) {
1822
-
1823
- var btnClass = "." + btnClass;
1824
-
1825
- SFSI(document).on("click", btnClass, function () {
1826
-
1827
- SFSI.ajax({
1828
- url: sfsi_icon_ajax_object.ajax_url,
1829
- type: "post",
1830
- data: {
1831
- action: ajaxAction
1832
- },
1833
- success: function (e) {
1834
- if (false != e) {
1835
- SFSI(btnClass).parent().remove();
1836
- }
1837
- }
1838
- });
1839
- });
1840
- }
1841
- }
1842
-
1843
- SFSI(document).ready(function (s) {
1844
-
1845
- var arrDismiss = [
1846
-
1847
- {
1848
- "btnClass": "sfsi-notice-dismiss",
1849
- "action": "sfsi_dismiss_lang_notice"
1850
- },
1851
-
1852
- {
1853
- "btnClass": "sfsi-AddThis-notice-dismiss",
1854
- "action": "sfsi_dismiss_addThis_icon_notice"
1855
- },
1856
-
1857
- {
1858
- "btnClass": "sfsi_error_reporting_notice-dismiss",
1859
- "action": "sfsi_dismiss_error_reporting_notice"
1860
- }
1861
- ];
1862
-
1863
- SFSI.each(arrDismiss, function (key, valueObj) {
1864
- sfsi_dismiss_notice(valueObj.btnClass, valueObj.action);
1865
- });
1866
-
1867
- //changes done {Monad}
1868
- SFSI(".tab_3_icns").on("click", ".cstomskins_upload", function () {
1869
- SFSI(".cstmskins-overlay").show("slow", function () {
1870
- e = 0;
1871
- });
1872
- });
1873
- /*SFSI("#custmskin_clspop").live("click", function() {*/
1874
- SFSI(document).on("click", '#custmskin_clspop', function () {
1875
- SFSI_done();
1876
- SFSI(".cstmskins-overlay").hide("slow");
1877
- });
1878
-
1879
- create_suscriber_form();
1880
- SFSI('input[name="sfsi_form_heading_text"], input[name="sfsi_form_border_thickness"], input[name="sfsi_form_height"], input[name="sfsi_form_width"], input[name="sfsi_form_heading_fontsize"], input[name="sfsi_form_field_text"], input[name="sfsi_form_field_fontsize"], input[name="sfsi_form_button_text"], input[name="sfsi_form_button_fontsize"]').on("keyup", create_suscriber_form);
1881
-
1882
- SFSI('input[name="sfsi_form_border_color"], input[name="sfsi_form_background"] ,input[name="sfsi_form_heading_fontcolor"], input[name="sfsi_form_field_fontcolor"] ,input[name="sfsi_form_button_fontcolor"],input[name="sfsi_form_button_background"]').on("focus", create_suscriber_form);
1883
-
1884
- SFSI("#sfsi_form_heading_font, #sfsi_form_heading_fontstyle, #sfsi_form_heading_fontalign, #sfsi_form_field_font, #sfsi_form_field_fontstyle, #sfsi_form_field_fontalign, #sfsi_form_button_font, #sfsi_form_button_fontstyle, #sfsi_form_button_fontalign").on("change", create_suscriber_form);
1885
-
1886
- /*SFSI(".radio").live("click", function() {*/
1887
- SFSI(document).on("click", '.radio', function () {
1888
-
1889
- var s = SFSI(this).parent().find("input:radio:first");
1890
-
1891
- var inputName = s.attr("name");
1892
- var inputChecked = s.attr("checked");
1893
-
1894
- switch (inputName) {
1895
- case 'sfsi_form_adjustment':
1896
- if (s.val() == 'no')
1897
- s.parents(".row_tab").next(".row_tab").show("fast");
1898
- else
1899
- s.parents(".row_tab").next(".row_tab").hide("fast");
1900
- create_suscriber_form()
1901
- break;
1902
- case 'sfsi_form_border':
1903
- if (s.val() == 'yes')
1904
- s.parents(".row_tab").next(".row_tab").show("fast");
1905
- else
1906
- s.parents(".row_tab").next(".row_tab").hide("fast");
1907
- create_suscriber_form()
1908
- break;
1909
- case 'sfsi_icons_suppress_errors':
1910
-
1911
- SFSI('input[name="sfsi_icons_suppress_errors"]').removeAttr('checked');
1912
-
1913
- if (s.val() == 'yes')
1914
- SFSI('input[name="sfsi_icons_suppress_errors"][value="yes"]').attr('checked', 'true');
1915
- else
1916
- SFSI('input[name="sfsi_icons_suppress_errors"][value="no"]').attr('checked', 'true');
1917
- break;
1918
-
1919
- default:
1920
- case 'sfsi_responsive_icons_end_post':
1921
- if("yes" == s.val()){
1922
- jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').show();
1923
- }else{
1924
- jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').hide();
1925
- }
1926
- }
1927
- });
1928
-
1929
- SFSI('#sfsi_form_border_color').wpColorPicker({
1930
- defaultColor: false,
1931
- change: function (event, ui) {
1932
- create_suscriber_form()
1933
- },
1934
- clear: function () {
1935
- create_suscriber_form()
1936
- },
1937
- hide: true,
1938
- palettes: true
1939
- }),
1940
- SFSI('#sfsi_form_background').wpColorPicker({
1941
- defaultColor: false,
1942
- change: function (event, ui) {
1943
- create_suscriber_form()
1944
- },
1945
- clear: function () {
1946
- create_suscriber_form()
1947
- },
1948
- hide: true,
1949
- palettes: true
1950
- }),
1951
- SFSI('#sfsi_form_heading_fontcolor').wpColorPicker({
1952
- defaultColor: false,
1953
- change: function (event, ui) {
1954
- create_suscriber_form()
1955
- },
1956
- clear: function () {
1957
- create_suscriber_form()
1958
- },
1959
- hide: true,
1960
- palettes: true
1961
- }),
1962
- SFSI('#sfsi_form_button_fontcolor').wpColorPicker({
1963
- defaultColor: false,
1964
- change: function (event, ui) {
1965
- create_suscriber_form()
1966
- },
1967
- clear: function () {
1968
- create_suscriber_form()
1969
- },
1970
- hide: true,
1971
- palettes: true
1972
- }),
1973
- SFSI('#sfsi_form_button_background').wpColorPicker({
1974
- defaultColor: false,
1975
- change: function (event, ui) {
1976
- create_suscriber_form()
1977
- },
1978
- clear: function () {
1979
- create_suscriber_form()
1980
- },
1981
- hide: true,
1982
- palettes: true
1983
- });
1984
- //changes done {Monad}
1985
-
1986
- function i() {
1987
- SFSI(".uperror").html(""), afterLoad();
1988
- var s = SFSI('input[name="' + SFSI("#upload_id").val() + '"]');
1989
- s.removeAttr("checked");
1990
- var i = SFSI(s).parent().find("span:first");
1991
- return SFSI(i).css("background-position", "0px 0px"), SFSI(".upload-overlay").hide("slow"),
1992
- !1;
1993
- }
1994
- SFSI("#accordion").accordion({
1995
- collapsible: !0,
1996
- active: !1,
1997
- heightStyle: "content",
1998
- event: "click",
1999
- beforeActivate: function (s, i) {
2000
- if (i.newHeader[0]) var e = i.newHeader,
2001
- t = e.next(".ui-accordion-content");
2002
- else var e = i.oldHeader,
2003
- t = e.next(".ui-accordion-content");
2004
- var n = "true" == e.attr("aria-selected");
2005
- return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2006
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2007
- t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2008
- }
2009
- }),
2010
- SFSI("#accordion1").accordion({
2011
- collapsible: !0,
2012
- active: !1,
2013
- heightStyle: "content",
2014
- event: "click",
2015
- beforeActivate: function (s, i) {
2016
- if (i.newHeader[0]) var e = i.newHeader,
2017
- t = e.next(".ui-accordion-content");
2018
- else var e = i.oldHeader,
2019
- t = e.next(".ui-accordion-content");
2020
- var n = "true" == e.attr("aria-selected");
2021
- return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2022
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2023
- t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2024
- }
2025
- }),
2026
-
2027
- SFSI("#accordion2").accordion({
2028
- collapsible: !0,
2029
- active: !1,
2030
- heightStyle: "content",
2031
- event: "click",
2032
- beforeActivate: function (s, i) {
2033
- if (i.newHeader[0]) var e = i.newHeader,
2034
- t = e.next(".ui-accordion-content");
2035
- else var e = i.oldHeader,
2036
- t = e.next(".ui-accordion-content");
2037
- var n = "true" == e.attr("aria-selected");
2038
- return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2039
- e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2040
- t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2041
- }
2042
- }),
2043
- SFSI(".closeSec").on("click", function () {
2044
- var s = !0,
2045
- i = SFSI(this).closest("div.ui-accordion-content").prev("h3.ui-accordion-header").first(),
2046
- e = SFSI(this).closest("div.ui-accordion-content").first();
2047
- i.toggleClass("ui-corner-all", s).toggleClass("accordion-header-active ui-state-active ui-corner-top", !s).attr("aria-selected", (!s).toString()),
2048
- i.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", s).toggleClass("ui-icon-triangle-1-s", !s),
2049
- e.toggleClass("accordion-content-active", !s), s ? e.slideUp() : e.slideDown();
2050
- }),
2051
- SFSI(document).click(function (s) {
2052
- var i = SFSI(".sfsi_FrntInner_chg"),
2053
- e = SFSI(".sfsi_wDiv"),
2054
- t = SFSI("#at15s");
2055
- 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();
2056
- }),
2057
- SFSI('#sfsi_popup_background_color').wpColorPicker({
2058
- defaultColor: false,
2059
- change: function (event, ui) {
2060
- sfsi_make_popBox()
2061
- },
2062
- clear: function () {
2063
- sfsi_make_popBox()
2064
- },
2065
- hide: true,
2066
- palettes: true
2067
- }),
2068
- SFSI('#sfsi_popup_border_color').wpColorPicker({
2069
- defaultColor: false,
2070
- change: function (event, ui) {
2071
- sfsi_make_popBox()
2072
- },
2073
- clear: function () {
2074
- sfsi_make_popBox()
2075
- },
2076
- hide: true,
2077
- palettes: true
2078
- }),
2079
- SFSI('#sfsi_popup_fontColor').wpColorPicker({
2080
- defaultColor: false,
2081
- change: function (event, ui) {
2082
- sfsi_make_popBox()
2083
- },
2084
- clear: function () {
2085
- sfsi_make_popBox()
2086
- },
2087
- hide: true,
2088
- palettes: true
2089
- }),
2090
- SFSI("div#sfsiid_linkedin").find(".icon4").find("a").find("img").mouseover(function () {
2091
- SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/linkedIn_hover.svg");
2092
- }),
2093
- SFSI("div#sfsiid_linkedin").find(".icon4").find("a").find("img").mouseleave(function () {
2094
- SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/linkedIn.svg");
2095
- }),
2096
- SFSI("div#sfsiid_youtube").find(".icon1").find("a").find("img").mouseover(function () {
2097
- SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/youtube_hover.svg");
2098
- }),
2099
- SFSI("div#sfsiid_youtube").find(".icon1").find("a").find("img").mouseleave(function () {
2100
- SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/youtube.svg");
2101
- }),
2102
- SFSI("div#sfsiid_facebook").find(".icon1").find("a").find("img").mouseover(function () {
2103
- SFSI(this).css("opacity", "0.9");
2104
- }),
2105
- SFSI("div#sfsiid_facebook").find(".icon1").find("a").find("img").mouseleave(function () {
2106
- SFSI(this).css("opacity", "1");
2107
- }),
2108
- SFSI("div#sfsiid_twitter").find(".cstmicon1").find("a").find("img").mouseover(function () {
2109
- SFSI(this).css("opacity", "0.9");
2110
- }),
2111
- SFSI("div#sfsiid_twitter").find(".cstmicon1").find("a").find("img").mouseleave(function () {
2112
- SFSI(this).css("opacity", "1");
2113
- }),
2114
- SFSI("#sfsi_save1").on("click", function () {
2115
- // console.log('save1',sfsi_update_step1());
2116
- sfsi_update_step1() && sfsicollapse(this);
2117
- }),
2118
- SFSI("#sfsi_save2").on("click", function () {
2119
- sfsi_update_step2() && sfsicollapse(this);
2120
- }),
2121
- SFSI("#sfsi_save3").on("click", function () {
2122
- sfsi_update_step3() && sfsicollapse(this);
2123
- }),
2124
- SFSI("#sfsi_save4").on("click", function () {
2125
- sfsi_update_step4() && sfsicollapse(this);
2126
- }),
2127
- SFSI("#sfsi_save5").on("click", function () {
2128
- sfsi_update_step5() && sfsicollapse(this);
2129
- }),
2130
- SFSI("#sfsi_save6").on("click", function () {
2131
- sfsi_update_step6() && sfsicollapse(this);
2132
- }),
2133
- SFSI("#sfsi_save7").on("click", function () {
2134
- sfsi_update_step7() && sfsicollapse(this);
2135
- }),
2136
- SFSI("#sfsi_save8").on("click", function () {
2137
- sfsi_update_step8() && sfsicollapse(this);
2138
- }),
2139
- SFSI("#sfsi_save9").on("click", function () {
2140
- sfsi_update_step9() && sfsicollapse(this);
2141
- }),
2142
- SFSI("#save_all_settings").on("click", function () {
2143
- return SFSI("#save_all_settings").text("Saving.."), SFSI(".save_button >a").css("pointer-events", "none"),
2144
- sfsi_update_step1(), sfsi_update_step8(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Which icons do you want to show on your site?" tab.', 8),
2145
- global_error = 0, !1) : (sfsi_update_step2(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "What do you want the icons to do?" tab.', 8),
2146
- global_error = 0, !1) : (sfsi_update_step3(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "What design & animation do you want to give your icons?" tab.', 8),
2147
- global_error = 0, !1) : (sfsi_update_step4(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display "counts" next to your icons?" tab.', 8),
2148
- global_error = 0, !1) : (sfsi_update_step5(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Any other wishes for your main icons?" tab.', 8),
2149
- global_error = 0, !1) : (sfsi_update_step6(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display icons at the end of every post?" tab.', 8),
2150
- global_error = 0, !1) : (sfsi_update_step7(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display a pop-up, asking people to subscribe?" tab.', 8),
2151
- /*global_error = 0, !1) :void (0 == global_error && showErrorSuc("success", 'Saved! Now go to the <a href="widgets.php">widget</a> area and place the widget into your sidebar (if not done already)', 8))))))));*/
2152
- global_error = 0, !1) : void(0 == global_error && showErrorSuc("success", '', 8))))))));
2153
- }),
2154
- /*SFSI(".fileUPInput").live("change", function() {*/
2155
- SFSI(document).on("change", '.fileUPInput', function () {
2156
- beForeLoad(), beforeIconSubmit(this) && (SFSI(".upload-overlay").css("pointer-events", "none"),
2157
- SFSI("#customIconFrm").ajaxForm({
2158
- dataType: "json",
2159
- success: afterIconSuccess,
2160
- resetForm: !0
2161
- }).submit());
2162
- }),
2163
- SFSI(".pop-up").on("click", function () {
2164
- ("fbex-s2" == SFSI(this).attr("data-id") || "linkex-s2" == SFSI(this).attr("data-id")) && (SFSI("." + SFSI(this).attr("data-id")).hide(),
2165
- SFSI("." + SFSI(this).attr("data-id")).css("opacity", "1"), SFSI("." + SFSI(this).attr("data-id")).css("z-index", "1000")),
2166
- SFSI("." + SFSI(this).attr("data-id")).show("slow");
2167
- }),
2168
- /*SFSI("#close_popup").live("click", function() {*/
2169
- SFSI(document).on("click", '#close_popup', function () {
2170
- SFSI(".read-overlay").hide("slow");
2171
- });
2172
-
2173
- var e = 0;
2174
- SFSI(".icn_listing").on("click", ".checkbox", function () {
2175
- if (1 == e) return !1;
2176
- "yes" == SFSI(this).attr("dynamic_ele") && (s = SFSI(this).parent().find("input:checkbox:first"),
2177
- s.is(":checked") ? SFSI(s).attr("checked", !1) : SFSI(s).attr("checked", !0)), s = SFSI(this).parent().find("input:checkbox:first"),
2178
- "yes" == SFSI(s).attr("isNew") && ("0px 0px" == SFSI(this).css("background-position") ? (SFSI(s).attr("checked", !0),
2179
- SFSI(this).css("background-position", "0px -36px")) : (SFSI(s).removeAttr("checked", !0),
2180
- SFSI(this).css("background-position", "0px 0px")));
2181
- var s = SFSI(this).parent().find("input:checkbox:first");
2182
- if (s.is(":checked") && "cusotm-icon" == s.attr("element-type")) SFSI(".fileUPInput").attr("name", "custom_icons[]"),
2183
- SFSI(".upload-overlay").show("slow", function () {
2184
- e = 0;
2185
- }), SFSI("#upload_id").val(s.attr("name"));
2186
- else if (!s.is(":checked") && "cusotm-icon" == s.attr("element-type")) return s.attr("ele-type") ? (SFSI(this).attr("checked", !0),
2187
- SFSI(this).css("background-position", "0px -36px"), e = 0, !1) : confirm("Are you sure want to delete this Icon..?? ") ? "suc" == sfsi_delete_CusIcon(this, s) ? (s.attr("checked", !1),
2188
- SFSI(this).css("background-position", "0px 0px"), e = 0, !1) : (e = 0, !1) : (s.attr("checked", !0),
2189
- SFSI(this).css("background-position", "0px -36px"), e = 0, !1);
2190
- }),
2191
- SFSI(".icn_listing").on("click", ".checkbox", function () {
2192
- checked = SFSI(this).parent().find("input:checkbox:first"), "sfsi_email_display" != checked.attr("name") || checked.is(":checked") || SFSI(".demail-1").show("slow");
2193
- }),
2194
- SFSI("#deac_email2").on("click", function () {
2195
- SFSI(".demail-1").hide("slow"), SFSI(".demail-2").show("slow");
2196
- }),
2197
- SFSI("#deac_email3").on("click", function () {
2198
- SFSI(".demail-2").hide("slow"), SFSI(".demail-3").show("slow");
2199
- }),
2200
- SFSI(".hideemailpop").on("click", function () {
2201
- SFSI('input[name="sfsi_email_display"]').attr("checked", !0), SFSI('input[name="sfsi_email_display"]').parent().find("span:first").css("background-position", "0px -36px"),
2202
- SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2203
- }),
2204
- SFSI(".hidePop").on("click", function () {
2205
- SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2206
- }),
2207
- SFSI(".activate_footer").on("click", function () {
2208
- var nonce = SFSI(this).attr("data-nonce");
2209
- SFSI(this).text("activating....");
2210
- var s = {
2211
- action: "activateFooter",
2212
- nonce: nonce
2213
- };
2214
- SFSI.ajax({
2215
- url: sfsi_icon_ajax_object.ajax_url,
2216
- type: "post",
2217
- data: s,
2218
- dataType: "json",
2219
- success: function (s) {
2220
- if (s.res == "wrong_nonce") {
2221
- SFSI(".activate_footer").css("font-size", "18px");
2222
- SFSI(".activate_footer").text("Unauthorised Request, Try again after refreshing page");
2223
- } else {
2224
- "success" == s.res && (SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"),
2225
- SFSI(".demail-3").hide("slow"), SFSI(".activate_footer").text("Ok, activate link"));
2226
- }
2227
- }
2228
- });
2229
- }),
2230
- SFSI(".sfsi_removeFooter").on("click", function () {
2231
- var nonce = SFSI(this).attr("data-nonce");
2232
- SFSI(this).text("working....");
2233
- var s = {
2234
- action: "removeFooter",
2235
- nonce: nonce
2236
- };
2237
- SFSI.ajax({
2238
- url: sfsi_icon_ajax_object.ajax_url,
2239
- type: "post",
2240
- data: s,
2241
- dataType: "json",
2242
- success: function (s) {
2243
- if (s.res == "wrong_nonce") {
2244
- SFSI(".sfsi_removeFooter").text("Unauthorised Request, Try again after refreshing page");
2245
- } else {
2246
- "success" == s.res && (SFSI(".sfsi_removeFooter").fadeOut("slow"), SFSI(".sfsi_footerLnk").fadeOut("slow"));
2247
- }
2248
- }
2249
- });
2250
- }),
2251
- /*SFSI(".radio").live("click", function() {*/
2252
- SFSI(document).on("click", '.radio', function () {
2253
- var s = SFSI(this).parent().find("input:radio:first");
2254
- "sfsi_display_counts" == s.attr("name") && sfsi_show_counts();
2255
- }),
2256
- SFSI("#close_Uploadpopup").on("click", i), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2257
- var s = SFSI(this).parent().find("input:radio:first");
2258
- "sfsi_show_Onposts" == s.attr("name") && sfsi_show_OnpostsDisplay();
2259
- }),
2260
- sfsi_show_OnpostsDisplay(), sfsi_depened_sections(), sfsi_show_counts(), sfsi_showPreviewCounts(),
2261
- SFSI(".share_icon_order").sortable({
2262
- update: function () {
2263
- SFSI(".share_icon_order li").each(function () {
2264
- SFSI(this).attr("data-index", SFSI(this).index() + 1);
2265
- });
2266
- },
2267
- revert: !0
2268
- }),
2269
-
2270
- //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post STARTS -------------------------------------//
2271
-
2272
- SFSI(document).on("click", '.checkbox', function () {
2273
-
2274
- var s = SFSI(this).parent().find("input:checkbox:first");
2275
- var backgroundPos = jQuery(this).css('background-position').split(" ");
2276
- var xPos = backgroundPos[0],
2277
- yPos = backgroundPos[1];
2278
-
2279
- var inputName = s.attr('name');
2280
- var inputChecked = s.attr("checked");
2281
-
2282
- switch (inputName) {
2283
-
2284
- case "sfsi_custom_social_hide":
2285
-
2286
- var val = (yPos == "0px") ? "no" : "yes";
2287
- SFSI('input[name="sfsi_custom_social_hide"]').val(val);
2288
-
2289
- break;
2290
-
2291
- case "sfsi_show_via_widget":
2292
- case "sfsi_show_via_widget":
2293
- case "sfsi_show_via_afterposts":
2294
- case "sfsi_custom_social_hide":
2295
-
2296
- var val = (yPos == "0px") ? "no" : "yes";
2297
- SFSI('input[name="' + s.attr('name') + '"]').val(val);
2298
-
2299
- break;
2300
-
2301
- case 'sfsi_mouseOver':
2302
-
2303
- var elem = SFSI('input[name="' + inputName + '"]');
2304
-
2305
- var togglelem = SFSI('.mouse-over-effects');
2306
-
2307
- if (inputChecked) {
2308
- togglelem.removeClass('hide').addClass('show');
2309
- } else {
2310
- togglelem.removeClass('show').addClass('hide');
2311
- }
2312
-
2313
- break;
2314
- case 'sfsi_responsive_facebook_display':
2315
- if(inputChecked){
2316
- SFSI('.sfsi_responsive_icon_facebook_container').parents('a').show();
2317
- var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2318
- if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2319
- window.sfsi_fittext_shouldDisplay=true;
2320
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2321
- if(jQuery(a_container).css('display')!=="none"){
2322
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2323
- }
2324
- })
2325
- }
2326
- }else{
2327
-
2328
- SFSI('.sfsi_responsive_icon_facebook_container').parents('a').hide();
2329
- if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2330
- window.sfsi_fittext_shouldDisplay=true;
2331
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2332
- if(jQuery(a_container).css('display')!=="none"){
2333
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2334
- }
2335
- })
2336
- }
2337
- }
2338
- break;
2339
- case 'sfsi_responsive_Twitter_display':
2340
- if(inputChecked){
2341
- SFSI('.sfsi_responsive_icon_twitter_container').parents('a').show();
2342
- var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2343
- if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2344
- window.sfsi_fittext_shouldDisplay=true;
2345
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2346
- if(jQuery(a_container).css('display')!=="none"){
2347
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2348
- }
2349
- })
2350
- }
2351
- }else{
2352
- SFSI('.sfsi_responsive_icon_twitter_container').parents('a').hide();
2353
- if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2354
- window.sfsi_fittext_shouldDisplay=true;
2355
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2356
- if(jQuery(a_container).css('display')!=="none"){
2357
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2358
- }
2359
- })
2360
- }
2361
- }
2362
- break;
2363
- case 'sfsi_responsive_Follow_display':
2364
- if(inputChecked){
2365
- SFSI('.sfsi_responsive_icon_follow_container').parents('a').show();
2366
- var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2367
- }else{
2368
- SFSI('.sfsi_responsive_icon_follow_container').parents('a').hide();
2369
- }
2370
- window.sfsi_fittext_shouldDisplay=true;
2371
- jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2372
- if(jQuery(a_container).css('display')!=="none"){
2373
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2374
- }
2375
- })
2376
- break;
2377
- }
2378
-
2379
- });
2380
-
2381
- //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post CLOSES -------------------------------------//
2382
-
2383
- SFSI(document).on("click", '.radio', function () {
2384
-
2385
- var s = SFSI(this).parent().find("input:radio:first");
2386
-
2387
- switch (s.attr("name")) {
2388
-
2389
- case 'sfsi_mouseOver_effect_type':
2390
-
2391
- var _val = s.val();
2392
- var _name = s.attr("name");
2393
-
2394
- if ('same_icons' == _val) {
2395
- SFSI('.same_icons_effects').removeClass('hide').addClass('show');
2396
- SFSI('.other_icons_effects_options').removeClass('show').addClass('hide');
2397
- } else if ('other_icons' == _val) {
2398
- SFSI('.same_icons_effects').removeClass('show').addClass('hide');
2399
- SFSI('.other_icons_effects_options').removeClass('hide').addClass('show');
2400
- }
2401
-
2402
- break;
2403
- }
2404
-
2405
- });
2406
-
2407
- SFSI(document).on("click", '.radio', function () {
2408
-
2409
- var s = SFSI(this).parent().find("input:radio:first");
2410
- "sfsi_email_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_email_countsDisplay"]').prop("checked", !0),
2411
- SFSI('input[name="sfsi_email_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2412
- "manual" == SFSI("input[name='sfsi_email_countsFrom']:checked").val() ? SFSI("input[name='sfsi_email_manualCounts']").slideDown() : SFSI("input[name='sfsi_email_manualCounts']").slideUp()),
2413
-
2414
- "sfsi_facebook_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_facebook_countsDisplay"]').prop("checked", !0),
2415
- SFSI('input[name="sfsi_facebook_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2416
- "mypage" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_facebook_mypageCounts']").slideDown(), SFSI(".sfsi_fbpgidwpr").slideDown()) : (SFSI("input[name='sfsi_facebook_mypageCounts']").slideUp(), SFSI(".sfsi_fbpgidwpr").slideUp()),
2417
-
2418
- "manual" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() ? SFSI("input[name='sfsi_facebook_manualCounts']").slideDown() : SFSI("input[name='sfsi_facebook_manualCounts']").slideUp()),
2419
-
2420
- "sfsi_facebook_countsFrom" == s.attr("name") && (("mypage" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() || "likes" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val()) ? (SFSI(".sfsi_facebook_pagedeasc").slideDown()) : (SFSI(".sfsi_facebook_pagedeasc").slideUp())),
2421
-
2422
- "sfsi_twitter_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_twitter_countsDisplay"]').prop("checked", !0),
2423
- SFSI('input[name="sfsi_twitter_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2424
- "manual" == SFSI("input[name='sfsi_twitter_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_twitter_manualCounts']").slideDown(),
2425
- SFSI(".tw_follow_options").slideUp()) : (SFSI("input[name='sfsi_twitter_manualCounts']").slideUp(),
2426
- SFSI(".tw_follow_options").slideDown())),
2427
-
2428
-
2429
- "sfsi_linkedIn_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_linkedIn_countsDisplay"]').prop("checked", !0),
2430
- SFSI('input[name="sfsi_linkedIn_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2431
- "manual" == SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_linkedIn_manualCounts']").slideDown(),
2432
- SFSI(".linkedIn_options").slideUp()) : (SFSI("input[name='sfsi_linkedIn_manualCounts']").slideUp(),
2433
- SFSI(".linkedIn_options").slideDown())),
2434
-
2435
- "sfsi_youtube_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_youtube_countsDisplay"]').prop("checked", !0),
2436
- SFSI('input[name="sfsi_youtube_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2437
- "manual" == SFSI("input[name='sfsi_youtube_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_youtube_manualCounts']").slideDown(),
2438
- SFSI(".youtube_options").slideUp()) : (SFSI("input[name='sfsi_youtube_manualCounts']").slideUp(),
2439
- SFSI(".youtube_options").slideDown())), "sfsi_pinterest_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_pinterest_countsDisplay"]').prop("checked", !0),
2440
- SFSI('input[name="sfsi_pinterest_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2441
- "manual" == SFSI("input[name='sfsi_pinterest_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_pinterest_manualCounts']").slideDown(),
2442
- SFSI(".pin_options").slideUp()) : SFSI("input[name='sfsi_pinterest_manualCounts']").slideUp()),
2443
-
2444
- "sfsi_instagram_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_instagram_countsDisplay"]').prop("checked", !0),
2445
- SFSI('input[name="sfsi_instagram_countsDisplay"]').parent().find("span.checkbox").attr("style", "background-position:0px -36px;"),
2446
- "manual" == SFSI("input[name='sfsi_instagram_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_instagram_manualCounts']").slideDown(),
2447
- SFSI(".instagram_userLi").slideUp()) : (SFSI("input[name='sfsi_instagram_manualCounts']").slideUp(),
2448
- SFSI(".instagram_userLi").slideDown()));
2449
-
2450
- }),
2451
-
2452
- sfsi_make_popBox(),
2453
-
2454
- SFSI('input[name="sfsi_popup_text"] ,input[name="sfsi_popup_background_color"],input[name="sfsi_popup_border_color"],input[name="sfsi_popup_border_thickness"],input[name="sfsi_popup_fontSize"],input[name="sfsi_popup_fontColor"]').on("keyup", sfsi_make_popBox),
2455
- SFSI('input[name="sfsi_popup_text"] ,input[name="sfsi_popup_background_color"],input[name="sfsi_popup_border_color"],input[name="sfsi_popup_border_thickness"],input[name="sfsi_popup_fontSize"],input[name="sfsi_popup_fontColor"]').on("focus", sfsi_make_popBox),
2456
-
2457
- SFSI("#sfsi_popup_font ,#sfsi_popup_fontStyle").on("change", sfsi_make_popBox),
2458
-
2459
- /*SFSI(".radio").live("click", function(){*/
2460
- SFSI(document).on("click", '.radio', function () {
2461
-
2462
- var s = SFSI(this).parent().find("input:radio:first");
2463
-
2464
- if ("sfsi_icons_floatPosition" == s.attr("name")) {
2465
- SFSI('input[name="sfsi_icons_floatPosition"]').removeAttr("checked");
2466
- s.attr("checked", true);
2467
- }
2468
-
2469
- if ("sfsi_disable_floaticons" == s.attr("name")) {
2470
- SFSI('input[name="sfsi_disable_floaticons"]').removeAttr("checked");
2471
- s.attr("checked", true);
2472
- }
2473
-
2474
- "sfsi_popup_border_shadow" == s.attr("name") && sfsi_make_popBox();
2475
- }), /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ? SFSI("img.sfsi_wicon").on("click", function (s) {
2476
- s.stopPropagation();
2477
- var i = SFSI("#sfsi_floater_sec").val();
2478
- SFSI("div.sfsi_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide(),
2479
- SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_tool_tip_2").css("z-index", "0"),
2480
- SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide()),
2481
- SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2482
- "z-index": "999"
2483
- }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2484
- opacity: 1,
2485
- "z-index": 10
2486
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2487
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2488
- opacity: 1,
2489
- "z-index": 10
2490
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2491
- SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2492
- opacity: 1,
2493
- "z-index": 10
2494
- })), ("top-left" == i || "top-right" == i) && SFSI(this).parent().parent().parent().parent("#sfsi_floater").length > 0 && "sfsi_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").addClass("sfsi_plc_btm"),
2495
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2496
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2497
- opacity: 1,
2498
- "z-index": 10
2499
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2500
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").removeClass("sfsi_plc_btm"),
2501
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2502
- opacity: 1,
2503
- "z-index": 1e3
2504
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show());
2505
- }) : SFSI("img.sfsi_wicon").on("mouseenter", function () {
2506
- var s = SFSI("#sfsi_floater_sec").val();
2507
- SFSI("div.sfsi_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide(),
2508
- SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_tool_tip_2").css("z-index", "0"),
2509
- SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide()),
2510
- SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2511
- "z-index": "999"
2512
- }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2513
- opacity: 1,
2514
- "z-index": 10
2515
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2516
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2517
- opacity: 1,
2518
- "z-index": 10
2519
- }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2520
- SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2521
- opacity: 1,
2522
- "z-index": 10
2523
- })), ("top-left" == s || "top-right" == s) && SFSI(this).parent().parent().parent().parent("#sfsi_floater").length > 0 && "sfsi_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").addClass("sfsi_plc_btm"),
2524
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2525
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2526
- opacity: 1,
2527
- "z-index": 10
2528
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2529
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").removeClass("sfsi_plc_btm"),
2530
- SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2531
- opacity: 1,
2532
- "z-index": 10
2533
- }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show());
2534
- }), SFSI("div.sfsi_wicons").on("mouseleave", function () {
2535
- SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "fade_in" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.inerCnt").find("a.sficn").css("opacity", "0.6"),
2536
- SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "scale" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.inerCnt").find("a.sficn").removeClass("scale"),
2537
- SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "combo" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && (SFSI(this).children("div.inerCnt").find("a.sficn").css("opacity", "0.6"),
2538
- SFSI(this).children("div.inerCnt").find("a.sficn").removeClass("scale")), SFSI(this).children(".inerCnt").find("div.sfsi_tool_tip_2").hide();
2539
- }), SFSI("body").on("click", function () {
2540
- SFSI(".inerCnt").find("div.sfsi_tool_tip_2").hide();
2541
- }), SFSI(".adminTooltip >a").on("hover", function () {
2542
- SFSI(this).offset().top, SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "1"),
2543
- SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").show();
2544
- }), SFSI(".adminTooltip").on("mouseleave", function () {
2545
- "none" != SFSI(".gpls_tool_bdr").css("display") && 0 != SFSI(".gpls_tool_bdr").css("opacity") ? SFSI(".pop_up_box ").on("click", function () {
2546
- SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "0"), SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").hide();
2547
- }) : (SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "0"),
2548
- SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").hide());
2549
- }), SFSI(".expand-area").on("click", function () {
2550
- "Read more" == SFSI(this).text() ? (SFSI(this).siblings("p").children("label").fadeIn("slow"),
2551
- SFSI(this).text("Collapse")) : (SFSI(this).siblings("p").children("label").fadeOut("slow"),
2552
- SFSI(this).text("Read more"));
2553
- }), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2554
-
2555
- var s = SFSI(this).parent().find("input:radio:first");
2556
-
2557
- "sfsi_icons_float" == s.attr("name") && "yes" == s.val() && (SFSI(".float_options").slideDown("slow"),
2558
-
2559
- SFSI('input[name="sfsi_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_icons_stick"][value="yes"]').removeAttr("checked"),
2560
- SFSI('input[name="sfsi_icons_stick"][value="no"]').parent().find("span").attr("style", "background-position:0px -41px;"),
2561
- SFSI('input[name="sfsi_icons_stick"][value="yes"]').parent().find("span").attr("style", "background-position:0px -0px;")),
2562
-
2563
- //("sfsi_icons_stick" == s.attr("name") && "yes" == s.val() || "sfsi_icons_float" == s.attr("name") && "no" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2564
- ("sfsi_icons_stick" == s.attr("name") && "yes" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2565
-
2566
- SFSI('input[name="sfsi_icons_float"][value="no"]').prop("checked", !0), SFSI('input[name="sfsi_icons_float"][value="yes"]').prop("checked", !1),
2567
- SFSI('input[name="sfsi_icons_float"][value="no"]').parent().find("span.radio").attr("style", "background-position:0px -41px;"),
2568
- SFSI('input[name="sfsi_icons_float"][value="yes"]').parent().find("span.radio").attr("style", "background-position:0px -0px;"));
2569
-
2570
- }),
2571
-
2572
- SFSI(".sfsi_wDiv").length > 0 && setTimeout(function () {
2573
- var s = parseInt(SFSI(".sfsi_wDiv").height()) + 0 + "px";
2574
- SFSI(".sfsi_holders").each(function () {
2575
- SFSI(this).css("height", s);
2576
- });
2577
- }, 200),
2578
- /*SFSI(".checkbox").live("click", function() {*/
2579
- SFSI(document).on("click", '.checkbox', function () {
2580
- var s = SFSI(this).parent().find("input:checkbox:first");
2581
- ("sfsi_shuffle_Firstload" == s.attr("name") && "checked" == s.attr("checked") || "sfsi_shuffle_interval" == s.attr("name") && "checked" == s.attr("checked")) && (SFSI('input[name="sfsi_shuffle_icons"]').parent().find("span").css("background-position", "0px -36px"),
2582
- SFSI('input[name="sfsi_shuffle_icons"]').attr("checked", "checked")), "sfsi_shuffle_icons" == s.attr("name") && "checked" != s.attr("checked") && (SFSI('input[name="sfsi_shuffle_Firstload"]').removeAttr("checked"),
2583
- SFSI('input[name="sfsi_shuffle_Firstload"]').parent().find("span").css("background-position", "0px 0px"),
2584
- SFSI('input[name="sfsi_shuffle_interval"]').removeAttr("checked"), SFSI('input[name="sfsi_shuffle_interval"]').parent().find("span").css("background-position", "0px 0px"));
2585
- });
2586
-
2587
- SFSI("body").on("click", "#sfsi_getMeFullAccess", function () {
2588
- var email = SFSI(this).parents("form").find("input[type='email']").val();
2589
- var feedid = SFSI(this).parents("form").find("input[name='feed_id']").val();
2590
- var error = false;
2591
- var regEx = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/;
2592
-
2593
- if (email === '') {
2594
- error = true;
2595
- }
2596
-
2597
- if (!regEx.test(email)) {
2598
- error = true;
2599
- }
2600
-
2601
- if (!error) {
2602
- console.log("feedid",feedid);
2603
- if (feedid=="" || undefined==feedid){
2604
- var nonce = SFSI(this).attr('data-nonce-fetch-feed-id');
2605
- e = {
2606
- action: "sfsi_get_feed_id",
2607
- nonce: nonce,
2608
- };
2609
- SFSI.ajax({
2610
- url: sfsi_icon_ajax_object.ajax_url,
2611
- type: "post",
2612
- data: e,
2613
- dataType: "json",
2614
- async: !0,
2615
- success: function (s) {
2616
- if (s.res == "wrong_nonce") {
2617
- alert("Error: Unauthorised Request, Try again after refreshing page.");
2618
- } else {
2619
- if("success" == s.res){
2620
- var feedid = s.feed_id;
2621
- if(feedid=="" || null == feedid){
2622
- alert("Error: Claiming didn't work. Please try again later.")
2623
- }else{
2624
- jQuery('#calimingOptimizationForm input[name="feed_id"]').val(feedid);
2625
- console.log("feedid",feedid,SFSI("#calimingOptimizationForm input[name='feed_id']"),SFSI('#calimingOptimizationForm input[name="feedid"]').val());
2626
- SFSI('#calimingOptimizationForm').submit();
2627
- }
2628
- }else{
2629
- if("failed"==s.res){
2630
- alert("Error: "+s.message+".");
2631
-
2632
- }else{
2633
- alert("Error: Please try again.");
2634
- }
2635
- }
2636
- }
2637
- }
2638
- });
2639
- }else{
2640
- SFSI(this).parents("form").submit();
2641
- }
2642
- } else {
2643
- alert("Error: Please provide your email address.");
2644
- }
2645
- });
2646
-
2647
- SFSI('form#calimingOptimizationForm').on('keypress', function (e) {
2648
- var keyCode = e.keyCode || e.which;
2649
- if (keyCode === 13) {
2650
- e.preventDefault();
2651
- return false;
2652
- }
2653
- });
2654
-
2655
- /*SFSI(".checkbox").live("click", function()
2656
- {
2657
- var s = SFSI(this).parent().find("input:checkbox:first");
2658
- "float_on_page" == s.attr("name") && "yes" == s.val() && (
2659
- SFSI('input[name="sfsi_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_icons_stick"][value="yes"]').removeAttr("checked"),
2660
- SFSI('input[name="sfsi_icons_stick"][value="no"]').parent().find("span").attr("style", "background-position:0px -41px;"),
2661
- SFSI('input[name="sfsi_icons_stick"][value="yes"]').parent().find("span").attr("style", "background-position:0px -0px;"));
2662
- });
2663
- SFSI(".radio").live("click", function()
2664
- {
2665
- var s = SFSI(this).parent().find("input:radio:first");
2666
- var a = SFSI(".cstmfltonpgstck");
2667
- ("sfsi_icons_stick" == s.attr("name") && "yes" == s.val()) && (
2668
- SFSI('input[name="float_on_page"][value="no"]').prop("checked", !0), SFSI('input[name="float_on_page"][value="yes"]').prop("checked", !1),
2669
- SFSI('input[name="float_on_page"][value="no"]').parent().find("span.checkbox").attr("style", "background-position:0px -41px;"),
2670
- SFSI('input[name="float_on_page"][value="yes"]').parent().find("span.checkbox").attr("style", "background-position:0px -0px;"),
2671
- jQuery(a).children(".checkbox").css("background-position", "0px 0px" ), toggleflotpage(a));
2672
- });*/
2673
- window.sfsi_initialization_checkbox_count = 0;
2674
- window.sfsi_initialization_checkbox = setInterval(function () {
2675
- // console.log(jQuery('.radio_section.tb_4_ck>span.checkbox').length,jQuery('.radio_section.tb_4_ck>input.styled').length);
2676
- if (jQuery('.radio_section.tb_4_ck>span.checkbox').length < jQuery('.radio_section.tb_4_ck>input.styled').length) {
2677
- window.sfsi_initialization_checkbox_count++;
2678
- // console.log('not initialized',window.sfsi_initialization_checkbox_count);
2679
- if (window.sfsi_initialization_checkbox_count > 12) {
2680
- // alert('Some script from diffrent plugin is interfearing with "Ultimate Social Icons" js files and checkbox couldn\'t be initialized. ');
2681
- // window.clearInterval(window.sfsi_initialization_checkbox);
2682
- }
2683
- } else {
2684
- // console.log('all initialized',window.sfsi_initialization_checkbox_count);
2685
- window.clearInterval(window.sfsi_initialization_checkbox);
2686
- }
2687
- }, 1000);
2688
- sfsi_responsive_icon_intraction_handler();
2689
-
2690
- });
2691
-
2692
- //for utube channel name and id
2693
- function showhideutube(ref) {
2694
- var chnlslctn = SFSI(ref).children("input").val();
2695
- if (chnlslctn == "name") {
2696
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideDown();
2697
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideUp();
2698
- } else {
2699
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideDown();
2700
- SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideUp();
2701
- }
2702
- }
2703
-
2704
- function checkforinfoslction(ref) {
2705
- var pos = jQuery(ref).children(".checkbox").css("background-position");
2706
-
2707
- var rightInfoClass = jQuery(ref).next().attr('class');
2708
-
2709
- var rightInfoPElem = jQuery(ref).next("." + rightInfoClass).children("p").first();
2710
-
2711
- var elemName = 'label';
2712
-
2713
- if (pos == "0px 0px") {
2714
- rightInfoPElem.children(elemName).hide();
2715
- } else {
2716
- rightInfoPElem.children(elemName).show();
2717
- }
2718
- }
2719
-
2720
- function checkforinfoslction_checkbox(ref) {
2721
-
2722
- var pos = jQuery(ref).children(".checkbox").css("background-position");
2723
-
2724
- var elem = jQuery(ref).parent().children('.sfsi_right_info').find('.kckslctn');
2725
-
2726
- if (pos == "0px 0px") {
2727
- elem.hide();
2728
- } else {
2729
- elem.show();
2730
- }
2731
- }
2732
-
2733
- function sfsi_toggleflotpage_que3(ref) {
2734
- var pos = jQuery(ref).children(".checkbox").css("background-position");
2735
- if (pos == "0px 0px") {
2736
- jQuery(ref).next(".sfsi_right_info").hide();
2737
-
2738
- } else {
2739
- jQuery(ref).next(".sfsi_right_info").show();
2740
- }
2741
- }
2742
-
2743
- var initTop = new Array();
2744
-
2745
- SFSI('.sfsi_navigate_to_question7').on("click", function () {
2746
-
2747
- var elem = SFSI('#ui-id-6');
2748
-
2749
- if (elem.hasClass('accordion-content-active')) {
2750
-
2751
- // Cloase tab of Question 3
2752
- elem.find('.sfsiColbtn').trigger('click');
2753
-
2754
- // Open tab of Question 7
2755
- if (!SFSI('#ui-id-14').hasClass('accordion-content-active')) {
2756
- SFSI('#ui-id-13').trigger('click');
2757
- }
2758
-
2759
- var pos = SFSI("#ui-id-13").offset();
2760
- var scrollToPos = pos.top - SFSI(window).height() * 0.99 + 30;
2761
- SFSI('html,body').animate({
2762
- scrollTop: scrollToPos
2763
- }, 500);
2764
- }
2765
- });
2766
-
2767
- SFSI("body").on("click", ".sfsi_tokenGenerateButton a", function () {
2768
- var clienId = SFSI("input[name='sfsi_instagram_clientid']").val();
2769
- var redirectUrl = SFSI("input[name='sfsi_instagram_appurl']").val();
2770
-
2771
- var scope = "basic";
2772
- var instaUrl = "https://www.instagram.com/oauth/authorize/?client_id=<id>&redirect_uri=<url>&response_type=token&scope=" + scope;
2773
-
2774
- if (clienId !== '' && redirectUrl !== '') {
2775
- instaUrl = instaUrl.replace('<id>', clienId);
2776
- instaUrl = instaUrl.replace('<url>', redirectUrl);
2777
-
2778
- window.open(instaUrl, '_blank');
2779
- } else {
2780
- alert("Please enter client id and redirect url first");
2781
- }
2782
-
2783
- });
2784
- SFSI(document).ready(function () {
2785
- SFSI('#sfsi_jivo_offline_chat .tab-link').click(function () {
2786
- var cur = SFSI(this);
2787
- if (!cur.hasClass('active')) {
2788
- var target = cur.find('a').attr('href');
2789
- cur.parent().children().removeClass('active');
2790
- cur.addClass('active');
2791
- SFSI('#sfsi_jivo_offline_chat .tabs').children().hide();
2792
- SFSI(target).show();
2793
- }
2794
- });
2795
- SFSI('#sfsi_jivo_offline_chat #sfsi_sales form').submit(function (event) {
2796
- event & event.preventDefault();
2797
- // console.log(event);
2798
- var target = SFSI(this).parents('.tab-content');
2799
- var message = SFSI(this).find('textarea[name="question"]').val();
2800
- var email = SFSI(this).find('input[name="email"]').val();
2801
- 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,}))$/;
2802
- var nonce = SFSI(this).find('input[name="nonce"]').val();
2803
-
2804
- if ("" === email || false === re.test(String(email).toLowerCase())) {
2805
- // console.log(SFSI(this).find('input[name="email"]'));
2806
- SFSI(this).find('input[name="email"]').css('background-color', 'red');
2807
- SFSI(this).find('input[name="email"]').on('keyup', function () {
2808
- 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,}))$/;
2809
- var email = SFSI(this).val();
2810
- // console.log(email,re.test(String(email).toLowerCase()) );
2811
- if ("" !== email && true === re.test(String(email).toLowerCase())) {
2812
- SFSI(this).css('background-color', '#fff');
2813
- }
2814
- })
2815
- return false;
2816
-
2817
- }
2818
- SFSI.ajax({
2819
- url: sfsi_icon_ajax_object.ajax_url,
2820
- type: "post",
2821
- data: {
2822
- action: "sfsiOfflineChatMessage",
2823
- message: message,
2824
- email: email,
2825
- 'nonce': nonce
2826
- }
2827
- }).done(function () {
2828
- target.find('.before_message_sent').hide();
2829
- target.find('.after_message_sent').show();
2830
- });
2831
- })
2832
- });
2833
-
2834
- function sfsi_close_offline_chat(e) {
2835
- e && e.preventDefault();
2836
-
2837
- SFSI('#sfsi_jivo_offline_chat').hide();
2838
- SFSI('#sfsi_dummy_chat_icon').show();
2839
- }
2840
-
2841
- function sfsi_open_quick_checkout(e) {
2842
- e && e.preventDefault();
2843
- // console.log(jQuery('.sfsi_quick-pay-box'));
2844
- jQuery('.sfsi_quick-pay-box').show();
2845
- }
2846
-
2847
- function sfsi_close_quickpay(e) {
2848
- e && e.preventDefault();
2849
- jQuery('.sfsi_quickpay-overlay').hide();
2850
- }
2851
-
2852
- function sfsi_quickpay_container_click(event) {
2853
- if (jQuery(event.target).hasClass('sellcodes-quick-purchase')) {
2854
- jQuery(jQuery(event.target).find('p.sc-button img')[0]).click();
2855
- }
2856
- }
2857
-
2858
-
2859
-
2860
- // <------------------------* Responsive icon *----------------------->
2861
-
2862
- function sfsi_responsive_icon_intraction_handler() {
2863
- window.sfsi_fittext_shouldDisplay = true;
2864
- SFSI('select[name="sfsi_responsive_icons_settings_edge_type"]').on('change', function () {
2865
- $target_div = (SFSI(this).parent());
2866
- if (SFSI(this).val() === "Round") {
2867
- console.log('Round', 'Round', SFSI(this).val());
2868
-
2869
- $target_div.parent().children().css('display', 'inline-block');
2870
- $target_div.parent().next().css("display","inline-block");
2871
- var radius = jQuery('select[name="sfsi_responsive_icons_settings_edge_radius"]').val() + 'px'
2872
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', radius);
2873
-
2874
- } else {
2875
- console.log('sharp', 'sharp', SFSI(this).val(), $target_div.parent().children(), $target_div.parent().children().hide());
2876
-
2877
- $target_div.parent().children().hide();
2878
- $target_div.show();
2879
- $target_div.parent().next().hide();
2880
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', 'unset');
2881
-
2882
- }
2883
- });
2884
- SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').on('change', function () {
2885
- $target_div = (SFSI(this).parent());
2886
- if (SFSI(this).val() === "Fixed icon width") {
2887
- $target_div.parent().children().css('display', 'inline-block');
2888
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width', 'auto').css('display', 'flex');
2889
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('flex-basis', 'unset');
2890
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery('input[name="sfsi_responsive_icons_sttings_icon_width_size"]').val());
2891
-
2892
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fully_container').removeClass('sfsi_icons_container_box_fully_container').addClass('sfsi_icons_container_box_fixed_container');
2893
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fixed_container').removeClass('sfsi_icons_container_box_fully_container').addClass('sfsi_icons_container_box_fixed_container');
2894
- window.sfsi_fittext_shouldDisplay = true;
2895
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2896
- if (jQuery(a_container).css('display') !== "none") {
2897
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2898
- }
2899
- })
2900
- } else {
2901
- $target_div.parent().children().hide();
2902
- $target_div.show();
2903
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width', '100%').css('display', 'flex');
2904
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('flex-basis', '100%');
2905
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', '100%');
2906
-
2907
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fixed_container').removeClass('sfsi_icons_container_box_fixed_container').addClass('sfsi_icons_container_box_fully_container');
2908
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fully_container').removeClass('sfsi_icons_container_box_fixed_container').addClass('sfsi_icons_container_box_fully_container');
2909
- window.sfsi_fittext_shouldDisplay = true;
2910
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2911
- if (jQuery(a_container).css('display') !== "none") {
2912
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2913
- }
2914
- })
2915
- }
2916
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').removeClass('sfsi_fixed_count_container').removeClass('sfsi_responsive_count_container').addClass('sfsi_' + (jQuery(this).val() == "Fully responsive" ? 'responsive' : 'fixed') + '_count_container')
2917
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container>a').removeClass('sfsi_responsive_fluid').removeClass('sfsi_responsive_fixed_width').addClass('sfsi_responsive_' + (jQuery(this).val() == "Fully responsive" ? 'fluid' : 'fixed_width'))
2918
- sfsi_resize_icons_container();
2919
-
2920
- })
2921
- jQuery(document).on('keyup', 'input[name="sfsi_responsive_icons_sttings_icon_width_size"]', function () {
2922
- if (SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
2923
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
2924
- window.sfsi_fittext_shouldDisplay = true;
2925
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2926
- if (jQuery(a_container).css('display') !== "none") {
2927
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2928
- }
2929
- })
2930
- }
2931
- sfsi_resize_icons_container();
2932
- });
2933
- jQuery(document).on('change', 'input[name="sfsi_responsive_icons_sttings_icon_width_size"]', function () {
2934
- if (SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
2935
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
2936
- }
2937
- });
2938
- jQuery(document).on('keyup', 'input[name="sfsi_responsive_icons_settings_margin"]', function () {
2939
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
2940
- });
2941
- jQuery(document).on('change', 'input[name="sfsi_responsive_icons_settings_margin"]', function () {
2942
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
2943
- // jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width',(jQuery('.sfsi_responsive_icons').width()-(jQuery('.sfsi_responsive_icons_count').width()+jQuery(this).val()))+'px');
2944
-
2945
- });
2946
- jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_text_align"]', function () {
2947
- if (jQuery(this).val() === "Centered") {
2948
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('text-align', 'center');
2949
- } else {
2950
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('text-align', 'left');
2951
- }
2952
- });
2953
- jQuery('.sfsi_responsive_default_icon_container input.sfsi_responsive_input').on('keyup', function () {
2954
- jQuery(this).parent().find('.sfsi_responsive_icon_item_container').find('span').text(jQuery(this).val());
2955
- var iconName = jQuery(this).attr('name');
2956
- var icon = iconName.replace('sfsi_responsive_', '').replace('_input', '');
2957
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_' + (icon.toLowerCase()) + '_container span').text(jQuery(this).val());
2958
- window.sfsi_fittext_shouldDisplay = true;
2959
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2960
- if (jQuery(a_container).css('display') !== "none") {
2961
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2962
- }
2963
- })
2964
- sfsi_resize_icons_container();
2965
- })
2966
- jQuery('.sfsi_responsive_custom_icon_container input.sfsi_responsive_input').on('keyup', function () {
2967
- jQuery(this).parent().find('.sfsi_responsive_icon_item_container').find('span').text(jQuery(this).val());
2968
- var iconName = jQuery(this).attr('name');
2969
- var icon = iconName.replace('sfsi_responsive_custom_', '').replace('_input', '');
2970
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_' + icon + '_container span').text(jQuery(this).val())
2971
- window.sfsi_fittext_shouldDisplay = true;
2972
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2973
- if (jQuery(a_container).css('display') !== "none") {
2974
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2975
- }
2976
- })
2977
- sfsi_resize_icons_container();
2978
-
2979
- })
2980
-
2981
- jQuery('.sfsi_responsive_default_url_toggler').click(function (event) {
2982
-
2983
- event.preventDefault();
2984
- sfsi_responsive_open_url(event);
2985
- });
2986
- jQuery('.sfsi_responsive_default_url_toggler').click(function (event) {
2987
- event.preventDefault();
2988
- sfsi_responsive_open_url(event);
2989
- })
2990
- jQuery('.sfsi_responsive_custom_url_hide, .sfsi_responsive_default_url_hide').click(function (event) {
2991
- event.preventDefault();
2992
- /* console.log(event,jQuery(event.target)); */
2993
- jQuery(event.target).parent().parent().find('.sfsi_responsive_custom_url_hide').hide();
2994
- jQuery(event.target).parent().parent().find('.sfsi_responsive_url_input').hide();
2995
- jQuery(event.target).parent().parent().find('.sfsi_responsive_default_url_hide').hide();
2996
- jQuery(event.target).parent().parent().find('.sfsi_responsive_default_url_toggler').show();
2997
- });
2998
- jQuery('select[name="sfsi_responsive_icons_settings_icon_size"]').change(function (event) {
2999
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').removeClass('sfsi_small_button').removeClass('sfsi_medium_button').removeClass('sfsi_large_button').addClass('sfsi_' + (jQuery(this).val().toLowerCase()) + '_button');
3000
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_small_button_container').removeClass('sfsi_medium_button_container').removeClass('sfsi_large_button_container').addClass('sfsi_' + (jQuery(this).val().toLowerCase()) + '_button_container')
3001
- })
3002
- jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_edge_radius"]', function (event) {
3003
- var radius = jQuery(this).val() + 'px'
3004
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', radius);
3005
-
3006
- });
3007
- jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_style"]', function (event) {
3008
- if ('Flat' === jQuery(this).val()) {
3009
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_responsive_icon_gradient');
3010
- } else {
3011
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').addClass('sfsi_responsive_icon_gradient');
3012
- }
3013
- });
3014
- jQuery(document).on('mouseenter', '.sfsi_responsive_icon_preview .sfsi_icons_container a', function () {
3015
- jQuery(this).css('opacity', 0.8);
3016
- })
3017
- jQuery(document).on('mouseleave', '.sfsi_responsive_icon_preview .sfsi_icons_container a', function () {
3018
- jQuery(this).css('opacity', 1);
3019
- })
3020
- window.sfsi_fittext_shouldDisplay = true;
3021
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3022
- if (jQuery(a_container).css('display') !== "none") {
3023
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3024
- }
3025
- })
3026
- sfsi_resize_icons_container();
3027
- jQuery('.ui-accordion-header.ui-state-default.ui-accordion-icons').click(function (data) {
3028
- window.sfsi_fittext_shouldDisplay = true;
3029
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3030
- if (jQuery(a_container).css('display') !== "none") {
3031
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3032
- }
3033
- })
3034
- sfsi_resize_icons_container();
3035
- });
3036
- jQuery('select[name="sfsi_responsive_icons_settings_text_align"]').change(function (event) {
3037
- var data = jQuery(event.target).val();
3038
- if (data == "Centered") {
3039
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_left-align_icon').addClass('sfsi_centered_icon');
3040
- } else {
3041
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_centered_icon').addClass('sfsi_left-align_icon');
3042
- }
3043
- });
3044
- jQuery('a.sfsi_responsive_custom_delete_btn').click(function (event) {
3045
- event.preventDefault();
3046
- var icon_num = jQuery(this).attr('data-id');
3047
- //reset the current block;
3048
- // var last_block = jQuery('.sfsi_responsive_custom_icon_4_container').clone();
3049
- var cur_block = jQuery('.sfsi_responsive_custom_icon_' + icon_num + '_container');
3050
- cur_block.find('.sfsi_responsive_custom_delete_btn').hide();
3051
- cur_block.find('input[name="sfsi_responsive_custom_' + icon_num + '_added"]').val('no');
3052
- cur_block.find('.sfsi_responsive_custom_' + icon_num + '_added').attr('value', 'no');
3053
- cur_block.find('.radio_section.tb_4_ck .checkbox').click();
3054
- cur_block.hide();
3055
-
3056
-
3057
- if (icon_num > 0) {
3058
- var prev_block = jQuery('.sfsi_responsive_custom_icon_' + (icon_num - 1) + '_container');
3059
- prev_block.find('.sfsi_responsive_custom_delete_btn').show();
3060
- }
3061
- // jQuery('.sfsi_responsive_custom_icon_container').each(function(index,custom_icon){
3062
- // var target= jQuery(custom_icon);
3063
- // target.find('.sfsi_responsive_custom_delete_btn');
3064
- // var custom_id = target.find('.sfsi_responsive_custom_delete_btn').attr('data-id');
3065
- // if(custom_id>icon_num){
3066
- // target.removeClass('sfsi_responsive_custom_icon_'+custom_id+'_container').addClass('sfsi_responsive_custom_icon_'+(custom_id-1)+'_container');
3067
- // target.find('input[name="sfsi_responsive_custom_'+custom_id+'_added"]').attr('name',"sfsi_responsive_custom_"+(custom_id-1)+"_added");
3068
- // target.find('#sfsi_responsive_'+custom_id+'_display').removeClass('sfsi_responsive_custom_'+custom_id+'_display').addClass('sfsi_responsive_custom_'+(custom_id-1)+'_display').attr('id','sfsi_responsive_'+(custom_id-1)+'_display').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_display').attr('data-custom-index',(custom_id-1));
3069
- // target.find('.sfsi_responsive_icon_item_container').removeClass('sfsi_responsive_icon_custom_'+custom_id+'_container').addClass('sfsi_responsive_icon_custom_'+(custom_id-1)+'_container');
3070
- // target.find('.sfsi_responsive_input').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_input');
3071
- // target.find('.sfsi_responsive_url_input').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_url_input');
3072
- // target.find('.sfsi_bg-color-picker').attr('name','sfsi_responsive_icon_'+(custom_id-1)+'_bg_color');
3073
- // target.find('.sfsi_logo_upload sfsi_logo_custom_'+custom_id+'_upload').removeClass('sfsi_logo_upload sfsi_logo_custom_'+custom_id+'_upload').addClass('sfsi_logo_upload sfsi_logo_custom_'+(custom_id-1)+'_upload');
3074
- // target.find('input[type="sfsi_responsive_icons_custom_'+custom_id+'_icon"]').attr('name','input[type="sfsi_responsive_icons_custom_'+(custom_id-1)+'_icon"]');
3075
- // target.find('.sfsi_responsive_custom_delete_btn').attr('data-id',''+(custom_id-1));
3076
- // }
3077
- // });
3078
- // // sfsi_backend_section_beforeafter_set_fixed_width();
3079
- // // jQuery(window).on('resize',sfsi_backend_section_beforeafter_set_fixed_width);
3080
- // var new_block=jQuery('.sfsi_responsive_custom_icon_container').clone();
3081
- // jQuery('.sfsi_responsive_custom_icon_container').remove();
3082
- // jQuery('.sfsi_responsive_default_icon_container').parent().append(last_block).append();
3083
- // jQuery('.sfsi_responsive_default_icon_container').parent().append(new_block);
3084
- // return false;
3085
- })
3086
- }
3087
-
3088
- function sfsi_responsive_icon_counter_tgl(hide, show, ref = null) {
3089
- if (null !== hide && '' !== hide) {
3090
- jQuery('.' + hide).hide();
3091
- }
3092
- if (null !== show && '' !== show) {
3093
- jQuery('.' + show).show();
3094
- }
3095
- }
3096
-
3097
- function sfsi_responsive_toggle_count() {
3098
- var data = jQuery('input[name="sfsi_share_count"]:checked').val();
3099
- var data2 = jQuery('input[name="sfsi_display_counts"]:checked').val();
3100
- /* console.log('toggleer ',data,data2); */
3101
- if (data2 == "yes" && 'yes' == data) {
3102
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('display', 'inline-block');
3103
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_responsive_without_counter_icons').addClass('sfsi_responsive_with_counter_icons');
3104
- sfsi_resize_icons_container();
3105
- } else {
3106
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('display', 'none');
3107
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_responsive_with_counter_icons').addClass('sfsi_responsive_without_counter_icons');
3108
- sfsi_resize_icons_container();
3109
- }
3110
- }
3111
-
3112
- function sfsi_responsive_open_url(event) {
3113
- jQuery(event.target).parent().find('.sfsi_responsive_custom_url_hide').show();
3114
- jQuery(event.target).parent().find('.sfsi_responsive_default_url_hide').show();
3115
- jQuery(event.target).parent().find('.sfsi_responsive_url_input').show();
3116
- jQuery(event.target).hide();
3117
- }
3118
-
3119
- function sfsi_responsive_icon_hide_responsive_options() {
3120
- jQuery('.sfsi_PostsSettings_section').show();
3121
- jQuery('.sfsi_choose_post_types_section').show();
3122
- jQuery('.sfsi_not_responsive').show();
3123
- // jQuery('.sfsi_icn_listing8.sfsi_closerli').hide();
3124
- }
3125
-
3126
- function sfsi_responsive_icon_show_responsive_options() {
3127
- jQuery('.sfsi_PostsSettings_section').hide();
3128
- // jQuery('.sfsi_PostsSettings_section').show();
3129
- jQuery('.sfsi_choose_post_types_section').hide();
3130
- jQuery('.sfsi_not_responsive').hide();
3131
- window.sfsi_fittext_shouldDisplay = true;
3132
- jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3133
- if (jQuery(a_container).css('display') !== "none") {
3134
- sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3135
- }
3136
- })
3137
- sfsi_resize_icons_container();
3138
- }
3139
-
3140
- function sfsi_scroll_to_div(option_id, scroll_selector) {
3141
- jQuery('#' + option_id + '.ui-accordion-header[aria-selected="false"]').click() //opened the option
3142
- //scroll to it.
3143
- if (scroll_selector && scroll_selector !== '') {
3144
- scroll_selector = scroll_selector;
3145
- } else {
3146
- scroll_selector = '#' + option_id + '.ui-accordion-header';
3147
- }
3148
- jQuery('html, body').stop().animate({
3149
- scrollTop: jQuery(scroll_selector).offset().top
3150
- }, 1000);
3151
- }
3152
-
3153
- function sfsi_fitText(container) {
3154
- /* console.log(container,container.parent().parent(),container.parent().parent().hasClass('sfsi_icons_container_box_fixed_container')); */
3155
- if (container.parent().parent().hasClass('sfsi_icons_container_box_fixed_container')) {
3156
- /* console.log(window.sfsi_fittext_shouldDisplay); */
3157
- if (window.sfsi_fittext_shouldDisplay === true) {
3158
- if (jQuery('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() == "Fully responsive") {
3159
- var all_icon_width = jQuery('.sfsi_responsive_icons .sfsi_icons_container').width();
3160
- var total_active_icons = jQuery('.sfsi_responsive_icons .sfsi_icons_container a').filter(function (i, icon) {
3161
- return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3162
- }).length;
3163
-
3164
- var distance_between_icon = jQuery('input[name="sfsi_responsive_icons_settings_margin"]').val()
3165
- var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3166
- container_width = (container_width - distance_between_icon);
3167
- } else {
3168
- var container_width = container.width();
3169
- }
3170
- // var container_img_width = container.find('img').width();
3171
- var container_img_width = 70;
3172
- // var span=container.find('span').clone();
3173
- var span = container.find('span');
3174
- // var span_original_width = container.find('span').width();
3175
- var span_original_width = container_width - (container_img_width)
3176
- span
3177
- // .css('display','inline-block')
3178
- .css('white-space', 'nowrap')
3179
- // .css('width','auto')
3180
- ;
3181
- var span_flatted_width = span.width();
3182
- if (span_flatted_width == 0) {
3183
- span_flatted_width = span_original_width;
3184
- }
3185
- span
3186
- // .css('display','inline-block')
3187
- .css('white-space', 'unset')
3188
- // .css('width','auto')
3189
- ;
3190
- var shouldDisplay = ((undefined === window.sfsi_fittext_shouldDisplay) ? true : window.sfsi_fittext_shouldDisplay = true);
3191
- var fontSize = parseInt(span.css('font-size'));
3192
-
3193
- if (6 > fontSize) {
3194
- fontSize = 20;
3195
- }
3196
-
3197
- var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3198
-
3199
- if (computed_fontSize < 8) {
3200
- shouldDisplay = false;
3201
- window.sfsi_fittext_shouldDisplay = false;
3202
- computed_fontSize = 20;
3203
- }
3204
- span.css('font-size', Math.min(computed_fontSize, 20));
3205
- span
3206
- // .css('display','inline-block')
3207
- .css('white-space', 'nowrap')
3208
- // .css('width','auto')
3209
- ;
3210
- if (shouldDisplay) {
3211
- span.show();
3212
- } else {
3213
- span.hide();
3214
- jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container span').hide();
3215
- }
3216
- }
3217
- } else {
3218
- var span = container.find('span');
3219
- /* console.log(span); */
3220
- span.css('font-size', 'initial');
3221
- span.show();
3222
- }
3223
-
3224
- }
3225
-
3226
- function sfsi_fixedWidth_fitText(container) {
3227
- return;
3228
- /* console.log(sfsi_fittext_shouldDisplay); */
3229
- if (window.sfsi_fittext_shouldDisplay === true) {
3230
- if (jQuery('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() == "Fixed icon width") {
3231
- var all_icon_width = jQuery('.sfsi_responsive_icons .sfsi_icons_container').width();
3232
- var total_active_icons = jQuery('.sfsi_responsive_icons .sfsi_icons_container a').filter(function (i, icon) {
3233
- return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3234
- }).length;
3235
- var distance_between_icon = jQuery('input[name="sfsi_responsive_icons_settings_margin"]').val()
3236
- var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3237
- container_width = (container_width - distance_between_icon);
3238
- } else {
3239
- var container_width = container.width();
3240
- }
3241
- // var container_img_width = container.find('img').width();
3242
- var container_img_width = 70;
3243
- // var span=container.find('span').clone();
3244
- var span = container.find('span');
3245
- // var span_original_width = container.find('span').width();
3246
- var span_original_width = container_width - (container_img_width)
3247
- span
3248
- // .css('display','inline-block')
3249
- .css('white-space', 'nowrap')
3250
- // .css('width','auto')
3251
- ;
3252
- var span_flatted_width = span.width();
3253
- if (span_flatted_width == 0) {
3254
- span_flatted_width = span_original_width;
3255
- }
3256
- span
3257
- // .css('display','inline-block')
3258
- .css('white-space', 'unset')
3259
- // .css('width','auto')
3260
- ;
3261
- var shouldDisplay = undefined === window.sfsi_fittext_shouldDisplay ? true : window.sfsi_fittext_shouldDisplay = true;;
3262
- var fontSize = parseInt(span.css('font-size'));
3263
-
3264
- if (6 > fontSize) {
3265
- fontSize = 15;
3266
- }
3267
-
3268
- var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3269
-
3270
- if (computed_fontSize < 8) {
3271
- shouldDisplay = false;
3272
- window.sfsi_fittext_shouldDisplay = false;
3273
- computed_fontSize = 15;
3274
- }
3275
- span.css('font-size', Math.min(computed_fontSize, 15));
3276
- span
3277
- // .css('display','inline-block')
3278
- .css('white-space', 'nowrap')
3279
- // .css('width','auto')
3280
- ;
3281
- // var heightOfResIcons = jQuery('.sfsi_responsive_icon_item_container').height();
3282
-
3283
- // if(heightOfResIcons < 17){
3284
- // span.show();
3285
- // }else{
3286
- // span.hide();
3287
- // }
3288
-
3289
- if (shouldDisplay) {
3290
- span.show();
3291
- } else {
3292
- span.hide();
3293
- }
3294
- }
3295
- }
3296
-
3297
- function sfsi_resize_icons_container() {
3298
- // resize icon container based on the size of count
3299
- sfsi_cloned_icon_list = jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').clone();
3300
- sfsi_cloned_icon_list.removeClass('.sfsi_responsive_icon_preview .sfsi_responsive_with_counter_icons').addClass('sfsi_responsive_cloned_list');
3301
- sfsi_cloned_icon_list.css('width', '100%');
3302
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').parent().append(sfsi_cloned_icon_list);
3303
-
3304
- // sfsi_cloned_icon_list.css({
3305
- // position: "absolute",
3306
- // left: "-10000px"
3307
- // }).appendTo("body");
3308
- actual_width = sfsi_cloned_icon_list.width();
3309
- count_width = jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').width();
3310
- jQuery('.sfsi_responsive_cloned_list').remove();
3311
- sfsi_inline_style = jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').attr('style');
3312
- // remove_width
3313
- sfsi_inline_style = sfsi_inline_style.replace(/width:auto($|!important|)(;|$)/g, '').replace(/width:\s*(-|)\d*\s*(px|%)\s*($|!important|)(;|$)/g, '');
3314
- if (!(jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').hasClass('sfsi_responsive_without_counter_icons') && jQuery('.sfsi_icons_container').hasClass('sfsi_icons_container_box_fixed_container'))) {
3315
- sfsi_inline_style += "width:" + (actual_width - count_width - 1) + 'px!important;'
3316
- } else {
3317
- sfsi_inline_style += "width:auto!important;";
3318
- }
3319
- jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').attr('style', sfsi_inline_style);
3320
-
3321
- }
3322
-
3323
- function sfsi_togglbtmsection(show, hide, ref) {
3324
- console.log(show,hide);
3325
- jQuery(ref).parent("ul").children("li.clckbltglcls").each(function (index, element) {
3326
- jQuery(this).children(".radio").css("background-position", "0px 0px");
3327
- jQuery(this).children(".styled").attr("checked", "false");
3328
- });
3329
- jQuery(ref).children(".radio").css("background-position", "0px -41px");
3330
- jQuery(ref).children(".styled").attr("checked", "true");
3331
- console.log(show,hide);
3332
-
3333
- jQuery("." + show).show();
3334
- jQuery("." + show).children(".radiodisplaysection").show();
3335
- jQuery("." + hide).hide();
3336
- jQuery("." + hide).children(".radiodisplaysection").hide();
3337
- }
3338
- jQuery(document).ready(function(){
3339
- var sfsi_functions_loaded = new CustomEvent('sfsi_functions_loaded',{detail:{"abc":"def"}});
3340
- window.dispatchEvent(sfsi_functions_loaded);
3341
- });
 
 
1
+ function sfsi_update_index() {
2
+ var s = 1;
3
+ SFSI("ul.icn_listing li.custom").each(function () {
4
+ SFSI(this).children("span.custom-txt").html("Custom " + s), s++;
5
+ }), cntt = 1, SFSI("div.cm_lnk").each(function () {
6
+ SFSI(this).find("h2.custom").find("span.sfsiCtxt").html("Custom " + cntt + ":"),
7
+ cntt++;
8
+ }), cntt = 1, SFSI("div.custom_m").find("div.custom_section").each(function () {
9
+ SFSI(this).find("label").html("Custom " + cntt + ":"), cntt++;
10
+ });
11
+ }
12
+
13
+ function sfsicollapse(s) {
14
+ var i = !0,
15
+ e = SFSI(s).closest("div.ui-accordion-content").prev("h3.ui-accordion-header"),
16
+ t = SFSI(s).closest("div.ui-accordion-content").first();
17
+ e.toggleClass("ui-corner-all", i).toggleClass("accordion-header-active ui-state-active ui-corner-top", !i).attr("aria-selected", (!i).toString()),
18
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", i).toggleClass("ui-icon-triangle-1-s", !i),
19
+ t.toggleClass("accordion-content-active", !i), i ? t.slideUp() : t.slideDown();
20
+ }
21
+
22
+ function sfsi_delete_CusIcon(s, i) {
23
+ beForeLoad();
24
+ var e = {
25
+ action: "deleteIcons",
26
+ icon_name: i.attr("name"),
27
+ nonce: SFSI(i).parents('.custom').find('input[name="nonce"]').val()
28
+ };
29
+ SFSI.ajax({
30
+ url: sfsi_icon_ajax_object.ajax_url,
31
+ type: "post",
32
+ data: e,
33
+ dataType: "json",
34
+ success: function (e) {
35
+ if ("success" == e.res) {
36
+ showErrorSuc("success", "Saved !", 1);
37
+ var t = e.last_index + 1;
38
+ SFSI("#total_cusotm_icons").val(e.total_up), SFSI(s).closest(".custom").remove(),
39
+ SFSI("li.custom:last-child").addClass("bdr_btm_non"), SFSI(".custom-links").find("div." + i.attr("name")).remove(),
40
+ SFSI(".custom_m").find("div." + i.attr("name")).remove(), SFSI(".share_icon_order").children("li." + i.attr("name")).remove(),
41
+ SFSI("ul.sfsi_sample_icons").children("li." + i.attr("name")).remove();
42
+
43
+ if (e.total_up == 0) {
44
+ SFSI(".notice_custom_icons_premium").hide();
45
+ }
46
+ var n = e.total_up + 1;
47
+ 4 == e.total_up && SFSI(".icn_listing").append('<li id="c' + t + '" class="custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style=" 0px 0px;"></span><input name="sfsiICON_' + t + '_display" type="checkbox" value="yes" class="styled" style="display:none;" isNew="yes" /></div> <span class="custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="CImg_' + t + '" alt="error" /> </span> <span class="custom custom-txt">Custom' + n + ' </span> <div class="right_info"> <p><span>It depends:</span> Upload a custom icon if you have other accounts/websites you want to link to.</p><div class="inputWrapper"></div></li>');
48
+ } else showErrorSuc("error", "Unkown error , please try again", 1);
49
+ return sfsi_update_index(), update_Sec5Iconorder(), sfsi_update_step1(), sfsi_update_step5(),
50
+ afterLoad(), "suc";
51
+ }
52
+ });
53
+ }
54
+
55
+ function update_Sec5Iconorder() {
56
+ SFSI("ul.share_icon_order").children("li").each(function () {
57
+ SFSI(this).attr("data-index", SFSI(this).index() + 1);
58
+ });
59
+ }
60
+
61
+ function sfsi_section_Display(s, i) {
62
+ "hide" == i ? (SFSI("." + s + " :input").prop("disabled", !0), SFSI("." + s + " :button").prop("disabled", !0),
63
+ SFSI("." + s).hide()) : (SFSI("." + s + " :input").removeAttr("disabled", !0), SFSI("." + s + " :button").removeAttr("disabled", !0),
64
+ SFSI("." + s).show());
65
+ }
66
+
67
+ function sfsi_depened_sections() {
68
+ if ("sfsi" == SFSI("input[name='sfsi_rss_icons']:checked").val()) {
69
+ for (i = 0; 16 > i; i++) {
70
+ var s = i + 1,
71
+ e = 74 * i;
72
+ SFSI(".row_" + s + "_2").css("background-position", "-588px -" + e + "px");
73
+ }
74
+ var t = SFSI(".icon_img").attr("src");
75
+ if (t) {
76
+ if (t.indexOf("subscribe") != -1) {
77
+ var n = t.replace("subscribe.png", "sf_arow_icn.png");
78
+ } else {
79
+ var n = t.replace("email.png", "sf_arow_icn.png");
80
+ }
81
+ SFSI(".icon_img").attr("src", n);
82
+ }
83
+ } else {
84
+ if ("email" == SFSI("input[name='sfsi_rss_icons']:checked").val()) {
85
+ for (SFSI(".row_1_2").css("background-position", "-58px 0"), i = 0; 16 > i; i++) {
86
+ var s = i + 1,
87
+ e = 74 * i;
88
+ SFSI(".row_" + s + "_2").css("background-position", "-58px -" + e + "px");
89
+ }
90
+ var t = SFSI(".icon_img").attr("src");
91
+ if (t) {
92
+ if (t.indexOf("sf_arow_icn") != -1) {
93
+ var n = t.replace("sf_arow_icn.png", "email.png");
94
+ } else {
95
+ var n = t.replace("subscribe.png", "email.png");
96
+ }
97
+ SFSI(".icon_img").attr("src", n);
98
+ }
99
+ } else {
100
+ for (SFSI(".row_1_2").css("background-position", "-649px 0"), i = 0; 16 > i; i++) {
101
+ var s = i + 1,
102
+ e = 74 * i;
103
+ SFSI(".row_" + s + "_2").css("background-position", "-649px -" + e + "px");
104
+ }
105
+ var t = SFSI(".icon_img").attr("src");
106
+ if (t) {
107
+ if (t.indexOf("email") != -1) {
108
+ var n = t.replace("email.png", "subscribe.png");
109
+ } else {
110
+ var n = t.replace("sf_arow_icn.png", "subscribe.png");
111
+ }
112
+ SFSI(".icon_img").attr("src", n);
113
+ }
114
+ }
115
+ }
116
+ SFSI("input[name='sfsi_rss_display']").prop("checked") ? sfsi_section_Display("rss_section", "show") : sfsi_section_Display("rss_section", "hide"),
117
+ SFSI("input[name='sfsi_email_display']").prop("checked") ? sfsi_section_Display("email_section", "show") : sfsi_section_Display("email_section", "hide"),
118
+ SFSI("input[name='sfsi_facebook_display']").prop("checked") ? sfsi_section_Display("facebook_section", "show") : sfsi_section_Display("facebook_section", "hide"),
119
+ SFSI("input[name='sfsi_twitter_display']").prop("checked") ? sfsi_section_Display("twitter_section", "show") : sfsi_section_Display("twitter_section", "hide"),
120
+ SFSI("input[name='sfsi_youtube_display']").prop("checked") ? sfsi_section_Display("youtube_section", "show") : sfsi_section_Display("youtube_section", "hide"),
121
+ SFSI("input[name='sfsi_pinterest_display']").prop("checked") ? sfsi_section_Display("pinterest_section", "show") : sfsi_section_Display("pinterest_section", "hide"),
122
+ SFSI("input[name='sfsi_telegram_display']").prop("checked") ? sfsi_section_Display("telegram_section", "show") : sfsi_section_Display("telegram_section", "hide"),
123
+ SFSI("input[name='sfsi_vk_display']").prop("checked") ? sfsi_section_Display("vk_section", "show") : sfsi_section_Display("vk_section", "hide"),
124
+ SFSI("input[name='sfsi_ok_display']").prop("checked") ? sfsi_section_Display("ok_section", "show") : sfsi_section_Display("ok_section", "hide"),
125
+ SFSI("input[name='sfsi_wechat_display']").prop("checked") ? sfsi_section_Display("wechat_section", "show") : sfsi_section_Display("wechat_section", "hide"),
126
+ SFSI("input[name='sfsi_weibo_display']").prop("checked") ? sfsi_section_Display("weibo_section", "show") : sfsi_section_Display("weibo_section", "hide"),
127
+ SFSI("input[name='sfsi_instagram_display']").prop("checked") ? sfsi_section_Display("instagram_section", "show") : sfsi_section_Display("instagram_section", "hide"),
128
+ SFSI("input[name='sfsi_linkedin_display']").prop("checked") ? sfsi_section_Display("linkedin_section", "show") : sfsi_section_Display("linkedin_section", "hide"),
129
+ SFSI("input[element-type='cusotm-icon']").prop("checked") ? sfsi_section_Display("custom_section", "show") : sfsi_section_Display("custom_section", "hide");
130
+ }
131
+
132
+ function CustomIConSectionsUpdate() {
133
+ sfsi_section_Display("counter".ele, show);
134
+ }
135
+
136
+ // Upload Custom Skin {Monad}
137
+ function sfsi_customskin_upload(s, ref, nonce) {
138
+ var ttl = jQuery(ref).attr("title");
139
+ var i = s,
140
+ e = {
141
+ action: "UploadSkins",
142
+ custom_imgurl: i,
143
+ nonce: nonce
144
+ };
145
+ SFSI.ajax({
146
+ url: sfsi_icon_ajax_object.ajax_url,
147
+ type: "post",
148
+ data: e,
149
+ success: function (msg) {
150
+ if (msg.res = "success") {
151
+ var arr = s.split('=');
152
+ jQuery(ref).prev('.imgskin').attr('src', arr[1]);
153
+ jQuery(ref).prev('.imgskin').css("display", "block");
154
+ jQuery(ref).text("Update");
155
+ jQuery(ref).next('.dlt_btn').css("display", "block");
156
+ }
157
+ }
158
+ });
159
+ }
160
+
161
+ // Delete Custom Skin {Monad}
162
+ function deleteskin_icon(s) {
163
+ var iconname = jQuery(s).attr("title");
164
+ var nonce = jQuery(s).attr("data-nonce");
165
+ var i = iconname,
166
+ e = {
167
+ action: "DeleteSkin",
168
+ iconname: i,
169
+ nonce: nonce
170
+ };
171
+ console.log('delete sin icon', i, iconname, nonce);
172
+ SFSI.ajax({
173
+ url: sfsi_icon_ajax_object.ajax_url,
174
+ type: "post",
175
+ data: e,
176
+ dataType: "json",
177
+ success: function (msg) {
178
+ console.log(s, e, msg);
179
+
180
+ if (msg.res === "success") {
181
+ SFSI(s).prev("a").text("Upload");
182
+ SFSI(s).prev("a").prev("img").attr("src", '');
183
+ SFSI(s).prev("a").prev("img").css("display", "none");
184
+ SFSI(s).css("display", "none");
185
+ } else {
186
+ alert("Whoops! something went wrong.")
187
+ }
188
+ }
189
+ });
190
+ }
191
+
192
+ // Save Custom Skin {Monad}
193
+ function SFSI_done(nonce) {
194
+ e = {
195
+ action: "Iamdone",
196
+ nonce: nonce
197
+ };
198
+
199
+ SFSI.ajax({
200
+ url: sfsi_icon_ajax_object.ajax_url,
201
+ type: "post",
202
+ data: e,
203
+ success: function (msg) {
204
+ if (msg.res === "success") {
205
+
206
+
207
+ jQuery("li.cstomskins_upload").children(".icns_tab_3").html(msg);
208
+ SFSI("input[name='sfsi_rss_display']").prop("checked") ? sfsi_section_Display("rss_section", "show") : sfsi_section_Display("rss_section", "hide"), SFSI("input[name='sfsi_email_display']").prop("checked") ? sfsi_section_Display("email_section", "show") : sfsi_section_Display("email_section", "hide"), SFSI("input[name='sfsi_facebook_display']").prop("checked") ? sfsi_section_Display("facebook_section", "show") : sfsi_section_Display("facebook_section", "hide"), SFSI("input[name='sfsi_twitter_display']").prop("checked") ? sfsi_section_Display("twitter_section", "show") : sfsi_section_Display("twitter_section", "hide"), SFSI("input[name='sfsi_youtube_display']").prop("checked") ? sfsi_section_Display("youtube_section", "show") : sfsi_section_Display("youtube_section", "hide"), SFSI("input[name='sfsi_pinterest_display']").prop("checked") ? sfsi_section_Display("pinterest_section", "show") : sfsi_section_Display("pinterest_section", "hide"), SFSI("input[name='sfsi_instagram_display']").prop("checked") ? sfsi_section_Display("instagram_section", "show") : sfsi_section_Display("instagram_section", "hide"), SFSI("input[name='sfsi_linkedin_display']").prop("checked") ? sfsi_section_Display("linkedin_section", "show") : sfsi_section_Display("linkedin_section", "hide"), SFSI("input[element-type='cusotm-icon']").prop("checked") ? sfsi_section_Display("custom_section", "show") : sfsi_section_Display("custom_section", "hide");
209
+ SFSI(".cstmskins-overlay").hide("slow");
210
+ sfsi_update_step3() && sfsicollapse(this);
211
+ }
212
+ }
213
+ });
214
+ }
215
+
216
+ // Upload Custom Icons {Monad}
217
+ function sfsi_newcustomicon_upload(s, nonce, nonce2) {
218
+ var i = s,
219
+ e = {
220
+ action: "UploadIcons",
221
+ custom_imgurl: i,
222
+ nonce: nonce
223
+ };
224
+ SFSI.ajax({
225
+ url: sfsi_icon_ajax_object.ajax_url,
226
+ type: "post",
227
+ data: e,
228
+ dataType: "json",
229
+ async: !0,
230
+ success: function (s) {
231
+ if (s.res == 'success') {
232
+ afterIconSuccess(s, nonce2);
233
+ } else {
234
+ SFSI(".upload-overlay").hide("slow");
235
+ SFSI(".uperror").html(s.res);
236
+ showErrorSuc("Error", "Some Error Occured During Upload Custom Icon", 1)
237
+ }
238
+ }
239
+ });
240
+ }
241
+
242
+ function sfsi_update_step1() {
243
+ var nonce = SFSI("#sfsi_save1").attr("data-nonce");
244
+ global_error = 0, beForeLoad(), sfsi_depened_sections();
245
+ var s = !1,
246
+ i = SFSI("input[name='sfsi_rss_display']:checked").val(),
247
+ e = SFSI("input[name='sfsi_email_display']:checked").val(),
248
+ t = SFSI("input[name='sfsi_facebook_display']:checked").val(),
249
+ n = SFSI("input[name='sfsi_twitter_display']:checked").val(),
250
+ r = SFSI("input[name='sfsi_youtube_display']:checked").val(),
251
+ c = SFSI("input[name='sfsi_pinterest_display']:checked").val(),
252
+ p = SFSI("input[name='sfsi_linkedin_display']:checked").val(),
253
+ tg = SFSI("input[name='sfsi_telegram_display']:checked").val(),
254
+ vk = SFSI("input[name='sfsi_vk_display']:checked").val(),
255
+ ok = SFSI("input[name='sfsi_ok_display']:checked").val(),
256
+ wc = SFSI("input[name='sfsi_wechat_display']:checked").val(),
257
+ wb = SFSI("input[name='sfsi_weibo_display']:checked").val(),
258
+ _ = SFSI("input[name='sfsi_instagram_display']:checked").val(),
259
+ l = SFSI("input[name='sfsi_custom1_display']:checked").val(),
260
+ S = SFSI("input[name='sfsi_custom2_display']:checked").val(),
261
+ u = SFSI("input[name='sfsi_custom3_display']:checked").val(),
262
+ f = SFSI("input[name='sfsi_custom4_display']:checked").val(),
263
+ d = SFSI("input[name='sfsi_custom5_display']:checked").val(),
264
+ I = {
265
+ action: "updateSrcn1",
266
+ sfsi_rss_display: i,
267
+ sfsi_email_display: e,
268
+ sfsi_facebook_display: t,
269
+ sfsi_twitter_display: n,
270
+ sfsi_youtube_display: r,
271
+ sfsi_pinterest_display: c,
272
+ sfsi_linkedin_display: p,
273
+ sfsi_telegram_display: tg,
274
+ sfsi_vk_display: vk,
275
+ sfsi_ok_display: ok,
276
+ sfsi_wechat_display: wc,
277
+ sfsi_weibo_display: wb,
278
+ sfsi_instagram_display: _,
279
+ sfsi_custom1_display: l,
280
+ sfsi_custom2_display: S,
281
+ sfsi_custom3_display: u,
282
+ sfsi_custom4_display: f,
283
+ sfsi_custom5_display: d,
284
+ nonce: nonce
285
+ };
286
+ SFSI.ajax({
287
+ url: sfsi_icon_ajax_object.ajax_url,
288
+ type: "post",
289
+ data: I,
290
+ async: !0,
291
+ dataType: "json",
292
+ success: function (i) {
293
+ if (i == "wrong_nonce") {
294
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 1);
295
+ s = !1;
296
+ afterLoad();
297
+ } else {
298
+ "success" == i ? (showErrorSuc("success", "Saved !", 1), sfsicollapse("#sfsi_save1"),
299
+ sfsi_make_popBox()) : (global_error = 1, showErrorSuc("error", "Unkown error , please try again", 1),
300
+ s = !1), afterLoad();
301
+ }
302
+ }
303
+ });
304
+ }
305
+
306
+ function sfsi_update_step2() {
307
+
308
+ var nonce = SFSI("#sfsi_save2").attr("data-nonce");
309
+ var s = sfsi_validationStep2();
310
+ if (!s) return global_error = 1, !1;
311
+ beForeLoad();
312
+ var i = 1 == SFSI("input[name='sfsi_rss_url']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_url']").val(),
313
+ e = 1 == SFSI("input[name='sfsi_rss_icons']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_icons']:checked").val(),
314
+
315
+ t = 1 == SFSI("input[name='sfsi_facebookPage_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookPage_option']:checked").val(),
316
+ n = 1 == SFSI("input[name='sfsi_facebookLike_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookLike_option']:checked").val(),
317
+ o = 1 == SFSI("input[name='sfsi_facebookShare_option']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebookShare_option']:checked").val(),
318
+ a = SFSI("input[name='sfsi_facebookPage_url']").val(),
319
+ r = 1 == SFSI("input[name='sfsi_twitter_followme']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_followme']:checked").val(),
320
+ c = 1 == SFSI("input[name='sfsi_twitter_followUserName']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_followUserName']").val(),
321
+ p = 1 == SFSI("input[name='sfsi_twitter_aboutPage']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_aboutPage']:checked").val(),
322
+ _ = 1 == SFSI("input[name='sfsi_twitter_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_page']:checked").val(),
323
+ l = SFSI("input[name='sfsi_twitter_pageURL']").val(),
324
+ S = SFSI("textarea[name='sfsi_twitter_aboutPageText']").val(),
325
+ m = 1 == SFSI("input[name='sfsi_youtube_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_page']:checked").val(),
326
+ F = 1 == SFSI("input[name='sfsi_youtube_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_pageUrl']").val(),
327
+ h = 1 == SFSI("input[name='sfsi_youtube_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_follow']:checked").val(),
328
+ cls = SFSI("input[name='sfsi_youtubeusernameorid']:checked").val(),
329
+ v = SFSI("input[name='sfsi_ytube_user']").val(),
330
+ vchid = SFSI("input[name='sfsi_ytube_chnlid']").val(),
331
+ g = 1 == SFSI("input[name='sfsi_pinterest_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_page']:checked").val(),
332
+ k = 1 == SFSI("input[name='sfsi_pinterest_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_pageUrl']").val(),
333
+ y = 1 == SFSI("input[name='sfsi_pinterest_pingBlog']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_pingBlog']:checked").val(),
334
+ b = 1 == SFSI("input[name='sfsi_instagram_pageUrl']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_pageUrl']").val(),
335
+ w = 1 == SFSI("input[name='sfsi_linkedin_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_page']:checked").val(),
336
+ x = 1 == SFSI("input[name='sfsi_linkedin_pageURL']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_pageURL']").val(),
337
+ C = 1 == SFSI("input[name='sfsi_linkedin_follow']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_follow']:checked").val(),
338
+ D = SFSI("input[name='sfsi_linkedin_followCompany']").val(),
339
+ U = 1 == SFSI("input[name='sfsi_linkedin_SharePage']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedin_SharePage']:checked").val(),
340
+ O = SFSI("input[name='sfsi_linkedin_recommendBusines']:checked").val(),
341
+ T = SFSI("input[name='sfsi_linkedin_recommendProductId']").val(),
342
+ j = SFSI("input[name='sfsi_linkedin_recommendCompany']").val(),
343
+ tp = 1 == SFSI("input[name='sfsi_telegram_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_page']:checked").val(),
344
+ tpu = SFSI("input[name='sfsi_telegram_pageURL']").val(),
345
+ tm = SFSI("input[name='sfsi_telegram_message']").val(),
346
+ tmn = SFSI("input[name='sfsi_telegram_username']").val(),
347
+ wp = 1 == SFSI("input[name='sfsi_weibo_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_page']:checked").val(),
348
+ wpu = SFSI("input[name='sfsi_weibo_pageURL']").val(),
349
+ vp = 1 == SFSI("input[name='sfsi_vk_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_page']:checked").val(),
350
+ vpu = SFSI("input[name='sfsi_vk_pageURL']").val(),
351
+ op = 1 == SFSI("input[name='sfsi_ok_page']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_page']:checked").val(),
352
+ opu = SFSI("input[name='sfsi_ok_pageURL']").val(),
353
+ P = {};
354
+ SFSI("input[name='sfsi_CustomIcon_links[]']").each(function () {
355
+ P[SFSI(this).attr("file-id")] = this.value;
356
+ });
357
+ var M = {
358
+ action: "updateSrcn2",
359
+ sfsi_rss_url: i,
360
+ sfsi_rss_icons: e,
361
+ sfsi_facebookPage_option: t,
362
+ sfsi_facebookLike_option: n,
363
+ sfsi_facebookShare_option: o,
364
+ sfsi_facebookPage_url: a,
365
+ sfsi_twitter_followme: r,
366
+ sfsi_twitter_followUserName: c,
367
+ sfsi_twitter_aboutPage: p,
368
+ sfsi_twitter_page: _,
369
+ sfsi_twitter_pageURL: l,
370
+ sfsi_twitter_aboutPageText: S,
371
+ sfsi_youtube_page: m,
372
+ sfsi_youtube_pageUrl: F,
373
+ sfsi_youtube_follow: h,
374
+ sfsi_youtubeusernameorid: cls,
375
+ sfsi_ytube_user: v,
376
+ sfsi_ytube_chnlid: vchid,
377
+ sfsi_pinterest_page: g,
378
+ sfsi_pinterest_pageUrl: k,
379
+ sfsi_instagram_pageUrl: b,
380
+ sfsi_pinterest_pingBlog: y,
381
+ sfsi_linkedin_page: w,
382
+ sfsi_linkedin_pageURL: x,
383
+ sfsi_linkedin_follow: C,
384
+ sfsi_linkedin_followCompany: D,
385
+ sfsi_linkedin_SharePage: U,
386
+ sfsi_linkedin_recommendBusines: O,
387
+ sfsi_linkedin_recommendCompany: j,
388
+ sfsi_linkedin_recommendProductId: T,
389
+ sfsi_custom_links: P,
390
+ sfsi_telegram_page: tp,
391
+ sfsi_telegram_pageURL: tpu,
392
+ sfsi_telegram_message: tm,
393
+ sfsi_telegram_username: tmn,
394
+ sfsi_weibo_page: wp,
395
+ sfsi_weibo_pageURL: wpu,
396
+ sfsi_vk_page: vp,
397
+ sfsi_vk_pageURL: vpu,
398
+ sfsi_ok_page: op,
399
+ sfsi_ok_pageURL: opu,
400
+ nonce: nonce
401
+ };
402
+ SFSI.ajax({
403
+ url: sfsi_icon_ajax_object.ajax_url,
404
+ type: "post",
405
+ data: M,
406
+ async: !0,
407
+ dataType: "json",
408
+ success: function (s) {
409
+ if (s == "wrong_nonce") {
410
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 2);
411
+ return_value = !1;
412
+ afterLoad();
413
+ } else {
414
+ "success" == s ? (showErrorSuc("success", "Saved !", 2), sfsicollapse("#sfsi_save2"),
415
+ sfsi_depened_sections()) : (global_error = 1, showErrorSuc("error", "Unkown error , please try again", 2),
416
+ return_value = !1), afterLoad();
417
+ }
418
+ }
419
+ });
420
+ }
421
+
422
+ function sfsi_update_step3() {
423
+ var nonce = SFSI("#sfsi_save3").attr("data-nonce");
424
+ var s = sfsi_validationStep3();
425
+ if (!s) return global_error = 1, !1;
426
+ beForeLoad();
427
+ var i = SFSI("input[name='sfsi_actvite_theme']:checked").val(),
428
+ e = SFSI("input[name='sfsi_mouseOver']:checked").val(),
429
+ t = SFSI("input[name='sfsi_shuffle_icons']:checked").val(),
430
+ n = SFSI("input[name='sfsi_shuffle_Firstload']:checked").val(),
431
+ o = SFSI("input[name='sfsi_same_icons_mouseOver_effect']:checked").val(),
432
+ a = SFSI("input[name='sfsi_shuffle_interval']:checked").val(),
433
+ r = SFSI("input[name='sfsi_shuffle_intervalTime']").val(),
434
+ c = SFSI("input[name='sfsi_specialIcon_animation']:checked").val(),
435
+ p = SFSI("input[name='sfsi_specialIcon_MouseOver']:checked").val(),
436
+ _ = SFSI("input[name='sfsi_specialIcon_Firstload']:checked").val(),
437
+ l = SFSI("#sfsi_specialIcon_Firstload_Icons option:selected").val(),
438
+ S = SFSI("input[name='sfsi_specialIcon_interval']:checked").val(),
439
+ u = SFSI("input[name='sfsi_specialIcon_intervalTime']").val(),
440
+ f = SFSI("#sfsi_specialIcon_intervalIcons option:selected").val();
441
+
442
+ var mouseover_effect_type = 'same_icons'; //SFSI("input[name='sfsi_mouseOver_effect_type']:checked").val();
443
+
444
+ d = {
445
+ action: "updateSrcn3",
446
+ sfsi_actvite_theme: i,
447
+ sfsi_mouseOver: e,
448
+ sfsi_shuffle_icons: t,
449
+ sfsi_shuffle_Firstload: n,
450
+ sfsi_mouseOver_effect: o,
451
+ sfsi_mouseover_effect_type: mouseover_effect_type,
452
+ sfsi_shuffle_interval: a,
453
+ sfsi_shuffle_intervalTime: r,
454
+ sfsi_specialIcon_animation: c,
455
+ sfsi_specialIcon_MouseOver: p,
456
+ sfsi_specialIcon_Firstload: _,
457
+ sfsi_specialIcon_Firstload_Icons: l,
458
+ sfsi_specialIcon_interval: S,
459
+ sfsi_specialIcon_intervalTime: u,
460
+ sfsi_specialIcon_intervalIcons: f,
461
+ nonce: nonce
462
+ };
463
+ SFSI.ajax({
464
+ url: sfsi_icon_ajax_object.ajax_url,
465
+ type: "post",
466
+ data: d,
467
+ async: !0,
468
+ dataType: "json",
469
+ success: function (s) {
470
+ if (s == "wrong_nonce") {
471
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 3);
472
+ return_value = !1;
473
+ afterLoad();
474
+ } else {
475
+ "success" == s ? (showErrorSuc("success", "Saved !", 3), sfsicollapse("#sfsi_save3")) : (showErrorSuc("error", "Unkown error , please try again", 3),
476
+ return_value = !1), afterLoad();
477
+ }
478
+ }
479
+ });
480
+ }
481
+
482
+ function sfsi_show_counts() {
483
+ "yes" == SFSI("input[name='sfsi_display_counts']:checked").val() ? (SFSI(".count_sections").slideDown(),
484
+ sfsi_showPreviewCounts()) : (SFSI(".count_sections").slideUp(), sfsi_showPreviewCounts());
485
+ }
486
+
487
+ function sfsi_showPreviewCounts() {
488
+ var s = 0;
489
+ 1 == SFSI("input[name='sfsi_rss_countsDisplay']").prop("checked") ? (SFSI("#sfsi_rss_countsDisplay").css("opacity", 1), s = 1) : SFSI("#sfsi_rss_countsDisplay").css("opacity", 0),
490
+ 1 == SFSI("input[name='sfsi_email_countsDisplay']").prop("checked") ? (SFSI("#sfsi_email_countsDisplay").css("opacity", 1),
491
+ s = 1) : SFSI("#sfsi_email_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_facebook_countsDisplay']").prop("checked") ? (SFSI("#sfsi_facebook_countsDisplay").css("opacity", 1),
492
+ s = 1) : SFSI("#sfsi_facebook_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_twitter_countsDisplay']").prop("checked") ? (SFSI("#sfsi_twitter_countsDisplay").css("opacity", 1),
493
+ s = 1) : SFSI("#sfsi_twitter_countsDisplay").css("opacity", 0),
494
+ 1 == SFSI("input[name='sfsi_linkedIn_countsDisplay']").prop("checked") ? (SFSI("#sfsi_linkedIn_countsDisplay").css("opacity", 1), s = 1) : SFSI("#sfsi_linkedIn_countsDisplay").css("opacity", 0),
495
+ 1 == SFSI("input[name='sfsi_youtube_countsDisplay']").prop("checked") ? (SFSI("#sfsi_youtube_countsDisplay").css("opacity", 1),
496
+ s = 1) : SFSI("#sfsi_youtube_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_pinterest_countsDisplay']").prop("checked") ? (SFSI("#sfsi_pinterest_countsDisplay").css("opacity", 1),
497
+ s = 1) : SFSI("#sfsi_pinterest_countsDisplay").css("opacity", 0), 1 == SFSI("input[name='sfsi_instagram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_instagram_countsDisplay").css("opacity", 1),
498
+ s = 1) : SFSI("#sfsi_instagram_countsDisplay").css("opacity", 0),
499
+ 1 == SFSI("input[name='sfsi_telegram_countsDisplay']").prop("checked") ? (SFSI("#sfsi_telegram_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_telegram_countsDisplay").css("opacity", 0),
500
+ 1 == SFSI("input[name='sfsi_vk_countsDisplay']").prop("checked") ? (SFSI("#sfsi_vk_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_vk_countsDisplay").css("opacity", 0),
501
+ 1 == SFSI("input[name='sfsi_ok_countsDisplay']").prop("checked") ? (SFSI("#sfsi_ok_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_ok_countsDisplay").css("opacity", 0),
502
+ 1 == SFSI("input[name='sfsi_weibo_countsDisplay']").prop("checked") ? (SFSI("#sfsi_weibo_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_weibo_countsDisplay").css("opacity", 0),
503
+ 1 == SFSI("input[name='sfsi_wechat_countsDisplay']").prop("checked") ? (SFSI("#sfsi_wechat_countsDisplay").css("opacity", 0), s = 1) : SFSI("#sfsi_wechat_countsDisplay").css("opacity", 0),
504
+
505
+ 0 == s || "no" == SFSI("input[name='sfsi_display_counts']:checked").val() ? SFSI(".sfsi_Cdisplay").hide() : SFSI(".sfsi_Cdisplay").show();
506
+ }
507
+
508
+ function sfsi_show_OnpostsDisplay() {
509
+ //"yes" == SFSI("input[name='sfsi_show_Onposts']:checked").val() ? SFSI(".PostsSettings_section").slideDown() :SFSI(".PostsSettings_section").slideUp();
510
+ }
511
+
512
+ function sfsi_update_step4() {
513
+ var nonce = SFSI("#sfsi_save4").attr("data-nonce");
514
+ var s = !1,
515
+ i = sfsi_validationStep4();
516
+ if (!i) return global_error = 1, !1;
517
+ beForeLoad();
518
+ var e = SFSI("input[name='sfsi_display_counts']:checked").val(),
519
+ t = 1 == SFSI("input[name='sfsi_email_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_countsDisplay']:checked").val(),
520
+ n = 1 == SFSI("input[name='sfsi_email_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_countsFrom']:checked").val(),
521
+ o = SFSI("input[name='sfsi_email_manualCounts']").val(),
522
+ r = 1 == SFSI("input[name='sfsi_rss_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_countsDisplay']:checked").val(),
523
+ c = SFSI("input[name='sfsi_rss_manualCounts']").val(),
524
+ p = 1 == SFSI("input[name='sfsi_facebook_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_countsDisplay']:checked").val(),
525
+ _ = 1 == SFSI("input[name='sfsi_facebook_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_countsFrom']:checked").val(),
526
+ mp = SFSI("input[name='sfsi_facebook_mypageCounts']").val(),
527
+ l = SFSI("input[name='sfsi_facebook_manualCounts']").val(),
528
+ S = 1 == SFSI("input[name='sfsi_twitter_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_countsDisplay']:checked").val(),
529
+ u = 1 == SFSI("input[name='sfsi_twitter_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_countsFrom']:checked").val(),
530
+ f = SFSI("input[name='sfsi_twitter_manualCounts']").val(),
531
+ d = SFSI("input[name='tw_consumer_key']").val(),
532
+ I = SFSI("input[name='tw_consumer_secret']").val(),
533
+ m = SFSI("input[name='tw_oauth_access_token']").val(),
534
+ F = SFSI("input[name='tw_oauth_access_token_secret']").val(),
535
+ k = 1 == SFSI("input[name='sfsi_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val(),
536
+ y = SFSI("input[name='sfsi_linkedIn_manualCounts']").val(),
537
+ b = SFSI("input[name='ln_company']").val(),
538
+ w = SFSI("input[name='ln_api_key']").val(),
539
+ x = SFSI("input[name='ln_secret_key']").val(),
540
+ C = SFSI("input[name='ln_oAuth_user_token']").val(),
541
+ D = 1 == SFSI("input[name='sfsi_linkedIn_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsDisplay']:checked").val(),
542
+ k = 1 == SFSI("input[name='sfsi_linkedIn_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val(),
543
+ y = SFSI("input[name='sfsi_linkedIn_manualCounts']").val(),
544
+ U = 1 == SFSI("input[name='sfsi_youtube_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_countsDisplay']:checked").val(),
545
+ O = 1 == SFSI("input[name='sfsi_youtube_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_countsFrom']:checked").val(),
546
+ T = SFSI("input[name='sfsi_youtube_manualCounts']").val(),
547
+ j = SFSI("input[name='sfsi_youtube_user']").val(),
548
+ P = 1 == SFSI("input[name='sfsi_pinterest_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_countsDisplay']:checked").val(),
549
+ M = 1 == SFSI("input[name='sfsi_pinterest_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_countsFrom']:checked").val(),
550
+ L = SFSI("input[name='sfsi_pinterest_manualCounts']").val(),
551
+ B = SFSI("input[name='sfsi_pinterest_user']").val(),
552
+ E = SFSI("input[name='sfsi_pinterest_board']").val(),
553
+ z = 1 == SFSI("input[name='sfsi_instagram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_countsDisplay']:checked").val(),
554
+ A = 1 == SFSI("input[name='sfsi_instagram_countsFrom']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_countsFrom']:checked").val(),
555
+ N = SFSI("input[name='sfsi_instagram_manualCounts']").val(),
556
+ H = SFSI("input[name='sfsi_instagram_User']").val(),
557
+ ha = SFSI("input[name='sfsi_instagram_clientid']").val(),
558
+ ia = SFSI("input[name='sfsi_instagram_appurl']").val(),
559
+ ja = SFSI("input[name='sfsi_instagram_token']").val(),
560
+
561
+ tc = 1 == SFSI("input[name='sfsi_telegram_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_countsDisplay']:checked").val(),
562
+ tm = SFSI("input[name='sfsi_telegram_manualCounts']").val(),
563
+
564
+ vc = 1 == SFSI("input[name='sfsi_vk_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_countsDisplay']:checked").val(),
565
+ vm = SFSI("input[name='sfsi_vk_manualCounts']").val(),
566
+
567
+
568
+ oc = 1 == SFSI("input[name='sfsi_ok_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_countsDisplay']:checked").val(),
569
+ om = SFSI("input[name='sfsi_ok_manualCounts']").val(),
570
+
571
+
572
+ wc = 1 == SFSI("input[name='sfsi_weibo_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_countsDisplay']:checked").val(),
573
+ wm = SFSI("input[name='sfsi_weibo_manualCounts']").val(),
574
+
575
+ wcc = 1 == SFSI("input[name='sfsi_wechat_countsDisplay']").prop("disabled") ? "" : SFSI("input[name='sfsi_wechat_countsDisplay']:checked").val(),
576
+ wcm = SFSI("input[name='sfsi_wechat_manualCounts']").val(),
577
+ $ = {
578
+ action: "updateSrcn4",
579
+ sfsi_display_counts: e,
580
+ sfsi_email_countsDisplay: t,
581
+ sfsi_email_countsFrom: n,
582
+ sfsi_email_manualCounts: o,
583
+ sfsi_rss_countsDisplay: r,
584
+ sfsi_rss_manualCounts: c,
585
+ sfsi_facebook_countsDisplay: p,
586
+ sfsi_facebook_countsFrom: _,
587
+ sfsi_facebook_mypageCounts: mp,
588
+ sfsi_facebook_manualCounts: l,
589
+ sfsi_twitter_countsDisplay: S,
590
+ sfsi_twitter_countsFrom: u,
591
+ sfsi_twitter_manualCounts: f,
592
+ tw_consumer_key: d,
593
+ tw_consumer_secret: I,
594
+ tw_oauth_access_token: m,
595
+ tw_oauth_access_token_secret: F,
596
+ sfsi_linkedIn_countsDisplay: D,
597
+ sfsi_linkedIn_countsFrom: k,
598
+ sfsi_linkedIn_manualCounts: y,
599
+ ln_company: b,
600
+ ln_api_key: w,
601
+ ln_secret_key: x,
602
+ ln_oAuth_user_token: C,
603
+ sfsi_youtube_countsDisplay: U,
604
+ sfsi_youtube_countsFrom: O,
605
+ sfsi_youtube_manualCounts: T,
606
+ sfsi_youtube_user: j,
607
+ sfsi_youtube_channelId: SFSI("input[name='sfsi_youtube_channelId']").val(),
608
+ sfsi_pinterest_countsDisplay: P,
609
+ sfsi_pinterest_countsFrom: M,
610
+ sfsi_pinterest_manualCounts: L,
611
+ sfsi_pinterest_user: B,
612
+ sfsi_pinterest_board: E,
613
+ sfsi_instagram_countsDisplay: z,
614
+ sfsi_instagram_countsFrom: A,
615
+ sfsi_instagram_manualCounts: N,
616
+ sfsi_instagram_User: H,
617
+ sfsi_instagram_clientid: ha,
618
+ sfsi_instagram_appurl: ia,
619
+ sfsi_instagram_token: ja,
620
+ sfsi_telegram_countsDisplay: tc,
621
+ sfsi_telegram_manualCounts: tm,
622
+ sfsi_vk_countsDisplay: vc,
623
+ sfsi_vk_manualCounts: vm,
624
+ sfsi_ok_countsDisplay: oc,
625
+ sfsi_ok_manualCounts: om,
626
+ sfsi_weibo_countsDisplay: wc,
627
+ sfsi_weibo_manualCounts: wm,
628
+ sfsi_wechat_countsDisplay: wcc,
629
+ sfsi_wechat_manualCounts: wcm,
630
+ nonce: nonce
631
+ };
632
+ console.log($);
633
+ return SFSI.ajax({
634
+ url: sfsi_icon_ajax_object.ajax_url,
635
+ type: "post",
636
+ data: $,
637
+ dataType: "json",
638
+ async: !0,
639
+ success: function (s) {
640
+ if (s == "wrong_nonce") {
641
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 4);
642
+ global_error = 1;
643
+ afterLoad();
644
+ } else {
645
+ "success" == s.res ? (showErrorSuc("success", "Saved !", 4), sfsicollapse("#sfsi_save4"),
646
+ sfsi_showPreviewCounts()) : (showErrorSuc("error", "Unkown error , please try again", 4),
647
+ global_error = 1), afterLoad();
648
+ }
649
+ }
650
+ }), s;
651
+ }
652
+
653
+ function sfsi_update_step5() {
654
+ var nonce = SFSI("#sfsi_save5").attr("data-nonce");
655
+ sfsi_update_step3();
656
+
657
+ var s = sfsi_validationStep5();
658
+
659
+ if (!s) return global_error = 1, !1;
660
+
661
+ beForeLoad();
662
+
663
+ var i = SFSI("input[name='sfsi_icons_size']").val(),
664
+ e = SFSI("input[name='sfsi_icons_perRow']").val(),
665
+ t = SFSI("input[name='sfsi_icons_spacing']").val(),
666
+ n = SFSI("#sfsi_icons_Alignment").val(),
667
+ o = SFSI("input[name='sfsi_icons_ClickPageOpen']:checked").val(),
668
+
669
+ se = SFSI("input[name='sfsi_icons_suppress_errors']:checked").val(),
670
+ c = SFSI("input[name='sfsi_icons_stick']:checked").val(),
671
+ p = SFSI("#sfsi_rssIcon_order").attr("data-index"),
672
+ _ = SFSI("#sfsi_emailIcon_order").attr("data-index"),
673
+ S = SFSI("#sfsi_facebookIcon_order").attr("data-index"),
674
+ u = SFSI("#sfsi_twitterIcon_order").attr("data-index"),
675
+ f = SFSI("#sfsi_youtubeIcon_order").attr("data-index"),
676
+ d = SFSI("#sfsi_pinterestIcon_order").attr("data-index"),
677
+ I = SFSI("#sfsi_instagramIcon_order").attr("data-index"),
678
+ F = SFSI("#sfsi_linkedinIcon_order").attr("data-index"),
679
+ tgi = SFSI("#sfsi_telegramIcon_order").attr("data-index"),
680
+ vki = SFSI("#sfsi_vkIcon_order").attr("data-index"),
681
+ oki = SFSI("#sfsi_okIcon_order").attr("data-index"),
682
+ wbi = SFSI("#sfsi_weiboIcon_order").attr("data-index"),
683
+ wci = SFSI("#sfsi_wechatIcon_order").attr("data-index"),
684
+
685
+ h = new Array();
686
+
687
+ SFSI(".custom_iconOrder").each(function () {
688
+ h.push({
689
+ order: SFSI(this).attr("data-index"),
690
+ ele: SFSI(this).attr("element-id")
691
+ });
692
+ });
693
+
694
+ var v = 1 == SFSI("input[name='sfsi_rss_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_rss_MouseOverText']").val(),
695
+ g = 1 == SFSI("input[name='sfsi_email_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_email_MouseOverText']").val(),
696
+ k = 1 == SFSI("input[name='sfsi_twitter_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_twitter_MouseOverText']").val(),
697
+ y = 1 == SFSI("input[name='sfsi_facebook_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_facebook_MouseOverText']").val(),
698
+ w = 1 == SFSI("input[name='sfsi_linkedIn_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_linkedIn_MouseOverText']").val(),
699
+ x = 1 == SFSI("input[name='sfsi_youtube_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_youtube_MouseOverText']").val(),
700
+ C = 1 == SFSI("input[name='sfsi_pinterest_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_pinterest_MouseOverText']").val(),
701
+ D = 1 == SFSI("input[name='sfsi_instagram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_instagram_MouseOverText']").val(),
702
+ tg = 1 == SFSI("input[name='sfsi_telegram_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_telegram_MouseOverText']").val(),
703
+ vk = 1 == SFSI("input[name='sfsi_vk_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_vk_MouseOverText']").val(),
704
+ ok = 1 == SFSI("input[name='sfsi_ok_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_ok_MouseOverText']").val(),
705
+ wb = 1 == SFSI("input[name='sfsi_weibo_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_weibo_MouseOverText']").val(),
706
+ wc = 1 == SFSI("input[name='sfsi_wechat_MouseOverText']").prop("disabled") ? "" : SFSI("input[name='sfsi_wechat_MouseOverText']").val(),
707
+
708
+ O = {};
709
+ SFSI("input[name='sfsi_custom_MouseOverTexts[]']").each(function () {
710
+ O[SFSI(this).attr("file-id")] = this.value;
711
+ });
712
+
713
+ var sfsi_custom_social_hide = SFSI("input[name='sfsi_custom_social_hide']").val();
714
+
715
+ var T = {
716
+ action: "updateSrcn5",
717
+ sfsi_icons_size: i,
718
+ sfsi_icons_Alignment: n,
719
+ sfsi_icons_perRow: e,
720
+ sfsi_icons_spacing: t,
721
+ sfsi_icons_ClickPageOpen: o,
722
+ sfsi_icons_suppress_errors: se,
723
+ sfsi_icons_stick: c,
724
+ sfsi_rss_MouseOverText: v,
725
+ sfsi_email_MouseOverText: g,
726
+ sfsi_twitter_MouseOverText: k,
727
+ sfsi_facebook_MouseOverText: y,
728
+ sfsi_youtube_MouseOverText: x,
729
+ sfsi_linkedIn_MouseOverText: w,
730
+ sfsi_pinterest_MouseOverText: C,
731
+ sfsi_instagram_MouseOverText: D,
732
+ sfsi_telegram_MouseOverText: tg,
733
+ sfsi_vk_MouseOverText: vk,
734
+ sfsi_ok_MouseOverText: ok,
735
+ sfsi_weibo_MouseOverText: wb,
736
+ sfsi_wechat_MouseOverText: wc,
737
+ sfsi_custom_MouseOverTexts: O,
738
+ sfsi_rssIcon_order: p,
739
+ sfsi_emailIcon_order: _,
740
+ sfsi_facebookIcon_order: S,
741
+ sfsi_twitterIcon_order: u,
742
+ sfsi_youtubeIcon_order: f,
743
+ sfsi_pinterestIcon_order: d,
744
+ sfsi_instagramIcon_order: I,
745
+ sfsi_linkedinIcon_order: F,
746
+ sfsi_telegramIcon_order: tgi,
747
+ sfsi_vkIcon_order: vki,
748
+ sfsi_okIcon_order: oki,
749
+ sfsi_weiboIcon_order: wbi,
750
+ sfsi_wechatIcon_order: wci,
751
+
752
+ sfsi_custom_orders: h,
753
+ sfsi_custom_social_hide: sfsi_custom_social_hide,
754
+ nonce: nonce
755
+ };
756
+ console.log(T);
757
+ SFSI.ajax({
758
+ url: sfsi_icon_ajax_object.ajax_url,
759
+ type: "post",
760
+ data: T,
761
+ dataType: "json",
762
+ async: !0,
763
+ success: function (s) {
764
+ if (s == "wrong_nonce") {
765
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 5);
766
+ global_error = 1;
767
+ afterLoad();
768
+ } else {
769
+ "success" == s ? (showErrorSuc("success", "Saved !", 5), sfsicollapse("#sfsi_save5")) : (global_error = 1,
770
+ showErrorSuc("error", "Unkown error , please try again", 5)), afterLoad();
771
+ }
772
+ }
773
+ });
774
+ }
775
+
776
+ function sfsi_update_step6() {
777
+ var nonce = SFSI("#sfsi_save9").attr("data-nonce2");
778
+ beForeLoad();
779
+ var s = SFSI("input[name='sfsi_show_Onposts']:checked").val(),
780
+ i = SFSI("input[name='sfsi_textBefor_icons']").val(),
781
+ e = SFSI("#sfsi_icons_alignment").val(),
782
+ t = SFSI("#sfsi_icons_DisplayCounts").val(),
783
+ rsub = SFSI("input[name='sfsi_rectsub']:checked").val(),
784
+ rfb = SFSI("input[name='sfsi_rectfb']:checked").val(),
785
+ rpin = SFSI("input[name='sfsi_rectpinit']:checked").val(),
786
+ rshr = SFSI("input[name='sfsi_rectshr']:checked").val(),
787
+ rtwr = SFSI("input[name='sfsi_recttwtr']:checked").val(),
788
+ rfbshare = SFSI("input[name='sfsi_rectfbshare']:checked").val(),
789
+ a = SFSI("input[name='sfsi_display_button_type']:checked").val();
790
+ countshare = SFSI("input[name='sfsi_share_count']:checked").val();
791
+ endpost = SFSI("input[name='sfsi_responsive_icons_end_post']:checked").val();
792
+
793
+ var responsive_icons = {
794
+ "default_icons": {},
795
+ "settings": {}
796
+ };
797
+ SFSI('.sfsi_responsive_default_icon_container input[type="checkbox"]').each(function (index, obj) {
798
+ var data_obj = {};
799
+ data_obj.active = ('checked' == SFSI(obj).attr('checked')) ? 'yes' : 'no';
800
+ var iconname = SFSI(obj).attr('data-icon');
801
+ var next_section = SFSI(obj).parent().parent();
802
+ data_obj.text = next_section.find('input[name="sfsi_responsive_' + iconname + '_input"]').val();
803
+ data_obj.url = next_section.find('input[name="sfsi_responsive_' + iconname + '_url_input"]').val();
804
+ responsive_icons.default_icons[iconname] = data_obj;
805
+ });
806
+ SFSI('.sfsi_responsive_custom_icon_container input[type="checkbox"]').each(function (index, obj) {
807
+ if (SFSI(obj).attr('id') != "sfsi_responsive_custom_new_display") {
808
+ var data_obj = {};
809
+ data_obj.active = 'checked' == SFSI(obj).attr('checked') ? 'yes' : 'no';
810
+ var icon_index = SFSI(obj).attr('data-custom-index');
811
+ var next_section = SFSI(obj).parent().parent();
812
+ data_obj['added'] = SFSI('input[name="sfsi_responsive_custom_' + index + '_added"]').val();
813
+ data_obj.icon = next_section.find('img').attr('src');
814
+ data_obj["bg-color"] = next_section.find('.sfsi_bg-color-picker').val();
815
+
816
+ data_obj.text = next_section.find('input[name="sfsi_responsive_custom_' + icon_index + '_input"]').val();
817
+ data_obj.url = next_section.find('input[name="sfsi_responsive_custom_' + icon_index + '_url_input"]').val();
818
+ responsive_icons.custom_icons[index] = data_obj;
819
+ }
820
+ });
821
+ responsive_icons.settings.icon_size = SFSI('select[name="sfsi_responsive_icons_settings_icon_size"]').val();
822
+ responsive_icons.settings.icon_width_type = SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val();
823
+ responsive_icons.settings.icon_width_size = SFSI('input[name="sfsi_responsive_icons_sttings_icon_width_size"]').val();
824
+ responsive_icons.settings.edge_type = SFSI('select[name="sfsi_responsive_icons_settings_edge_type"]').val();
825
+ responsive_icons.settings.edge_radius = SFSI('select[name="sfsi_responsive_icons_settings_edge_radius"]').val();
826
+ responsive_icons.settings.style = SFSI('select[name="sfsi_responsive_icons_settings_style"]').val();
827
+ responsive_icons.settings.margin = SFSI('input[name="sfsi_responsive_icons_settings_margin"]').val();
828
+ responsive_icons.settings.text_align = SFSI('select[name="sfsi_responsive_icons_settings_text_align"]').val();
829
+ responsive_icons.settings.show_count = SFSI('input[name="sfsi_responsive_icon_show_count"]:checked').val();
830
+ responsive_icons.settings.counter_color = SFSI('input[name="sfsi_responsive_counter_color"]').val();
831
+ responsive_icons.settings.counter_bg_color = SFSI('input[name="sfsi_responsive_counter_bg_color"]').val();
832
+ responsive_icons.settings.share_count_text = SFSI('input[name="sfsi_responsive_counter_share_count_text"]').val();
833
+ responsive_icons.settings.show_count = countshare;
834
+ n = {
835
+ action: "updateSrcn6",
836
+ sfsi_show_Onposts: s,
837
+ sfsi_icons_DisplayCounts: t,
838
+ sfsi_icons_alignment: e,
839
+ sfsi_textBefor_icons: i,
840
+ sfsi_rectsub: rsub,
841
+ sfsi_rectfb: rfb,
842
+ sfsi_rectpinit: rpin,
843
+ sfsi_rectshr: rshr,
844
+ sfsi_recttwtr: rtwr,
845
+ sfsi_rectfbshare: rfbshare,
846
+ sfsi_responsive_icons: responsive_icons,
847
+ sfsi_display_button_type: a,
848
+ sfsi_responsive_icons_end_post:endpost,
849
+ sfsi_share_count: countshare,
850
+ nonce: nonce
851
+ };
852
+ SFSI.ajax({
853
+ url: sfsi_icon_ajax_object.ajax_url,
854
+ type: "post",
855
+ data: n,
856
+ dataType: "json",
857
+ async: !0,
858
+ success: function (s) {
859
+ if (s == "wrong_nonce") {
860
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 6);
861
+ global_error = 1;
862
+ afterLoad();
863
+ } else {
864
+ "success" == s ? (showErrorSuc("success", "Saved !", 6), sfsicollapse("#sfsi_save6")) : (global_error = 1,
865
+ showErrorSuc("error", "Unkown error , please try again", 6)), afterLoad();
866
+ }
867
+ }
868
+ });
869
+ }
870
+
871
+ function sfsi_update_step7() {
872
+ var nonce = SFSI("#sfsi_save7").attr("data-nonce");
873
+ var s = sfsi_validationStep7();
874
+ if (!s) return global_error = 1, !1;
875
+ beForeLoad();
876
+ var i = SFSI("input[name='sfsi_popup_text']").val(),
877
+ e = SFSI("#sfsi_popup_font option:selected").val(),
878
+ t = SFSI("#sfsi_popup_fontStyle option:selected").val(),
879
+ color = SFSI("input[name='sfsi_popup_fontColor']").val(),
880
+ n = SFSI("input[name='sfsi_popup_fontSize']").val(),
881
+ o = SFSI("input[name='sfsi_popup_background_color']").val(),
882
+ a = SFSI("input[name='sfsi_popup_border_color']").val(),
883
+ r = SFSI("input[name='sfsi_popup_border_thickness']").val(),
884
+ c = SFSI("input[name='sfsi_popup_border_shadow']:checked").val(),
885
+ p = SFSI("input[name='sfsi_Show_popupOn']:checked").val(),
886
+ _ = [];
887
+ SFSI("#sfsi_Show_popupOn_PageIDs :selected").each(function (s, i) {
888
+ _[s] = SFSI(i).val();
889
+ });
890
+ var l = SFSI("input[name='sfsi_Shown_pop']:checked").val(),
891
+ S = SFSI("input[name='sfsi_Shown_popupOnceTime']").val(),
892
+ u = SFSI("#sfsi_Shown_popuplimitPerUserTime").val(),
893
+ f = {
894
+ action: "updateSrcn7",
895
+ sfsi_popup_text: i,
896
+ sfsi_popup_font: e,
897
+ sfsi_popup_fontColor: color,
898
+ /*sfsi_popup_fontStyle: t,*/
899
+ sfsi_popup_fontSize: n,
900
+ sfsi_popup_background_color: o,
901
+ sfsi_popup_border_color: a,
902
+ sfsi_popup_border_thickness: r,
903
+ sfsi_popup_border_shadow: c,
904
+ sfsi_Show_popupOn: p,
905
+ sfsi_Show_popupOn_PageIDs: _,
906
+ sfsi_Shown_pop: l,
907
+ sfsi_Shown_popupOnceTime: S,
908
+ sfsi_Shown_popuplimitPerUserTime: u,
909
+ nonce: nonce
910
+ };
911
+ SFSI.ajax({
912
+ url: sfsi_icon_ajax_object.ajax_url,
913
+ type: "post",
914
+ data: f,
915
+ dataType: "json",
916
+ async: !0,
917
+ success: function (s) {
918
+ if (s == "wrong_nonce") {
919
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
920
+ afterLoad();
921
+ } else {
922
+ "success" == s ? (showErrorSuc("success", "Saved !", 7), sfsicollapse("#sfsi_save7")) : showErrorSuc("error", "Unkown error , please try again", 7),
923
+ afterLoad();
924
+ }
925
+ }
926
+ });
927
+ }
928
+
929
+ function sfsi_update_step8() {
930
+ var nonce = SFSI("#sfsi_save8").attr("data-nonce");
931
+ beForeLoad();
932
+ var ie = SFSI("input[name='sfsi_form_adjustment']:checked").val(),
933
+ je = SFSI("input[name='sfsi_form_height']").val(),
934
+ ke = SFSI("input[name='sfsi_form_width']").val(),
935
+ le = SFSI("input[name='sfsi_form_border']:checked").val(),
936
+ me = SFSI("input[name='sfsi_form_border_thickness']").val(),
937
+ ne = SFSI("input[name='sfsi_form_border_color']").val(),
938
+ oe = SFSI("input[name='sfsi_form_background']").val(),
939
+
940
+ ae = SFSI("input[name='sfsi_form_heading_text']").val(),
941
+ be = SFSI("#sfsi_form_heading_font option:selected").val(),
942
+ ce = SFSI("#sfsi_form_heading_fontstyle option:selected").val(),
943
+ de = SFSI("input[name='sfsi_form_heading_fontcolor']").val(),
944
+ ee = SFSI("input[name='sfsi_form_heading_fontsize']").val(),
945
+ fe = SFSI("#sfsi_form_heading_fontalign option:selected").val(),
946
+
947
+ ue = SFSI("input[name='sfsi_form_field_text']").val(),
948
+ ve = SFSI("#sfsi_form_field_font option:selected").val(),
949
+ we = SFSI("#sfsi_form_field_fontstyle option:selected").val(),
950
+ xe = SFSI("input[name='sfsi_form_field_fontcolor']").val(),
951
+ ye = SFSI("input[name='sfsi_form_field_fontsize']").val(),
952
+ ze = SFSI("#sfsi_form_field_fontalign option:selected").val(),
953
+
954
+ i = SFSI("input[name='sfsi_form_button_text']").val(),
955
+ j = SFSI("#sfsi_form_button_font option:selected").val(),
956
+ k = SFSI("#sfsi_form_button_fontstyle option:selected").val(),
957
+ l = SFSI("input[name='sfsi_form_button_fontcolor']").val(),
958
+ m = SFSI("input[name='sfsi_form_button_fontsize']").val(),
959
+ n = SFSI("#sfsi_form_button_fontalign option:selected").val(),
960
+ o = SFSI("input[name='sfsi_form_button_background']").val();
961
+
962
+ var f = {
963
+ action: "updateSrcn8",
964
+ sfsi_form_adjustment: ie,
965
+ sfsi_form_height: je,
966
+ sfsi_form_width: ke,
967
+ sfsi_form_border: le,
968
+ sfsi_form_border_thickness: me,
969
+ sfsi_form_border_color: ne,
970
+ sfsi_form_background: oe,
971
+
972
+ sfsi_form_heading_text: ae,
973
+ sfsi_form_heading_font: be,
974
+ sfsi_form_heading_fontstyle: ce,
975
+ sfsi_form_heading_fontcolor: de,
976
+ sfsi_form_heading_fontsize: ee,
977
+ sfsi_form_heading_fontalign: fe,
978
+
979
+ sfsi_form_field_text: ue,
980
+ sfsi_form_field_font: ve,
981
+ sfsi_form_field_fontstyle: we,
982
+ sfsi_form_field_fontcolor: xe,
983
+ sfsi_form_field_fontsize: ye,
984
+ sfsi_form_field_fontalign: ze,
985
+
986
+ sfsi_form_button_text: i,
987
+ sfsi_form_button_font: j,
988
+ sfsi_form_button_fontstyle: k,
989
+ sfsi_form_button_fontcolor: l,
990
+ sfsi_form_button_fontsize: m,
991
+ sfsi_form_button_fontalign: n,
992
+ sfsi_form_button_background: o,
993
+
994
+ nonce: nonce
995
+ };
996
+ SFSI.ajax({
997
+ url: sfsi_icon_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
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 7);
1005
+ afterLoad();
1006
+ } else {
1007
+ "success" == s ? (showErrorSuc("success", "Saved !", 8), sfsicollapse("#sfsi_save8"), create_suscriber_form()) : showErrorSuc("error", "Unkown error , please try again", 8),
1008
+ afterLoad();
1009
+ }
1010
+ }
1011
+ });
1012
+ }
1013
+
1014
+ // Queestion 3
1015
+ function sfsi_update_step9() {
1016
+ sfsi_update_step6();
1017
+ var nonce = SFSI("#sfsi_save9").attr("data-nonce");
1018
+ beForeLoad();
1019
+
1020
+ var i_float = SFSI("input[name='sfsi_icons_float']:checked").val(),
1021
+ i_floatP = SFSI("input[name='sfsi_icons_floatPosition']:checked").val(),
1022
+ i_floatMt = SFSI("input[name='sfsi_icons_floatMargin_top']").val(),
1023
+ i_floatMb = SFSI("input[name='sfsi_icons_floatMargin_bottom']").val(),
1024
+ i_floatMl = SFSI("input[name='sfsi_icons_floatMargin_left']").val(),
1025
+ i_floatMr = SFSI("input[name='sfsi_icons_floatMargin_right']").val(),
1026
+ i_disableFloat = SFSI("input[name='sfsi_disable_floaticons']:checked").val(),
1027
+
1028
+ show_via_widget = SFSI("input[name='sfsi_show_via_widget']").val(),
1029
+ show_via__shortcode = SFSI("input[name='sfsi_show_via_shortcode']:checked").length==0?"no":"yes",
1030
+ sfsi_show_via_afterposts = SFSI("input[name='sfsi_show_via_afterposts']").val();
1031
+
1032
+ var f = {
1033
+
1034
+ action: "updateSrcn9",
1035
+
1036
+ sfsi_icons_float: i_float,
1037
+ sfsi_icons_floatPosition: i_floatP,
1038
+ sfsi_icons_floatMargin_top: i_floatMt,
1039
+ sfsi_icons_floatMargin_bottom: i_floatMb,
1040
+ sfsi_icons_floatMargin_left: i_floatMl,
1041
+ sfsi_icons_floatMargin_right: i_floatMr,
1042
+ sfsi_disable_floaticons: i_disableFloat,
1043
+
1044
+ sfsi_show_via_widget: show_via_widget,
1045
+ sfsi_show_via_shortcode: show_via__shortcode,
1046
+ sfsi_show_via_afterposts: sfsi_show_via_afterposts,
1047
+ nonce: nonce
1048
+ };
1049
+ SFSI.ajax({
1050
+ url: sfsi_icon_ajax_object.ajax_url,
1051
+ type: "post",
1052
+ data: f,
1053
+ dataType: "json",
1054
+ async: !0,
1055
+ success: function (s) {
1056
+ if (s == "wrong_nonce") {
1057
+ showErrorSuc("error", "Unauthorised Request, Try again after refreshing page", 9);
1058
+ afterLoad();
1059
+ } else {
1060
+ "success" == s ? (showErrorSuc("success", "Saved !", 9), sfsicollapse("#sfsi_save9")) : showErrorSuc("error", "Unkown error , please try again", 9),
1061
+ afterLoad();
1062
+ }
1063
+ }
1064
+ });
1065
+ }
1066
+
1067
+ function sfsi_validationStep2() {
1068
+ //var class_name= SFSI(element).hasAttr('sfsi_validate');
1069
+ SFSI('input').removeClass('inputError'); // remove previous error
1070
+ if (sfsi_validator(SFSI('input[name="sfsi_rss_display"]'), 'checked')) {
1071
+ if (!sfsi_validator(SFSI('input[name="sfsi_rss_url"]'), 'url')) {
1072
+ showErrorSuc("error", "Error : Invalid Rss url ", 2);
1073
+ SFSI('input[name="sfsi_rss_url"]').addClass('inputError');
1074
+
1075
+ return false;
1076
+ }
1077
+ }
1078
+ /* validate facebook */
1079
+ if (sfsi_validator(SFSI('input[name="sfsi_facebookPage_option"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_facebookPage_option"]'), 'checked')) {
1080
+ if (!sfsi_validator(SFSI('input[name="sfsi_facebookPage_url"]'), 'blank')) {
1081
+ showErrorSuc("error", "Error : Invalid Facebook page url ", 2);
1082
+ SFSI('input[name="sfsi_facebookPage_url"]').addClass('inputError');
1083
+
1084
+ return false;
1085
+ }
1086
+ }
1087
+ /* validate twitter user name */
1088
+ if (sfsi_validator(SFSI('input[name="sfsi_twitter_followme"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_followme"]'), 'checked')) {
1089
+ if (!sfsi_validator(SFSI('input[name="sfsi_twitter_followUserName"]'), 'blank')) {
1090
+ showErrorSuc("error", "Error : Invalid Twitter UserName ", 2);
1091
+ SFSI('input[name="sfsi_twitter_followUserName"]').addClass('inputError');
1092
+ return false;
1093
+ }
1094
+ }
1095
+ /* validate twitter about page */
1096
+ if (sfsi_validator(SFSI('input[name="sfsi_twitter_aboutPage"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_aboutPage"]'), 'checked')) {
1097
+ if (!sfsi_validator(SFSI('#sfsi_twitter_aboutPageText'), 'blank')) {
1098
+ showErrorSuc("error", "Error : Tweet about my page is blank ", 2);
1099
+ SFSI('#sfsi_twitter_aboutPageText').addClass('inputError');
1100
+ return false;
1101
+ }
1102
+ }
1103
+ /* twitter validation */
1104
+ if (sfsi_validator(SFSI('input[name="sfsi_twitter_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_page"]'), 'checked')) {
1105
+ if (!sfsi_validator(SFSI('input[name="sfsi_twitter_pageURL"]'), 'blank')) {
1106
+ showErrorSuc("error", "Error : Invalid twitter page Url ", 2);
1107
+ SFSI('input[name="sfsi_twitter_pageURL"]').addClass('inputError');
1108
+ return false;
1109
+ }
1110
+ }
1111
+
1112
+ /* youtube validation */
1113
+ if (sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'checked')) {
1114
+ if (!sfsi_validator(SFSI('input[name="sfsi_youtube_pageUrl"]'), 'blank')) {
1115
+ showErrorSuc("error", "Error : Invalid youtube Url ", 2);
1116
+ SFSI('input[name="sfsi_youtube_pageUrl"]').addClass('inputError');
1117
+ return false;
1118
+ }
1119
+ }
1120
+ /* youtube validation */
1121
+ if (sfsi_validator(SFSI('input[name="sfsi_youtube_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_follow"]'), 'checked')) {
1122
+ cls = SFSI("input[name='sfsi_youtubeusernameorid']:checked").val();
1123
+ if (cls == 'name' && !sfsi_validator(SFSI('input[name="sfsi_ytube_user"]'), 'blank')) {
1124
+ showErrorSuc("error", "Error : Invalid youtube user name", 2);
1125
+ SFSI('input[name="sfsi_ytube_user"]').addClass('inputError');
1126
+ return false;
1127
+ }
1128
+
1129
+ if (cls == 'id' && !sfsi_validator(SFSI('input[name="sfsi_ytube_chnlid"]'), 'blank')) {
1130
+ showErrorSuc("error", "Error : Invalid youtube Channel ID ", 2);
1131
+ SFSI('input[name="sfsi_ytube_user"]').addClass('inputError');
1132
+ return false;
1133
+ }
1134
+ }
1135
+ /* pinterest validation */
1136
+ if (sfsi_validator(SFSI('input[name="sfsi_pinterest_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_pinterest_page"]'), 'checked')) {
1137
+ if (!sfsi_validator(SFSI('input[name="sfsi_pinterest_pageUrl"]'), 'blank')) {
1138
+ showErrorSuc("error", "Error : Invalid pinterest page url ", 2);
1139
+ SFSI('input[name="sfsi_pinterest_pageUrl"]').addClass('inputError');
1140
+ return false;
1141
+ }
1142
+ }
1143
+ /* instagram validation */
1144
+ if (sfsi_validator(SFSI('input[name="sfsi_instagram_display"]'), 'checked')) {
1145
+ if (!sfsi_validator(SFSI('input[name="sfsi_instagram_pageUrl"]'), 'blank')) {
1146
+ showErrorSuc("error", "Error : Invalid Instagram url ", 2);
1147
+ SFSI('input[name="sfsi_instagram_pageUrl"]').addClass('inputError');
1148
+ return false;
1149
+ }
1150
+ }
1151
+ /* telegram validation */
1152
+ if (sfsi_validator(SFSI('input[name="sfsi_telegram_display"]'), 'checked')) {
1153
+ if (!sfsi_validator(SFSI('input[name="sfsi_telegram_username"]'), 'blank')) {
1154
+ showErrorSuc("error", "Error : Invalid telegram username ", 2);
1155
+ SFSI('input[name="sfsi_telegram_username"]').addClass('inputError');
1156
+ return false;
1157
+ }
1158
+ }
1159
+ /* telegram validation */
1160
+ if (sfsi_validator(SFSI('input[name="sfsi_telegram_display"]'), 'checked')) {
1161
+ if (!sfsi_validator(SFSI('input[name="sfsi_telegram_message"]'), 'blank')) {
1162
+ showErrorSuc("error", "Error : Invalid Message ", 2);
1163
+ SFSI('input[name="sfsi_telegram_message"]').addClass('inputError');
1164
+ return false;
1165
+ }
1166
+ }
1167
+ /* vk validation */
1168
+ if (sfsi_validator(SFSI('input[name="sfsi_vk_display"]'), 'checked')) {
1169
+ if (!sfsi_validator(SFSI('input[name="sfsi_vk_pageURL"]'), 'blank')) {
1170
+ showErrorSuc("error", "Error : Invalid vk url ", 2);
1171
+ SFSI('input[name="sfsi_vk_pageURL"]').addClass('inputError');
1172
+ return false;
1173
+ }
1174
+ }
1175
+ /* ok validation */
1176
+ if (sfsi_validator(SFSI('input[name="sfsi_ok_display"]'), 'checked')) {
1177
+ if (!sfsi_validator(SFSI('input[name="sfsi_ok_pageURL"]'), 'blank')) {
1178
+ showErrorSuc("error", "Error : Invalid ok url ", 2);
1179
+ SFSI('input[name="sfsi_ok_pageURL"]').addClass('inputError');
1180
+ return false;
1181
+ }
1182
+ }
1183
+ /* weibo validation */
1184
+ if (sfsi_validator(SFSI('input[name="sfsi_weibo_display"]'), 'checked')) {
1185
+ if (!sfsi_validator(SFSI('input[name="sfsi_weibo_pageURL"]'), 'blank')) {
1186
+ showErrorSuc("error", "Error : Invalid weibo url ", 2);
1187
+ SFSI('input[name="sfsi_weibo_pageURL"]').addClass('inputError');
1188
+ return false;
1189
+ }
1190
+ }
1191
+ /* LinkedIn validation */
1192
+ if (sfsi_validator(SFSI('input[name="sfsi_linkedin_page"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedin_page"]'), 'checked')) {
1193
+ if (!sfsi_validator(SFSI('input[name="sfsi_linkedin_pageURL"]'), 'blank')) {
1194
+ showErrorSuc("error", "Error : Invalid LinkedIn page url ", 2);
1195
+ SFSI('input[name="sfsi_linkedin_pageURL"]').addClass('inputError');
1196
+ return false;
1197
+ }
1198
+ }
1199
+ if (sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendBusines"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendBusines"]'), 'checked')) {
1200
+ if (!sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendProductId"]'), 'blank') || !sfsi_validator(SFSI('input[name="sfsi_linkedin_recommendCompany"]'), 'blank')) {
1201
+ showErrorSuc("error", "Error : Please Enter Product Id and Company for LinkedIn Recommendation ", 2);
1202
+ SFSI('input[name="sfsi_linkedin_recommendProductId"]').addClass('inputError');
1203
+ SFSI('input[name="sfsi_linkedin_recommendCompany"]').addClass('inputError');
1204
+ return false;
1205
+ }
1206
+ }
1207
+ /* validate custom links */
1208
+ var er = 0;
1209
+ SFSI("input[name='sfsi_CustomIcon_links[]']").each(function () {
1210
+
1211
+ //if(!sfsi_validator(SFSI(this),'blank') || !sfsi_validator(SFSI(SFSI(this)),'url') )
1212
+ if (!sfsi_validator(SFSI(this), 'blank')) {
1213
+ showErrorSuc("error", "Error : Please Enter a valid Custom link ", 2);
1214
+ SFSI(this).addClass('inputError');
1215
+ er = 1;
1216
+ }
1217
+ });
1218
+ if (!er) return true;
1219
+ else return false;
1220
+ }
1221
+
1222
+ function sfsi_validationStep3() {
1223
+ SFSI('input').removeClass('inputError'); // remove previous error
1224
+ /* validate shuffle effect */
1225
+ if (sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'checked')) {
1226
+ if ((!sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'activte') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'checked')) && (!sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'activte') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked'))) {
1227
+ showErrorSuc("error", "Error : Please Chose a Shuffle option ", 3);
1228
+ SFSI('input[name="sfsi_shuffle_Firstload"]').addClass('inputError');
1229
+ SFSI('input[name="sfsi_shuffle_interval"]').addClass('inputError');
1230
+ return false;
1231
+ }
1232
+ }
1233
+ if (!sfsi_validator(SFSI('input[name="sfsi_shuffle_icons"]'), 'checked') && (sfsi_validator(SFSI('input[name="sfsi_shuffle_Firstload"]'), 'checked') || sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked'))) {
1234
+ showErrorSuc("error", "Error : Please check \"Shuffle them automatically\" option also ", 3);
1235
+ SFSI('input[name="sfsi_shuffle_Firstload"]').addClass('inputError');
1236
+ SFSI('input[name="sfsi_shuffle_interval"]').addClass('inputError');
1237
+ return false;
1238
+ }
1239
+
1240
+ /* validate twitter user name */
1241
+ if (sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_shuffle_interval"]'), 'checked')) {
1242
+
1243
+ if (!sfsi_validator(SFSI('input[name="sfsi_shuffle_intervalTime"]'), 'blank') || !sfsi_validator(SFSI('input[name="sfsi_shuffle_intervalTime"]'), 'int')) {
1244
+ showErrorSuc("error", "Error : Invalid shuffle time interval", 3);
1245
+ SFSI('input[name="sfsi_shuffle_intervalTime"]').addClass('inputError');
1246
+ return false;
1247
+ }
1248
+ }
1249
+ return true;
1250
+ }
1251
+
1252
+ function sfsi_validationStep4() {
1253
+ //var class_name= SFSI(element).hasAttr('sfsi_validate');
1254
+ /* validate email */
1255
+ if (sfsi_validator(SFSI('input[name="sfsi_email_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_email_countsDisplay"]'), 'checked')) {
1256
+ if (SFSI('input[name="sfsi_email_countsFrom"]:checked').val() == 'manual') {
1257
+ if (!sfsi_validator(SFSI('input[name="sfsi_email_manualCounts"]'), 'blank')) {
1258
+ showErrorSuc("error", "Error : Please Enter manual counts for Email icon ", 4);
1259
+ SFSI('input[name="sfsi_email_manualCounts"]').addClass('inputError');
1260
+ return false;
1261
+ }
1262
+ }
1263
+ }
1264
+ /* validate RSS count */
1265
+ if (sfsi_validator(SFSI('input[name="sfsi_rss_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_rss_countsDisplay"]'), 'checked')) {
1266
+ if (!sfsi_validator(SFSI('input[name="sfsi_rss_manualCounts"]'), 'blank')) {
1267
+ showErrorSuc("error", "Error : Please Enter manual counts for Rss icon ", 4);
1268
+ SFSI('input[name="sfsi_rss_countsDisplay"]').addClass('inputError');
1269
+ return false;
1270
+ }
1271
+ }
1272
+ /* validate facebook */
1273
+ if (sfsi_validator(SFSI('input[name="sfsi_facebook_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_facebook_countsDisplay"]'), 'checked')) {
1274
+ /*if(SFSI('input[name="sfsi_facebook_countsFrom"]:checked').val()=='likes' )
1275
+ {
1276
+ if(!sfsi_validator(SFSI('input[name="sfsi_facebook_PageLink"]'),'blank'))
1277
+ { showErrorSuc("error","Error : Please Enter facebook page Url ",4);
1278
+ SFSI('input[name="sfsi_facebook_PageLink"]').addClass('inputError');
1279
+ return false;
1280
+ }
1281
+ } */
1282
+ if (SFSI('input[name="sfsi_facebook_countsFrom"]:checked').val() == 'manual') {
1283
+ if (!sfsi_validator(SFSI('input[name="sfsi_facebook_manualCounts"]'), 'blank') && !sfsi_validator(SFSI('input[name="sfsi_facebook_manualCounts"]'), 'url')) {
1284
+ showErrorSuc("error", "Error : Please Enter a valid facebook manual counts ", 4);
1285
+ SFSI('input[name="sfsi_facebook_manualCounts"]').addClass('inputError');
1286
+ return false;
1287
+ }
1288
+ }
1289
+ }
1290
+
1291
+ /* validate twitter */
1292
+ if (sfsi_validator(SFSI('input[name="sfsi_twitter_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_twitter_countsDisplay"]'), 'checked')) {
1293
+ if (SFSI('input[name="sfsi_twitter_countsFrom"]:checked').val() == 'source') {
1294
+ if (!sfsi_validator(SFSI('input[name="tw_consumer_key"]'), 'blank')) {
1295
+ showErrorSuc("error", "Error : Please Enter a valid consumer key", 4);
1296
+ SFSI('input[name="tw_consumer_key"]').addClass('inputError');
1297
+ return false;
1298
+ }
1299
+ if (!sfsi_validator(SFSI('input[name="tw_consumer_secret"]'), 'blank')) {
1300
+ showErrorSuc("error", "Error : Please Enter a valid consume secret ", 4);
1301
+ SFSI('input[name="tw_consumer_secret"]').addClass('inputError');
1302
+ return false;
1303
+ }
1304
+ if (!sfsi_validator(SFSI('input[name="tw_oauth_access_token"]'), 'blank')) {
1305
+ showErrorSuc("error", "Error : Please Enter a valid oauth access token", 4);
1306
+ SFSI('input[name="tw_oauth_access_token"]').addClass('inputError');
1307
+ return false;
1308
+ }
1309
+ if (!sfsi_validator(SFSI('input[name="tw_oauth_access_token_secret"]'), 'blank')) {
1310
+ showErrorSuc("error", "Error : Please Enter a oAuth access token secret", 4);
1311
+ SFSI('input[name="tw_oauth_access_token_secret"]').addClass('inputError');
1312
+ return false;
1313
+ }
1314
+ }
1315
+ if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'manual') {
1316
+
1317
+ if (!sfsi_validator(SFSI('input[name="sfsi_twitter_manualCounts"]'), 'blank')) {
1318
+ showErrorSuc("error", "Error : Please Enter Twitter manual counts ", 4);
1319
+ SFSI('input[name="sfsi_twitter_manualCounts"]').addClass('inputError');
1320
+ return false;
1321
+ }
1322
+ }
1323
+ }
1324
+ /* validate LinkedIn */
1325
+ if (sfsi_validator(SFSI('input[name="sfsi_linkedIn_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_linkedIn_countsDisplay"]'), 'checked')) {
1326
+ if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'follower') {
1327
+ if (!sfsi_validator(SFSI('input[name="ln_company"]'), 'blank')) {
1328
+ showErrorSuc("error", "Error : Please Enter a valid company name", 4);
1329
+ SFSI('input[name="ln_company"]').addClass('inputError');
1330
+ return false;
1331
+ }
1332
+ if (!sfsi_validator(SFSI('input[name="ln_api_key"]'), 'blank')) {
1333
+ showErrorSuc("error", "Error : Please Enter a valid API key ", 4);
1334
+ SFSI('input[name="ln_api_key"]').addClass('inputError');
1335
+ return false;
1336
+ }
1337
+ if (!sfsi_validator(SFSI('input[name="ln_secret_key"]'), 'blank')) {
1338
+ showErrorSuc("error", "Error : Please Enter a valid secret ", 4);
1339
+ SFSI('input[name="ln_secret_key"]').addClass('inputError');
1340
+ return false;
1341
+ }
1342
+ if (!sfsi_validator(SFSI('input[name="ln_oAuth_user_token"]'), 'blank')) {
1343
+ showErrorSuc("error", "Error : Please Enter a oAuth Access Token", 4);
1344
+ SFSI('input[name="ln_oAuth_user_token"]').addClass('inputError');
1345
+ return false;
1346
+ }
1347
+ }
1348
+ if (SFSI('input[name="sfsi_linkedIn_countsFrom"]:checked').val() == 'manual') {
1349
+ if (!sfsi_validator(SFSI('input[name="sfsi_linkedIn_manualCounts"]'), 'blank')) {
1350
+ showErrorSuc("error", "Error : Please Enter LinkedIn manual counts ", 4);
1351
+ SFSI('input[name="sfsi_linkedIn_manualCounts"]').addClass('inputError');
1352
+ return false;
1353
+ }
1354
+ }
1355
+ }
1356
+ /* validate youtube */
1357
+ if (sfsi_validator(SFSI('input[name="sfsi_youtube_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_youtube_countsDisplay"]'), 'checked')) {
1358
+ if (SFSI('input[name="sfsi_youtube_countsFrom"]:checked').val() == 'subscriber') {
1359
+ if (
1360
+ !sfsi_validator(SFSI('input[name="sfsi_youtube_user"]'), 'blank') &&
1361
+ !sfsi_validator(SFSI('input[name="sfsi_youtube_channelId"]'), 'blank')
1362
+ ) {
1363
+ showErrorSuc("error", "Error : Please Enter a youtube user name or channel id", 4);
1364
+ SFSI('input[name="sfsi_youtube_user"]').addClass('inputError');
1365
+ SFSI('input[name="sfsi_youtube_channelId"]').addClass('inputError');
1366
+ return false;
1367
+ }
1368
+ }
1369
+ if (SFSI('input[name="sfsi_youtube_countsFrom"]:checked').val() == 'manual') {
1370
+ if (!sfsi_validator(SFSI('input[name="sfsi_youtube_manualCounts"]'), 'blank')) {
1371
+ showErrorSuc("error", "Error : Please Enter youtube manual counts ", 4);
1372
+ SFSI('input[name="sfsi_youtube_manualCounts"]').addClass('inputError');
1373
+ return false;
1374
+ }
1375
+ }
1376
+ }
1377
+ /* validate pinterest */
1378
+ if (sfsi_validator(SFSI('input[name="sfsi_pinterest_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_pinterest_countsDisplay"]'), 'checked')) {
1379
+ if (SFSI('input[name="sfsi_pinterest_countsFrom"]:checked').val() == 'manual') {
1380
+ if (!sfsi_validator(SFSI('input[name="sfsi_pinterest_manualCounts"]'), 'blank')) {
1381
+ showErrorSuc("error", "Error : Please Enter Pinterest manual counts ", 4);
1382
+ SFSI('input[name="sfsi_pinterest_manualCounts"]').addClass('inputError');
1383
+ return false;
1384
+ }
1385
+ }
1386
+ }
1387
+ /* validate instagram */
1388
+ if (sfsi_validator(SFSI('input[name="sfsi_instagram_countsDisplay"]'), 'activte') && sfsi_validator(SFSI('input[name="sfsi_instagram_countsDisplay"]'), 'checked')) {
1389
+ if (SFSI('input[name="sfsi_instagram_countsFrom"]:checked').val() == 'manual') {
1390
+ if (!sfsi_validator(SFSI('input[name="sfsi_instagram_manualCounts"]'), 'blank')) {
1391
+ showErrorSuc("error", "Error : Please Enter Instagram manual counts ", 4);
1392
+ SFSI('input[name="sfsi_instagram_manualCounts"]').addClass('inputError');
1393
+ return false;
1394
+ }
1395
+ }
1396
+ if (SFSI('input[name="sfsi_instagram_countsFrom"]:checked').val() == 'followers') {
1397
+ if (!sfsi_validator(SFSI('input[name="sfsi_instagram_User"]'), 'blank')) {
1398
+ showErrorSuc("error", "Error : Please Enter a instagram user name", 4);
1399
+ SFSI('input[name="sfsi_instagram_User"]').addClass('inputError');
1400
+ return false;
1401
+ }
1402
+ }
1403
+ }
1404
+ return true;
1405
+ }
1406
+
1407
+ function sfsi_validationStep5() {
1408
+ //var class_name= SFSI(element).hasAttr('sfsi_validate');
1409
+ /* validate size */
1410
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_size"]'), 'int')) {
1411
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1412
+ SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1413
+ return false;
1414
+ }
1415
+ if (parseInt(SFSI('input[name="sfsi_icons_size"]').val()) > 100) {
1416
+ showErrorSuc("error", "Error : Icons Size allow 100px maximum ", 5);
1417
+ SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1418
+ return false;
1419
+ }
1420
+ if (parseInt(SFSI('input[name="sfsi_icons_size"]').val()) <= 0) {
1421
+ showErrorSuc("error", "Error : Icons Size should be more than 0 ", 5);
1422
+ SFSI('input[name="sfsi_icons_size"]').addClass('inputError');
1423
+ return false;
1424
+ }
1425
+ /* validate spacing */
1426
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_spacing"]'), 'int')) {
1427
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1428
+ SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1429
+ return false;
1430
+ }
1431
+ if (parseInt(SFSI('input[name="sfsi_icons_spacing"]').val()) < 0) {
1432
+ showErrorSuc("error", "Error : Icons Spacing should be 0 or more", 5);
1433
+ SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1434
+ return false;
1435
+ }
1436
+ /* icons per row spacing */
1437
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_perRow"]'), 'int')) {
1438
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 5);
1439
+ SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1440
+ return false;
1441
+ }
1442
+ if (parseInt(SFSI('input[name="sfsi_icons_perRow"]').val()) <= 0) {
1443
+ showErrorSuc("error", "Error : Icons Per row should be more than 0", 5);
1444
+ SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1445
+ return false;
1446
+ }
1447
+ /* validate icons effects */
1448
+ // if(SFSI('input[name="sfsi_icons_float"]:checked').val()=="yes" && SFSI('input[name="sfsi_icons_stick"]:checked').val()=="yes")
1449
+ // {
1450
+ // showErrorSuc("error","Error : Only one allow from Sticking & floating ",5);
1451
+ // SFSI('input[name="sfsi_icons_float"][value="no"]').prop("checked", true);
1452
+ // return false;
1453
+ // }
1454
+ return true;
1455
+ }
1456
+
1457
+ function sfsi_validationStep7() {
1458
+ //var class_name= SFSI(element).hasAttr('sfsi_validate');
1459
+ /* validate border thikness */
1460
+ if (!sfsi_validator(SFSI('input[name="sfsi_popup_border_thickness"]'), 'int')) {
1461
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1462
+ SFSI('input[name="sfsi_popup_border_thickness"]').addClass('inputError');
1463
+ return false;
1464
+ }
1465
+ /* validate fotn size */
1466
+ if (!sfsi_validator(SFSI('input[name="sfsi_popup_fontSize"]'), 'int')) {
1467
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1468
+ SFSI('input[name="sfsi_popup_fontSize"]').addClass('inputError');
1469
+ return false;
1470
+ }
1471
+ /* validate pop up shown */
1472
+ if (SFSI('input[name="sfsi_Shown_pop"]:checked').val() == 'once') {
1473
+
1474
+ if (!sfsi_validator(SFSI('input[name="sfsi_Shown_popupOnceTime"]'), 'blank') && !sfsi_validator(SFSI('input[name="sfsi_Shown_popupOnceTime"]'), 'url')) {
1475
+ showErrorSuc("error", "Error : Please Enter a valid pop up shown time ", 7);
1476
+ SFSI('input[name="sfsi_Shown_popupOnceTime"]').addClass('inputError');
1477
+ return false;
1478
+ }
1479
+ }
1480
+ /* validate page ids */
1481
+ if (SFSI('input[name="sfsi_Show_popupOn"]:checked').val() == 'selectedpage') {
1482
+ if (!sfsi_validator(SFSI('input[name="sfsi_Show_popupOn"]'), 'blank')) {
1483
+ showErrorSuc("error", "Error : Please Enter page ids with comma ", 7);
1484
+ SFSI('input[name="sfsi_Show_popupOn"]').addClass('inputError');
1485
+ return false;
1486
+ }
1487
+ }
1488
+ /* validate spacing */
1489
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_spacing"]'), 'int')) {
1490
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1491
+ SFSI('input[name="sfsi_icons_spacing"]').addClass('inputError');
1492
+ return false;
1493
+ }
1494
+ /* icons per row spacing */
1495
+ if (!sfsi_validator(SFSI('input[name="sfsi_icons_perRow"]'), 'int')) {
1496
+ showErrorSuc("error", "Error : Please enter a numeric value only ", 7);
1497
+ SFSI('input[name="sfsi_icons_perRow"]').addClass('inputError');
1498
+ return false;
1499
+ }
1500
+ return true;
1501
+ }
1502
+
1503
+ function sfsi_validator(element, valType) {
1504
+ var Vurl = new RegExp("^(http|https|ftp)\://([a-zA-Z0-9\.\-]+(\:[a-zA-Z0-9\.&amp;%\$\-]+)*@)*((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])|([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9\-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\@\?\'\\\+&amp;%\$#\=~_\-]+))*$");
1505
+ //var Vurl = /http:\/\/[A-Za-z0-9\.-]{3,}\.[A-Za-z]{3}/;
1506
+
1507
+ switch (valType) {
1508
+ case "blank":
1509
+ if (!element.val().trim()) return false;
1510
+ else return true;
1511
+ break;
1512
+ case "url":
1513
+ if (!Vurl.test(element.val().trim())) return false;
1514
+ else return true;
1515
+ break;
1516
+ case "checked":
1517
+ if (!element.attr('checked') === true) return false;
1518
+ else return true;
1519
+ break;
1520
+ case "activte":
1521
+ if (!element.attr('disabled')) return true;
1522
+ else return false;
1523
+ break;
1524
+ case "int":
1525
+ if (!isNaN(element.val())) return true;
1526
+ else return false;
1527
+ break;
1528
+
1529
+ }
1530
+ }
1531
+
1532
+ function afterIconSuccess(s, nonce) {
1533
+ if (s.res = "success") {
1534
+ var i = s.key + 1,
1535
+ e = s.element,
1536
+ t = e + 1;
1537
+ SFSI("#total_cusotm_icons").val(s.element);
1538
+ SFSI(".upload-overlay").hide("slow");
1539
+ SFSI(".uperror").html("");
1540
+ showErrorSuc("success", "Custom Icon updated successfully", 1);
1541
+ d = new Date();
1542
+
1543
+ var ele = SFSI(".notice_custom_icons_premium");
1544
+
1545
+ SFSI("li.custom:last-child").removeClass("bdr_btm_non");
1546
+ SFSI("li.custom:last-child").children("span.custom-img").children("img").attr("src", s.img_path + "?" + d.getTime());
1547
+ SFSI("input[name=sfsiICON_" + s.key + "]").removeAttr("ele-type");
1548
+ SFSI("input[name=sfsiICON_" + s.key + "]").removeAttr("isnew");
1549
+ icons_name = SFSI("li.custom:last-child").find("input.styled").attr("name");
1550
+ var n = icons_name.split("_");
1551
+ s.key = s.key, s.img_path += "?" + d.getTime(), 5 > e && SFSI(".icn_listing").append('<li id="c' + i + '" class="custom bdr_btm_non"><div class="radio_section tb_4_ck"><span class="checkbox" dynamic_ele="yes" style=" 0px 0px;"></span><input name="sfsiICON_' + i + '" type="checkbox" value="yes" class="styled" style="display:none;" element-type="cusotm-icon" isNew="yes" /></div> <span class="custom-img"><img src="' + SFSI("#plugin_url").val() + 'images/custom.png" id="CImg_' + i + '" alt="error" /> </span> <span class="custom custom-txt">Custom' + t + ' </span> <div class="right_info"> <p><span>It depends:</span> Upload a custom icon if you have other accounts/websites you want to link to.</p><div class="inputWrapper"></div></li>'),
1552
+ SFSI(".custom_section").show(),
1553
+ SFSI('<div class="row sfsiICON_' + s.key + ' cm_lnk"> <h2 class="custom"> <span class="customstep2-img"> <img src="' + s.img_path + "?" + d.getTime() + '" style="border-radius:48%" alt="error" /> </span> <span class="sfsiCtxt">Custom ' + e + '</span> </h2> <div class="inr_cont "><p>Where do you want this icon to link to?</p> <p class="radio_section fb_url custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>').insertBefore('.notice_custom_icons_premium');
1554
+ //SFSI(".custom-links").append(' <div class="row sfsiICON_' + s.key + ' cm_lnk"> <h2 class="custom"> <span class="customstep2-img"> <img src="' + s.img_path + "?" + d.getTime() + '" style="border-radius:48%" /> </span> <span class="sfsiCtxt">Custom ' + e + '</span> </h2> <div class="inr_cont "><p>Where do you want this icon to link to?</p> <p class="radio_section fb_url custom_section sfsiICON_' + s.key + '" ><label>Link :</label><input file-id="' + s.key + '" name="sfsi_CustomIcon_links[]" type="text" value="" placeholder="http://" class="add" /></p></div></div>');
1555
+ SFSI(".notice_custom_icons_premium").show();
1556
+ SFSI("#c" + s.key).append('<input type="hidden" name="nonce" value="' + nonce + '">');
1557
+ var o = SFSI("div.custom_m").find("div.mouseover_field").length;
1558
+ SFSI("div.custom_m").append(0 == o % 2 ? '<div class="clear"> </div> <div class="mouseover_field custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>' : '<div class="cHover " ><div class="mouseover_field custom_section sfsiICON_' + s.key + '"><label>Custom ' + e + ':</label><input name="sfsi_custom_MouseOverTexts[]" value="" type="text" file-id="' + s.key + '" /></div>'),
1559
+ SFSI("ul.share_icon_order").append('<li class="custom_iconOrder sfsiICON_' + s.key + '" data-index="" element-id="' + s.key + '" id=""><a href="#" title="Custom Icon" ><img src="' + s.img_path + '" alt="Linked In" class="sfcm"/></a></li>'),
1560
+ SFSI("ul.sfsi_sample_icons").append('<li class="sfsiICON_' + s.key + '" element-id="' + s.key + '" ><div><img src="' + s.img_path + '" alt="Linked In" class="sfcm"/><span class="sfsi_Cdisplay">12k</span></div></li>'),
1561
+ sfsi_update_index(), update_Sec5Iconorder(), sfsi_update_step1(), sfsi_update_step2(),
1562
+ sfsi_update_step5(), SFSI(".upload-overlay").css("pointer-events", "auto"), sfsi_showPreviewCounts(),
1563
+ afterLoad();
1564
+ }
1565
+ }
1566
+
1567
+ function beforeIconSubmit(s) {
1568
+ if (SFSI(".uperror").html("Uploading....."), window.File && window.FileReader && window.FileList && window.Blob) {
1569
+ SFSI(s).val() || SFSI(".uperror").html("File is empty");
1570
+ var i = s.files[0].size,
1571
+ e = s.files[0].type;
1572
+ switch (e) {
1573
+ case "image/png":
1574
+ case "image/gif":
1575
+ case "image/jpeg":
1576
+ case "image/pjpeg":
1577
+ break;
1578
+
1579
+ default:
1580
+ return SFSI(".uperror").html("Unsupported file"), !1;
1581
+ }
1582
+ return i > 1048576 ? (SFSI(".uperror").html("Image should be less than 1 MB"), !1) : !0;
1583
+ }
1584
+ return !0;
1585
+ }
1586
+
1587
+ function bytesToSize(s) {
1588
+ var i = ["Bytes", "KB", "MB", "GB", "TB"];
1589
+ if (0 == s) return "0 Bytes";
1590
+ var e = parseInt(Math.floor(Math.log(s) / Math.log(1024)));
1591
+ return Math.round(s / Math.pow(1024, e), 2) + " " + i[e];
1592
+ }
1593
+
1594
+ function showErrorSuc(s, i, e) {
1595
+ if ("error" == s) var t = "errorMsg";
1596
+ else var t = "sucMsg";
1597
+ return SFSI(".tab" + e + ">." + t).html(i), SFSI(".tab" + e + ">." + t).show(),
1598
+ SFSI(".tab" + e + ">." + t).effect("highlight", {}, 5e3), setTimeout(function () {
1599
+ SFSI("." + t).slideUp("slow");
1600
+ }, 5e3), !1;
1601
+ }
1602
+
1603
+ function beForeLoad() {
1604
+ SFSI(".loader-img").show(), SFSI(".save_button >a").html("Saving..."), SFSI(".save_button >a").css("pointer-events", "none");
1605
+ }
1606
+
1607
+ function afterLoad() {
1608
+ SFSI("input").removeClass("inputError"), SFSI(".save_button >a").html("Save"), SFSI(".tab10>div.save_button >a").html("Save All Settings"),
1609
+ SFSI(".save_button >a").css("pointer-events", "auto"), SFSI(".save_button >a").removeAttr("onclick"),
1610
+ SFSI(".loader-img").hide();
1611
+ }
1612
+
1613
+ function sfsi_make_popBox() {
1614
+ var s = 0;
1615
+ SFSI(".sfsi_sample_icons >li").each(function () {
1616
+ "none" != SFSI(this).css("display") && (s = 1);
1617
+ }),
1618
+ 0 == s ? SFSI(".sfsi_Popinner").hide() : SFSI(".sfsi_Popinner").show(),
1619
+ "" != SFSI('input[name="sfsi_popup_text"]').val() ? (SFSI(".sfsi_Popinner >h2").html(SFSI('input[name="sfsi_popup_text"]').val()),
1620
+ SFSI(".sfsi_Popinner >h2").show()) : SFSI(".sfsi_Popinner >h2").hide(), SFSI(".sfsi_Popinner").css({
1621
+ "border-color": SFSI('input[name="sfsi_popup_border_color"]').val(),
1622
+ "border-width": SFSI('input[name="sfsi_popup_border_thickness"]').val(),
1623
+ "border-style": "solid"
1624
+ }),
1625
+ SFSI(".sfsi_Popinner").css("background-color", SFSI('input[name="sfsi_popup_background_color"]').val()),
1626
+ SFSI(".sfsi_Popinner h2").css("font-family", SFSI("#sfsi_popup_font").val()), SFSI(".sfsi_Popinner h2").css("font-style", SFSI("#sfsi_popup_fontStyle").val()),
1627
+ SFSI(".sfsi_Popinner >h2").css("font-size", parseInt(SFSI('input[name="sfsi_popup_fontSize"]').val())),
1628
+ SFSI(".sfsi_Popinner >h2").css("color", SFSI('input[name="sfsi_popup_fontColor"]').val() + " !important"),
1629
+ "yes" == SFSI('input[name="sfsi_popup_border_shadow"]:checked').val() ? SFSI(".sfsi_Popinner").css("box-shadow", "12px 30px 18px #CCCCCC") : SFSI(".sfsi_Popinner").css("box-shadow", "none");
1630
+ }
1631
+
1632
+ function sfsi_stick_widget(s) {
1633
+ 0 == initTop.length && (SFSI(".sfsi_widget").each(function (s) {
1634
+ initTop[s] = SFSI(this).position().top;
1635
+ }), console.log(initTop));
1636
+ var i = SFSI(window).scrollTop(),
1637
+ e = [],
1638
+ t = [];
1639
+ SFSI(".sfsi_widget").each(function (s) {
1640
+ e[s] = SFSI(this).position().top, t[s] = SFSI(this);
1641
+ });
1642
+ var n = !1;
1643
+ for (var o in e) {
1644
+ var a = parseInt(o) + 1;
1645
+ e[o] < i && e[a] > i && a < e.length ? (SFSI(t[o]).css({
1646
+ position: "fixed",
1647
+ top: s
1648
+ }), SFSI(t[a]).css({
1649
+ position: "",
1650
+ top: initTop[a]
1651
+ }), n = !0) : SFSI(t[o]).css({
1652
+ position: "",
1653
+ top: initTop[o]
1654
+ });
1655
+ }
1656
+ if (!n) {
1657
+ var r = e.length - 1,
1658
+ c = -1;
1659
+ e.length > 1 && (c = e.length - 2), initTop[r] < i ? (SFSI(t[r]).css({
1660
+ position: "fixed",
1661
+ top: s
1662
+ }), c >= 0 && SFSI(t[c]).css({
1663
+ position: "",
1664
+ top: initTop[c]
1665
+ })) : (SFSI(t[r]).css({
1666
+ position: "",
1667
+ top: initTop[r]
1668
+ }), c >= 0 && e[c] < i);
1669
+ }
1670
+ }
1671
+
1672
+ function sfsi_setCookie(s, i, e) {
1673
+ var t = new Date();
1674
+ t.setTime(t.getTime() + 1e3 * 60 * 60 * 24 * e);
1675
+ var n = "expires=" + t.toGMTString();
1676
+ document.cookie = s + "=" + i + "; " + n;
1677
+ }
1678
+
1679
+ function sfsfi_getCookie(s) {
1680
+ for (var i = s + "=", e = document.cookie.split(";"), t = 0; t < e.length; t++) {
1681
+ var n = e[t].trim();
1682
+ if (0 == n.indexOf(i)) return n.substring(i.length, n.length);
1683
+ }
1684
+ return "";
1685
+ }
1686
+
1687
+ function sfsi_hideFooter() {}
1688
+
1689
+ window.onerror = function () {},
1690
+ SFSI = jQuery,
1691
+ SFSI(window).on('load', function () {
1692
+ SFSI("#sfpageLoad").fadeOut(2e3);
1693
+ });
1694
+
1695
+ //changes done {Monad}
1696
+ function selectText(containerid) {
1697
+ if (document.selection) {
1698
+ var range = document.body.createTextRange();
1699
+ range.moveToElementText(document.getElementById(containerid));
1700
+ range.select();
1701
+ } else if (window.getSelection()) {
1702
+ var range = document.createRange();
1703
+ range.selectNode(document.getElementById(containerid));
1704
+ window.getSelection().removeAllRanges();
1705
+ window.getSelection().addRange(range);
1706
+ }
1707
+ }
1708
+
1709
+ function create_suscriber_form() {
1710
+ //Popbox customization
1711
+ "no" == SFSI('input[name="sfsi_form_adjustment"]:checked').val() ? SFSI(".sfsi_subscribe_Popinner").css({
1712
+ "width": parseInt(SFSI('input[name="sfsi_form_width"]').val()),
1713
+ "height": parseInt(SFSI('input[name="sfsi_form_height"]').val())
1714
+ }) : SFSI(".sfsi_subscribe_Popinner").css({
1715
+ "width": '',
1716
+ "height": ''
1717
+ });
1718
+
1719
+ "yes" == SFSI('input[name="sfsi_form_adjustment"]:checked').val() ? SFSI(".sfsi_html > .sfsi_subscribe_Popinner").css({
1720
+ "width": "100%"
1721
+ }) : '';
1722
+
1723
+ "yes" == SFSI('input[name="sfsi_form_border"]:checked').val() ? SFSI(".sfsi_subscribe_Popinner").css({
1724
+ "border": SFSI('input[name="sfsi_form_border_thickness"]').val() + "px solid " + SFSI('input[name="sfsi_form_border_color"]').val()
1725
+ }) : SFSI(".sfsi_subscribe_Popinner").css("border", "none");
1726
+
1727
+ SFSI('input[name="sfsi_form_background"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").css("background-color", SFSI('input[name="sfsi_form_background"]').val())) : '';
1728
+
1729
+ //Heading customization
1730
+ SFSI('input[name="sfsi_form_heading_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").html(SFSI('input[name="sfsi_form_heading_text"]').val())) : SFSI(".sfsi_subscribe_Popinner > form > h5").html('');
1731
+
1732
+ SFSI('#sfsi_form_heading_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-family", SFSI("#sfsi_form_heading_font").val())) : '';
1733
+
1734
+ if (SFSI('#sfsi_form_heading_fontstyle').val() != 'bold') {
1735
+ SFSI('#sfsi_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-style", SFSI("#sfsi_form_heading_fontstyle").val())) : '';
1736
+ SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-weight", '');
1737
+ } else {
1738
+ SFSI('#sfsi_form_heading_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-weight", "bold")) : '';
1739
+ SFSI(".sfsi_subscribe_Popinner > form > h5").css("font-style", '');
1740
+ }
1741
+
1742
+ SFSI('input[name="sfsi_form_heading_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("color", SFSI('input[name="sfsi_form_heading_fontcolor"]').val())) : '';
1743
+
1744
+ SFSI('input[name="sfsi_form_heading_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css({
1745
+ "font-size": parseInt(SFSI('input[name="sfsi_form_heading_fontsize"]').val())
1746
+ })) : '';
1747
+
1748
+ SFSI('#sfsi_form_heading_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner > form > h5").css("text-align", SFSI("#sfsi_form_heading_fontalign").val())) : '';
1749
+
1750
+ //Field customization
1751
+ SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').attr("placeholder", '');
1752
+
1753
+ SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".sfsi_left_container > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".sfsi_left_container > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1754
+
1755
+ SFSI('input[name="sfsi_form_field_text"]').val() != "" ? (SFSI(".like_pop_box > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val(SFSI('input[name="sfsi_form_field_text"]').val())) : SFSI(".like_pop_box > .sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').val('');
1756
+
1757
+ SFSI('#sfsi_form_field_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-family", SFSI("#sfsi_form_field_font").val())) : '';
1758
+
1759
+ if (SFSI('#sfsi_form_field_fontstyle').val() != "bold") {
1760
+ SFSI('#sfsi_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", SFSI("#sfsi_form_field_fontstyle").val())) : '';
1761
+ SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", '');
1762
+ } else {
1763
+ SFSI('#sfsi_form_field_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-weight", 'bold')) : '';
1764
+ SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("font-style", '');
1765
+ }
1766
+
1767
+ SFSI('input[name="sfsi_form_field_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("color", SFSI('input[name="sfsi_form_field_fontcolor"]').val())) : '';
1768
+
1769
+ SFSI('input[name="sfsi_form_field_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css({
1770
+ "font-size": parseInt(SFSI('input[name="sfsi_form_field_fontsize"]').val())
1771
+ })) : '';
1772
+
1773
+ SFSI('#sfsi_form_field_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="data[Widget][email]"]').css("text-align", SFSI("#sfsi_form_field_fontalign").val())) : '';
1774
+
1775
+ //Button customization
1776
+ SFSI('input[name="sfsi_form_button_text"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').attr("value", SFSI('input[name="sfsi_form_button_text"]').val())) : '';
1777
+
1778
+ SFSI('#sfsi_form_button_font').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-family", SFSI("#sfsi_form_button_font").val())) : '';
1779
+
1780
+ if (SFSI('#sfsi_form_button_fontstyle').val() != "bold") {
1781
+ SFSI('#sfsi_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", SFSI("#sfsi_form_button_fontstyle").val())) : '';
1782
+ SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", '');
1783
+ } else {
1784
+ SFSI('#sfsi_form_button_fontstyle').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-weight", 'bold')) : '';
1785
+ SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("font-style", '');
1786
+ }
1787
+
1788
+ SFSI('input[name="sfsi_form_button_fontcolor"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("color", SFSI('input[name="sfsi_form_button_fontcolor"]').val())) : '';
1789
+
1790
+ SFSI('input[name="sfsi_form_button_fontsize"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css({
1791
+ "font-size": parseInt(SFSI('input[name="sfsi_form_button_fontsize"]').val())
1792
+ })) : '';
1793
+
1794
+ SFSI('#sfsi_form_button_fontalign').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("text-align", SFSI("#sfsi_form_button_fontalign").val())) : '';
1795
+
1796
+ SFSI('input[name="sfsi_form_button_background"]').val() != "" ? (SFSI(".sfsi_subscribe_Popinner").find('input[name="subscribe"]').css("background-color", SFSI('input[name="sfsi_form_button_background"]').val())) : '';
1797
+
1798
+ var innerHTML = SFSI(".sfsi_html > .sfsi_subscribe_Popinner").html();
1799
+ var styleCss = SFSI(".sfsi_html > .sfsi_subscribe_Popinner").attr("style");
1800
+ innerHTML = '<div style="' + styleCss + '">' + innerHTML + '</div>';
1801
+ SFSI(".sfsi_subscription_html > xmp").html(innerHTML);
1802
+
1803
+ /*var data = {
1804
+ action:"getForm",
1805
+ heading: SFSI('input[name="sfsi_form_heading_text"]').val(),
1806
+ placeholder:SFSI('input[name="sfsi_form_field_text"]').val(),
1807
+ button:SFSI('input[name="sfsi_form_button_text"]').val()
1808
+ };
1809
+ SFSI.ajax({
1810
+ url:sfsi_icon_ajax_object.ajax_url,
1811
+ type:"post",
1812
+ data:data,
1813
+ success:function(s) {
1814
+ SFSI(".sfsi_subscription_html").html(s);
1815
+ }
1816
+ });*/
1817
+ }
1818
+
1819
+ var global_error = 0;
1820
+ if (typeof SFSI != 'undefined') {
1821
+
1822
+ function sfsi_dismiss_notice(btnClass, ajaxAction) {
1823
+
1824
+ var btnClass = "." + btnClass;
1825
+
1826
+ SFSI(document).on("click", btnClass, function () {
1827
+
1828
+ SFSI.ajax({
1829
+ url: sfsi_icon_ajax_object.ajax_url,
1830
+ type: "post",
1831
+ data: {
1832
+ action: ajaxAction
1833
+ },
1834
+ success: function (e) {
1835
+ if (false != e) {
1836
+ SFSI(btnClass).parent().remove();
1837
+ }
1838
+ }
1839
+ });
1840
+ });
1841
+ }
1842
+ }
1843
+
1844
+ SFSI(document).ready(function (s) {
1845
+
1846
+ var arrDismiss = [
1847
+
1848
+ {
1849
+ "btnClass": "sfsi-notice-dismiss",
1850
+ "action": "sfsi_dismiss_lang_notice"
1851
+ },
1852
+
1853
+ {
1854
+ "btnClass": "sfsi-AddThis-notice-dismiss",
1855
+ "action": "sfsi_dismiss_addThis_icon_notice"
1856
+ },
1857
+
1858
+ {
1859
+ "btnClass": "sfsi_error_reporting_notice-dismiss",
1860
+ "action": "sfsi_dismiss_error_reporting_notice"
1861
+ }
1862
+ ];
1863
+
1864
+ SFSI.each(arrDismiss, function (key, valueObj) {
1865
+ sfsi_dismiss_notice(valueObj.btnClass, valueObj.action);
1866
+ });
1867
+
1868
+ //changes done {Monad}
1869
+ SFSI(".tab_3_icns").on("click", ".cstomskins_upload", function () {
1870
+ SFSI(".cstmskins-overlay").show("slow", function () {
1871
+ e = 0;
1872
+ });
1873
+ });
1874
+ /*SFSI("#custmskin_clspop").live("click", function() {*/
1875
+ SFSI(document).on("click", '#custmskin_clspop', function () {
1876
+ SFSI_done();
1877
+ SFSI(".cstmskins-overlay").hide("slow");
1878
+ });
1879
+
1880
+ create_suscriber_form();
1881
+ SFSI('input[name="sfsi_form_heading_text"], input[name="sfsi_form_border_thickness"], input[name="sfsi_form_height"], input[name="sfsi_form_width"], input[name="sfsi_form_heading_fontsize"], input[name="sfsi_form_field_text"], input[name="sfsi_form_field_fontsize"], input[name="sfsi_form_button_text"], input[name="sfsi_form_button_fontsize"]').on("keyup", create_suscriber_form);
1882
+
1883
+ SFSI('input[name="sfsi_form_border_color"], input[name="sfsi_form_background"] ,input[name="sfsi_form_heading_fontcolor"], input[name="sfsi_form_field_fontcolor"] ,input[name="sfsi_form_button_fontcolor"],input[name="sfsi_form_button_background"]').on("focus", create_suscriber_form);
1884
+
1885
+ SFSI("#sfsi_form_heading_font, #sfsi_form_heading_fontstyle, #sfsi_form_heading_fontalign, #sfsi_form_field_font, #sfsi_form_field_fontstyle, #sfsi_form_field_fontalign, #sfsi_form_button_font, #sfsi_form_button_fontstyle, #sfsi_form_button_fontalign").on("change", create_suscriber_form);
1886
+
1887
+ /*SFSI(".radio").live("click", function() {*/
1888
+ SFSI(document).on("click", '.radio', function () {
1889
+
1890
+ var s = SFSI(this).parent().find("input:radio:first");
1891
+
1892
+ var inputName = s.attr("name");
1893
+ var inputChecked = s.attr("checked");
1894
+
1895
+ switch (inputName) {
1896
+ case 'sfsi_form_adjustment':
1897
+ if (s.val() == 'no')
1898
+ s.parents(".row_tab").next(".row_tab").show("fast");
1899
+ else
1900
+ s.parents(".row_tab").next(".row_tab").hide("fast");
1901
+ create_suscriber_form()
1902
+ break;
1903
+ case 'sfsi_form_border':
1904
+ if (s.val() == 'yes')
1905
+ s.parents(".row_tab").next(".row_tab").show("fast");
1906
+ else
1907
+ s.parents(".row_tab").next(".row_tab").hide("fast");
1908
+ create_suscriber_form()
1909
+ break;
1910
+ case 'sfsi_icons_suppress_errors':
1911
+
1912
+ SFSI('input[name="sfsi_icons_suppress_errors"]').removeAttr('checked');
1913
+
1914
+ if (s.val() == 'yes')
1915
+ SFSI('input[name="sfsi_icons_suppress_errors"][value="yes"]').attr('checked', 'true');
1916
+ else
1917
+ SFSI('input[name="sfsi_icons_suppress_errors"][value="no"]').attr('checked', 'true');
1918
+ break;
1919
+
1920
+ default:
1921
+ case 'sfsi_responsive_icons_end_post':
1922
+ if("yes" == s.val()){
1923
+ jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').show();
1924
+ }else{
1925
+ jQuery('.sfsi_responsive_icon_option_li.sfsi_responsive_show').hide();
1926
+ }
1927
+ }
1928
+ });
1929
+
1930
+ SFSI('#sfsi_form_border_color').wpColorPicker({
1931
+ defaultColor: false,
1932
+ change: function (event, ui) {
1933
+ create_suscriber_form()
1934
+ },
1935
+ clear: function () {
1936
+ create_suscriber_form()
1937
+ },
1938
+ hide: true,
1939
+ palettes: true
1940
+ }),
1941
+ SFSI('#sfsi_form_background').wpColorPicker({
1942
+ defaultColor: false,
1943
+ change: function (event, ui) {
1944
+ create_suscriber_form()
1945
+ },
1946
+ clear: function () {
1947
+ create_suscriber_form()
1948
+ },
1949
+ hide: true,
1950
+ palettes: true
1951
+ }),
1952
+ SFSI('#sfsi_form_heading_fontcolor').wpColorPicker({
1953
+ defaultColor: false,
1954
+ change: function (event, ui) {
1955
+ create_suscriber_form()
1956
+ },
1957
+ clear: function () {
1958
+ create_suscriber_form()
1959
+ },
1960
+ hide: true,
1961
+ palettes: true
1962
+ }),
1963
+ SFSI('#sfsi_form_button_fontcolor').wpColorPicker({
1964
+ defaultColor: false,
1965
+ change: function (event, ui) {
1966
+ create_suscriber_form()
1967
+ },
1968
+ clear: function () {
1969
+ create_suscriber_form()
1970
+ },
1971
+ hide: true,
1972
+ palettes: true
1973
+ }),
1974
+ SFSI('#sfsi_form_button_background').wpColorPicker({
1975
+ defaultColor: false,
1976
+ change: function (event, ui) {
1977
+ create_suscriber_form()
1978
+ },
1979
+ clear: function () {
1980
+ create_suscriber_form()
1981
+ },
1982
+ hide: true,
1983
+ palettes: true
1984
+ });
1985
+ //changes done {Monad}
1986
+
1987
+ function i() {
1988
+ SFSI(".uperror").html(""), afterLoad();
1989
+ var s = SFSI('input[name="' + SFSI("#upload_id").val() + '"]');
1990
+ s.removeAttr("checked");
1991
+ var i = SFSI(s).parent().find("span:first");
1992
+ return SFSI(i).css("background-position", "0px 0px"), SFSI(".upload-overlay").hide("slow"),
1993
+ !1;
1994
+ }
1995
+ SFSI("#accordion").accordion({
1996
+ collapsible: !0,
1997
+ active: !1,
1998
+ heightStyle: "content",
1999
+ event: "click",
2000
+ beforeActivate: function (s, i) {
2001
+ if (i.newHeader[0]) var e = i.newHeader,
2002
+ t = e.next(".ui-accordion-content");
2003
+ else var e = i.oldHeader,
2004
+ t = e.next(".ui-accordion-content");
2005
+ var n = "true" == e.attr("aria-selected");
2006
+ return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2007
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2008
+ t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2009
+ }
2010
+ }),
2011
+ SFSI("#accordion1").accordion({
2012
+ collapsible: !0,
2013
+ active: !1,
2014
+ heightStyle: "content",
2015
+ event: "click",
2016
+ beforeActivate: function (s, i) {
2017
+ if (i.newHeader[0]) var e = i.newHeader,
2018
+ t = e.next(".ui-accordion-content");
2019
+ else var e = i.oldHeader,
2020
+ t = e.next(".ui-accordion-content");
2021
+ var n = "true" == e.attr("aria-selected");
2022
+ return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2023
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2024
+ t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2025
+ }
2026
+ }),
2027
+
2028
+ SFSI("#accordion2").accordion({
2029
+ collapsible: !0,
2030
+ active: !1,
2031
+ heightStyle: "content",
2032
+ event: "click",
2033
+ beforeActivate: function (s, i) {
2034
+ if (i.newHeader[0]) var e = i.newHeader,
2035
+ t = e.next(".ui-accordion-content");
2036
+ else var e = i.oldHeader,
2037
+ t = e.next(".ui-accordion-content");
2038
+ var n = "true" == e.attr("aria-selected");
2039
+ return e.toggleClass("ui-corner-all", n).toggleClass("accordion-header-active ui-state-active ui-corner-top", !n).attr("aria-selected", (!n).toString()),
2040
+ e.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", n).toggleClass("ui-icon-triangle-1-s", !n),
2041
+ t.toggleClass("accordion-content-active", !n), n ? t.slideUp() : t.slideDown(), !1;
2042
+ }
2043
+ }),
2044
+ SFSI(".closeSec").on("click", function () {
2045
+ var s = !0,
2046
+ i = SFSI(this).closest("div.ui-accordion-content").prev("h3.ui-accordion-header").first(),
2047
+ e = SFSI(this).closest("div.ui-accordion-content").first();
2048
+ i.toggleClass("ui-corner-all", s).toggleClass("accordion-header-active ui-state-active ui-corner-top", !s).attr("aria-selected", (!s).toString()),
2049
+ i.children(".ui-icon").toggleClass("ui-icon-triangle-1-e", s).toggleClass("ui-icon-triangle-1-s", !s),
2050
+ e.toggleClass("accordion-content-active", !s), s ? e.slideUp() : e.slideDown();
2051
+ }),
2052
+ SFSI(document).click(function (s) {
2053
+ var i = SFSI(".sfsi_FrntInner_chg"),
2054
+ e = SFSI(".sfsi_wDiv"),
2055
+ t = SFSI("#at15s");
2056
+ 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();
2057
+ }),
2058
+ SFSI('#sfsi_popup_background_color').wpColorPicker({
2059
+ defaultColor: false,
2060
+ change: function (event, ui) {
2061
+ sfsi_make_popBox()
2062
+ },
2063
+ clear: function () {
2064
+ sfsi_make_popBox()
2065
+ },
2066
+ hide: true,
2067
+ palettes: true
2068
+ }),
2069
+ SFSI('#sfsi_popup_border_color').wpColorPicker({
2070
+ defaultColor: false,
2071
+ change: function (event, ui) {
2072
+ sfsi_make_popBox()
2073
+ },
2074
+ clear: function () {
2075
+ sfsi_make_popBox()
2076
+ },
2077
+ hide: true,
2078
+ palettes: true
2079
+ }),
2080
+ SFSI('#sfsi_popup_fontColor').wpColorPicker({
2081
+ defaultColor: false,
2082
+ change: function (event, ui) {
2083
+ sfsi_make_popBox()
2084
+ },
2085
+ clear: function () {
2086
+ sfsi_make_popBox()
2087
+ },
2088
+ hide: true,
2089
+ palettes: true
2090
+ }),
2091
+ SFSI("div#sfsiid_linkedin").find(".icon4").find("a").find("img").mouseover(function () {
2092
+ SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/linkedIn_hover.svg");
2093
+ }),
2094
+ SFSI("div#sfsiid_linkedin").find(".icon4").find("a").find("img").mouseleave(function () {
2095
+ SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/linkedIn.svg");
2096
+ }),
2097
+ SFSI("div#sfsiid_youtube").find(".icon1").find("a").find("img").mouseover(function () {
2098
+ SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/youtube_hover.svg");
2099
+ }),
2100
+ SFSI("div#sfsiid_youtube").find(".icon1").find("a").find("img").mouseleave(function () {
2101
+ SFSI(this).attr("src", sfsi_icon_ajax_object.plugin_url + "images/visit_icons/youtube.svg");
2102
+ }),
2103
+ SFSI("div#sfsiid_facebook").find(".icon1").find("a").find("img").mouseover(function () {
2104
+ SFSI(this).css("opacity", "0.9");
2105
+ }),
2106
+ SFSI("div#sfsiid_facebook").find(".icon1").find("a").find("img").mouseleave(function () {
2107
+ SFSI(this).css("opacity", "1");
2108
+ }),
2109
+ SFSI("div#sfsiid_twitter").find(".cstmicon1").find("a").find("img").mouseover(function () {
2110
+ SFSI(this).css("opacity", "0.9");
2111
+ }),
2112
+ SFSI("div#sfsiid_twitter").find(".cstmicon1").find("a").find("img").mouseleave(function () {
2113
+ SFSI(this).css("opacity", "1");
2114
+ }),
2115
+ SFSI("#sfsi_save1").on("click", function () {
2116
+ // console.log('save1',sfsi_update_step1());
2117
+ sfsi_update_step1() && sfsicollapse(this);
2118
+ }),
2119
+ SFSI("#sfsi_save2").on("click", function () {
2120
+ sfsi_update_step2() && sfsicollapse(this);
2121
+ }),
2122
+ SFSI("#sfsi_save3").on("click", function () {
2123
+ sfsi_update_step3() && sfsicollapse(this);
2124
+ }),
2125
+ SFSI("#sfsi_save4").on("click", function () {
2126
+ sfsi_update_step4() && sfsicollapse(this);
2127
+ }),
2128
+ SFSI("#sfsi_save5").on("click", function () {
2129
+ sfsi_update_step5() && sfsicollapse(this);
2130
+ }),
2131
+ SFSI("#sfsi_save6").on("click", function () {
2132
+ sfsi_update_step6() && sfsicollapse(this);
2133
+ }),
2134
+ SFSI("#sfsi_save7").on("click", function () {
2135
+ sfsi_update_step7() && sfsicollapse(this);
2136
+ }),
2137
+ SFSI("#sfsi_save8").on("click", function () {
2138
+ sfsi_update_step8() && sfsicollapse(this);
2139
+ }),
2140
+ SFSI("#sfsi_save9").on("click", function () {
2141
+ sfsi_update_step9() && sfsicollapse(this);
2142
+ }),
2143
+ SFSI("#save_all_settings").on("click", function () {
2144
+ return SFSI("#save_all_settings").text("Saving.."), SFSI(".save_button >a").css("pointer-events", "none"),
2145
+ sfsi_update_step1(), sfsi_update_step8(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Which icons do you want to show on your site?" tab.', 8),
2146
+ global_error = 0, !1) : (sfsi_update_step2(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "What do you want the icons to do?" tab.', 8),
2147
+ global_error = 0, !1) : (sfsi_update_step3(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "What design & animation do you want to give your icons?" tab.', 8),
2148
+ global_error = 0, !1) : (sfsi_update_step4(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display "counts" next to your icons?" tab.', 8),
2149
+ global_error = 0, !1) : (sfsi_update_step5(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Any other wishes for your main icons?" tab.', 8),
2150
+ global_error = 0, !1) : (sfsi_update_step6(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display icons at the end of every post?" tab.', 8),
2151
+ global_error = 0, !1) : (sfsi_update_step7(), 1 == global_error ? (showErrorSuc("error", 'Some Selection error in "Do you want to display a pop-up, asking people to subscribe?" tab.', 8),
2152
+ /*global_error = 0, !1) :void (0 == global_error && showErrorSuc("success", 'Saved! Now go to the <a href="widgets.php">widget</a> area and place the widget into your sidebar (if not done already)', 8))))))));*/
2153
+ global_error = 0, !1) : void(0 == global_error && showErrorSuc("success", '', 8))))))));
2154
+ }),
2155
+ /*SFSI(".fileUPInput").live("change", function() {*/
2156
+ SFSI(document).on("change", '.fileUPInput', function () {
2157
+ beForeLoad(), beforeIconSubmit(this) && (SFSI(".upload-overlay").css("pointer-events", "none"),
2158
+ SFSI("#customIconFrm").ajaxForm({
2159
+ dataType: "json",
2160
+ success: afterIconSuccess,
2161
+ resetForm: !0
2162
+ }).submit());
2163
+ }),
2164
+ SFSI(".pop-up").on("click", function () {
2165
+ ("fbex-s2" == SFSI(this).attr("data-id") || "linkex-s2" == SFSI(this).attr("data-id")) && (SFSI("." + SFSI(this).attr("data-id")).hide(),
2166
+ SFSI("." + SFSI(this).attr("data-id")).css("opacity", "1"), SFSI("." + SFSI(this).attr("data-id")).css("z-index", "1000")),
2167
+ SFSI("." + SFSI(this).attr("data-id")).show("slow");
2168
+ }),
2169
+ /*SFSI("#close_popup").live("click", function() {*/
2170
+ SFSI(document).on("click", '#close_popup', function () {
2171
+ SFSI(".read-overlay").hide("slow");
2172
+ });
2173
+
2174
+ var e = 0;
2175
+ SFSI(".icn_listing").on("click", ".checkbox", function () {
2176
+ if (1 == e) return !1;
2177
+ "yes" == SFSI(this).attr("dynamic_ele") && (s = SFSI(this).parent().find("input:checkbox:first"),
2178
+ s.is(":checked") ? SFSI(s).attr("checked", !1) : SFSI(s).attr("checked", !0)), s = SFSI(this).parent().find("input:checkbox:first"),
2179
+ "yes" == SFSI(s).attr("isNew") && ("0px 0px" == SFSI(this).css("background-position") ? (SFSI(s).attr("checked", !0),
2180
+ SFSI(this).css("background-position", "0px -36px")) : (SFSI(s).removeAttr("checked", !0),
2181
+ SFSI(this).css("background-position", "0px 0px")));
2182
+ var s = SFSI(this).parent().find("input:checkbox:first");
2183
+ if (s.is(":checked") && "cusotm-icon" == s.attr("element-type")) SFSI(".fileUPInput").attr("name", "custom_icons[]"),
2184
+ SFSI(".upload-overlay").show("slow", function () {
2185
+ e = 0;
2186
+ }), SFSI("#upload_id").val(s.attr("name"));
2187
+ else if (!s.is(":checked") && "cusotm-icon" == s.attr("element-type")) return s.attr("ele-type") ? (SFSI(this).attr("checked", !0),
2188
+ SFSI(this).css("background-position", "0px -36px"), e = 0, !1) : confirm("Are you sure want to delete this Icon..?? ") ? "suc" == sfsi_delete_CusIcon(this, s) ? (s.attr("checked", !1),
2189
+ SFSI(this).css("background-position", "0px 0px"), e = 0, !1) : (e = 0, !1) : (s.attr("checked", !0),
2190
+ SFSI(this).css("background-position", "0px -36px"), e = 0, !1);
2191
+ }),
2192
+ SFSI(".icn_listing").on("click", ".checkbox", function () {
2193
+ checked = SFSI(this).parent().find("input:checkbox:first"), "sfsi_email_display" != checked.attr("name") || checked.is(":checked") || SFSI(".demail-1").show("slow");
2194
+ }),
2195
+ SFSI("#deac_email2").on("click", function () {
2196
+ SFSI(".demail-1").hide("slow"), SFSI(".demail-2").show("slow");
2197
+ }),
2198
+ SFSI("#deac_email3").on("click", function () {
2199
+ SFSI(".demail-2").hide("slow"), SFSI(".demail-3").show("slow");
2200
+ }),
2201
+ SFSI(".hideemailpop").on("click", function () {
2202
+ SFSI('input[name="sfsi_email_display"]').attr("checked", !0), SFSI('input[name="sfsi_email_display"]').parent().find("span:first").css("background-position", "0px -36px"),
2203
+ SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2204
+ }),
2205
+ SFSI(".hidePop").on("click", function () {
2206
+ SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"), SFSI(".demail-3").hide("slow");
2207
+ }),
2208
+ SFSI(".activate_footer").on("click", function () {
2209
+ var nonce = SFSI(this).attr("data-nonce");
2210
+ SFSI(this).text("activating....");
2211
+ var s = {
2212
+ action: "activateFooter",
2213
+ nonce: nonce
2214
+ };
2215
+ SFSI.ajax({
2216
+ url: sfsi_icon_ajax_object.ajax_url,
2217
+ type: "post",
2218
+ data: s,
2219
+ dataType: "json",
2220
+ success: function (s) {
2221
+ if (s.res == "wrong_nonce") {
2222
+ SFSI(".activate_footer").css("font-size", "18px");
2223
+ SFSI(".activate_footer").text("Unauthorised Request, Try again after refreshing page");
2224
+ } else {
2225
+ "success" == s.res && (SFSI(".demail-1").hide("slow"), SFSI(".demail-2").hide("slow"),
2226
+ SFSI(".demail-3").hide("slow"), SFSI(".activate_footer").text("Ok, activate link"));
2227
+ }
2228
+ }
2229
+ });
2230
+ }),
2231
+ SFSI(".sfsi_removeFooter").on("click", function () {
2232
+ var nonce = SFSI(this).attr("data-nonce");
2233
+ SFSI(this).text("working....");
2234
+ var s = {
2235
+ action: "removeFooter",
2236
+ nonce: nonce
2237
+ };
2238
+ SFSI.ajax({
2239
+ url: sfsi_icon_ajax_object.ajax_url,
2240
+ type: "post",
2241
+ data: s,
2242
+ dataType: "json",
2243
+ success: function (s) {
2244
+ if (s.res == "wrong_nonce") {
2245
+ SFSI(".sfsi_removeFooter").text("Unauthorised Request, Try again after refreshing page");
2246
+ } else {
2247
+ "success" == s.res && (SFSI(".sfsi_removeFooter").fadeOut("slow"), SFSI(".sfsi_footerLnk").fadeOut("slow"));
2248
+ }
2249
+ }
2250
+ });
2251
+ }),
2252
+ /*SFSI(".radio").live("click", function() {*/
2253
+ SFSI(document).on("click", '.radio', function () {
2254
+ var s = SFSI(this).parent().find("input:radio:first");
2255
+ "sfsi_display_counts" == s.attr("name") && sfsi_show_counts();
2256
+ }),
2257
+ SFSI("#close_Uploadpopup").on("click", i), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2258
+ var s = SFSI(this).parent().find("input:radio:first");
2259
+ "sfsi_show_Onposts" == s.attr("name") && sfsi_show_OnpostsDisplay();
2260
+ }),
2261
+ sfsi_show_OnpostsDisplay(), sfsi_depened_sections(), sfsi_show_counts(), sfsi_showPreviewCounts(),
2262
+ SFSI(".share_icon_order").sortable({
2263
+ update: function () {
2264
+ SFSI(".share_icon_order li").each(function () {
2265
+ SFSI(this).attr("data-index", SFSI(this).index() + 1);
2266
+ });
2267
+ },
2268
+ revert: !0
2269
+ }),
2270
+
2271
+ //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post STARTS -------------------------------------//
2272
+
2273
+ SFSI(document).on("click", '.checkbox', function () {
2274
+
2275
+ var s = SFSI(this).parent().find("input:checkbox:first");
2276
+ var backgroundPos = jQuery(this).css('background-position').split(" ");
2277
+ var xPos = backgroundPos[0],
2278
+ yPos = backgroundPos[1];
2279
+
2280
+ var inputName = s.attr('name');
2281
+ var inputChecked = s.attr("checked");
2282
+
2283
+ switch (inputName) {
2284
+
2285
+ case "sfsi_custom_social_hide":
2286
+
2287
+ var val = (yPos == "0px") ? "no" : "yes";
2288
+ SFSI('input[name="sfsi_custom_social_hide"]').val(val);
2289
+
2290
+ break;
2291
+
2292
+ case "sfsi_show_via_widget":
2293
+ case "sfsi_show_via_widget":
2294
+ case "sfsi_show_via_afterposts":
2295
+ case "sfsi_custom_social_hide":
2296
+
2297
+ var val = (yPos == "0px") ? "no" : "yes";
2298
+ SFSI('input[name="' + s.attr('name') + '"]').val(val);
2299
+
2300
+ break;
2301
+
2302
+ case 'sfsi_mouseOver':
2303
+
2304
+ var elem = SFSI('input[name="' + inputName + '"]');
2305
+
2306
+ var togglelem = SFSI('.mouse-over-effects');
2307
+
2308
+ if (inputChecked) {
2309
+ togglelem.removeClass('hide').addClass('show');
2310
+ } else {
2311
+ togglelem.removeClass('show').addClass('hide');
2312
+ }
2313
+
2314
+ break;
2315
+ case 'sfsi_responsive_facebook_display':
2316
+ if(inputChecked){
2317
+ SFSI('.sfsi_responsive_icon_facebook_container').parents('a').show();
2318
+ var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2319
+ if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2320
+ window.sfsi_fittext_shouldDisplay=true;
2321
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2322
+ if(jQuery(a_container).css('display')!=="none"){
2323
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2324
+ }
2325
+ })
2326
+ }
2327
+ }else{
2328
+
2329
+ SFSI('.sfsi_responsive_icon_facebook_container').parents('a').hide();
2330
+ if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2331
+ window.sfsi_fittext_shouldDisplay=true;
2332
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2333
+ if(jQuery(a_container).css('display')!=="none"){
2334
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2335
+ }
2336
+ })
2337
+ }
2338
+ }
2339
+ break;
2340
+ case 'sfsi_responsive_Twitter_display':
2341
+ if(inputChecked){
2342
+ SFSI('.sfsi_responsive_icon_twitter_container').parents('a').show();
2343
+ var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2344
+ if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2345
+ window.sfsi_fittext_shouldDisplay=true;
2346
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2347
+ if(jQuery(a_container).css('display')!=="none"){
2348
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2349
+ }
2350
+ })
2351
+ }
2352
+ }else{
2353
+ SFSI('.sfsi_responsive_icon_twitter_container').parents('a').hide();
2354
+ if(SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val()!=="Fully responsive"){
2355
+ window.sfsi_fittext_shouldDisplay=true;
2356
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2357
+ if(jQuery(a_container).css('display')!=="none"){
2358
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2359
+ }
2360
+ })
2361
+ }
2362
+ }
2363
+ break;
2364
+ case 'sfsi_responsive_Follow_display':
2365
+ if(inputChecked){
2366
+ SFSI('.sfsi_responsive_icon_follow_container').parents('a').show();
2367
+ var icon= inputName.replace('sfsi_responsive_','').replace('_display','');
2368
+ }else{
2369
+ SFSI('.sfsi_responsive_icon_follow_container').parents('a').hide();
2370
+ }
2371
+ window.sfsi_fittext_shouldDisplay=true;
2372
+ jQuery('.sfsi_responsive_icon_preview a').each(function(index,a_container){
2373
+ if(jQuery(a_container).css('display')!=="none"){
2374
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2375
+ }
2376
+ })
2377
+ break;
2378
+ }
2379
+
2380
+ });
2381
+
2382
+ //*------------------------------- Sharing text & pcitures checkbox for showing section in Page, Post CLOSES -------------------------------------//
2383
+
2384
+ SFSI(document).on("click", '.radio', function () {
2385
+
2386
+ var s = SFSI(this).parent().find("input:radio:first");
2387
+
2388
+ switch (s.attr("name")) {
2389
+
2390
+ case 'sfsi_mouseOver_effect_type':
2391
+
2392
+ var _val = s.val();
2393
+ var _name = s.attr("name");
2394
+
2395
+ if ('same_icons' == _val) {
2396
+ SFSI('.same_icons_effects').removeClass('hide').addClass('show');
2397
+ SFSI('.other_icons_effects_options').removeClass('show').addClass('hide');
2398
+ } else if ('other_icons' == _val) {
2399
+ SFSI('.same_icons_effects').removeClass('show').addClass('hide');
2400
+ SFSI('.other_icons_effects_options').removeClass('hide').addClass('show');
2401
+ }
2402
+
2403
+ break;
2404
+ }
2405
+
2406
+ });
2407
+
2408
+ SFSI(document).on("click", '.radio', function () {
2409
+
2410
+ var s = SFSI(this).parent().find("input:radio:first");
2411
+ "sfsi_email_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_email_countsDisplay"]').prop("checked", !0),
2412
+ SFSI('input[name="sfsi_email_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2413
+ "manual" == SFSI("input[name='sfsi_email_countsFrom']:checked").val() ? SFSI("input[name='sfsi_email_manualCounts']").slideDown() : SFSI("input[name='sfsi_email_manualCounts']").slideUp()),
2414
+
2415
+ "sfsi_facebook_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_facebook_countsDisplay"]').prop("checked", !0),
2416
+ SFSI('input[name="sfsi_facebook_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2417
+ "mypage" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_facebook_mypageCounts']").slideDown(), SFSI(".sfsi_fbpgidwpr").slideDown()) : (SFSI("input[name='sfsi_facebook_mypageCounts']").slideUp(), SFSI(".sfsi_fbpgidwpr").slideUp()),
2418
+
2419
+ "manual" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() ? SFSI("input[name='sfsi_facebook_manualCounts']").slideDown() : SFSI("input[name='sfsi_facebook_manualCounts']").slideUp()),
2420
+
2421
+ "sfsi_facebook_countsFrom" == s.attr("name") && (("mypage" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val() || "likes" == SFSI("input[name='sfsi_facebook_countsFrom']:checked").val()) ? (SFSI(".sfsi_facebook_pagedeasc").slideDown()) : (SFSI(".sfsi_facebook_pagedeasc").slideUp())),
2422
+
2423
+ "sfsi_twitter_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_twitter_countsDisplay"]').prop("checked", !0),
2424
+ SFSI('input[name="sfsi_twitter_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2425
+ "manual" == SFSI("input[name='sfsi_twitter_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_twitter_manualCounts']").slideDown(),
2426
+ SFSI(".tw_follow_options").slideUp()) : (SFSI("input[name='sfsi_twitter_manualCounts']").slideUp(),
2427
+ SFSI(".tw_follow_options").slideDown())),
2428
+
2429
+
2430
+ "sfsi_linkedIn_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_linkedIn_countsDisplay"]').prop("checked", !0),
2431
+ SFSI('input[name="sfsi_linkedIn_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2432
+ "manual" == SFSI("input[name='sfsi_linkedIn_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_linkedIn_manualCounts']").slideDown(),
2433
+ SFSI(".linkedIn_options").slideUp()) : (SFSI("input[name='sfsi_linkedIn_manualCounts']").slideUp(),
2434
+ SFSI(".linkedIn_options").slideDown())),
2435
+
2436
+ "sfsi_youtube_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_youtube_countsDisplay"]').prop("checked", !0),
2437
+ SFSI('input[name="sfsi_youtube_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2438
+ "manual" == SFSI("input[name='sfsi_youtube_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_youtube_manualCounts']").slideDown(),
2439
+ SFSI(".youtube_options").slideUp()) : (SFSI("input[name='sfsi_youtube_manualCounts']").slideUp(),
2440
+ SFSI(".youtube_options").slideDown())), "sfsi_pinterest_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_pinterest_countsDisplay"]').prop("checked", !0),
2441
+ SFSI('input[name="sfsi_pinterest_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2442
+ "manual" == SFSI("input[name='sfsi_pinterest_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_pinterest_manualCounts']").slideDown(),
2443
+ SFSI(".pin_options").slideUp()) : SFSI("input[name='sfsi_pinterest_manualCounts']").slideUp()),
2444
+
2445
+ "sfsi_instagram_countsFrom" == s.attr("name") && (SFSI('input[name="sfsi_instagram_countsDisplay"]').prop("checked", !0),
2446
+ SFSI('input[name="sfsi_instagram_countsDisplay"]').parent().find("span.checkbox").attr("style", "0px -36px;"),
2447
+ "manual" == SFSI("input[name='sfsi_instagram_countsFrom']:checked").val() ? (SFSI("input[name='sfsi_instagram_manualCounts']").slideDown(),
2448
+ SFSI(".instagram_userLi").slideUp()) : (SFSI("input[name='sfsi_instagram_manualCounts']").slideUp(),
2449
+ SFSI(".instagram_userLi").slideDown()));
2450
+
2451
+ }),
2452
+
2453
+ sfsi_make_popBox(),
2454
+
2455
+ SFSI('input[name="sfsi_popup_text"] ,input[name="sfsi_popup_background_color"],input[name="sfsi_popup_border_color"],input[name="sfsi_popup_border_thickness"],input[name="sfsi_popup_fontSize"],input[name="sfsi_popup_fontColor"]').on("keyup", sfsi_make_popBox),
2456
+ SFSI('input[name="sfsi_popup_text"] ,input[name="sfsi_popup_background_color"],input[name="sfsi_popup_border_color"],input[name="sfsi_popup_border_thickness"],input[name="sfsi_popup_fontSize"],input[name="sfsi_popup_fontColor"]').on("focus", sfsi_make_popBox),
2457
+
2458
+ SFSI("#sfsi_popup_font ,#sfsi_popup_fontStyle").on("change", sfsi_make_popBox),
2459
+
2460
+ /*SFSI(".radio").live("click", function(){*/
2461
+ SFSI(document).on("click", '.radio', function () {
2462
+
2463
+ var s = SFSI(this).parent().find("input:radio:first");
2464
+
2465
+ if ("sfsi_icons_floatPosition" == s.attr("name")) {
2466
+ SFSI('input[name="sfsi_icons_floatPosition"]').removeAttr("checked");
2467
+ s.attr("checked", true);
2468
+ }
2469
+
2470
+ if ("sfsi_disable_floaticons" == s.attr("name")) {
2471
+ SFSI('input[name="sfsi_disable_floaticons"]').removeAttr("checked");
2472
+ s.attr("checked", true);
2473
+ }
2474
+
2475
+ "sfsi_popup_border_shadow" == s.attr("name") && sfsi_make_popBox();
2476
+ }), /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ? SFSI("img.sfsi_wicon").on("click", function (s) {
2477
+ s.stopPropagation();
2478
+ var i = SFSI("#sfsi_floater_sec").val();
2479
+ SFSI("div.sfsi_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide(),
2480
+ SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_tool_tip_2").css("z-index", "0"),
2481
+ SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide()),
2482
+ SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2483
+ "z-index": "999"
2484
+ }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2485
+ opacity: 1,
2486
+ "z-index": 10
2487
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2488
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2489
+ opacity: 1,
2490
+ "z-index": 10
2491
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2492
+ SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2493
+ opacity: 1,
2494
+ "z-index": 10
2495
+ })), ("top-left" == i || "top-right" == i) && SFSI(this).parent().parent().parent().parent("#sfsi_floater").length > 0 && "sfsi_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").addClass("sfsi_plc_btm"),
2496
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2497
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2498
+ opacity: 1,
2499
+ "z-index": 10
2500
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2501
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").removeClass("sfsi_plc_btm"),
2502
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2503
+ opacity: 1,
2504
+ "z-index": 1e3
2505
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show());
2506
+ }) : SFSI("img.sfsi_wicon").on("mouseenter", function () {
2507
+ var s = SFSI("#sfsi_floater_sec").val();
2508
+ SFSI("div.sfsi_wicons").css("z-index", "0"), SFSI(this).parent().parent().parent().siblings("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide(),
2509
+ SFSI(this).parent().parent().parent().parent().siblings("li").length > 0 && (SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_tool_tip_2").css("z-index", "0"),
2510
+ SFSI(this).parent().parent().parent().parent().siblings("li").find("div.sfsi_wicons").find(".inerCnt").find("div.sfsi_tool_tip_2").hide()),
2511
+ SFSI(this).parent().parent().parent().css("z-index", "1000000"), SFSI(this).parent().parent().css({
2512
+ "z-index": "999"
2513
+ }), SFSI(this).attr("data-effect") && "fade_in" == SFSI(this).attr("data-effect") && (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2514
+ opacity: 1,
2515
+ "z-index": 10
2516
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "scale" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2517
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2518
+ opacity: 1,
2519
+ "z-index": 10
2520
+ }), SFSI(this).parent().css("opacity", "1")), SFSI(this).attr("data-effect") && "combo" == SFSI(this).attr("data-effect") && (SFSI(this).parent().addClass("scale"),
2521
+ SFSI(this).parent().css("opacity", "1"), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2522
+ opacity: 1,
2523
+ "z-index": 10
2524
+ })), ("top-left" == s || "top-right" == s) && SFSI(this).parent().parent().parent().parent("#sfsi_floater").length > 0 && "sfsi_floater" == SFSI(this).parent().parent().parent().parent().attr("id") ? (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").addClass("sfsi_plc_btm"),
2525
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").addClass("top_big_arow"),
2526
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2527
+ opacity: 1,
2528
+ "z-index": 10
2529
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show()) : (SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").find("span.bot_arow").removeClass("top_big_arow"),
2530
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").removeClass("sfsi_plc_btm"),
2531
+ SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").css({
2532
+ opacity: 1,
2533
+ "z-index": 10
2534
+ }), SFSI(this).parentsUntil("div").siblings("div.sfsi_tool_tip_2").show());
2535
+ }), SFSI("div.sfsi_wicons").on("mouseleave", function () {
2536
+ SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "fade_in" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.inerCnt").find("a.sficn").css("opacity", "0.6"),
2537
+ SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "scale" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && SFSI(this).children("div.inerCnt").find("a.sficn").removeClass("scale"),
2538
+ SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && "combo" == SFSI(this).children("div.inerCnt").children("a.sficn").attr("data-effect") && (SFSI(this).children("div.inerCnt").find("a.sficn").css("opacity", "0.6"),
2539
+ SFSI(this).children("div.inerCnt").find("a.sficn").removeClass("scale")), SFSI(this).children(".inerCnt").find("div.sfsi_tool_tip_2").hide();
2540
+ }), SFSI("body").on("click", function () {
2541
+ SFSI(".inerCnt").find("div.sfsi_tool_tip_2").hide();
2542
+ }), SFSI(".adminTooltip >a").on("hover", function () {
2543
+ SFSI(this).offset().top, SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "1"),
2544
+ SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").show();
2545
+ }), SFSI(".adminTooltip").on("mouseleave", function () {
2546
+ "none" != SFSI(".gpls_tool_bdr").css("display") && 0 != SFSI(".gpls_tool_bdr").css("opacity") ? SFSI(".pop_up_box ").on("click", function () {
2547
+ SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "0"), SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").hide();
2548
+ }) : (SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").css("opacity", "0"),
2549
+ SFSI(this).parent("div").find("div.sfsi_tool_tip_2_inr").hide());
2550
+ }), SFSI(".expand-area").on("click", function () {
2551
+ "Read more" == SFSI(this).text() ? (SFSI(this).siblings("p").children("label").fadeIn("slow"),
2552
+ SFSI(this).text("Collapse")) : (SFSI(this).siblings("p").children("label").fadeOut("slow"),
2553
+ SFSI(this).text("Read more"));
2554
+ }), /*SFSI(".radio").live("click", function() {*/ SFSI(document).on("click", '.radio', function () {
2555
+
2556
+ var s = SFSI(this).parent().find("input:radio:first");
2557
+
2558
+ "sfsi_icons_float" == s.attr("name") && "yes" == s.val() && (SFSI(".float_options").slideDown("slow"),
2559
+
2560
+ SFSI('input[name="sfsi_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_icons_stick"][value="yes"]').removeAttr("checked"),
2561
+ SFSI('input[name="sfsi_icons_stick"][value="no"]').parent().find("span").attr("style", "0px -41px;"),
2562
+ SFSI('input[name="sfsi_icons_stick"][value="yes"]').parent().find("span").attr("style", "0px -0px;")),
2563
+
2564
+ //("sfsi_icons_stick" == s.attr("name") && "yes" == s.val() || "sfsi_icons_float" == s.attr("name") && "no" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2565
+ ("sfsi_icons_stick" == s.attr("name") && "yes" == s.val()) && (SFSI(".float_options").slideUp("slow"),
2566
+
2567
+ SFSI('input[name="sfsi_icons_float"][value="no"]').prop("checked", !0), SFSI('input[name="sfsi_icons_float"][value="yes"]').prop("checked", !1),
2568
+ SFSI('input[name="sfsi_icons_float"][value="no"]').parent().find("span.radio").attr("style", "0px -41px;"),
2569
+ SFSI('input[name="sfsi_icons_float"][value="yes"]').parent().find("span.radio").attr("style", "0px -0px;"));
2570
+
2571
+ }),
2572
+
2573
+ SFSI(".sfsi_wDiv").length > 0 && setTimeout(function () {
2574
+ var s = parseInt(SFSI(".sfsi_wDiv").height()) + 0 + "px";
2575
+ SFSI(".sfsi_holders").each(function () {
2576
+ SFSI(this).css("height", s);
2577
+ });
2578
+ }, 200),
2579
+ /*SFSI(".checkbox").live("click", function() {*/
2580
+ SFSI(document).on("click", '.checkbox', function () {
2581
+ var s = SFSI(this).parent().find("input:checkbox:first");
2582
+ ("sfsi_shuffle_Firstload" == s.attr("name") && "checked" == s.attr("checked") || "sfsi_shuffle_interval" == s.attr("name") && "checked" == s.attr("checked")) && (SFSI('input[name="sfsi_shuffle_icons"]').parent().find("span").css("background-position", "0px -36px"),
2583
+ SFSI('input[name="sfsi_shuffle_icons"]').attr("checked", "checked")), "sfsi_shuffle_icons" == s.attr("name") && "checked" != s.attr("checked") && (SFSI('input[name="sfsi_shuffle_Firstload"]').removeAttr("checked"),
2584
+ SFSI('input[name="sfsi_shuffle_Firstload"]').parent().find("span").css("background-position", "0px 0px"),
2585
+ SFSI('input[name="sfsi_shuffle_interval"]').removeAttr("checked"), SFSI('input[name="sfsi_shuffle_interval"]').parent().find("span").css("background-position", "0px 0px"));
2586
+ });
2587
+
2588
+ SFSI("body").on("click", "#sfsi_getMeFullAccess", function () {
2589
+ var email = SFSI(this).parents("form").find("input[type='email']").val();
2590
+ var feedid = SFSI(this).parents("form").find("input[name='feed_id']").val();
2591
+ var error = false;
2592
+ var regEx = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/;
2593
+
2594
+ if (email === '') {
2595
+ error = true;
2596
+ }
2597
+
2598
+ if (!regEx.test(email)) {
2599
+ error = true;
2600
+ }
2601
+
2602
+ if (!error) {
2603
+ console.log("feedid",feedid);
2604
+ if (feedid=="" || undefined==feedid){
2605
+ var nonce = SFSI(this).attr('data-nonce-fetch-feed-id');
2606
+ e = {
2607
+ action: "sfsi_get_feed_id",
2608
+ nonce: nonce,
2609
+ };
2610
+ SFSI.ajax({
2611
+ url: sfsi_icon_ajax_object.ajax_url,
2612
+ type: "post",
2613
+ data: e,
2614
+ dataType: "json",
2615
+ async: !0,
2616
+ success: function (s) {
2617
+ if (s.res == "wrong_nonce") {
2618
+ alert("Error: Unauthorised Request, Try again after refreshing page.");
2619
+ } else {
2620
+ if("success" == s.res){
2621
+ var feedid = s.feed_id;
2622
+ if(feedid=="" || null == feedid){
2623
+ alert("Error: Claiming didn't work. Please try again later.")
2624
+ }else{
2625
+ jQuery('#calimingOptimizationForm input[name="feed_id"]').val(feedid);
2626
+ console.log("feedid",feedid,SFSI("#calimingOptimizationForm input[name='feed_id']"),SFSI('#calimingOptimizationForm input[name="feedid"]').val());
2627
+ SFSI('#calimingOptimizationForm').submit();
2628
+ }
2629
+ }else{
2630
+ if("failed"==s.res){
2631
+ alert("Error: "+s.message+".");
2632
+
2633
+ }else{
2634
+ alert("Error: Please try again.");
2635
+ }
2636
+ }
2637
+ }
2638
+ }
2639
+ });
2640
+ }else{
2641
+ SFSI(this).parents("form").submit();
2642
+ }
2643
+ } else {
2644
+ alert("Error: Please provide your email address.");
2645
+ }
2646
+ });
2647
+
2648
+ SFSI('form#calimingOptimizationForm').on('keypress', function (e) {
2649
+ var keyCode = e.keyCode || e.which;
2650
+ if (keyCode === 13) {
2651
+ e.preventDefault();
2652
+ return false;
2653
+ }
2654
+ });
2655
+
2656
+ /*SFSI(".checkbox").live("click", function()
2657
+ {
2658
+ var s = SFSI(this).parent().find("input:checkbox:first");
2659
+ "float_on_page" == s.attr("name") && "yes" == s.val() && (
2660
+ SFSI('input[name="sfsi_icons_stick"][value="no"]').attr("checked", !0), SFSI('input[name="sfsi_icons_stick"][value="yes"]').removeAttr("checked"),
2661
+ SFSI('input[name="sfsi_icons_stick"][value="no"]').parent().find("span").attr("style", "0px -41px;"),
2662
+ SFSI('input[name="sfsi_icons_stick"][value="yes"]').parent().find("span").attr("style", "0px -0px;"));
2663
+ });
2664
+ SFSI(".radio").live("click", function()
2665
+ {
2666
+ var s = SFSI(this).parent().find("input:radio:first");
2667
+ var a = SFSI(".cstmfltonpgstck");
2668
+ ("sfsi_icons_stick" == s.attr("name") && "yes" == s.val()) && (
2669
+ SFSI('input[name="float_on_page"][value="no"]').prop("checked", !0), SFSI('input[name="float_on_page"][value="yes"]').prop("checked", !1),
2670
+ SFSI('input[name="float_on_page"][value="no"]').parent().find("span.checkbox").attr("style", "0px -41px;"),
2671
+ SFSI('input[name="float_on_page"][value="yes"]').parent().find("span.checkbox").attr("style", "0px -0px;"),
2672
+ jQuery(a).children(".checkbox").css("background-position", "0px 0px" ), toggleflotpage(a));
2673
+ });*/
2674
+ window.sfsi_initialization_checkbox_count = 0;
2675
+ window.sfsi_initialization_checkbox = setInterval(function () {
2676
+ // console.log(jQuery('.radio_section.tb_4_ck>span.checkbox').length,jQuery('.radio_section.tb_4_ck>input.styled').length);
2677
+ if (jQuery('.radio_section.tb_4_ck>span.checkbox').length < jQuery('.radio_section.tb_4_ck>input.styled').length) {
2678
+ window.sfsi_initialization_checkbox_count++;
2679
+ // console.log('not initialized',window.sfsi_initialization_checkbox_count);
2680
+ if (window.sfsi_initialization_checkbox_count > 12) {
2681
+ // alert('Some script from diffrent plugin is interfearing with "Ultimate Social Icons" js files and checkbox couldn\'t be initialized. ');
2682
+ // window.clearInterval(window.sfsi_initialization_checkbox);
2683
+ }
2684
+ } else {
2685
+ // console.log('all initialized',window.sfsi_initialization_checkbox_count);
2686
+ window.clearInterval(window.sfsi_initialization_checkbox);
2687
+ }
2688
+ }, 1000);
2689
+ sfsi_responsive_icon_intraction_handler();
2690
+
2691
+ });
2692
+
2693
+ //for utube channel name and id
2694
+ function showhideutube(ref) {
2695
+ var chnlslctn = SFSI(ref).children("input").val();
2696
+ if (chnlslctn == "name") {
2697
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideDown();
2698
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideUp();
2699
+ } else {
2700
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlidwpr").slideDown();
2701
+ SFSI(ref).parent(".enough_waffling").next(".cstmutbtxtwpr").children(".cstmutbchnlnmewpr").slideUp();
2702
+ }
2703
+ }
2704
+
2705
+ function checkforinfoslction(ref) {
2706
+ var pos = jQuery(ref).children(".checkbox").css("background-position");
2707
+
2708
+ var rightInfoClass = jQuery(ref).next().attr('class');
2709
+
2710
+ var rightInfoPElem = jQuery(ref).next("." + rightInfoClass).children("p").first();
2711
+
2712
+ var elemName = 'label';
2713
+
2714
+ if (pos == "0px 0px") {
2715
+ rightInfoPElem.children(elemName).hide();
2716
+ } else {
2717
+ rightInfoPElem.children(elemName).show();
2718
+ }
2719
+ }
2720
+
2721
+ function checkforinfoslction_checkbox(ref) {
2722
+
2723
+ var pos = jQuery(ref).children(".checkbox").css("background-position");
2724
+
2725
+ var elem = jQuery(ref).parent().children('.sfsi_right_info').find('.kckslctn');
2726
+
2727
+ if (pos == "0px 0px") {
2728
+ elem.hide();
2729
+ } else {
2730
+ elem.show();
2731
+ }
2732
+ }
2733
+
2734
+ function sfsi_toggleflotpage_que3(ref) {
2735
+ var pos = jQuery(ref).children(".checkbox").css("background-position");
2736
+ if (pos == "0px 0px") {
2737
+ jQuery(ref).next(".sfsi_right_info").hide();
2738
+
2739
+ } else {
2740
+ jQuery(ref).next(".sfsi_right_info").show();
2741
+ }
2742
+ }
2743
+
2744
+ var initTop = new Array();
2745
+
2746
+ SFSI('.sfsi_navigate_to_question7').on("click", function () {
2747
+
2748
+ var elem = SFSI('#ui-id-6');
2749
+
2750
+ if (elem.hasClass('accordion-content-active')) {
2751
+
2752
+ // Cloase tab of Question 3
2753
+ elem.find('.sfsiColbtn').trigger('click');
2754
+
2755
+ // Open tab of Question 7
2756
+ if (!SFSI('#ui-id-14').hasClass('accordion-content-active')) {
2757
+ SFSI('#ui-id-13').trigger('click');
2758
+ }
2759
+
2760
+ var pos = SFSI("#ui-id-13").offset();
2761
+ var scrollToPos = pos.top - SFSI(window).height() * 0.99 + 30;
2762
+ SFSI('html,body').animate({
2763
+ scrollTop: scrollToPos
2764
+ }, 500);
2765
+ }
2766
+ });
2767
+
2768
+ SFSI("body").on("click", ".sfsi_tokenGenerateButton a", function () {
2769
+ var clienId = SFSI("input[name='sfsi_instagram_clientid']").val();
2770
+ var redirectUrl = SFSI("input[name='sfsi_instagram_appurl']").val();
2771
+
2772
+ var scope = "basic";
2773
+ var instaUrl = "https://www.instagram.com/oauth/authorize/?client_id=<id>&redirect_uri=<url>&response_type=token&scope=" + scope;
2774
+
2775
+ if (clienId !== '' && redirectUrl !== '') {
2776
+ instaUrl = instaUrl.replace('<id>', clienId);
2777
+ instaUrl = instaUrl.replace('<url>', redirectUrl);
2778
+
2779
+ window.open(instaUrl, '_blank');
2780
+ } else {
2781
+ alert("Please enter client id and redirect url first");
2782
+ }
2783
+
2784
+ });
2785
+ SFSI(document).ready(function () {
2786
+
2787
+ SFSI('#sfsi_jivo_offline_chat .tab-link').click(function () {
2788
+ var cur = SFSI(this);
2789
+ if (!cur.hasClass('active')) {
2790
+ var target = cur.find('a').attr('href');
2791
+ cur.parent().children().removeClass('active');
2792
+ cur.addClass('active');
2793
+ SFSI('#sfsi_jivo_offline_chat .tabs').children().hide();
2794
+ SFSI(target).show();
2795
+ }
2796
+ });
2797
+ SFSI('#sfsi_jivo_offline_chat #sfsi_sales form').submit(function (event) {
2798
+ event & event.preventDefault();
2799
+ // console.log(event);
2800
+ var target = SFSI(this).parents('.tab-content');
2801
+ var message = SFSI(this).find('textarea[name="question"]').val();
2802
+ var email = SFSI(this).find('input[name="email"]').val();
2803
+ 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,}))$/;
2804
+ var nonce = SFSI(this).find('input[name="nonce"]').val();
2805
+
2806
+ if ("" === email || false === re.test(String(email).toLowerCase())) {
2807
+ // console.log(SFSI(this).find('input[name="email"]'));
2808
+ SFSI(this).find('input[name="email"]').css('background-color', 'red');
2809
+ SFSI(this).find('input[name="email"]').on('keyup', function () {
2810
+ 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,}))$/;
2811
+ var email = SFSI(this).val();
2812
+ // console.log(email,re.test(String(email).toLowerCase()) );
2813
+ if ("" !== email && true === re.test(String(email).toLowerCase())) {
2814
+ SFSI(this).css('background-color', '#fff');
2815
+ }
2816
+ })
2817
+ return false;
2818
+
2819
+ }
2820
+ SFSI.ajax({
2821
+ url: sfsi_icon_ajax_object.ajax_url,
2822
+ type: "post",
2823
+ data: {
2824
+ action: "sfsiOfflineChatMessage",
2825
+ message: message,
2826
+ email: email,
2827
+ 'nonce': nonce
2828
+ }
2829
+ }).done(function () {
2830
+ target.find('.before_message_sent').hide();
2831
+ target.find('.after_message_sent').show();
2832
+ });
2833
+ })
2834
+ });
2835
+
2836
+ function sfsi_close_offline_chat(e) {
2837
+ e && e.preventDefault();
2838
+
2839
+ SFSI('#sfsi_jivo_offline_chat').hide();
2840
+ SFSI('#sfsi_dummy_chat_icon').show();
2841
+ }
2842
+
2843
+ function sfsi_open_quick_checkout(e) {
2844
+ e && e.preventDefault();
2845
+ // console.log(jQuery('.sfsi_quick-pay-box'));
2846
+ jQuery('.sfsi_quick-pay-box').show();
2847
+ }
2848
+
2849
+ function sfsi_close_quickpay(e) {
2850
+ e && e.preventDefault();
2851
+ jQuery('.sfsi_quickpay-overlay').hide();
2852
+ }
2853
+
2854
+ function sfsi_quickpay_container_click(event) {
2855
+ if (jQuery(event.target).hasClass('sellcodes-quick-purchase')) {
2856
+ jQuery(jQuery(event.target).find('p.sc-button img')[0]).click();
2857
+ }
2858
+ }
2859
+
2860
+
2861
+
2862
+ // <------------------------* Responsive icon *----------------------->
2863
+
2864
+ function sfsi_responsive_icon_intraction_handler() {
2865
+ window.sfsi_fittext_shouldDisplay = true;
2866
+ SFSI('select[name="sfsi_responsive_icons_settings_edge_type"]').on('change', function () {
2867
+ $target_div = (SFSI(this).parent());
2868
+ if (SFSI(this).val() === "Round") {
2869
+ console.log('Round', 'Round', SFSI(this).val());
2870
+
2871
+ $target_div.parent().children().css('display', 'inline-block');
2872
+ $target_div.parent().next().css("display","inline-block");
2873
+ var radius = jQuery('select[name="sfsi_responsive_icons_settings_edge_radius"]').val() + 'px'
2874
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', radius);
2875
+
2876
+ } else {
2877
+ console.log('sharp', 'sharp', SFSI(this).val(), $target_div.parent().children(), $target_div.parent().children().hide());
2878
+
2879
+ $target_div.parent().children().hide();
2880
+ $target_div.show();
2881
+ $target_div.parent().next().hide();
2882
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', 'unset');
2883
+
2884
+ }
2885
+ });
2886
+ SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').on('change', function () {
2887
+ $target_div = (SFSI(this).parent());
2888
+ if (SFSI(this).val() === "Fixed icon width") {
2889
+ $target_div.parent().children().css('display', 'inline-block');
2890
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width', 'auto').css('display', 'flex');
2891
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('flex-basis', 'unset');
2892
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery('input[name="sfsi_responsive_icons_sttings_icon_width_size"]').val());
2893
+
2894
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fully_container').removeClass('sfsi_icons_container_box_fully_container').addClass('sfsi_icons_container_box_fixed_container');
2895
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fixed_container').removeClass('sfsi_icons_container_box_fully_container').addClass('sfsi_icons_container_box_fixed_container');
2896
+ window.sfsi_fittext_shouldDisplay = true;
2897
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2898
+ if (jQuery(a_container).css('display') !== "none") {
2899
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2900
+ }
2901
+ })
2902
+ } else {
2903
+ $target_div.parent().children().hide();
2904
+ $target_div.show();
2905
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width', '100%').css('display', 'flex');
2906
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('flex-basis', '100%');
2907
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', '100%');
2908
+
2909
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fixed_container').removeClass('sfsi_icons_container_box_fixed_container').addClass('sfsi_icons_container_box_fully_container');
2910
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container_box_fully_container').removeClass('sfsi_icons_container_box_fixed_container').addClass('sfsi_icons_container_box_fully_container');
2911
+ window.sfsi_fittext_shouldDisplay = true;
2912
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2913
+ if (jQuery(a_container).css('display') !== "none") {
2914
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2915
+ }
2916
+ })
2917
+ }
2918
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').removeClass('sfsi_fixed_count_container').removeClass('sfsi_responsive_count_container').addClass('sfsi_' + (jQuery(this).val() == "Fully responsive" ? 'responsive' : 'fixed') + '_count_container')
2919
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container>a').removeClass('sfsi_responsive_fluid').removeClass('sfsi_responsive_fixed_width').addClass('sfsi_responsive_' + (jQuery(this).val() == "Fully responsive" ? 'fluid' : 'fixed_width'))
2920
+ sfsi_resize_icons_container();
2921
+
2922
+ })
2923
+ jQuery(document).on('keyup', 'input[name="sfsi_responsive_icons_sttings_icon_width_size"]', function () {
2924
+ if (SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
2925
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
2926
+ window.sfsi_fittext_shouldDisplay = true;
2927
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2928
+ if (jQuery(a_container).css('display') !== "none") {
2929
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2930
+ }
2931
+ })
2932
+ }
2933
+ sfsi_resize_icons_container();
2934
+ });
2935
+ jQuery(document).on('change', 'input[name="sfsi_responsive_icons_sttings_icon_width_size"]', function () {
2936
+ if (SFSI('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() === "Fixed icon width") {
2937
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').css('width', jQuery(this).val() + 'px');
2938
+ }
2939
+ });
2940
+ jQuery(document).on('keyup', 'input[name="sfsi_responsive_icons_settings_margin"]', function () {
2941
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
2942
+ });
2943
+ jQuery(document).on('change', 'input[name="sfsi_responsive_icons_settings_margin"]', function () {
2944
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('margin-right', jQuery(this).val() + 'px');
2945
+ // jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').css('width',(jQuery('.sfsi_responsive_icons').width()-(jQuery('.sfsi_responsive_icons_count').width()+jQuery(this).val()))+'px');
2946
+
2947
+ });
2948
+ jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_text_align"]', function () {
2949
+ if (jQuery(this).val() === "Centered") {
2950
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('text-align', 'center');
2951
+ } else {
2952
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container a').css('text-align', 'left');
2953
+ }
2954
+ });
2955
+ jQuery('.sfsi_responsive_default_icon_container input.sfsi_responsive_input').on('keyup', function () {
2956
+ jQuery(this).parent().find('.sfsi_responsive_icon_item_container').find('span').text(jQuery(this).val());
2957
+ var iconName = jQuery(this).attr('name');
2958
+ var icon = iconName.replace('sfsi_responsive_', '').replace('_input', '');
2959
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_' + (icon.toLowerCase()) + '_container span').text(jQuery(this).val());
2960
+ window.sfsi_fittext_shouldDisplay = true;
2961
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2962
+ if (jQuery(a_container).css('display') !== "none") {
2963
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2964
+ }
2965
+ })
2966
+ sfsi_resize_icons_container();
2967
+ })
2968
+ jQuery('.sfsi_responsive_custom_icon_container input.sfsi_responsive_input').on('keyup', function () {
2969
+ jQuery(this).parent().find('.sfsi_responsive_icon_item_container').find('span').text(jQuery(this).val());
2970
+ var iconName = jQuery(this).attr('name');
2971
+ var icon = iconName.replace('sfsi_responsive_custom_', '').replace('_input', '');
2972
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_' + icon + '_container span').text(jQuery(this).val())
2973
+ window.sfsi_fittext_shouldDisplay = true;
2974
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
2975
+ if (jQuery(a_container).css('display') !== "none") {
2976
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
2977
+ }
2978
+ })
2979
+ sfsi_resize_icons_container();
2980
+
2981
+ })
2982
+
2983
+ jQuery('.sfsi_responsive_default_url_toggler').click(function (event) {
2984
+
2985
+ event.preventDefault();
2986
+ sfsi_responsive_open_url(event);
2987
+ });
2988
+ jQuery('.sfsi_responsive_default_url_toggler').click(function (event) {
2989
+ event.preventDefault();
2990
+ sfsi_responsive_open_url(event);
2991
+ })
2992
+ jQuery('.sfsi_responsive_custom_url_hide, .sfsi_responsive_default_url_hide').click(function (event) {
2993
+ event.preventDefault();
2994
+ /* console.log(event,jQuery(event.target)); */
2995
+ jQuery(event.target).parent().parent().find('.sfsi_responsive_custom_url_hide').hide();
2996
+ jQuery(event.target).parent().parent().find('.sfsi_responsive_url_input').hide();
2997
+ jQuery(event.target).parent().parent().find('.sfsi_responsive_default_url_hide').hide();
2998
+ jQuery(event.target).parent().parent().find('.sfsi_responsive_default_url_toggler').show();
2999
+ });
3000
+ jQuery('select[name="sfsi_responsive_icons_settings_icon_size"]').change(function (event) {
3001
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').removeClass('sfsi_small_button').removeClass('sfsi_medium_button').removeClass('sfsi_large_button').addClass('sfsi_' + (jQuery(this).val().toLowerCase()) + '_button');
3002
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_small_button_container').removeClass('sfsi_medium_button_container').removeClass('sfsi_large_button_container').addClass('sfsi_' + (jQuery(this).val().toLowerCase()) + '_button_container')
3003
+ })
3004
+ jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_edge_radius"]', function (event) {
3005
+ var radius = jQuery(this).val() + 'px'
3006
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container,.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('border-radius', radius);
3007
+
3008
+ });
3009
+ jQuery(document).on('change', 'select[name="sfsi_responsive_icons_settings_style"]', function (event) {
3010
+ if ('Flat' === jQuery(this).val()) {
3011
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_responsive_icon_gradient');
3012
+ } else {
3013
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').addClass('sfsi_responsive_icon_gradient');
3014
+ }
3015
+ });
3016
+ jQuery(document).on('mouseenter', '.sfsi_responsive_icon_preview .sfsi_icons_container a', function () {
3017
+ jQuery(this).css('opacity', 0.8);
3018
+ })
3019
+ jQuery(document).on('mouseleave', '.sfsi_responsive_icon_preview .sfsi_icons_container a', function () {
3020
+ jQuery(this).css('opacity', 1);
3021
+ })
3022
+ window.sfsi_fittext_shouldDisplay = true;
3023
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3024
+ if (jQuery(a_container).css('display') !== "none") {
3025
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3026
+ }
3027
+ })
3028
+ sfsi_resize_icons_container();
3029
+ jQuery('.ui-accordion-header.ui-state-default.ui-accordion-icons').click(function (data) {
3030
+ window.sfsi_fittext_shouldDisplay = true;
3031
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3032
+ if (jQuery(a_container).css('display') !== "none") {
3033
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3034
+ }
3035
+ })
3036
+ sfsi_resize_icons_container();
3037
+ });
3038
+ jQuery('select[name="sfsi_responsive_icons_settings_text_align"]').change(function (event) {
3039
+ var data = jQuery(event.target).val();
3040
+ if (data == "Centered") {
3041
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_left-align_icon').addClass('sfsi_centered_icon');
3042
+ } else {
3043
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container').removeClass('sfsi_centered_icon').addClass('sfsi_left-align_icon');
3044
+ }
3045
+ });
3046
+ jQuery('a.sfsi_responsive_custom_delete_btn').click(function (event) {
3047
+ event.preventDefault();
3048
+ var icon_num = jQuery(this).attr('data-id');
3049
+ //reset the current block;
3050
+ // var last_block = jQuery('.sfsi_responsive_custom_icon_4_container').clone();
3051
+ var cur_block = jQuery('.sfsi_responsive_custom_icon_' + icon_num + '_container');
3052
+ cur_block.find('.sfsi_responsive_custom_delete_btn').hide();
3053
+ cur_block.find('input[name="sfsi_responsive_custom_' + icon_num + '_added"]').val('no');
3054
+ cur_block.find('.sfsi_responsive_custom_' + icon_num + '_added').attr('value', 'no');
3055
+ cur_block.find('.radio_section.tb_4_ck .checkbox').click();
3056
+ cur_block.hide();
3057
+
3058
+
3059
+ if (icon_num > 0) {
3060
+ var prev_block = jQuery('.sfsi_responsive_custom_icon_' + (icon_num - 1) + '_container');
3061
+ prev_block.find('.sfsi_responsive_custom_delete_btn').show();
3062
+ }
3063
+ // jQuery('.sfsi_responsive_custom_icon_container').each(function(index,custom_icon){
3064
+ // var target= jQuery(custom_icon);
3065
+ // target.find('.sfsi_responsive_custom_delete_btn');
3066
+ // var custom_id = target.find('.sfsi_responsive_custom_delete_btn').attr('data-id');
3067
+ // if(custom_id>icon_num){
3068
+ // target.removeClass('sfsi_responsive_custom_icon_'+custom_id+'_container').addClass('sfsi_responsive_custom_icon_'+(custom_id-1)+'_container');
3069
+ // target.find('input[name="sfsi_responsive_custom_'+custom_id+'_added"]').attr('name',"sfsi_responsive_custom_"+(custom_id-1)+"_added");
3070
+ // target.find('#sfsi_responsive_'+custom_id+'_display').removeClass('sfsi_responsive_custom_'+custom_id+'_display').addClass('sfsi_responsive_custom_'+(custom_id-1)+'_display').attr('id','sfsi_responsive_'+(custom_id-1)+'_display').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_display').attr('data-custom-index',(custom_id-1));
3071
+ // target.find('.sfsi_responsive_icon_item_container').removeClass('sfsi_responsive_icon_custom_'+custom_id+'_container').addClass('sfsi_responsive_icon_custom_'+(custom_id-1)+'_container');
3072
+ // target.find('.sfsi_responsive_input').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_input');
3073
+ // target.find('.sfsi_responsive_url_input').attr('name','sfsi_responsive_custom_'+(custom_id-1)+'_url_input');
3074
+ // target.find('.sfsi_bg-color-picker').attr('name','sfsi_responsive_icon_'+(custom_id-1)+'_bg_color');
3075
+ // target.find('.sfsi_logo_upload sfsi_logo_custom_'+custom_id+'_upload').removeClass('sfsi_logo_upload sfsi_logo_custom_'+custom_id+'_upload').addClass('sfsi_logo_upload sfsi_logo_custom_'+(custom_id-1)+'_upload');
3076
+ // target.find('input[type="sfsi_responsive_icons_custom_'+custom_id+'_icon"]').attr('name','input[type="sfsi_responsive_icons_custom_'+(custom_id-1)+'_icon"]');
3077
+ // target.find('.sfsi_responsive_custom_delete_btn').attr('data-id',''+(custom_id-1));
3078
+ // }
3079
+ // });
3080
+ // // sfsi_backend_section_beforeafter_set_fixed_width();
3081
+ // // jQuery(window).on('resize',sfsi_backend_section_beforeafter_set_fixed_width);
3082
+ // var new_block=jQuery('.sfsi_responsive_custom_icon_container').clone();
3083
+ // jQuery('.sfsi_responsive_custom_icon_container').remove();
3084
+ // jQuery('.sfsi_responsive_default_icon_container').parent().append(last_block).append();
3085
+ // jQuery('.sfsi_responsive_default_icon_container').parent().append(new_block);
3086
+ // return false;
3087
+ })
3088
+ }
3089
+
3090
+ function sfsi_responsive_icon_counter_tgl(hide, show, ref = null) {
3091
+ if (null !== hide && '' !== hide) {
3092
+ jQuery('.' + hide).hide();
3093
+ }
3094
+ if (null !== show && '' !== show) {
3095
+ jQuery('.' + show).show();
3096
+ }
3097
+ }
3098
+
3099
+ function sfsi_responsive_toggle_count() {
3100
+ var data = jQuery('input[name="sfsi_share_count"]:checked').val();
3101
+ var data2 = jQuery('input[name="sfsi_display_counts"]:checked').val();
3102
+ /* console.log('toggleer ',data,data2); */
3103
+ if (data2 == "yes" && 'yes' == data) {
3104
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('display', 'inline-block');
3105
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_responsive_without_counter_icons').addClass('sfsi_responsive_with_counter_icons');
3106
+ sfsi_resize_icons_container();
3107
+ } else {
3108
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').css('display', 'none');
3109
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').removeClass('sfsi_responsive_with_counter_icons').addClass('sfsi_responsive_without_counter_icons');
3110
+ sfsi_resize_icons_container();
3111
+ }
3112
+ }
3113
+
3114
+ function sfsi_responsive_open_url(event) {
3115
+ jQuery(event.target).parent().find('.sfsi_responsive_custom_url_hide').show();
3116
+ jQuery(event.target).parent().find('.sfsi_responsive_default_url_hide').show();
3117
+ jQuery(event.target).parent().find('.sfsi_responsive_url_input').show();
3118
+ jQuery(event.target).hide();
3119
+ }
3120
+
3121
+ function sfsi_responsive_icon_hide_responsive_options() {
3122
+ jQuery('.sfsi_PostsSettings_section').show();
3123
+ jQuery('.sfsi_choose_post_types_section').show();
3124
+ jQuery('.sfsi_not_responsive').show();
3125
+ // jQuery('.sfsi_icn_listing8.sfsi_closerli').hide();
3126
+ }
3127
+
3128
+ function sfsi_responsive_icon_show_responsive_options() {
3129
+ jQuery('.sfsi_PostsSettings_section').hide();
3130
+ // jQuery('.sfsi_PostsSettings_section').show();
3131
+ jQuery('.sfsi_choose_post_types_section').hide();
3132
+ jQuery('.sfsi_not_responsive').hide();
3133
+ window.sfsi_fittext_shouldDisplay = true;
3134
+ jQuery('.sfsi_responsive_icon_preview a').each(function (index, a_container) {
3135
+ if (jQuery(a_container).css('display') !== "none") {
3136
+ sfsi_fitText(jQuery(a_container).find('.sfsi_responsive_icon_item_container'));
3137
+ }
3138
+ })
3139
+ sfsi_resize_icons_container();
3140
+ }
3141
+
3142
+ function sfsi_scroll_to_div(option_id, scroll_selector) {
3143
+ jQuery('#' + option_id + '.ui-accordion-header[aria-selected="false"]').click() //opened the option
3144
+ //scroll to it.
3145
+ if (scroll_selector && scroll_selector !== '') {
3146
+ scroll_selector = scroll_selector;
3147
+ } else {
3148
+ scroll_selector = '#' + option_id + '.ui-accordion-header';
3149
+ }
3150
+ jQuery('html, body').stop().animate({
3151
+ scrollTop: jQuery(scroll_selector).offset().top
3152
+ }, 1000);
3153
+ }
3154
+
3155
+ function sfsi_fitText(container) {
3156
+ /* console.log(container,container.parent().parent(),container.parent().parent().hasClass('sfsi_icons_container_box_fixed_container')); */
3157
+ if (container.parent().parent().hasClass('sfsi_icons_container_box_fixed_container')) {
3158
+ /* console.log(window.sfsi_fittext_shouldDisplay); */
3159
+ if (window.sfsi_fittext_shouldDisplay === true) {
3160
+ if (jQuery('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() == "Fully responsive") {
3161
+ var all_icon_width = jQuery('.sfsi_responsive_icons .sfsi_icons_container').width();
3162
+ var total_active_icons = jQuery('.sfsi_responsive_icons .sfsi_icons_container a').filter(function (i, icon) {
3163
+ return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3164
+ }).length;
3165
+
3166
+ var distance_between_icon = jQuery('input[name="sfsi_responsive_icons_settings_margin"]').val()
3167
+ var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3168
+ container_width = (container_width - distance_between_icon);
3169
+ } else {
3170
+ var container_width = container.width();
3171
+ }
3172
+ // var container_img_width = container.find('img').width();
3173
+ var container_img_width = 70;
3174
+ // var span=container.find('span').clone();
3175
+ var span = container.find('span');
3176
+ // var span_original_width = container.find('span').width();
3177
+ var span_original_width = container_width - (container_img_width)
3178
+ span
3179
+ // .css('display','inline-block')
3180
+ .css('white-space', 'nowrap')
3181
+ // .css('width','auto')
3182
+ ;
3183
+ var span_flatted_width = span.width();
3184
+ if (span_flatted_width == 0) {
3185
+ span_flatted_width = span_original_width;
3186
+ }
3187
+ span
3188
+ // .css('display','inline-block')
3189
+ .css('white-space', 'unset')
3190
+ // .css('width','auto')
3191
+ ;
3192
+ var shouldDisplay = ((undefined === window.sfsi_fittext_shouldDisplay) ? true : window.sfsi_fittext_shouldDisplay = true);
3193
+ var fontSize = parseInt(span.css('font-size'));
3194
+
3195
+ if (6 > fontSize) {
3196
+ fontSize = 20;
3197
+ }
3198
+
3199
+ var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3200
+
3201
+ if (computed_fontSize < 8) {
3202
+ shouldDisplay = false;
3203
+ window.sfsi_fittext_shouldDisplay = false;
3204
+ computed_fontSize = 20;
3205
+ }
3206
+ span.css('font-size', Math.min(computed_fontSize, 20));
3207
+ span
3208
+ // .css('display','inline-block')
3209
+ .css('white-space', 'nowrap')
3210
+ // .css('width','auto')
3211
+ ;
3212
+ if (shouldDisplay) {
3213
+ span.show();
3214
+ } else {
3215
+ span.hide();
3216
+ jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icon_item_container span').hide();
3217
+ }
3218
+ }
3219
+ } else {
3220
+ var span = container.find('span');
3221
+ /* console.log(span); */
3222
+ span.css('font-size', 'initial');
3223
+ span.show();
3224
+ }
3225
+
3226
+ }
3227
+
3228
+ function sfsi_fixedWidth_fitText(container) {
3229
+ return;
3230
+ /* console.log(sfsi_fittext_shouldDisplay); */
3231
+ if (window.sfsi_fittext_shouldDisplay === true) {
3232
+ if (jQuery('select[name="sfsi_responsive_icons_settings_icon_width_type"]').val() == "Fixed icon width") {
3233
+ var all_icon_width = jQuery('.sfsi_responsive_icons .sfsi_icons_container').width();
3234
+ var total_active_icons = jQuery('.sfsi_responsive_icons .sfsi_icons_container a').filter(function (i, icon) {
3235
+ return jQuery(icon).css('display') && (jQuery(icon).css('display').toLowerCase() !== "none");
3236
+ }).length;
3237
+ var distance_between_icon = jQuery('input[name="sfsi_responsive_icons_settings_margin"]').val()
3238
+ var container_width = ((all_icon_width - distance_between_icon) / total_active_icons) - 5;
3239
+ container_width = (container_width - distance_between_icon);
3240
+ } else {
3241
+ var container_width = container.width();
3242
+ }
3243
+ // var container_img_width = container.find('img').width();
3244
+ var container_img_width = 70;
3245
+ // var span=container.find('span').clone();
3246
+ var span = container.find('span');
3247
+ // var span_original_width = container.find('span').width();
3248
+ var span_original_width = container_width - (container_img_width)
3249
+ span
3250
+ // .css('display','inline-block')
3251
+ .css('white-space', 'nowrap')
3252
+ // .css('width','auto')
3253
+ ;
3254
+ var span_flatted_width = span.width();
3255
+ if (span_flatted_width == 0) {
3256
+ span_flatted_width = span_original_width;
3257
+ }
3258
+ span
3259
+ // .css('display','inline-block')
3260
+ .css('white-space', 'unset')
3261
+ // .css('width','auto')
3262
+ ;
3263
+ var shouldDisplay = undefined === window.sfsi_fittext_shouldDisplay ? true : window.sfsi_fittext_shouldDisplay = true;;
3264
+ var fontSize = parseInt(span.css('font-size'));
3265
+
3266
+ if (6 > fontSize) {
3267
+ fontSize = 15;
3268
+ }
3269
+
3270
+ var computed_fontSize = (Math.floor((fontSize * span_original_width) / span_flatted_width));
3271
+
3272
+ if (computed_fontSize < 8) {
3273
+ shouldDisplay = false;
3274
+ window.sfsi_fittext_shouldDisplay = false;
3275
+ computed_fontSize = 15;
3276
+ }
3277
+ span.css('font-size', Math.min(computed_fontSize, 15));
3278
+ span
3279
+ // .css('display','inline-block')
3280
+ .css('white-space', 'nowrap')
3281
+ // .css('width','auto')
3282
+ ;
3283
+ // var heightOfResIcons = jQuery('.sfsi_responsive_icon_item_container').height();
3284
+
3285
+ // if(heightOfResIcons < 17){
3286
+ // span.show();
3287
+ // }else{
3288
+ // span.hide();
3289
+ // }
3290
+
3291
+ if (shouldDisplay) {
3292
+ span.show();
3293
+ } else {
3294
+ span.hide();
3295
+ }
3296
+ }
3297
+ }
3298
+
3299
+ function sfsi_resize_icons_container() {
3300
+ // resize icon container based on the size of count
3301
+ sfsi_cloned_icon_list = jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').clone();
3302
+ sfsi_cloned_icon_list.removeClass('.sfsi_responsive_icon_preview .sfsi_responsive_with_counter_icons').addClass('sfsi_responsive_cloned_list');
3303
+ sfsi_cloned_icon_list.css('width', '100%');
3304
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').parent().append(sfsi_cloned_icon_list);
3305
+
3306
+ // sfsi_cloned_icon_list.css({
3307
+ // position: "absolute",
3308
+ // left: "-10000px"
3309
+ // }).appendTo("body");
3310
+ actual_width = sfsi_cloned_icon_list.width();
3311
+ count_width = jQuery('.sfsi_responsive_icon_preview .sfsi_responsive_icons_count').width();
3312
+ jQuery('.sfsi_responsive_cloned_list').remove();
3313
+ sfsi_inline_style = jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').attr('style');
3314
+ // remove_width
3315
+ sfsi_inline_style = sfsi_inline_style.replace(/width:auto($|!important|)(;|$)/g, '').replace(/width:\s*(-|)\d*\s*(px|%)\s*($|!important|)(;|$)/g, '');
3316
+ if (!(jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').hasClass('sfsi_responsive_without_counter_icons') && jQuery('.sfsi_icons_container').hasClass('sfsi_icons_container_box_fixed_container'))) {
3317
+ sfsi_inline_style += "width:" + (actual_width - count_width - 1) + 'px!important;'
3318
+ } else {
3319
+ sfsi_inline_style += "width:auto!important;";
3320
+ }
3321
+ jQuery('.sfsi_responsive_icon_preview .sfsi_icons_container').attr('style', sfsi_inline_style);
3322
+
3323
+ }
3324
+
3325
+ function sfsi_togglbtmsection(show, hide, ref) {
3326
+ console.log(show,hide);
3327
+ jQuery(ref).parent("ul").children("li.clckbltglcls").each(function (index, element) {
3328
+ jQuery(this).children(".radio").css("background-position", "0px 0px");
3329
+ jQuery(this).children(".styled").attr("checked", "false");
3330
+ });
3331
+ jQuery(ref).children(".radio").css("background-position", "0px -41px");
3332
+ jQuery(ref).children(".styled").attr("checked", "true");
3333
+ console.log(show,hide);
3334
+
3335
+ jQuery("." + show).show();
3336
+ jQuery("." + show).children(".radiodisplaysection").show();
3337
+ jQuery("." + hide).hide();
3338
+ jQuery("." + hide).children(".radiodisplaysection").hide();
3339
+ }
3340
+ jQuery(document).ready(function(){
3341
+ var sfsi_functions_loaded = new CustomEvent('sfsi_functions_loaded',{detail:{"abc":"def"}});
3342
+ window.dispatchEvent(sfsi_functions_loaded);
3343
+ });
libs/sfsi_install_uninstall.php CHANGED
@@ -39,7 +39,7 @@ function sfsi_update_plugin()
39
  update_option("sfsi_custom_icons", "yes");
40
  }
41
  //Install version
42
- update_option("sfsi_pluginVersion", "2.39");
43
 
44
  if (!get_option('sfsi_serverphpVersionnotification')) {
45
  add_option("sfsi_serverphpVersionnotification", "yes");
39
  update_option("sfsi_custom_icons", "yes");
40
  }
41
  //Install version
42
+ update_option("sfsi_pluginVersion", "2.41");
43
 
44
  if (!get_option('sfsi_serverphpVersionnotification')) {
45
  add_option("sfsi_serverphpVersionnotification", "yes");
readme.txt CHANGED
@@ -1,867 +1,871 @@
1
- === Social Media Share Buttons & Social Sharing Icons ===
2
- Contributors: socialdude, socialtech
3
- Tags: social media, share, buttons, social widget, icons, share icons, share buttons, sharing icons, sharing buttons, social share, sharing, social sharing
4
- Requires at least: 3.5
5
- Tested up to: 5.2.2
6
- Stable tag: 2.4.0
7
- License: GPLv2
8
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
-
10
- Share buttons and share icons plugin for social media sharing on Facebook, Twitter, Instagram, Whatsapp, Pinterest etc.
11
-
12
- == Description ==
13
-
14
- Social media plugin which let's you add share icons for RSS, Email, Facebook, Twitter, LinkedIn, Pinterest, Instagram, Youtube, 'Share' (covering 200+ other social media platforms) and upload custom share icons of your choice.
15
-
16
- This free plugin has a lot to offer. Even more can be found in the Premium Plugin, please watch this short video:
17
-
18
- [vimeo https://vimeo.com/269140798]
19
-
20
- See [all features of the Premium plugin](https://www.ultimatelysocial.com/usm-premium/).
21
-
22
- The free social media plugin includes the following features:
23
-
24
- - Pick from 16 different designs for your social media share icons
25
- - Give several actions to one social media share icon (e.g. your facebook share icon can lead visitors to your Facebook page, and also give visitors the opportunity to like your page)
26
- - Decide to give your social media icons an animation (e.g. automatic shuffling, mouse-over effects) to make your visitors aware of the share icons, increasing the chance that they follow/share your blog
27
- - Make your social media icons 'float' or 'sticky'
28
- - Allow visitors to subscribe to your blog by Email
29
- - Add 'counts' to your social media buttons
30
- - Decide to display a pop-up (on all or only on selected pages) asking people to follow/share you via your social media icons
31
- - Decide to display sharing-buttons and social media icons at the end of every post
32
- - Select from many other customization features for your socialmedia icons!
33
-
34
- For GDPR compliance, please have a look at our [Social Media GDPR Compliance page](https://ultimatelysocial.com/gdpr/).
35
-
36
- The social media plugin is very easy to use as it takes you through all the steps:
37
-
38
- - Step 1: Choose which social media icons you want to display
39
- - Step 2: Define what actions your social media icons should perform
40
- - Step 3: Pick design & animation options for your social media icons
41
- - Step 4: Add counts to your social media icons (optional)
42
- - Step 5: Select from various other social share options, e.g. make your social media icons 'float'
43
- - Step 6: Add sharing/linking icons next to each blog post (optional)
44
- - Step 7: Add a customized pop-up asking people to follow or share (optional)
45
- - Step 8: Add a subscription form on your site (optional)
46
-
47
- In case of issues or questions please ask in the [Support forum](https://wordpress.org/support/plugin/ultimate-social-media-icons).
48
-
49
- We hope you enjoy the free social media plugin!
50
-
51
- = New Premium Plugin =
52
-
53
- We released a Premium Plugin with many more exciting features:
54
-
55
- - **Many more social networks** supported, including Snapchat share buttons, Whatsapp share buttons, Yummly share buttons, Phone button, Yelp share buttons, Soundcloud share buttons, Skype share buttons Flickr share buttons, Blogger share buttons, Reddit share buttons, Vimeo share buttons, Tumblr share buttons, Xing share buttons, Vkontakte share buttons (VK), Telegram share buttons, Amazon share buttons, Goodreads share buttons, Angies list share buttons, Steam share buttons, Twitch share buttons, Spotify share buttons, Odnoklassniki share buttons (OK), Buffer share buttons, Weibo share buttons, Pocket share buttons, Meneame share buttons, Frype share buttons, LiveJournal share buttons, Patreon share buttons, Dloky share buttons, Discord share buttons, Github share buttons, Wordpress buttons, Etsy share buttons, Better Business Bureau share buttons, Digg share buttons, Delicious share buttons, Print share buttons, and many other share buttons!
56
- - **More design styles** to make your social share icons look really cool & matching the design of your website
57
- - **Themed design styles**, e.g. if you have a website about cats you can pick from social media logos which look like cats etc.
58
- - **Better social sharing and following features**, e.g. you can define the Tweet-texts better (e.g. pull the post titles into your Tweets automatically), let people follow you on Facebook directly without leaving your site etc.
59
- - **Place the social icons on specific pages**, i.e. you can define on which pages the icons to the social media sites should not show
60
- - **Position the social icons by anchor and margins**, i.e. you can define the margins where your share icons should be displayed (from top/bottom/left/right), and then have them floating, or stick, still visible when user scrolls down or not etc.
61
- - **Optimized for mobile** - you can define separate selections for your social network icons for mobile
62
- - **More functions for email icon**, such as Share (by email), Contact you, Link to a certain page etc.
63
- - **Social media counters optimized** to encourage more social media sharing from your visitors
64
- - **More pop up options** which contain your social media buttons, e.g. define a limit to how often the pop-up is shown to the same user, show pop-up only when people try to leave your website etc.
65
- - **Friendly support** in case you're stuck
66
- - **Many more settings and options** for your social media network icons
67
-
68
- Have a look at the [Premium Plugin features](https://www.ultimatelysocial.com/usm-premium/)
69
-
70
-
71
- == Installation ==
72
- Extract the zip file and drop the contents into the wp-content/plugins/ directory of your WordPress installation. Then activate the plugin from the plugins page.
73
-
74
- Then go to plugin settings page and follow the instructions. After you're done, go to the Widget area (Appearance >> Widget) and place the widget on your sidebar to display your social sharing icons on your blog.
75
-
76
- Note: This plugin requires CURL to be activated/installed on your server (which should be the standard case), and a PHP version of 5.4 or above. If you don't have it, please contact your hosting provider or server admin.
77
-
78
- == Frequently Asked Questions ==
79
- = Please also check the more comprehensive FAQ on http://ultimatelysocial.com/faq =
80
-
81
- .
82
-
83
- = I face fundamental issues (the plugin doesn't load etc.) =
84
-
85
- Please ensure that:
86
-
87
- - You're using the latest version of the plugin(s)
88
- - Your site is running on PHP 5.4 or above
89
- - You have CURL activated (should be activated by default)
90
-
91
- If you're not familiar with those please contact your hosting company or server admin.
92
-
93
- Please check if you have browser extensions activated which may conflict with the plugin. Known culprits include:
94
-
95
- - Open SEO Stats (Formerly: PageRank Status) in Chrome
96
- - Adblock Plus in Chrome
97
- - Vine in Chrome
98
-
99
- Either de-activate those extensions or try it in a different browser.
100
-
101
- If the plugin setting's area looks 'funny' after an upgrade then please clear your cache with String+F5 (PC) or Command+R (Mac).
102
-
103
- If you get the error message “Are you sure you want to do this? / Please try again” when uploading the socialsharing plugin: Some servers may have a low limits with respect to permitted upload times. Please set the values in the “php.ini” file to:
104
-
105
- max_execution_time 90
106
- post_max_size 48M
107
-
108
- If you don’t know how to do it, please contact your server support / hosting company for that. Tell them you need it for a social sharing plugin on WordPress which may take longer to upload.
109
-
110
- If your issue is still not fixed after you’ve followed the steps above, we can provide support as part of our share to social Premium Plugin: https://www.ultimatelysocial.com/usm-premium/.
111
-
112
- = I get error messages 'Error : 7', 'Error : 56', 'Error : 6' etc. =
113
-
114
- Those point to a CURL-issue on your site. Please contact your server admin or your hosting company to resolve it.
115
-
116
- The plugin requires CURL for the social share counts and other features.
117
-
118
- = Social share icons don't show =
119
-
120
- Please ensure you actually placed the social share buttons either as social widget (in your widget area) or as floating icons under question 5). The Premium Plugin makes placing the social icons especially easy and also allows you to place sticky social share icons on your site, define the placement of the social share icons by margins and many other options, see https://www.ultimatelysocial.com/usm-premium/.
121
-
122
- If only some social share icons show, but not all, then please clear your cache, and check if you may have conflicting browser extensions (e.g. 'Disconnect'-app in Chrome). Also Ad-Blockers are known culprits, please switch them off temporarily to see if that is the reason.
123
-
124
- If the social share icons still don't show then there's an issue with your template. Please contact the creator of your template for that.
125
-
126
- If you are referring to specific social share icons not showing in the plugin itself (e.g. you're looking for a Whatsapp share icon, but it doesnt exist) please note that our Premium Plugin has many more social media share icons, see https://www.ultimatelysocial.com/usm-premium/
127
-
128
- = Twitter social share counts are not displaying (anymore) =
129
-
130
- Unfortunately, Twitter stopped providing any social share count. God knows why.
131
-
132
- = Changes don't get saved / Deleted plugin but the social share icons still show =
133
-
134
- Most likely you have the WP Cache plugin installed. Please de-activate and then re-activate it, then the social share icons should display again.
135
-
136
- = Links when clicking on the social share icons don't work =
137
-
138
- Please ensure you've entered the 'http://' at the beginning of the url (for *all* social networks). If the social share icons are not clickable at all there is most likely an issue with your template. This is especially the case if you've given your social share buttons several features, which should show a pop-up (tooltip) when you move over the social share icons.
139
-
140
- = I cannot upload custom social share icons =
141
-
142
- Most likely that's because you've set 'allow_url_fopen' to 'off'. Please turn it to 'on' (or ask your server admin to do so, he'll know what to do. Tell them you need it to upload custom share icons for a social media buttons plugin).
143
-
144
- = My Youtube social share icon (direct follow) doesn't work =
145
-
146
- Please ensure that you've selected the radio button 'Username' when you enter a youtube username, or 'Channel ID' when you entered a channel ID.
147
-
148
- = Aligning the social share icons (centered, left- or right-aligned) doesn't work =
149
-
150
- The alignment options under question 5 align the social share icons with respect to each other, not where they appear on the page. Our new Premium Plugin is the best social sharing plugin on the market, allowing you to define also many other social share icon alignments (e.g. within a widget, within shortcode etc.).
151
-
152
- = Clicking on the RSS icon returns funny codes =
153
-
154
- That's normal. RSS users will know what to do with it (i.e. copy & paste the url into their RSS readers).
155
-
156
- = Facebook 'like'-count isn't correct =
157
-
158
- When you 'like' something on your blog via facebook it likes the site you're currently on (e.g. your blog) and not your Facebook page.
159
-
160
- The new Premium Plugin also allows to show the number of your Facebook page likes, see https://www.ultimatelysocial.com/usm-premium/.
161
-
162
- = Sharing doesn't take the right text or picture =
163
-
164
- We use the share codes from Facebook etc. and therefore don't have any influence over which text & pic Facebook decides to share.
165
-
166
- Note that you can define an image as 'Featured Image' which tells Facebook etc. to share that one. You'll find this 'Featured Image' section in your blog's admin area where you can edit your blog post.
167
-
168
- You can crosscheck which image Facebook will take by entering your url on https://developers.facebook.com/tools/debug/og/object/.
169
-
170
- UPDATE: we made significant enhancements to the premium plugin, it now allows you to define the sharing pics and texts for your social share icons.
171
-
172
- = The pop-up shows although I only gave my social share icon one function =
173
-
174
- The pop-up only disappears if you've given your social share icons only a 'visit us'-function, otherwise (e.g. if you gave it 'Like' (on facebook) or 'Tweet' functions) a pop-up is still needed because the social share buttons for those are coming directly from the social media sites (e.g. Facebook, Twitter) and we don't have any influence over their design.
175
-
176
- = I selected to display the social share icons after every post but they don't show =
177
-
178
- The social share icons usually do show, however not on your blog page, but on your single posts pages. The Premium plugin (https://www.ultimatelysocial.com/usm-premium/) also allows to display the social share icons on your homepage.
179
-
180
- = Plugin decreases my site's loading speed =
181
-
182
- The plugin is one of the most optimized social media plugin in terms of impact on a site's loading speed (optimized code, compressed pictures etc.).
183
-
184
- If you still experience loading speed issues, please note that:
185
-
186
- - The more sharing- and invite- features you place on your site, the more external codes you load (i.e. from the social media sites; we just use their share code), therefore impacting loading speed. So to prevent this, give your social share icons only 'Visit us'-functionality rather than sharing-functionalities.
187
-
188
- - We've programmed it so that the code for the social media icons is the one which loads lasts on your site, i.e. after all the other content has already been loaded. This means: even if there is a decrease in loading speed, it does not impact a user's experience because he sees your site as quickly as before, only the social media icons take a bit longer to load.
189
-
190
- There might be also other issues on your site which cause a high loading speed (e.g. conflicts with our plugins or template issues). Please ask your template creator about that.
191
-
192
- Also, if you've uploaded social media sharing icons not provided by the plugin itself (i.e. custom share icons) please ensure they are compressed as well.
193
-
194
- = After moving from demo-server to live-server the follow/subscribe-link doesn't work anymore =
195
-
196
- Please delete and install the plugin again.
197
-
198
- If you already placed the code for a subscription form on your site, remove it again and take the new one from the new plugin installation.
199
-
200
- = There are other issues when I activate the plugin or place the social share icons =
201
-
202
- Please check the following:
203
-
204
- The plugin requires that CURL is installed & activated on your server (which should be the standard case). If you don't have it, please contact your hosting provider.
205
-
206
- Please ensure that you don't have any browser extension activated which may conflict with the plugin, esp. those which block certain content. Known culprits include the 'Disconnect' extension in Chrome or the 'Privacy Badger' extension in Firefox.
207
-
208
- If issues persist most likely your theme has issues which makes it incompatible with our plugin. Please contact your template creator for that. As part of the Premium Plugin (https://www.ultimatelysocial.com/usm-premium/) we fix also theme issues, and provide support to ensure that your social media share buttons appear on your site (exactly where you want them).
209
-
210
- = How can I see how many people decided to share or like my post? =
211
-
212
- You can see this by activating the social share 'counts' on the front end (under question 4 in the USM plugin, question 5 in the USM+ plugin).
213
-
214
- We cannot provide you this data in other ways as it's coming directly from the social media sites. One exception: if you like to know when people start to follow you by email, then you can get email alerts. For that, please claim your feed (see question above).
215
-
216
- = How can I change the 'Please follow & like us :)'? =
217
-
218
- You can change it in the Widget-area where you dropped the widget (with the social share icons) on the sidebar. Please click on it (on the sidebar), it will open the menu where you can change the text.
219
-
220
- If you don't want to show any text, just enter a space (' ').
221
-
222
- = Can I use a shortcode to place the social share icons? =
223
-
224
- Yes, use [DISPLAY_ULTIMATE_SOCIAL_ICONS] to show the social share icons. You can place it into any editor.
225
-
226
- Alternatively, you can place the following into your codes to show the share icons: <?php echo do_shortcode('[DISPLAY_ULTIMATE_SOCIAL_ICONS]'); ?>
227
-
228
- In some cases there might be issues to display social media sharing buttons which you uploaded as custom share icons. In this case, we provide support as part of our premium plugin: https://www.ultimatelysocial.com/usm-premium/
229
-
230
- = Can I get more options for the social share icons next to posts? =
231
-
232
- Please use this plugin for that: https://www.ultimatelysocial.com/usm-premium/
233
-
234
- = Can I also give the email-icon a 'mailto:' functionality? =
235
-
236
- Yes, that is possible in our new social share plugin, the Premium Plugin: https://www.ultimatelysocial.com/usm-premium/
237
-
238
- = Can I also display the social share icons vertically? =
239
-
240
- Yes, that is possible in our new social sharing plugin, the Premium Plugin: https://www.ultimatelysocial.com/usm-premium/.
241
-
242
- = How can I change the text on the 'visit us'-buttons? =
243
-
244
- Use this plugin: https://www.ultimatelysocial.com/usm-premium/
245
-
246
- = Can I deactivate the social share icons on mobile? =
247
-
248
- Yes, you can disable the share icons under question 5. In our new Premium Plugin you can define different settings for mobile, see https://www.ultimatelysocial.com/usm-premium/. The best way to share social media! :)
249
-
250
- = How can I use two instances of the plugin on my site? =
251
-
252
- You cannot use the same plugin twice, however you can install both the USM as well as the Premiuem plugin (https://www.ultimatelysocial.com/usm-premium/). We've developed the code so that there are no conflicts and you can place the share icons in one way with one plugin, and select other share icons with the other plugin and place them differently.
253
-
254
-
255
- == Screenshots ==
256
-
257
- 1. After installing the plugin, you'll see this overview. You'll be taken through the easy-to-understand steps to configure your plugin
258
-
259
- 2. As a first step you select which share icons you want to display on your website
260
-
261
- 3. Then you'll define what the share icons should do (they can perform several actions, e.g. lead users to your facebook page, or allow them to share your content on their facebook page)
262
-
263
- 4. You can pick from a wide range of share icon designs
264
-
265
- 5. Here you can animate your social share icons (automatic shuffling, mouse-over effects etc.), to make visitors of your site aware that they can share, follow & like your site
266
-
267
- 6. You can choose to display counts next to your social share icons (e.g. number of Twitter-followers)
268
-
269
- 7. There are many more options to choose from
270
-
271
- 8. You can also add social share icons at the end of every post
272
-
273
- 9. ...or even display a pop-up (designed to your liking) which asks users to like & share your site
274
-
275
-
276
- == Changelog ==
277
-
278
- = 2.4.0 =
279
- * Instagram generate token removed the deplicated scopes.
280
- * Removed some PHP update Notices.
281
- * Updated feed claiming apis.
282
- * Updated Mouseover text removed.
283
-
284
- = 2.3.9 =
285
- * Corrected the jQuery admin area problem
286
- * Solved the jQuery error for shortcode
287
- * Solved feed claiming
288
- * Option name in Q3 changed
289
-
290
- = 2.3.8 =
291
- * Fixed the text in theme banner.
292
- * Fixed follow icon and subscription box when Curl is disabled.
293
- * Fixed cURL errors.
294
-
295
- = 2.3.7 =
296
- * solved: Wrong link on icons when curl not installed.
297
-
298
- = 2.3.6 =
299
- * Solved: Updated Text changes.
300
-
301
- = 2.3.5 =
302
- * Solved: Updated Text changes.
303
-
304
- = 2.3.4 =
305
- * Solved: Updated Text changes.
306
- * Solved: Updated link for email.
307
-
308
- = 2.3.3 =
309
- * Solved: Updated the email link and subscription action.
310
-
311
- = 2.3.2 =
312
- * Solved: Updated feedback system.
313
-
314
- = 2.3.1 =
315
- * Solved: Updated feedback system.
316
-
317
- = 2.3.0 =
318
- * Solved: Errors on the footer in dashboard corected.
319
- * Solved: Updated logic for inclusion of external js.
320
- * Solved: Some grametical errors.
321
- * Solved: Updated feedback system.
322
-
323
- = 2.2.9 =
324
- * Solved: After post icons shown.
325
-
326
- = 2.2.8 =
327
- * Solved: Header already sent error on some servers.
328
-
329
- = 2.2.7 =
330
- * Solved: Updated feedback system to next version.
331
- * Solved: Responsive Icons UI updated.
332
-
333
- = 2.2.6 =
334
-
335
- * New Feature: Responsive icons in free plugin.
336
- * Solved: Icons not rendering on woocomerce product page.
337
- * Solved: Twitter url changed to share from intent for better reliablity.
338
- * Solved: Lots of little adjustments to improve the UI and functionality.
339
- * Solved: Removed Google Plus.
340
- * Solved: Stop loading unused external library code for faster load.
341
- * Solved: Removed curl notice while activation.
342
- * Solved: Fixed broken arrays and missing indexes.
343
- * Solved: Updated feedback system to next version.
344
-
345
- = 2.2.5 =
346
- * Integrated feedback system
347
-
348
- = 2.2.4 =
349
- * Solved: Unserialized error corrected.
350
- * Solved: All curl calls to wp_remote.
351
- * Solved: Notices in front end solved.
352
-
353
- = 2.2.3 =
354
- * Solved: Footer Error solved.
355
- * Solved: Removed most of the html errors.
356
- * Solved: Less anoying sidebar.
357
-
358
- = 2.2.2 =
359
- * Solved: More icons upadated
360
- * Solved: Icon backgrounds updated
361
-
362
- = 2.2.1 =
363
- * Solved: woocomerce conflict resolved
364
- * Solved: alert in case on conflict.
365
- * new Feature: More icons for free plugin
366
-
367
- = 2.2.0 =
368
- * Solved: Critical Security Patch.
369
-
370
- = 2.1.9 =
371
- * Solved: Security Patch.
372
-
373
- = 2.1.8 =
374
- * Solved: security update.
375
-
376
- = 2.1.7 =
377
- * Solved: save button not working.
378
-
379
- = 2.1.6 =
380
- * Solved: compatablity issue with older versions.
381
-
382
- = 2.1.5 =
383
- * Solved: google plus is deprecated
384
- * Solved: Sf count not shown
385
- * Solved: Sf subscribe form opens blank page.
386
- * solved: decreased the manual intervestions of upgradation to premium.
387
-
388
- = 2.1.4 =
389
- * Solved: Changed theme check url to match bloginfo url.
390
-
391
- = 2.1.3 =
392
- * Solved: Email validation for Offline chat.
393
- * Solved: Premium notification breaking the dashboard structure.
394
- * Solved: changed option for linkedin count
395
- * Solved: ajax_object conflict with themes.
396
- * Solved: new keyword check from page title, page keywords and page description.
397
-
398
- = 2.1.2 =
399
- * Solved: Text optimized
400
-
401
- = 2.1.1 =
402
- * Solved: design changes for chat.
403
- * Solved: unexpected charactor "[" error for php version 5.3.
404
-
405
- = 2.1.0 =
406
- * New Feature: Chat for site admin on our settings page.
407
- * Solved: removed deprecated jQuery functions.
408
- * Solved: Rectangle icon alignemnt problem on some themes solved.
409
-
410
- = 2.0.9 =
411
- * Banner for animation section in Question 4 added
412
- * Different icon for mouseover section pointing in premium in Question 4 added
413
- * Removed theme icon banner if no match
414
-
415
- = 2.0.8 =
416
- * Solved: Notification bar cannot be seen anymore
417
- * Solved: cleared the float elements after notice.
418
-
419
- = 2.0.7 =
420
- * Round green follow button doesn't show - fixed
421
- * Footer optimized
422
-
423
- = 2.0.6 =
424
- * Fixed bug that sometimes banner didn't disappear
425
- * Links in review message updated
426
-
427
- = 2.0.5 =
428
- * Issue with click on icons on mobile fixed
429
-
430
- = 2.0.4 =
431
- * Corrected missing ? in shortcode
432
-
433
- = 2.0.3 =
434
- * Optimized texts
435
-
436
- = 2.0.2 =
437
- * Addthis removed due to GDPR
438
- * New option to switch debugging mode on/off
439
-
440
- = 2.0.1 =
441
- * Issue of window.onscroll function overriding and breaking other plugins/themes fixed
442
-
443
- = 2.0.0 =
444
- * New question 3 to facilitate placement of icons
445
-
446
- = 1.9.7 =
447
- * Stopped setting cookies for pop-up selection "if user moved to end of page" as not needed in this case (relevant for GDPR compliance)
448
-
449
- = 1.9.6 =
450
- * Usage instructions updated
451
-
452
- = 1.9.5 =
453
- * Facebook like count fixed (previously only fixed for likes of user's website, not likes of Facebook page)
454
-
455
- = 1.9.4 =
456
- * Youtube count and direct follow issues fixed
457
-
458
- = 1.9.3 =
459
- * Facebook like count issue fixed
460
- * Youtube saving issue when clicked on "Save all settings" - fixed now
461
-
462
- = 1.9.2 =
463
- * Instagram followers count issue fixed
464
- * Twitter count issue fixed
465
- * Facebook share count issue fixed
466
-
467
- = 1.9.1 =
468
- * Errors with "non-numeric value" fixed
469
-
470
- = 1.8.9 =
471
- * Error log files removed
472
-
473
- = 1.8.7 =
474
- * Updated description texts
475
-
476
- = 1.8.6 =
477
- * Made different placement options more visible
478
-
479
- = 1.8.5 =
480
- * Text changes
481
-
482
- = 1.8.4 =
483
- * Added referring opportunity
484
-
485
- = 1.8.3 =
486
- * Saving of links for custom icons sometimes didn't work. Fixed now.
487
-
488
- = 1.8.2 =
489
- * Links updated
490
-
491
- = 1.8.1 =
492
- * Themed icon notifications optimized
493
-
494
- = 1.8.0 =
495
- * CSS & JAVASCRIPT files are added in footer instead of header
496
-
497
- = 1.7.9 =
498
- * Banners added
499
- * Spelling mistakes corrected
500
-
501
- = 1.7.8 =
502
- * Added more themed icon banners
503
-
504
- = 1.7.6 =
505
- * Comment to selecting of specific text and picture per page/post added
506
-
507
- = 1.7.5 =
508
- * Link to more premium icons added
509
-
510
- = 1.7.4 =
511
- * Better error messages in case of Curl errors
512
- * Optimized review bar
513
- * Code not remaining on site after de-installation
514
-
515
- = 1.7.2 =
516
- * More individualized offer for themed icons
517
-
518
- = 1.7.1 =
519
- * Claiming process optimized
520
-
521
- = 1.6.9 =
522
- * Counts for social buttons optimized and Instagram counter bug fixed
523
- * Link to more social sharing buttons added
524
-
525
- = 1.6.8 =
526
- * Issue fixed that sometimes incorrect error-messages showed on front-end
527
- * Credit link updated
528
- * More icons added for pro-version
529
- * SpecificFeeds adjusted for paid option
530
- * De-installation will now clear database entirely
531
- * Upgrade to pro-link renamed
532
-
533
- = 1.6.6 =
534
- * New option for tailor-made icons
535
-
536
- = 1.6.5 =
537
- * Activation/deactivation links optimized
538
-
539
- = 1.6.4 =
540
- * Links to additional features optimized
541
-
542
- = 1.6.3 =
543
- * Notification issues corrected
544
-
545
- = 1.6.1 =
546
- * Dismissal of notification lead to plugin setting's page previously, this is corrected now
547
-
548
- = 1.5.8 =
549
- * Educational comments added
550
-
551
- = 1.5.7 =
552
- * Conflicts with other plugins resolved
553
-
554
- = 1.5.6 =
555
- * Instructions for trouble shooting optimized
556
-
557
- = 1.5.5 =
558
- * Facebook icon leading to empty pages (in specific cases) fixed
559
-
560
- = 1.5.4 =
561
- * Twitter sharing text issues with forwarded slashes fixed
562
- * Links to review sites adjusted following Wordpress changes in review section
563
-
564
- = 1.5.3 =
565
- * Missing counts for email follow option fixed (when there are no subscribers yet)
566
- * Extra explanation text added
567
-
568
- = 1.5.2 =
569
- * Corner case vulnerability fixed
570
-
571
- = 1.5.1 =
572
- * Claiming process simplified
573
- * Mouse-over for custom icons sometimes showed wrong text, corrected now
574
-
575
- = 1.4.8 =
576
- * Size of custom icons corrected
577
- * Cute G+ icon too small before, corrected now
578
- * Better description how to get G+ API key added
579
- * Unsupported "live" function in jquery fixed
580
-
581
- = 1.4.7 =
582
- * Icons sometimes on top of each other - fixed
583
-
584
- = 1.4.5 =
585
- * E-Notice errors fixed
586
- * Facebook share button added for before/after posts
587
-
588
- = 1.4.4 =
589
- * Errors fixed with color code sanitizing function
590
-
591
- = 1.4.3 =
592
- * Removed the js files from plugin and using the ones provided by WP now
593
-
594
- = 1.4.2 =
595
- * POST calls optimized (sanitize, escape, validate)
596
-
597
- = 1.4.1 =
598
- * Removed feedback option
599
- * Tags changed
600
-
601
- = 1.3.9 =
602
- * Added Pinterest button for rectangle icons after/before posts
603
- * If user has given an icon several functions, the tooltip appears as before, however if user clicks on the main icon then it will now also perform an action, i.e. the 'visit us'-function
604
-
605
- = 1.3.8 =
606
- * Review request changed
607
-
608
- = 1.3.7 =
609
- * Claiming links corrected
610
- * Icons don't have any mouseover-effects (e.g. fade in) by default anymore
611
-
612
- = 1.3.6 =
613
- * Overkill declaration in the CSS fixed
614
- * Custom icons can now have mailto:-functionality
615
- * jQuery UI issues fixed
616
- * Rectangle G+ icon now shown as last one as it takes more space (looks better)
617
- * Comment added that partner plugin https://wordpress.org/plugins/ultimate-social-media-plus/ now allows buttons in various languages
618
-
619
- = 1.3.5 =
620
- * jQuery issues/conflicts fixed
621
- * Placing icons on blog homepage had issues with counts, fixed now
622
- * Script issues fixed
623
- * Text added on plugin setting's page for easier understanding
624
- * Issue that dashboard sometimes doesn't load fixed
625
- * Instagram thin-icon issue fixed (misspelled, therefore didn't show)
626
-
627
- = 1.3.4 =
628
- * Facebook changed their API - please upgrade if you want Facebook sharing on mobile to work properly on your site!
629
-
630
- = 1.3.3 =
631
- * Feed claiming optimized
632
- * New 'Visit us'-icon for Twitter added which matches the new Twitter-design
633
- * PNG-file error for Houzz icon corrected
634
- * Incorrect G+ icon replaced
635
- * Error message for sites where subscription form doesn't work added
636
- * Extra comments added how to claim a feed and several other texts optimized
637
-
638
- = 1.3.2 =
639
- * Feed claiming optimized
640
-
641
- = 1.3.1 =
642
- * Shortpixel link fixed
643
-
644
- = 1.3.0 =
645
- * Feed claiming bug fixed
646
-
647
- = 1.2.9 =
648
- * New G+ button updated
649
- * Quicker claiming of feed possible
650
- * Comments to share-button added
651
- * Credit to shortpixel added
652
-
653
- = 1.2.8 =
654
- * New feature: Users can now decide where exactly the floating icons will display
655
- * Internal links corrected
656
- * Fixed: Targets only labels within the social icons div.
657
- * Subscriber counts fixed
658
- * Apostrophe issues fixed
659
- * Conflicts with Yoast SEO plugin resolved
660
- * PHP errors fixed
661
-
662
- = 1.2.7 =
663
- * Count issues fixed - please upgrade!
664
- * Style constructor updated to PHP 5
665
- * Text adjustments in admin area
666
-
667
- = 1.2.6 =
668
- * (Minor) compatibility issues with Wordpress 4.3. fixed
669
-
670
- = 1.2.5 =
671
- * Updating process fixed
672
-
673
- = 1.2.4 =
674
- * New question 8 added: you can now also add a subscription form to your site
675
-
676
- = 1.2.3 =
677
- * More explanations added how to fix if counts don't work
678
- * Icon files are compressed now for faster loading - thank you ShortPixel.com!
679
- * A typo in the code threw an error message in certain cases, this is fixed now
680
-
681
- = 1.2.2 =
682
- * jQuery issues fixed
683
- * Vulnerability issues fixed
684
- * Twitter-button didn't get displayed in full sometimes, this is fixed now
685
- * CSS issues (occurred on some templates) fixed
686
- * Facebook updated API (so counts didn't get displayed correctly anymore), we updated the plugin accordingly
687
-
688
- = 1.2.1 =
689
- * Template-specific issues fixed
690
- * Layout in admin-area optimized
691
- * Sometimes title didn't get rendered correctly, this is fixed now
692
- * Youtube API changes also updated in plugin
693
- * Outdated (and vulnerable) JS library updated
694
- * New options for placing icons after every post (under question 6)
695
-
696
- = 1.2.0 =
697
- * Links with '@' in the url (e.g. as in Flickr-links) now get recognized as well
698
- * Alignment issues of icons in tooltip fixed
699
- * Layout optimizations in plugin area
700
- * Users can now select to have the number of likes of their facebook page displayed as counts of the facebook icon on their blogs
701
- * Typos in admin area corrected
702
-
703
- = 1.1.1.12 =
704
- * Vulnerabilities (AJAX) fixed
705
- * OG-issues (caused in conjunction with other plugins) fixed
706
-
707
- = 1.1.1.11 =
708
- * Conflicts with Yoast SEO plugin sorted
709
- * Performance optimized
710
- * Facebook sharing text issues fixed
711
- * Sometimes facebook share count didn't increase despite liking it, this should be fixed now (to be observed)
712
- * When sharing from a Facebook business page it returned errors, this should be fixed now (to be observed)
713
- * Share-box only displayed partly sometimes, fixed now
714
- * Template CSS conflicts solved in the plugin
715
- * Adding of unwanted spans fixed
716
-
717
- = 1.1.1.10 =
718
- * OG-issues fixed
719
- * Text which gets shared sometimes didn't contain spaces, fixed now
720
- * Plugin name in php file shortened
721
- * More explanation texts added in admin area
722
- * Facebook share window sometimes only got displayed partially, fixed now
723
- * Other facebook share issues fixed
724
- * Template CSS issues causing icons to be displayed not in one straight horizontal line fixed
725
- * In some cases facebook counts didn't increase if liked, this should be fixed now
726
- * Tested for up to Wordpress version 4.2.1.
727
-
728
- = 1.1.1.9 =
729
- * Issues with custom icon upload & custom icon removal fixed
730
- * Box asking for review didn't disappear in some cases, fixed now
731
- * Some design issues with some CSS for icons after every post, fixed now
732
- * Changes in text / guide in plugin
733
- * Conflicts with YOAST SEO plugin sorted
734
- * Conflicts with ADD MEDIA button and ADD LINK sorted
735
- * In some cases activating the icons after every post the content disappeared, this is fixed now
736
- * New option to center icons after posts
737
- * In some cases if no widget was placed it said 'Kindly go to settings page and check the option 'show them via widget'' got displayed on the blog, this is fixed now
738
- * G+ window disappeared sometimes after moving over it, fixed now
739
- * LinkedIn icon disappeared after moving over it a few times, fixed now
740
- * Several other CSS issues fixed
741
- * Sometimes tooltips didn't appear, fixed now
742
- * When plugin is activated some toggle functionality stopped working, fixed now
743
- * Click on icons after posts now shares the post, not the blog page
744
- * Several little design enhancements
745
- * When user selected that icons should show floating in the bottom right they floated in the center right, fixed now
746
- * Issues with Youtube direct follow fixed
747
- * Number of Instagram followers not always got pulled correctly, fixed now
748
- * When site loaded the widget sometimes overlapped with others, fixed now
749
-
750
- = 1.1.1.8 =
751
- * Plugin's menu button now has less aggressive colors
752
- * Sometimes sharing via facebook returned error messages, this is fixed now
753
- * Conflicts with WooTheme Whitelight resolved
754
- * Occasional problems with https-sites previously, now compatibile
755
-
756
- = 1.1.1.7 =
757
- * The 'counts' were not always correct, fixed now
758
- * Conflicts with page editor resolved
759
- * Last plugin update fixed Youtube points, however the 'channel' was as default, set back to 'username'
760
- * Mouseover-text for social icons now correct
761
- * Some layout adjustment in the admin area (menu-button will also be adjusted in next release)
762
- * Setting order of icons sometimes didnt work properly when custom icons got uploaded, this is fixed now
763
-
764
- = 1.1.1.6 =
765
- * jQuery updated, now most conflicts with other plugins should be resolved
766
-
767
- = 1.1.1.5 =
768
- * Conflicts with several plugins sorted
769
- * Icons can now be disabled on mobile
770
- * Renaming of 'Youtube Channel' to 'Username' to avoid confusion
771
- * On some templates there were alignment issues of the icons, this is fixed
772
- * Menu button sub-menu removed (wasn't really necessary)
773
- * Lightbox in admin area for custom icon upload shortened (was too large)
774
- * Tags for all icons defined (for SEO purposes)
775
-
776
- = 1.1.1.4 =
777
- * If given only a 'visit us'-function for the Twitter-icon, the is no tooltip anymore (like for the other icons)
778
- * Sharing sometimes pulled an incorrect image, fixed now
779
- * Pop-up now also has an 'x' in the top right corner for people to close
780
- * Sometimes icons overlapped, this is fixed now
781
- * Several issues fixed when users put shortcode into the header
782
- * Sometimes our request to ask users for feedback got displayed too early, this is fixed now
783
- * Some youtube accounts don't have a username, but only a channel. To allow users to directly to subscribe to your youtube channel the plugin required a User ID, now a channel is possible too
784
- * Several conflicts with other plugins resolved
785
- * Some CSS issues fixed
786
- * Steps 1., 2., 3. in the guide how to upload a custom icon were sometimes missing, this is fixed now
787
- * Title removed now when using shortcodes
788
- * Some error messages in developer tools not showing up anymore
789
-
790
- = 1.1.1.3 =
791
- * Several CSS issues fixed
792
-
793
- = 1.1.1.2 =
794
- * Shortcode now available too, so that you can place the icons wherever you want: Insert [DISPLAY_ULTIMATE_SOCIAL_ICONS]
795
- * 'Visit us'-option now also available for Twitter-users
796
- * Description added for people helping to find their LinkedIn-ID
797
- * Description added for people helping to generate their API-keys for Twitter, LInkedIn and G+ to display their counts automatically
798
- * Design of pop-up for upload of custom icons changed, to better explain required steps
799
- * 'Icons per row' didn't work properly in specific cases, fixed now
800
- * If user displayed counts for the icons, and picked the option 'floating' and 'bottom', the counts were sometimes not displayed because they moved too far down. This is fixed now.
801
-
802
- = 1.1.1.1 =
803
- * Previously custom icons got deleted if plugin was upgraded. This is fixed *from now on*. If you previously uploaded a custom icon, please do so (once) more. Sorry for the inconvenience.
804
- * Question #5 The 'Sticking & Floating' -> 'Where shall they float?' was storing the right value but showing the 'Top - Left' always
805
- * If the floating icons on the frontend had 'counts' enabled for them, the counts for the last row of the icons were being cut-off on the screen if the 'Bottom - Left' OR 'Bottom - Right' was chosen as the display position
806
-
807
- = 1.1.1.0 =
808
- * Following user suggestions we made it easier to remove the credit link (if previously activated by user - otherwise it doesn't display)
809
-
810
- = 1.1.0.9 =
811
- * Some servers don't display svg-images due to security issues, so we switched back to png
812
- * Removed the comment line which may be me causes the syntax error at the time of installation
813
-
814
- = 1.1.0.8 =
815
- * In specific cases some share-icons were missing, this is fixed now
816
- * Plugin sent error messages if user had developer mode active, this won't happen anymore
817
-
818
- = 1.1.0.7 =
819
- * 'Visit us' icons sometimes didn't get displayed in the backend, this is fixed now
820
- * Also the design of the 'Visit us'-icons on the front end has been improved
821
- * If the email-delivery option is used, emails now get sent out much faster (central server gets pinged)
822
- * Pop-up in some cases didn't get shown on inner pages, fixed now
823
- * Some responsive adjustments for mobile
824
- * Custom icons had some resizing issues, fixed now
825
-
826
- = 1.1.0.6 =
827
- * If 'Do you want to display icons at end of every post' is clicked there were some issues on mobile view, this is fixed now
828
- * 'Visit us'-icons in the tooltips were no vector-icons, which made them look fuzzy in some browsers, this is fixed now
829
-
830
- = 1.1.0.5 =
831
- * On certain pages sometimes the youtube icon didnt show, this is fixed now
832
- * Custom uploaded icons got a black background, this is fixed now
833
- * In the admin panel the plugin conflicted (in rare cases) with other plugins, this is fixed
834
- * Pop-ups sometimes didn't disappear automatically, fixed now
835
- * The tooltip for floating icons now gets displayed so that it is always visible
836
-
837
- = 1.1.0.4 =
838
- * Several changes done to optimize display on mobile & tablets
839
- * Issues with widget fixed (in rare cases the separating lines between widgets didnt get displayed correctly)
840
- * Deletion of headline for widget works now
841
- * Slight alignment issues of share- and like buttons at the end of blog posts corrected
842
-
843
- = 1.1.0.3 =
844
- * Tooltip from share-option sometimes appeared some other strange places on the site, this is fixed now
845
- * Extra checks added if user enters nonsense in the admin area
846
- * Links to our review site added (please please give 5 stars)
847
-
848
- = 1.1.0.2 =
849
- * In specific cases there were Javascript loading errors, that's fixed now
850
- * Moving from the icons to the tooltips made the tooltips disappear sometimes, now they are 'stickier'
851
- * In specific cases the facebook-icon was displayed very small in the tooltip, fixed now
852
-
853
- = 1.1.0.1 =
854
- * Corrected that when only the 'visit us' function is selected, no tooltip is displayed
855
-
856
- = 1.1 =
857
- * Email-icon didn't get displayed for all design sets (on the website), this is fixed now
858
- * Alignments of buttons in tooltips optimized
859
- * Updated readme.txt
860
-
861
- = 1.0 =
862
- * First release
863
-
864
- == Upgrade Notice ==
865
-
866
- = 2.4.0 =
 
 
 
 
867
  Please upgrade
1
+ === Social Media Share Buttons & Social Sharing Icons ===
2
+ Contributors: socialdude, socialtech
3
+ Tags: social media, share, buttons, social widget, icons, share icons, share buttons, sharing icons, sharing buttons, social share, sharing, social sharing
4
+ Requires at least: 3.5
5
+ Tested up to: 5.2.2
6
+ Stable tag: 2.4.1
7
+ License: GPLv2
8
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
+
10
+ Share buttons and share icons plugin for social media sharing on Facebook, Twitter, Instagram, Whatsapp, Pinterest etc.
11
+
12
+ == Description ==
13
+
14
+ Social media plugin which let's you add share icons for RSS, Email, Facebook, Twitter, LinkedIn, Pinterest, Instagram, Youtube, 'Share' (covering 200+ other social media platforms) and upload custom share icons of your choice.
15
+
16
+ This free plugin has a lot to offer. Even more can be found in the Premium Plugin, please watch this short video:
17
+
18
+ [vimeo https://vimeo.com/269140798]
19
+
20
+ See [all features of the Premium plugin](https://www.ultimatelysocial.com/usm-premium/).
21
+
22
+ The free social media plugin includes the following features:
23
+
24
+ - Pick from 16 different designs for your social media share icons
25
+ - Give several actions to one social media share icon (e.g. your facebook share icon can lead visitors to your Facebook page, and also give visitors the opportunity to like your page)
26
+ - Decide to give your social media icons an animation (e.g. automatic shuffling, mouse-over effects) to make your visitors aware of the share icons, increasing the chance that they follow/share your blog
27
+ - Make your social media icons 'float' or 'sticky'
28
+ - Allow visitors to subscribe to your blog by Email
29
+ - Add 'counts' to your social media buttons
30
+ - Decide to display a pop-up (on all or only on selected pages) asking people to follow/share you via your social media icons
31
+ - Decide to display sharing-buttons and social media icons at the end of every post
32
+ - Select from many other customization features for your socialmedia icons!
33
+
34
+ For GDPR compliance, please have a look at our [Social Media GDPR Compliance page](https://ultimatelysocial.com/gdpr/).
35
+
36
+ The social media plugin is very easy to use as it takes you through all the steps:
37
+
38
+ - Step 1: Choose which social media icons you want to display
39
+ - Step 2: Define what actions your social media icons should perform
40
+ - Step 3: Pick design & animation options for your social media icons
41
+ - Step 4: Add counts to your social media icons (optional)
42
+ - Step 5: Select from various other social share options, e.g. make your social media icons 'float'
43
+ - Step 6: Add sharing/linking icons next to each blog post (optional)
44
+ - Step 7: Add a customized pop-up asking people to follow or share (optional)
45
+ - Step 8: Add a subscription form on your site (optional)
46
+
47
+ In case of issues or questions please ask in the [Support forum](https://wordpress.org/support/plugin/ultimate-social-media-icons).
48
+
49
+ We hope you enjoy the free social media plugin!
50
+
51
+ = New Premium Plugin =
52
+
53
+ We released a Premium Plugin with many more exciting features:
54
+
55
+ - **Many more social networks** supported, including Snapchat share buttons, Whatsapp share buttons, Yummly share buttons, Phone button, Yelp share buttons, Soundcloud share buttons, Skype share buttons Flickr share buttons, Blogger share buttons, Reddit share buttons, Vimeo share buttons, Tumblr share buttons, Xing share buttons, Vkontakte share buttons (VK), Telegram share buttons, Amazon share buttons, Goodreads share buttons, Angies list share buttons, Steam share buttons, Twitch share buttons, Spotify share buttons, Odnoklassniki share buttons (OK), Buffer share buttons, Weibo share buttons, Pocket share buttons, Meneame share buttons, Frype share buttons, LiveJournal share buttons, Patreon share buttons, Dloky share buttons, Discord share buttons, Github share buttons, Wordpress buttons, Etsy share buttons, Better Business Bureau share buttons, Digg share buttons, Delicious share buttons, Print share buttons, and many other share buttons!
56
+ - **More design styles** to make your social share icons look really cool & matching the design of your website
57
+ - **Themed design styles**, e.g. if you have a website about cats you can pick from social media logos which look like cats etc.
58
+ - **Better social sharing and following features**, e.g. you can define the Tweet-texts better (e.g. pull the post titles into your Tweets automatically), let people follow you on Facebook directly without leaving your site etc.
59
+ - **Place the social icons on specific pages**, i.e. you can define on which pages the icons to the social media sites should not show
60
+ - **Position the social icons by anchor and margins**, i.e. you can define the margins where your share icons should be displayed (from top/bottom/left/right), and then have them floating, or stick, still visible when user scrolls down or not etc.
61
+ - **Optimized for mobile** - you can define separate selections for your social network icons for mobile
62
+ - **More functions for email icon**, such as Share (by email), Contact you, Link to a certain page etc.
63
+ - **Social media counters optimized** to encourage more social media sharing from your visitors
64
+ - **More pop up options** which contain your social media buttons, e.g. define a limit to how often the pop-up is shown to the same user, show pop-up only when people try to leave your website etc.
65
+ - **Friendly support** in case you're stuck
66
+ - **Many more settings and options** for your social media network icons
67
+
68
+ Have a look at the [Premium Plugin features](https://www.ultimatelysocial.com/usm-premium/)
69
+
70
+
71
+ == Installation ==
72
+ Extract the zip file and drop the contents into the wp-content/plugins/ directory of your WordPress installation. Then activate the plugin from the plugins page.
73
+
74
+ Then go to plugin settings page and follow the instructions. After you're done, go to the Widget area (Appearance >> Widget) and place the widget on your sidebar to display your social sharing icons on your blog.
75
+
76
+ Note: This plugin requires CURL to be activated/installed on your server (which should be the standard case), and a PHP version of 5.4 or above. If you don't have it, please contact your hosting provider or server admin.
77
+
78
+ == Frequently Asked Questions ==
79
+ = Please also check the more comprehensive FAQ on http://ultimatelysocial.com/faq =
80
+
81
+ .
82
+
83
+ = I face fundamental issues (the plugin doesn't load etc.) =
84
+
85
+ Please ensure that:
86
+
87
+ - You're using the latest version of the plugin(s)
88
+ - Your site is running on PHP 5.4 or above
89
+ - You have CURL activated (should be activated by default)
90
+
91
+ If you're not familiar with those please contact your hosting company or server admin.
92
+
93
+ Please check if you have browser extensions activated which may conflict with the plugin. Known culprits include:
94
+
95
+ - Open SEO Stats (Formerly: PageRank Status) in Chrome
96
+ - Adblock Plus in Chrome
97
+ - Vine in Chrome
98
+
99
+ Either de-activate those extensions or try it in a different browser.
100
+
101
+ If the plugin setting's area looks 'funny' after an upgrade then please clear your cache with String+F5 (PC) or Command+R (Mac).
102
+
103
+ If you get the error message “Are you sure you want to do this? / Please try again” when uploading the socialsharing plugin: Some servers may have a low limits with respect to permitted upload times. Please set the values in the “php.ini” file to:
104
+
105
+ max_execution_time 90
106
+ post_max_size 48M
107
+
108
+ If you don’t know how to do it, please contact your server support / hosting company for that. Tell them you need it for a social sharing plugin on WordPress which may take longer to upload.
109
+
110
+ If your issue is still not fixed after you’ve followed the steps above, we can provide support as part of our share to social Premium Plugin: https://www.ultimatelysocial.com/usm-premium/.
111
+
112
+ = I get error messages 'Error : 7', 'Error : 56', 'Error : 6' etc. =
113
+
114
+ Those point to a CURL-issue on your site. Please contact your server admin or your hosting company to resolve it.
115
+
116
+ The plugin requires CURL for the social share counts and other features.
117
+
118
+ = Social share icons don't show =
119
+
120
+ Please ensure you actually placed the social share buttons either as social widget (in your widget area) or as floating icons under question 5). The Premium Plugin makes placing the social icons especially easy and also allows you to place sticky social share icons on your site, define the placement of the social share icons by margins and many other options, see https://www.ultimatelysocial.com/usm-premium/.
121
+
122
+ If only some social share icons show, but not all, then please clear your cache, and check if you may have conflicting browser extensions (e.g. 'Disconnect'-app in Chrome). Also Ad-Blockers are known culprits, please switch them off temporarily to see if that is the reason.
123
+
124
+ If the social share icons still don't show then there's an issue with your template. Please contact the creator of your template for that.
125
+
126
+ If you are referring to specific social share icons not showing in the plugin itself (e.g. you're looking for a Whatsapp share icon, but it doesnt exist) please note that our Premium Plugin has many more social media share icons, see https://www.ultimatelysocial.com/usm-premium/
127
+
128
+ = Twitter social share counts are not displaying (anymore) =
129
+
130
+ Unfortunately, Twitter stopped providing any social share count. God knows why.
131
+
132
+ = Changes don't get saved / Deleted plugin but the social share icons still show =
133
+
134
+ Most likely you have the WP Cache plugin installed. Please de-activate and then re-activate it, then the social share icons should display again.
135
+
136
+ = Links when clicking on the social share icons don't work =
137
+
138
+ Please ensure you've entered the 'http://' at the beginning of the url (for *all* social networks). If the social share icons are not clickable at all there is most likely an issue with your template. This is especially the case if you've given your social share buttons several features, which should show a pop-up (tooltip) when you move over the social share icons.
139
+
140
+ = I cannot upload custom social share icons =
141
+
142
+ Most likely that's because you've set 'allow_url_fopen' to 'off'. Please turn it to 'on' (or ask your server admin to do so, he'll know what to do. Tell them you need it to upload custom share icons for a social media buttons plugin).
143
+
144
+ = My Youtube social share icon (direct follow) doesn't work =
145
+
146
+ Please ensure that you've selected the radio button 'Username' when you enter a youtube username, or 'Channel ID' when you entered a channel ID.
147
+
148
+ = Aligning the social share icons (centered, left- or right-aligned) doesn't work =
149
+
150
+ The alignment options under question 5 align the social share icons with respect to each other, not where they appear on the page. Our new Premium Plugin is the best social sharing plugin on the market, allowing you to define also many other social share icon alignments (e.g. within a widget, within shortcode etc.).
151
+
152
+ = Clicking on the RSS icon returns funny codes =
153
+
154
+ That's normal. RSS users will know what to do with it (i.e. copy & paste the url into their RSS readers).
155
+
156
+ = Facebook 'like'-count isn't correct =
157
+
158
+ When you 'like' something on your blog via facebook it likes the site you're currently on (e.g. your blog) and not your Facebook page.
159
+
160
+ The new Premium Plugin also allows to show the number of your Facebook page likes, see https://www.ultimatelysocial.com/usm-premium/.
161
+
162
+ = Sharing doesn't take the right text or picture =
163
+
164
+ We use the share codes from Facebook etc. and therefore don't have any influence over which text & pic Facebook decides to share.
165
+
166
+ Note that you can define an image as 'Featured Image' which tells Facebook etc. to share that one. You'll find this 'Featured Image' section in your blog's admin area where you can edit your blog post.
167
+
168
+ You can crosscheck which image Facebook will take by entering your url on https://developers.facebook.com/tools/debug/og/object/.
169
+
170
+ UPDATE: we made significant enhancements to the premium plugin, it now allows you to define the sharing pics and texts for your social share icons.
171
+
172
+ = The pop-up shows although I only gave my social share icon one function =
173
+
174
+ The pop-up only disappears if you've given your social share icons only a 'visit us'-function, otherwise (e.g. if you gave it 'Like' (on facebook) or 'Tweet' functions) a pop-up is still needed because the social share buttons for those are coming directly from the social media sites (e.g. Facebook, Twitter) and we don't have any influence over their design.
175
+
176
+ = I selected to display the social share icons after every post but they don't show =
177
+
178
+ The social share icons usually do show, however not on your blog page, but on your single posts pages. The Premium plugin (https://www.ultimatelysocial.com/usm-premium/) also allows to display the social share icons on your homepage.
179
+
180
+ = Plugin decreases my site's loading speed =
181
+
182
+ The plugin is one of the most optimized social media plugin in terms of impact on a site's loading speed (optimized code, compressed pictures etc.).
183
+
184
+ If you still experience loading speed issues, please note that:
185
+
186
+ - The more sharing- and invite- features you place on your site, the more external codes you load (i.e. from the social media sites; we just use their share code), therefore impacting loading speed. So to prevent this, give your social share icons only 'Visit us'-functionality rather than sharing-functionalities.
187
+
188
+ - We've programmed it so that the code for the social media icons is the one which loads lasts on your site, i.e. after all the other content has already been loaded. This means: even if there is a decrease in loading speed, it does not impact a user's experience because he sees your site as quickly as before, only the social media icons take a bit longer to load.
189
+
190
+ There might be also other issues on your site which cause a high loading speed (e.g. conflicts with our plugins or template issues). Please ask your template creator about that.
191
+
192
+ Also, if you've uploaded social media sharing icons not provided by the plugin itself (i.e. custom share icons) please ensure they are compressed as well.
193
+
194
+ = After moving from demo-server to live-server the follow/subscribe-link doesn't work anymore =
195
+
196
+ Please delete and install the plugin again.
197
+
198
+ If you already placed the code for a subscription form on your site, remove it again and take the new one from the new plugin installation.
199
+
200
+ = There are other issues when I activate the plugin or place the social share icons =
201
+
202
+ Please check the following:
203
+
204
+ The plugin requires that CURL is installed & activated on your server (which should be the standard case). If you don't have it, please contact your hosting provider.
205
+
206
+ Please ensure that you don't have any browser extension activated which may conflict with the plugin, esp. those which block certain content. Known culprits include the 'Disconnect' extension in Chrome or the 'Privacy Badger' extension in Firefox.
207
+
208
+ If issues persist most likely your theme has issues which makes it incompatible with our plugin. Please contact your template creator for that. As part of the Premium Plugin (https://www.ultimatelysocial.com/usm-premium/) we fix also theme issues, and provide support to ensure that your social media share buttons appear on your site (exactly where you want them).
209
+
210
+ = How can I see how many people decided to share or like my post? =
211
+
212
+ You can see this by activating the social share 'counts' on the front end (under question 4 in the USM plugin, question 5 in the USM+ plugin).
213
+
214
+ We cannot provide you this data in other ways as it's coming directly from the social media sites. One exception: if you like to know when people start to follow you by email, then you can get email alerts. For that, please claim your feed (see question above).
215
+
216
+ = How can I change the 'Please follow & like us :)'? =
217
+
218
+ You can change it in the Widget-area where you dropped the widget (with the social share icons) on the sidebar. Please click on it (on the sidebar), it will open the menu where you can change the text.
219
+
220
+ If you don't want to show any text, just enter a space (' ').
221
+
222
+ = Can I use a shortcode to place the social share icons? =
223
+
224
+ Yes, use [DISPLAY_ULTIMATE_SOCIAL_ICONS] to show the social share icons. You can place it into any editor.
225
+
226
+ Alternatively, you can place the following into your codes to show the share icons: <?php echo do_shortcode('[DISPLAY_ULTIMATE_SOCIAL_ICONS]'); ?>
227
+
228
+ In some cases there might be issues to display social media sharing buttons which you uploaded as custom share icons. In this case, we provide support as part of our premium plugin: https://www.ultimatelysocial.com/usm-premium/
229
+
230
+ = Can I get more options for the social share icons next to posts? =
231
+
232
+ Please use this plugin for that: https://www.ultimatelysocial.com/usm-premium/
233
+
234
+ = Can I also give the email-icon a 'mailto:' functionality? =
235
+
236
+ Yes, that is possible in our new social share plugin, the Premium Plugin: https://www.ultimatelysocial.com/usm-premium/
237
+
238
+ = Can I also display the social share icons vertically? =
239
+
240
+ Yes, that is possible in our new social sharing plugin, the Premium Plugin: https://www.ultimatelysocial.com/usm-premium/.
241
+
242
+ = How can I change the text on the 'visit us'-buttons? =
243
+
244
+ Use this plugin: https://www.ultimatelysocial.com/usm-premium/
245
+
246
+ = Can I deactivate the social share icons on mobile? =
247
+
248
+ Yes, you can disable the share icons under question 5. In our new Premium Plugin you can define different settings for mobile, see https://www.ultimatelysocial.com/usm-premium/. The best way to share social media! :)
249
+
250
+ = How can I use two instances of the plugin on my site? =
251
+
252
+ You cannot use the same plugin twice, however you can install both the USM as well as the Premiuem plugin (https://www.ultimatelysocial.com/usm-premium/). We've developed the code so that there are no conflicts and you can place the share icons in one way with one plugin, and select other share icons with the other plugin and place them differently.
253
+
254
+
255
+ == Screenshots ==
256
+
257
+ 1. After installing the plugin, you'll see this overview. You'll be taken through the easy-to-understand steps to configure your plugin
258
+
259
+ 2. As a first step you select which share icons you want to display on your website
260
+
261
+ 3. Then you'll define what the share icons should do (they can perform several actions, e.g. lead users to your facebook page, or allow them to share your content on their facebook page)
262
+
263
+ 4. You can pick from a wide range of share icon designs
264
+
265
+ 5. Here you can animate your social share icons (automatic shuffling, mouse-over effects etc.), to make visitors of your site aware that they can share, follow & like your site
266
+
267
+ 6. You can choose to display counts next to your social share icons (e.g. number of Twitter-followers)
268
+
269
+ 7. There are many more options to choose from
270
+
271
+ 8. You can also add social share icons at the end of every post
272
+
273
+ 9. ...or even display a pop-up (designed to your liking) which asks users to like & share your site
274
+
275
+
276
+ == Changelog ==
277
+ = 2.4.1 =
278
+ * Feedback system updated.
279
+ * Design changes in settings page.
280
+ * Moved below post options to Q3.
281
+
282
+ = 2.4.0 =
283
+ * Instagram generate token removed the deplicated scopes.
284
+ * Removed some PHP update Notices.
285
+ * Updated feed claiming apis.
286
+ * Updated Mouseover text removed.
287
+
288
+ = 2.3.9 =
289
+ * Corrected the jQuery admin area problem
290
+ * Solved the jQuery error for shortcode
291
+ * Solved feed claiming
292
+ * Option name in Q3 changed
293
+
294
+ = 2.3.8 =
295
+ * Fixed the text in theme banner.
296
+ * Fixed follow icon and subscription box when Curl is disabled.
297
+ * Fixed cURL errors.
298
+
299
+ = 2.3.7 =
300
+ * solved: Wrong link on icons when curl not installed.
301
+
302
+ = 2.3.6 =
303
+ * Solved: Updated Text changes.
304
+
305
+ = 2.3.5 =
306
+ * Solved: Updated Text changes.
307
+
308
+ = 2.3.4 =
309
+ * Solved: Updated Text changes.
310
+ * Solved: Updated link for email.
311
+
312
+ = 2.3.3 =
313
+ * Solved: Updated the email link and subscription action.
314
+
315
+ = 2.3.2 =
316
+ * Solved: Updated feedback system.
317
+
318
+ = 2.3.1 =
319
+ * Solved: Updated feedback system.
320
+
321
+ = 2.3.0 =
322
+ * Solved: Errors on the footer in dashboard corected.
323
+ * Solved: Updated logic for inclusion of external js.
324
+ * Solved: Some grametical errors.
325
+ * Solved: Updated feedback system.
326
+
327
+ = 2.2.9 =
328
+ * Solved: After post icons shown.
329
+
330
+ = 2.2.8 =
331
+ * Solved: Header already sent error on some servers.
332
+
333
+ = 2.2.7 =
334
+ * Solved: Updated feedback system to next version.
335
+ * Solved: Responsive Icons UI updated.
336
+
337
+ = 2.2.6 =
338
+
339
+ * New Feature: Responsive icons in free plugin.
340
+ * Solved: Icons not rendering on woocomerce product page.
341
+ * Solved: Twitter url changed to share from intent for better reliablity.
342
+ * Solved: Lots of little adjustments to improve the UI and functionality.
343
+ * Solved: Removed Google Plus.
344
+ * Solved: Stop loading unused external library code for faster load.
345
+ * Solved: Removed curl notice while activation.
346
+ * Solved: Fixed broken arrays and missing indexes.
347
+ * Solved: Updated feedback system to next version.
348
+
349
+ = 2.2.5 =
350
+ * Integrated feedback system
351
+
352
+ = 2.2.4 =
353
+ * Solved: Unserialized error corrected.
354
+ * Solved: All curl calls to wp_remote.
355
+ * Solved: Notices in front end solved.
356
+
357
+ = 2.2.3 =
358
+ * Solved: Footer Error solved.
359
+ * Solved: Removed most of the html errors.
360
+ * Solved: Less anoying sidebar.
361
+
362
+ = 2.2.2 =
363
+ * Solved: More icons upadated
364
+ * Solved: Icon backgrounds updated
365
+
366
+ = 2.2.1 =
367
+ * Solved: woocomerce conflict resolved
368
+ * Solved: alert in case on conflict.
369
+ * new Feature: More icons for free plugin
370
+
371
+ = 2.2.0 =
372
+ * Solved: Critical Security Patch.
373
+
374
+ = 2.1.9 =
375
+ * Solved: Security Patch.
376
+
377
+ = 2.1.8 =
378
+ * Solved: security update.
379
+
380
+ = 2.1.7 =
381
+ * Solved: save button not working.
382
+
383
+ = 2.1.6 =
384
+ * Solved: compatablity issue with older versions.
385
+
386
+ = 2.1.5 =
387
+ * Solved: google plus is deprecated
388
+ * Solved: Sf count not shown
389
+ * Solved: Sf subscribe form opens blank page.
390
+ * solved: decreased the manual intervestions of upgradation to premium.
391
+
392
+ = 2.1.4 =
393
+ * Solved: Changed theme check url to match bloginfo url.
394
+
395
+ = 2.1.3 =
396
+ * Solved: Email validation for Offline chat.
397
+ * Solved: Premium notification breaking the dashboard structure.
398
+ * Solved: changed option for linkedin count
399
+ * Solved: ajax_object conflict with themes.
400
+ * Solved: new keyword check from page title, page keywords and page description.
401
+
402
+ = 2.1.2 =
403
+ * Solved: Text optimized
404
+
405
+ = 2.1.1 =
406
+ * Solved: design changes for chat.
407
+ * Solved: unexpected charactor "[" error for php version 5.3.
408
+
409
+ = 2.1.0 =
410
+ * New Feature: Chat for site admin on our settings page.
411
+ * Solved: removed deprecated jQuery functions.
412
+ * Solved: Rectangle icon alignemnt problem on some themes solved.
413
+
414
+ = 2.0.9 =
415
+ * Banner for animation section in Question 4 added
416
+ * Different icon for mouseover section pointing in premium in Question 4 added
417
+ * Removed theme icon banner if no match
418
+
419
+ = 2.0.8 =
420
+ * Solved: Notification bar cannot be seen anymore
421
+ * Solved: cleared the float elements after notice.
422
+
423
+ = 2.0.7 =
424
+ * Round green follow button doesn't show - fixed
425
+ * Footer optimized
426
+
427
+ = 2.0.6 =
428
+ * Fixed bug that sometimes banner didn't disappear
429
+ * Links in review message updated
430
+
431
+ = 2.0.5 =
432
+ * Issue with click on icons on mobile fixed
433
+
434
+ = 2.0.4 =
435
+ * Corrected missing ? in shortcode
436
+
437
+ = 2.0.3 =
438
+ * Optimized texts
439
+
440
+ = 2.0.2 =
441
+ * Addthis removed due to GDPR
442
+ * New option to switch debugging mode on/off
443
+
444
+ = 2.0.1 =
445
+ * Issue of window.onscroll function overriding and breaking other plugins/themes fixed
446
+
447
+ = 2.0.0 =
448
+ * New question 3 to facilitate placement of icons
449
+
450
+ = 1.9.7 =
451
+ * Stopped setting cookies for pop-up selection "if user moved to end of page" as not needed in this case (relevant for GDPR compliance)
452
+
453
+ = 1.9.6 =
454
+ * Usage instructions updated
455
+
456
+ = 1.9.5 =
457
+ * Facebook like count fixed (previously only fixed for likes of user's website, not likes of Facebook page)
458
+
459
+ = 1.9.4 =
460
+ * Youtube count and direct follow issues fixed
461
+
462
+ = 1.9.3 =
463
+ * Facebook like count issue fixed
464
+ * Youtube saving issue when clicked on "Save all settings" - fixed now
465
+
466
+ = 1.9.2 =
467
+ * Instagram followers count issue fixed
468
+ * Twitter count issue fixed
469
+ * Facebook share count issue fixed
470
+
471
+ = 1.9.1 =
472
+ * Errors with "non-numeric value" fixed
473
+
474
+ = 1.8.9 =
475
+ * Error log files removed
476
+
477
+ = 1.8.7 =
478
+ * Updated description texts
479
+
480
+ = 1.8.6 =
481
+ * Made different placement options more visible
482
+
483
+ = 1.8.5 =
484
+ * Text changes
485
+
486
+ = 1.8.4 =
487
+ * Added referring opportunity
488
+
489
+ = 1.8.3 =
490
+ * Saving of links for custom icons sometimes didn't work. Fixed now.
491
+
492
+ = 1.8.2 =
493
+ * Links updated
494
+
495
+ = 1.8.1 =
496
+ * Themed icon notifications optimized
497
+
498
+ = 1.8.0 =
499
+ * CSS & JAVASCRIPT files are added in footer instead of header
500
+
501
+ = 1.7.9 =
502
+ * Banners added
503
+ * Spelling mistakes corrected
504
+
505
+ = 1.7.8 =
506
+ * Added more themed icon banners
507
+
508
+ = 1.7.6 =
509
+ * Comment to selecting of specific text and picture per page/post added
510
+
511
+ = 1.7.5 =
512
+ * Link to more premium icons added
513
+
514
+ = 1.7.4 =
515
+ * Better error messages in case of Curl errors
516
+ * Optimized review bar
517
+ * Code not remaining on site after de-installation
518
+
519
+ = 1.7.2 =
520
+ * More individualized offer for themed icons
521
+
522
+ = 1.7.1 =
523
+ * Claiming process optimized
524
+
525
+ = 1.6.9 =
526
+ * Counts for social buttons optimized and Instagram counter bug fixed
527
+ * Link to more social sharing buttons added
528
+
529
+ = 1.6.8 =
530
+ * Issue fixed that sometimes incorrect error-messages showed on front-end
531
+ * Credit link updated
532
+ * More icons added for pro-version
533
+ * SpecificFeeds adjusted for paid option
534
+ * De-installation will now clear database entirely
535
+ * Upgrade to pro-link renamed
536
+
537
+ = 1.6.6 =
538
+ * New option for tailor-made icons
539
+
540
+ = 1.6.5 =
541
+ * Activation/deactivation links optimized
542
+
543
+ = 1.6.4 =
544
+ * Links to additional features optimized
545
+
546
+ = 1.6.3 =
547
+ * Notification issues corrected
548
+
549
+ = 1.6.1 =
550
+ * Dismissal of notification lead to plugin setting's page previously, this is corrected now
551
+
552
+ = 1.5.8 =
553
+ * Educational comments added
554
+
555
+ = 1.5.7 =
556
+ * Conflicts with other plugins resolved
557
+
558
+ = 1.5.6 =
559
+ * Instructions for trouble shooting optimized
560
+
561
+ = 1.5.5 =
562
+ * Facebook icon leading to empty pages (in specific cases) fixed
563
+
564
+ = 1.5.4 =
565
+ * Twitter sharing text issues with forwarded slashes fixed
566
+ * Links to review sites adjusted following Wordpress changes in review section
567
+
568
+ = 1.5.3 =
569
+ * Missing counts for email follow option fixed (when there are no subscribers yet)
570
+ * Extra explanation text added
571
+
572
+ = 1.5.2 =
573
+ * Corner case vulnerability fixed
574
+
575
+ = 1.5.1 =
576
+ * Claiming process simplified
577
+ * Mouse-over for custom icons sometimes showed wrong text, corrected now
578
+
579
+ = 1.4.8 =
580
+ * Size of custom icons corrected
581
+ * Cute G+ icon too small before, corrected now
582
+ * Better description how to get G+ API key added
583
+ * Unsupported "live" function in jquery fixed
584
+
585
+ = 1.4.7 =
586
+ * Icons sometimes on top of each other - fixed
587
+
588
+ = 1.4.5 =
589
+ * E-Notice errors fixed
590
+ * Facebook share button added for before/after posts
591
+
592
+ = 1.4.4 =
593
+ * Errors fixed with color code sanitizing function
594
+
595
+ = 1.4.3 =
596
+ * Removed the js files from plugin and using the ones provided by WP now
597
+
598
+ = 1.4.2 =
599
+ * POST calls optimized (sanitize, escape, validate)
600
+
601
+ = 1.4.1 =
602
+ * Removed feedback option
603
+ * Tags changed
604
+
605
+ = 1.3.9 =
606
+ * Added Pinterest button for rectangle icons after/before posts
607
+ * If user has given an icon several functions, the tooltip appears as before, however if user clicks on the main icon then it will now also perform an action, i.e. the 'visit us'-function
608
+
609
+ = 1.3.8 =
610
+ * Review request changed
611
+
612
+ = 1.3.7 =
613
+ * Claiming links corrected
614
+ * Icons don't have any mouseover-effects (e.g. fade in) by default anymore
615
+
616
+ = 1.3.6 =
617
+ * Overkill declaration in the CSS fixed
618
+ * Custom icons can now have mailto:-functionality
619
+ * jQuery UI issues fixed
620
+ * Rectangle G+ icon now shown as last one as it takes more space (looks better)
621
+ * Comment added that partner plugin https://wordpress.org/plugins/ultimate-social-media-plus/ now allows buttons in various languages
622
+
623
+ = 1.3.5 =
624
+ * jQuery issues/conflicts fixed
625
+ * Placing icons on blog homepage had issues with counts, fixed now
626
+ * Script issues fixed
627
+ * Text added on plugin setting's page for easier understanding
628
+ * Issue that dashboard sometimes doesn't load fixed
629
+ * Instagram thin-icon issue fixed (misspelled, therefore didn't show)
630
+
631
+ = 1.3.4 =
632
+ * Facebook changed their API - please upgrade if you want Facebook sharing on mobile to work properly on your site!
633
+
634
+ = 1.3.3 =
635
+ * Feed claiming optimized
636
+ * New 'Visit us'-icon for Twitter added which matches the new Twitter-design
637
+ * PNG-file error for Houzz icon corrected
638
+ * Incorrect G+ icon replaced
639
+ * Error message for sites where subscription form doesn't work added
640
+ * Extra comments added how to claim a feed and several other texts optimized
641
+
642
+ = 1.3.2 =
643
+ * Feed claiming optimized
644
+
645
+ = 1.3.1 =
646
+ * Shortpixel link fixed
647
+
648
+ = 1.3.0 =
649
+ * Feed claiming bug fixed
650
+
651
+ = 1.2.9 =
652
+ * New G+ button updated
653
+ * Quicker claiming of feed possible
654
+ * Comments to share-button added
655
+ * Credit to shortpixel added
656
+
657
+ = 1.2.8 =
658
+ * New feature: Users can now decide where exactly the floating icons will display
659
+ * Internal links corrected
660
+ * Fixed: Targets only labels within the social icons div.
661
+ * Subscriber counts fixed
662
+ * Apostrophe issues fixed
663
+ * Conflicts with Yoast SEO plugin resolved
664
+ * PHP errors fixed
665
+
666
+ = 1.2.7 =
667
+ * Count issues fixed - please upgrade!
668
+ * Style constructor updated to PHP 5
669
+ * Text adjustments in admin area
670
+
671
+ = 1.2.6 =
672
+ * (Minor) compatibility issues with Wordpress 4.3. fixed
673
+
674
+ = 1.2.5 =
675
+ * Updating process fixed
676
+
677
+ = 1.2.4 =
678
+ * New question 8 added: you can now also add a subscription form to your site
679
+
680
+ = 1.2.3 =
681
+ * More explanations added how to fix if counts don't work
682
+ * Icon files are compressed now for faster loading - thank you ShortPixel.com!
683
+ * A typo in the code threw an error message in certain cases, this is fixed now
684
+
685
+ = 1.2.2 =
686
+ * jQuery issues fixed
687
+ * Vulnerability issues fixed
688
+ * Twitter-button didn't get displayed in full sometimes, this is fixed now
689
+ * CSS issues (occurred on some templates) fixed
690
+ * Facebook updated API (so counts didn't get displayed correctly anymore), we updated the plugin accordingly
691
+
692
+ = 1.2.1 =
693
+ * Template-specific issues fixed
694
+ * Layout in admin-area optimized
695
+ * Sometimes title didn't get rendered correctly, this is fixed now
696
+ * Youtube API changes also updated in plugin
697
+ * Outdated (and vulnerable) JS library updated
698
+ * New options for placing icons after every post (under question 6)
699
+
700
+ = 1.2.0 =
701
+ * Links with '@' in the url (e.g. as in Flickr-links) now get recognized as well
702
+ * Alignment issues of icons in tooltip fixed
703
+ * Layout optimizations in plugin area
704
+ * Users can now select to have the number of likes of their facebook page displayed as counts of the facebook icon on their blogs
705
+ * Typos in admin area corrected
706
+
707
+ = 1.1.1.12 =
708
+ * Vulnerabilities (AJAX) fixed
709
+ * OG-issues (caused in conjunction with other plugins) fixed
710
+
711
+ = 1.1.1.11 =
712
+ * Conflicts with Yoast SEO plugin sorted
713
+ * Performance optimized
714
+ * Facebook sharing text issues fixed
715
+ * Sometimes facebook share count didn't increase despite liking it, this should be fixed now (to be observed)
716
+ * When sharing from a Facebook business page it returned errors, this should be fixed now (to be observed)
717
+ * Share-box only displayed partly sometimes, fixed now
718
+ * Template CSS conflicts solved in the plugin
719
+ * Adding of unwanted spans fixed
720
+
721
+ = 1.1.1.10 =
722
+ * OG-issues fixed
723
+ * Text which gets shared sometimes didn't contain spaces, fixed now
724
+ * Plugin name in php file shortened
725
+ * More explanation texts added in admin area
726
+ * Facebook share window sometimes only got displayed partially, fixed now
727
+ * Other facebook share issues fixed
728
+ * Template CSS issues causing icons to be displayed not in one straight horizontal line fixed
729
+ * In some cases facebook counts didn't increase if liked, this should be fixed now
730
+ * Tested for up to Wordpress version 4.2.1.
731
+
732
+ = 1.1.1.9 =
733
+ * Issues with custom icon upload & custom icon removal fixed
734
+ * Box asking for review didn't disappear in some cases, fixed now
735
+ * Some design issues with some CSS for icons after every post, fixed now
736
+ * Changes in text / guide in plugin
737
+ * Conflicts with YOAST SEO plugin sorted
738
+ * Conflicts with ADD MEDIA button and ADD LINK sorted
739
+ * In some cases activating the icons after every post the content disappeared, this is fixed now
740
+ * New option to center icons after posts
741
+ * In some cases if no widget was placed it said 'Kindly go to settings page and check the option 'show them via widget'' got displayed on the blog, this is fixed now
742
+ * G+ window disappeared sometimes after moving over it, fixed now
743
+ * LinkedIn icon disappeared after moving over it a few times, fixed now
744
+ * Several other CSS issues fixed
745
+ * Sometimes tooltips didn't appear, fixed now
746
+ * When plugin is activated some toggle functionality stopped working, fixed now
747
+ * Click on icons after posts now shares the post, not the blog page
748
+ * Several little design enhancements
749
+ * When user selected that icons should show floating in the bottom right they floated in the center right, fixed now
750
+ * Issues with Youtube direct follow fixed
751
+ * Number of Instagram followers not always got pulled correctly, fixed now
752
+ * When site loaded the widget sometimes overlapped with others, fixed now
753
+
754
+ = 1.1.1.8 =
755
+ * Plugin's menu button now has less aggressive colors
756
+ * Sometimes sharing via facebook returned error messages, this is fixed now
757
+ * Conflicts with WooTheme Whitelight resolved
758
+ * Occasional problems with https-sites previously, now compatibile
759
+
760
+ = 1.1.1.7 =
761
+ * The 'counts' were not always correct, fixed now
762
+ * Conflicts with page editor resolved
763
+ * Last plugin update fixed Youtube points, however the 'channel' was as default, set back to 'username'
764
+ * Mouseover-text for social icons now correct
765
+ * Some layout adjustment in the admin area (menu-button will also be adjusted in next release)
766
+ * Setting order of icons sometimes didnt work properly when custom icons got uploaded, this is fixed now
767
+
768
+ = 1.1.1.6 =
769
+ * jQuery updated, now most conflicts with other plugins should be resolved
770
+
771
+ = 1.1.1.5 =
772
+ * Conflicts with several plugins sorted
773
+ * Icons can now be disabled on mobile
774
+ * Renaming of 'Youtube Channel' to 'Username' to avoid confusion
775
+ * On some templates there were alignment issues of the icons, this is fixed
776
+ * Menu button sub-menu removed (wasn't really necessary)
777
+ * Lightbox in admin area for custom icon upload shortened (was too large)
778
+ * Tags for all icons defined (for SEO purposes)
779
+
780
+ = 1.1.1.4 =
781
+ * If given only a 'visit us'-function for the Twitter-icon, the is no tooltip anymore (like for the other icons)
782
+ * Sharing sometimes pulled an incorrect image, fixed now
783
+ * Pop-up now also has an 'x' in the top right corner for people to close
784
+ * Sometimes icons overlapped, this is fixed now
785
+ * Several issues fixed when users put shortcode into the header
786
+ * Sometimes our request to ask users for feedback got displayed too early, this is fixed now
787
+ * Some youtube accounts don't have a username, but only a channel. To allow users to directly to subscribe to your youtube channel the plugin required a User ID, now a channel is possible too
788
+ * Several conflicts with other plugins resolved
789
+ * Some CSS issues fixed
790
+ * Steps 1., 2., 3. in the guide how to upload a custom icon were sometimes missing, this is fixed now
791
+ * Title removed now when using shortcodes
792
+ * Some error messages in developer tools not showing up anymore
793
+
794
+ = 1.1.1.3 =
795
+ * Several CSS issues fixed
796
+
797
+ = 1.1.1.2 =
798
+ * Shortcode now available too, so that you can place the icons wherever you want: Insert [DISPLAY_ULTIMATE_SOCIAL_ICONS]
799
+ * 'Visit us'-option now also available for Twitter-users
800
+ * Description added for people helping to find their LinkedIn-ID
801
+ * Description added for people helping to generate their API-keys for Twitter, LInkedIn and G+ to display their counts automatically
802
+ * Design of pop-up for upload of custom icons changed, to better explain required steps
803
+ * 'Icons per row' didn't work properly in specific cases, fixed now
804
+ * If user displayed counts for the icons, and picked the option 'floating' and 'bottom', the counts were sometimes not displayed because they moved too far down. This is fixed now.
805
+
806
+ = 1.1.1.1 =
807
+ * Previously custom icons got deleted if plugin was upgraded. This is fixed *from now on*. If you previously uploaded a custom icon, please do so (once) more. Sorry for the inconvenience.
808
+ * Question #5 The 'Sticking & Floating' -> 'Where shall they float?' was storing the right value but showing the 'Top - Left' always
809
+ * If the floating icons on the frontend had 'counts' enabled for them, the counts for the last row of the icons were being cut-off on the screen if the 'Bottom - Left' OR 'Bottom - Right' was chosen as the display position
810
+
811
+ = 1.1.1.0 =
812
+ * Following user suggestions we made it easier to remove the credit link (if previously activated by user - otherwise it doesn't display)
813
+
814
+ = 1.1.0.9 =
815
+ * Some servers don't display svg-images due to security issues, so we switched back to png
816
+ * Removed the comment line which may be me causes the syntax error at the time of installation
817
+
818
+ = 1.1.0.8 =
819
+ * In specific cases some share-icons were missing, this is fixed now
820
+ * Plugin sent error messages if user had developer mode active, this won't happen anymore
821
+
822
+ = 1.1.0.7 =
823
+ * 'Visit us' icons sometimes didn't get displayed in the backend, this is fixed now
824
+ * Also the design of the 'Visit us'-icons on the front end has been improved
825
+ * If the email-delivery option is used, emails now get sent out much faster (central server gets pinged)
826
+ * Pop-up in some cases didn't get shown on inner pages, fixed now
827
+ * Some responsive adjustments for mobile
828
+ * Custom icons had some resizing issues, fixed now
829
+
830
+ = 1.1.0.6 =
831
+ * If 'Do you want to display icons at end of every post' is clicked there were some issues on mobile view, this is fixed now
832
+ * 'Visit us'-icons in the tooltips were no vector-icons, which made them look fuzzy in some browsers, this is fixed now
833
+
834
+ = 1.1.0.5 =
835
+ * On certain pages sometimes the youtube icon didnt show, this is fixed now
836
+ * Custom uploaded icons got a black background, this is fixed now
837
+ * In the admin panel the plugin conflicted (in rare cases) with other plugins, this is fixed
838
+ * Pop-ups sometimes didn't disappear automatically, fixed now
839
+ * The tooltip for floating icons now gets displayed so that it is always visible
840
+
841
+ = 1.1.0.4 =
842
+ * Several changes done to optimize display on mobile & tablets
843
+ * Issues with widget fixed (in rare cases the separating lines between widgets didnt get displayed correctly)
844
+ * Deletion of headline for widget works now
845
+ * Slight alignment issues of share- and like buttons at the end of blog posts corrected
846
+
847
+ = 1.1.0.3 =
848
+ * Tooltip from share-option sometimes appeared some other strange places on the site, this is fixed now
849
+ * Extra checks added if user enters nonsense in the admin area
850
+ * Links to our review site added (please please give 5 stars)
851
+
852
+ = 1.1.0.2 =
853
+ * In specific cases there were Javascript loading errors, that's fixed now
854
+ * Moving from the icons to the tooltips made the tooltips disappear sometimes, now they are 'stickier'
855
+ * In specific cases the facebook-icon was displayed very small in the tooltip, fixed now
856
+
857
+ = 1.1.0.1 =
858
+ * Corrected that when only the 'visit us' function is selected, no tooltip is displayed
859
+
860
+ = 1.1 =
861
+ * Email-icon didn't get displayed for all design sets (on the website), this is fixed now
862
+ * Alignments of buttons in tooltips optimized
863
+ * Updated readme.txt
864
+
865
+ = 1.0 =
866
+ * First release
867
+
868
+ == Upgrade Notice ==
869
+
870
+ = 2.4.1 =
871
  Please upgrade
ultimate_social_media_icons.php CHANGED
@@ -6,7 +6,7 @@ Description: Easy to use and 100% FREE social media plugin which adds social med
6
 
7
  Author: UltimatelySocial
8
  Author URI: http://ultimatelysocial.com
9
- Version: 2.4.0
10
  License: GPLv2 or later
11
  */
12
  require_once 'analyst/main.php';
@@ -88,7 +88,7 @@ register_deactivation_hook(__FILE__, 'sfsi_deactivate_plugin');
88
 
89
  register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
90
 
91
- if (!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 2.39) {
92
 
93
  add_action("init", "sfsi_update_plugin");
94
  }
6
 
7
  Author: UltimatelySocial
8
  Author URI: http://ultimatelysocial.com
9
+ Version: 2.4.1
10
  License: GPLv2 or later
11
  */
12
  require_once 'analyst/main.php';
88
 
89
  register_uninstall_hook(__FILE__, 'sfsi_Unistall_plugin');
90
 
91
+ if (!get_option('sfsi_pluginVersion') || get_option('sfsi_pluginVersion') < 2.41) {
92
 
93
  add_action("init", "sfsi_update_plugin");
94
  }
views/sfsi_option_view6.php CHANGED
@@ -1,498 +1,525 @@
1
- <?php
2
- /* unserialize all saved option for section 6 options */
3
-
4
- $option6 = unserialize(get_option('sfsi_section6_options', false));
5
-
6
- /**
7
-
8
- * Sanitize, escape and validate values
9
-
10
- */
11
-
12
- $option6['sfsi_show_Onposts'] = (isset($option6['sfsi_show_Onposts'])) ? sanitize_text_field($option6['sfsi_show_Onposts']) : 'no';
13
-
14
- $option6['sfsi_show_Onbottom'] = (isset($option6['sfsi_show_Onbottom'])) ? sanitize_text_field($option6['sfsi_show_Onbottom']) : '';
15
-
16
- $option6['sfsi_icons_postPositon'] = (isset($option6['sfsi_icons_postPositon'])) ? sanitize_text_field($option6['sfsi_icons_postPositon']) : '';
17
-
18
- $option6['sfsi_icons_alignment'] = (isset($option6['sfsi_icons_alignment'])) ? sanitize_text_field($option6['sfsi_icons_alignment']) : '';
19
-
20
- $option6['sfsi_rss_countsDisplay'] = (isset($option6['sfsi_rss_countsDisplay'])) ? sanitize_text_field($option6['sfsi_rss_countsDisplay']) : '';
21
-
22
- $option6['sfsi_textBefor_icons'] = (isset($option6['sfsi_textBefor_icons'])) ? sanitize_text_field($option6['sfsi_textBefor_icons']) : '';
23
-
24
- $option6['sfsi_icons_DisplayCounts'] = (isset($option6['sfsi_icons_DisplayCounts'])) ? sanitize_text_field($option6['sfsi_icons_DisplayCounts']) : '';
25
-
26
- $option6['sfsi_rectsub'] = (isset($option6['sfsi_rectsub'])) ? sanitize_text_field($option6['sfsi_rectsub']) : '';
27
-
28
- $option6['sfsi_rectfb'] = (isset($option6['sfsi_rectfb'])) ? sanitize_text_field($option6['sfsi_rectfb']) : '';
29
-
30
- $option6['sfsi_rectshr'] = (isset($option6['sfsi_rectshr'])) ? sanitize_text_field($option6['sfsi_rectshr']) : '';
31
-
32
- $option6['sfsi_recttwtr'] = (isset($option6['sfsi_recttwtr'])) ? sanitize_text_field($option6['sfsi_recttwtr']) : '';
33
-
34
- $option6['sfsi_rectpinit'] = (isset($option6['sfsi_rectpinit'])) ? sanitize_text_field($option6['sfsi_rectpinit']) : '';
35
-
36
- $option6['sfsi_rectfbshare'] = (isset($option6['sfsi_rectfbshare'])) ? sanitize_text_field($option6['sfsi_rectfbshare']) : '';
37
-
38
- $option6['sfsi_display_button_type'] = (isset($option6['sfsi_display_button_type']))
39
- ? sanitize_text_field($option6['sfsi_display_button_type'])
40
- : '';
41
- $option6['sfsi_show_premium_placement_box'] = (isset($option6['sfsi_show_premium_placement_box']))
42
- ? sanitize_text_field($option6['sfsi_show_premium_placement_box'])
43
- : 'yes';
44
- $option6['sfsi_responsive_icons_end_post'] = (isset($option6['sfsi_responsive_icons_end_post']))
45
- ? sanitize_text_field($option6['sfsi_responsive_icons_end_post'])
46
- : 'no';
47
- $option6['sfsi_share_count'] = (isset($option6['sfsi_share_count']))
48
- ? sanitize_text_field($option6['sfsi_share_count'])
49
- : 'no';
50
-
51
- $sfsi_responsive_icons_default = array(
52
- "default_icons" => array(
53
- "facebook" => array("active" => "yes", "text" => "Share on Facebook", "url" => ""),
54
- "Twitter" => array("active" => "yes", "text" => "Tweet", "url" => ""),
55
- "Follow" => array("active" => "yes", "text" => "Follow us", "url" => ""),
56
- ),
57
- "custom_icons" => array(),
58
- "settings" => array(
59
- "icon_size" => "Medium",
60
- "icon_width_type" => "Fully responsive",
61
- "icon_width_size" => 240,
62
- "edge_type" => "Round",
63
- "edge_radius" => 5,
64
- "style" => "Gradient",
65
- "margin" => 10,
66
- "text_align" => "Centered",
67
- "show_count" => "no",
68
- "counter_color" => "#aaaaaa",
69
- "counter_bg_color" => "#fff",
70
- "share_count_text" => "SHARES"
71
- )
72
- );
73
- $sfsi_responsive_icons = (isset($option6["sfsi_responsive_icons"]) ? $option6["sfsi_responsive_icons"] : $sfsi_responsive_icons_default);
74
- if (!isset($option6['sfsi_rectsub'])) {
75
- $option6['sfsi_rectsub'] = 'no';
76
- }
77
-
78
- if (!isset($option6['sfsi_rectfb'])) {
79
- $option6['sfsi_rectfb'] = 'yes';
80
- }
81
-
82
- if (!isset($option6['sfsi_recttwtr'])) {
83
- $option6['sfsi_recttwtr'] = 'no';
84
- }
85
-
86
- if (!isset($option6['sfsi_rectpinit'])) {
87
- $option6['sfsi_rectpinit'] = 'no';
88
- }
89
-
90
- if (!isset($option6['sfsi_rectfbshare'])) {
91
- $option6['sfsi_rectfbshare'] = 'no';
92
- }
93
- ?>
94
- <!-- Section 6 "Do you want to display icons at the end of every post?" main div Start -->
95
-
96
- <div class="tab6">
97
- <ul class="sfsi_icn_listing8">
98
-
99
- <li class="sfsibeforeafterpostselector">
100
- <div class="radio_section tb_4_ck"></div>
101
- <div class="sfsi_right_info">
102
- <ul class="sfsi_tab_3_icns sfsi_shwthmbfraftr" style="margin:0">
103
- <li onclick="sfsi_togglbtmsection('sfsi_toggleonlystndrshrng, .sfsi_responsive_hide', 'sfsi_toggleonlyrspvshrng, .sfsi_responsive_show', this);" class="clckbltglcls sfsi_border_left_0">
104
- <input name="sfsi_display_button_type" <?php echo ($option6['sfsi_display_button_type'] == 'standard_buttons') ? 'checked="true"' : ''; ?> type="radio" value="standard_buttons" class="styled" />
105
- <label class="labelhdng4">
106
- Original icons
107
- </label>
108
- </li>
109
- <li onclick="sfsi_togglbtmsection('sfsi_toggleonlyrspvshrng, .sfsi_responsive_show', 'sfsi_toggleonlystndrshrng, .sfsi_responsive_hide', this);" class="clckbltglcls sfsi_border_left_0">
110
- <input name="sfsi_display_button_type" <?php echo ($option6['sfsi_display_button_type'] == 'responsive_button') ? 'checked="true"' : ''; ?> type="radio" value="responsive_button" class="styled" />
111
- <label class="labelhdng4">
112
- Responsive icons
113
- </label>
114
- </li>
115
- <?php if ($option6['sfsi_display_button_type'] == 'standard_buttons') : $display = "display:block";
116
- else : $display = "display:none";
117
- endif; ?>
118
- <li class="sfsi_toggleonlystndrshrng sfsi_border_left_0" style="<?php echo $display; ?>">
119
- <div class="radiodisplaysection" style="<?php echo $display; ?>">
120
-
121
- <p class="cstmdisplaysharingtxt cstmdisextrpdng">
122
- The selections you made so far were to display the subscriptions/ social media icons for your site in general (in a widget on the sidebar). You can also display icons at the end of every post, encouraging users to subscribe/like/share after they’ve read it. The following buttons will be added:
123
- </p>
124
-
125
- <!-- icons example section -->
126
- <div class="social_icon_like1 cstmdsplyulwpr sfsi_center">
127
-
128
- <ul>
129
- <li>
130
- <div class="radio_section tb_4_ck"><input name="sfsi_rectsub" <?php echo ($option6['sfsi_rectsub'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_rectsub" type="checkbox" value="yes" class="styled" /></div>
131
-
132
- <a href="#" title="Subscribe Follow" class="cstmdsplsub">
133
- <img src="<?php echo SFSI_PLUGURL; ?>images/follow_subscribe.png" alt="Subscribe Follow" />
134
- </a>
135
- </li>
136
- <li>
137
- <div class="radio_section tb_4_ck"><input name="sfsi_rectfb" <?php echo ($option6['sfsi_rectfb'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_rectfb" type="checkbox" value="yes" class="styled" /></div>
138
-
139
- <a href="#" title="Facebook Like">
140
- <img src="<?php echo SFSI_PLUGURL; ?>images/like.jpg" alt="Facebook Like" />
141
- </a>
142
- </li>
143
- <li>
144
- <div class="radio_section tb_4_ck"><input name="sfsi_rectfbshare" <?php echo ($option6['sfsi_rectfbshare'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_rectfbshare" type="checkbox" value="yes" class="styled" /></div>
145
- <a href="#" title="Facebook Share">
146
- <img src="<?php echo SFSI_PLUGURL; ?>images/fbshare.png" alt="Facebook Share" />
147
- </a>
148
- </li>
149
-
150
- <li>
151
-
152
- <div class="radio_section tb_4_ck"><input name="sfsi_recttwtr" <?php echo ($option6['sfsi_recttwtr'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_recttwtr" type="checkbox" value="yes" class="styled" /></div>
153
-
154
- <a href="#" title="twitter" class="cstmdspltwtr">
155
-
156
- <img src="<?php echo SFSI_PLUGURL; ?>images/twiiter.png" alt="Twitter like" />
157
- </a>
158
-
159
- </li>
160
-
161
- <li>
162
-
163
- <div class="radio_section tb_4_ck"><input name="sfsi_rectpinit" <?php echo ($option6['sfsi_rectpinit'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_rectpinit" type="checkbox" value="yes" class="styled" /></div>
164
-
165
- <a href="#" title="Pin It">
166
- <img src="<?php echo SFSI_PLUGURL; ?>images/pinit.png" alt="Pin It" />
167
- </a>
168
- </li>
169
- </ul>
170
- </div><!-- icons position section -->
171
-
172
- <p class="clear">Those are usually all you need: </p>
173
-
174
- <ul class="usually">
175
- <li>1. The follow-icon ensures that your visitors subscribe to your newsletter</li>
176
- <li>2. Facebook is No.1 in «liking», so it’s a must have</li>
177
- <li>3. The Tweet-button allows quick tweeting of your article</li>
178
- <li></li>
179
- <li></li>
180
- </ul>
181
- <?php if ($option6['sfsi_show_premium_placement_box'] == 'yes') { ?>
182
- <p class="sfsi_prem_plu_desc ">
183
- <b>New: </b>We also added a Linkedin share-icon in the Premium Plugin. <a class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" style="border-bottom: 1px solid #12a252;color: #12a252 !important;cursor:pointer;" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usm_settings_page&utm_campaign=linkedin_icon&utm_medium=banner" class="sfsi_font_inherit" style="color: #12a252 !important" target="_blank"> or learn more</a>
184
- </p>
185
- <?php } ?>
186
- <div class="options">
187
- <label class="heading-label" style="width:auto!important;margin-top: 11px;margin-right: 11px;">
188
- <b>So: do you want to display those at the end of every post?</b>
189
- </label>
190
- <ul style="display:flex">
191
- <li style="min-width: 200px">
192
- <input name="sfsi_show_Onposts" <?php echo ($option6['sfsi_show_Onposts'] == 'yes') ? 'checked="true"' : ''; ?> type="radio" value="yes" class="styled" />
193
- <label class="labelhdng4" style="width: auto;">
194
- Yes
195
- </label>
196
- </li>
197
- <li>
198
- <input name="sfsi_show_Onposts" <?php echo ($option6['sfsi_show_Onposts'] == 'no') ? 'checked="true"' : ''; ?> type="radio" value="no" class="styled" />
199
- <label class="labelhdng4" style="width: auto;">
200
- No
201
- </label>
202
- </li>
203
-
204
- </div>
205
- <div class="row PostsSettings_section">
206
-
207
- <h4>Options:</h4>
208
-
209
- <div class="options">
210
-
211
- <label class="first">Text to appear before the sharing icons:</label><input name="sfsi_textBefor_icons" type="text" value="<?php echo ($option6['sfsi_textBefor_icons'] != '') ? $option6['sfsi_textBefor_icons'] : ''; ?>" />
212
-
213
- </div>
214
-
215
- <!-- by developer - 28-05-2019 -->
216
-
217
- <div class="options">
218
- <p><b>New:</b> In the Premium Plugin you can choose to display the text before the sharing icons in a font of your choice. You can also define the<b> font size, type</b>, and the <b>margins below/above the icons</b>. <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=more_placement_options&utm_medium=banner" target="_blank" style="color:#00a0d2 !important; text-decoration: none !important;">Check it out.</a></p>
219
- </div>
220
-
221
- <!-- end -->
222
- <div class="options">
223
- <label>Alignment of share icons: </label>
224
- <div class="field"><select name="sfsi_icons_alignment" id="sfsi_icons_alignment" class="styled">
225
- <option value="left" <?php echo ($option6['sfsi_icons_alignment'] == 'left') ? 'selected="selected"' : ''; ?>>Left</option>
226
- <!--<option value="center" <?php //echo ($option6['sfsi_icons_alignment']=='center') ? 'selected="selected"' : '' ;
227
- ?>>Center</option>-->
228
- <option value="right" <?php echo ($option6['sfsi_icons_alignment'] == 'right') ? 'selected="selected"' : ''; ?>>Right</option>
229
- </select>
230
- </div>
231
- </div>
232
- <div class="options">
233
-
234
- <label>Do you want to display the counts?</label>
235
- <div class="field"><select name="sfsi_icons_DisplayCounts" id="sfsi_icons_DisplayCounts" class="styled">
236
- <option value="yes" <?php echo ($option6['sfsi_icons_DisplayCounts'] == 'yes') ? 'selected="true"' : ''; ?>>YES</option>
237
- <option value="no" <?php echo ($option6['sfsi_icons_DisplayCounts'] == 'no') ? 'selected="true"' : ''; ?>>NO</option>
238
- </select>
239
- </div>
240
- </div>
241
-
242
- </div>
243
- <!-- by developer - 28-5-2019 -->
244
-
245
- <div class="sfsi_new_prmium_follw">
246
- <p><b>New:</b> In our Premium Plugin you have many more placement options, e.g. place the icons you selected under question 1, place them also on your homepage (instead of only post’s pages), place them before posts (instead of only after posts) etc. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">See all features</a><!-- <a href="https://www.ultimatelysocial.com/usm-premium/?https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=more_placement_options&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a> -->
247
- </p>
248
- </div>
249
- </div>
250
- </li>
251
- <?php if ($option6['sfsi_display_button_type'] == 'responsive_button') : $display = "display:block";
252
- else : $display = "display:none";
253
- endif; ?>
254
- <li class="sfsi_toggleonlyrspvshrng" style="<?php echo $display; ?>">
255
- <label style="width: 80%;width:calc( 100% - 102px );font-family: helveticaregular;font-size: 18px;color: #5c6267;margin: 10px 0px;">These are responsive & independent from the icons you selected elsewhere in the plugin. Preview:</label>
256
- <div style="width: 80%; margin-left:5px; width:calc( 100% - 102px );">
257
- <div class="sfsi_responsive_icon_preview" style="width:calc( 100% - 50px )">
258
-
259
- <?php echo sfsi_social_responsive_buttons(null, $option6, true); ?>
260
- </div> <!-- end sfsi_responsive_icon_preview -->
261
- </div>
262
- <ul >
263
- <li class="sfsi_responsive_default_icon_container sfsi_border_left_0 " style="margin: 10px 0px">
264
- <label class="heading-label select-icons">
265
- Select Icons
266
- </label>
267
- </li>
268
- <?php foreach ($sfsi_responsive_icons['default_icons'] as $icon => $icon_config) :
269
- ?>
270
- <li class="sfsi_responsive_default_icon_container sfsi_vertical_center sfsi_border_left_0">
271
- <div class="radio_section tb_4_ck">
272
- <input name="sfsi_responsive_<?php echo $icon; ?>_display" <?php echo ($icon_config['active'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_responsive_<?php echo $icon; ?>_display" type="checkbox" value="yes" class="styled" data-icon="<?php echo $icon; ?>" />
273
- </div>
274
- <span class="sfsi_icon_container">
275
- <div class="sfsi_responsive_icon_item_container sfsi_responsive_icon_<?php echo strtolower($icon); ?>_container" style="word-break:break-all;padding-left:0">
276
- <div style="display: inline-block;height: 40px;width: 40px;text-align: center;vertical-align: middle!important;float: left;">
277
- <img style="float:none" src="<?php echo SFSI_PLUGURL; ?>images/responsive-icon/<?php echo $icon; ?><?php echo 'Follow' === $icon ? '.png' : '.svg'; ?>"></div>
278
- <span> <?php echo $icon_config["text"]; ?> </span>
279
- </div>
280
- </span>
281
- <input type="text" class="sfsi_responsive_input" name="sfsi_responsive_<?php echo $icon ?>_input" value="<?php echo $icon_config["text"]; ?>" />
282
- <a href="#" class="sfsi_responsive_default_url_toggler" style="text-decoration: none;">Define URL*</a>
283
- <input style="display:none" class="sfsi_responsive_url_input" type="text" placeholder="Enter url" name="sfsi_responsive_<?php echo $icon ?>_url_input" value="<?php echo $icon_config["url"]; ?>" />
284
- <a href="#" class="sfsi_responsive_default_url_hide" style="display:none"><span class="sfsi_cancel_text">Cancel</span><span class="sfsi_cancel_icon">&times;</span></a>
285
- </li>
286
-
287
- <?php endforeach; ?>
288
- </ul>
289
- &nbsp;
290
- <p style="font-size:16px !important;padding-top: 0px;">
291
- <span>* All icons have «sharing» feature enabled by default. If you want to give them a different function (e.g link to your Facebook page) then please click on «Define url» next to the icon.</span>
292
- </p>
293
- <?php if ($option6['sfsi_show_premium_placement_box'] == 'yes') { ?>
294
- <div class="sfsi_new_prmium_follw" style="width: 91%;">
295
- <p style="font-size:20px !important">
296
- <b>New: </b>In the Premium Plugin, we also added: Pinterest, Linkedin, WhatsApp, VK, OK, Telegram, Weibo, WeChat, Xing and the option to add custom icons. There are more important options to add custom icons. There are more placement options too, e.g. place the responsive icons before/after posts/pages, show them only on desktop/mobile, insert them manually (via shortcode).<a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=responsive_icons&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> See all features</a>
297
- </p>
298
- </div>
299
- <?php } ?>
300
-
301
- <div class="options">
302
- <label class="heading-label" style="width:auto!important;margin-top: 11px;margin-right: 11px;">
303
- <b>So: do you want to display those at the end of every post?</b>
304
- </label>
305
- <ul style="display:flex">
306
- <li style="min-width: 200px">
307
- <input name="sfsi_responsive_icons_end_post" <?php echo ($option6['sfsi_responsive_icons_end_post'] == 'yes') ? 'checked="true"' : ''; ?> type="radio" value="yes" class="styled" />
308
- <label class="labelhdng4" style="width: auto;">
309
- Yes
310
- </label>
311
- </li>
312
- <li>
313
- <input name="sfsi_responsive_icons_end_post" <?php echo ($option6['sfsi_responsive_icons_end_post'] == 'no') ? 'checked="true"' : ''; ?> type="radio" value="no" class="styled" />
314
- <label class="labelhdng4" style="width: auto;">
315
- No
316
- </label>
317
- </li>
318
- </div>
319
- </li>
320
-
321
- <!-- sfsi_responsive_icons_end_post -->
322
- <li class="sfsi_responsive_icon_option_li sfsi_responsive_show " style="<?php echo ($option6['sfsi_responsive_icons_end_post'] == 'yes')?'display:block':'display:none' ?>">
323
- <label class="options heading-label" style="margin: 0px 0px 12px 0px;">
324
- Design options
325
- </label>
326
- <div class="options sfsi_margin_top_0 ">
327
- <label class="first">
328
- Icons size:
329
- </label>
330
- <div class="field">
331
- <div style="display:inline-block">
332
- <select name="sfsi_responsive_icons_settings_icon_size" class="styled">
333
- <option value="Small" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_size"]) && $sfsi_responsive_icons["settings"]["icon_size"] === "Small") ? 'selected="selected"' : ""; ?>>
334
- Small
335
- </option>
336
- <option value="Medium" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_size"]) && $sfsi_responsive_icons["settings"]["icon_size"] === "Medium") ? 'selected="selected"' : ""; ?>>
337
- Medium
338
- </option>
339
- <option value="Large" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_size"]) && $sfsi_responsive_icons["settings"]["icon_size"] === "Large") ? 'selected="selected"' : ""; ?>>
340
- Large
341
- </option>
342
- </select>
343
- </div>
344
- </div>
345
- </div>
346
-
347
- <div class="options sfsi_margin_top_0 ">
348
- <label class="first">
349
- Icons width:
350
- </label>
351
- <div class="field">
352
- <div style="display:inline-block">
353
- <select name="sfsi_responsive_icons_settings_icon_width_type" class="styled">
354
- <option value="Fixed icon width" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_width_type"]) && $sfsi_responsive_icons["settings"]["icon_width_type"] === "Fixed icon width") ? 'selected="selected"' : ""; ?>>
355
- Fixed icon width
356
- </option>
357
- <option value="Fully responsive" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_width_type"]) && $sfsi_responsive_icons["settings"]["icon_width_type"] === "Fully responsive") ? 'selected="selected"' : ""; ?>>
358
- Fully responsive
359
- </option>
360
- </select>
361
- </div>
362
- <div class="sfsi_responsive_icons_icon_width sfsi_inputSec" style='display:<?php echo (isset($sfsi_responsive_icons["settings"]["icon_width_type"]) && $sfsi_responsive_icons["settings"]["icon_width_type"] == 'Fully responsive') ? 'none' : 'inline-block'; ?>'>
363
- <span style="width:auto!important">of</span>
364
- <input type="number" value="<?php echo isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_width_size"]) ? $sfsi_responsive_icons["settings"]["icon_width_size"] : 140; ?>" name="sfsi_responsive_icons_sttings_icon_width_size" style="float:none" />
365
- </select>
366
- <span class="sfsi_span_after_input">pixels</span>
367
- </div>
368
- </div>
369
- </div>
370
- <div class="options sfsi_inputSec textBefor_icons_fontcolor sfsi_margin_top_0">
371
- <label class="first">
372
- Edges:
373
- </label>
374
- <div class="field">
375
- <div style="display:inline-block">
376
- <select name="sfsi_responsive_icons_settings_edge_type" class="styled">
377
- <option value="Round" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] === "Round") ? 'selected="selected"' : ""; ?>>
378
- Round
379
- </option>
380
- <option value="Sharp" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] === "Sharp") ? 'selected="selected"' : ""; ?>>
381
- Sharp
382
- </option>
383
- </select>
384
- </div>
385
- <span style="width:auto!important;font-size: 17px;color: #5A6570; <?php echo (isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] == 'Sharp') ? 'display:none' : ''; ?>">with border radius</span>
386
- </div>
387
- <div class="field-sfsi_responsive_icons_settings_edge_radius" style="position:absolute;margin-left: 6px;<?php echo (isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] == 'Sharp') ? 'display:none' : 'display:inline-block'; ?>">
388
- <select name="sfsi_responsive_icons_settings_edge_radius" id="sfsi_icons_alignment" class="styled">
389
- <?php for ($i = 1; $i <= 20; $i++) : ?>
390
- <option value="<?php echo $i; ?>" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["edge_radius"]) && $sfsi_responsive_icons["settings"]["edge_radius"] == $i) ? 'selected="selected"' : ''; ?>>
391
- <?php echo $i; ?>
392
- </option>
393
- <?php endfor; ?>
394
- </select>
395
- </div>
396
- <!-- <span style=" <?php echo (isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] == 'Sharp') ? 'display:none' : ''; ?>">pixels</span> -->
397
-
398
- </div>
399
-
400
- <div class="options sfsi_margin_top_0">
401
- <label class="first">
402
- Style:
403
- </label>
404
- <div class="field">
405
- <div style="display:inline-block">
406
- <select name="sfsi_responsive_icons_settings_style" class="styled">
407
- <option value="Flat" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["style"]) && $sfsi_responsive_icons["settings"]["style"] === "Flat") ? 'selected="selected"' : ""; ?>>
408
- Flat
409
- </option>
410
- <option value="Gradient" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["style"]) && $sfsi_responsive_icons["settings"]["style"] === "Gradient") ? 'selected="selected"' : ""; ?>>
411
- Gradient
412
- </option>
413
- </select>
414
- </div>
415
- </div>
416
- </div>
417
-
418
- <div class="options sfsi_margin_top_0 sfsi_inputSec">
419
- <label class="first">
420
- Margin between icons:
421
- </label>
422
- <div class="field">
423
- <input type="number" value="<?php echo isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["margin"]) ? $sfsi_responsive_icons["settings"]["margin"] : 0; ?>" name="sfsi_responsive_icons_settings_margin" style="float:none" />
424
- <span class="span_after_input">pixels</span>
425
- </div>
426
- </div>
427
-
428
- <div class="options sfsi_margin_top_0">
429
- <label class="first">
430
- Text on icons:
431
- </label>
432
- <div class="field">
433
- <div style="display:inline-block">
434
- <select name="sfsi_responsive_icons_settings_text_align" class="styled">
435
- <option value="Left aligned" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["text_align"]) && $sfsi_responsive_icons["settings"]["text_align"] === "Left aligned") ? 'selected="selected"' : ""; ?>>
436
- Left aligned
437
- </option>
438
- <option value="Centered" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["text_align"]) && $sfsi_responsive_icons["settings"]["text_align"] === "Centered") ? 'selected="selected"' : ""; ?>>
439
- Centered
440
- </option>
441
- </select>
442
- </div>
443
- </div>
444
- </div>
445
- </li>
446
- <li class="sfsi_responsive_icon_option_li sfsi_responsive_show" style="<?php echo $display; ?>">
447
- <label class=" options heading-label">
448
- Share count
449
- </label>
450
- <div class="options sfsi_margin_top_0">
451
- <label style="width:auto!important;font-size: 16px;">
452
- Show the total share count on the left of your icons. It will only be visible if the individual counts are set up under <a href="#" style="text-decoration: none;font-size: 16px;" onclick="event.preventDefault();sfsi_scroll_to_div(\'ui-id-9\')">question 5</a>.
453
- </label>
454
-
455
- </div>
456
- <ul class="sfsi_tab_3_icns sfsi_shwthmbfraftr ">
457
- <li class="clckbltglcls sfsi_border_left_0" onclick="sfsi_responsive_icon_counter_tgl(null ,'sfsi_premium_responsive_icon_share_count', this);sfsi_responsive_toggle_count();" >
458
- <input name="sfsi_share_count" <?php echo ($option6['sfsi_share_count'] == 'yes') ? 'checked="true"' : ''; ?> type="radio" value="yes" class="styled" />
459
- <label class="labelhdng4">
460
- Yes
461
- </label>
462
- </li>
463
- <li class="clckbltglcls sfsi_border_left_0" onclick="sfsi_responsive_icon_counter_tgl('sfsi_responsive_icon_share_count', null, this);sfsi_responsive_toggle_count();">
464
- <input name="sfsi_share_count" <?php echo ($option6['sfsi_share_count'] == 'no') ? 'checked="true"' : ''; ?> type="radio" value="no" class="styled" />
465
- <label class="labelhdng4">
466
- No
467
- </label>
468
- </li>
469
- </ul>
470
- </li>
471
- </div>
472
- </li>
473
- </ul>
474
-
475
- <?php sfsi_ask_for_help(8); ?>
476
-
477
- <!-- SAVE BUTTON SECTION -->
478
- <div class="save_button">
479
- <img src="<?php echo SFSI_PLUGURL ?>images/ajax-loader.gif" class="loader-img" />
480
- <?php $nonce = wp_create_nonce("update_step6"); ?>
481
- <a href="javascript:;" id="sfsi_save6" title="Save" data-nonce="<?php echo $nonce; ?>">
482
- Save
483
- </a>
484
- </div>
485
- <!-- END SAVE BUTTON SECTION -->
486
-
487
- <a class="sfsiColbtn closeSec" href="javascript:;">
488
- Collapse area
489
- </a>
490
- <label class="closeSec"></label>
491
-
492
- <!-- ERROR AND SUCCESS MESSAGE AREA-->
493
- <p class="red_txt errorMsg" style="display:none"> </p>
494
- <p class="green_txt sucMsg" style="display:none"> </p>
495
- <div class="clear"></div>
496
-
497
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  <!-- END Section 6 "Do you want to display icons at the end of every post?" -->
1
+ <?php
2
+ /* unserialize all saved option for section 6 options */
3
+
4
+ $option6 = unserialize(get_option('sfsi_section6_options', false));
5
+
6
+ /**
7
+
8
+ * Sanitize, escape and validate values
9
+
10
+ */
11
+
12
+ $option6['sfsi_show_Onposts'] = (isset($option6['sfsi_show_Onposts'])) ? sanitize_text_field($option6['sfsi_show_Onposts']) : 'no';
13
+
14
+ $option6['sfsi_show_Onbottom'] = (isset($option6['sfsi_show_Onbottom'])) ? sanitize_text_field($option6['sfsi_show_Onbottom']) : '';
15
+
16
+ $option6['sfsi_icons_postPositon'] = (isset($option6['sfsi_icons_postPositon'])) ? sanitize_text_field($option6['sfsi_icons_postPositon']) : '';
17
+
18
+ $option6['sfsi_icons_alignment'] = (isset($option6['sfsi_icons_alignment'])) ? sanitize_text_field($option6['sfsi_icons_alignment']) : '';
19
+
20
+ $option6['sfsi_rss_countsDisplay'] = (isset($option6['sfsi_rss_countsDisplay'])) ? sanitize_text_field($option6['sfsi_rss_countsDisplay']) : '';
21
+
22
+ $option6['sfsi_textBefor_icons'] = (isset($option6['sfsi_textBefor_icons'])) ? sanitize_text_field($option6['sfsi_textBefor_icons']) : '';
23
+
24
+ $option6['sfsi_icons_DisplayCounts'] = (isset($option6['sfsi_icons_DisplayCounts'])) ? sanitize_text_field($option6['sfsi_icons_DisplayCounts']) : '';
25
+
26
+ $option6['sfsi_rectsub'] = (isset($option6['sfsi_rectsub'])) ? sanitize_text_field($option6['sfsi_rectsub']) : '';
27
+
28
+ $option6['sfsi_rectfb'] = (isset($option6['sfsi_rectfb'])) ? sanitize_text_field($option6['sfsi_rectfb']) : '';
29
+
30
+ $option6['sfsi_rectshr'] = (isset($option6['sfsi_rectshr'])) ? sanitize_text_field($option6['sfsi_rectshr']) : '';
31
+
32
+ $option6['sfsi_recttwtr'] = (isset($option6['sfsi_recttwtr'])) ? sanitize_text_field($option6['sfsi_recttwtr']) : '';
33
+
34
+ $option6['sfsi_rectpinit'] = (isset($option6['sfsi_rectpinit'])) ? sanitize_text_field($option6['sfsi_rectpinit']) : '';
35
+
36
+ $option6['sfsi_rectfbshare'] = (isset($option6['sfsi_rectfbshare'])) ? sanitize_text_field($option6['sfsi_rectfbshare']) : '';
37
+
38
+ $option6['sfsi_display_button_type'] = (isset($option6['sfsi_display_button_type']))
39
+ ? sanitize_text_field($option6['sfsi_display_button_type'])
40
+ : '';
41
+ $option6['sfsi_show_premium_placement_box'] = (isset($option6['sfsi_show_premium_placement_box']))
42
+ ? sanitize_text_field($option6['sfsi_show_premium_placement_box'])
43
+ : 'yes';
44
+ $option6['sfsi_responsive_icons_end_post'] = (isset($option6['sfsi_responsive_icons_end_post']))
45
+ ? sanitize_text_field($option6['sfsi_responsive_icons_end_post'])
46
+ : 'no';
47
+ $option6['sfsi_share_count'] = (isset($option6['sfsi_share_count']))
48
+ ? sanitize_text_field($option6['sfsi_share_count'])
49
+ : 'no';
50
+
51
+ $sfsi_responsive_icons_default = array(
52
+ "default_icons" => array(
53
+ "facebook" => array("active" => "yes", "text" => "Share on Facebook", "url" => ""),
54
+ "Twitter" => array("active" => "yes", "text" => "Tweet", "url" => ""),
55
+ "Follow" => array("active" => "yes", "text" => "Follow us", "url" => ""),
56
+ ),
57
+ "custom_icons" => array(),
58
+ "settings" => array(
59
+ "icon_size" => "Medium",
60
+ "icon_width_type" => "Fully responsive",
61
+ "icon_width_size" => 240,
62
+ "edge_type" => "Round",
63
+ "edge_radius" => 5,
64
+ "style" => "Gradient",
65
+ "margin" => 10,
66
+ "text_align" => "Centered",
67
+ "show_count" => "no",
68
+ "counter_color" => "#aaaaaa",
69
+ "counter_bg_color" => "#fff",
70
+ "share_count_text" => "SHARES"
71
+ )
72
+ );
73
+ $sfsi_responsive_icons = (isset($option6["sfsi_responsive_icons"]) ? $option6["sfsi_responsive_icons"] : $sfsi_responsive_icons_default);
74
+ if (!isset($option6['sfsi_rectsub'])) {
75
+ $option6['sfsi_rectsub'] = 'no';
76
+ }
77
+
78
+ if (!isset($option6['sfsi_rectfb'])) {
79
+ $option6['sfsi_rectfb'] = 'yes';
80
+ }
81
+
82
+ if (!isset($option6['sfsi_recttwtr'])) {
83
+ $option6['sfsi_recttwtr'] = 'no';
84
+ }
85
+
86
+ if (!isset($option6['sfsi_rectpinit'])) {
87
+ $option6['sfsi_rectpinit'] = 'no';
88
+ }
89
+
90
+ if (!isset($option6['sfsi_rectfbshare'])) {
91
+ $option6['sfsi_rectfbshare'] = 'no';
92
+ }
93
+ ?>
94
+ <!-- Section 6 "Do you want to display icons at the end of every post?" main div Start -->
95
+ <div>
96
+ <p class="clear" style="margin-top:0 !important">Here you have two options:</p>
97
+
98
+ <div class="tab6">
99
+ <ul class="sfsi_icn_listing8">
100
+
101
+ <li class="sfsibeforeafterpostselector">
102
+ <div class="radio_section tb_4_ck"></div>
103
+ <div class="sfsi_right_info">
104
+ <ul class="sfsi_tab_3_icns sfsi_shwthmbfraftr" style="margin:0">
105
+ <li onclick="sfsi_togglbtmsection('sfsi_toggleonlystndrshrng, .sfsi_responsive_hide', 'sfsi_toggleonlyrspvshrng, .sfsi_responsive_show', this);" class="clckbltglcls sfsi_border_left_0">
106
+ <input name="sfsi_display_button_type" <?php echo ($option6['sfsi_display_button_type'] == 'standard_buttons') ? 'checked="true"' : ''; ?> type="radio" value="standard_buttons" class="styled" />
107
+ <label class="labelhdng4">
108
+ Original icons
109
+ </label>
110
+ </li>
111
+ <li onclick="sfsi_togglbtmsection('sfsi_toggleonlyrspvshrng, .sfsi_responsive_show', 'sfsi_toggleonlystndrshrng, .sfsi_responsive_hide', this);" class="clckbltglcls sfsi_border_left_0">
112
+ <input name="sfsi_display_button_type" <?php echo ($option6['sfsi_display_button_type'] == 'responsive_button') ? 'checked="true"' : ''; ?> type="radio" value="responsive_button" class="styled" />
113
+ <label class="labelhdng4">
114
+ Responsive icons
115
+ </label>
116
+ </li>
117
+ <li class="clckbltglcls sfsi_border_left_0 sfsi_disable_radio" style="width: 43% !important">
118
+ <input type="radio" class="styled" />
119
+ <label class="labelhdng4">
120
+ Display the icons I selected above
121
+ </label>
122
+ </li>
123
+ <p class="clear">Greyed-out options are available only in the <a class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" style="border-bottom: 1px solid #12a252;color: #12a252 !important;cursor:pointer;" target="_blank">Premium Plugin</a></p>
124
+
125
+ <?php if ($option6['sfsi_display_button_type'] == 'standard_buttons') : $display = "display:block";
126
+ else : $display = "display:none";
127
+ endif; ?>
128
+ <li class="sfsi_toggleonlystndrshrng sfsi_border_left_0" style="<?php echo $display; ?>">
129
+ <div class="radiodisplaysection" style="<?php echo $display; ?>">
130
+
131
+
132
+
133
+ <!-- icons example section -->
134
+ <div class="social_icon_like1 cstmdsplyulwpr sfsi_center">
135
+
136
+ <ul>
137
+ <li>
138
+ <div class="radio_section tb_4_ck"><input name="sfsi_rectsub" <?php echo ($option6['sfsi_rectsub'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_rectsub" type="checkbox" value="yes" class="styled" />
139
+ </div>
140
+
141
+ <a href="#" title="Subscribe Follow" class="cstmdsplsub">
142
+ <img src="<?php echo SFSI_PLUGURL; ?>images/follow_subscribe.png" alt="Subscribe Follow" />
143
+ </a>
144
+ </li>
145
+ <li>
146
+ <div class="radio_section tb_4_ck"><input name="sfsi_rectfb" <?php echo ($option6['sfsi_rectfb'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_rectfb" type="checkbox" value="yes" class="styled" /></div>
147
+
148
+ <a href="#" title="Facebook Like">
149
+ <img src="<?php echo SFSI_PLUGURL; ?>images/like.jpg" alt="Facebook Like" />
150
+ </a>
151
+ </li>
152
+ <li>
153
+ <div class="radio_section tb_4_ck"><input name="sfsi_rectfbshare" <?php echo ($option6['sfsi_rectfbshare'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_rectfbshare" type="checkbox" value="yes" class="styled" />
154
+ </div>
155
+ <a href="#" title="Facebook Share">
156
+ <img src="<?php echo SFSI_PLUGURL; ?>images/fbshare.png" alt="Facebook Share" />
157
+ </a>
158
+ </li>
159
+
160
+ <li>
161
+
162
+ <div class="radio_section tb_4_ck"><input name="sfsi_recttwtr" <?php echo ($option6['sfsi_recttwtr'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_recttwtr" type="checkbox" value="yes" class="styled" />
163
+ </div>
164
+
165
+ <a href="#" title="twitter" class="cstmdspltwtr">
166
+
167
+ <img src="<?php echo SFSI_PLUGURL; ?>images/twiiter.png" alt="Twitter like" />
168
+ </a>
169
+
170
+ </li>
171
+
172
+ <li>
173
+
174
+ <div class="radio_section tb_4_ck"><input name="sfsi_rectpinit" <?php echo ($option6['sfsi_rectpinit'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_rectpinit" type="checkbox" value="yes" class="styled" />
175
+ </div>
176
+
177
+ <a href="#" title="Pin It">
178
+ <img src="<?php echo SFSI_PLUGURL; ?>images/pinit.png" alt="Pin It" />
179
+ </a>
180
+ </li>
181
+ </ul>
182
+ </div><!-- icons position section -->
183
+
184
+ <p class="clear">Those are usually all you need: </p>
185
+
186
+ <ul class="usually">
187
+ <li>1. The follow-icon ensures that your visitors subscribe to your newsletter</li>
188
+ <li>2. Facebook is No.1 in «liking», so it’s a must have</li>
189
+ <li>3. The Tweet-button allows quick tweeting of your article</li>
190
+ <li></li>
191
+ <li></li>
192
+ </ul>
193
+ <?php if ($option6['sfsi_show_premium_placement_box'] == 'yes') { ?>
194
+ <p class="sfsi_prem_plu_desc ">
195
+ <b>New: </b>We also added a Linkedin share-icon in the Premium Plugin. <a class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" style="border-bottom: 1px solid #12a252;color: #12a252 !important;cursor:pointer;" target="_blank">Go premium now</a><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usm_settings_page&utm_campaign=linkedin_icon&utm_medium=banner" class="sfsi_font_inherit" style="color: #12a252 !important" target="_blank"> or
196
+ learn more</a>
197
+ </p>
198
+ <?php } ?>
199
+ <div class="options">
200
+ <label class="heading-label" style="width:auto!important;margin-top: 11px;margin-right: 11px;">
201
+ <b>So: do you want to display those at the end of every post?</b>
202
+ </label>
203
+ <ul style="display:flex">
204
+ <li style="min-width: 200px">
205
+ <input name="sfsi_show_Onposts" <?php echo ($option6['sfsi_show_Onposts'] == 'yes') ? 'checked="true"' : ''; ?> type="radio" value="yes" class="styled" />
206
+ <label class="labelhdng4" style="width: auto;">
207
+ Yes
208
+ </label>
209
+ </li>
210
+ <li>
211
+ <input name="sfsi_show_Onposts" <?php echo ($option6['sfsi_show_Onposts'] == 'no') ? 'checked="true"' : ''; ?> type="radio" value="no" class="styled" />
212
+ <label class="labelhdng4" style="width: auto;">
213
+ No
214
+ </label>
215
+ </li>
216
+
217
+ </div>
218
+ <div class="row PostsSettings_section">
219
+
220
+ <h4>Options:</h4>
221
+
222
+ <div class="options">
223
+
224
+ <label class="first">Text to appear before the sharing icons:</label><input name="sfsi_textBefor_icons" type="text" value="<?php echo ($option6['sfsi_textBefor_icons'] != '') ? $option6['sfsi_textBefor_icons'] : ''; ?>" />
225
+
226
+ </div>
227
+
228
+ <!-- by developer - 28-05-2019 -->
229
+
230
+ <div class="options">
231
+ <p><b>New:</b> In the Premium Plugin you can choose to display the text before
232
+ the sharing icons in a font of your choice. You can also define the<b> font
233
+ size, type</b>, and the <b>margins below/above the icons</b>. <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=more_placement_options&utm_medium=banner" target="_blank" style="color:#00a0d2 !important; text-decoration: none !important;">Check
234
+ it out.</a></p>
235
+ </div>
236
+
237
+ <!-- end -->
238
+ <div class="options">
239
+ <label>Alignment of share icons: </label>
240
+ <div class="field"><select name="sfsi_icons_alignment" id="sfsi_icons_alignment" class="styled">
241
+ <option value="left" <?php echo ($option6['sfsi_icons_alignment'] == 'left') ? 'selected="selected"' : ''; ?>>
242
+ Left</option>
243
+ <!--<option value="center" <?php //echo ($option6['sfsi_icons_alignment']=='center') ? 'selected="selected"' : '' ;
244
+ ?>>Center</option>-->
245
+ <option value="right" <?php echo ($option6['sfsi_icons_alignment'] == 'right') ? 'selected="selected"' : ''; ?>>
246
+ Right</option>
247
+ </select>
248
+ </div>
249
+ </div>
250
+ <div class="options">
251
+
252
+ <label>Do you want to display the counts?</label>
253
+ <div class="field"><select name="sfsi_icons_DisplayCounts" id="sfsi_icons_DisplayCounts" class="styled">
254
+ <option value="yes" <?php echo ($option6['sfsi_icons_DisplayCounts'] == 'yes') ? 'selected="true"' : ''; ?>>
255
+ YES</option>
256
+ <option value="no" <?php echo ($option6['sfsi_icons_DisplayCounts'] == 'no') ? 'selected="true"' : ''; ?>>
257
+ NO</option>
258
+ </select>
259
+ </div>
260
+ </div>
261
+
262
+ </div>
263
+ <!-- by developer - 28-5-2019 -->
264
+
265
+ <div class="sfsi_new_prmium_follw">
266
+ <p><b>New:</b> In our Premium Plugin you have many more placement options, e.g.
267
+ place the icons you selected under question 1, place them also on your homepage
268
+ (instead of only post’s pages), place them before posts (instead of only after
269
+ posts) etc. <a style="cursor:pointer" class="pop-up" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" class="sfisi_font_bold" target="_blank">See all features</a>
270
+ <!-- <a href="https://www.ultimatelysocial.com/usm-premium/?https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=more_placement_options&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> or learn more.</a> -->
271
+ </p>
272
+ </div>
273
+ </div>
274
+ </li>
275
+ <?php if ($option6['sfsi_display_button_type'] == 'responsive_button') : $display = "display:block";
276
+ else : $display = "display:none";
277
+ endif; ?>
278
+ <li class="sfsi_toggleonlyrspvshrng" style="<?php echo $display; ?>">
279
+ <label style="width: 80%;width:calc( 100% - 102px );font-family: helveticaregular;font-size: 18px;color: #5c6267;margin: 10px 0px;">These
280
+ are responsive & independent from the icons you selected elsewhere in the plugin.
281
+ Preview:</label>
282
+ <div style="width: 80%; margin-left:5px; width:calc( 100% - 102px );">
283
+ <div class="sfsi_responsive_icon_preview" style="width:calc( 100% - 50px )">
284
+
285
+ <?php echo sfsi_social_responsive_buttons(null, $option6, true); ?>
286
+ </div> <!-- end sfsi_responsive_icon_preview -->
287
+ </div>
288
+ <ul>
289
+ <li class="sfsi_responsive_default_icon_container sfsi_border_left_0 " style="margin: 10px 0px">
290
+ <label class="heading-label select-icons">
291
+ Select Icons
292
+ </label>
293
+ </li>
294
+ <?php foreach ($sfsi_responsive_icons['default_icons'] as $icon => $icon_config) :
295
+ ?>
296
+ <li class="sfsi_responsive_default_icon_container sfsi_vertical_center sfsi_border_left_0">
297
+ <div class="radio_section tb_4_ck">
298
+ <input name="sfsi_responsive_<?php echo $icon; ?>_display" <?php echo ($icon_config['active'] == 'yes') ? 'checked="true"' : ''; ?> id="sfsi_responsive_<?php echo $icon; ?>_display" type="checkbox" value="yes" class="styled" data-icon="<?php echo $icon; ?>" />
299
+ </div>
300
+ <span class="sfsi_icon_container">
301
+ <div class="sfsi_responsive_icon_item_container sfsi_responsive_icon_<?php echo strtolower($icon); ?>_container" style="word-break:break-all;padding-left:0">
302
+ <div style="display: inline-block;height: 40px;width: 40px;text-align: center;vertical-align: middle!important;float: left;">
303
+ <img style="float:none" src="<?php echo SFSI_PLUGURL; ?>images/responsive-icon/<?php echo $icon; ?><?php echo 'Follow' === $icon ? '.png' : '.svg'; ?>">
304
+ </div>
305
+ <span> <?php echo $icon_config["text"]; ?> </span>
306
+ </div>
307
+ </span>
308
+ <input type="text" class="sfsi_responsive_input" name="sfsi_responsive_<?php echo $icon ?>_input" value="<?php echo $icon_config["text"]; ?>" />
309
+ <a href="#" class="sfsi_responsive_default_url_toggler" style="text-decoration: none;">Define URL*</a>
310
+ <input style="display:none" class="sfsi_responsive_url_input" type="text" placeholder="Enter url" name="sfsi_responsive_<?php echo $icon ?>_url_input" value="<?php echo $icon_config["url"]; ?>" />
311
+ <a href="#" class="sfsi_responsive_default_url_hide" style="display:none"><span class="sfsi_cancel_text">Cancel</span><span class="sfsi_cancel_icon">&times;</span></a>
312
+ </li>
313
+
314
+ <?php endforeach; ?>
315
+ </ul>
316
+ &nbsp;
317
+ <p style="font-size:16px !important;padding-top: 0px;">
318
+ <span>* All icons have «sharing» feature enabled by default. If you want to give them a
319
+ different function (e.g link to your Facebook page) then please click on «Define
320
+ url» next to the icon.</span>
321
+ </p>
322
+ <?php if ($option6['sfsi_show_premium_placement_box'] == 'yes') { ?>
323
+ <div class="sfsi_new_prmium_follw" style="width: 91%;">
324
+ <p style="font-size:20px !important">
325
+ <b>New: </b>In the Premium Plugin, we also added: Pinterest, Linkedin, WhatsApp, VK,
326
+ OK, Telegram, Weibo, WeChat, Xing and the option to add custom icons. There are more
327
+ important options to add custom icons. There are more placement options too, e.g.
328
+ place the responsive icons before/after posts/pages, show them only on
329
+ desktop/mobile, insert them manually (via shortcode).<a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=responsive_icons&utm_medium=banner" class="sfsi_font_inherit" target="_blank"> See all features</a>
330
+ </p>
331
+ </div>
332
+ <?php } ?>
333
+
334
+ <div class="options">
335
+ <label class="heading-label" style="width:auto!important;margin-top: 11px;margin-right: 11px;">
336
+ <b>So: do you want to display those at the end of every post?</b>
337
+ </label>
338
+ <ul style="display:flex">
339
+ <li style="min-width: 200px">
340
+ <input name="sfsi_responsive_icons_end_post" <?php echo ($option6['sfsi_responsive_icons_end_post'] == 'yes') ? 'checked="true"' : ''; ?> type="radio" value="yes" class="styled" />
341
+ <label class="labelhdng4" style="width: auto;">
342
+ Yes
343
+ </label>
344
+ </li>
345
+ <li>
346
+ <input name="sfsi_responsive_icons_end_post" <?php echo ($option6['sfsi_responsive_icons_end_post'] == 'no') ? 'checked="true"' : ''; ?> type="radio" value="no" class="styled" />
347
+ <label class="labelhdng4" style="width: auto;">
348
+ No
349
+ </label>
350
+ </li>
351
+ </div>
352
+ </li>
353
+
354
+ <!-- sfsi_responsive_icons_end_post -->
355
+ <li class="sfsi_responsive_icon_option_li sfsi_responsive_show " style="<?php echo ($option6['sfsi_responsive_icons_end_post'] == 'yes') ? 'display:block' : 'display:none' ?>">
356
+ <label class="options heading-label" style="margin: 0px 0px 12px 0px;">
357
+ Design options
358
+ </label>
359
+ <div class="options sfsi_margin_top_0 ">
360
+ <label class="first">
361
+ Icons size:
362
+ </label>
363
+ <div class="field">
364
+ <div style="display:inline-block">
365
+ <select name="sfsi_responsive_icons_settings_icon_size" class="styled">
366
+ <option value="Small" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_size"]) && $sfsi_responsive_icons["settings"]["icon_size"] === "Small") ? 'selected="selected"' : ""; ?>>
367
+ Small
368
+ </option>
369
+ <option value="Medium" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_size"]) && $sfsi_responsive_icons["settings"]["icon_size"] === "Medium") ? 'selected="selected"' : ""; ?>>
370
+ Medium
371
+ </option>
372
+ <option value="Large" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_size"]) && $sfsi_responsive_icons["settings"]["icon_size"] === "Large") ? 'selected="selected"' : ""; ?>>
373
+ Large
374
+ </option>
375
+ </select>
376
+ </div>
377
+ </div>
378
+ </div>
379
+
380
+ <div class="options sfsi_margin_top_0 ">
381
+ <label class="first">
382
+ Icons width:
383
+ </label>
384
+ <div class="field">
385
+ <div style="display:inline-block">
386
+ <select name="sfsi_responsive_icons_settings_icon_width_type" class="styled">
387
+ <option value="Fixed icon width" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_width_type"]) && $sfsi_responsive_icons["settings"]["icon_width_type"] === "Fixed icon width") ? 'selected="selected"' : ""; ?>>
388
+ Fixed icon width
389
+ </option>
390
+ <option value="Fully responsive" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_width_type"]) && $sfsi_responsive_icons["settings"]["icon_width_type"] === "Fully responsive") ? 'selected="selected"' : ""; ?>>
391
+ Fully responsive
392
+ </option>
393
+ </select>
394
+ </div>
395
+ <div class="sfsi_responsive_icons_icon_width sfsi_inputSec" style='display:<?php echo (isset($sfsi_responsive_icons["settings"]["icon_width_type"]) && $sfsi_responsive_icons["settings"]["icon_width_type"] == 'Fully responsive') ? 'none' : 'inline-block'; ?>'>
396
+ <span style="width:auto!important">of</span>
397
+ <input type="number" value="<?php echo isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["icon_width_size"]) ? $sfsi_responsive_icons["settings"]["icon_width_size"] : 140; ?>" name="sfsi_responsive_icons_sttings_icon_width_size" style="float:none" />
398
+ </select>
399
+ <span class="sfsi_span_after_input">pixels</span>
400
+ </div>
401
+ </div>
402
+ </div>
403
+ <div class="options sfsi_inputSec textBefor_icons_fontcolor sfsi_margin_top_0">
404
+ <label class="first">
405
+ Edges:
406
+ </label>
407
+ <div class="field">
408
+ <div style="display:inline-block">
409
+ <select name="sfsi_responsive_icons_settings_edge_type" class="styled">
410
+ <option value="Round" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] === "Round") ? 'selected="selected"' : ""; ?>>
411
+ Round
412
+ </option>
413
+ <option value="Sharp" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] === "Sharp") ? 'selected="selected"' : ""; ?>>
414
+ Sharp
415
+ </option>
416
+ </select>
417
+ </div>
418
+ <span style="width:auto!important;font-size: 17px;color: #5A6570; <?php echo (isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] == 'Sharp') ? 'display:none' : ''; ?>">with
419
+ border radius</span>
420
+ </div>
421
+ <div class="field-sfsi_responsive_icons_settings_edge_radius" style="position:absolute;margin-left: 6px;<?php echo (isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] == 'Sharp') ? 'display:none' : 'display:inline-block'; ?>">
422
+ <select name="sfsi_responsive_icons_settings_edge_radius" id="sfsi_icons_alignment" class="styled">
423
+ <?php for ($i = 1; $i <= 20; $i++) : ?>
424
+ <option value="<?php echo $i; ?>" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["edge_radius"]) && $sfsi_responsive_icons["settings"]["edge_radius"] == $i) ? 'selected="selected"' : ''; ?>>
425
+ <?php echo $i; ?>
426
+ </option>
427
+ <?php endfor; ?>
428
+ </select>
429
+ </div>
430
+ <!-- <span style=" <?php echo (isset($sfsi_responsive_icons["settings"]["edge_type"]) && $sfsi_responsive_icons["settings"]["edge_type"] == 'Sharp') ? 'display:none' : ''; ?>">pixels</span> -->
431
+
432
+ </div>
433
+
434
+ <div class="options sfsi_margin_top_0">
435
+ <label class="first">
436
+ Style:
437
+ </label>
438
+ <div class="field">
439
+ <div style="display:inline-block">
440
+ <select name="sfsi_responsive_icons_settings_style" class="styled">
441
+ <option value="Flat" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["style"]) && $sfsi_responsive_icons["settings"]["style"] === "Flat") ? 'selected="selected"' : ""; ?>>
442
+ Flat
443
+ </option>
444
+ <option value="Gradient" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["style"]) && $sfsi_responsive_icons["settings"]["style"] === "Gradient") ? 'selected="selected"' : ""; ?>>
445
+ Gradient
446
+ </option>
447
+ </select>
448
+ </div>
449
+ </div>
450
+ </div>
451
+
452
+ <div class="options sfsi_margin_top_0 sfsi_inputSec">
453
+ <label class="first">
454
+ Margin between icons:
455
+ </label>
456
+ <div class="field">
457
+ <input type="number" value="<?php echo isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["margin"]) ? $sfsi_responsive_icons["settings"]["margin"] : 0; ?>" name="sfsi_responsive_icons_settings_margin" style="float:none" />
458
+ <span class="span_after_input">pixels</span>
459
+ </div>
460
+ </div>
461
+
462
+ <div class="options sfsi_margin_top_0">
463
+ <label class="first">
464
+ Text on icons:
465
+ </label>
466
+ <div class="field">
467
+ <div style="display:inline-block">
468
+ <select name="sfsi_responsive_icons_settings_text_align" class="styled">
469
+ <option value="Left aligned" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["text_align"]) && $sfsi_responsive_icons["settings"]["text_align"] === "Left aligned") ? 'selected="selected"' : ""; ?>>
470
+ Left aligned
471
+ </option>
472
+ <option value="Centered" <?php echo (isset($sfsi_responsive_icons["settings"]) && isset($sfsi_responsive_icons["settings"]["text_align"]) && $sfsi_responsive_icons["settings"]["text_align"] === "Centered") ? 'selected="selected"' : ""; ?>>
473
+ Centered
474
+ </option>
475
+ </select>
476
+ </div>
477
+ </div>
478
+ </div>
479
+ </li>
480
+ <li class="sfsi_responsive_icon_option_li sfsi_responsive_show" style="<?php echo $display; ?>">
481
+ <label class=" options heading-label">
482
+ Share count
483
+ </label>
484
+ <div class="options sfsi_margin_top_0">
485
+ <label style="width:auto!important;font-size: 16px;">
486
+ Show the total share count on the left of your icons. It will only be visible if the
487
+ individual counts are set up under <a href="#" style="text-decoration: none;font-size: 16px;" onclick="event.preventDefault();sfsi_scroll_to_div(\'ui-id-9\')">question 5</a>.
488
+ </label>
489
+
490
+ </div>
491
+ <ul class="sfsi_tab_3_icns sfsi_shwthmbfraftr ">
492
+ <li class="clckbltglcls sfsi_border_left_0" onclick="sfsi_responsive_icon_counter_tgl(null ,'sfsi_premium_responsive_icon_share_count', this);sfsi_responsive_toggle_count();">
493
+ <input name="sfsi_share_count" <?php echo ($option6['sfsi_share_count'] == 'yes') ? 'checked="true"' : ''; ?> type="radio" value="yes" class="styled" />
494
+ <label class="labelhdng4">
495
+ Yes
496
+ </label>
497
+ </li>
498
+ <li class="clckbltglcls sfsi_border_left_0" onclick="sfsi_responsive_icon_counter_tgl('sfsi_responsive_icon_share_count', null, this);sfsi_responsive_toggle_count();">
499
+ <input name="sfsi_share_count" <?php echo ($option6['sfsi_share_count'] == 'no') ? 'checked="true"' : ''; ?> type="radio" value="no" class="styled" />
500
+ <label class="labelhdng4">
501
+ No
502
+ </label>
503
+ </li>
504
+ </ul>
505
+ </li>
506
+ </ul>
507
+ </div>
508
+ </li>
509
+ </ul>
510
+
511
+
512
+
513
+ <a class="sfsiColbtn closeSec" href="javascript:;">
514
+ Collapse area
515
+ </a>
516
+ <label class="closeSec"></label>
517
+
518
+ <!-- ERROR AND SUCCESS MESSAGE AREA-->
519
+ <p class="red_txt errorMsg" style="display:none"> </p>
520
+ <p class="green_txt sucMsg" style="display:none"> </p>
521
+ <div class="clear"></div>
522
+
523
+ </div>
524
+ </div>
525
  <!-- END Section 6 "Do you want to display icons at the end of every post?" -->
views/sfsi_options_view.php CHANGED
@@ -1,241 +1,245 @@
1
- <!-- Loader Image section -->
2
- <div id="sfpageLoad" >
3
-
4
- </div>
5
- <!-- END Loader Image section -->
6
-
7
- <!-- javascript error loader -->
8
- <div class="error" id="sfsi_onload_errors" style="margin-left: 60px;display: none;">
9
- <p>We found errors in your javascript which may cause the plugin to not work properly. Please fix the error:</p><p id="sfsi_jerrors"></p>
10
- </div> <!-- END javascript error loader -->
11
-
12
- <!-- START Admin view for plugin-->
13
- <div class="wapper sfsi_mainContainer">
14
-
15
- <!-- Get notification bar-->
16
- <?php if(get_option("show_new_notification") == "yes") { ?>
17
- <script type="text/javascript">
18
- jQuery(document).ready(function(e) {
19
- jQuery(".sfsi_show_notification").click(function(){
20
- SFSI.ajax({
21
- url:sfsi_icon_ajax_object.ajax_url,
22
- type:"post",
23
- data: {action: "notification_read",nonce: "<?php echo wp_create_nonce('notification_read'); ?>"},
24
- success:function(msg){
25
- if(jQuery.trim(msg) == 'success')
26
- {
27
- jQuery(".sfsi_show_notification").hide("fast");
28
- }
29
- }
30
- });
31
- });
32
- });
33
- </script>
34
- <style type="text/css">
35
- .sfsi_show_notification {
36
- float: left;
37
- margin-bottom: 45px;
38
- padding: 12px 13px;
39
- width: 98%;
40
- background-image: url(<?php echo SFSI_PLUGURL; ?>images/notification-close.png);
41
- background-position: right 20px center;
42
- background-repeat: no-repeat;
43
- cursor: pointer;
44
- text-align:center;
45
- }
46
- </style>
47
- <!-- <div class="sfsi_show_notification" style="background-color: #38B54A; color: #fff; font-size: 18px;">
48
- New: You can now also show a subscription form on your site, increasing sign-ups! (Question 8)
49
- <p>
50
- (If question 8 gets displayed in a funny way then please reload the page by pressing Control+F5(PC) or Command+R(Mac))
51
- </p>
52
- </div> -->
53
- <?php } ?>
54
- <!-- Get notification bar-->
55
-
56
- <div class="sfsi_notificationBannner"></div>
57
- <!-- Get new_notification bar-->
58
- <script type="text/javascript">
59
-
60
- jQuery(document).ready(function(){
61
-
62
- jQuery("#floating").click(function(){
63
- jQuery("#ui-id-9").trigger("click");
64
- jQuery('html, body').animate({scrollTop: jQuery("#ui-id-9").offset().top - jQuery("#ui-id-9").height()}, 2000);
65
- });
66
-
67
- jQuery("#afterposts").click(function(){
68
- if("none" == jQuery("#ui-id-12").css('display')){
69
- jQuery("#ui-id-11").trigger("click");
70
- }
71
- jQuery('html, body').animate({scrollTop: jQuery("#ui-id-11").offset().top - jQuery("#ui-id-11").height()}, 2000);
72
- });
73
-
74
- });
75
- </script>
76
-
77
- <!-- Top content area of plugin -->
78
- <div class="main_contant">
79
-
80
- <h1>Welcome to the Ultimate Social Icons and Share Plugin!</h1>
81
-
82
- <div class="welcometext">
83
-
84
- <p>Simply answer the questions below (at least the first 3) by clicking on them - that`s it!</p>
85
-
86
- <p><a style="text-decoration: none;" href="javascript:void(0)"><?php _e( 'New:' ); ?> </a><?php _e('Our new Premium Plugin allows many more placement options, better sharing features (e.g. define which text &amp; images will get shared), optimization for mobile, <a class="sfsi_unbold_link" target="_blank" href="https://www.ultimatelysocial.com/extra-icon-style/">more icon design styles</a>, <a class="sfsi_unbold_link" target="_blank" href="https://www.ultimatelysocial.com/animated-social-media-icons/">animated icons</a>, <a class="sfsi_unbold_link" target="_blank" href="https://www.ultimatelysocial.com/themed-icons-search/">themed icons</a>, and <a class="sfsi_unbold_link" href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmplus_settings_page&utm_campaign=notification_banner&utm_medium=banner" target="_blank">much more</a>.' ); ?>
87
- <a class="pop-up" href="#" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)" >
88
- <?php _e('Go premium now'); ?>
89
- </a>
90
- </p>
91
- <p><?php _e( 'Please' ); ?> <a target="_blank" style="text-decoration: underline;" href="https://goo.gl/auxJ9C#no-topic-0"><?php _e( 'give us feedback,' ); ?></a><?php _e( ' and tell us how we can make the plugin better. Thank you!.' ); ?></p>
92
-
93
- </div>
94
- <!-- <div class="welcometext">
95
-
96
- <p>Simple answer the questions below (at least the first 3) by clicking on them - that's it! </p>
97
-
98
- <p>If you want more features like <a target="_blank" href="https://www.ultimatelysocial.com/all-platforms/">more platform icons</a>, <a target="_blank" href="https://www.ultimatelysocial.com/themed-icons-search/">themed icons</a>, <a target="_blank" href="https://www.ultimatelysocial.com/animated-social-media-icons/">animated icons</a>, more design options, better sharing features, mobile optimization, faster loading, full support and <a target="_blank" href="https://www.ultimatelysocial.com/usm-premium/">much more</a>, then please check out our <a target="_blank" href="https://www.ultimatelysocial.com/checkout?edd_action=add_to_cart&download_id=150&edd_options[price_id]=2">Premium Plugin</a>. Pricing is really fair (24.98 USD).</p>
99
- <p>For questions and suggestions please raise a ticket in the <a target="_blank" href="https://goo.gl/auxJ9C#no-topic-0">Support Forum.</a></p>
100
-
101
- </div> -->
102
-
103
- <div class="supportforum">
104
- <div class="support-container">
105
- <div class="have-questions">
106
- <img src="<?php echo SFSI_PLUGURL ?>images/question.png" alt="error">
107
- <p class="have-quest">Have questions?</p>
108
- <!-- <p class="ask-question">Ask them in the...</p> -->
109
- </div>
110
- <div class="support-forum-green-div">
111
- <a target="_blank" href="#" onclick="event.preventDefault();sfsi_open_chat(event)" class="support-forum-green-bg">
112
- <p class="support-forum">Chat with us!</p>
113
- </a>
114
- </div>
115
- <!-- <div class="respond-text">
116
- <p>We'll try to respond ASAP!</p>
117
- </div> -->
118
- </div>
119
- </div>
120
- </div> <!-- END Top content area of plugin -->
121
-
122
- <!-- step 1 end here -->
123
- <div id="accordion">
124
-
125
- <h3><span>1</span>Which icons do you want to show on your site? </h3>
126
- <!-- step 1 end here -->
127
- <?php include(SFSI_DOCROOT.'/views/sfsi_option_view1.php'); ?>
128
- <!-- step 1 end here -->
129
-
130
- <!-- step 2 start here -->
131
- <h3><span>2</span>What do you want the icons to do? </h3>
132
- <?php include(SFSI_DOCROOT.'/views/sfsi_option_view2.php'); ?>
133
- <!-- step 2 END here -->
134
-
135
- <!-- step 3 start here -->
136
- <h3><span>3</span>Where shall they be displayed? </h3>
137
- <?php include(SFSI_DOCROOT.'/views/sfsi_question3.php'); ?>
138
- <!-- step 3 end here -->
139
-
140
-
141
- </div>
142
-
143
- <h2 class="optional">Optional</h2>
144
-
145
- <div id="accordion1">
146
-
147
- <!-- step 4 start here -->
148
- <h3><span>4</span>What design &amp; animation do you want to give your icons?</h3>
149
- <?php include(SFSI_DOCROOT.'/views/sfsi_option_view3.php'); ?>
150
- <!-- step 4 END here -->
151
-
152
- <!-- step 5 Start here -->
153
- <h3><span>5</span>Do you want to display "counts" next to your icons?</h3>
154
- <?php include(SFSI_DOCROOT.'/views/sfsi_option_view4.php'); ?>
155
- <!-- step 5 END here -->
156
-
157
- <!-- step 6 Start here -->
158
- <h3><span>6</span>Any other wishes for your main icons?</h3>
159
- <?php include(SFSI_DOCROOT.'/views/sfsi_option_view5.php'); ?>
160
- <!-- step 6 END here -->
161
-
162
- <!-- step 7 Start here -->
163
- <h3><span>7</span>Do you want to display icons at the end of every post?</h3>
164
- <?php include(SFSI_DOCROOT.'/views/sfsi_option_view6.php'); ?>
165
- <!-- step 7 END here -->
166
- <!-- step 8 Start here -->
167
- <h3><span>8</span>Do you want to display a pop-up, asking people to subscribe?</h3>
168
- <?php include(SFSI_DOCROOT.'/views/sfsi_option_view7.php'); ?>
169
- <!-- step 8 END here -->
170
-
171
- <!-- step 9 Start here -->
172
- <h3><span>9</span>Do you want to show a subscription form (<b>increases sign ups</b>)?</h3>
173
- <?php include(SFSI_DOCROOT.'/views/sfsi_option_view8.php'); ?>
174
- <!-- step 9 END here -->
175
-
176
- </div>
177
-
178
- <div class="tab10">
179
- <div class="save_button">
180
- <img src="<?php echo SFSI_PLUGURL; ?>images/ajax-loader.gif" class="loader-img" alt="error" />
181
- <a href="javascript:;" id="save_all_settings" title="Save All Settings">Save All Settings</a>
182
- </div>
183
- <p class="red_txt errorMsg" style="display:none"> </p>
184
- <p class="green_txt sucMsg" style="display:none"> </p>
185
-
186
- <?php include(SFSI_DOCROOT.'/views/sfsi_affiliate_banner.php'); ?><?php include(SFSI_DOCROOT.'/views/sfsi_section_for_premium.php'); ?>
187
-
188
- <!--<p class="bldtxtmsg">Need top-notch Wordpress development work at a competitive price? Visit us at <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=footer_credit&utm_medium=banner">ultimatelysocial.com</a></p>-->
189
- </div>
190
- <!-- all pops of plugin under sfsi_pop_content.php file -->
191
- <?php include(SFSI_DOCROOT.'/views/sfsi_pop_content.php'); ?>
192
- </div> <!-- START Admin view for plugin-->
193
- <?php if(in_array(get_site_url(),array('http://www.managingio.com','http://blog-latest.socialshare.com'))): ?>
194
- <div style="text-align:center">
195
- <input type="text" name="domain" id="sfsi_domain_input" style="width:40%;min-height: :40px;text-align:center;margin:0 auto" placeholder="Enter Domian to check its theme" />
196
- <input type="text" name="sfsi_domain_input_nonce" value="<?php echo wp_create_nonce('bannerOption'); ?>">
197
- <div class="save_button">
198
- <img src="<?php echo SFSI_PLUGURL; ?>images/ajax-loader.gif" class="loader-img" alt="error" />
199
- <a href="javascript:;" id="sfsi_check_theme_of_domain_btn" title="Check">Check the Theme</a>
200
- </div>
201
- <script type="text/javascript">
202
- jQuery(document).ready(function($){
203
- $('#sfsi_check_theme_of_domain_btn').click(function(){
204
- jQuery.ajax({
205
- url: "<?php echo admin_url( 'admin-ajax.php' ); ?>",
206
- type:"post",
207
- data:{
208
- 'action':'bannerOption',
209
- 'domain':$('#sfsi_domain_input').val(),
210
- 'nonce': $('#sfsi_domain_input_nonce').val(),
211
- },
212
- success:function(s) {
213
- var sfsi_container = $("html,body");
214
- var sfsi_scrollTo = $('.sfsi_notificationBannner');
215
- $('.sfsi_notificationBannner').attr('tabindex',$('.sfsi_notificationBannner').attr('tabindex')||-1);
216
- jQuery(".sfsi_notificationBannner").html(s).focus();
217
- sfsi_container.animate({scrollTop: (sfsi_scrollTo.offset().top - sfsi_container.offset().top + sfsi_container.scrollTop()), scrollLeft: 0},300);
218
-
219
- }
220
- });
221
- });
222
- })
223
- </script>
224
- <?php endif; ?>
225
- <script type="text/javascript">
226
- var e = {
227
- action:"bannerOption",
228
- 'nonce': '<?php echo wp_create_nonce('bannerOption'); ?>',
229
-
230
- };
231
- jQuery.ajax({
232
- url: "<?php echo admin_url( 'admin-ajax.php' ); ?>",
233
- type:"post",
234
- data:e,
235
- success:function(s) {
236
- jQuery(".sfsi_notificationBannner").html(s);
237
- }
238
- });
239
-
240
- </script>
241
- <?php include(SFSI_DOCROOT.'/views/sfsi_chat_on_admin_pannel.php'); ?>
 
 
 
 
1
+ <!-- Loader Image section -->
2
+ <div id="sfpageLoad">
3
+
4
+ </div>
5
+ <!-- END Loader Image section -->
6
+
7
+ <!-- javascript error loader -->
8
+ <div class="error" id="sfsi_onload_errors" style="margin-left: 60px;display: none;">
9
+ <p>We found errors in your javascript which may cause the plugin to not work properly. Please fix the error:</p>
10
+ <p id="sfsi_jerrors"></p>
11
+ </div> <!-- END javascript error loader -->
12
+
13
+ <!-- START Admin view for plugin-->
14
+ <div class="wapper sfsi_mainContainer">
15
+
16
+ <!-- Get notification bar-->
17
+ <?php if (get_option("show_new_notification") == "yes") { ?>
18
+ <script type="text/javascript">
19
+ jQuery(document).ready(function(e) {
20
+ jQuery(".sfsi_show_notification").click(function() {
21
+ SFSI.ajax({
22
+ url: sfsi_icon_ajax_object.ajax_url,
23
+ type: "post",
24
+ data: {
25
+ action: "notification_read",
26
+ nonce: "<?php echo wp_create_nonce('notification_read'); ?>"
27
+ },
28
+ success: function(msg) {
29
+ if (jQuery.trim(msg) == 'success') {
30
+ jQuery(".sfsi_show_notification").hide("fast");
31
+ }
32
+ }
33
+ });
34
+ });
35
+ });
36
+ </script>
37
+ <style type="text/css">
38
+ .sfsi_show_notification {
39
+ float: left;
40
+ margin-bottom: 45px;
41
+ padding: 12px 13px;
42
+ width: 98%;
43
+ background-image: url(<?php echo SFSI_PLUGURL; ?>images/notification-close.png);
44
+ background-position: right 20px center;
45
+ background-repeat: no-repeat;
46
+ cursor: pointer;
47
+ text-align: center;
48
+ }
49
+ </style>
50
+ <!-- <div class="sfsi_show_notification" style="background-color: #38B54A; color: #fff; font-size: 18px;">
51
+ New: You can now also show a subscription form on your site, increasing sign-ups! (Question 8)
52
+ <p>
53
+ (If question 8 gets displayed in a funny way then please reload the page by pressing Control+F5(PC) or Command+R(Mac))
54
+ </p>
55
+ </div> -->
56
+ <?php } ?>
57
+ <!-- Get notification bar-->
58
+
59
+ <div class="sfsi_notificationBannner"></div>
60
+ <!-- Get new_notification bar-->
61
+ <script type="text/javascript">
62
+ jQuery(document).ready(function() {
63
+
64
+ jQuery("#floating").click(function() {
65
+ jQuery("#ui-id-9").trigger("click");
66
+ jQuery('html, body').animate({
67
+ scrollTop: jQuery("#ui-id-9").offset().top - jQuery("#ui-id-9").height()
68
+ }, 2000);
69
+ });
70
+
71
+ jQuery("#afterposts").click(function() {
72
+ if ("none" == jQuery("#ui-id-12").css('display')) {
73
+ jQuery("#ui-id-11").trigger("click");
74
+ }
75
+ jQuery('html, body').animate({
76
+ scrollTop: jQuery("#ui-id-11").offset().top - jQuery("#ui-id-11").height()
77
+ }, 2000);
78
+ });
79
+
80
+ });
81
+ </script>
82
+
83
+ <!-- Top content area of plugin -->
84
+ <div class="main_contant">
85
+
86
+ <h1>Welcome to the Ultimate Social Icons and Share Plugin!</h1>
87
+
88
+ <div class="welcometext">
89
+
90
+ <p>Simply answer the questions below (at least the first 3) - that`s it! Start by clicking on them</p>
91
+
92
+ <p><a style="text-decoration: none;" href="javascript:void(0)"><?php _e('New:'); ?> </a><?php _e('Our new Premium Plugin allows many more placement options, better sharing features (e.g. define which text &amp; images will get shared), optimization for mobile, <a class="sfsi_unbold_link" target="_blank" href="https://www.ultimatelysocial.com/extra-icon-style/">more icon design styles</a>, <a class="sfsi_unbold_link" target="_blank" href="https://www.ultimatelysocial.com/animated-social-media-icons/">animated icons</a>, <a class="sfsi_unbold_link" target="_blank" href="https://www.ultimatelysocial.com/themed-icons-search/">themed icons</a>, and <a class="sfsi_unbold_link" href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmplus_settings_page&utm_campaign=notification_banner&utm_medium=banner" target="_blank">much more</a>.'); ?>
93
+ <a class="pop-up" href="#" data-id="sfsi_quickpay-overlay" onclick="sfsi_open_quick_checkout(event)">
94
+ <?php _e('Go premium now'); ?>
95
+ </a>
96
+ </p>
97
+ <p><?php _e('Please'); ?> <a target="_blank" style="text-decoration: underline;" href="https://goo.gl/auxJ9C#no-topic-0"><?php _e('give us feedback,'); ?></a><?php _e(' and tell us how we can make the plugin better. Thank you!.'); ?></p>
98
+
99
+ </div>
100
+ <!-- <div class="welcometext">
101
+
102
+ <p>Simple answer the questions below (at least the first 3) by clicking on them - that's it! </p>
103
+
104
+ <p>If you want more features like <a target="_blank" href="https://www.ultimatelysocial.com/all-platforms/">more platform icons</a>, <a target="_blank" href="https://www.ultimatelysocial.com/themed-icons-search/">themed icons</a>, <a target="_blank" href="https://www.ultimatelysocial.com/animated-social-media-icons/">animated icons</a>, more design options, better sharing features, mobile optimization, faster loading, full support and <a target="_blank" href="https://www.ultimatelysocial.com/usm-premium/">much more</a>, then please check out our <a target="_blank" href="https://www.ultimatelysocial.com/checkout?edd_action=add_to_cart&download_id=150&edd_options[price_id]=2">Premium Plugin</a>. Pricing is really fair (24.98 USD).</p>
105
+ <p>For questions and suggestions please raise a ticket in the <a target="_blank" href="https://goo.gl/auxJ9C#no-topic-0">Support Forum.</a></p>
106
+
107
+ </div> -->
108
+
109
+ <div class="supportforum">
110
+ <div class="support-container">
111
+ <div class="have-questions">
112
+ <img src="<?php echo SFSI_PLUGURL ?>images/question.png" alt="error">
113
+ <p class="have-quest">Have questions?</p>
114
+ <!-- <p class="ask-question">Ask them in the...</p> -->
115
+ </div>
116
+ <div class="support-forum-green-div">
117
+ <a target="_blank" href="#" onclick="event.preventDefault();sfsi_open_chat(event)" class="support-forum-green-bg">
118
+ <p class="support-forum">Chat with us!</p>
119
+ </a>
120
+ </div>
121
+ <!-- <div class="respond-text">
122
+ <p>We'll try to respond ASAP!</p>
123
+ </div> -->
124
+ </div>
125
+ </div>
126
+ </div> <!-- END Top content area of plugin -->
127
+
128
+ <!-- step 1 end here -->
129
+ <div id="accordion">
130
+
131
+ <h3><span>1</span>Which icons do you want to show on your site? </h3>
132
+ <!-- step 1 end here -->
133
+ <?php include(SFSI_DOCROOT . '/views/sfsi_option_view1.php'); ?>
134
+ <!-- step 1 end here -->
135
+
136
+ <!-- step 2 start here -->
137
+ <h3><span>2</span>What do you want the icons to do? </h3>
138
+ <?php include(SFSI_DOCROOT . '/views/sfsi_option_view2.php'); ?>
139
+ <!-- step 2 END here -->
140
+
141
+ <!-- step 3 start here -->
142
+ <h3><span>3</span>Where shall they be displayed? </h3>
143
+ <?php include(SFSI_DOCROOT . '/views/sfsi_question3.php'); ?>
144
+ <!-- step 3 end here -->
145
+
146
+
147
+ </div>
148
+
149
+ <h2 class="optional">Optional</h2>
150
+
151
+ <div id="accordion1">
152
+
153
+ <!-- step 4 start here -->
154
+ <h3><span>4</span>What design &amp; animation do you want to give your icons?</h3>
155
+ <?php include(SFSI_DOCROOT . '/views/sfsi_option_view3.php'); ?>
156
+ <!-- step 4 END here -->
157
+
158
+ <!-- step 5 Start here -->
159
+ <h3><span>5</span>Do you want to display "counts" next to your icons?</h3>
160
+ <?php include(SFSI_DOCROOT . '/views/sfsi_option_view4.php'); ?>
161
+ <!-- step 5 END here -->
162
+
163
+ <!-- step 6 Start here -->
164
+ <h3><span>6</span>Any other wishes for your main icons?</h3>
165
+ <?php include(SFSI_DOCROOT . '/views/sfsi_option_view5.php'); ?>
166
+ <!-- step 6 END here -->
167
+
168
+ <!-- step 7 Start here -->
169
+ <h3><span>7</span>Do you want to display a pop-up, asking people to subscribe?</h3>
170
+ <?php include(SFSI_DOCROOT . '/views/sfsi_option_view7.php'); ?>
171
+ <!-- step 7 END here -->
172
+
173
+ <!-- step 8 Start here -->
174
+ <h3><span>8</span>Do you want to show a subscription form (<b>increases sign ups</b>)?</h3>
175
+ <?php include(SFSI_DOCROOT . '/views/sfsi_option_view8.php'); ?>
176
+ <!-- step 8 END here -->
177
+
178
+ </div>
179
+
180
+ <div class="tab10">
181
+ <div class="save_button">
182
+ <img src="<?php echo SFSI_PLUGURL; ?>images/ajax-loader.gif" class="loader-img" alt="error" />
183
+ <a href="javascript:;" id="save_all_settings" title="Save All Settings">Save All Settings</a>
184
+ </div>
185
+ <p class="red_txt errorMsg" style="display:none"> </p>
186
+ <p class="green_txt sucMsg" style="display:none"> </p>
187
+
188
+ <?php include(SFSI_DOCROOT . '/views/sfsi_affiliate_banner.php'); ?><?php include(SFSI_DOCROOT . '/views/sfsi_section_for_premium.php'); ?>
189
+
190
+ <!--<p class="bldtxtmsg">Need top-notch Wordpress development work at a competitive price? Visit us at <a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=footer_credit&utm_medium=banner">ultimatelysocial.com</a></p>-->
191
+ </div>
192
+ <!-- all pops of plugin under sfsi_pop_content.php file -->
193
+ <?php include(SFSI_DOCROOT . '/views/sfsi_pop_content.php'); ?>
194
+ </div> <!-- START Admin view for plugin-->
195
+ <?php if (in_array(get_site_url(), array('http://www.managingio.com', 'http://blog-latest.socialshare.com'))) : ?>
196
+ <div style="text-align:center">
197
+ <input type="text" name="domain" id="sfsi_domain_input" style="width:40%;min-height: :40px;text-align:center;margin:0 auto" placeholder="Enter Domian to check its theme" />
198
+ <input type="text" name="sfsi_domain_input_nonce" value="<?php echo wp_create_nonce('bannerOption'); ?>">
199
+ <div class="save_button">
200
+ <img src="<?php echo SFSI_PLUGURL; ?>images/ajax-loader.gif" class="loader-img" alt="error" />
201
+ <a href="javascript:;" id="sfsi_check_theme_of_domain_btn" title="Check">Check the Theme</a>
202
+ </div>
203
+ <script type="text/javascript">
204
+ jQuery(document).ready(function($) {
205
+ $('#sfsi_check_theme_of_domain_btn').click(function() {
206
+ jQuery.ajax({
207
+ url: "<?php echo admin_url('admin-ajax.php'); ?>",
208
+ type: "post",
209
+ data: {
210
+ 'action': 'bannerOption',
211
+ 'domain': $('#sfsi_domain_input').val(),
212
+ 'nonce': $('#sfsi_domain_input_nonce').val(),
213
+ },
214
+ success: function(s) {
215
+ var sfsi_container = $("html,body");
216
+ var sfsi_scrollTo = $('.sfsi_notificationBannner');
217
+ $('.sfsi_notificationBannner').attr('tabindex', $('.sfsi_notificationBannner').attr('tabindex') || -1);
218
+ jQuery(".sfsi_notificationBannner").html(s).focus();
219
+ sfsi_container.animate({
220
+ scrollTop: (sfsi_scrollTo.offset().top - sfsi_container.offset().top + sfsi_container.scrollTop()),
221
+ scrollLeft: 0
222
+ }, 300);
223
+
224
+ }
225
+ });
226
+ });
227
+ })
228
+ </script>
229
+ <?php endif; ?>
230
+ <script type="text/javascript">
231
+ var e = {
232
+ action: "bannerOption",
233
+ 'nonce': '<?php echo wp_create_nonce('bannerOption'); ?>',
234
+
235
+ };
236
+ jQuery.ajax({
237
+ url: "<?php echo admin_url('admin-ajax.php'); ?>",
238
+ type: "post",
239
+ data: e,
240
+ success: function(s) {
241
+ jQuery(".sfsi_notificationBannner").html(s);
242
+ }
243
+ });
244
+ </script>
245
+ <?php include(SFSI_DOCROOT . '/views/sfsi_chat_on_admin_pannel.php'); ?>
views/sfsi_question3.php CHANGED
@@ -1,141 +1,142 @@
1
- <?php
2
-
3
- $option9 = unserialize(get_option('sfsi_section9_options',false));
4
-
5
- ?>
6
-
7
- <div class="tab9">
8
-
9
-
10
-
11
- <ul class="sfsi_icn_listing8">
12
-
13
- <!--********************** Show them via a widget section **************************************-->
14
-
15
-
16
-
17
- <?php @include(SFSI_DOCROOT.'/views/subviews/que3/sfsi_que3_place_via_widget.php'); ?>
18
-
19
-
20
-
21
- <!--********************** Define the location on the page **************************************-->
22
-
23
- <?php @include(SFSI_DOCROOT.'/views/subviews/que3/sfsi_que3_place_via_float.php'); ?>
24
-
25
-
26
-
27
- <!--********************** Place via shortcode *******************************************-->
28
-
29
-
30
-
31
- <?php @include(SFSI_DOCROOT.'/views/subviews/que3/sfsi_que3_place_via_shortcode.php'); ?>
32
-
33
-
34
-
35
-
36
-
37
- <!--********************** Show them after post****************************************-->
38
-
39
-
40
-
41
- <?php @include(SFSI_DOCROOT.'/views/subviews/que3/sfsi_que3_place_via_after_posts.php'); ?>
42
-
43
- <!--********************** Show pinterest over image hover post****************************************-->
44
-
45
- <li class="sfsi_show_via_onhover disabled_checkbox">
46
-
47
-
48
-
49
- <div class="radio_section tb_4_ck">
50
-
51
- <span class="checkbox" style="background-position:0px 0px!important;width:31px"></span>
52
-
53
- <input name="" type="checkbox" disable value="" class="hide" style="display:none;" /></div>
54
-
55
-
56
-
57
- <div class="sfsi_right_info">
58
-
59
-
60
-
61
- <p style="display:block">
62
-
63
- <span class="sfsi_toglepstpgspn" style="display:inline-block;float:left;">Show a Pinterest icon over images on mouse-over </span>- <span><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=pinterest_icon_mouse_over&utm_medium=link" target="_blank" style="font-weight:800">Premium feature</a></span>
64
-
65
- </p>
66
-
67
-
68
-
69
- </div>
70
-
71
- </li>
72
-
73
- </ul>
74
-
75
-
76
-
77
-
78
-
79
- <p class="sfsi_premium_feature_note">
80
-
81
- In the Premium Plugin you can also <b>exclude icons</b> from showing on certain pages. <a target="_blank" href="https://www.ultimatelysocial.com/usm-premium/"><b>See all features</b></a>
82
-
83
- </p>
84
-
85
- <?php sfsi_ask_for_help(9); ?>
86
-
87
-
88
-
89
- <!-- SAVE BUTTON SECTION -->
90
-
91
- <div class="save_button">
92
-
93
- <img src="<?php echo SFSI_PLUGURL ?>images/ajax-loader.gif" class="loader-img" alt='loader' />
94
-
95
- <?php $nonce = wp_create_nonce("update_step9"); ?>
96
-
97
- <a href="javascript:;" id="sfsi_save9" title="Save" data-nonce="<?php echo $nonce;?>">Save</a>
98
-
99
- </div>
100
-
101
- <!-- END SAVE BUTTON SECTION -->
102
-
103
-
104
-
105
- <a class="sfsiColbtn closeSec" href="javascript:;">Collapse area
106
-
107
- </a>
108
-
109
- <label class="closeSec"></label>
110
-
111
-
112
-
113
- <!-- ERROR AND SUCCESS MESSAGE AREA-->
114
-
115
- <p class="red_txt errorMsg" style="display:none"> </p>
116
-
117
- <p class="green_txt sucMsg" style="display:none"> </p>
118
-
119
- <div class="clear"></div>
120
-
121
-
122
-
123
- </div>
124
-
125
- <?php
126
-
127
- function sfsi_premium_isSeletcted($givenVal, $value)
128
-
129
- {
130
-
131
- if($givenVal == $value)
132
-
133
- return 'selected="true"';
134
-
135
- else
136
-
137
- return '';
138
-
139
- }
140
-
 
141
  ?>
1
+ <?php
2
+
3
+ $option9 = unserialize(get_option('sfsi_section9_options', false));
4
+
5
+ ?>
6
+
7
+ <div class="tab9">
8
+
9
+
10
+
11
+ <ul class="sfsi_icn_listing8">
12
+
13
+
14
+
15
+
16
+
17
+ <!--********************** Define the location on the page **************************************-->
18
+
19
+ <?php @include(SFSI_DOCROOT . '/views/subviews/que3/sfsi_que3_place_via_float.php'); ?>
20
+
21
+
22
+ <!--********************** Show them via a widget section **************************************-->
23
+
24
+ <?php @include(SFSI_DOCROOT . '/views/subviews/que3/sfsi_que3_place_via_widget.php'); ?>
25
+
26
+
27
+ <!--********************** Place via shortcode *******************************************-->
28
+
29
+
30
+
31
+ <?php @include(SFSI_DOCROOT . '/views/subviews/que3/sfsi_que3_place_via_shortcode.php'); ?>
32
+
33
+
34
+
35
+
36
+
37
+ <!--********************** Show them after post****************************************-->
38
+
39
+
40
+
41
+ <?php @include(SFSI_DOCROOT . '/views/subviews/que3/sfsi_que3_place_via_after_posts.php'); ?>
42
+
43
+ <!--********************** Show pinterest over image hover post****************************************-->
44
+
45
+ <li class="sfsi_show_via_onhover disabled_checkbox">
46
+
47
+
48
+
49
+ <div class="radio_section tb_4_ck">
50
+
51
+ <span class="checkbox" style="background-position:0px 0px!important;width:31px"></span>
52
+
53
+ <input name="" type="checkbox" disable value="" class="hide" style="display:none;" /></div>
54
+
55
+
56
+
57
+ <div class="sfsi_right_info">
58
+
59
+
60
+
61
+ <p style="display:block">
62
+
63
+ <span class="sfsi_toglepstpgspn" style="display:inline-block;float:left;">Show a Pinterest icon over images on mouse-over </span>- <span><a href="https://www.ultimatelysocial.com/usm-premium/?utm_source=usmi_settings_page&utm_campaign=pinterest_icon_mouse_over&utm_medium=link" target="_blank" style="font-weight:800">Premium feature</a></span>
64
+
65
+ </p>
66
+
67
+
68
+
69
+ </div>
70
+
71
+ </li>
72
+
73
+ </ul>
74
+
75
+
76
+
77
+
78
+
79
+ <p class="sfsi_premium_feature_note">
80
+
81
+ In the Premium Plugin you can also <b>exclude icons</b> from showing on certain pages. <a target="_blank" href="https://www.ultimatelysocial.com/usm-premium/"><b>See all features</b></a>
82
+
83
+ </p>
84
+
85
+ <?php sfsi_ask_for_help(9); ?>
86
+
87
+
88
+
89
+ <!-- SAVE BUTTON SECTION -->
90
+
91
+ <div class="save_button">
92
+
93
+ <img src="<?php echo SFSI_PLUGURL ?>images/ajax-loader.gif" class="loader-img" alt='loader' />
94
+
95
+ <?php $nonce2 = wp_create_nonce("update_step6"); ?>
96
+
97
+ <?php $nonce = wp_create_nonce("update_step9"); ?>
98
+
99
+ <a href="javascript:;" id="sfsi_save9" title="Save" data-nonce="<?php echo $nonce?>" data-nonce2="<?php echo $nonce2?>">Save</a>
100
+
101
+ </div>
102
+
103
+ <!-- END SAVE BUTTON SECTION -->
104
+
105
+
106
+
107
+ <a class="sfsiColbtn closeSec" href="javascript:;">Collapse area
108
+
109
+ </a>
110
+
111
+ <label class="closeSec"></label>
112
+
113
+
114
+
115
+ <!-- ERROR AND SUCCESS MESSAGE AREA-->
116
+
117
+ <p class="red_txt errorMsg" style="display:none"> </p>
118
+
119
+ <p class="green_txt sucMsg" style="display:none"> </p>
120
+
121
+ <div class="clear"></div>
122
+
123
+
124
+
125
+ </div>
126
+
127
+ <?php
128
+
129
+ function sfsi_premium_isSeletcted($givenVal, $value)
130
+
131
+ {
132
+
133
+ if ($givenVal == $value)
134
+
135
+ return 'selected="true"';
136
+
137
+ else
138
+
139
+ return '';
140
+ }
141
+
142
  ?>
views/subviews/que3/sfsi_que3_place_via_after_posts.php CHANGED
@@ -1,61 +1,60 @@
1
- <?php
2
-
3
- $sfsi_show_via_afterposts = "no";
4
-
5
- if(isset($option9['sfsi_show_via_afterposts']) && !empty($option9['sfsi_show_via_afterposts'])){
6
-
7
- $sfsi_show_via_afterposts = $option9['sfsi_show_via_afterposts'];
8
-
9
- }
10
-
11
- $label_style = 'style="display:none;"';
12
-
13
- $checked = "";
14
-
15
- if($sfsi_show_via_afterposts =='yes'){
16
-
17
- $label_style = 'style="display:block;"';
18
-
19
- $checked = 'checked="true"';
20
-
21
- }
22
-
23
- ?>
24
-
25
- <li class="sfsi_show_via_afterposts">
26
-
27
-
28
-
29
- <div class="radio_section tb_4_ck" onclick="checkforinfoslction_checkbox(this);"><input name="sfsi_show_via_afterposts" <?php echo $checked; ?> type="checkbox" value="<?php echo $sfsi_show_via_afterposts; ?>" class="styled" /></div>
30
-
31
-
32
-
33
- <div class="sfsi_right_info">
34
-
35
-
36
-
37
- <p>
38
-
39
- <span class="sfsi_toglepstpgspn">Show icons after posts</span>
40
-
41
- </p>
42
-
43
- <div class="kckslctn" <?php echo $label_style; ?>>
44
-
45
-
46
-
47
- <p>Please select this under <a href="#sfsi_dsplyafterposts" class="sfsi_navigate_to_question7">question 7</a>.</p>
48
-
49
-
50
-
51
- <p>If you want to place the <b>round icons</b> after/before posts (i.e. the ones you selected under question 1): This is possible in the <a href="https://www.ultimatelysocial.com/usm-premium/" target="_blank"><b>Premium Plugin.</b></a></p>
52
-
53
- </div>
54
-
55
-
56
-
57
-
58
-
59
- </div>
60
-
61
  </li>
1
+
2
+
3
+ <?php
4
+
5
+ $sfsi_show_via_afterposts = "no";
6
+
7
+ if(isset($option9['sfsi_show_via_afterposts']) && !empty($option9['sfsi_show_via_afterposts'])){
8
+
9
+ $sfsi_show_via_afterposts = $option9['sfsi_show_via_afterposts'];
10
+
11
+ }
12
+
13
+ $label_style = 'style="display:none;"';
14
+
15
+ $checked = "";
16
+
17
+ if($sfsi_show_via_afterposts =='yes'){
18
+
19
+ $label_style = 'style="display:block;"';
20
+
21
+ $checked = 'checked="true"';
22
+
23
+ }
24
+
25
+ ?>
26
+
27
+ <li class="sfsi_show_via_afterposts">
28
+
29
+
30
+
31
+ <div class="radio_section tb_4_ck" onclick="checkforinfoslction_checkbox(this);"><input name="sfsi_show_via_afterposts" <?php echo $checked; ?> type="checkbox" value="<?php echo $sfsi_show_via_afterposts; ?>" class="styled" /></div>
32
+
33
+
34
+
35
+ <div class="sfsi_right_info">
36
+
37
+
38
+
39
+ <p>
40
+
41
+ <span class="sfsi_toglepstpgspn">Show icons after posts</span>
42
+
43
+ </p>
44
+
45
+ <div class="kckslctn" <?php echo $label_style; ?>>
46
+
47
+
48
+ <?php include(SFSI_DOCROOT.'/views/sfsi_option_view6.php'); ?>
49
+
50
+
51
+
52
+ </div>
53
+
54
+
55
+
56
+
57
+
58
+ </div>
59
+
 
60
  </li>
views/subviews/que3/sfsi_que3_place_via_float.php CHANGED
@@ -1,263 +1,263 @@
1
- <?php
2
-
3
- $option9['sfsi_icons_float'] = (isset($option9['sfsi_icons_float'])) ? sanitize_text_field($option9['sfsi_icons_float']): 'no';
4
-
5
- $option9['sfsi_icons_floatPosition'] = (isset($option9['sfsi_icons_floatPosition'])) ? sanitize_text_field($option9['sfsi_icons_floatPosition']) :'center-right';
6
-
7
- $option9['sfsi_icons_floatMargin_top'] = (isset($option9['sfsi_icons_floatMargin_top'])) ? intval($option9['sfsi_icons_floatMargin_top']) : '';
8
-
9
- $option9['sfsi_icons_floatMargin_bottom'] = (isset($option9['sfsi_icons_floatMargin_bottom'])) ? intval($option9['sfsi_icons_floatMargin_bottom']) : '';
10
-
11
- $option9['sfsi_icons_floatMargin_left'] = (isset($option9['sfsi_icons_floatMargin_left'])) ? intval($option9['sfsi_icons_floatMargin_left']) : '';
12
-
13
- $option9['sfsi_icons_floatMargin_right'] = (isset($option9['sfsi_icons_floatMargin_right'])) ? intval($option9['sfsi_icons_floatMargin_right']) : '';
14
-
15
- $option9['sfsi_disable_floaticons'] = (isset($option9['sfsi_disable_floaticons'])) ? sanitize_text_field($option9['sfsi_disable_floaticons']): 'no';
16
-
17
- $style = ($option9['sfsi_icons_float'] == "yes") ? 'display: block;' : "display: none;";
18
-
19
- ?>
20
-
21
- <li class="sfsiLocationli">
22
-
23
- <div class="radio_section tb_4_ck cstmfltonpgstck" onclick="sfsi_toggleflotpage_que3(this);" style="padding-bottom:10px;">
24
-
25
- <input name="sfsi_icons_float" <?php echo ($option9['sfsi_icons_float']=='yes') ? 'checked="true"' : '' ;?> type="checkbox" value="yes" class="styled" />
26
-
27
- <p><span class="sfsi_toglepstpgspn">Floating over your website's pages</span></p>
28
- </div>
29
-
30
- <div class="sfsi_right_info" <?php echo 'style="'.$style.'"';?>>
31
- <p><span style="margin-left: 31px;">Define the location:</span></p>
32
-
33
- <div class="sfsi_tab_3_icns">
34
-
35
-
36
-
37
- <ul class="sfsi_tab_3_icns flthmonpg">
38
-
39
-
40
-
41
- <div class="sfsi_position_divider">
42
-
43
- <li>
44
-
45
- <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='top-left') ? 'checked="true"' : '' ;?> type="radio" value="top-left" class="styled" />
46
-
47
- <span class="sfsi_flicnsoptn3 sfsioptntl">Top left</span>
48
-
49
- <label><img src="<?php echo SFSI_PLUGURL;?>images/top_left.png" alt='error'/></label>
50
-
51
- </li>
52
-
53
-
54
-
55
- <li>
56
-
57
- <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='center-top') ? 'checked="true"' : '' ;?> type="radio" value="center-top" class="styled" />
58
-
59
-
60
-
61
- <span class="sfsi_flicnsoptn3 sfsioptncl">Center top</span>
62
-
63
- <label class="sfsi_float_position_icon_label"><img src="<?php echo SFSI_PLUGURL;?>images/float_position_icon.png" alt='error'/></label>
64
-
65
- </li>
66
-
67
-
68
-
69
- <li>
70
-
71
- <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='top-right') ? 'checked="true"' : '' ;?> type="radio" value="top-right" class="styled" />
72
-
73
- <span class="sfsi_flicnsoptn3 sfsioptntr">Top right</span>
74
-
75
- <label><img src="<?php echo SFSI_PLUGURL;?>images/top_right.png" alt='error' /></label>
76
-
77
- </li>
78
-
79
- </div>
80
-
81
- <div class="sfsi_position_divider">
82
-
83
- <li>
84
-
85
- <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='center-left') ? 'checked="true"' : '' ;?> type="radio" value="center-left" class="styled" />
86
-
87
-
88
-
89
- <span class="sfsi_flicnsoptn3 sfsioptncl">Center left</span>
90
-
91
- <label><img src="<?php echo SFSI_PLUGURL;?>images/center_left.png" alt='error'/></label>
92
-
93
- </li>
94
-
95
- <li></li>
96
-
97
-
98
-
99
- <li>
100
-
101
- <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='center-right') ? 'checked="true"' : '' ;?> type="radio" value="center-right" class="styled" />
102
-
103
-
104
-
105
- <span class="sfsi_flicnsoptn3 sfsioptncr">Center right</span>
106
-
107
- <label><img src="<?php echo SFSI_PLUGURL;?>images/center_right.png" alt='error'/></label>
108
-
109
- </li>
110
-
111
-
112
-
113
- </div>
114
-
115
- <div class="sfsi_position_divider">
116
-
117
- <li>
118
-
119
- <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='bottom-left') ? 'checked="true"' : '' ;?> type="radio" value="bottom-left" class="styled" />
120
-
121
- <span class="sfsi_flicnsoptn3 sfsioptnbl">Bottom left</span>
122
-
123
- <label><img src="<?php echo SFSI_PLUGURL;?>images/bottom_left.png" alt='error'alt='error'/></label>
124
-
125
- </li>
126
-
127
-
128
-
129
- <li>
130
-
131
- <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='center-bottom') ? 'checked="true"' : '' ;?> type="radio" value="center-bottom" class="styled" />
132
-
133
-
134
-
135
- <span class="sfsi_flicnsoptn3 sfsioptncr">Center bottom</span>
136
-
137
- <label class="sfsi_float_position_icon_label sfsi_center_botttom"><img class="sfsi_img_center_bottom" src="<?php echo SFSI_PLUGURL;?>images/float_position_icon.png" alt='error'/></label>
138
-
139
- </li>
140
-
141
- <li>
142
-
143
- <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='bottom-right') ? 'checked="true"' : '' ;?> type="radio" value="bottom-right" class="styled" />
144
-
145
-
146
-
147
- <span class="sfsi_flicnsoptn3 sfsioptnbr">Bottom right</span>
148
-
149
- <label><img src="<?php echo SFSI_PLUGURL;?>images/bottom_right.png" alt='error'/></label>
150
-
151
- </li>
152
-
153
- </div>
154
-
155
- </ul>
156
-
157
-
158
-
159
- <div style="width: 88%; float: left; margin:25px 0 0 25px">
160
-
161
-
162
-
163
- <h4>Margin From: </h4>
164
-
165
- <ul class="sfsi_floaticon_margin_sec">
166
-
167
-
168
-
169
- <li>
170
-
171
- <label>Top:</label>
172
-
173
- <input name="sfsi_icons_floatMargin_top" type="text" value="<?php echo ($option9['sfsi_icons_floatMargin_top']!='') ? $option9['sfsi_icons_floatMargin_top'] : '' ;?>" />
174
-
175
- <ins>Pixels</ins>
176
-
177
- </li>
178
-
179
-
180
-
181
- <li>
182
-
183
- <label>Bottom:</label>
184
-
185
- <input name="sfsi_icons_floatMargin_bottom" type="text" value="<?php echo ($option9['sfsi_icons_floatMargin_bottom'] != '') ? $option9['sfsi_icons_floatMargin_bottom'] : '' ;?>" />
186
-
187
- <ins>Pixels</ins>
188
-
189
- </li>
190
-
191
-
192
-
193
- <li>
194
-
195
- <label>Left:</label>
196
-
197
- <input name="sfsi_icons_floatMargin_left" type="text" value="<?php echo ($option9['sfsi_icons_floatMargin_left']!='') ? $option9['sfsi_icons_floatMargin_left'] : '' ;?>" />
198
-
199
- <ins>Pixels</ins>
200
-
201
- </li>
202
-
203
-
204
-
205
- <li>
206
-
207
- <label>Right:</label>
208
-
209
- <input name="sfsi_icons_floatMargin_right" type="text" value="<?php echo ($option9['sfsi_icons_floatMargin_right']!='') ? $option9['sfsi_icons_floatMargin_right'] : '' ;?>" />
210
-
211
- <ins>Pixels</ins>
212
-
213
- </li>
214
-
215
- </ul>
216
-
217
- </div>
218
-
219
-
220
-
221
- <div style="width: 88%; float: left; margin:25px 0 0 7px">
222
-
223
- <p style="line-height: 34px;">
224
-
225
- The icons will be floating on your page. If you want them <b>"sticky"</b>, please check out the <a target="_blank" href="https://www.ultimatelysocial.com/usm-premium/"><b>Premium Plugin</b></a>. Also in the Premium Plugin you can show the icons <b>vertically</b>, and give them <b>different settings for mobile.</b>
226
-
227
- </p>
228
-
229
- </div>
230
-
231
- <div class="sfsi_disable_floatingicons_mobile">
232
-
233
-
234
-
235
- <h4>Want to disable the floating icons on mobile?</h4>
236
-
237
- <ul class="sfsi_make_icons sfsi_plus_mobile_float">
238
-
239
- <li>
240
-
241
- <input name="sfsi_disable_floaticons" <?php echo ( $option9['sfsi_disable_floaticons']=='yes') ? 'checked="true"' : '' ;?> type="radio" value="yes" class="styled" />
242
-
243
- <span class="sfsi_flicnsoptn3">Yes</span>
244
-
245
- </li>
246
-
247
- <li>
248
-
249
- <input name="sfsi_disable_floaticons" <?php echo ( $option9['sfsi_disable_floaticons']=='no') ? 'checked="true"' : '' ;?> type="radio" value="no" class="styled"/>
250
-
251
- <span class="sfsi_flicnsoptn3">No</span>
252
-
253
- </li>
254
-
255
- </ul>
256
-
257
- </div>
258
-
259
- </div>
260
-
261
- </div>
262
-
263
  </li>
1
+ <?php
2
+
3
+ $option9['sfsi_icons_float'] = (isset($option9['sfsi_icons_float'])) ? sanitize_text_field($option9['sfsi_icons_float']): 'no';
4
+
5
+ $option9['sfsi_icons_floatPosition'] = (isset($option9['sfsi_icons_floatPosition'])) ? sanitize_text_field($option9['sfsi_icons_floatPosition']) :'center-right';
6
+
7
+ $option9['sfsi_icons_floatMargin_top'] = (isset($option9['sfsi_icons_floatMargin_top'])) ? intval($option9['sfsi_icons_floatMargin_top']) : '';
8
+
9
+ $option9['sfsi_icons_floatMargin_bottom'] = (isset($option9['sfsi_icons_floatMargin_bottom'])) ? intval($option9['sfsi_icons_floatMargin_bottom']) : '';
10
+
11
+ $option9['sfsi_icons_floatMargin_left'] = (isset($option9['sfsi_icons_floatMargin_left'])) ? intval($option9['sfsi_icons_floatMargin_left']) : '';
12
+
13
+ $option9['sfsi_icons_floatMargin_right'] = (isset($option9['sfsi_icons_floatMargin_right'])) ? intval($option9['sfsi_icons_floatMargin_right']) : '';
14
+
15
+ $option9['sfsi_disable_floaticons'] = (isset($option9['sfsi_disable_floaticons'])) ? sanitize_text_field($option9['sfsi_disable_floaticons']): 'no';
16
+
17
+ $style = ($option9['sfsi_icons_float'] == "yes") ? 'display: block;' : "display: none;";
18
+
19
+ ?>
20
+
21
+ <li class="sfsiLocationli">
22
+
23
+ <div class="radio_section tb_4_ck cstmfltonpgstck" onclick="sfsi_toggleflotpage_que3(this);">
24
+
25
+ <input name="sfsi_icons_float" <?php echo ($option9['sfsi_icons_float']=='yes') ? 'checked="true"' : '' ;?> type="checkbox" value="yes" class="styled" />
26
+
27
+ <p><span class="sfsi_toglepstpgspn">Floating over your website's pages</span></p>
28
+ </div>
29
+
30
+ <div class="sfsi_right_info" <?php echo 'style="'.$style.'"';?>>
31
+ <p><span style="margin-left: 31px;">Define the location:</span></p>
32
+
33
+ <div class="sfsi_tab_3_icns">
34
+
35
+
36
+
37
+ <ul class="sfsi_tab_3_icns flthmonpg">
38
+
39
+
40
+
41
+ <div class="sfsi_position_divider">
42
+
43
+ <li>
44
+
45
+ <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='top-left') ? 'checked="true"' : '' ;?> type="radio" value="top-left" class="styled" />
46
+
47
+ <span class="sfsi_flicnsoptn3 sfsioptntl">Top left</span>
48
+
49
+ <label><img src="<?php echo SFSI_PLUGURL;?>images/top_left.png" alt='error'/></label>
50
+
51
+ </li>
52
+
53
+
54
+
55
+ <li>
56
+
57
+ <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='center-top') ? 'checked="true"' : '' ;?> type="radio" value="center-top" class="styled" />
58
+
59
+
60
+
61
+ <span class="sfsi_flicnsoptn3 sfsioptncl">Center top</span>
62
+
63
+ <label class="sfsi_float_position_icon_label"><img src="<?php echo SFSI_PLUGURL;?>images/float_position_icon.png" alt='error'/></label>
64
+
65
+ </li>
66
+
67
+
68
+
69
+ <li>
70
+
71
+ <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='top-right') ? 'checked="true"' : '' ;?> type="radio" value="top-right" class="styled" />
72
+
73
+ <span class="sfsi_flicnsoptn3 sfsioptntr">Top right</span>
74
+
75
+ <label><img src="<?php echo SFSI_PLUGURL;?>images/top_right.png" alt='error' /></label>
76
+
77
+ </li>
78
+
79
+ </div>
80
+
81
+ <div class="sfsi_position_divider">
82
+
83
+ <li>
84
+
85
+ <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='center-left') ? 'checked="true"' : '' ;?> type="radio" value="center-left" class="styled" />
86
+
87
+
88
+
89
+ <span class="sfsi_flicnsoptn3 sfsioptncl">Center left</span>
90
+
91
+ <label><img src="<?php echo SFSI_PLUGURL;?>images/center_left.png" alt='error'/></label>
92
+
93
+ </li>
94
+
95
+ <li></li>
96
+
97
+
98
+
99
+ <li>
100
+
101
+ <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='center-right') ? 'checked="true"' : '' ;?> type="radio" value="center-right" class="styled" />
102
+
103
+
104
+
105
+ <span class="sfsi_flicnsoptn3 sfsioptncr">Center right</span>
106
+
107
+ <label><img src="<?php echo SFSI_PLUGURL;?>images/center_right.png" alt='error'/></label>
108
+
109
+ </li>
110
+
111
+
112
+
113
+ </div>
114
+
115
+ <div class="sfsi_position_divider">
116
+
117
+ <li>
118
+
119
+ <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='bottom-left') ? 'checked="true"' : '' ;?> type="radio" value="bottom-left" class="styled" />
120
+
121
+ <span class="sfsi_flicnsoptn3 sfsioptnbl">Bottom left</span>
122
+
123
+ <label><img src="<?php echo SFSI_PLUGURL;?>images/bottom_left.png" alt='error'alt='error'/></label>
124
+
125
+ </li>
126
+
127
+
128
+
129
+ <li>
130
+
131
+ <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='center-bottom') ? 'checked="true"' : '' ;?> type="radio" value="center-bottom" class="styled" />
132
+
133
+
134
+
135
+ <span class="sfsi_flicnsoptn3 sfsioptncr">Center bottom</span>
136
+
137
+ <label class="sfsi_float_position_icon_label sfsi_center_botttom"><img class="sfsi_img_center_bottom" src="<?php echo SFSI_PLUGURL;?>images/float_position_icon.png" alt='error'/></label>
138
+
139
+ </li>
140
+
141
+ <li>
142
+
143
+ <input name="sfsi_icons_floatPosition" <?php echo ( $option9['sfsi_icons_floatPosition']=='bottom-right') ? 'checked="true"' : '' ;?> type="radio" value="bottom-right" class="styled" />
144
+
145
+
146
+
147
+ <span class="sfsi_flicnsoptn3 sfsioptnbr">Bottom right</span>
148
+
149
+ <label><img src="<?php echo SFSI_PLUGURL;?>images/bottom_right.png" alt='error'/></label>
150
+
151
+ </li>
152
+
153
+ </div>
154
+
155
+ </ul>
156
+
157
+
158
+
159
+ <div style="width: 88%; float: left; margin:25px 0 0 25px">
160
+
161
+
162
+
163
+ <h4>Margin From: </h4>
164
+
165
+ <ul class="sfsi_floaticon_margin_sec">
166
+
167
+
168
+
169
+ <li>
170
+
171
+ <label>Top:</label>
172
+
173
+ <input name="sfsi_icons_floatMargin_top" type="text" value="<?php echo ($option9['sfsi_icons_floatMargin_top']!='') ? $option9['sfsi_icons_floatMargin_top'] : '' ;?>" />
174
+
175
+ <ins>Pixels</ins>
176
+
177
+ </li>
178
+
179
+
180
+
181
+ <li>
182
+
183
+ <label>Bottom:</label>
184
+
185
+ <input name="sfsi_icons_floatMargin_bottom" type="text" value="<?php echo ($option9['sfsi_icons_floatMargin_bottom'] != '') ? $option9['sfsi_icons_floatMargin_bottom'] : '' ;?>" />
186
+
187
+ <ins>Pixels</ins>
188
+
189
+ </li>
190
+
191
+
192
+
193
+ <li>
194
+
195
+ <label>Left:</label>
196
+
197
+ <input name="sfsi_icons_floatMargin_left" type="text" value="<?php echo ($option9['sfsi_icons_floatMargin_left']!='') ? $option9['sfsi_icons_floatMargin_left'] : '' ;?>" />
198
+
199
+ <ins>Pixels</ins>
200
+
201
+ </li>
202
+
203
+
204
+
205
+ <li>
206
+
207
+ <label>Right:</label>
208
+
209
+ <input name="sfsi_icons_floatMargin_right" type="text" value="<?php echo ($option9['sfsi_icons_floatMargin_right']!='') ? $option9['sfsi_icons_floatMargin_right'] : '' ;?>" />
210
+
211
+ <ins>Pixels</ins>
212
+
213
+ </li>
214
+
215
+ </ul>
216
+
217
+ </div>
218
+
219
+
220
+
221
+ <div style="width: 88%; float: left; margin:25px 0 0 7px">
222
+
223
+ <p style="line-height: 34px;">
224
+
225
+ The icons will be floating on your page. If you want them <b>"sticky"</b>, please check out the <a target="_blank" href="https://www.ultimatelysocial.com/usm-premium/"><b>Premium Plugin</b></a>. Also in the Premium Plugin you can show the icons <b>vertically</b>, and give them <b>different settings for mobile.</b>
226
+
227
+ </p>
228
+
229
+ </div>
230
+
231
+ <div class="sfsi_disable_floatingicons_mobile">
232
+
233
+
234
+
235
+ <h4>Want to disable the floating icons on mobile?</h4>
236
+
237
+ <ul class="sfsi_make_icons sfsi_plus_mobile_float">
238
+
239
+ <li>
240
+
241
+ <input name="sfsi_disable_floaticons" <?php echo ( $option9['sfsi_disable_floaticons']=='yes') ? 'checked="true"' : '' ;?> type="radio" value="yes" class="styled" />
242
+
243
+ <span class="sfsi_flicnsoptn3">Yes</span>
244
+
245
+ </li>
246
+
247
+ <li>
248
+
249
+ <input name="sfsi_disable_floaticons" <?php echo ( $option9['sfsi_disable_floaticons']=='no') ? 'checked="true"' : '' ;?> type="radio" value="no" class="styled"/>
250
+
251
+ <span class="sfsi_flicnsoptn3">No</span>
252
+
253
+ </li>
254
+
255
+ </ul>
256
+
257
+ </div>
258
+
259
+ </div>
260
+
261
+ </div>
262
+
263
  </li>