WordPress Social Sharing Plugin – Social Warfare - Version 2.3.0

Version Description

(18 AUG 2017) =

  • Migrated the registration system from WooCommerce to EDD (THIS IS HUGE!)
  • Fixed some CSS for the button icon and count alignment.
  • Updated the share cache function for pin and OG stuff.
Download this release

Release Info

Developer WarfarePlugins
Plugin Icon 128x128 WordPress Social Sharing Plugin – Social Warfare
Version 2.3.0
Comparing to
See all releases

Code changes from version 2.2.11 to 2.3.0

css/admin-options-page.css CHANGED
@@ -164,11 +164,23 @@ img {
164
  margin: 0;
165
  }
166
 
167
- .sw-header-logo {
168
  height: 75px;
169
  float: left;
170
  }
171
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  .sw-header-menu {
173
  height: 75px;
174
  margin: 0;
164
  margin: 0;
165
  }
166
 
167
+ .sw-top-menu[sw-registered="0"] .sw-header-logo {
168
  height: 75px;
169
  float: left;
170
  }
171
 
172
+ .sw-top-menu[sw-registered="1"] .sw-header-logo-pro {
173
+ height: 75px;
174
+ float: left;
175
+ }
176
+ .sw-top-menu[sw-registered="1"] .sw-header-logo {
177
+ display:none;
178
+ }
179
+
180
+ .sw-top-menu[sw-registered="0"] .sw-header-logo-pro {
181
+ display:none;
182
+ }
183
+
184
  .sw-header-menu {
185
  height: 75px;
186
  margin: 0;
css/style.css CHANGED
@@ -1,1752 +1,1755 @@
1
- .nc_socialPanel {
2
- clear: both;
3
- display: -webkit-box;
4
- display: -webkit-flex;
5
- display: -moz-box;
6
- display: -ms-flexbox;
7
- display: flex;
8
- height: 34px;
9
- line-height: 1;
10
- margin-bottom: 20px!important;
11
- margin-top: 20px!important;
12
- overflow: hidden;
13
- padding: 0;
14
-
15
- -webkit-align-items: stretch;
16
- align-items: stretch;
17
- -webkit-box-align: stretch;
18
- -moz-box-align: stretch;
19
- -webkit-box-pack: justify;
20
- -moz-box-pack: justify;
21
- direction: ltr;
22
- -ms-flex-align: stretch;
23
- -ms-flex-line-pack: center;
24
- -ms-flex-pack: justify;
25
- -webkit-flex-wrap: wrap;
26
- -ms-flex-wrap: wrap;
27
- flex-wrap: wrap;
28
- -webkit-justify-content: space-between;
29
- justify-content: space-between;
30
- }
31
-
32
- .nc_socialPanel:not(.nc_floater):not(.nc_socialPanelSide) {
33
- width: 100%!important;
34
- }
35
-
36
- .nc_wrapper .nc_socialPanel {
37
- margin-bottom: 10px!important;
38
- margin-top: 10px!important;
39
- }
40
-
41
- div.nc_socialPanel .nc_tweetContainer {
42
- -webkit-border-radius: 2px;
43
- border-radius: 2px;
44
- cursor: pointer;
45
- float: left;
46
- font-family: Lato;
47
- height: 32px;
48
- margin: 0 5px 3px 5px;
49
- min-width: 34px;
50
- overflow: hidden;
51
- text-align: center;
52
- -webkit-transition: all 0.1s linear;
53
- transition: all 0.1s linear;
54
-
55
- border-size: 1px;
56
- }
57
-
58
- div.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer {
59
- -webkit-box-flex: 1;
60
- -moz-box-flex: 1;
61
- -webkit-flex: 1;
62
- -ms-flex: 1;
63
- flex: 1;
64
- }
65
-
66
- .nc_socialPanel .nc_tweetContainer a.nc_tweet,
67
- .nc_socialPanel .totes .swp_count {
68
- display: block;
69
- display: -webkit-box;
70
- display: -webkit-flex;
71
- display: -moz-box;
72
- display: -ms-flexbox;
73
- display: flex;
74
- font-family: Lato, sans-serif;
75
- font-size: 18px!important;
76
- font-weight: bold;
77
- height: 30px;
78
- text-decoration: none;
79
- text-decoration: none!important;
80
- text-transform: none;
81
-
82
- -webkit-box-direction: normal;
83
- -moz-box-direction: normal;
84
- -webkit-box-orient: horizontal;
85
- -moz-box-orient: horizontal;
86
- -webkit-flex-flow: row wrap;
87
- -ms-flex-flow: row wrap;
88
- flex-flow: row wrap;
89
- }
90
-
91
- .nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-child(1) {
92
- margin-left: 0;
93
- }
94
-
95
- .nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-last-child(1) {
96
- margin-right: 0;
97
- }
98
-
99
- .nc_socialPanel a .swp_count:not(.swp_hide) {
100
- display: inline-block;
101
- line-height: 32px;
102
- margin: 0;
103
- padding: 0 5px;
104
-
105
- -webkit-box-flex: 1;
106
- -moz-box-flex: 1;
107
- }
108
-
109
- .nc_socialPanel a .swp_count.swp_hide {
110
- margin: 0 auto;
111
- }
112
-
113
- .nc_socialPanel span:before {
114
- content: initial!important;
115
- }
116
-
117
- .nc_socialPanel .totes .swp_count {
118
- line-height: 30px;
119
- }
120
-
121
- .nc_socialPanel span.swp_count {
122
- font-size: 14px;
123
- }
124
-
125
- .nc_socialPanel span.iconFiller {
126
- font-size: 18px;
127
- margin: 0 auto;
128
- }
129
-
130
- .nc_socialPanel.notMobile .nc_tweetContainer:nth-child(1) {
131
- margin-left: 0;
132
- }
133
-
134
- .nc_socialPanel:not(.nc_socialPanelSide) {
135
- -webkit-transition: opacity 0.2s ease-in-out;
136
- transition: opacity 0.2s ease-in-out;
137
- }
138
-
139
- .nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-child(1) {
140
- margin-left: 0;
141
- margin-right: 15px;
142
- padding-left: 0;
143
- }
144
-
145
- .nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-last-child(1) {
146
- margin-right: 0;
147
- padding-right: 0;
148
- }
149
-
150
- a.swp_CTT {
151
- cursor: pointer;
152
- }
153
-
154
- span.swp_share {
155
- display: block;
156
- float: right;
157
- float: left;
158
- font-size: 14px;
159
- font-weight: normal;
160
- height: 30px;
161
- line-height: 30px;
162
- margin: 0 0 0 6px;
163
- max-width: none!important;
164
- vertical-align: middle;
165
- }
166
-
167
- .nc_socialPanelSide span.swp_share {
168
- margin: 0;
169
- }
170
-
171
- .nc_socialPanel .sw {
172
- float: left;
173
- height: 30px;
174
- line-height: 32px;
175
- margin: 0 5px;
176
- text-shadow: none!important;
177
- width: 20px;
178
- }
179
-
180
- .iconFiller {
181
- display: block;
182
- float: left;
183
- height: 30px;
184
- overflow: hidden;
185
- -webkit-transition: width 0.1s linear;
186
- transition: width 0.1s linear;
187
- }
188
-
189
- .nc_socialPanel .iconFiller {
190
- width: 30px;
191
- }
192
-
193
- span.spaceManWilly {
194
- display: block;
195
- width: 120px;
196
- }
197
-
198
- .nc_socialPanel .totes {
199
- background: #c4c4c4;
200
- border: 1px solid #e08a0f;
201
- -webkit-border-radius: 2px;
202
- border-radius: 2px;
203
- color: white;
204
- cursor: default;
205
- display: block;
206
- font-size: 19px;
207
- padding: 0 10px;
208
-
209
- -webkit-box-flex: 0!important;
210
- -moz-box-flex: 0!important;
211
- -webkit-flex: none!important;
212
- -ms-flex: none!important;
213
- flex: none!important;
214
- }
215
-
216
- .nc_socialPanel div.totes.totesalt,
217
- .nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {
218
- background: transparent!important;
219
- border: none;
220
- color: #474b4d;
221
- margin-left: 0!important;
222
- }
223
-
224
- div.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {
225
- background: transparent;
226
- color: #474b4d;
227
- margin-left: 10px;
228
- }
229
-
230
- .nc_socialPanel .totes.totesalt .swp_label {
231
- color: #474b4d;
232
- font-size: 10px;
233
- letter-spacing: 0;
234
- min-width: 40px;
235
- vertical-align: middle;
236
- }
237
-
238
- .nc_socialPanel .totes .swp_label {
239
- font-size: 10px;
240
- vertical-align: middle;
241
- }
242
-
243
- .nc_socialPanel .totes.totesalt .swp_count {
244
- color: #474b4d;
245
- font-size: 24px;
246
- }
247
-
248
- .nc_socialPanel:hover .totes,
249
- .nc_socialPanel.swp_fullColor .totes,
250
- .nc_socialPanel.swp_fade .totes,
251
- .nc_socialPanel.swp_customFull:hover div.totes {
252
- background: #e08a0f;
253
- }
254
-
255
- .nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer.totes.totesalt:before {
256
- content: "o";
257
- display: inline-block;
258
- font-family: sw-icon-font;
259
- margin-top: 7px;
260
- vertical-align: top;
261
- }
262
-
263
- .nc_socialPanel:not(.nc_socialPanelSide) .totes.totesalt .swp_count {
264
- display: inline-block;
265
- line-height: 0;
266
- margin-left: 8px;
267
- margin-top: 12px;
268
- min-width: 45px;
269
- position: relative;
270
- vertical-align: middle;
271
- }
272
-
273
- span.swp_label {
274
- display: block;
275
- font-size: 9px!important;
276
- margin-top: 13px;
277
- position: absolute;
278
- text-align: center!important;
279
- text-transform: uppercase;
280
- }
281
-
282
- .nc_socialPanelSide span.swp_label {
283
- margin-top: 0;
284
- }
285
-
286
- .nc_socialPanel.swp_leaf .nc_tweetContainer {
287
- -webkit-border-radius: 15px 0;
288
- border-radius: 15px 0;
289
- border-width: 1px;
290
- }
291
-
292
- .nc_socialPanel.swp_pill .nc_tweetContainer {
293
- -webkit-border-radius: 50px;
294
- border-radius: 50px;
295
- border-width: 1px;
296
- }
297
-
298
- .nc_socialPanel.swp_shift .nc_tweetContainer:not(.totes) {
299
- border-width: 1px;
300
- -moz-transform: skew(-25deg);
301
- -o-transform: skew(-25deg);
302
- -webkit-transform: skew(-25deg);
303
- }
304
-
305
- .nc_socialPanel.swp_shift .nc_tweetContainer a {
306
- -moz-transform: skew(25deg);
307
- -o-transform: skew(25deg);
308
- -webkit-transform: skew(25deg);
309
- }
310
-
311
- .swp_connected .nc_tweetContainer,
312
- .swp_connected:hover .nc_tweetContainer,
313
- .swp_connected .nc_tweetContainer:hover {
314
- -webkit-border-radius: 0!important;
315
- border-radius: 0!important;
316
- border-width: 1px;
317
- margin: 0!important;
318
- }
319
-
320
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .googlePlus,
321
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .googlePlus:hover,
322
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .googlePlus:not(:hover) {
323
- border: 1px solid #df4b37;
324
- }
325
-
326
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .twitter,
327
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .twitter:hover,
328
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .twitter:not(:hover) {
329
- border: 1px solid #429cd6;
330
- }
331
-
332
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_fb,
333
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_fb:hover,
334
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_fb:not(:hover) {
335
- border: 1px solid #3a589e;
336
- }
337
-
338
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .nc_pinterest,
339
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .nc_pinterest:hover,
340
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .nc_pinterest:not(:hover) {
341
- border: 1px solid #cd2029;
342
- }
343
-
344
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .linkedIn,
345
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .linkedIn:hover,
346
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .linkedIn:not(:hover) {
347
- border: 1px solid #0d77b7;
348
- }
349
-
350
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_tumblr,
351
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_tumblr:hover,
352
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_tumblr:not(:hover) {
353
- border: 1px solid #39475d;
354
- }
355
-
356
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_stumbleupon,
357
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_stumbleupon:hover,
358
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_stumbleupon:not(:hover) {
359
- border: 1px solid #ef5025;
360
- }
361
-
362
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_yummly,
363
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_yummly:hover,
364
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_yummly:not(:hover) {
365
- border: 1px solid #e26426;
366
- }
367
-
368
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_reddit,
369
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_reddit:hover,
370
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_reddit:not(:hover) {
371
- border: 1px solid #f04b23;
372
- }
373
-
374
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_email,
375
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_email:hover,
376
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_email:not(:hover) {
377
- border: 1px solid #6bcce9;
378
- }
379
-
380
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_whatsapp,
381
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_whatsapp:hover,
382
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_whatsapp:not(:hover) {
383
- border: 1px solid #71c169;
384
- }
385
-
386
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_pocket,
387
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_pocket:hover,
388
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_pocket:not(:hover) {
389
- border: 1px solid #ef4056;
390
- }
391
-
392
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_buffer,
393
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_buffer:hover,
394
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_buffer:not(:hover) {
395
- border: 1px solid #323b43;
396
- }
397
-
398
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_hacker_news,
399
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_hacker_news:hover,
400
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_hacker_news:not(:hover) {
401
- border: 1px solid #d85623;
402
- }
403
-
404
- .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_flipboard,
405
- html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_flipboard:hover,
406
- body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_flipboard:not(:hover) {
407
- border: 1px solid #bf2626;
408
- }
409
-
410
- .nc_socialPanel.swp_d_fullColor .googlePlus,
411
- html body .nc_socialPanel.swp_i_fullColor .googlePlus:hover,
412
- body .nc_socialPanel.swp_o_fullColor:hover .googlePlus {
413
- background: #df4b37;
414
- border: 1px solid #c44133;
415
- }
416
-
417
- .nc_socialPanel.swp_d_fullColor .twitter,
418
- html body .nc_socialPanel.swp_i_fullColor .twitter:hover,
419
- body .nc_socialPanel.swp_o_fullColor:hover .twitter {
420
- background: #429cd6;
421
- border: 1px solid #3c87b2;
422
- }
423
-
424
- .nc_socialPanel.swp_d_fullColor .swp_fb,
425
- html body .nc_socialPanel.swp_i_fullColor .swp_fb:hover,
426
- body .nc_socialPanel.swp_o_fullColor:hover .swp_fb {
427
- background: #3a589e;
428
- border: 1px solid #2e4675;
429
- }
430
-
431
- .nc_socialPanel.swp_d_fullColor .nc_pinterest,
432
- html body .nc_socialPanel.swp_i_fullColor .nc_pinterest:hover,
433
- body .nc_socialPanel.swp_o_fullColor:hover .nc_pinterest {
434
- background: #cd2029;
435
- border: 1px solid #aa1b29;
436
- }
437
-
438
- .nc_socialPanel.swp_d_fullColor .linkedIn,
439
- html body .nc_socialPanel.swp_i_fullColor .linkedIn:hover,
440
- body .nc_socialPanel.swp_o_fullColor:hover .linkedIn {
441
- background: #0d77b7;
442
- border: 1px solid #0c6591;
443
- }
444
-
445
- .nc_socialPanel.swp_d_fullColor .swp_tumblr,
446
- html body .nc_socialPanel.swp_i_fullColor .swp_tumblr:hover,
447
- body .nc_socialPanel.swp_o_fullColor:hover .swp_tumblr {
448
- background: #39475d;
449
- border: 1px solid #27313f;
450
- }
451
-
452
- .nc_socialPanel.swp_d_fullColor .swp_stumbleupon,
453
- html body .nc_socialPanel.swp_i_fullColor .swp_stumbleupon:hover,
454
- body .nc_socialPanel.swp_o_fullColor:hover .swp_stumbleupon {
455
- background: #ef5025;
456
- border: 1px solid #d34427;
457
- }
458
-
459
- .nc_socialPanel.swp_d_fullColor .swp_yummly,
460
- html body .nc_socialPanel.swp_i_fullColor .swp_yummly:hover,
461
- body .nc_socialPanel.swp_o_fullColor:hover .swp_yummly {
462
- background: #e26426;
463
- border: 1px solid #b65027;
464
- }
465
-
466
- .nc_socialPanel.swp_d_fullColor .swp_reddit,
467
- html body .nc_socialPanel.swp_i_fullColor .swp_reddit:hover,
468
- body .nc_socialPanel.swp_o_fullColor:hover .swp_reddit {
469
- background: #f04b23;
470
- border: 1px solid #d33f27;
471
- }
472
-
473
- .nc_socialPanel.swp_d_fullColor .swp_email,
474
- html body .nc_socialPanel.swp_i_fullColor .swp_email:hover,
475
- body .nc_socialPanel.swp_o_fullColor:hover .swp_email {
476
- background: #6bcce9;
477
- border: 1px solid #61bace;
478
- }
479
-
480
- .nc_socialPanel.swp_d_fullColor .swp_whatsapp,
481
- html body .nc_socialPanel.swp_i_fullColor .swp_whatsapp:hover,
482
- body .nc_socialPanel.swp_o_fullColor:hover .swp_whatsapp {
483
- background: #71c169;
484
- border: 1px solid #28b04b;
485
- }
486
-
487
- .nc_socialPanel.swp_d_fullColor .swp_pocket,
488
- html body .nc_socialPanel.swp_i_fullColor .swp_pocket:hover,
489
- body .nc_socialPanel.swp_o_fullColor:hover .swp_pocket {
490
- background: #ef4056;
491
- border: 1px solid #ce3d55;
492
- }
493
-
494
- .nc_socialPanel.swp_d_fullColor .swp_buffer,
495
- html body .nc_socialPanel.swp_i_fullColor .swp_buffer:hover,
496
- body .nc_socialPanel.swp_o_fullColor:hover .swp_buffer {
497
- background: #323b43;
498
- border: 1px solid #000;
499
- }
500
-
501
- .nc_socialPanel.swp_d_fullColor .swp_hacker_news,
502
- html body .nc_socialPanel.swp_i_fullColor .swp_hacker_news:hover,
503
- body .nc_socialPanel.swp_o_fullColor:hover .swp_hacker_news {
504
- background: #f16522;
505
- border: 1px solid #d85623;
506
- }
507
-
508
- .nc_socialPanel.swp_d_fullColor .swp_flipboard,
509
- html body .nc_socialPanel.swp_i_fullColor .swp_flipboard:hover,
510
- body .nc_socialPanel.swp_o_fullColor:hover .swp_flipboard {
511
- background: #e02828;
512
- border: 1px solid #bf2626;
513
- }
514
-
515
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .googlePlus,
516
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .googlePlus:hover,
517
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .googlePlus {
518
- border-bottom: 3px solid #c44133;
519
- }
520
-
521
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .twitter,
522
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .twitter:hover,
523
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .twitter {
524
- border-bottom: 3px solid #5595bc;
525
- }
526
-
527
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_fb,
528
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_fb:hover,
529
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_fb {
530
- border-bottom: 3px solid #2e4675;
531
- }
532
-
533
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .nc_pinterest,
534
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .nc_pinterest:hover,
535
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .nc_pinterest {
536
- border-bottom: 3px solid #aa1b29;
537
- }
538
-
539
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .linkedIn,
540
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .linkedIn:hover,
541
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .linkedIn {
542
- border-bottom: 3px solid #0c6591;
543
- }
544
-
545
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_tumblr,
546
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_tumblr:hover,
547
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_tumblr {
548
- border-bottom: 3px solid #27313f;
549
- }
550
-
551
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_stumbleupon,
552
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_stumbleupon:hover,
553
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_stumbleupon {
554
- border-bottom: 3px solid #d34427;
555
- }
556
-
557
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_yummly,
558
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_yummly:hover,
559
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_yummly {
560
- border-bottom: 3px solid #b65027;
561
- }
562
-
563
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_reddit,
564
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_reddit:hover,
565
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_reddit {
566
- border-bottom: 3px solid #d33f27;
567
- }
568
-
569
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_email,
570
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_email:hover,
571
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_email {
572
- border-bottom: 3px solid #61bace;
573
- }
574
-
575
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_whatsapp,
576
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_whatsapp:hover,
577
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_whatsapp {
578
- border-bottom: 3px solid #28b04b;
579
- }
580
-
581
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_pocket,
582
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_pocket:hover,
583
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_pocket {
584
- border-bottom: 3px solid #ce3d55;
585
- }
586
-
587
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_buffer,
588
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_buffer:hover,
589
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_buffer {
590
- border-bottom: 3px solid #000;
591
- }
592
-
593
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_hacker_news,
594
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_hacker_news:hover,
595
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_hacker_news {
596
- border-bottom: 3px solid #d85623;
597
- }
598
-
599
- .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_flipboard,
600
- html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_flipboard:hover,
601
- body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_flipboard {
602
- border-bottom: 3px solid #bf2626;
603
- }
604
-
605
- .nc_socialPanel.swp_d_lightGray .nc_tweetContainer,
606
- html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover,
607
- body .nc_socialPanel.swp_o_lightGray:hover .nc_tweetContainer {
608
- background-color: #ccc;
609
- border: 1px solid #ccc;
610
- }
611
-
612
- .nc_socialPanel.swp_threeDee.swp_d_lightGray .nc_tweetContainer:not(.totesalt),
613
- html body .nc_socialPanel.swp_threeDee.swp_i_lightGray .nc_tweetContainer:not(.totesalt):hover,
614
- body .nc_socialPanel.swp_threeDee.swp_o_lightGray:hover .nc_tweetContainer:not(.totesalt) {
615
- border-bottom: 3px solid #999;
616
- }
617
-
618
- .nc_socialPanel.swp_d_mediumGray .nc_tweetContainer,
619
- html body .nc_socialPanel.swp_i_mediumGray .nc_tweetContainer:hover,
620
- body .nc_socialPanel.swp_o_mediumGray:hover .nc_tweetContainer {
621
- background-color: #999;
622
- border: 1px solid #999;
623
- }
624
-
625
- .nc_socialPanel.swp_threeDee.swp_d_mediumGray .nc_tweetContainer:not(.totesalt),
626
- html body .nc_socialPanel.swp_threeDee.swp_i_mediumGray .nc_tweetContainer:not(.totesalt):hover,
627
- body .nc_socialPanel.swp_threeDee.swp_o_mediumGray:hover .nc_tweetContainer:not(.totesalt) {
628
- border-bottom: 3px solid #444;
629
- }
630
-
631
- .nc_socialPanel.swp_d_darkGray .nc_tweetContainer,
632
- html body .nc_socialPanel.swp_i_darkGray .nc_tweetContainer:hover,
633
- body .nc_socialPanel.swp_o_darkGray:hover .nc_tweetContainer {
634
- background-color: #444;
635
- border: 1px solid #444;
636
- }
637
-
638
- .nc_socialPanel.swp_threeDee.swp_d_darkGray .nc_tweetContainer:not(.totesalt),
639
- html body .nc_socialPanel.swp_threeDee.swp_i_darkGray .nc_tweetContainer:not(.totesalt):hover,
640
- body .nc_socialPanel.swp_threeDee.swp_o_darkGray:hover .nc_tweetContainer:not(.totesalt) {
641
- border-bottom: 3px solid #222;
642
- }
643
-
644
- .nc_socialPanel.swp_d_lgOutlines a,
645
- html body .nc_socialPanel.swp_i_lgOutlines a:hover,
646
- body .nc_socialPanel.swp_o_lgOutlines:hover a {
647
- color: #ccc;
648
- }
649
-
650
- .nc_socialPanel.swp_d_lgOutlines .nc_tweetContainer,
651
- html body .nc_socialPanel.swp_i_lgOutlines .nc_tweetContainer:hover,
652
- body .nc_socialPanel.swp_o_lgOutlines:hover .nc_tweetContainer {
653
- background: transparent;
654
- border: 1px solid #ccc;
655
- }
656
-
657
- .nc_socialPanel.swp_d_mdOutlines a,
658
- html body .nc_socialPanel.swp_i_mdOutlines a:hover,
659
- body .nc_socialPanel.swp_o_mdOutlines:hover a {
660
- color: #999;
661
- }
662
-
663
- .nc_socialPanel.swp_d_mdOutlines .nc_tweetContainer,
664
- html body .nc_socialPanel.swp_i_mdOutlines .nc_tweetContainer:hover,
665
- body .nc_socialPanel.swp_o_mdOutlines:hover .nc_tweetContainer {
666
- background: transparent;
667
- border: 1px solid #999;
668
- }
669
-
670
- .nc_socialPanel.swp_d_dgOutlines a,
671
- html body .nc_socialPanel.swp_i_dgOutlines a:hover,
672
- body .nc_socialPanel.swp_o_dgOutlines:hover a {
673
- color: #444;
674
- }
675
-
676
- .nc_socialPanel.swp_d_dgOutlines .nc_tweetContainer,
677
- html body .nc_socialPanel.swp_i_dgOutlines .nc_tweetContainer:hover,
678
- body .nc_socialPanel.swp_o_dgOutlines:hover .nc_tweetContainer {
679
- background: transparent;
680
- border: 1px solid #444;
681
- }
682
-
683
- .nc_socialPanel.swp_d_colorOutlines .googlePlus a,
684
- html body .nc_socialPanel.swp_i_colorOutlines .googlePlus a:hover,
685
- body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus a {
686
- color: #df4b37;
687
- }
688
-
689
- .nc_socialPanel.swp_d_colorOutlines .swp_fb a,
690
- html body .nc_socialPanel.swp_i_colorOutlines .swp_fb a:hover,
691
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb a {
692
- color: #3a589e;
693
- }
694
-
695
- .nc_socialPanel.swp_d_colorOutlines .nc_pinterest a,
696
- html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest a:hover,
697
- body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest a {
698
- color: #cd2029;
699
- }
700
-
701
- .nc_socialPanel.swp_d_colorOutlines .linkedIn a,
702
- html body .nc_socialPanel.swp_i_colorOutlines .linkedIn a:hover,
703
- body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn a {
704
- color: #0d77b7;
705
- }
706
-
707
- .nc_socialPanel.swp_d_colorOutlines .swp_tumblr a,
708
- html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr a:hover,
709
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr a {
710
- color: #39475d;
711
- }
712
-
713
- .nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon a,
714
- html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon a:hover,
715
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon a {
716
- color: #ef5025;
717
- }
718
-
719
- .nc_socialPanel.swp_d_colorOutlines .swp_yummly a,
720
- html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly a:hover,
721
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly a {
722
- color: #e26426;
723
- }
724
-
725
- .nc_socialPanel.swp_d_colorOutlines .swp_whatsapp a,
726
- html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp a:hover,
727
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp a {
728
- color: #71c169;
729
- }
730
-
731
- .nc_socialPanel.swp_d_colorOutlines .swp_pocket a,
732
- html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket a:hover,
733
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket a {
734
- color: #ef4056;
735
- }
736
-
737
- .nc_socialPanel.swp_d_colorOutlines .swp_reddit a,
738
- html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit a:hover,
739
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit a {
740
- color: #f04b23;
741
- }
742
-
743
- .nc_socialPanel.swp_d_colorOutlines .swp_email a,
744
- html body .nc_socialPanel.swp_i_colorOutlines .swp_email a:hover,
745
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email a {
746
- color: #6bcce9;
747
- }
748
-
749
- .nc_socialPanel.swp_d_colorOutlines .swp_buffer a,
750
- html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer a:hover,
751
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer a {
752
- color: #323b43;
753
- }
754
-
755
- .nc_socialPanel.swp_d_colorOutlines .swp_hacker_news a,
756
- html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news a:hover,
757
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news a {
758
- color: #f16522;
759
- }
760
-
761
- .nc_socialPanel.swp_d_colorOutlines .swp_flipboard a,
762
- html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard a:hover,
763
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard a {
764
- color: #e02828;
765
- }
766
-
767
- .nc_socialPanel.swp_d_colorOutlines .googlePlus,
768
- html body .nc_socialPanel.swp_i_colorOutlines .googlePlus:hover,
769
- body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus {
770
- background: transparent;
771
- border: 1px solid #df4b37;
772
- }
773
-
774
- .nc_socialPanel.swp_d_colorOutlines .twitter,
775
- html body .nc_socialPanel.swp_i_colorOutlines .twitter:hover,
776
- body .nc_socialPanel.swp_o_colorOutlines:hover .twitter {
777
- background: transparent;
778
- border: 1px solid #429cd6;
779
- }
780
-
781
- .nc_socialPanel.swp_d_colorOutlines .swp_fb,
782
- html body .nc_socialPanel.swp_i_colorOutlines .swp_fb:hover,
783
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb {
784
- background: transparent;
785
- border: 1px solid #3a589e;
786
- }
787
-
788
- .nc_socialPanel.swp_d_colorOutlines .nc_pinterest,
789
- html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest:hover,
790
- body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest {
791
- background: transparent;
792
- border: 1px solid #cd2029;
793
- }
794
-
795
- .nc_socialPanel.swp_d_colorOutlines .linkedIn,
796
- html body .nc_socialPanel.swp_i_colorOutlines .linkedIn:hover,
797
- body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn {
798
- background: transparent;
799
- border: 1px solid #0d77b7;
800
- }
801
-
802
- .nc_socialPanel.swp_d_colorOutlines .swp_tumblr,
803
- html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr:hover,
804
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr {
805
- background: transparent;
806
- border: 1px solid #39475d;
807
- }
808
-
809
- .nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon,
810
- html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon:hover,
811
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon {
812
- background: transparent;
813
- border: 1px solid #ef5025;
814
- }
815
-
816
- .nc_socialPanel.swp_d_colorOutlines .swp_yummly,
817
- html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly:hover,
818
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly {
819
- background: transparent;
820
- border: 1px solid #e26426;
821
- }
822
-
823
- .nc_socialPanel.swp_d_colorOutlines .swp_whatsapp,
824
- html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp:hover,
825
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp {
826
- background: transparent;
827
- border: 1px solid #71c169;
828
- }
829
-
830
- .nc_socialPanel.swp_d_colorOutlines .swp_reddit,
831
- html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit:hover,
832
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit {
833
- background: transparent;
834
- border: 1px solid #f04b23;
835
- }
836
-
837
- .nc_socialPanel.swp_d_colorOutlines .swp_email,
838
- html body .nc_socialPanel.swp_i_colorOutlines .swp_email:hover,
839
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email {
840
- background: transparent;
841
- border: 1px solid #6bcce9;
842
- }
843
-
844
- .nc_socialPanel.swp_d_colorOutlines .swp_pocket,
845
- html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket:hover,
846
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket {
847
- background: transparent;
848
- border: 1px solid #ef4056;
849
- }
850
-
851
- .nc_socialPanel.swp_d_colorOutlines .swp_buffer,
852
- html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer:hover,
853
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer {
854
- background: transparent;
855
- border: 1px solid #323b43;
856
- }
857
-
858
- .nc_socialPanel.swp_d_colorOutlines .swp_hacker_news,
859
- html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news:hover,
860
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news {
861
- background: transparent;
862
- border: 1px solid #f16522;
863
- }
864
-
865
- .nc_socialPanel.swp_d_colorOutlines .swp_flipboard,
866
- html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard:hover,
867
- body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard {
868
- background: transparent;
869
- border: 1px solid #bf2626;
870
- }
871
-
872
- .nc_socialPanelSide {
873
- flex-direction: column;
874
- height: auto;
875
- overflow: visible;
876
- top: 200px;
877
- -webkit-transition: all 0.2s linear;
878
- transition: all 0.2s linear;
879
- width: 100px!important;
880
- z-index: 9999999;
881
-
882
- -webkit-box-direction: normal;
883
- -moz-box-direction: normal;
884
- -webkit-box-orient: vertical;
885
- -moz-box-orient: vertical;
886
- -webkit-flex-direction: column;
887
- -ms-flex-direction: column;
888
- }
889
-
890
- .nc_socialPanelSide.slide {
891
- position: fixed;
892
- left: -100px;
893
- -webkit-transition: all 0.2s linear;
894
- transition: all 0.2s linear;
895
- }
896
-
897
- .nc_socialPanelSide.fade {
898
- display: none;
899
- position: fixed;
900
- left: 5px;
901
- -webkit-transition: all 0.2s linear;
902
- transition: all 0.2s linear;
903
- }
904
-
905
- .nc_socialPanelSide .nc_tweetContainer {
906
- background: #dd4b38;
907
- -webkit-border-radius: 3px;
908
- border-radius: 3px;
909
- clear: both;
910
- display: block;
911
- font-family: Lato, sans-serif;
912
- height: 32px;
913
- margin: 3px 0!important;
914
- overflow: hidden;
915
- padding: 0;
916
- -webkit-transition: all 0.1s linear;
917
- transition: all 0.1s linear;
918
- vertical-align: top;
919
- width: 90px;
920
- }
921
-
922
- .nc_socialPanelSide .nc_tweetContainer .iconFiller {
923
- display: inline-block;
924
- height: 40px;
925
- margin: 0 6px;
926
- padding: 0;
927
- -webkit-transition: all 0.1s linear;
928
- transition: all 0.1s linear;
929
- vertical-align: middle;
930
- width: 21px;
931
- }
932
-
933
- .nc_socialPanelSide .nc_tweetContainer .swp_count {
934
- display: inline-block;
935
- font-size: 14px;
936
- height: 32px;
937
- line-height: 35px;
938
- margin: 0;
939
- overflow: hidden;
940
- padding: 0;
941
- text-align: right;
942
- -webkit-transition: all 0.1s linear;
943
- transition: all 0.1s linear;
944
- vertical-align: top;
945
- width: 0;
946
- }
947
-
948
- .nc_socialPanelSide .nc_tweetContainer a {
949
- cursor: pointer;
950
- display: block;
951
- font-weight: 500;
952
- height: 36px;
953
- margin: 0;
954
- padding: 0;
955
- text-decoration: none;
956
- -webkit-transition: all 0.1s linear;
957
- transition: all 0.1s linear;
958
- vertical-align: top;
959
- }
960
-
961
- .nc_socialPanelSide .nc_tweetContainer .sw,
962
- .nc_socialPanelSide .nc_tweetContainer .swp_share {
963
- float: left;
964
- line-height: 34px;
965
- }
966
-
967
- .nc_socialPanelSide.swp_default .nc_tweetContainer .sw {
968
- line-height: 32px;
969
- }
970
-
971
- .nc_socialPanelSide.swp_default .nc_tweetContainer .swp_share {
972
- line-height: 30px;
973
- }
974
-
975
- .nc_socialPanelSide .nc_tweetContainer .swp_share {
976
- font-size: 13px;
977
- }
978
-
979
- .nc_socialPanelSide .nc_tweetContainer:hover,
980
- .nc_socialPanelSide .nc_tweetContainer:hover .iconFiller,
981
- .nc_socialPanelSide .nc_tweetContainer:hover .swp_count {
982
- -webkit-transition: all 0.1s linear;
983
- transition: all 0.1s linear;
984
- }
985
-
986
- .nc_socialPanelSide.swp_boxed {
987
- -ms-transform: scale(0.9);
988
- -webkit-transform: scale(0.9);
989
- transform: scale(0.9);
990
- }
991
-
992
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer {
993
- margin-bottom: 5px;
994
- }
995
-
996
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer,
997
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer a {
998
- height: 75px;
999
- position: relative;
1000
- width: 75px;
1001
- }
1002
-
1003
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer i.sw {
1004
- font-size: 27px;
1005
- height: 40px;
1006
- margin: 0;
1007
- padding-top: 10px;
1008
- text-align: center;
1009
- width: 100%;
1010
- }
1011
-
1012
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_share {
1013
- height: 35px;
1014
- opacity: 0;
1015
- position: absolute;
1016
- bottom: 0;
1017
- left: 0;
1018
- text-align: center;
1019
- width: 75px;
1020
- }
1021
-
1022
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count {
1023
- height: 35px;
1024
- margin: 0;
1025
- padding: 0;
1026
- position: absolute;
1027
- bottom: 0;
1028
- left: 0;
1029
- text-align: center;
1030
- -webkit-transition: padding 0.1s linear;
1031
- transition: padding 0.1s linear;
1032
- width: 100%;
1033
- }
1034
-
1035
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count.swp_hide,
1036
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller,
1037
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly {
1038
- height: 75px;
1039
- opacity: 1;
1040
- }
1041
-
1042
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer span.iconFiller {
1043
- height: 40px;
1044
- width: 75px;
1045
- }
1046
-
1047
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_count:not(.swp_hide) {
1048
- opacity: 0;
1049
- }
1050
-
1051
- .nc_socialPanelSide.swp_boxed .totes {
1052
- padding: 0;
1053
- width: 75px!important;
1054
- }
1055
-
1056
- .nc_socialPanelSide .nc_tweetContainer:not(.totes) {
1057
- line-height: 34px;
1058
- }
1059
-
1060
- .nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes) .iconFiller {
1061
- margin-left: 2px;
1062
- width: 30px;
1063
- }
1064
-
1065
- .nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count {
1066
- padding: 0 8px;
1067
- width: 48px;
1068
- }
1069
-
1070
- .nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count.swp_hide {
1071
- padding: 0;
1072
- width: 100%;
1073
- }
1074
-
1075
- .nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_hide .iconFiller {
1076
- display: block;
1077
- float: none;
1078
- margin: 0 auto;
1079
- }
1080
-
1081
- .nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes):hover {
1082
- width: 150px;
1083
- }
1084
-
1085
- .nc_socialPanelSide .nc_tweetContainer:not(.totes):hover .iconFiller,
1086
- .nc_socialPanelSide .nc_tweetContainer:not(.totes) .spaceManWilly {
1087
- width: 90px;
1088
- }
1089
-
1090
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover .iconFiller,
1091
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .spaceManWilly {
1092
- width: 100%;
1093
- }
1094
-
1095
- .nc_socialPanelSide .nc_tweetContainer.totes {
1096
- background: rgba(0, 0, 0, 0);
1097
- border: 0!important;
1098
- font-weight: 800;
1099
- height: 45px;
1100
- margin: 0;
1101
- padding: 0;
1102
- text-align: center;
1103
- width: 90px;
1104
- }
1105
-
1106
- .nc_socialPanelSide .nc_tweetContainer.totes .swp_count {
1107
- color: #444;
1108
- display: block;
1109
- font-family: Lato, sans-serif;
1110
- height: 28px;
1111
- text-align: center;
1112
- width: 100%;
1113
- }
1114
-
1115
- .nc_socialPanelSide .nc_tweetContainer.totes .swp_label {
1116
- color: #444;
1117
- display: block;
1118
- font-family: Lato, sans-serif;
1119
- font-size: 50%;
1120
- position: relative;
1121
- text-align: center;
1122
- width: 100%;
1123
- }
1124
-
1125
- .nc_wrapper {
1126
- background: white;
1127
- position: fixed;
1128
- -webkit-transition: top 0.5s bottom 0.5s;
1129
- transition: top 0.5s bottom 0.5s;
1130
- width: 100%;
1131
- z-index: 99999;
1132
- }
1133
-
1134
- .nc_wrapper.floatBottom {
1135
- bottom: 0;
1136
- left: 0;
1137
- }
1138
-
1139
- .nc_wrapper.floatTop {
1140
- top: 0;
1141
- left: 0;
1142
- }
1143
-
1144
- .nc_floater {
1145
- margin: 10px 0;
1146
- position: relative;
1147
- left: 304px;
1148
- width: 740px;
1149
- }
1150
-
1151
- .nc_socialPanelSide.hideCounts a {
1152
- text-align: center;
1153
- }
1154
-
1155
- .nc_socialPanelSide.hideCounts .iconFiller {
1156
- float: none;
1157
- text-align: left;
1158
- }
1159
-
1160
- .sw {
1161
- display: inline-block;
1162
- font-family: sw-icon-font!important;
1163
- font-size: inherit;
1164
- -moz-osx-font-smoothing: grayscale;
1165
- -webkit-font-smoothing: antialiased;
1166
- font-style: normal;
1167
- font-weight: normal;
1168
- text-rendering: auto;
1169
- -ms-transform: translate(0, 0);
1170
- -webkit-transform: translate(0, 0);
1171
- transform: translate(0, 0);
1172
- }
1173
-
1174
- .sw:before {
1175
- display: block!important;
1176
- }
1177
-
1178
- .wp-editor-container .sw:before {
1179
- font-size: 18px;
1180
- line-height: 22px;
1181
- }
1182
-
1183
- .wp-editor-container .sw-social-warfare:before {
1184
- color: #ee464f;
1185
- }
1186
-
1187
- .mce-container .sw-social-warfare {
1188
- color: #ee464f;
1189
- font-size: 20px;
1190
- margin-right: 15px;
1191
- vertical-align: middle;
1192
- }
1193
-
1194
- .sw-google-plus:before {
1195
- content: "h";
1196
- }
1197
-
1198
- .sw-pinterest:before {
1199
- content: "b";
1200
- }
1201
-
1202
- .sw-twitter:before {
1203
- content: "s";
1204
- }
1205
-
1206
- .sw-facebook:before {
1207
- content: "j";
1208
- }
1209
-
1210
- .sw-linkedin:before {
1211
- content: "f";
1212
- }
1213
-
1214
- .sw-tumblr:before {
1215
- content: "r";
1216
- }
1217
-
1218
- .sw-stumbleupon:before {
1219
- content: "q";
1220
- }
1221
-
1222
- .sw-reddit:before {
1223
- content: "a";
1224
- }
1225
-
1226
- .sw-email:before {
1227
- content: "k";
1228
- }
1229
-
1230
- .sw-yummly:before {
1231
- content: "x";
1232
- }
1233
-
1234
- .sw-whatsapp:before {
1235
- content: "y";
1236
- }
1237
-
1238
- .sw-pocket:before {
1239
- content: "B";
1240
- }
1241
-
1242
- .sw-buffer:before {
1243
- content: "z";
1244
- }
1245
-
1246
- .sw-hacker_news:before {
1247
- content: "D";
1248
- }
1249
-
1250
- .sw-flipboard:before {
1251
- content: "C";
1252
- }
1253
-
1254
- .sw-social-warfare:before {
1255
- content: "p";
1256
- }
1257
-
1258
- .swp_CTT {
1259
- text-decoration: none!important;
1260
- }
1261
-
1262
- .sw-tweet-clear {
1263
- zoom: 1;
1264
- }
1265
-
1266
- .sw-tweet-clear:after {
1267
- clear: both;
1268
- content: ".";
1269
- display: block;
1270
- height: 0;
1271
- visibility: hidden;
1272
- }
1273
-
1274
- .sw-click-to-tweet {
1275
- display: block;
1276
- margin: 15px 0;
1277
- padding: 15px 30px;
1278
- position: relative;
1279
- }
1280
-
1281
- .sw-click-to-tweet:after {
1282
- clear: both;
1283
- content: ".";
1284
- display: block;
1285
- height: 0;
1286
- line-height: 0;
1287
- visibility: hidden;
1288
- }
1289
-
1290
- .sw-click-to-tweet .sw-ctt-text {
1291
- margin: 0 0 10px;
1292
- padding: 0;
1293
- position: relative;
1294
- word-wrap: break-word;
1295
- }
1296
-
1297
- a .sw-click-to-tweet .sw-ctt-text {
1298
- display: block;
1299
- font-size: 24px;
1300
- font-weight: 500;
1301
- line-height: 140%;
1302
- margin: 0;
1303
- padding: 0;
1304
- position: relative;
1305
- text-decoration: none;
1306
- text-transform: none;
1307
- }
1308
-
1309
- .sw-click-to-tweet .sw-ctt-btn {
1310
- display: block;
1311
- float: right;
1312
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1313
- font-size: 12px;
1314
- font-weight: bold;
1315
- line-height: 100%;
1316
- margin: 10px 0 0;
1317
- padding: 3px 5px 3px 3px;
1318
- position: relative;
1319
- text-decoration: none;
1320
- text-transform: uppercase;
1321
- }
1322
-
1323
- .sw-click-to-tweet i.sw-twitter {
1324
- float: right;
1325
- font-size: 21px;
1326
- margin-left: 15px;
1327
- margin-top: 2px;
1328
- text-transform: none;
1329
- }
1330
-
1331
- a.swp_CTT.style1 .sw-click-to-tweet {
1332
- background-color: #fff;
1333
- border: 1px solid #ddd;
1334
- -webkit-border-radius: 4px;
1335
- border-radius: 4px;
1336
- }
1337
-
1338
- a.swp_CTT.style2 .sw-click-to-tweet {
1339
- background-color: #fff;
1340
- border: 4px double #ddd;
1341
- -webkit-border-radius: 0;
1342
- border-radius: 0;
1343
- }
1344
-
1345
- a.style2 .sw-click-to-tweet .sw-ctt-text {
1346
- color: #666;
1347
- font-style: italic;
1348
- text-decoration: none;
1349
- }
1350
-
1351
- a.swp_CTT.style3:hover .sw-click-to-tweet {
1352
- border-left: 10px solid #3c87b2;
1353
- padding-right: 20px;
1354
- -webkit-transition: all 0.25s linear;
1355
- transition: all 0.25s linear;
1356
- }
1357
-
1358
- a.swp_CTT.style3 .sw-click-to-tweet {
1359
- background-color: #429cd6;
1360
- border: none;
1361
- border-left: 10px solid #429cd6;
1362
- -webkit-border-radius: 0;
1363
- border-radius: 0;
1364
- padding-right: 20px;
1365
- -webkit-transition: all 0.25s linear;
1366
- transition: all 0.25s linear;
1367
- }
1368
-
1369
- a.style3 .sw-click-to-tweet .sw-ctt-text {
1370
- color: #fff;
1371
- font-style: italic;
1372
- text-decoration: none;
1373
- }
1374
-
1375
- a.swp_CTT.style4:hover .sw-click-to-tweet {
1376
- border-left: 10px solid #3c87b2;
1377
- -webkit-transition: all 0.25s linear;
1378
- transition: all 0.25s linear;
1379
- }
1380
-
1381
- a.swp_CTT.style4 .sw-click-to-tweet {
1382
- background-color: #333;
1383
- border-left: 10px solid #c33;
1384
- -webkit-border-radius: 0;
1385
- border-radius: 0;
1386
- -webkit-transition: all 0.25s linear;
1387
- transition: all 0.25s linear;
1388
- }
1389
-
1390
- a.swp_CTT.style5:hover .sw-click-to-tweet {
1391
- background-color: #d34250;
1392
- border-left: 10px solid #30394f;
1393
- -webkit-transition: all 0.25s linear;
1394
- transition: all 0.25s linear;
1395
- }
1396
-
1397
- a.swp_CTT.style5 .sw-click-to-tweet {
1398
- background-color: #30394f;
1399
- border-left: 10px solid #d34250;
1400
- -webkit-border-radius: 0;
1401
- border-radius: 0;
1402
- -webkit-transition: all 0.25s linear;
1403
- transition: all 0.25s linear;
1404
- }
1405
-
1406
- a.swp_CTT.style6:hover .sw-click-to-tweet {
1407
- background-color: #ced3dc;
1408
- border-left: 10px solid #d34250;
1409
- -webkit-transition: all 0.25s linear;
1410
- transition: all 0.25s linear;
1411
- }
1412
-
1413
- a.swp_CTT.style6 .sw-click-to-tweet {
1414
- background-color: #eee;
1415
- border-left: 10px solid #d34250;
1416
- -webkit-border-radius: 0;
1417
- border-radius: 0;
1418
- -webkit-transition: all 0.25s linear;
1419
- transition: all 0.25s linear;
1420
- }
1421
-
1422
- a.style6 .sw-click-to-tweet i.sw-twitter {
1423
- color: #30394f;
1424
- }
1425
-
1426
- .swp_pop_thumb {
1427
- -webkit-border-radius: 3px;
1428
- border-radius: 3px;
1429
- float: left;
1430
- height: 100px;
1431
- margin: 5px 25px 5px 0;
1432
- width: 100px;
1433
- }
1434
-
1435
- .swp_popular_post {
1436
- clear: both;
1437
- }
1438
-
1439
- .swp_clearfix:after {
1440
- clear: both;
1441
- content: " ";
1442
- display: block;
1443
- height: 0;
1444
- visibility: hidden;
1445
- }
1446
-
1447
- .swp_popular_post a.swp_popularity {
1448
- border: none;
1449
- display: block;
1450
- line-height: 1.5;
1451
- margin: 20px 0;
1452
- }
1453
-
1454
- span.swp_pop_count {
1455
- display: block;
1456
- font-size: 70%;
1457
- }
1458
-
1459
- .swp_widget_box {
1460
- -webkit-border-radius: 3px;
1461
- border-radius: 3px;
1462
- }
1463
-
1464
- div.sw-pinit {
1465
- display: table !important;
1466
- line-height: 0;
1467
- position: relative !important;
1468
- }
1469
-
1470
- div.sw-pinit a.sw-pinit-button,
1471
- div.sw-pinit a.sw-pinit-button:visited {
1472
- background: #cd2029;
1473
- border: 1px solid #aa1b29;
1474
- -webkit-border-radius: 4px;
1475
- border-radius: 4px;
1476
- color: #fff;
1477
- font-size: 20px;
1478
- height: 50px;
1479
- line-height: 45px;
1480
- opacity: 0;
1481
- padding: 0 30px;
1482
- position: absolute;
1483
- text-decoration: none;
1484
- -webkit-transition: opacity 0.5s;
1485
- transition: opacity 0.5s;
1486
- z-index: 200;
1487
- }
1488
-
1489
- div.sw-pinit:hover a.sw-pinit-button,
1490
- div.sw-pinit:focus a.sw-pinit-button {
1491
- opacity: 1;
1492
- }
1493
-
1494
- div.sw-pinit a.sw-pinit-button::before {
1495
- color: #fff;
1496
- content: "b";
1497
- float: left;
1498
- font-family: sw-icon-font;
1499
- font-size: 24px;
1500
- font-weight: normal;
1501
- line-height: 50px;
1502
- margin-left: -5px;
1503
- margin-right: 10px;
1504
- }
1505
-
1506
- div.sw-pinit a.sw-pinit-button:hover::before {
1507
- content: "F";
1508
- }
1509
-
1510
- div.sw-pinit a.sw-pinit-button::hover,
1511
- div.sw-pinit a.sw-pinit-button::focus {
1512
- background: #aa1b29;
1513
- color: #fff;
1514
- text-decoration: none;
1515
- }
1516
-
1517
- div.sw-pinit .sw-pinit-left {
1518
- left: 30px;
1519
- }
1520
-
1521
- div.sw-pinit .sw-pinit-center {
1522
- margin-left: -60px;
1523
- left: 50%;
1524
- }
1525
-
1526
- div.sw-pinit .sw-pinit-right {
1527
- right: 30px;
1528
- }
1529
-
1530
- div.sw-pinit .sw-pinit-top {
1531
- top: 30px;
1532
- }
1533
-
1534
- div.sw-pinit .sw-pinit-middle {
1535
- margin-top: -25px;
1536
- top: 50%;
1537
- }
1538
-
1539
- div.sw-pinit .sw-pinit-bottom {
1540
- bottom: 30px;
1541
- }
1542
-
1543
- .nc_socialPanel.notMobile .nc_tweetContainer:nth-last-child(1),
1544
- .mobile .nc_tweetContainer:nth-last-child(2),
1545
- .nc_tweetContainer.totes:nth-last-child(1) {
1546
- margin-right: 0;
1547
- }
1548
-
1549
- .nc_socialPanel.swp_d_fullColor a,
1550
- html body .nc_socialPanel.swp_i_fullColor .nc_tweetContainer:hover a,
1551
- body .nc_socialPanel.swp_o_fullColor:hover a,
1552
- .nc_socialPanel.swp_d_lightGray a,
1553
- html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover a,
1554
- body .nc_socialPanel.swp_o_lightGray:hover a,
1555
- .nc_socialPanel.swp_d_mediumGray a,
1556
- html body .nc_socialPanel.swp_i_mediumGray a:hover,
1557
- body .nc_socialPanel.swp_o_mediumGray:hover a,
1558
- .nc_socialPanel.swp_d_darkGray a,
1559
- html body .nc_socialPanel.swp_i_darkGray a:hover,
1560
- body .nc_socialPanel.swp_o_darkGray:hover a {
1561
- color: white;
1562
- }
1563
-
1564
- .nc_socialPanel.swp_d_colorOutlines .twitter a,
1565
- html body .nc_socialPanel.swp_i_colorOutlines .twitter a:hover,
1566
- body .nc_socialPanel.swp_o_colorOutlines:hover .twitter a,
1567
- .wp-editor-container .sw-twitter:before,
1568
- a.style1 .sw-click-to-tweet i.sw-twitter,
1569
- a.style2 .sw-click-to-tweet i.sw-twitter {
1570
- color: #429cd6;
1571
- }
1572
-
1573
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .swp_hide span.swp_share,
1574
- .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_share:not(.swp_hide) {
1575
- opacity: 1;
1576
- }
1577
-
1578
- .nc_socialPanel.mobile .iconFiller ~ .swp_count,
1579
- .sw-content-locator {
1580
- display: none;
1581
- }
1582
-
1583
- a.style1 .sw-click-to-tweet .sw-ctt-text,
1584
- a.style1 .sw-click-to-tweet .sw-ctt-btn {
1585
- color: #999;
1586
- text-decoration: none;
1587
- }
1588
-
1589
- a.style1:hover .sw-click-to-tweet .sw-ctt-text,
1590
- a.style1:hover .sw-click-to-tweet .sw-ctt-btn,
1591
- a.style2:hover .sw-click-to-tweet .sw-ctt-text,
1592
- a.style2 .sw-click-to-tweet .sw-ctt-btn,
1593
- a.style2:hover .sw-click-to-tweet .sw-ctt-btn {
1594
- color: #666;
1595
- text-decoration: none;
1596
- }
1597
-
1598
- a.style3:hover .sw-click-to-tweet .sw-ctt-text,
1599
- a.style3 .sw-click-to-tweet .sw-ctt-btn,
1600
- a.style3:hover .sw-click-to-tweet .sw-ctt-btn,
1601
- a.style3 .sw-click-to-tweet i.sw-twitter,
1602
- a.style4 .sw-click-to-tweet .sw-ctt-text,
1603
- a.style4:hover .sw-click-to-tweet .sw-ctt-text,
1604
- a.style4 .sw-click-to-tweet .sw-ctt-btn,
1605
- a.style4:hover .sw-click-to-tweet .sw-ctt-btn,
1606
- a.style5 .sw-click-to-tweet .sw-ctt-text,
1607
- a.style5:hover .sw-click-to-tweet .sw-ctt-text,
1608
- a.style5 .sw-click-to-tweet .sw-ctt-btn,
1609
- a.style5:hover .sw-click-to-tweet .sw-ctt-btn {
1610
- color: #fff;
1611
- text-decoration: none;
1612
- }
1613
-
1614
- a.style4 .sw-click-to-tweet i.sw-twitter,
1615
- a.style5 .sw-click-to-tweet i.sw-twitter {
1616
- color: #fff;
1617
- }
1618
-
1619
- a.style6 .sw-click-to-tweet .sw-ctt-text,
1620
- a.style6 .sw-click-to-tweet .sw-ctt-btn {
1621
- color: #30394f;
1622
- text-decoration: none;
1623
- }
1624
-
1625
- a.style6:hover .sw-click-to-tweet .sw-ctt-text,
1626
- a.style6:hover .sw-click-to-tweet .sw-ctt-btn,
1627
- a.style6:hover .sw-click-to-tweet i.sw-twitter {
1628
- color: #2a2d34;
1629
- text-decoration: none;
1630
- }
1631
-
1632
- .scale-70 {
1633
- -ms-transform: scale(0.7);
1634
- -webkit-transform: scale(0.7);
1635
- transform: scale(0.7);
1636
- }
1637
-
1638
- .nc_socialPanel:not(.nc_floater).scale-70.scale-fullWidth {
1639
- width: 142.8571428571429%!important;
1640
- }
1641
-
1642
- .scale-80 {
1643
- -ms-transform: scale(0.8);
1644
- -webkit-transform: scale(0.8);
1645
- transform: scale(0.8);
1646
- }
1647
-
1648
- .nc_socialPanel:not(.nc_floater).scale-80.scale-fullWidth {
1649
- width: 125%!important;
1650
- }
1651
-
1652
- .scale-90 {
1653
- -ms-transform: scale(0.9);
1654
- -webkit-transform: scale(0.9);
1655
- transform: scale(0.9);
1656
- }
1657
-
1658
- .nc_socialPanel:not(.nc_floater).scale-90.scale-fullWidth {
1659
- width: 111.111111111111%!important;
1660
- }
1661
-
1662
- .scale-110 {
1663
- -ms-transform: scale(1.1);
1664
- -webkit-transform: scale(1.1);
1665
- transform: scale(1.1);
1666
- }
1667
-
1668
- .nc_socialPanel:not(.nc_floater).scale-110.scale-fullWidth {
1669
- width: 90.90909090909091%!important;
1670
- }
1671
-
1672
- .scale-120 {
1673
- -ms-transform: scale(1.2);
1674
- -webkit-transform: scale(1.2);
1675
- transform: scale(1.2);
1676
- }
1677
-
1678
- .nc_socialPanel:not(.nc_floater).scale-120.scale-fullWidth {
1679
- width: 83.33333333333333%!important;
1680
- }
1681
-
1682
- .scale-130 {
1683
- -ms-transform: scale(1.3);
1684
- -webkit-transform: scale(1.3);
1685
- transform: scale(1.3);
1686
- }
1687
-
1688
- .nc_socialPanel:not(.nc_floater).scale-130.scale-fullWidth {
1689
- width: 76.92307692307692%!important;
1690
- }
1691
-
1692
- .scale-140 {
1693
- -ms-transform: scale(1.4);
1694
- -webkit-transform: scale(1.4);
1695
- transform: scale(1.4);
1696
- }
1697
-
1698
- .nc_socialPanel:not(.nc_floater).scale-140.scale-fullWidth {
1699
- width: 71.42857142857143%!important;
1700
- }
1701
-
1702
- .scale-fullWidth,
1703
- .scale-left,
1704
- .nc_floater.scale-center,
1705
- .nc_floater.scale-right {
1706
- -ms-transform-origin: left;
1707
- -webkit-transform-origin: left;
1708
- transform-origin: left;
1709
- }
1710
-
1711
- .scale-right {
1712
- -ms-transform-origin: right;
1713
- -webkit-transform-origin: right;
1714
- transform-origin: right;
1715
- }
1716
-
1717
- .scale-center {
1718
- -ms-transform-origin: center;
1719
- -webkit-transform-origin: center;
1720
- transform-origin: center;
1721
- }
1722
-
1723
- div.nc_socialPanel .nc_tweetContainer.swp_emphasize {
1724
- -webkit-box-flex: 2;
1725
- -moz-box-flex: 2;
1726
- -webkit-flex: 2;
1727
- -ms-flex: 2;
1728
- flex: 2;
1729
- }
1730
-
1731
- div.nc_socialPanel .nc_tweetContainer.swp_whatsapp:not(.mobile) {
1732
- display: none;
1733
- }
1734
-
1735
- .sw-pinit.aligncenter {
1736
- margin: 0 auto;
1737
- }
1738
-
1739
- @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
1740
- div.sw-pinit {
1741
- display: inline-block!important;
1742
- max-width: 100%;
1743
- }
1744
- }
1745
-
1746
- .swp_hidden_pin_image {
1747
- height: 0;
1748
- opacity: 0;
1749
- position: absolute;
1750
- top: 0;
1751
- width: 0;
1752
- }
 
 
 
1
+ .nc_socialPanel {
2
+ clear: both;
3
+ display: -webkit-box;
4
+ display: -webkit-flex;
5
+ display: -moz-box;
6
+ display: -ms-flexbox;
7
+ display: flex;
8
+ height: 34px;
9
+ line-height: 1;
10
+ margin-bottom: 20px!important;
11
+ margin-top: 20px!important;
12
+ overflow: hidden;
13
+ padding: 0;
14
+
15
+ -webkit-align-items: stretch;
16
+ align-items: stretch;
17
+ -webkit-box-align: stretch;
18
+ -moz-box-align: stretch;
19
+ -webkit-box-pack: justify;
20
+ -moz-box-pack: justify;
21
+ direction: ltr;
22
+ -ms-flex-align: stretch;
23
+ -ms-flex-line-pack: center;
24
+ -ms-flex-pack: justify;
25
+ -webkit-flex-wrap: wrap;
26
+ -ms-flex-wrap: wrap;
27
+ flex-wrap: wrap;
28
+ -webkit-justify-content: space-between;
29
+ justify-content: space-between;
30
+ }
31
+
32
+ .nc_socialPanel:not(.nc_floater):not(.nc_socialPanelSide) {
33
+ width: 100%!important;
34
+ }
35
+
36
+ .nc_wrapper .nc_socialPanel {
37
+ margin-bottom: 10px!important;
38
+ margin-top: 10px!important;
39
+ }
40
+
41
+ div.nc_socialPanel .nc_tweetContainer {
42
+ -webkit-border-radius: 2px;
43
+ border-radius: 2px;
44
+ cursor: pointer;
45
+ float: left;
46
+ font-family: Lato;
47
+ height: 32px;
48
+ margin: 0 5px 3px 5px;
49
+ min-width: 34px;
50
+ overflow: hidden;
51
+ text-align: center;
52
+ -webkit-transition: all 0.1s linear;
53
+ transition: all 0.1s linear;
54
+
55
+ border-size: 1px;
56
+ }
57
+
58
+ div.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer {
59
+ -webkit-box-flex: 1;
60
+ -moz-box-flex: 1;
61
+ -webkit-flex: 1;
62
+ -ms-flex: 1;
63
+ flex: 1;
64
+ }
65
+
66
+ .nc_socialPanel .nc_tweetContainer a.nc_tweet,
67
+ .nc_socialPanel .totes .swp_count {
68
+ display: block;
69
+ display: -webkit-box;
70
+ display: -webkit-flex;
71
+ display: -moz-box;
72
+ display: -ms-flexbox;
73
+ display: flex;
74
+ font-family: Lato, sans-serif;
75
+ font-size: 18px!important;
76
+ font-weight: bold;
77
+ height: 30px;
78
+ text-decoration: none;
79
+ text-decoration: none!important;
80
+ text-transform: none;
81
+
82
+ -webkit-box-direction: normal;
83
+ -moz-box-direction: normal;
84
+ -webkit-box-orient: horizontal;
85
+ -moz-box-orient: horizontal;
86
+ -webkit-flex-flow: row wrap;
87
+ -ms-flex-flow: row wrap;
88
+ flex-flow: row wrap;
89
+ }
90
+
91
+ .nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-child(1) {
92
+ margin-left: 0;
93
+ }
94
+
95
+ .nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-last-child(1) {
96
+ margin-right: 0;
97
+ }
98
+
99
+ .nc_socialPanel a .swp_count:not(.swp_hide) {
100
+ display: inline-block;
101
+ line-height: 32px;
102
+ margin: 0;
103
+ padding: 0 5px;
104
+
105
+ -webkit-box-flex: 1;
106
+ -moz-box-flex: 1;
107
+ -webkit-flex: 1;
108
+ -ms-flex: 1;
109
+ flex: 1;
110
+ }
111
+
112
+ .nc_socialPanel a .swp_count.swp_hide {
113
+ margin: 0 auto;
114
+ }
115
+
116
+ .nc_socialPanel span:before {
117
+ content: initial!important;
118
+ }
119
+
120
+ .nc_socialPanel .totes .swp_count {
121
+ line-height: 30px;
122
+ }
123
+
124
+ .nc_socialPanel span.swp_count {
125
+ font-size: 14px;
126
+ }
127
+
128
+ .nc_socialPanel span.iconFiller {
129
+ font-size: 18px;
130
+ margin: 0 auto;
131
+ }
132
+
133
+ .nc_socialPanel.notMobile .nc_tweetContainer:nth-child(1) {
134
+ margin-left: 0;
135
+ }
136
+
137
+ .nc_socialPanel:not(.nc_socialPanelSide) {
138
+ -webkit-transition: opacity 0.2s ease-in-out;
139
+ transition: opacity 0.2s ease-in-out;
140
+ }
141
+
142
+ .nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-child(1) {
143
+ margin-left: 0;
144
+ margin-right: 15px;
145
+ padding-left: 0;
146
+ }
147
+
148
+ .nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-last-child(1) {
149
+ margin-right: 0;
150
+ padding-right: 0;
151
+ }
152
+
153
+ a.swp_CTT {
154
+ cursor: pointer;
155
+ }
156
+
157
+ span.swp_share {
158
+ display: block;
159
+ float: right;
160
+ float: left;
161
+ font-size: 14px;
162
+ font-weight: normal;
163
+ height: 30px;
164
+ line-height: 30px;
165
+ margin: 0 0 0 6px;
166
+ max-width: none!important;
167
+ vertical-align: middle;
168
+ }
169
+
170
+ .nc_socialPanelSide span.swp_share {
171
+ margin: 0;
172
+ }
173
+
174
+ .nc_socialPanel .sw {
175
+ float: left;
176
+ height: 30px;
177
+ line-height: 32px;
178
+ margin: 0 5px;
179
+ text-shadow: none!important;
180
+ width: 20px;
181
+ }
182
+
183
+ .iconFiller {
184
+ display: block;
185
+ float: left;
186
+ height: 30px;
187
+ overflow: hidden;
188
+ -webkit-transition: width 0.1s linear;
189
+ transition: width 0.1s linear;
190
+ }
191
+
192
+ .nc_socialPanel .iconFiller {
193
+ width: 30px;
194
+ }
195
+
196
+ span.spaceManWilly {
197
+ display: block;
198
+ width: 120px;
199
+ }
200
+
201
+ .nc_socialPanel .totes {
202
+ background: #c4c4c4;
203
+ border: 1px solid #e08a0f;
204
+ -webkit-border-radius: 2px;
205
+ border-radius: 2px;
206
+ color: white;
207
+ cursor: default;
208
+ display: block;
209
+ font-size: 19px;
210
+ padding: 0 10px;
211
+
212
+ -webkit-box-flex: 0!important;
213
+ -moz-box-flex: 0!important;
214
+ -webkit-flex: none!important;
215
+ -ms-flex: none!important;
216
+ flex: none!important;
217
+ }
218
+
219
+ .nc_socialPanel div.totes.totesalt,
220
+ .nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {
221
+ background: transparent!important;
222
+ border: none;
223
+ color: #474b4d;
224
+ margin-left: 0!important;
225
+ }
226
+
227
+ div.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)) {
228
+ background: transparent;
229
+ color: #474b4d;
230
+ margin-left: 10px;
231
+ }
232
+
233
+ .nc_socialPanel .totes.totesalt .swp_label {
234
+ color: #474b4d;
235
+ font-size: 10px;
236
+ letter-spacing: 0;
237
+ min-width: 40px;
238
+ vertical-align: middle;
239
+ }
240
+
241
+ .nc_socialPanel .totes .swp_label {
242
+ font-size: 10px;
243
+ vertical-align: middle;
244
+ }
245
+
246
+ .nc_socialPanel .totes.totesalt .swp_count {
247
+ color: #474b4d;
248
+ font-size: 24px;
249
+ }
250
+
251
+ .nc_socialPanel:hover .totes,
252
+ .nc_socialPanel.swp_fullColor .totes,
253
+ .nc_socialPanel.swp_fade .totes,
254
+ .nc_socialPanel.swp_customFull:hover div.totes {
255
+ background: #e08a0f;
256
+ }
257
+
258
+ .nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer.totes.totesalt:before {
259
+ content: "o";
260
+ display: inline-block;
261
+ font-family: sw-icon-font;
262
+ margin-top: 7px;
263
+ vertical-align: top;
264
+ }
265
+
266
+ .nc_socialPanel:not(.nc_socialPanelSide) .totes.totesalt .swp_count {
267
+ display: inline-block;
268
+ line-height: 0;
269
+ margin-left: 8px;
270
+ margin-top: 12px;
271
+ min-width: 45px;
272
+ position: relative;
273
+ vertical-align: middle;
274
+ }
275
+
276
+ span.swp_label {
277
+ display: block;
278
+ font-size: 9px!important;
279
+ margin-top: 13px;
280
+ position: absolute;
281
+ text-align: center!important;
282
+ text-transform: uppercase;
283
+ }
284
+
285
+ .nc_socialPanelSide span.swp_label {
286
+ margin-top: 0;
287
+ }
288
+
289
+ .nc_socialPanel.swp_leaf .nc_tweetContainer {
290
+ -webkit-border-radius: 15px 0;
291
+ border-radius: 15px 0;
292
+ border-width: 1px;
293
+ }
294
+
295
+ .nc_socialPanel.swp_pill .nc_tweetContainer {
296
+ -webkit-border-radius: 50px;
297
+ border-radius: 50px;
298
+ border-width: 1px;
299
+ }
300
+
301
+ .nc_socialPanel.swp_shift .nc_tweetContainer:not(.totes) {
302
+ border-width: 1px;
303
+ -moz-transform: skew(-25deg);
304
+ -o-transform: skew(-25deg);
305
+ -webkit-transform: skew(-25deg);
306
+ }
307
+
308
+ .nc_socialPanel.swp_shift .nc_tweetContainer a {
309
+ -moz-transform: skew(25deg);
310
+ -o-transform: skew(25deg);
311
+ -webkit-transform: skew(25deg);
312
+ }
313
+
314
+ .swp_connected .nc_tweetContainer,
315
+ .swp_connected:hover .nc_tweetContainer,
316
+ .swp_connected .nc_tweetContainer:hover {
317
+ -webkit-border-radius: 0!important;
318
+ border-radius: 0!important;
319
+ border-width: 1px;
320
+ margin: 0!important;
321
+ }
322
+
323
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .googlePlus,
324
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .googlePlus:hover,
325
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .googlePlus:not(:hover) {
326
+ border: 1px solid #df4b37;
327
+ }
328
+
329
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .twitter,
330
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .twitter:hover,
331
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .twitter:not(:hover) {
332
+ border: 1px solid #429cd6;
333
+ }
334
+
335
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_fb,
336
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_fb:hover,
337
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_fb:not(:hover) {
338
+ border: 1px solid #3a589e;
339
+ }
340
+
341
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .nc_pinterest,
342
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .nc_pinterest:hover,
343
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .nc_pinterest:not(:hover) {
344
+ border: 1px solid #cd2029;
345
+ }
346
+
347
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .linkedIn,
348
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .linkedIn:hover,
349
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .linkedIn:not(:hover) {
350
+ border: 1px solid #0d77b7;
351
+ }
352
+
353
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_tumblr,
354
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_tumblr:hover,
355
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_tumblr:not(:hover) {
356
+ border: 1px solid #39475d;
357
+ }
358
+
359
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_stumbleupon,
360
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_stumbleupon:hover,
361
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_stumbleupon:not(:hover) {
362
+ border: 1px solid #ef5025;
363
+ }
364
+
365
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_yummly,
366
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_yummly:hover,
367
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_yummly:not(:hover) {
368
+ border: 1px solid #e26426;
369
+ }
370
+
371
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_reddit,
372
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_reddit:hover,
373
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_reddit:not(:hover) {
374
+ border: 1px solid #f04b23;
375
+ }
376
+
377
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_email,
378
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_email:hover,
379
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_email:not(:hover) {
380
+ border: 1px solid #6bcce9;
381
+ }
382
+
383
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_whatsapp,
384
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_whatsapp:hover,
385
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_whatsapp:not(:hover) {
386
+ border: 1px solid #71c169;
387
+ }
388
+
389
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_pocket,
390
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_pocket:hover,
391
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_pocket:not(:hover) {
392
+ border: 1px solid #ef4056;
393
+ }
394
+
395
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_buffer,
396
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_buffer:hover,
397
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_buffer:not(:hover) {
398
+ border: 1px solid #323b43;
399
+ }
400
+
401
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_hacker_news,
402
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_hacker_news:hover,
403
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_hacker_news:not(:hover) {
404
+ border: 1px solid #d85623;
405
+ }
406
+
407
+ .nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_flipboard,
408
+ html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_flipboard:hover,
409
+ body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_flipboard:not(:hover) {
410
+ border: 1px solid #bf2626;
411
+ }
412
+
413
+ .nc_socialPanel.swp_d_fullColor .googlePlus,
414
+ html body .nc_socialPanel.swp_i_fullColor .googlePlus:hover,
415
+ body .nc_socialPanel.swp_o_fullColor:hover .googlePlus {
416
+ background: #df4b37;
417
+ border: 1px solid #c44133;
418
+ }
419
+
420
+ .nc_socialPanel.swp_d_fullColor .twitter,
421
+ html body .nc_socialPanel.swp_i_fullColor .twitter:hover,
422
+ body .nc_socialPanel.swp_o_fullColor:hover .twitter {
423
+ background: #429cd6;
424
+ border: 1px solid #3c87b2;
425
+ }
426
+
427
+ .nc_socialPanel.swp_d_fullColor .swp_fb,
428
+ html body .nc_socialPanel.swp_i_fullColor .swp_fb:hover,
429
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_fb {
430
+ background: #3a589e;
431
+ border: 1px solid #2e4675;
432
+ }
433
+
434
+ .nc_socialPanel.swp_d_fullColor .nc_pinterest,
435
+ html body .nc_socialPanel.swp_i_fullColor .nc_pinterest:hover,
436
+ body .nc_socialPanel.swp_o_fullColor:hover .nc_pinterest {
437
+ background: #cd2029;
438
+ border: 1px solid #aa1b29;
439
+ }
440
+
441
+ .nc_socialPanel.swp_d_fullColor .linkedIn,
442
+ html body .nc_socialPanel.swp_i_fullColor .linkedIn:hover,
443
+ body .nc_socialPanel.swp_o_fullColor:hover .linkedIn {
444
+ background: #0d77b7;
445
+ border: 1px solid #0c6591;
446
+ }
447
+
448
+ .nc_socialPanel.swp_d_fullColor .swp_tumblr,
449
+ html body .nc_socialPanel.swp_i_fullColor .swp_tumblr:hover,
450
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_tumblr {
451
+ background: #39475d;
452
+ border: 1px solid #27313f;
453
+ }
454
+
455
+ .nc_socialPanel.swp_d_fullColor .swp_stumbleupon,
456
+ html body .nc_socialPanel.swp_i_fullColor .swp_stumbleupon:hover,
457
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_stumbleupon {
458
+ background: #ef5025;
459
+ border: 1px solid #d34427;
460
+ }
461
+
462
+ .nc_socialPanel.swp_d_fullColor .swp_yummly,
463
+ html body .nc_socialPanel.swp_i_fullColor .swp_yummly:hover,
464
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_yummly {
465
+ background: #e26426;
466
+ border: 1px solid #b65027;
467
+ }
468
+
469
+ .nc_socialPanel.swp_d_fullColor .swp_reddit,
470
+ html body .nc_socialPanel.swp_i_fullColor .swp_reddit:hover,
471
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_reddit {
472
+ background: #f04b23;
473
+ border: 1px solid #d33f27;
474
+ }
475
+
476
+ .nc_socialPanel.swp_d_fullColor .swp_email,
477
+ html body .nc_socialPanel.swp_i_fullColor .swp_email:hover,
478
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_email {
479
+ background: #6bcce9;
480
+ border: 1px solid #61bace;
481
+ }
482
+
483
+ .nc_socialPanel.swp_d_fullColor .swp_whatsapp,
484
+ html body .nc_socialPanel.swp_i_fullColor .swp_whatsapp:hover,
485
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_whatsapp {
486
+ background: #71c169;
487
+ border: 1px solid #28b04b;
488
+ }
489
+
490
+ .nc_socialPanel.swp_d_fullColor .swp_pocket,
491
+ html body .nc_socialPanel.swp_i_fullColor .swp_pocket:hover,
492
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_pocket {
493
+ background: #ef4056;
494
+ border: 1px solid #ce3d55;
495
+ }
496
+
497
+ .nc_socialPanel.swp_d_fullColor .swp_buffer,
498
+ html body .nc_socialPanel.swp_i_fullColor .swp_buffer:hover,
499
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_buffer {
500
+ background: #323b43;
501
+ border: 1px solid #000;
502
+ }
503
+
504
+ .nc_socialPanel.swp_d_fullColor .swp_hacker_news,
505
+ html body .nc_socialPanel.swp_i_fullColor .swp_hacker_news:hover,
506
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_hacker_news {
507
+ background: #f16522;
508
+ border: 1px solid #d85623;
509
+ }
510
+
511
+ .nc_socialPanel.swp_d_fullColor .swp_flipboard,
512
+ html body .nc_socialPanel.swp_i_fullColor .swp_flipboard:hover,
513
+ body .nc_socialPanel.swp_o_fullColor:hover .swp_flipboard {
514
+ background: #e02828;
515
+ border: 1px solid #bf2626;
516
+ }
517
+
518
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .googlePlus,
519
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .googlePlus:hover,
520
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .googlePlus {
521
+ border-bottom: 3px solid #c44133;
522
+ }
523
+
524
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .twitter,
525
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .twitter:hover,
526
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .twitter {
527
+ border-bottom: 3px solid #5595bc;
528
+ }
529
+
530
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_fb,
531
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_fb:hover,
532
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_fb {
533
+ border-bottom: 3px solid #2e4675;
534
+ }
535
+
536
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .nc_pinterest,
537
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .nc_pinterest:hover,
538
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .nc_pinterest {
539
+ border-bottom: 3px solid #aa1b29;
540
+ }
541
+
542
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .linkedIn,
543
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .linkedIn:hover,
544
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .linkedIn {
545
+ border-bottom: 3px solid #0c6591;
546
+ }
547
+
548
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_tumblr,
549
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_tumblr:hover,
550
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_tumblr {
551
+ border-bottom: 3px solid #27313f;
552
+ }
553
+
554
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_stumbleupon,
555
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_stumbleupon:hover,
556
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_stumbleupon {
557
+ border-bottom: 3px solid #d34427;
558
+ }
559
+
560
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_yummly,
561
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_yummly:hover,
562
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_yummly {
563
+ border-bottom: 3px solid #b65027;
564
+ }
565
+
566
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_reddit,
567
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_reddit:hover,
568
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_reddit {
569
+ border-bottom: 3px solid #d33f27;
570
+ }
571
+
572
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_email,
573
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_email:hover,
574
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_email {
575
+ border-bottom: 3px solid #61bace;
576
+ }
577
+
578
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_whatsapp,
579
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_whatsapp:hover,
580
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_whatsapp {
581
+ border-bottom: 3px solid #28b04b;
582
+ }
583
+
584
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_pocket,
585
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_pocket:hover,
586
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_pocket {
587
+ border-bottom: 3px solid #ce3d55;
588
+ }
589
+
590
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_buffer,
591
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_buffer:hover,
592
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_buffer {
593
+ border-bottom: 3px solid #000;
594
+ }
595
+
596
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_hacker_news,
597
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_hacker_news:hover,
598
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_hacker_news {
599
+ border-bottom: 3px solid #d85623;
600
+ }
601
+
602
+ .nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_flipboard,
603
+ html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_flipboard:hover,
604
+ body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_flipboard {
605
+ border-bottom: 3px solid #bf2626;
606
+ }
607
+
608
+ .nc_socialPanel.swp_d_lightGray .nc_tweetContainer,
609
+ html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover,
610
+ body .nc_socialPanel.swp_o_lightGray:hover .nc_tweetContainer {
611
+ background-color: #ccc;
612
+ border: 1px solid #ccc;
613
+ }
614
+
615
+ .nc_socialPanel.swp_threeDee.swp_d_lightGray .nc_tweetContainer:not(.totesalt),
616
+ html body .nc_socialPanel.swp_threeDee.swp_i_lightGray .nc_tweetContainer:not(.totesalt):hover,
617
+ body .nc_socialPanel.swp_threeDee.swp_o_lightGray:hover .nc_tweetContainer:not(.totesalt) {
618
+ border-bottom: 3px solid #999;
619
+ }
620
+
621
+ .nc_socialPanel.swp_d_mediumGray .nc_tweetContainer,
622
+ html body .nc_socialPanel.swp_i_mediumGray .nc_tweetContainer:hover,
623
+ body .nc_socialPanel.swp_o_mediumGray:hover .nc_tweetContainer {
624
+ background-color: #999;
625
+ border: 1px solid #999;
626
+ }
627
+
628
+ .nc_socialPanel.swp_threeDee.swp_d_mediumGray .nc_tweetContainer:not(.totesalt),
629
+ html body .nc_socialPanel.swp_threeDee.swp_i_mediumGray .nc_tweetContainer:not(.totesalt):hover,
630
+ body .nc_socialPanel.swp_threeDee.swp_o_mediumGray:hover .nc_tweetContainer:not(.totesalt) {
631
+ border-bottom: 3px solid #444;
632
+ }
633
+
634
+ .nc_socialPanel.swp_d_darkGray .nc_tweetContainer,
635
+ html body .nc_socialPanel.swp_i_darkGray .nc_tweetContainer:hover,
636
+ body .nc_socialPanel.swp_o_darkGray:hover .nc_tweetContainer {
637
+ background-color: #444;
638
+ border: 1px solid #444;
639
+ }
640
+
641
+ .nc_socialPanel.swp_threeDee.swp_d_darkGray .nc_tweetContainer:not(.totesalt),
642
+ html body .nc_socialPanel.swp_threeDee.swp_i_darkGray .nc_tweetContainer:not(.totesalt):hover,
643
+ body .nc_socialPanel.swp_threeDee.swp_o_darkGray:hover .nc_tweetContainer:not(.totesalt) {
644
+ border-bottom: 3px solid #222;
645
+ }
646
+
647
+ .nc_socialPanel.swp_d_lgOutlines a,
648
+ html body .nc_socialPanel.swp_i_lgOutlines a:hover,
649
+ body .nc_socialPanel.swp_o_lgOutlines:hover a {
650
+ color: #ccc;
651
+ }
652
+
653
+ .nc_socialPanel.swp_d_lgOutlines .nc_tweetContainer,
654
+ html body .nc_socialPanel.swp_i_lgOutlines .nc_tweetContainer:hover,
655
+ body .nc_socialPanel.swp_o_lgOutlines:hover .nc_tweetContainer {
656
+ background: transparent;
657
+ border: 1px solid #ccc;
658
+ }
659
+
660
+ .nc_socialPanel.swp_d_mdOutlines a,
661
+ html body .nc_socialPanel.swp_i_mdOutlines a:hover,
662
+ body .nc_socialPanel.swp_o_mdOutlines:hover a {
663
+ color: #999;
664
+ }
665
+
666
+ .nc_socialPanel.swp_d_mdOutlines .nc_tweetContainer,
667
+ html body .nc_socialPanel.swp_i_mdOutlines .nc_tweetContainer:hover,
668
+ body .nc_socialPanel.swp_o_mdOutlines:hover .nc_tweetContainer {
669
+ background: transparent;
670
+ border: 1px solid #999;
671
+ }
672
+
673
+ .nc_socialPanel.swp_d_dgOutlines a,
674
+ html body .nc_socialPanel.swp_i_dgOutlines a:hover,
675
+ body .nc_socialPanel.swp_o_dgOutlines:hover a {
676
+ color: #444;
677
+ }
678
+
679
+ .nc_socialPanel.swp_d_dgOutlines .nc_tweetContainer,
680
+ html body .nc_socialPanel.swp_i_dgOutlines .nc_tweetContainer:hover,
681
+ body .nc_socialPanel.swp_o_dgOutlines:hover .nc_tweetContainer {
682
+ background: transparent;
683
+ border: 1px solid #444;
684
+ }
685
+
686
+ .nc_socialPanel.swp_d_colorOutlines .googlePlus a,
687
+ html body .nc_socialPanel.swp_i_colorOutlines .googlePlus a:hover,
688
+ body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus a {
689
+ color: #df4b37;
690
+ }
691
+
692
+ .nc_socialPanel.swp_d_colorOutlines .swp_fb a,
693
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_fb a:hover,
694
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb a {
695
+ color: #3a589e;
696
+ }
697
+
698
+ .nc_socialPanel.swp_d_colorOutlines .nc_pinterest a,
699
+ html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest a:hover,
700
+ body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest a {
701
+ color: #cd2029;
702
+ }
703
+
704
+ .nc_socialPanel.swp_d_colorOutlines .linkedIn a,
705
+ html body .nc_socialPanel.swp_i_colorOutlines .linkedIn a:hover,
706
+ body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn a {
707
+ color: #0d77b7;
708
+ }
709
+
710
+ .nc_socialPanel.swp_d_colorOutlines .swp_tumblr a,
711
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr a:hover,
712
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr a {
713
+ color: #39475d;
714
+ }
715
+
716
+ .nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon a,
717
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon a:hover,
718
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon a {
719
+ color: #ef5025;
720
+ }
721
+
722
+ .nc_socialPanel.swp_d_colorOutlines .swp_yummly a,
723
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly a:hover,
724
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly a {
725
+ color: #e26426;
726
+ }
727
+
728
+ .nc_socialPanel.swp_d_colorOutlines .swp_whatsapp a,
729
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp a:hover,
730
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp a {
731
+ color: #71c169;
732
+ }
733
+
734
+ .nc_socialPanel.swp_d_colorOutlines .swp_pocket a,
735
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket a:hover,
736
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket a {
737
+ color: #ef4056;
738
+ }
739
+
740
+ .nc_socialPanel.swp_d_colorOutlines .swp_reddit a,
741
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit a:hover,
742
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit a {
743
+ color: #f04b23;
744
+ }
745
+
746
+ .nc_socialPanel.swp_d_colorOutlines .swp_email a,
747
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_email a:hover,
748
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email a {
749
+ color: #6bcce9;
750
+ }
751
+
752
+ .nc_socialPanel.swp_d_colorOutlines .swp_buffer a,
753
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer a:hover,
754
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer a {
755
+ color: #323b43;
756
+ }
757
+
758
+ .nc_socialPanel.swp_d_colorOutlines .swp_hacker_news a,
759
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news a:hover,
760
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news a {
761
+ color: #f16522;
762
+ }
763
+
764
+ .nc_socialPanel.swp_d_colorOutlines .swp_flipboard a,
765
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard a:hover,
766
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard a {
767
+ color: #e02828;
768
+ }
769
+
770
+ .nc_socialPanel.swp_d_colorOutlines .googlePlus,
771
+ html body .nc_socialPanel.swp_i_colorOutlines .googlePlus:hover,
772
+ body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus {
773
+ background: transparent;
774
+ border: 1px solid #df4b37;
775
+ }
776
+
777
+ .nc_socialPanel.swp_d_colorOutlines .twitter,
778
+ html body .nc_socialPanel.swp_i_colorOutlines .twitter:hover,
779
+ body .nc_socialPanel.swp_o_colorOutlines:hover .twitter {
780
+ background: transparent;
781
+ border: 1px solid #429cd6;
782
+ }
783
+
784
+ .nc_socialPanel.swp_d_colorOutlines .swp_fb,
785
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_fb:hover,
786
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb {
787
+ background: transparent;
788
+ border: 1px solid #3a589e;
789
+ }
790
+
791
+ .nc_socialPanel.swp_d_colorOutlines .nc_pinterest,
792
+ html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest:hover,
793
+ body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest {
794
+ background: transparent;
795
+ border: 1px solid #cd2029;
796
+ }
797
+
798
+ .nc_socialPanel.swp_d_colorOutlines .linkedIn,
799
+ html body .nc_socialPanel.swp_i_colorOutlines .linkedIn:hover,
800
+ body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn {
801
+ background: transparent;
802
+ border: 1px solid #0d77b7;
803
+ }
804
+
805
+ .nc_socialPanel.swp_d_colorOutlines .swp_tumblr,
806
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr:hover,
807
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr {
808
+ background: transparent;
809
+ border: 1px solid #39475d;
810
+ }
811
+
812
+ .nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon,
813
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon:hover,
814
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon {
815
+ background: transparent;
816
+ border: 1px solid #ef5025;
817
+ }
818
+
819
+ .nc_socialPanel.swp_d_colorOutlines .swp_yummly,
820
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly:hover,
821
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly {
822
+ background: transparent;
823
+ border: 1px solid #e26426;
824
+ }
825
+
826
+ .nc_socialPanel.swp_d_colorOutlines .swp_whatsapp,
827
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp:hover,
828
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp {
829
+ background: transparent;
830
+ border: 1px solid #71c169;
831
+ }
832
+
833
+ .nc_socialPanel.swp_d_colorOutlines .swp_reddit,
834
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit:hover,
835
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit {
836
+ background: transparent;
837
+ border: 1px solid #f04b23;
838
+ }
839
+
840
+ .nc_socialPanel.swp_d_colorOutlines .swp_email,
841
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_email:hover,
842
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email {
843
+ background: transparent;
844
+ border: 1px solid #6bcce9;
845
+ }
846
+
847
+ .nc_socialPanel.swp_d_colorOutlines .swp_pocket,
848
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket:hover,
849
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket {
850
+ background: transparent;
851
+ border: 1px solid #ef4056;
852
+ }
853
+
854
+ .nc_socialPanel.swp_d_colorOutlines .swp_buffer,
855
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer:hover,
856
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer {
857
+ background: transparent;
858
+ border: 1px solid #323b43;
859
+ }
860
+
861
+ .nc_socialPanel.swp_d_colorOutlines .swp_hacker_news,
862
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news:hover,
863
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news {
864
+ background: transparent;
865
+ border: 1px solid #f16522;
866
+ }
867
+
868
+ .nc_socialPanel.swp_d_colorOutlines .swp_flipboard,
869
+ html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard:hover,
870
+ body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard {
871
+ background: transparent;
872
+ border: 1px solid #bf2626;
873
+ }
874
+
875
+ .nc_socialPanelSide {
876
+ flex-direction: column;
877
+ height: auto;
878
+ overflow: visible;
879
+ top: 200px;
880
+ -webkit-transition: all 0.2s linear;
881
+ transition: all 0.2s linear;
882
+ width: 100px!important;
883
+ z-index: 9999999;
884
+
885
+ -webkit-box-direction: normal;
886
+ -moz-box-direction: normal;
887
+ -webkit-box-orient: vertical;
888
+ -moz-box-orient: vertical;
889
+ -webkit-flex-direction: column;
890
+ -ms-flex-direction: column;
891
+ }
892
+
893
+ .nc_socialPanelSide.slide {
894
+ position: fixed;
895
+ left: -100px;
896
+ -webkit-transition: all 0.2s linear;
897
+ transition: all 0.2s linear;
898
+ }
899
+
900
+ .nc_socialPanelSide.fade {
901
+ display: none;
902
+ position: fixed;
903
+ left: 5px;
904
+ -webkit-transition: all 0.2s linear;
905
+ transition: all 0.2s linear;
906
+ }
907
+
908
+ .nc_socialPanelSide .nc_tweetContainer {
909
+ background: #dd4b38;
910
+ -webkit-border-radius: 3px;
911
+ border-radius: 3px;
912
+ clear: both;
913
+ display: block;
914
+ font-family: Lato, sans-serif;
915
+ height: 32px;
916
+ margin: 3px 0!important;
917
+ overflow: hidden;
918
+ padding: 0;
919
+ -webkit-transition: all 0.1s linear;
920
+ transition: all 0.1s linear;
921
+ vertical-align: top;
922
+ width: 90px;
923
+ }
924
+
925
+ .nc_socialPanelSide .nc_tweetContainer .iconFiller {
926
+ display: inline-block;
927
+ height: 40px;
928
+ margin: 0 6px;
929
+ padding: 0;
930
+ -webkit-transition: all 0.1s linear;
931
+ transition: all 0.1s linear;
932
+ vertical-align: middle;
933
+ width: 21px;
934
+ }
935
+
936
+ .nc_socialPanelSide .nc_tweetContainer .swp_count {
937
+ display: inline-block;
938
+ font-size: 14px;
939
+ height: 32px;
940
+ line-height: 35px;
941
+ margin: 0;
942
+ overflow: hidden;
943
+ padding: 0;
944
+ text-align: right;
945
+ -webkit-transition: all 0.1s linear;
946
+ transition: all 0.1s linear;
947
+ vertical-align: top;
948
+ width: 0;
949
+ }
950
+
951
+ .nc_socialPanelSide .nc_tweetContainer a {
952
+ cursor: pointer;
953
+ display: block;
954
+ font-weight: 500;
955
+ height: 36px;
956
+ margin: 0;
957
+ padding: 0;
958
+ text-decoration: none;
959
+ -webkit-transition: all 0.1s linear;
960
+ transition: all 0.1s linear;
961
+ vertical-align: top;
962
+ }
963
+
964
+ .nc_socialPanelSide .nc_tweetContainer .sw,
965
+ .nc_socialPanelSide .nc_tweetContainer .swp_share {
966
+ float: left;
967
+ line-height: 34px;
968
+ }
969
+
970
+ .nc_socialPanelSide.swp_default .nc_tweetContainer .sw {
971
+ line-height: 32px;
972
+ }
973
+
974
+ .nc_socialPanelSide.swp_default .nc_tweetContainer .swp_share {
975
+ line-height: 30px;
976
+ }
977
+
978
+ .nc_socialPanelSide .nc_tweetContainer .swp_share {
979
+ font-size: 13px;
980
+ }
981
+
982
+ .nc_socialPanelSide .nc_tweetContainer:hover,
983
+ .nc_socialPanelSide .nc_tweetContainer:hover .iconFiller,
984
+ .nc_socialPanelSide .nc_tweetContainer:hover .swp_count {
985
+ -webkit-transition: all 0.1s linear;
986
+ transition: all 0.1s linear;
987
+ }
988
+
989
+ .nc_socialPanelSide.swp_boxed {
990
+ -ms-transform: scale(0.9);
991
+ -webkit-transform: scale(0.9);
992
+ transform: scale(0.9);
993
+ }
994
+
995
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer {
996
+ margin-bottom: 5px;
997
+ }
998
+
999
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer,
1000
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer a {
1001
+ height: 75px;
1002
+ position: relative;
1003
+ width: 75px;
1004
+ }
1005
+
1006
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer i.sw {
1007
+ font-size: 27px;
1008
+ height: 40px;
1009
+ margin: 0;
1010
+ padding-top: 10px;
1011
+ text-align: center;
1012
+ width: 100%;
1013
+ }
1014
+
1015
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_share {
1016
+ height: 35px;
1017
+ opacity: 0;
1018
+ position: absolute;
1019
+ bottom: 0;
1020
+ left: 0;
1021
+ text-align: center;
1022
+ width: 75px;
1023
+ }
1024
+
1025
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count {
1026
+ height: 35px;
1027
+ margin: 0;
1028
+ padding: 0;
1029
+ position: absolute;
1030
+ bottom: 0;
1031
+ left: 0;
1032
+ text-align: center;
1033
+ -webkit-transition: padding 0.1s linear;
1034
+ transition: padding 0.1s linear;
1035
+ width: 100%;
1036
+ }
1037
+
1038
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count.swp_hide,
1039
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller,
1040
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly {
1041
+ height: 75px;
1042
+ opacity: 1;
1043
+ }
1044
+
1045
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer span.iconFiller {
1046
+ height: 40px;
1047
+ width: 75px;
1048
+ }
1049
+
1050
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_count:not(.swp_hide) {
1051
+ opacity: 0;
1052
+ }
1053
+
1054
+ .nc_socialPanelSide.swp_boxed .totes {
1055
+ padding: 0;
1056
+ width: 75px!important;
1057
+ }
1058
+
1059
+ .nc_socialPanelSide .nc_tweetContainer:not(.totes) {
1060
+ line-height: 34px;
1061
+ }
1062
+
1063
+ .nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes) .iconFiller {
1064
+ margin-left: 2px;
1065
+ width: 30px;
1066
+ }
1067
+
1068
+ .nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count {
1069
+ padding: 0 8px;
1070
+ width: 48px;
1071
+ }
1072
+
1073
+ .nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count.swp_hide {
1074
+ padding: 0;
1075
+ width: 100%;
1076
+ }
1077
+
1078
+ .nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_hide .iconFiller {
1079
+ display: block;
1080
+ float: none;
1081
+ margin: 0 auto;
1082
+ }
1083
+
1084
+ .nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes):hover {
1085
+ width: 150px;
1086
+ }
1087
+
1088
+ .nc_socialPanelSide .nc_tweetContainer:not(.totes):hover .iconFiller,
1089
+ .nc_socialPanelSide .nc_tweetContainer:not(.totes) .spaceManWilly {
1090
+ width: 90px;
1091
+ }
1092
+
1093
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover .iconFiller,
1094
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .spaceManWilly {
1095
+ width: 100%;
1096
+ }
1097
+
1098
+ .nc_socialPanelSide .nc_tweetContainer.totes {
1099
+ background: rgba(0, 0, 0, 0);
1100
+ border: 0!important;
1101
+ font-weight: 800;
1102
+ height: 45px;
1103
+ margin: 0;
1104
+ padding: 0;
1105
+ text-align: center;
1106
+ width: 90px;
1107
+ }
1108
+
1109
+ .nc_socialPanelSide .nc_tweetContainer.totes .swp_count {
1110
+ color: #444;
1111
+ display: block;
1112
+ font-family: Lato, sans-serif;
1113
+ height: 28px;
1114
+ text-align: center;
1115
+ width: 100%;
1116
+ }
1117
+
1118
+ .nc_socialPanelSide .nc_tweetContainer.totes .swp_label {
1119
+ color: #444;
1120
+ display: block;
1121
+ font-family: Lato, sans-serif;
1122
+ font-size: 50%;
1123
+ position: relative;
1124
+ text-align: center;
1125
+ width: 100%;
1126
+ }
1127
+
1128
+ .nc_wrapper {
1129
+ background: white;
1130
+ position: fixed;
1131
+ -webkit-transition: top 0.5s bottom 0.5s;
1132
+ transition: top 0.5s bottom 0.5s;
1133
+ width: 100%;
1134
+ z-index: 99999;
1135
+ }
1136
+
1137
+ .nc_wrapper.floatBottom {
1138
+ bottom: 0;
1139
+ left: 0;
1140
+ }
1141
+
1142
+ .nc_wrapper.floatTop {
1143
+ top: 0;
1144
+ left: 0;
1145
+ }
1146
+
1147
+ .nc_floater {
1148
+ margin: 10px 0;
1149
+ position: relative;
1150
+ left: 304px;
1151
+ width: 740px;
1152
+ }
1153
+
1154
+ .nc_socialPanelSide.hideCounts a {
1155
+ text-align: center;
1156
+ }
1157
+
1158
+ .nc_socialPanelSide.hideCounts .iconFiller {
1159
+ float: none;
1160
+ text-align: left;
1161
+ }
1162
+
1163
+ .sw {
1164
+ display: inline-block;
1165
+ font-family: sw-icon-font!important;
1166
+ font-size: inherit;
1167
+ -moz-osx-font-smoothing: grayscale;
1168
+ -webkit-font-smoothing: antialiased;
1169
+ font-style: normal;
1170
+ font-weight: normal;
1171
+ text-rendering: auto;
1172
+ -ms-transform: translate(0, 0);
1173
+ -webkit-transform: translate(0, 0);
1174
+ transform: translate(0, 0);
1175
+ }
1176
+
1177
+ .sw:before {
1178
+ display: block!important;
1179
+ }
1180
+
1181
+ .wp-editor-container .sw:before {
1182
+ font-size: 18px;
1183
+ line-height: 22px;
1184
+ }
1185
+
1186
+ .wp-editor-container .sw-social-warfare:before {
1187
+ color: #ee464f;
1188
+ }
1189
+
1190
+ .mce-container .sw-social-warfare {
1191
+ color: #ee464f;
1192
+ font-size: 20px;
1193
+ margin-right: 15px;
1194
+ vertical-align: middle;
1195
+ }
1196
+
1197
+ .sw-google-plus:before {
1198
+ content: "h";
1199
+ }
1200
+
1201
+ .sw-pinterest:before {
1202
+ content: "b";
1203
+ }
1204
+
1205
+ .sw-twitter:before {
1206
+ content: "s";
1207
+ }
1208
+
1209
+ .sw-facebook:before {
1210
+ content: "j";
1211
+ }
1212
+
1213
+ .sw-linkedin:before {
1214
+ content: "f";
1215
+ }
1216
+
1217
+ .sw-tumblr:before {
1218
+ content: "r";
1219
+ }
1220
+
1221
+ .sw-stumbleupon:before {
1222
+ content: "q";
1223
+ }
1224
+
1225
+ .sw-reddit:before {
1226
+ content: "a";
1227
+ }
1228
+
1229
+ .sw-email:before {
1230
+ content: "k";
1231
+ }
1232
+
1233
+ .sw-yummly:before {
1234
+ content: "x";
1235
+ }
1236
+
1237
+ .sw-whatsapp:before {
1238
+ content: "y";
1239
+ }
1240
+
1241
+ .sw-pocket:before {
1242
+ content: "B";
1243
+ }
1244
+
1245
+ .sw-buffer:before {
1246
+ content: "z";
1247
+ }
1248
+
1249
+ .sw-hacker_news:before {
1250
+ content: "D";
1251
+ }
1252
+
1253
+ .sw-flipboard:before {
1254
+ content: "C";
1255
+ }
1256
+
1257
+ .sw-social-warfare:before {
1258
+ content: "p";
1259
+ }
1260
+
1261
+ .swp_CTT {
1262
+ text-decoration: none!important;
1263
+ }
1264
+
1265
+ .sw-tweet-clear {
1266
+ zoom: 1;
1267
+ }
1268
+
1269
+ .sw-tweet-clear:after {
1270
+ clear: both;
1271
+ content: ".";
1272
+ display: block;
1273
+ height: 0;
1274
+ visibility: hidden;
1275
+ }
1276
+
1277
+ .sw-click-to-tweet {
1278
+ display: block;
1279
+ margin: 15px 0;
1280
+ padding: 15px 30px;
1281
+ position: relative;
1282
+ }
1283
+
1284
+ .sw-click-to-tweet:after {
1285
+ clear: both;
1286
+ content: ".";
1287
+ display: block;
1288
+ height: 0;
1289
+ line-height: 0;
1290
+ visibility: hidden;
1291
+ }
1292
+
1293
+ .sw-click-to-tweet .sw-ctt-text {
1294
+ margin: 0 0 10px;
1295
+ padding: 0;
1296
+ position: relative;
1297
+ word-wrap: break-word;
1298
+ }
1299
+
1300
+ a .sw-click-to-tweet .sw-ctt-text {
1301
+ display: block;
1302
+ font-size: 24px;
1303
+ font-weight: 500;
1304
+ line-height: 140%;
1305
+ margin: 0;
1306
+ padding: 0;
1307
+ position: relative;
1308
+ text-decoration: none;
1309
+ text-transform: none;
1310
+ }
1311
+
1312
+ .sw-click-to-tweet .sw-ctt-btn {
1313
+ display: block;
1314
+ float: right;
1315
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1316
+ font-size: 12px;
1317
+ font-weight: bold;
1318
+ line-height: 100%;
1319
+ margin: 10px 0 0;
1320
+ padding: 3px 5px 3px 3px;
1321
+ position: relative;
1322
+ text-decoration: none;
1323
+ text-transform: uppercase;
1324
+ }
1325
+
1326
+ .sw-click-to-tweet i.sw-twitter {
1327
+ float: right;
1328
+ font-size: 21px;
1329
+ margin-left: 15px;
1330
+ margin-top: 2px;
1331
+ text-transform: none;
1332
+ }
1333
+
1334
+ a.swp_CTT.style1 .sw-click-to-tweet {
1335
+ background-color: #fff;
1336
+ border: 1px solid #ddd;
1337
+ -webkit-border-radius: 4px;
1338
+ border-radius: 4px;
1339
+ }
1340
+
1341
+ a.swp_CTT.style2 .sw-click-to-tweet {
1342
+ background-color: #fff;
1343
+ border: 4px double #ddd;
1344
+ -webkit-border-radius: 0;
1345
+ border-radius: 0;
1346
+ }
1347
+
1348
+ a.style2 .sw-click-to-tweet .sw-ctt-text {
1349
+ color: #666;
1350
+ font-style: italic;
1351
+ text-decoration: none;
1352
+ }
1353
+
1354
+ a.swp_CTT.style3:hover .sw-click-to-tweet {
1355
+ border-left: 10px solid #3c87b2;
1356
+ padding-right: 20px;
1357
+ -webkit-transition: all 0.25s linear;
1358
+ transition: all 0.25s linear;
1359
+ }
1360
+
1361
+ a.swp_CTT.style3 .sw-click-to-tweet {
1362
+ background-color: #429cd6;
1363
+ border: none;
1364
+ border-left: 10px solid #429cd6;
1365
+ -webkit-border-radius: 0;
1366
+ border-radius: 0;
1367
+ padding-right: 20px;
1368
+ -webkit-transition: all 0.25s linear;
1369
+ transition: all 0.25s linear;
1370
+ }
1371
+
1372
+ a.style3 .sw-click-to-tweet .sw-ctt-text {
1373
+ color: #fff;
1374
+ font-style: italic;
1375
+ text-decoration: none;
1376
+ }
1377
+
1378
+ a.swp_CTT.style4:hover .sw-click-to-tweet {
1379
+ border-left: 10px solid #3c87b2;
1380
+ -webkit-transition: all 0.25s linear;
1381
+ transition: all 0.25s linear;
1382
+ }
1383
+
1384
+ a.swp_CTT.style4 .sw-click-to-tweet {
1385
+ background-color: #333;
1386
+ border-left: 10px solid #c33;
1387
+ -webkit-border-radius: 0;
1388
+ border-radius: 0;
1389
+ -webkit-transition: all 0.25s linear;
1390
+ transition: all 0.25s linear;
1391
+ }
1392
+
1393
+ a.swp_CTT.style5:hover .sw-click-to-tweet {
1394
+ background-color: #d34250;
1395
+ border-left: 10px solid #30394f;
1396
+ -webkit-transition: all 0.25s linear;
1397
+ transition: all 0.25s linear;
1398
+ }
1399
+
1400
+ a.swp_CTT.style5 .sw-click-to-tweet {
1401
+ background-color: #30394f;
1402
+ border-left: 10px solid #d34250;
1403
+ -webkit-border-radius: 0;
1404
+ border-radius: 0;
1405
+ -webkit-transition: all 0.25s linear;
1406
+ transition: all 0.25s linear;
1407
+ }
1408
+
1409
+ a.swp_CTT.style6:hover .sw-click-to-tweet {
1410
+ background-color: #ced3dc;
1411
+ border-left: 10px solid #d34250;
1412
+ -webkit-transition: all 0.25s linear;
1413
+ transition: all 0.25s linear;
1414
+ }
1415
+
1416
+ a.swp_CTT.style6 .sw-click-to-tweet {
1417
+ background-color: #eee;
1418
+ border-left: 10px solid #d34250;
1419
+ -webkit-border-radius: 0;
1420
+ border-radius: 0;
1421
+ -webkit-transition: all 0.25s linear;
1422
+ transition: all 0.25s linear;
1423
+ }
1424
+
1425
+ a.style6 .sw-click-to-tweet i.sw-twitter {
1426
+ color: #30394f;
1427
+ }
1428
+
1429
+ .swp_pop_thumb {
1430
+ -webkit-border-radius: 3px;
1431
+ border-radius: 3px;
1432
+ float: left;
1433
+ height: 100px;
1434
+ margin: 5px 25px 5px 0;
1435
+ width: 100px;
1436
+ }
1437
+
1438
+ .swp_popular_post {
1439
+ clear: both;
1440
+ }
1441
+
1442
+ .swp_clearfix:after {
1443
+ clear: both;
1444
+ content: " ";
1445
+ display: block;
1446
+ height: 0;
1447
+ visibility: hidden;
1448
+ }
1449
+
1450
+ .swp_popular_post a.swp_popularity {
1451
+ border: none;
1452
+ display: block;
1453
+ line-height: 1.5;
1454
+ margin: 20px 0;
1455
+ }
1456
+
1457
+ span.swp_pop_count {
1458
+ display: block;
1459
+ font-size: 70%;
1460
+ }
1461
+
1462
+ .swp_widget_box {
1463
+ -webkit-border-radius: 3px;
1464
+ border-radius: 3px;
1465
+ }
1466
+
1467
+ div.sw-pinit {
1468
+ display: table !important;
1469
+ line-height: 0;
1470
+ position: relative !important;
1471
+ }
1472
+
1473
+ div.sw-pinit a.sw-pinit-button,
1474
+ div.sw-pinit a.sw-pinit-button:visited {
1475
+ background: #cd2029;
1476
+ border: 1px solid #aa1b29;
1477
+ -webkit-border-radius: 4px;
1478
+ border-radius: 4px;
1479
+ color: #fff;
1480
+ font-size: 20px;
1481
+ height: 50px;
1482
+ line-height: 45px;
1483
+ opacity: 0;
1484
+ padding: 0 30px;
1485
+ position: absolute;
1486
+ text-decoration: none;
1487
+ -webkit-transition: opacity 0.5s;
1488
+ transition: opacity 0.5s;
1489
+ z-index: 200;
1490
+ }
1491
+
1492
+ div.sw-pinit:hover a.sw-pinit-button,
1493
+ div.sw-pinit:focus a.sw-pinit-button {
1494
+ opacity: 1;
1495
+ }
1496
+
1497
+ div.sw-pinit a.sw-pinit-button::before {
1498
+ color: #fff;
1499
+ content: "b";
1500
+ float: left;
1501
+ font-family: sw-icon-font;
1502
+ font-size: 24px;
1503
+ font-weight: normal;
1504
+ line-height: 50px;
1505
+ margin-left: -5px;
1506
+ margin-right: 10px;
1507
+ }
1508
+
1509
+ div.sw-pinit a.sw-pinit-button:hover::before {
1510
+ content: "F";
1511
+ }
1512
+
1513
+ div.sw-pinit a.sw-pinit-button::hover,
1514
+ div.sw-pinit a.sw-pinit-button::focus {
1515
+ background: #aa1b29;
1516
+ color: #fff;
1517
+ text-decoration: none;
1518
+ }
1519
+
1520
+ div.sw-pinit .sw-pinit-left {
1521
+ left: 30px;
1522
+ }
1523
+
1524
+ div.sw-pinit .sw-pinit-center {
1525
+ margin-left: -60px;
1526
+ left: 50%;
1527
+ }
1528
+
1529
+ div.sw-pinit .sw-pinit-right {
1530
+ right: 30px;
1531
+ }
1532
+
1533
+ div.sw-pinit .sw-pinit-top {
1534
+ top: 30px;
1535
+ }
1536
+
1537
+ div.sw-pinit .sw-pinit-middle {
1538
+ margin-top: -25px;
1539
+ top: 50%;
1540
+ }
1541
+
1542
+ div.sw-pinit .sw-pinit-bottom {
1543
+ bottom: 30px;
1544
+ }
1545
+
1546
+ .nc_socialPanel.notMobile .nc_tweetContainer:nth-last-child(1),
1547
+ .mobile .nc_tweetContainer:nth-last-child(2),
1548
+ .nc_tweetContainer.totes:nth-last-child(1) {
1549
+ margin-right: 0;
1550
+ }
1551
+
1552
+ .nc_socialPanel.swp_d_fullColor a,
1553
+ html body .nc_socialPanel.swp_i_fullColor .nc_tweetContainer:hover a,
1554
+ body .nc_socialPanel.swp_o_fullColor:hover a,
1555
+ .nc_socialPanel.swp_d_lightGray a,
1556
+ html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover a,
1557
+ body .nc_socialPanel.swp_o_lightGray:hover a,
1558
+ .nc_socialPanel.swp_d_mediumGray a,
1559
+ html body .nc_socialPanel.swp_i_mediumGray a:hover,
1560
+ body .nc_socialPanel.swp_o_mediumGray:hover a,
1561
+ .nc_socialPanel.swp_d_darkGray a,
1562
+ html body .nc_socialPanel.swp_i_darkGray a:hover,
1563
+ body .nc_socialPanel.swp_o_darkGray:hover a {
1564
+ color: white;
1565
+ }
1566
+
1567
+ .nc_socialPanel.swp_d_colorOutlines .twitter a,
1568
+ html body .nc_socialPanel.swp_i_colorOutlines .twitter a:hover,
1569
+ body .nc_socialPanel.swp_o_colorOutlines:hover .twitter a,
1570
+ .wp-editor-container .sw-twitter:before,
1571
+ a.style1 .sw-click-to-tweet i.sw-twitter,
1572
+ a.style2 .sw-click-to-tweet i.sw-twitter {
1573
+ color: #429cd6;
1574
+ }
1575
+
1576
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .swp_hide span.swp_share,
1577
+ .nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_share:not(.swp_hide) {
1578
+ opacity: 1;
1579
+ }
1580
+
1581
+ .nc_socialPanel.mobile .iconFiller ~ .swp_count,
1582
+ .sw-content-locator {
1583
+ display: none;
1584
+ }
1585
+
1586
+ a.style1 .sw-click-to-tweet .sw-ctt-text,
1587
+ a.style1 .sw-click-to-tweet .sw-ctt-btn {
1588
+ color: #999;
1589
+ text-decoration: none;
1590
+ }
1591
+
1592
+ a.style1:hover .sw-click-to-tweet .sw-ctt-text,
1593
+ a.style1:hover .sw-click-to-tweet .sw-ctt-btn,
1594
+ a.style2:hover .sw-click-to-tweet .sw-ctt-text,
1595
+ a.style2 .sw-click-to-tweet .sw-ctt-btn,
1596
+ a.style2:hover .sw-click-to-tweet .sw-ctt-btn {
1597
+ color: #666;
1598
+ text-decoration: none;
1599
+ }
1600
+
1601
+ a.style3:hover .sw-click-to-tweet .sw-ctt-text,
1602
+ a.style3 .sw-click-to-tweet .sw-ctt-btn,
1603
+ a.style3:hover .sw-click-to-tweet .sw-ctt-btn,
1604
+ a.style3 .sw-click-to-tweet i.sw-twitter,
1605
+ a.style4 .sw-click-to-tweet .sw-ctt-text,
1606
+ a.style4:hover .sw-click-to-tweet .sw-ctt-text,
1607
+ a.style4 .sw-click-to-tweet .sw-ctt-btn,
1608
+ a.style4:hover .sw-click-to-tweet .sw-ctt-btn,
1609
+ a.style5 .sw-click-to-tweet .sw-ctt-text,
1610
+ a.style5:hover .sw-click-to-tweet .sw-ctt-text,
1611
+ a.style5 .sw-click-to-tweet .sw-ctt-btn,
1612
+ a.style5:hover .sw-click-to-tweet .sw-ctt-btn {
1613
+ color: #fff;
1614
+ text-decoration: none;
1615
+ }
1616
+
1617
+ a.style4 .sw-click-to-tweet i.sw-twitter,
1618
+ a.style5 .sw-click-to-tweet i.sw-twitter {
1619
+ color: #fff;
1620
+ }
1621
+
1622
+ a.style6 .sw-click-to-tweet .sw-ctt-text,
1623
+ a.style6 .sw-click-to-tweet .sw-ctt-btn {
1624
+ color: #30394f;
1625
+ text-decoration: none;
1626
+ }
1627
+
1628
+ a.style6:hover .sw-click-to-tweet .sw-ctt-text,
1629
+ a.style6:hover .sw-click-to-tweet .sw-ctt-btn,
1630
+ a.style6:hover .sw-click-to-tweet i.sw-twitter {
1631
+ color: #2a2d34;
1632
+ text-decoration: none;
1633
+ }
1634
+
1635
+ .scale-70 {
1636
+ -ms-transform: scale(0.7);
1637
+ -webkit-transform: scale(0.7);
1638
+ transform: scale(0.7);
1639
+ }
1640
+
1641
+ .nc_socialPanel:not(.nc_floater).scale-70.scale-fullWidth {
1642
+ width: 142.8571428571429%!important;
1643
+ }
1644
+
1645
+ .scale-80 {
1646
+ -ms-transform: scale(0.8);
1647
+ -webkit-transform: scale(0.8);
1648
+ transform: scale(0.8);
1649
+ }
1650
+
1651
+ .nc_socialPanel:not(.nc_floater).scale-80.scale-fullWidth {
1652
+ width: 125%!important;
1653
+ }
1654
+
1655
+ .scale-90 {
1656
+ -ms-transform: scale(0.9);
1657
+ -webkit-transform: scale(0.9);
1658
+ transform: scale(0.9);
1659
+ }
1660
+
1661
+ .nc_socialPanel:not(.nc_floater).scale-90.scale-fullWidth {
1662
+ width: 111.111111111111%!important;
1663
+ }
1664
+
1665
+ .scale-110 {
1666
+ -ms-transform: scale(1.1);
1667
+ -webkit-transform: scale(1.1);
1668
+ transform: scale(1.1);
1669
+ }
1670
+
1671
+ .nc_socialPanel:not(.nc_floater).scale-110.scale-fullWidth {
1672
+ width: 90.90909090909091%!important;
1673
+ }
1674
+
1675
+ .scale-120 {
1676
+ -ms-transform: scale(1.2);
1677
+ -webkit-transform: scale(1.2);
1678
+ transform: scale(1.2);
1679
+ }
1680
+
1681
+ .nc_socialPanel:not(.nc_floater).scale-120.scale-fullWidth {
1682
+ width: 83.33333333333333%!important;
1683
+ }
1684
+
1685
+ .scale-130 {
1686
+ -ms-transform: scale(1.3);
1687
+ -webkit-transform: scale(1.3);
1688
+ transform: scale(1.3);
1689
+ }
1690
+
1691
+ .nc_socialPanel:not(.nc_floater).scale-130.scale-fullWidth {
1692
+ width: 76.92307692307692%!important;
1693
+ }
1694
+
1695
+ .scale-140 {
1696
+ -ms-transform: scale(1.4);
1697
+ -webkit-transform: scale(1.4);
1698
+ transform: scale(1.4);
1699
+ }
1700
+
1701
+ .nc_socialPanel:not(.nc_floater).scale-140.scale-fullWidth {
1702
+ width: 71.42857142857143%!important;
1703
+ }
1704
+
1705
+ .scale-fullWidth,
1706
+ .scale-left,
1707
+ .nc_floater.scale-center,
1708
+ .nc_floater.scale-right {
1709
+ -ms-transform-origin: left;
1710
+ -webkit-transform-origin: left;
1711
+ transform-origin: left;
1712
+ }
1713
+
1714
+ .scale-right {
1715
+ -ms-transform-origin: right;
1716
+ -webkit-transform-origin: right;
1717
+ transform-origin: right;
1718
+ }
1719
+
1720
+ .scale-center {
1721
+ -ms-transform-origin: center;
1722
+ -webkit-transform-origin: center;
1723
+ transform-origin: center;
1724
+ }
1725
+
1726
+ div.nc_socialPanel .nc_tweetContainer.swp_emphasize {
1727
+ -webkit-box-flex: 2;
1728
+ -moz-box-flex: 2;
1729
+ -webkit-flex: 2;
1730
+ -ms-flex: 2;
1731
+ flex: 2;
1732
+ }
1733
+
1734
+ div.nc_socialPanel .nc_tweetContainer.swp_whatsapp:not(.mobile) {
1735
+ display: none;
1736
+ }
1737
+
1738
+ .sw-pinit.aligncenter {
1739
+ margin: 0 auto;
1740
+ }
1741
+
1742
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
1743
+ div.sw-pinit {
1744
+ display: inline-block!important;
1745
+ max-width: 100%;
1746
+ }
1747
+ }
1748
+
1749
+ .swp_hidden_pin_image {
1750
+ height: 0;
1751
+ opacity: 0;
1752
+ position: absolute;
1753
+ top: 0;
1754
+ width: 0;
1755
+ }
css/style.min.css CHANGED
@@ -1 +1 @@
1
- .nc_socialPanel{clear:both;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;height:34px;line-height:1;margin-bottom:20px!important;margin-top:20px!important;overflow:hidden;padding:0;-webkit-align-items:stretch;align-items:stretch;-webkit-box-align:stretch;-moz-box-align:stretch;-webkit-box-pack:justify;-moz-box-pack:justify;direction:ltr;-ms-flex-align:stretch;-ms-flex-line-pack:center;-ms-flex-pack:justify;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.nc_socialPanel:not(.nc_floater):not(.nc_socialPanelSide){width:100%!important}.nc_wrapper .nc_socialPanel{margin-bottom:10px!important;margin-top:10px!important}div.nc_socialPanel .nc_tweetContainer{-webkit-border-radius:2px;border-radius:2px;cursor:pointer;float:left;font-family:Lato;height:32px;margin:0 5px 3px;min-width:34px;overflow:hidden;text-align:center;-webkit-transition:all .1s linear;transition:all .1s linear;border-size:1px}div.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.nc_socialPanel .nc_tweetContainer a.nc_tweet,.nc_socialPanel .totes .swp_count{display:block;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;font-family:Lato,sans-serif;font-size:18px!important;font-weight:700;height:30px;text-decoration:none;text-decoration:none!important;text-transform:none;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-child(1){margin-left:0}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-last-child(1){margin-right:0}.nc_socialPanel a .swp_count:not(.swp_hide){display:inline-block;line-height:32px;margin:0;padding:0 5px;-webkit-box-flex:1;-moz-box-flex:1}.nc_socialPanel .totes .swp_count,span.swp_share{line-height:30px}.nc_socialPanel a .swp_count.swp_hide{margin:0 auto}.nc_socialPanel span:before{content:initial!important}.nc_socialPanel span.swp_count{font-size:14px}.nc_socialPanel span.iconFiller{font-size:18px;margin:0 auto}.nc_socialPanel.notMobile .nc_tweetContainer:nth-child(1){margin-left:0}.nc_socialPanel:not(.nc_socialPanelSide){-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-child(1){margin-left:0;margin-right:15px;padding-left:0}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-last-child(1){margin-right:0;padding-right:0}a.swp_CTT{cursor:pointer}span.swp_share{display:block;float:right;float:left;font-size:14px;font-weight:400;height:30px;margin:0 0 0 6px;max-width:none!important;vertical-align:middle}.nc_socialPanelSide span.swp_share{margin:0}.nc_socialPanel .sw{float:left;height:30px;line-height:32px;margin:0 5px;text-shadow:none!important;width:20px}.iconFiller{display:block;float:left;height:30px;overflow:hidden;-webkit-transition:width .1s linear;transition:width .1s linear}.nc_socialPanel .iconFiller{width:30px}span.spaceManWilly{display:block;width:120px}.nc_socialPanel .totes{background:#c4c4c4;border:1px solid #e08a0f;-webkit-border-radius:2px;border-radius:2px;color:#fff;cursor:default;display:block;font-size:19px;padding:0 10px;-webkit-box-flex:0!important;-moz-box-flex:0!important;-webkit-flex:none!important;-ms-flex:none!important;flex:none!important}.nc_socialPanel div.totes.totesalt,.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)){background:0 0!important;border:none;color:#474b4d;margin-left:0!important}div.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)){background:0 0;color:#474b4d;margin-left:10px}.nc_socialPanel .totes.totesalt .swp_label{color:#474b4d;font-size:10px;letter-spacing:0;min-width:40px;vertical-align:middle}.nc_socialPanel .totes .swp_label{font-size:10px;vertical-align:middle}.nc_socialPanel .totes.totesalt .swp_count{color:#474b4d;font-size:24px}.nc_socialPanel.swp_customFull:hover div.totes,.nc_socialPanel.swp_fade .totes,.nc_socialPanel.swp_fullColor .totes,.nc_socialPanel:hover .totes{background:#e08a0f}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer.totes.totesalt:before{content:"o";display:inline-block;font-family:sw-icon-font;margin-top:7px;vertical-align:top}.nc_socialPanel:not(.nc_socialPanelSide) .totes.totesalt .swp_count{display:inline-block;line-height:0;margin-left:8px;margin-top:12px;min-width:45px;position:relative;vertical-align:middle}span.swp_label{display:block;font-size:9px!important;margin-top:13px;position:absolute;text-align:center!important;text-transform:uppercase}.nc_socialPanelSide span.swp_label{margin-top:0}.nc_socialPanel.swp_leaf .nc_tweetContainer{-webkit-border-radius:15px 0;border-radius:15px 0;border-width:1px}.nc_socialPanel.swp_pill .nc_tweetContainer{-webkit-border-radius:50px;border-radius:50px;border-width:1px}.nc_socialPanel.swp_shift .nc_tweetContainer:not(.totes){border-width:1px;-moz-transform:skew(-25deg);-o-transform:skew(-25deg);-webkit-transform:skew(-25deg)}.nc_socialPanel.swp_shift .nc_tweetContainer a{-moz-transform:skew(25deg);-o-transform:skew(25deg);-webkit-transform:skew(25deg)}.swp_connected .nc_tweetContainer,.swp_connected .nc_tweetContainer:hover,.swp_connected:hover .nc_tweetContainer{-webkit-border-radius:0!important;border-radius:0!important;border-width:1px;margin:0!important}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .googlePlus:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .googlePlus:hover{border:1px solid #df4b37}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .twitter,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .twitter:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .twitter:hover{border:1px solid #429cd6}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_fb:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_fb:hover{border:1px solid #3a589e}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .nc_pinterest:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .nc_pinterest:hover{border:1px solid #cd2029}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .linkedIn:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .linkedIn:hover{border:1px solid #0d77b7}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_tumblr:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_tumblr:hover{border:1px solid #39475d}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_stumbleupon:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_stumbleupon:hover{border:1px solid #ef5025}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_yummly:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_yummly:hover{border:1px solid #e26426}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_reddit:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_reddit:hover{border:1px solid #f04b23}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_email:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_email:hover{border:1px solid #6bcce9}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_whatsapp:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_whatsapp:hover{border:1px solid #71c169}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_pocket:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_pocket:hover{border:1px solid #ef4056}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_buffer:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_buffer:hover{border:1px solid #323b43}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_hacker_news:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_hacker_news:hover{border:1px solid #d85623}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_flipboard:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_flipboard:hover{border:1px solid #bf2626}.nc_socialPanel.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_o_fullColor:hover .googlePlus,html body .nc_socialPanel.swp_i_fullColor .googlePlus:hover{background:#df4b37;border:1px solid #c44133}.nc_socialPanel.swp_d_fullColor .twitter,body .nc_socialPanel.swp_o_fullColor:hover .twitter,html body .nc_socialPanel.swp_i_fullColor .twitter:hover{background:#429cd6;border:1px solid #3c87b2}.nc_socialPanel.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_o_fullColor:hover .swp_fb,html body .nc_socialPanel.swp_i_fullColor .swp_fb:hover{background:#3a589e;border:1px solid #2e4675}.nc_socialPanel.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_o_fullColor:hover .nc_pinterest,html body .nc_socialPanel.swp_i_fullColor .nc_pinterest:hover{background:#cd2029;border:1px solid #aa1b29}.nc_socialPanel.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_o_fullColor:hover .linkedIn,html body .nc_socialPanel.swp_i_fullColor .linkedIn:hover{background:#0d77b7;border:1px solid #0c6591}.nc_socialPanel.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_o_fullColor:hover .swp_tumblr,html body .nc_socialPanel.swp_i_fullColor .swp_tumblr:hover{background:#39475d;border:1px solid #27313f}.nc_socialPanel.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_o_fullColor:hover .swp_stumbleupon,html body .nc_socialPanel.swp_i_fullColor .swp_stumbleupon:hover{background:#ef5025;border:1px solid #d34427}.nc_socialPanel.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_o_fullColor:hover .swp_yummly,html body .nc_socialPanel.swp_i_fullColor .swp_yummly:hover{background:#e26426;border:1px solid #b65027}.nc_socialPanel.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_o_fullColor:hover .swp_reddit,html body .nc_socialPanel.swp_i_fullColor .swp_reddit:hover{background:#f04b23;border:1px solid #d33f27}.nc_socialPanel.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_o_fullColor:hover .swp_email,html body .nc_socialPanel.swp_i_fullColor .swp_email:hover{background:#6bcce9;border:1px solid #61bace}.nc_socialPanel.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_o_fullColor:hover .swp_whatsapp,html body .nc_socialPanel.swp_i_fullColor .swp_whatsapp:hover{background:#71c169;border:1px solid #28b04b}.nc_socialPanel.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_o_fullColor:hover .swp_pocket,html body .nc_socialPanel.swp_i_fullColor .swp_pocket:hover{background:#ef4056;border:1px solid #ce3d55}.nc_socialPanel.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_o_fullColor:hover .swp_buffer,html body .nc_socialPanel.swp_i_fullColor .swp_buffer:hover{background:#323b43;border:1px solid #000}.nc_socialPanel.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_o_fullColor:hover .swp_hacker_news,html body .nc_socialPanel.swp_i_fullColor .swp_hacker_news:hover{background:#f16522;border:1px solid #d85623}.nc_socialPanel.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_o_fullColor:hover .swp_flipboard,html body .nc_socialPanel.swp_i_fullColor .swp_flipboard:hover{background:#e02828;border:1px solid #bf2626}.nc_socialPanel.swp_threeDee.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .googlePlus,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .googlePlus:hover{border-bottom:3px solid #c44133}.nc_socialPanel.swp_threeDee.swp_d_fullColor .twitter,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .twitter,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .twitter:hover{border-bottom:3px solid #5595bc}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_fb,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_fb:hover{border-bottom:3px solid #2e4675}.nc_socialPanel.swp_threeDee.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .nc_pinterest,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .nc_pinterest:hover{border-bottom:3px solid #aa1b29}.nc_socialPanel.swp_threeDee.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .linkedIn,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .linkedIn:hover{border-bottom:3px solid #0c6591}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_tumblr,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_tumblr:hover{border-bottom:3px solid #27313f}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_stumbleupon,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_stumbleupon:hover{border-bottom:3px solid #d34427}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_yummly,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_yummly:hover{border-bottom:3px solid #b65027}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_reddit,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_reddit:hover{border-bottom:3px solid #d33f27}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_email,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_email:hover{border-bottom:3px solid #61bace}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_whatsapp,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_whatsapp:hover{border-bottom:3px solid #28b04b}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_pocket,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_pocket:hover{border-bottom:3px solid #ce3d55}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_buffer,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_buffer:hover{border-bottom:3px solid #000}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_hacker_news,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_hacker_news:hover{border-bottom:3px solid #d85623}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_flipboard,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_flipboard:hover{border-bottom:3px solid #bf2626}.nc_socialPanel.swp_d_lightGray .nc_tweetContainer,body .nc_socialPanel.swp_o_lightGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover{background-color:#ccc;border:1px solid #ccc}.nc_socialPanel.swp_threeDee.swp_d_lightGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_lightGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_lightGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #999}.nc_socialPanel.swp_d_mediumGray .nc_tweetContainer,body .nc_socialPanel.swp_o_mediumGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_mediumGray .nc_tweetContainer:hover{background-color:#999;border:1px solid #999}.nc_socialPanel.swp_threeDee.swp_d_mediumGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_mediumGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_mediumGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #444}.nc_socialPanel.swp_d_darkGray .nc_tweetContainer,body .nc_socialPanel.swp_o_darkGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_darkGray .nc_tweetContainer:hover{background-color:#444;border:1px solid #444}.nc_socialPanel.swp_threeDee.swp_d_darkGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_darkGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_darkGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #222}.nc_socialPanel.swp_d_lgOutlines a,body .nc_socialPanel.swp_o_lgOutlines:hover a,html body .nc_socialPanel.swp_i_lgOutlines a:hover{color:#ccc}.nc_socialPanel.swp_d_lgOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_lgOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_lgOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #ccc}.nc_socialPanel.swp_d_mdOutlines a,body .nc_socialPanel.swp_o_mdOutlines:hover a,html body .nc_socialPanel.swp_i_mdOutlines a:hover{color:#999}.nc_socialPanel.swp_d_mdOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_mdOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_mdOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #999}.nc_socialPanel.swp_d_dgOutlines a,body .nc_socialPanel.swp_o_dgOutlines:hover a,html body .nc_socialPanel.swp_i_dgOutlines a:hover{color:#444}.nc_socialPanel.swp_d_dgOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_dgOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_dgOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #444}.nc_socialPanel.swp_d_colorOutlines .googlePlus a,body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus a,html body .nc_socialPanel.swp_i_colorOutlines .googlePlus a:hover{color:#df4b37}.nc_socialPanel.swp_d_colorOutlines .swp_fb a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb a,html body .nc_socialPanel.swp_i_colorOutlines .swp_fb a:hover{color:#3a589e}.nc_socialPanel.swp_d_colorOutlines .nc_pinterest a,body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest a,html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest a:hover{color:#cd2029}.nc_socialPanel.swp_d_colorOutlines .linkedIn a,body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn a,html body .nc_socialPanel.swp_i_colorOutlines .linkedIn a:hover{color:#0d77b7}.nc_socialPanel.swp_d_colorOutlines .swp_tumblr a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr a,html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr a:hover{color:#39475d}.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon a,html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon a:hover{color:#ef5025}.nc_socialPanel.swp_d_colorOutlines .swp_yummly a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly a,html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly a:hover{color:#e26426}.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp a,html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp a:hover{color:#71c169}.nc_socialPanel.swp_d_colorOutlines .swp_pocket a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket a,html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket a:hover{color:#ef4056}.nc_socialPanel.swp_d_colorOutlines .swp_reddit a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit a,html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit a:hover{color:#f04b23}.nc_socialPanel.swp_d_colorOutlines .swp_email a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email a,html body .nc_socialPanel.swp_i_colorOutlines .swp_email a:hover{color:#6bcce9}.nc_socialPanel.swp_d_colorOutlines .swp_buffer a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer a,html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer a:hover{color:#323b43}.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news a,html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news a:hover{color:#f16522}.nc_socialPanel.swp_d_colorOutlines .swp_flipboard a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard a,html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard a:hover{color:#e02828}.nc_socialPanel.swp_d_colorOutlines .googlePlus,body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus,html body .nc_socialPanel.swp_i_colorOutlines .googlePlus:hover{background:0 0;border:1px solid #df4b37}.nc_socialPanel.swp_d_colorOutlines .twitter,body .nc_socialPanel.swp_o_colorOutlines:hover .twitter,html body .nc_socialPanel.swp_i_colorOutlines .twitter:hover{background:0 0;border:1px solid #429cd6}.nc_socialPanel.swp_d_colorOutlines .swp_fb,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb,html body .nc_socialPanel.swp_i_colorOutlines .swp_fb:hover{background:0 0;border:1px solid #3a589e}.nc_socialPanel.swp_d_colorOutlines .nc_pinterest,body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest,html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest:hover{background:0 0;border:1px solid #cd2029}.nc_socialPanel.swp_d_colorOutlines .linkedIn,body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn,html body .nc_socialPanel.swp_i_colorOutlines .linkedIn:hover{background:0 0;border:1px solid #0d77b7}.nc_socialPanel.swp_d_colorOutlines .swp_tumblr,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr,html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr:hover{background:0 0;border:1px solid #39475d}.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon,html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon:hover{background:0 0;border:1px solid #ef5025}.nc_socialPanel.swp_d_colorOutlines .swp_yummly,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly,html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly:hover{background:0 0;border:1px solid #e26426}.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp,html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp:hover{background:0 0;border:1px solid #71c169}.nc_socialPanel.swp_d_colorOutlines .swp_reddit,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit,html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit:hover{background:0 0;border:1px solid #f04b23}.nc_socialPanel.swp_d_colorOutlines .swp_email,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email,html body .nc_socialPanel.swp_i_colorOutlines .swp_email:hover{background:0 0;border:1px solid #6bcce9}.nc_socialPanel.swp_d_colorOutlines .swp_pocket,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket,html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket:hover{background:0 0;border:1px solid #ef4056}.nc_socialPanel.swp_d_colorOutlines .swp_buffer,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer,html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer:hover{background:0 0;border:1px solid #323b43}.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news,html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news:hover{background:0 0;border:1px solid #f16522}.nc_socialPanel.swp_d_colorOutlines .swp_flipboard,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard,html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard:hover{background:0 0;border:1px solid #bf2626}.nc_socialPanelSide{flex-direction:column;height:auto;overflow:visible;top:200px;-webkit-transition:all .2s linear;transition:all .2s linear;width:100px!important;z-index:9999999;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column}.nc_socialPanelSide.slide{position:fixed;left:-100px;-webkit-transition:all .2s linear;transition:all .2s linear}.nc_socialPanelSide.fade{display:none;position:fixed;left:5px;-webkit-transition:all .2s linear;transition:all .2s linear}.nc_socialPanelSide .nc_tweetContainer{background:#dd4b38;-webkit-border-radius:3px;border-radius:3px;clear:both;display:block;font-family:Lato,sans-serif;height:32px;margin:3px 0!important;overflow:hidden;padding:0;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top;width:90px}.nc_socialPanelSide .nc_tweetContainer .iconFiller{display:inline-block;height:40px;margin:0 6px;padding:0;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:middle;width:21px}.nc_socialPanelSide .nc_tweetContainer .swp_count{display:inline-block;font-size:14px;height:32px;line-height:35px;margin:0;overflow:hidden;padding:0;text-align:right;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top;width:0}.nc_socialPanelSide .nc_tweetContainer a{cursor:pointer;display:block;font-weight:500;height:36px;margin:0;padding:0;text-decoration:none;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top}.nc_socialPanelSide .nc_tweetContainer .sw,.nc_socialPanelSide .nc_tweetContainer .swp_share{float:left;line-height:34px}.nc_socialPanelSide.swp_default .nc_tweetContainer .sw{line-height:32px}.nc_socialPanelSide.swp_default .nc_tweetContainer .swp_share{line-height:30px}.nc_socialPanelSide .nc_tweetContainer .swp_share{font-size:13px}.nc_socialPanelSide .nc_tweetContainer:hover,.nc_socialPanelSide .nc_tweetContainer:hover .iconFiller,.nc_socialPanelSide .nc_tweetContainer:hover .swp_count{-webkit-transition:all .1s linear;transition:all .1s linear}.nc_socialPanelSide.swp_boxed{-ms-transform:scale(.9);-webkit-transform:scale(.9);transform:scale(.9)}.nc_socialPanelSide.swp_boxed .nc_tweetContainer{margin-bottom:5px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer,.nc_socialPanelSide.swp_boxed .nc_tweetContainer a{height:75px;position:relative;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer i.sw{font-size:27px;height:40px;margin:0;padding-top:10px;text-align:center;width:100%}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_share{height:35px;opacity:0;position:absolute;bottom:0;left:0;text-align:center;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count{height:35px;margin:0;padding:0;position:absolute;bottom:0;left:0;text-align:center;-webkit-transition:padding .1s linear;transition:padding .1s linear;width:100%}.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller,.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count.swp_hide{height:75px;opacity:1}.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.iconFiller{height:40px;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_count:not(.swp_hide){opacity:0}.nc_socialPanelSide.swp_boxed .totes{padding:0;width:75px!important}.nc_socialPanelSide .nc_tweetContainer:not(.totes){line-height:34px}.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes) .iconFiller{margin-left:2px;width:30px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count{padding:0 8px;width:48px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count.swp_hide{padding:0;width:100%}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_hide .iconFiller{display:block;float:none;margin:0 auto}.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes):hover{width:150px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .spaceManWilly,.nc_socialPanelSide .nc_tweetContainer:not(.totes):hover .iconFiller{width:90px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .spaceManWilly,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover .iconFiller{width:100%}.nc_socialPanelSide .nc_tweetContainer.totes{background:rgba(0,0,0,0);border:0!important;font-weight:800;height:45px;margin:0;padding:0;text-align:center;width:90px}.nc_socialPanelSide .nc_tweetContainer.totes .swp_count{color:#444;display:block;font-family:Lato,sans-serif;height:28px;text-align:center;width:100%}.nc_socialPanelSide .nc_tweetContainer.totes .swp_label{color:#444;display:block;font-family:Lato,sans-serif;font-size:50%;position:relative;text-align:center;width:100%}.nc_wrapper{background:#fff;position:fixed;-webkit-transition:top .5s bottom .5s;transition:top .5s bottom .5s;width:100%;z-index:99999}.nc_wrapper.floatBottom{bottom:0;left:0}.nc_wrapper.floatTop{top:0;left:0}.nc_floater{margin:10px 0;position:relative;left:304px;width:740px}.nc_socialPanelSide.hideCounts a{text-align:center}.nc_socialPanelSide.hideCounts .iconFiller{float:none;text-align:left}.sw{display:inline-block;font-family:sw-icon-font!important;font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;text-rendering:auto;-ms-transform:translate(0,0);-webkit-transform:translate(0,0);transform:translate(0,0)}.sw:before{display:block!important}.wp-editor-container .sw:before{font-size:18px;line-height:22px}.wp-editor-container .sw-social-warfare:before{color:#ee464f}.mce-container .sw-social-warfare{color:#ee464f;font-size:20px;margin-right:15px;vertical-align:middle}.sw-google-plus:before{content:"h"}.sw-pinterest:before{content:"b"}.sw-twitter:before{content:"s"}.sw-facebook:before{content:"j"}.sw-linkedin:before{content:"f"}.sw-tumblr:before{content:"r"}.sw-stumbleupon:before{content:"q"}.sw-reddit:before{content:"a"}.sw-email:before{content:"k"}.sw-yummly:before{content:"x"}.sw-whatsapp:before{content:"y"}.sw-pocket:before{content:"B"}.sw-buffer:before{content:"z"}.sw-hacker_news:before{content:"D"}.sw-flipboard:before{content:"C"}.sw-social-warfare:before{content:"p"}.sw-click-to-tweet:after,.sw-tweet-clear:after{content:".";height:0;clear:both;visibility:hidden;display:block}.swp_CTT{text-decoration:none!important}.sw-tweet-clear{zoom:1}.sw-click-to-tweet{display:block;margin:15px 0;padding:15px 30px;position:relative}.sw-click-to-tweet:after{line-height:0}.sw-click-to-tweet .sw-ctt-text{margin:0 0 10px;padding:0;position:relative;word-wrap:break-word}a .sw-click-to-tweet .sw-ctt-text{display:block;font-size:24px;font-weight:500;line-height:140%;margin:0;padding:0;position:relative;text-decoration:none;text-transform:none}.sw-click-to-tweet .sw-ctt-btn{display:block;float:right;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;line-height:100%;margin:10px 0 0;padding:3px 5px 3px 3px;position:relative;text-decoration:none;text-transform:uppercase}.sw-click-to-tweet i.sw-twitter{float:right;font-size:21px;margin-left:15px;margin-top:2px;text-transform:none}a.swp_CTT.style1 .sw-click-to-tweet{background-color:#fff;border:1px solid #ddd;-webkit-border-radius:4px;border-radius:4px}a.swp_CTT.style2 .sw-click-to-tweet{background-color:#fff;border:4px double #ddd;-webkit-border-radius:0;border-radius:0}a.style2 .sw-click-to-tweet .sw-ctt-text{color:#666;font-style:italic;text-decoration:none}a.swp_CTT.style3:hover .sw-click-to-tweet{border-left:10px solid #3c87b2;padding-right:20px;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style3 .sw-click-to-tweet{background-color:#429cd6;border:none;border-left:10px solid #429cd6;-webkit-border-radius:0;border-radius:0;padding-right:20px;-webkit-transition:all .25s linear;transition:all .25s linear}a.style3 .sw-click-to-tweet .sw-ctt-text{color:#fff;font-style:italic;text-decoration:none}a.swp_CTT.style4:hover .sw-click-to-tweet{border-left:10px solid #3c87b2;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style4 .sw-click-to-tweet{background-color:#333;border-left:10px solid #c33;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style5:hover .sw-click-to-tweet{background-color:#d34250;border-left:10px solid #30394f;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style5 .sw-click-to-tweet{background-color:#30394f;border-left:10px solid #d34250;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style6:hover .sw-click-to-tweet{background-color:#ced3dc;border-left:10px solid #d34250;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style6 .sw-click-to-tweet{background-color:#eee;border-left:10px solid #d34250;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.style6 .sw-click-to-tweet i.sw-twitter{color:#30394f}.swp_pop_thumb{-webkit-border-radius:3px;border-radius:3px;float:left;height:100px;margin:5px 25px 5px 0;width:100px}.swp_popular_post{clear:both}.swp_clearfix:after{clear:both;content:" ";display:block;height:0;visibility:hidden}.swp_popular_post a.swp_popularity{border:none;display:block;line-height:1.5;margin:20px 0}span.swp_pop_count{display:block;font-size:70%}.swp_widget_box{-webkit-border-radius:3px;border-radius:3px}div.sw-pinit{display:table!important;line-height:0;position:relative!important}.nc_socialPanel.mobile .iconFiller~.swp_count,.sw-content-locator,div.nc_socialPanel .nc_tweetContainer.swp_whatsapp:not(.mobile){display:none}div.sw-pinit a.sw-pinit-button,div.sw-pinit a.sw-pinit-button:visited{background:#cd2029;border:1px solid #aa1b29;-webkit-border-radius:4px;border-radius:4px;color:#fff;font-size:20px;height:50px;line-height:45px;opacity:0;padding:0 30px;position:absolute;text-decoration:none;-webkit-transition:opacity .5s;transition:opacity .5s;z-index:200}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .swp_hide span.swp_share,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_share:not(.swp_hide),div.sw-pinit:focus a.sw-pinit-button,div.sw-pinit:hover a.sw-pinit-button{opacity:1}div.sw-pinit a.sw-pinit-button::before{color:#fff;content:"b";float:left;font-family:sw-icon-font;font-size:24px;font-weight:400;line-height:50px;margin-left:-5px;margin-right:10px}div.sw-pinit a.sw-pinit-button:hover::before{content:"F"}div.sw-pinit a.sw-pinit-button::focus,div.sw-pinit a.sw-pinit-button::hover{background:#aa1b29;color:#fff;text-decoration:none}div.sw-pinit .sw-pinit-left{left:30px}div.sw-pinit .sw-pinit-center{margin-left:-60px;left:50%}div.sw-pinit .sw-pinit-right{right:30px}div.sw-pinit .sw-pinit-top{top:30px}div.sw-pinit .sw-pinit-middle{margin-top:-25px;top:50%}div.sw-pinit .sw-pinit-bottom{bottom:30px}.mobile .nc_tweetContainer:nth-last-child(2),.nc_socialPanel.notMobile .nc_tweetContainer:nth-last-child(1),.nc_tweetContainer.totes:nth-last-child(1){margin-right:0}.nc_socialPanel.swp_d_darkGray a,.nc_socialPanel.swp_d_fullColor a,.nc_socialPanel.swp_d_lightGray a,.nc_socialPanel.swp_d_mediumGray a,body .nc_socialPanel.swp_o_darkGray:hover a,body .nc_socialPanel.swp_o_fullColor:hover a,body .nc_socialPanel.swp_o_lightGray:hover a,body .nc_socialPanel.swp_o_mediumGray:hover a,html body .nc_socialPanel.swp_i_darkGray a:hover,html body .nc_socialPanel.swp_i_fullColor .nc_tweetContainer:hover a,html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover a,html body .nc_socialPanel.swp_i_mediumGray a:hover{color:#fff}.nc_socialPanel.swp_d_colorOutlines .twitter a,.wp-editor-container .sw-twitter:before,a.style1 .sw-click-to-tweet i.sw-twitter,a.style2 .sw-click-to-tweet i.sw-twitter,body .nc_socialPanel.swp_o_colorOutlines:hover .twitter a,html body .nc_socialPanel.swp_i_colorOutlines .twitter a:hover{color:#429cd6}a.style1 .sw-click-to-tweet .sw-ctt-btn,a.style1 .sw-click-to-tweet .sw-ctt-text{color:#999;text-decoration:none}a.style1:hover .sw-click-to-tweet .sw-ctt-btn,a.style1:hover .sw-click-to-tweet .sw-ctt-text,a.style2 .sw-click-to-tweet .sw-ctt-btn,a.style2:hover .sw-click-to-tweet .sw-ctt-btn,a.style2:hover .sw-click-to-tweet .sw-ctt-text{color:#666;text-decoration:none}a.style3 .sw-click-to-tweet .sw-ctt-btn,a.style3 .sw-click-to-tweet i.sw-twitter,a.style3:hover .sw-click-to-tweet .sw-ctt-btn,a.style3:hover .sw-click-to-tweet .sw-ctt-text,a.style4 .sw-click-to-tweet .sw-ctt-btn,a.style4 .sw-click-to-tweet .sw-ctt-text,a.style4:hover .sw-click-to-tweet .sw-ctt-btn,a.style4:hover .sw-click-to-tweet .sw-ctt-text,a.style5 .sw-click-to-tweet .sw-ctt-btn,a.style5 .sw-click-to-tweet .sw-ctt-text,a.style5:hover .sw-click-to-tweet .sw-ctt-btn,a.style5:hover .sw-click-to-tweet .sw-ctt-text{color:#fff;text-decoration:none}a.style4 .sw-click-to-tweet i.sw-twitter,a.style5 .sw-click-to-tweet i.sw-twitter{color:#fff}a.style6 .sw-click-to-tweet .sw-ctt-btn,a.style6 .sw-click-to-tweet .sw-ctt-text{color:#30394f;text-decoration:none}a.style6:hover .sw-click-to-tweet .sw-ctt-btn,a.style6:hover .sw-click-to-tweet .sw-ctt-text,a.style6:hover .sw-click-to-tweet i.sw-twitter{color:#2a2d34;text-decoration:none}.scale-70{-ms-transform:scale(.7);-webkit-transform:scale(.7);transform:scale(.7)}.nc_socialPanel:not(.nc_floater).scale-70.scale-fullWidth{width:142.8571428571429%!important}.scale-80{-ms-transform:scale(.8);-webkit-transform:scale(.8);transform:scale(.8)}.nc_socialPanel:not(.nc_floater).scale-80.scale-fullWidth{width:125%!important}.scale-90{-ms-transform:scale(.9);-webkit-transform:scale(.9);transform:scale(.9)}.nc_socialPanel:not(.nc_floater).scale-90.scale-fullWidth{width:111.111111111111%!important}.scale-110{-ms-transform:scale(1.1);-webkit-transform:scale(1.1);transform:scale(1.1)}.nc_socialPanel:not(.nc_floater).scale-110.scale-fullWidth{width:90.90909090909091%!important}.scale-120{-ms-transform:scale(1.2);-webkit-transform:scale(1.2);transform:scale(1.2)}.nc_socialPanel:not(.nc_floater).scale-120.scale-fullWidth{width:83.33333333333333%!important}.scale-130{-ms-transform:scale(1.3);-webkit-transform:scale(1.3);transform:scale(1.3)}.nc_socialPanel:not(.nc_floater).scale-130.scale-fullWidth{width:76.92307692307692%!important}.scale-140{-ms-transform:scale(1.4);-webkit-transform:scale(1.4);transform:scale(1.4)}.nc_socialPanel:not(.nc_floater).scale-140.scale-fullWidth{width:71.42857142857143%!important}.nc_floater.scale-center,.nc_floater.scale-right,.scale-fullWidth,.scale-left{-ms-transform-origin:left;-webkit-transform-origin:left;transform-origin:left}.scale-right{-ms-transform-origin:right;-webkit-transform-origin:right;transform-origin:right}.scale-center{-ms-transform-origin:center;-webkit-transform-origin:center;transform-origin:center}div.nc_socialPanel .nc_tweetContainer.swp_emphasize{-webkit-box-flex:2;-moz-box-flex:2;-webkit-flex:2;-ms-flex:2;flex:2}.sw-pinit.aligncenter{margin:0 auto}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){div.sw-pinit{display:inline-block!important;max-width:100%}}.swp_hidden_pin_image{height:0;opacity:0;position:absolute;top:0;width:0}
1
+ .nc_socialPanel{clear:both;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;height:34px;line-height:1;margin-bottom:20px!important;margin-top:20px!important;overflow:hidden;padding:0;-webkit-align-items:stretch;align-items:stretch;-webkit-box-align:stretch;-moz-box-align:stretch;-webkit-box-pack:justify;-moz-box-pack:justify;direction:ltr;-ms-flex-align:stretch;-ms-flex-line-pack:center;-ms-flex-pack:justify;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;justify-content:space-between}.nc_socialPanel:not(.nc_floater):not(.nc_socialPanelSide){width:100%!important}.nc_wrapper .nc_socialPanel{margin-bottom:10px!important;margin-top:10px!important}div.nc_socialPanel .nc_tweetContainer{-webkit-border-radius:2px;border-radius:2px;cursor:pointer;float:left;font-family:Lato;height:32px;margin:0 5px 3px;min-width:34px;overflow:hidden;text-align:center;-webkit-transition:all .1s linear;transition:all .1s linear;border-size:1px}div.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer{-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.nc_socialPanel .nc_tweetContainer a.nc_tweet,.nc_socialPanel .totes .swp_count{display:block;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;font-family:Lato,sans-serif;font-size:18px!important;font-weight:700;height:30px;text-decoration:none;text-decoration:none!important;text-transform:none;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-webkit-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-child(1){margin-left:0}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:nth-last-child(1){margin-right:0}.nc_socialPanel a .swp_count:not(.swp_hide){display:inline-block;line-height:32px;margin:0;padding:0 5px;-webkit-box-flex:1;-moz-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.nc_socialPanel .totes .swp_count,span.swp_share{line-height:30px}.nc_socialPanel a .swp_count.swp_hide{margin:0 auto}.nc_socialPanel span:before{content:initial!important}.nc_socialPanel span.swp_count{font-size:14px}.nc_socialPanel span.iconFiller{font-size:18px;margin:0 auto}.nc_socialPanel.notMobile .nc_tweetContainer:nth-child(1){margin-left:0}.nc_socialPanel:not(.nc_socialPanelSide){-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-child(1){margin-left:0;margin-right:15px;padding-left:0}.nc_socialPanel:not(.nc_socialPanelSide) div.totes.totesalt:nth-last-child(1){margin-right:0;padding-right:0}a.swp_CTT{cursor:pointer}span.swp_share{display:block;float:right;float:left;font-size:14px;font-weight:400;height:30px;margin:0 0 0 6px;max-width:none!important;vertical-align:middle}.nc_socialPanelSide span.swp_share{margin:0}.nc_socialPanel .sw{float:left;height:30px;line-height:32px;margin:0 5px;text-shadow:none!important;width:20px}.iconFiller{display:block;float:left;height:30px;overflow:hidden;-webkit-transition:width .1s linear;transition:width .1s linear}.nc_socialPanel .iconFiller{width:30px}span.spaceManWilly{display:block;width:120px}.nc_socialPanel .totes{background:#c4c4c4;border:1px solid #e08a0f;-webkit-border-radius:2px;border-radius:2px;color:#fff;cursor:default;display:block;font-size:19px;padding:0 10px;-webkit-box-flex:0!important;-moz-box-flex:0!important;-webkit-flex:none!important;-ms-flex:none!important;flex:none!important}.nc_socialPanel div.totes.totesalt,.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)){background:0 0!important;border:none;color:#474b4d;margin-left:0!important}div.nc_socialPanel:hover div.totes.totesalt:not(:nth-child(1)){background:0 0;color:#474b4d;margin-left:10px}.nc_socialPanel .totes.totesalt .swp_label{color:#474b4d;font-size:10px;letter-spacing:0;min-width:40px;vertical-align:middle}.nc_socialPanel .totes .swp_label{font-size:10px;vertical-align:middle}.nc_socialPanel .totes.totesalt .swp_count{color:#474b4d;font-size:24px}.nc_socialPanel.swp_customFull:hover div.totes,.nc_socialPanel.swp_fade .totes,.nc_socialPanel.swp_fullColor .totes,.nc_socialPanel:hover .totes{background:#e08a0f}.nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer.totes.totesalt:before{content:"o";display:inline-block;font-family:sw-icon-font;margin-top:7px;vertical-align:top}.nc_socialPanel:not(.nc_socialPanelSide) .totes.totesalt .swp_count{display:inline-block;line-height:0;margin-left:8px;margin-top:12px;min-width:45px;position:relative;vertical-align:middle}span.swp_label{display:block;font-size:9px!important;margin-top:13px;position:absolute;text-align:center!important;text-transform:uppercase}.nc_socialPanelSide span.swp_label{margin-top:0}.nc_socialPanel.swp_leaf .nc_tweetContainer{-webkit-border-radius:15px 0;border-radius:15px 0;border-width:1px}.nc_socialPanel.swp_pill .nc_tweetContainer{-webkit-border-radius:50px;border-radius:50px;border-width:1px}.nc_socialPanel.swp_shift .nc_tweetContainer:not(.totes){border-width:1px;-moz-transform:skew(-25deg);-o-transform:skew(-25deg);-webkit-transform:skew(-25deg)}.nc_socialPanel.swp_shift .nc_tweetContainer a{-moz-transform:skew(25deg);-o-transform:skew(25deg);-webkit-transform:skew(25deg)}.swp_connected .nc_tweetContainer,.swp_connected .nc_tweetContainer:hover,.swp_connected:hover .nc_tweetContainer{-webkit-border-radius:0!important;border-radius:0!important;border-width:1px;margin:0!important}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .googlePlus:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .googlePlus:hover{border:1px solid #df4b37}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .twitter,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .twitter:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .twitter:hover{border:1px solid #429cd6}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_fb:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_fb:hover{border:1px solid #3a589e}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .nc_pinterest:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .nc_pinterest:hover{border:1px solid #cd2029}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .linkedIn:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .linkedIn:hover{border:1px solid #0d77b7}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_tumblr:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_tumblr:hover{border:1px solid #39475d}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_stumbleupon:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_stumbleupon:hover{border:1px solid #ef5025}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_yummly:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_yummly:hover{border:1px solid #e26426}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_reddit:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_reddit:hover{border:1px solid #f04b23}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_email:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_email:hover{border:1px solid #6bcce9}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_whatsapp:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_whatsapp:hover{border:1px solid #71c169}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_pocket:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_pocket:hover{border:1px solid #ef4056}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_buffer:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_buffer:hover{border:1px solid #323b43}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_hacker_news:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_hacker_news:hover{border:1px solid #d85623}.nc_socialPanel.swp_flatFresh.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_flatFresh.swp_o_fullColor:hover .swp_flipboard:not(:hover),html body .nc_socialPanel.swp_flatFresh.swp_i_fullColor .swp_flipboard:hover{border:1px solid #bf2626}.nc_socialPanel.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_o_fullColor:hover .googlePlus,html body .nc_socialPanel.swp_i_fullColor .googlePlus:hover{background:#df4b37;border:1px solid #c44133}.nc_socialPanel.swp_d_fullColor .twitter,body .nc_socialPanel.swp_o_fullColor:hover .twitter,html body .nc_socialPanel.swp_i_fullColor .twitter:hover{background:#429cd6;border:1px solid #3c87b2}.nc_socialPanel.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_o_fullColor:hover .swp_fb,html body .nc_socialPanel.swp_i_fullColor .swp_fb:hover{background:#3a589e;border:1px solid #2e4675}.nc_socialPanel.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_o_fullColor:hover .nc_pinterest,html body .nc_socialPanel.swp_i_fullColor .nc_pinterest:hover{background:#cd2029;border:1px solid #aa1b29}.nc_socialPanel.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_o_fullColor:hover .linkedIn,html body .nc_socialPanel.swp_i_fullColor .linkedIn:hover{background:#0d77b7;border:1px solid #0c6591}.nc_socialPanel.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_o_fullColor:hover .swp_tumblr,html body .nc_socialPanel.swp_i_fullColor .swp_tumblr:hover{background:#39475d;border:1px solid #27313f}.nc_socialPanel.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_o_fullColor:hover .swp_stumbleupon,html body .nc_socialPanel.swp_i_fullColor .swp_stumbleupon:hover{background:#ef5025;border:1px solid #d34427}.nc_socialPanel.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_o_fullColor:hover .swp_yummly,html body .nc_socialPanel.swp_i_fullColor .swp_yummly:hover{background:#e26426;border:1px solid #b65027}.nc_socialPanel.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_o_fullColor:hover .swp_reddit,html body .nc_socialPanel.swp_i_fullColor .swp_reddit:hover{background:#f04b23;border:1px solid #d33f27}.nc_socialPanel.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_o_fullColor:hover .swp_email,html body .nc_socialPanel.swp_i_fullColor .swp_email:hover{background:#6bcce9;border:1px solid #61bace}.nc_socialPanel.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_o_fullColor:hover .swp_whatsapp,html body .nc_socialPanel.swp_i_fullColor .swp_whatsapp:hover{background:#71c169;border:1px solid #28b04b}.nc_socialPanel.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_o_fullColor:hover .swp_pocket,html body .nc_socialPanel.swp_i_fullColor .swp_pocket:hover{background:#ef4056;border:1px solid #ce3d55}.nc_socialPanel.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_o_fullColor:hover .swp_buffer,html body .nc_socialPanel.swp_i_fullColor .swp_buffer:hover{background:#323b43;border:1px solid #000}.nc_socialPanel.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_o_fullColor:hover .swp_hacker_news,html body .nc_socialPanel.swp_i_fullColor .swp_hacker_news:hover{background:#f16522;border:1px solid #d85623}.nc_socialPanel.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_o_fullColor:hover .swp_flipboard,html body .nc_socialPanel.swp_i_fullColor .swp_flipboard:hover{background:#e02828;border:1px solid #bf2626}.nc_socialPanel.swp_threeDee.swp_d_fullColor .googlePlus,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .googlePlus,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .googlePlus:hover{border-bottom:3px solid #c44133}.nc_socialPanel.swp_threeDee.swp_d_fullColor .twitter,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .twitter,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .twitter:hover{border-bottom:3px solid #5595bc}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_fb,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_fb,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_fb:hover{border-bottom:3px solid #2e4675}.nc_socialPanel.swp_threeDee.swp_d_fullColor .nc_pinterest,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .nc_pinterest,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .nc_pinterest:hover{border-bottom:3px solid #aa1b29}.nc_socialPanel.swp_threeDee.swp_d_fullColor .linkedIn,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .linkedIn,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .linkedIn:hover{border-bottom:3px solid #0c6591}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_tumblr,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_tumblr,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_tumblr:hover{border-bottom:3px solid #27313f}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_stumbleupon,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_stumbleupon,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_stumbleupon:hover{border-bottom:3px solid #d34427}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_yummly,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_yummly,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_yummly:hover{border-bottom:3px solid #b65027}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_reddit,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_reddit,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_reddit:hover{border-bottom:3px solid #d33f27}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_email,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_email,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_email:hover{border-bottom:3px solid #61bace}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_whatsapp,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_whatsapp,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_whatsapp:hover{border-bottom:3px solid #28b04b}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_pocket,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_pocket,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_pocket:hover{border-bottom:3px solid #ce3d55}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_buffer,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_buffer,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_buffer:hover{border-bottom:3px solid #000}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_hacker_news,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_hacker_news,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_hacker_news:hover{border-bottom:3px solid #d85623}.nc_socialPanel.swp_threeDee.swp_d_fullColor .swp_flipboard,body .nc_socialPanel.swp_threeDee.swp_o_fullColor:hover .swp_flipboard,html body .nc_socialPanel.swp_threeDee.swp_i_fullColor .swp_flipboard:hover{border-bottom:3px solid #bf2626}.nc_socialPanel.swp_d_lightGray .nc_tweetContainer,body .nc_socialPanel.swp_o_lightGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover{background-color:#ccc;border:1px solid #ccc}.nc_socialPanel.swp_threeDee.swp_d_lightGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_lightGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_lightGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #999}.nc_socialPanel.swp_d_mediumGray .nc_tweetContainer,body .nc_socialPanel.swp_o_mediumGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_mediumGray .nc_tweetContainer:hover{background-color:#999;border:1px solid #999}.nc_socialPanel.swp_threeDee.swp_d_mediumGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_mediumGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_mediumGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #444}.nc_socialPanel.swp_d_darkGray .nc_tweetContainer,body .nc_socialPanel.swp_o_darkGray:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_darkGray .nc_tweetContainer:hover{background-color:#444;border:1px solid #444}.nc_socialPanel.swp_threeDee.swp_d_darkGray .nc_tweetContainer:not(.totesalt),body .nc_socialPanel.swp_threeDee.swp_o_darkGray:hover .nc_tweetContainer:not(.totesalt),html body .nc_socialPanel.swp_threeDee.swp_i_darkGray .nc_tweetContainer:not(.totesalt):hover{border-bottom:3px solid #222}.nc_socialPanel.swp_d_lgOutlines a,body .nc_socialPanel.swp_o_lgOutlines:hover a,html body .nc_socialPanel.swp_i_lgOutlines a:hover{color:#ccc}.nc_socialPanel.swp_d_lgOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_lgOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_lgOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #ccc}.nc_socialPanel.swp_d_mdOutlines a,body .nc_socialPanel.swp_o_mdOutlines:hover a,html body .nc_socialPanel.swp_i_mdOutlines a:hover{color:#999}.nc_socialPanel.swp_d_mdOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_mdOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_mdOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #999}.nc_socialPanel.swp_d_dgOutlines a,body .nc_socialPanel.swp_o_dgOutlines:hover a,html body .nc_socialPanel.swp_i_dgOutlines a:hover{color:#444}.nc_socialPanel.swp_d_dgOutlines .nc_tweetContainer,body .nc_socialPanel.swp_o_dgOutlines:hover .nc_tweetContainer,html body .nc_socialPanel.swp_i_dgOutlines .nc_tweetContainer:hover{background:0 0;border:1px solid #444}.nc_socialPanel.swp_d_colorOutlines .googlePlus a,body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus a,html body .nc_socialPanel.swp_i_colorOutlines .googlePlus a:hover{color:#df4b37}.nc_socialPanel.swp_d_colorOutlines .swp_fb a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb a,html body .nc_socialPanel.swp_i_colorOutlines .swp_fb a:hover{color:#3a589e}.nc_socialPanel.swp_d_colorOutlines .nc_pinterest a,body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest a,html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest a:hover{color:#cd2029}.nc_socialPanel.swp_d_colorOutlines .linkedIn a,body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn a,html body .nc_socialPanel.swp_i_colorOutlines .linkedIn a:hover{color:#0d77b7}.nc_socialPanel.swp_d_colorOutlines .swp_tumblr a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr a,html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr a:hover{color:#39475d}.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon a,html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon a:hover{color:#ef5025}.nc_socialPanel.swp_d_colorOutlines .swp_yummly a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly a,html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly a:hover{color:#e26426}.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp a,html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp a:hover{color:#71c169}.nc_socialPanel.swp_d_colorOutlines .swp_pocket a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket a,html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket a:hover{color:#ef4056}.nc_socialPanel.swp_d_colorOutlines .swp_reddit a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit a,html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit a:hover{color:#f04b23}.nc_socialPanel.swp_d_colorOutlines .swp_email a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email a,html body .nc_socialPanel.swp_i_colorOutlines .swp_email a:hover{color:#6bcce9}.nc_socialPanel.swp_d_colorOutlines .swp_buffer a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer a,html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer a:hover{color:#323b43}.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news a,html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news a:hover{color:#f16522}.nc_socialPanel.swp_d_colorOutlines .swp_flipboard a,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard a,html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard a:hover{color:#e02828}.nc_socialPanel.swp_d_colorOutlines .googlePlus,body .nc_socialPanel.swp_o_colorOutlines:hover .googlePlus,html body .nc_socialPanel.swp_i_colorOutlines .googlePlus:hover{background:0 0;border:1px solid #df4b37}.nc_socialPanel.swp_d_colorOutlines .twitter,body .nc_socialPanel.swp_o_colorOutlines:hover .twitter,html body .nc_socialPanel.swp_i_colorOutlines .twitter:hover{background:0 0;border:1px solid #429cd6}.nc_socialPanel.swp_d_colorOutlines .swp_fb,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_fb,html body .nc_socialPanel.swp_i_colorOutlines .swp_fb:hover{background:0 0;border:1px solid #3a589e}.nc_socialPanel.swp_d_colorOutlines .nc_pinterest,body .nc_socialPanel.swp_o_colorOutlines:hover .nc_pinterest,html body .nc_socialPanel.swp_i_colorOutlines .nc_pinterest:hover{background:0 0;border:1px solid #cd2029}.nc_socialPanel.swp_d_colorOutlines .linkedIn,body .nc_socialPanel.swp_o_colorOutlines:hover .linkedIn,html body .nc_socialPanel.swp_i_colorOutlines .linkedIn:hover{background:0 0;border:1px solid #0d77b7}.nc_socialPanel.swp_d_colorOutlines .swp_tumblr,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_tumblr,html body .nc_socialPanel.swp_i_colorOutlines .swp_tumblr:hover{background:0 0;border:1px solid #39475d}.nc_socialPanel.swp_d_colorOutlines .swp_stumbleupon,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_stumbleupon,html body .nc_socialPanel.swp_i_colorOutlines .swp_stumbleupon:hover{background:0 0;border:1px solid #ef5025}.nc_socialPanel.swp_d_colorOutlines .swp_yummly,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_yummly,html body .nc_socialPanel.swp_i_colorOutlines .swp_yummly:hover{background:0 0;border:1px solid #e26426}.nc_socialPanel.swp_d_colorOutlines .swp_whatsapp,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_whatsapp,html body .nc_socialPanel.swp_i_colorOutlines .swp_whatsapp:hover{background:0 0;border:1px solid #71c169}.nc_socialPanel.swp_d_colorOutlines .swp_reddit,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_reddit,html body .nc_socialPanel.swp_i_colorOutlines .swp_reddit:hover{background:0 0;border:1px solid #f04b23}.nc_socialPanel.swp_d_colorOutlines .swp_email,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_email,html body .nc_socialPanel.swp_i_colorOutlines .swp_email:hover{background:0 0;border:1px solid #6bcce9}.nc_socialPanel.swp_d_colorOutlines .swp_pocket,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_pocket,html body .nc_socialPanel.swp_i_colorOutlines .swp_pocket:hover{background:0 0;border:1px solid #ef4056}.nc_socialPanel.swp_d_colorOutlines .swp_buffer,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_buffer,html body .nc_socialPanel.swp_i_colorOutlines .swp_buffer:hover{background:0 0;border:1px solid #323b43}.nc_socialPanel.swp_d_colorOutlines .swp_hacker_news,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_hacker_news,html body .nc_socialPanel.swp_i_colorOutlines .swp_hacker_news:hover{background:0 0;border:1px solid #f16522}.nc_socialPanel.swp_d_colorOutlines .swp_flipboard,body .nc_socialPanel.swp_o_colorOutlines:hover .swp_flipboard,html body .nc_socialPanel.swp_i_colorOutlines .swp_flipboard:hover{background:0 0;border:1px solid #bf2626}.nc_socialPanelSide{flex-direction:column;height:auto;overflow:visible;top:200px;-webkit-transition:all .2s linear;transition:all .2s linear;width:100px!important;z-index:9999999;-webkit-box-direction:normal;-moz-box-direction:normal;-webkit-box-orient:vertical;-moz-box-orient:vertical;-webkit-flex-direction:column;-ms-flex-direction:column}.nc_socialPanelSide.slide{position:fixed;left:-100px;-webkit-transition:all .2s linear;transition:all .2s linear}.nc_socialPanelSide.fade{display:none;position:fixed;left:5px;-webkit-transition:all .2s linear;transition:all .2s linear}.nc_socialPanelSide .nc_tweetContainer{background:#dd4b38;-webkit-border-radius:3px;border-radius:3px;clear:both;display:block;font-family:Lato,sans-serif;height:32px;margin:3px 0!important;overflow:hidden;padding:0;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top;width:90px}.nc_socialPanelSide .nc_tweetContainer .iconFiller{display:inline-block;height:40px;margin:0 6px;padding:0;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:middle;width:21px}.nc_socialPanelSide .nc_tweetContainer .swp_count{display:inline-block;font-size:14px;height:32px;line-height:35px;margin:0;overflow:hidden;padding:0;text-align:right;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top;width:0}.nc_socialPanelSide .nc_tweetContainer a{cursor:pointer;display:block;font-weight:500;height:36px;margin:0;padding:0;text-decoration:none;-webkit-transition:all .1s linear;transition:all .1s linear;vertical-align:top}.nc_socialPanelSide .nc_tweetContainer .sw,.nc_socialPanelSide .nc_tweetContainer .swp_share{float:left;line-height:34px}.nc_socialPanelSide.swp_default .nc_tweetContainer .sw{line-height:32px}.nc_socialPanelSide.swp_default .nc_tweetContainer .swp_share{line-height:30px}.nc_socialPanelSide .nc_tweetContainer .swp_share{font-size:13px}.nc_socialPanelSide .nc_tweetContainer:hover,.nc_socialPanelSide .nc_tweetContainer:hover .iconFiller,.nc_socialPanelSide .nc_tweetContainer:hover .swp_count{-webkit-transition:all .1s linear;transition:all .1s linear}.nc_socialPanelSide.swp_boxed{-ms-transform:scale(.9);-webkit-transform:scale(.9);transform:scale(.9)}.nc_socialPanelSide.swp_boxed .nc_tweetContainer{margin-bottom:5px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer,.nc_socialPanelSide.swp_boxed .nc_tweetContainer a{height:75px;position:relative;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer i.sw{font-size:27px;height:40px;margin:0;padding-top:10px;text-align:center;width:100%}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_share{height:35px;opacity:0;position:absolute;bottom:0;left:0;text-align:center;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count{height:35px;margin:0;padding:0;position:absolute;bottom:0;left:0;text-align:center;-webkit-transition:padding .1s linear;transition:padding .1s linear;width:100%}.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller,.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) span.swp_count.swp_hide{height:75px;opacity:1}.nc_socialPanelSide.swp_boxed .nc_tweetContainer span.iconFiller{height:40px;width:75px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_count:not(.swp_hide){opacity:0}.nc_socialPanelSide.swp_boxed .totes{padding:0;width:75px!important}.nc_socialPanelSide .nc_tweetContainer:not(.totes){line-height:34px}.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes) .iconFiller{margin-left:2px;width:30px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count{padding:0 8px;width:48px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_count.swp_hide{padding:0;width:100%}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .swp_hide .iconFiller{display:block;float:none;margin:0 auto}.nc_socialPanelSide:not(.swp_boxed) .nc_tweetContainer:not(.totes):hover{width:150px}.nc_socialPanelSide .nc_tweetContainer:not(.totes) .spaceManWilly,.nc_socialPanelSide .nc_tweetContainer:not(.totes):hover .iconFiller{width:90px}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .spaceManWilly,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover .iconFiller{width:100%}.nc_socialPanelSide .nc_tweetContainer.totes{background:rgba(0,0,0,0);border:0!important;font-weight:800;height:45px;margin:0;padding:0;text-align:center;width:90px}.nc_socialPanelSide .nc_tweetContainer.totes .swp_count{color:#444;display:block;font-family:Lato,sans-serif;height:28px;text-align:center;width:100%}.nc_socialPanelSide .nc_tweetContainer.totes .swp_label{color:#444;display:block;font-family:Lato,sans-serif;font-size:50%;position:relative;text-align:center;width:100%}.nc_wrapper{background:#fff;position:fixed;-webkit-transition:top .5s bottom .5s;transition:top .5s bottom .5s;width:100%;z-index:99999}.nc_wrapper.floatBottom{bottom:0;left:0}.nc_wrapper.floatTop{top:0;left:0}.nc_floater{margin:10px 0;position:relative;left:304px;width:740px}.nc_socialPanelSide.hideCounts a{text-align:center}.nc_socialPanelSide.hideCounts .iconFiller{float:none;text-align:left}.sw{display:inline-block;font-family:sw-icon-font!important;font-size:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;text-rendering:auto;-ms-transform:translate(0,0);-webkit-transform:translate(0,0);transform:translate(0,0)}.sw:before{display:block!important}.wp-editor-container .sw:before{font-size:18px;line-height:22px}.wp-editor-container .sw-social-warfare:before{color:#ee464f}.mce-container .sw-social-warfare{color:#ee464f;font-size:20px;margin-right:15px;vertical-align:middle}.sw-google-plus:before{content:"h"}.sw-pinterest:before{content:"b"}.sw-twitter:before{content:"s"}.sw-facebook:before{content:"j"}.sw-linkedin:before{content:"f"}.sw-tumblr:before{content:"r"}.sw-stumbleupon:before{content:"q"}.sw-reddit:before{content:"a"}.sw-email:before{content:"k"}.sw-yummly:before{content:"x"}.sw-whatsapp:before{content:"y"}.sw-pocket:before{content:"B"}.sw-buffer:before{content:"z"}.sw-hacker_news:before{content:"D"}.sw-flipboard:before{content:"C"}.sw-social-warfare:before{content:"p"}.sw-click-to-tweet:after,.sw-tweet-clear:after{content:".";height:0;clear:both;visibility:hidden;display:block}.swp_CTT{text-decoration:none!important}.sw-tweet-clear{zoom:1}.sw-click-to-tweet{display:block;margin:15px 0;padding:15px 30px;position:relative}.sw-click-to-tweet:after{line-height:0}.sw-click-to-tweet .sw-ctt-text{margin:0 0 10px;padding:0;position:relative;word-wrap:break-word}a .sw-click-to-tweet .sw-ctt-text{display:block;font-size:24px;font-weight:500;line-height:140%;margin:0;padding:0;position:relative;text-decoration:none;text-transform:none}.sw-click-to-tweet .sw-ctt-btn{display:block;float:right;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;line-height:100%;margin:10px 0 0;padding:3px 5px 3px 3px;position:relative;text-decoration:none;text-transform:uppercase}.sw-click-to-tweet i.sw-twitter{float:right;font-size:21px;margin-left:15px;margin-top:2px;text-transform:none}a.swp_CTT.style1 .sw-click-to-tweet{background-color:#fff;border:1px solid #ddd;-webkit-border-radius:4px;border-radius:4px}a.swp_CTT.style2 .sw-click-to-tweet{background-color:#fff;border:4px double #ddd;-webkit-border-radius:0;border-radius:0}a.style2 .sw-click-to-tweet .sw-ctt-text{color:#666;font-style:italic;text-decoration:none}a.swp_CTT.style3:hover .sw-click-to-tweet{border-left:10px solid #3c87b2;padding-right:20px;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style3 .sw-click-to-tweet{background-color:#429cd6;border:none;border-left:10px solid #429cd6;-webkit-border-radius:0;border-radius:0;padding-right:20px;-webkit-transition:all .25s linear;transition:all .25s linear}a.style3 .sw-click-to-tweet .sw-ctt-text{color:#fff;font-style:italic;text-decoration:none}a.swp_CTT.style4:hover .sw-click-to-tweet{border-left:10px solid #3c87b2;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style4 .sw-click-to-tweet{background-color:#333;border-left:10px solid #c33;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style5:hover .sw-click-to-tweet{background-color:#d34250;border-left:10px solid #30394f;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style5 .sw-click-to-tweet{background-color:#30394f;border-left:10px solid #d34250;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style6:hover .sw-click-to-tweet{background-color:#ced3dc;border-left:10px solid #d34250;-webkit-transition:all .25s linear;transition:all .25s linear}a.swp_CTT.style6 .sw-click-to-tweet{background-color:#eee;border-left:10px solid #d34250;-webkit-border-radius:0;border-radius:0;-webkit-transition:all .25s linear;transition:all .25s linear}a.style6 .sw-click-to-tweet i.sw-twitter{color:#30394f}.swp_pop_thumb{-webkit-border-radius:3px;border-radius:3px;float:left;height:100px;margin:5px 25px 5px 0;width:100px}.swp_popular_post{clear:both}.swp_clearfix:after{clear:both;content:" ";display:block;height:0;visibility:hidden}.swp_popular_post a.swp_popularity{border:none;display:block;line-height:1.5;margin:20px 0}span.swp_pop_count{display:block;font-size:70%}.swp_widget_box{-webkit-border-radius:3px;border-radius:3px}div.sw-pinit{display:table!important;line-height:0;position:relative!important}.nc_socialPanel.mobile .iconFiller~.swp_count,.sw-content-locator,div.nc_socialPanel .nc_tweetContainer.swp_whatsapp:not(.mobile){display:none}div.sw-pinit a.sw-pinit-button,div.sw-pinit a.sw-pinit-button:visited{background:#cd2029;border:1px solid #aa1b29;-webkit-border-radius:4px;border-radius:4px;color:#fff;font-size:20px;height:50px;line-height:45px;opacity:0;padding:0 30px;position:absolute;text-decoration:none;-webkit-transition:opacity .5s;transition:opacity .5s;z-index:200}.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes) .swp_hide span.swp_share,.nc_socialPanelSide.swp_boxed .nc_tweetContainer:not(.totes):hover span.swp_share:not(.swp_hide),div.sw-pinit:focus a.sw-pinit-button,div.sw-pinit:hover a.sw-pinit-button{opacity:1}div.sw-pinit a.sw-pinit-button::before{color:#fff;content:"b";float:left;font-family:sw-icon-font;font-size:24px;font-weight:400;line-height:50px;margin-left:-5px;margin-right:10px}div.sw-pinit a.sw-pinit-button:hover::before{content:"F"}div.sw-pinit a.sw-pinit-button::focus,div.sw-pinit a.sw-pinit-button::hover{background:#aa1b29;color:#fff;text-decoration:none}div.sw-pinit .sw-pinit-left{left:30px}div.sw-pinit .sw-pinit-center{margin-left:-60px;left:50%}div.sw-pinit .sw-pinit-right{right:30px}div.sw-pinit .sw-pinit-top{top:30px}div.sw-pinit .sw-pinit-middle{margin-top:-25px;top:50%}div.sw-pinit .sw-pinit-bottom{bottom:30px}.mobile .nc_tweetContainer:nth-last-child(2),.nc_socialPanel.notMobile .nc_tweetContainer:nth-last-child(1),.nc_tweetContainer.totes:nth-last-child(1){margin-right:0}.nc_socialPanel.swp_d_darkGray a,.nc_socialPanel.swp_d_fullColor a,.nc_socialPanel.swp_d_lightGray a,.nc_socialPanel.swp_d_mediumGray a,body .nc_socialPanel.swp_o_darkGray:hover a,body .nc_socialPanel.swp_o_fullColor:hover a,body .nc_socialPanel.swp_o_lightGray:hover a,body .nc_socialPanel.swp_o_mediumGray:hover a,html body .nc_socialPanel.swp_i_darkGray a:hover,html body .nc_socialPanel.swp_i_fullColor .nc_tweetContainer:hover a,html body .nc_socialPanel.swp_i_lightGray .nc_tweetContainer:hover a,html body .nc_socialPanel.swp_i_mediumGray a:hover{color:#fff}.nc_socialPanel.swp_d_colorOutlines .twitter a,.wp-editor-container .sw-twitter:before,a.style1 .sw-click-to-tweet i.sw-twitter,a.style2 .sw-click-to-tweet i.sw-twitter,body .nc_socialPanel.swp_o_colorOutlines:hover .twitter a,html body .nc_socialPanel.swp_i_colorOutlines .twitter a:hover{color:#429cd6}a.style1 .sw-click-to-tweet .sw-ctt-btn,a.style1 .sw-click-to-tweet .sw-ctt-text{color:#999;text-decoration:none}a.style1:hover .sw-click-to-tweet .sw-ctt-btn,a.style1:hover .sw-click-to-tweet .sw-ctt-text,a.style2 .sw-click-to-tweet .sw-ctt-btn,a.style2:hover .sw-click-to-tweet .sw-ctt-btn,a.style2:hover .sw-click-to-tweet .sw-ctt-text{color:#666;text-decoration:none}a.style3 .sw-click-to-tweet .sw-ctt-btn,a.style3 .sw-click-to-tweet i.sw-twitter,a.style3:hover .sw-click-to-tweet .sw-ctt-btn,a.style3:hover .sw-click-to-tweet .sw-ctt-text,a.style4 .sw-click-to-tweet .sw-ctt-btn,a.style4 .sw-click-to-tweet .sw-ctt-text,a.style4:hover .sw-click-to-tweet .sw-ctt-btn,a.style4:hover .sw-click-to-tweet .sw-ctt-text,a.style5 .sw-click-to-tweet .sw-ctt-btn,a.style5 .sw-click-to-tweet .sw-ctt-text,a.style5:hover .sw-click-to-tweet .sw-ctt-btn,a.style5:hover .sw-click-to-tweet .sw-ctt-text{color:#fff;text-decoration:none}a.style4 .sw-click-to-tweet i.sw-twitter,a.style5 .sw-click-to-tweet i.sw-twitter{color:#fff}a.style6 .sw-click-to-tweet .sw-ctt-btn,a.style6 .sw-click-to-tweet .sw-ctt-text{color:#30394f;text-decoration:none}a.style6:hover .sw-click-to-tweet .sw-ctt-btn,a.style6:hover .sw-click-to-tweet .sw-ctt-text,a.style6:hover .sw-click-to-tweet i.sw-twitter{color:#2a2d34;text-decoration:none}.scale-70{-ms-transform:scale(.7);-webkit-transform:scale(.7);transform:scale(.7)}.nc_socialPanel:not(.nc_floater).scale-70.scale-fullWidth{width:142.8571428571429%!important}.scale-80{-ms-transform:scale(.8);-webkit-transform:scale(.8);transform:scale(.8)}.nc_socialPanel:not(.nc_floater).scale-80.scale-fullWidth{width:125%!important}.scale-90{-ms-transform:scale(.9);-webkit-transform:scale(.9);transform:scale(.9)}.nc_socialPanel:not(.nc_floater).scale-90.scale-fullWidth{width:111.111111111111%!important}.scale-110{-ms-transform:scale(1.1);-webkit-transform:scale(1.1);transform:scale(1.1)}.nc_socialPanel:not(.nc_floater).scale-110.scale-fullWidth{width:90.90909090909091%!important}.scale-120{-ms-transform:scale(1.2);-webkit-transform:scale(1.2);transform:scale(1.2)}.nc_socialPanel:not(.nc_floater).scale-120.scale-fullWidth{width:83.33333333333333%!important}.scale-130{-ms-transform:scale(1.3);-webkit-transform:scale(1.3);transform:scale(1.3)}.nc_socialPanel:not(.nc_floater).scale-130.scale-fullWidth{width:76.92307692307692%!important}.scale-140{-ms-transform:scale(1.4);-webkit-transform:scale(1.4);transform:scale(1.4)}.nc_socialPanel:not(.nc_floater).scale-140.scale-fullWidth{width:71.42857142857143%!important}.nc_floater.scale-center,.nc_floater.scale-right,.scale-fullWidth,.scale-left{-ms-transform-origin:left;-webkit-transform-origin:left;transform-origin:left}.scale-right{-ms-transform-origin:right;-webkit-transform-origin:right;transform-origin:right}.scale-center{-ms-transform-origin:center;-webkit-transform-origin:center;transform-origin:center}div.nc_socialPanel .nc_tweetContainer.swp_emphasize{-webkit-box-flex:2;-moz-box-flex:2;-webkit-flex:2;-ms-flex:2;flex:2}.sw-pinit.aligncenter{margin:0 auto}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){div.sw-pinit{display:inline-block!important;max-width:100%}}.swp_hidden_pin_image{height:0;opacity:0;position:absolute;top:0;width:0}
functions/admin/options-page.php CHANGED
@@ -112,12 +112,19 @@ function swp_build_options_page() {
112
  * Build the header menu
113
  */
114
 
 
 
 
 
 
 
115
  // Wrapper for the entire content area
116
  echo '<div class="sw-header-wrapper">';
117
 
118
- echo '<div class="sw-grid sw-col-940 sw-top-menu">';
119
  echo '<div class="sw-grid sw-col-700">';
120
  echo '<img class="sw-header-logo" src="' . SWP_PLUGIN_URL . '/images/admin-options-page/social-warfare-light.png" />';
 
121
  echo '<ul class="sw-header-menu">';
122
  $i = 0;
123
  foreach ( $swp_options_page['tabs']['links'] as $key => $value ) : ++$i;
@@ -136,12 +143,6 @@ function swp_build_options_page() {
136
  * Build the Tab Container
137
  */
138
 
139
- if( function_exists('is_swp_registered') ):
140
- $swp_registration = is_swp_registered();
141
- else:
142
- $swp_registration = false;
143
- endif;
144
-
145
  echo '<div class="sw-admin-wrapper" sw-registered="' . absint( $swp_registration ) . '">';
146
 
147
  // Runs a full system check, printing errors found if any
112
  * Build the header menu
113
  */
114
 
115
+ if( function_exists('is_swp_registered') ):
116
+ $swp_registration = is_swp_registered();
117
+ else:
118
+ $swp_registration = false;
119
+ endif;
120
+
121
  // Wrapper for the entire content area
122
  echo '<div class="sw-header-wrapper">';
123
 
124
+ echo '<div class="sw-grid sw-col-940 sw-top-menu" sw-registered="' . absint( $swp_registration ) . '">';
125
  echo '<div class="sw-grid sw-col-700">';
126
  echo '<img class="sw-header-logo" src="' . SWP_PLUGIN_URL . '/images/admin-options-page/social-warfare-light.png" />';
127
+ echo '<img class="sw-header-logo-pro" src="' . SWP_PLUGIN_URL . '/images/admin-options-page/social-warfare-pro-light.png" />';
128
  echo '<ul class="sw-header-menu">';
129
  $i = 0;
130
  foreach ( $swp_options_page['tabs']['links'] as $key => $value ) : ++$i;
143
  * Build the Tab Container
144
  */
145
 
 
 
 
 
 
 
146
  echo '<div class="sw-admin-wrapper" sw-registered="' . absint( $swp_registration ) . '">';
147
 
148
  // Runs a full system check, printing errors found if any
functions/frontend-output/scripts.php CHANGED
@@ -72,6 +72,7 @@ add_action( 'admin_enqueue_scripts', 'enqueueSocialWarfareAdminScripts' );
72
  * @return void
73
  */
74
  function enqueueSocialWarfareAdminScripts( $screen ) {
 
75
  $screens = array(
76
  'toplevel_page_social-warfare',
77
  'post.php',
@@ -81,7 +82,7 @@ function enqueueSocialWarfareAdminScripts( $screen ) {
81
  if ( ! in_array( $screen, $screens, true ) ) {
82
  return;
83
  }
84
-
85
  enqueueSocialWarfareScripts();
86
 
87
  $suffix = swp_get_suffix();
72
  * @return void
73
  */
74
  function enqueueSocialWarfareAdminScripts( $screen ) {
75
+ /**
76
  $screens = array(
77
  'toplevel_page_social-warfare',
78
  'post.php',
82
  if ( ! in_array( $screen, $screens, true ) ) {
83
  return;
84
  }
85
+ */
86
  enqueueSocialWarfareScripts();
87
 
88
  $suffix = swp_get_suffix();
functions/frontend-output/shortcodes.php CHANGED
@@ -9,10 +9,14 @@
9
  function socialWarfareShortcode( $atts ) {
10
  return socialWarfare( false,'after',false );
11
  }
12
- function social_warfareShortcode( $array ) {
13
- if ( ! isset( $array['where'] ) ) { $array['where'] = 'after'; }
14
- if ( ! isset( $array['echo'] ) ) { $array['echo'] = false; }
15
- if ( ! isset( $array['content'] ) ) { $array['content'] = false; }
 
 
 
 
16
  $array['shortcode'] = true;
17
  $array['devs'] = true;
18
  return social_warfare( $array );
9
  function socialWarfareShortcode( $atts ) {
10
  return socialWarfare( false,'after',false );
11
  }
12
+ function social_warfareShortcode( $atts ) {
13
+
14
+ $array = shortcode_atts( array(
15
+ 'where' => 'after',
16
+ 'echo' => false,
17
+ 'content' => false
18
+ ), $atts );
19
+
20
  $array['shortcode'] = true;
21
  $array['devs'] = true;
22
  return social_warfare( $array );
functions/utilities/share-cache.php CHANGED
@@ -246,10 +246,8 @@ function swp_clear_bitly_cache() {
246
  */
247
  function swp_cache_store_autoloads() {
248
  $post_id = get_the_ID();
249
- if( 'publish' === get_post_status( $post_id ) ):
250
- swp_cache_rebuild_pin_image($post_id);
251
- swp_cache_rebuild_og_image($post_id);
252
- endif;
253
  }
254
  /**
255
  * Open Graph Image
246
  */
247
  function swp_cache_store_autoloads() {
248
  $post_id = get_the_ID();
249
+ swp_cache_rebuild_pin_image($post_id);
250
+ swp_cache_rebuild_og_image($post_id);
 
 
251
  }
252
  /**
253
  * Open Graph Image
images/admin-options-page/social-warfare-pro-light.png ADDED
Binary file
js/admin-options-page.js CHANGED
@@ -522,6 +522,7 @@
522
  function toggleRegistration( status ) {
523
  $( '.registration-wrapper' ).attr( 'registration', status );
524
  $( '.sw-admin-wrapper' ).attr( 'sw-registered', status );
 
525
  }
526
 
527
  /*******************************************************
@@ -530,27 +531,31 @@
530
  function registerPlugin() {
531
  var registered = false;
532
  var data = {
533
- action: 'swp_ajax_passthrough',
534
  security: swpAdminOptionsData.registerNonce,
535
  activity: 'register',
536
- email: $( 'input[name="emailAddress"]' ).val()
537
  };
538
 
539
  loadingScreen();
540
 
 
 
541
  $.post( ajaxurl, data, function( response ) {
542
  // If the response was a failure...
543
- if ( ! response.success ) {
 
 
 
 
544
  alert( 'Failure: ' + response.data );
545
  } else {
546
- // If the response was a success
547
- $( 'input[name="premiumCode"]' ).val( response.data.premiumCode );
548
  toggleRegistration( '1' );
549
  registered = true;
550
  }
551
- });
552
 
553
- clearLoadingScreen();
 
554
 
555
  return registered;
556
  }
@@ -561,11 +566,9 @@
561
  function unregisterPlugin() {
562
  var unregistered = false;
563
  var ajaxData = {
564
- action: 'swp_ajax_passthrough',
565
  security: swpAdminOptionsData.registerNonce,
566
- activity: 'unregister',
567
- email: $( 'input[name="emailAddress"]' ).val(),
568
- key: $( 'input[name="premiumCode"]' ).val()
569
  };
570
 
571
  loadingScreen();
@@ -573,18 +576,21 @@
573
  // Ping the home server to create a registration log
574
  $.post( ajaxurl, ajaxData, function( response ) {
575
  // If the response was a failure...
576
- if ( ! response.success ) {
 
 
 
577
  alert( 'Failure: ' + response.data );
578
  } else {
579
  // If the response was a success
580
- $( 'input[name="premiumCode"]' ).val( '' );
581
- $( 'input[name="emailAddress"]' ).val( '' );
582
  toggleRegistration( '0' );
583
  unregistered = true;
584
  }
 
 
585
  });
586
 
587
- clearLoadingScreen();
588
 
589
  return unregistered;
590
  }
522
  function toggleRegistration( status ) {
523
  $( '.registration-wrapper' ).attr( 'registration', status );
524
  $( '.sw-admin-wrapper' ).attr( 'sw-registered', status );
525
+ $( '.sw-top-menu' ).attr( 'sw-registered', status );
526
  }
527
 
528
  /*******************************************************
531
  function registerPlugin() {
532
  var registered = false;
533
  var data = {
534
+ action: 'swp_register_plugin',
535
  security: swpAdminOptionsData.registerNonce,
536
  activity: 'register',
537
+ pro_license_key: $( 'input[name="pro_license_key"]' ).val()
538
  };
539
 
540
  loadingScreen();
541
 
542
+ console.log(data);
543
+
544
  $.post( ajaxurl, data, function( response ) {
545
  // If the response was a failure...
546
+
547
+ response = JSON.parse(response);
548
+
549
+ console.log(response);
550
+ if ( !response.success ) {
551
  alert( 'Failure: ' + response.data );
552
  } else {
 
 
553
  toggleRegistration( '1' );
554
  registered = true;
555
  }
 
556
 
557
+ clearLoadingScreen();
558
+ });
559
 
560
  return registered;
561
  }
566
  function unregisterPlugin() {
567
  var unregistered = false;
568
  var ajaxData = {
569
+ action: 'swp_unregister_plugin',
570
  security: swpAdminOptionsData.registerNonce,
571
+ activity: 'unregister'
 
 
572
  };
573
 
574
  loadingScreen();
576
  // Ping the home server to create a registration log
577
  $.post( ajaxurl, ajaxData, function( response ) {
578
  // If the response was a failure...
579
+ //
580
+ response = JSON.parse(response);
581
+ console.log(response);
582
+ if ( !response.success ) {
583
  alert( 'Failure: ' + response.data );
584
  } else {
585
  // If the response was a success
586
+ $( 'input[name="pro_license_key"]' ).val( '' );
 
587
  toggleRegistration( '0' );
588
  unregistered = true;
589
  }
590
+
591
+ clearLoadingScreen();
592
  });
593
 
 
594
 
595
  return unregistered;
596
  }
js/admin-options-page.min.js CHANGED
@@ -1 +1 @@
1
- !function(a,b,c){"use strict";function d(b){var c,d;document.body.createTextRange?(c=document.body.createTextRange(),c.moveToElementText(b),c.select()):a.getSelection&&(d=a.getSelection(),c=document.createRange(),c.selectNodeContents(b),d.removeAllRanges(),d.addRange(c))}function e(){var a={};return b("form.sw-admin-settings-form input, form.sw-admin-settings-form select").each(function(){var c,d=b(this),e=d.attr("name");c="checkbox"===d.attr("type")?d.prop("checked"):d.val(),a[e]=c}),a.newOrderOfIcons={},b(".sw-active i").each(function(){var c=b(this).data("network");a.newOrderOfIcons[c]=c}),a}function f(){b("div[dep]").each(function(){var a,c=b(this).attr("dep"),d=b.parseJSON(b(this).attr("dep_val"));a="checkbox"==b('[name="'+c+'"]').attr("type")?b('[name="'+c+'"]').prop("checked"):b('[name="'+c+'"]').val(),b.inArray(a,d)!==-1&&b('[name="'+c+'"]').parent(".sw-grid").is(":visible")?b(this).show():b(this).hide()}),0!=h("floatStyleSource")||"customColor"!=g("sideDColorSet")&&"ccOutlines"!=g("sideDColorSet")&&"customColor"!=g("sideIColorSet")&&"ccOutlines"!=g("sideIColorSet")&&"customColor"!=g("sideOColorSet")&&"ccOutlines"!=g("sideOColorSet")?b(".sideCustomColor_wrapper").slideUp():b(".sideCustomColor_wrapper").slideDown()}function g(a){return b('select[name="'+a+'"]').val()}function h(a){return b('[name="'+a+'"]').prop("checked")}function i(){var a=b(".sw-top-menu").offset(),c=b(".sw-top-menu").width();b(".sw-top-menu").css({position:"fixed",left:a.left,top:a.top,width:c}),b(".sw-admin-wrapper").css("padding-top","75px")}function j(){b(".sw-tab-selector").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,b("html, body").animate({scrollTop:0},0);var c=b(this).attr("data-link");b(".sw-admin-tab").hide(),b("#"+c).show(),b(".sw-header-menu li").removeClass("sw-active-tab"),b(this).parents("li").addClass("sw-active-tab"),"swp_styles"===c&&socialWarfarePlugin.activateHoverStates(),f()})}function k(){b(".sw-checkbox-toggle").on("click",function(){var a=b(this).attr("status"),c=b(this).attr("field");"on"===a?(b(this).attr("status","off"),b(c).prop("checked",!1)):(b(this).attr("status","on"),b(c).prop("checked",!0)),m(),f()})}function l(){b("form.sw-admin-settings-form input, form.sw-admin-settings-form select").on("change",function(){f(),socialWarfarePlugin.newOptions=e(),m()}),socialWarfarePlugin.defaultOptions=e()}function m(){socialWarfarePlugin.newOptions=e(),JSON.stringify(socialWarfarePlugin.newOptions)!==JSON.stringify(socialWarfarePlugin.defaultOptions)?b(".sw-save-settings").removeClass("sw-navy-button").addClass("sw-red-button"):b(".sw-save-settings").removeClass("sw-red-button").addClass("sw-navy-button")}function n(){b(".sw-save-settings").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,o();var c=e();console.log(c);var d={action:"swp_store_settings",security:swpAdminOptionsData.optionsNonce,settings:c};b.post(ajaxurl,d,function(a){p(),console.log(b.parseJSON(a)),socialWarfarePlugin.defaultOptions=e(),m()})})}function o(){b("body").append('<div class="sw-loading-bg"><div class="sw-loading-message">Saving Changes</div></div>')}function p(){b(".sw-loading-message").html("Success!").removeClass("sw-loading-message").addClass("sw-loading-complete"),b(".sw-loading-bg").delay(1e3).fadeOut(1e3),setTimeout(function(){b(".sw-loading-bg").remove()},2e3)}function q(){var a=(b('select[name="visualTheme"]').val(),b('select[name="dColorSet"]').val()),c=b('select[name="iColorSet"]').val(),d=b('select[name="oColorSet"]').val();b("style.swp_customColorStuff").remove();var e=b('input[name="customColor"]').val(),f="";"customColor"!=a&&"customColor"!=c&&"customColor"!=d||(f=".nc_socialPanel.swp_d_customColor a, html body .nc_socialPanel.swp_i_customColor .nc_tweetContainer:hover a, body .nc_socialPanel.swp_o_customColor:hover a {color:white} .nc_socialPanel.swp_d_customColor .nc_tweetContainer, html body .nc_socialPanel.swp_i_customColor .nc_tweetContainer:hover, body .nc_socialPanel.swp_o_customColor:hover .nc_tweetContainer {background-color:"+e+";border:1px solid "+e+";}"),"ccOutlines"!=a&&"ccOutlines"!=c&&"ccOutlines"!=d||(f=f+" .nc_socialPanel.swp_d_ccOutlines a, html body .nc_socialPanel.swp_i_ccOutlines .nc_tweetContainer:hover a, body .nc_socialPanel.swp_o_ccOutlines:hover a { color:"+e+"; } .nc_socialPanel.swp_d_ccOutlines .nc_tweetContainer, html body .nc_socialPanel.swp_i_ccOutlines .nc_tweetContainer:hover, body .nc_socialPanel.swp_o_ccOutlines:hover .nc_tweetContainer { background:transparent; border:1px solid "+e+"; }"),b("head").append('<style type="text/css" class="swp_customColorStuff">'+f+"</style>")}function r(){var a=b('select[name="visualTheme"]').val(),c=b('select[name="dColorSet"]').val(),d=b('select[name="iColorSet"]').val(),e=b('select[name="oColorSet"]').val(),f="swp_"+a+" swp_d_"+c+" swp_i_"+d+" swp_o_"+e;"undefined"==typeof socialWarfarePlugin.lastClass&&(console.log("boom"),socialWarfarePlugin.lastClass="swp_flatFresh swp_d_fullColor swp_i_fullColor swp_o_fullColor");var f="swp_"+a+" swp_d_"+c+" swp_i_"+d+" swp_o_"+e;b(".nc_socialPanel").removeClass(socialWarfarePlugin.lastClass).addClass(f),socialWarfarePlugin.lastClass=f;"customColor"==c||"ccOutlines"==c||"customColor"==d||"ccOutlines"==d||"customColor"==e||"ccOutlines"==e?(b(".customColor_wrapper").slideDown(),q()):b(".customColor_wrapper").slideUp()}function s(){var a={flatFresh:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},leaf:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},pill:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},threeDee:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray"},connected:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},shift:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"}};if(0!==b('select[name="visualTheme"]').length){var c=b('select[name="visualTheme"]').val(),d=b('select[name="dColorSet"]').val(),e=b('select[name="iColorSet"]').val(),f=b('select[name="oColorSet"]').val();b('select[name="dColorSet"] option, select[name="iColorSet"] option, select[name="oColorSet"] option').remove(),b.each(a[c],function(a,c){a===d?b('select[name="dColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="dColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===e?b('select[name="iColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="iColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===f?b('select[name="oColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="oColorSet"]').append('<option value="'+a+'">'+c+"</option>"),"customColor"==d||"ccOutlines"==d||"customColor"==e||"ccOutlines"==e||"customColor"==f||"ccOutlines"==f?(b(".customColor_wrapper").slideDown(),q()):b(".customColor_wrapper").slideUp()}),b('select[name="dColorSet"], select[name="iColorSet"], select[name="oColorSet"]').on("change",r),b('select[name="visualTheme"]').on("change",function(){var c=b('select[name="visualTheme"]').val(),d=b('select[name="dColorSet"]').val(),e=b('select[name="iColorSet"]').val(),f=b('select[name="oColorSet"]').val(),g=0,h=a[c],i=h.hasOwnProperty(d),j=h.hasOwnProperty(e),k=h.hasOwnProperty(f);b('select[name="dColorSet"] option, select[name="iColorSet"] option, select[name="oColorSet"] option').remove(),b.each(a[c],function(a,c){a===d||0==i&&0==g?b('select[name="dColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="dColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===e||0==j&&0==g?b('select[name="iColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="iColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===f||0==k&&0==g?b('select[name="oColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="oColorSet"]').append('<option value="'+a+'">'+c+"</option>"),++g}),"undefined"==typeof socialWarfarePlugin.lastClass&&(console.log("boom"),socialWarfarePlugin.lastClass="swp_flatFresh swp_d_fullColor swp_i_fullColor swp_o_fullColor");var l="swp_"+c+" swp_d_"+d+" swp_i_"+e+" swp_o_"+f;b(".nc_socialPanel").removeClass(socialWarfarePlugin.lastClass).addClass(l),socialWarfarePlugin.lastClass=l})}}function t(){b('select[name="buttonSize"],select[name="buttonFloat"]').on("change",function(){b(".nc_socialPanel").css({width:"100%"});var a,c=b(".nc_socialPanel").width(),d=b('select[name="buttonSize"]').val(),e=b('select[name="buttonFloat"]').val();"fullWidth"==e&&1!=d||d>=1?(a=c/d,b(".nc_socialPanel").css("cssText","width:"+a+"px!important;"),b(".nc_socialPanel").css({transform:"scale("+d+")","transform-origin":"left"})):"fullWidth"!=e&&d<1&&(a=c/d,b(".nc_socialPanel").css({transform:"scale("+d+")","transform-origin":e})),socialWarfarePlugin.activateHoverStates()})}function u(){var a=b('select[name="cttTheme"]');a.on("change",function(){var a=b('select[name="cttTheme"]').val();b(".swp_CTT").attr("class","swp_CTT").addClass(a)}),a.trigger("change")}function v(a){b(".registration-wrapper").attr("registration",a),b(".sw-admin-wrapper").attr("sw-registered",a)}function w(){var a=!1,c={action:"swp_ajax_passthrough",security:swpAdminOptionsData.registerNonce,activity:"register",email:b('input[name="emailAddress"]').val()};return o(),b.post(ajaxurl,c,function(c){c.success?(b('input[name="premiumCode"]').val(c.data.premiumCode),v("1"),a=!0):alert("Failure: "+c.data)}),p(),a}function x(){var a=!1,c={action:"swp_ajax_passthrough",security:swpAdminOptionsData.registerNonce,activity:"unregister",email:b('input[name="emailAddress"]').val(),key:b('input[name="premiumCode"]').val()};return o(),b.post(ajaxurl,c,function(c){c.success?(b('input[name="premiumCode"]').val(""),b('input[name="emailAddress"]').val(""),v("0"),a=!0):alert("Failure: "+c.data)}),p(),a}function y(){b("#register-plugin").on("click",function(){return w(),!1}),b("#unregister-plugin").on("click",function(){return x(),!1})}function z(){b(".sw-buttons-sort.sw-active").sortable({connectWith:".sw-buttons-sort.sw-inactive",update:function(){m()}}),b(".sw-buttons-sort.sw-inactive").sortable({connectWith:".sw-buttons-sort.sw-active",update:function(){m()}})}function A(){b(".sw-system-status").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,b(".system-status-wrapper").slideToggle(),d(b(".system-status-container").get(0))})}function B(){b(".sw-premium-blocker").tooltip({items:".sw-premium-blocker",content:"<i></i>Unlock this feature by registering your license.",position:{my:"center top",at:"center top"},tooltipClass:"sw-admin-hover-notice",open:function(a,c){if("undefined"==typeof a.originalEvent)return!1;var d=b(c.tooltip).attr("id");b("div.ui-tooltip").not("#"+d).remove()},close:function(a,c){c.tooltip.hover(function(){b(this).stop(!0).fadeTo(400,1)},function(){b(this).fadeOut("400",function(){b(this).remove()})})}})}function C(){var a;b(".swp_upload_image_button").click(function(c){c.preventDefault();var d=b(this).attr("for");return a?void a.open():(a=wp.media.frames.file_frame=wp.media({title:"Choose Image",button:{text:"Choose Image"},multiple:!1}),a.on("select",function(){var c=a.state().get("selection").first().toJSON();b('input[name="'+d+'"').val(c.url)}),void a.open())})}b(document).ready(function(){n(),l(),i(),j(),k(),s(),f(),u(),t(),y(),z(),A(),B(),C()})}(this,jQuery);
1
+ !function(a,b,c){"use strict";function d(b){var c,d;document.body.createTextRange?(c=document.body.createTextRange(),c.moveToElementText(b),c.select()):a.getSelection&&(d=a.getSelection(),c=document.createRange(),c.selectNodeContents(b),d.removeAllRanges(),d.addRange(c))}function e(){var a={};return b("form.sw-admin-settings-form input, form.sw-admin-settings-form select").each(function(){var c,d=b(this),e=d.attr("name");c="checkbox"===d.attr("type")?d.prop("checked"):d.val(),a[e]=c}),a.newOrderOfIcons={},b(".sw-active i").each(function(){var c=b(this).data("network");a.newOrderOfIcons[c]=c}),a}function f(){b("div[dep]").each(function(){var a,c=b(this).attr("dep"),d=b.parseJSON(b(this).attr("dep_val"));a="checkbox"==b('[name="'+c+'"]').attr("type")?b('[name="'+c+'"]').prop("checked"):b('[name="'+c+'"]').val(),-1!==b.inArray(a,d)&&b('[name="'+c+'"]').parent(".sw-grid").is(":visible")?b(this).show():b(this).hide()}),0!=h("floatStyleSource")||"customColor"!=g("sideDColorSet")&&"ccOutlines"!=g("sideDColorSet")&&"customColor"!=g("sideIColorSet")&&"ccOutlines"!=g("sideIColorSet")&&"customColor"!=g("sideOColorSet")&&"ccOutlines"!=g("sideOColorSet")?b(".sideCustomColor_wrapper").slideUp():b(".sideCustomColor_wrapper").slideDown()}function g(a){return b('select[name="'+a+'"]').val()}function h(a){return b('[name="'+a+'"]').prop("checked")}function i(){var a=b(".sw-top-menu").offset(),c=b(".sw-top-menu").width();b(".sw-top-menu").css({position:"fixed",left:a.left,top:a.top,width:c}),b(".sw-admin-wrapper").css("padding-top","75px")}function j(){b(".sw-tab-selector").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,b("html, body").animate({scrollTop:0},0);var c=b(this).attr("data-link");b(".sw-admin-tab").hide(),b("#"+c).show(),b(".sw-header-menu li").removeClass("sw-active-tab"),b(this).parents("li").addClass("sw-active-tab"),"swp_styles"===c&&socialWarfarePlugin.activateHoverStates(),f()})}function k(){b(".sw-checkbox-toggle").on("click",function(){var a=b(this).attr("status"),c=b(this).attr("field");"on"===a?(b(this).attr("status","off"),b(c).prop("checked",!1)):(b(this).attr("status","on"),b(c).prop("checked",!0)),m(),f()})}function l(){b("form.sw-admin-settings-form input, form.sw-admin-settings-form select").on("change",function(){f(),socialWarfarePlugin.newOptions=e(),m()}),socialWarfarePlugin.defaultOptions=e()}function m(){socialWarfarePlugin.newOptions=e(),JSON.stringify(socialWarfarePlugin.newOptions)!==JSON.stringify(socialWarfarePlugin.defaultOptions)?b(".sw-save-settings").removeClass("sw-navy-button").addClass("sw-red-button"):b(".sw-save-settings").removeClass("sw-red-button").addClass("sw-navy-button")}function n(){b(".sw-save-settings").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,o();var c=e();console.log(c);var d={action:"swp_store_settings",security:swpAdminOptionsData.optionsNonce,settings:c};b.post(ajaxurl,d,function(a){p(),console.log(b.parseJSON(a)),socialWarfarePlugin.defaultOptions=e(),m()})})}function o(){b("body").append('<div class="sw-loading-bg"><div class="sw-loading-message">Saving Changes</div></div>')}function p(){b(".sw-loading-message").html("Success!").removeClass("sw-loading-message").addClass("sw-loading-complete"),b(".sw-loading-bg").delay(1e3).fadeOut(1e3),setTimeout(function(){b(".sw-loading-bg").remove()},2e3)}function q(){var a=(b('select[name="visualTheme"]').val(),b('select[name="dColorSet"]').val()),c=b('select[name="iColorSet"]').val(),d=b('select[name="oColorSet"]').val();b("style.swp_customColorStuff").remove();var e=b('input[name="customColor"]').val(),f="";"customColor"!=a&&"customColor"!=c&&"customColor"!=d||(f=".nc_socialPanel.swp_d_customColor a, html body .nc_socialPanel.swp_i_customColor .nc_tweetContainer:hover a, body .nc_socialPanel.swp_o_customColor:hover a {color:white} .nc_socialPanel.swp_d_customColor .nc_tweetContainer, html body .nc_socialPanel.swp_i_customColor .nc_tweetContainer:hover, body .nc_socialPanel.swp_o_customColor:hover .nc_tweetContainer {background-color:"+e+";border:1px solid "+e+";}"),"ccOutlines"!=a&&"ccOutlines"!=c&&"ccOutlines"!=d||(f=f+" .nc_socialPanel.swp_d_ccOutlines a, html body .nc_socialPanel.swp_i_ccOutlines .nc_tweetContainer:hover a, body .nc_socialPanel.swp_o_ccOutlines:hover a { color:"+e+"; } .nc_socialPanel.swp_d_ccOutlines .nc_tweetContainer, html body .nc_socialPanel.swp_i_ccOutlines .nc_tweetContainer:hover, body .nc_socialPanel.swp_o_ccOutlines:hover .nc_tweetContainer { background:transparent; border:1px solid "+e+"; }"),b("head").append('<style type="text/css" class="swp_customColorStuff">'+f+"</style>")}function r(){var a=b('select[name="visualTheme"]').val(),c=b('select[name="dColorSet"]').val(),d=b('select[name="iColorSet"]').val(),e=b('select[name="oColorSet"]').val(),f="swp_"+a+" swp_d_"+c+" swp_i_"+d+" swp_o_"+e;void 0===socialWarfarePlugin.lastClass&&(console.log("boom"),socialWarfarePlugin.lastClass="swp_flatFresh swp_d_fullColor swp_i_fullColor swp_o_fullColor");var f="swp_"+a+" swp_d_"+c+" swp_i_"+d+" swp_o_"+e;b(".nc_socialPanel").removeClass(socialWarfarePlugin.lastClass).addClass(f),socialWarfarePlugin.lastClass=f;"customColor"==c||"ccOutlines"==c||"customColor"==d||"ccOutlines"==d||"customColor"==e||"ccOutlines"==e?(b(".customColor_wrapper").slideDown(),q()):b(".customColor_wrapper").slideUp()}function s(){var a={flatFresh:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},leaf:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},pill:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},threeDee:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray"},connected:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"},shift:{fullColor:"Full Color",lightGray:"Light Gray",mediumGray:"Medium Gray",darkGray:"Dark Gray",lgOutlines:"Light Gray Outlines",mdOutlines:"Medium Gray Outlines",dgOutlines:"Dark Gray Outlines",colorOutlines:"Color Outlines",customColor:"Custom Color",ccOutlines:"Custom Color Outlines"}};if(0!==b('select[name="visualTheme"]').length){var c=b('select[name="visualTheme"]').val(),d=b('select[name="dColorSet"]').val(),e=b('select[name="iColorSet"]').val(),f=b('select[name="oColorSet"]').val();b('select[name="dColorSet"] option, select[name="iColorSet"] option, select[name="oColorSet"] option').remove(),b.each(a[c],function(a,c){a===d?b('select[name="dColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="dColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===e?b('select[name="iColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="iColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===f?b('select[name="oColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="oColorSet"]').append('<option value="'+a+'">'+c+"</option>"),"customColor"==d||"ccOutlines"==d||"customColor"==e||"ccOutlines"==e||"customColor"==f||"ccOutlines"==f?(b(".customColor_wrapper").slideDown(),q()):b(".customColor_wrapper").slideUp()}),b('select[name="dColorSet"], select[name="iColorSet"], select[name="oColorSet"]').on("change",r),b('select[name="visualTheme"]').on("change",function(){var c=b('select[name="visualTheme"]').val(),d=b('select[name="dColorSet"]').val(),e=b('select[name="iColorSet"]').val(),f=b('select[name="oColorSet"]').val(),g=0,h=a[c],i=h.hasOwnProperty(d),j=h.hasOwnProperty(e),k=h.hasOwnProperty(f);b('select[name="dColorSet"] option, select[name="iColorSet"] option, select[name="oColorSet"] option').remove(),b.each(a[c],function(a,c){a===d||0==i&&0==g?b('select[name="dColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="dColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===e||0==j&&0==g?b('select[name="iColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="iColorSet"]').append('<option value="'+a+'">'+c+"</option>"),a===f||0==k&&0==g?b('select[name="oColorSet"]').append('<option value="'+a+'" selected>'+c+"</option>"):b('select[name="oColorSet"]').append('<option value="'+a+'">'+c+"</option>"),++g}),void 0===socialWarfarePlugin.lastClass&&(console.log("boom"),socialWarfarePlugin.lastClass="swp_flatFresh swp_d_fullColor swp_i_fullColor swp_o_fullColor");var l="swp_"+c+" swp_d_"+d+" swp_i_"+e+" swp_o_"+f;b(".nc_socialPanel").removeClass(socialWarfarePlugin.lastClass).addClass(l),socialWarfarePlugin.lastClass=l})}}function t(){b('select[name="buttonSize"],select[name="buttonFloat"]').on("change",function(){b(".nc_socialPanel").css({width:"100%"});var a,c=b(".nc_socialPanel").width(),d=b('select[name="buttonSize"]').val(),e=b('select[name="buttonFloat"]').val();"fullWidth"==e&&1!=d||d>=1?(a=c/d,b(".nc_socialPanel").css("cssText","width:"+a+"px!important;"),b(".nc_socialPanel").css({transform:"scale("+d+")","transform-origin":"left"})):"fullWidth"!=e&&d<1&&(a=c/d,b(".nc_socialPanel").css({transform:"scale("+d+")","transform-origin":e})),socialWarfarePlugin.activateHoverStates()})}function u(){var a=b('select[name="cttTheme"]');a.on("change",function(){var a=b('select[name="cttTheme"]').val();b(".swp_CTT").attr("class","swp_CTT").addClass(a)}),a.trigger("change")}function v(a){b(".registration-wrapper").attr("registration",a),b(".sw-admin-wrapper").attr("sw-registered",a)}function w(){var a=!1,c={action:"swp_register_plugin",security:swpAdminOptionsData.registerNonce,activity:"register",pro_license_key:b('input[name="pro_license_key"]').val()};return o(),console.log(c),b.post(ajaxurl,c,function(b){b=JSON.parse(b),console.log(b),b.success?(v("1"),a=!0):alert("Failure: "+b.data),p()}),a}function x(){var a=!1,c={action:"swp_unregister_plugin",security:swpAdminOptionsData.registerNonce,activity:"unregister"};return o(),b.post(ajaxurl,c,function(c){c=JSON.parse(c),console.log(c),c.success?(b('input[name="pro_license_key"]').val(""),v("0"),a=!0):alert("Failure: "+c.data),p()}),a}function y(){b("#register-plugin").on("click",function(){return w(),!1}),b("#unregister-plugin").on("click",function(){return x(),!1})}function z(){b(".sw-buttons-sort.sw-active").sortable({connectWith:".sw-buttons-sort.sw-inactive",update:function(){m()}}),b(".sw-buttons-sort.sw-inactive").sortable({connectWith:".sw-buttons-sort.sw-active",update:function(){m()}})}function A(){b(".sw-system-status").on("click",function(a){a.preventDefault?a.preventDefault():a.returnValue=!1,b(".system-status-wrapper").slideToggle(),d(b(".system-status-container").get(0))})}function B(){b(".sw-premium-blocker").tooltip({items:".sw-premium-blocker",content:"<i></i>Unlock this feature by registering your license.",position:{my:"center top",at:"center top"},tooltipClass:"sw-admin-hover-notice",open:function(a,c){if(void 0===a.originalEvent)return!1;var d=b(c.tooltip).attr("id");b("div.ui-tooltip").not("#"+d).remove()},close:function(a,c){c.tooltip.hover(function(){b(this).stop(!0).fadeTo(400,1)},function(){b(this).fadeOut("400",function(){b(this).remove()})})}})}function C(){var a;b(".swp_upload_image_button").click(function(c){c.preventDefault();var d=b(this).attr("for");if(a)return void a.open();a=wp.media.frames.file_frame=wp.media({title:"Choose Image",button:{text:"Choose Image"},multiple:!1}),a.on("select",function(){var c=a.state().get("selection").first().toJSON();b('input[name="'+d+'"').val(c.url)}),a.open()})}b(document).ready(function(){n(),l(),i(),j(),k(),s(),f(),u(),t(),y(),z(),A(),B(),C()})}(this,jQuery);
js/admin.min.js CHANGED
@@ -1 +1 @@
1
- var socialWarfareAdmin=socialWarfareAdmin||{};!function(a,b,c){"use strict";function d(){var a=b("#socialWarfare textarea#nc_ogTitle").val(),c=60-a.length;a.length>0&&c>=0?b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):a.length>0&&c<0?b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_ogTitleWrapper .counterNumber").html(c)}function e(){var a=b("#socialWarfare textarea#nc_ogDescription").val(),c=160-a.length;a.length>0&&c>=0?b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):a.length>0&&c<0?b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_ogDescriptionWrapper .counterNumber").html(c)}function f(){var a,c=b("#socialWarfare textarea#nc_customTweet").val(),d=b("#socialWarfare .twitterIDWrapper label").html();c.indexOf("http")>-1||c.indexOf("https")>-1?(a=0,b(".tweetLinkSection").css({"text-decoration":"line-through"})):(a=23,b(".tweetLinkSection").css({"text-decoration":"none"}));var e;e="undefined"==typeof d?140-socialWarfareAdmin.linkLength(c)-a:140-socialWarfareAdmin.linkLength(c)-d.length-a-6,c.length>0&&e>=0?b("#socialWarfare .nc_customTweetWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):c.length>0&&e<0?b("#socialWarfare .nc_customTweetWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_customTweetWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_customTweetWrapper .counterNumber").html(e)}socialWarfareAdmin.linkLength=function(a){for(var b="",c=0;c<23;c++)b+="o";return a.replace(/(http:\/\/[\S]*)/g,b).length},b(document).ready(function(){if(b("#socialWarfare.postbox").length){b("#socialWarfare #nc_ogTitle").parent().prepend('<div class="swp_CountDown"><span class="counterNumber">60</span> '+swp_localize_admin.swp_characters_remaining+"</div>"),b("#socialWarfare #nc_ogDescription").parent().prepend('<div class="swp_CountDown"><span class="counterNumber">150</span> '+swp_localize_admin.swp_characters_remaining+"</div>"),b("#socialWarfare #nc_customTweet").parent().prepend('<div class="swp_CountDown"><span class="counterNumber">118</span> '+swp_localize_admin.swp_characters_remaining+"</div>"),d(),b("#socialWarfare textarea#nc_ogTitle").on("input",function(){d()}),e(),b("#socialWarfare textarea#nc_ogDescription").on("input",function(){e()}),f(),b("#socialWarfare textarea#nc_customTweet").on("input",function(){f()});setInterval(function(){var a,c,d=b(".nc_ogImageWrapper ul.swpmb-media-list"),e=b(".nc_pinterestImageWrapper ul.swpmb-media-list");d.length&&d.is(":empty")?(a=d.width(),c=a*(9/16),d.css({height:c+"px"})):(c=d.find("img").height(),d.css({height:c+"px"}));var f,g;e.length&&e.is(":empty")?(f=e.width(),g=1.5*f,e.css({height:g+"px"})):(g=e.find("img").height(),e.css({height:g+"px"}))},1e3)}if(b(".swp_popular_post_options .showCount select").on("change",function(){var a=b(this).val();(a=!0)?b(".swp_popular_post_options .countLabel").slideDown("slow"):b(".swp_popular_post_options .countLabel").slideUp("slow")}),b(".swp_popular_post_options .thumbnails select").on("change",function(){var a=b(this).val();(a=!0)?b(".swp_popular_post_options .thumb_size").slideDown("slow"):b(".swp_popular_post_options .thumb_size").slideUp("slow")}),b(".swp_popular_post_options .style select").on("change",function(){var a=b(this).val();(a="custom")?b(".swp_popular_post_options .custom_bg, .swp_popular_post_options .custom_link").slideDown("slow"):b(".swp_popular_post_options .custom_bg, .swp_popular_post_options .custom_link").slideUp("slow")}),b(".postbox#socialWarfare").length){var a=b("#socialWarfare .registrationWrapper input").attr("id");"false"==a&&(b(".postbox#socialWarfare").css({position:"relative",opacity:"0.3"}).append('<div class="sw-premium-blocker"></div>'),b("#socialWarfare .sw-premium-blocker").tooltip({items:"#socialWarfare .sw-premium-blocker",content:"<i></i>Unlock these features by registering your license.",position:{my:"center top",at:"center top"},tooltipClass:"sw-admin-hover-notice",open:function(a,c){if("undefined"==typeof a.originalEvent)return!1;var d=b(c.tooltip).attr("id");b("div.ui-tooltip").not("#"+d).remove()},close:function(a,c){c.tooltip.hover(function(){b(this).stop(!0).fadeTo(400,1)},function(){b(this).fadeOut("400",function(){b(this).remove()})})}}))}})}(this,jQuery);
1
+ var socialWarfareAdmin=socialWarfareAdmin||{};!function(a,b,c){"use strict";function d(){var a=b("#socialWarfare textarea#nc_ogTitle").val(),c=60-a.length;a.length>0&&c>=0?b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):a.length>0&&c<0?b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_ogTitleWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_ogTitleWrapper .counterNumber").html(c)}function e(){var a=b("#socialWarfare textarea#nc_ogDescription").val(),c=160-a.length;a.length>0&&c>=0?b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):a.length>0&&c<0?b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_ogDescriptionWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_ogDescriptionWrapper .counterNumber").html(c)}function f(){var a,c=b("#socialWarfare textarea#nc_customTweet").val(),d=b("#socialWarfare .twitterIDWrapper label").html();c.indexOf("http")>-1||c.indexOf("https")>-1?(a=0,b(".tweetLinkSection").css({"text-decoration":"line-through"})):(a=23,b(".tweetLinkSection").css({"text-decoration":"none"}));var e;e=void 0===d?140-socialWarfareAdmin.linkLength(c)-a:140-socialWarfareAdmin.linkLength(c)-d.length-a-6,c.length>0&&e>=0?b("#socialWarfare .nc_customTweetWrapper .swp_CountDown").removeClass("swp_red").addClass("swp_blue"):c.length>0&&e<0?b("#socialWarfare .nc_customTweetWrapper .swp_CountDown").removeClass("swp_blue").addClass("swp_red"):b("#socialWarfare .nc_customTweetWrapper .swp_CountDown").removeClass("swp_blue").removeClass("swp_red"),b("#socialWarfare .nc_customTweetWrapper .counterNumber").html(e)}socialWarfareAdmin.linkLength=function(a){for(var b="",c=0;c<23;c++)b+="o";return a.replace(/(http:\/\/[\S]*)/g,b).length},b(document).ready(function(){if(b("#socialWarfare.postbox").length){b("#socialWarfare #nc_ogTitle").parent().prepend('<div class="swp_CountDown"><span class="counterNumber">60</span> '+swp_localize_admin.swp_characters_remaining+"</div>"),b("#socialWarfare #nc_ogDescription").parent().prepend('<div class="swp_CountDown"><span class="counterNumber">150</span> '+swp_localize_admin.swp_characters_remaining+"</div>"),b("#socialWarfare #nc_customTweet").parent().prepend('<div class="swp_CountDown"><span class="counterNumber">118</span> '+swp_localize_admin.swp_characters_remaining+"</div>"),d(),b("#socialWarfare textarea#nc_ogTitle").on("input",function(){d()}),e(),b("#socialWarfare textarea#nc_ogDescription").on("input",function(){e()}),f(),b("#socialWarfare textarea#nc_customTweet").on("input",function(){f()});setInterval(function(){var a,c,d=b(".nc_ogImageWrapper ul.swpmb-media-list"),e=b(".nc_pinterestImageWrapper ul.swpmb-media-list");d.length&&d.is(":empty")?(a=d.width(),c=a*(9/16),d.css({height:c+"px"})):(c=d.find("img").height(),d.css({height:c+"px"}));var f,g;e.length&&e.is(":empty")?(f=e.width(),g=1.5*f,e.css({height:g+"px"})):(g=e.find("img").height(),e.css({height:g+"px"}))},1e3)}if(b(".swp_popular_post_options .showCount select").on("change",function(){b(this).val();b(".swp_popular_post_options .countLabel").slideDown("slow")}),b(".swp_popular_post_options .thumbnails select").on("change",function(){b(this).val();b(".swp_popular_post_options .thumb_size").slideDown("slow")}),b(".swp_popular_post_options .style select").on("change",function(){b(this).val();b(".swp_popular_post_options .custom_bg, .swp_popular_post_options .custom_link").slideDown("slow")}),b(".postbox#socialWarfare").length){"false"==b("#socialWarfare .registrationWrapper input").attr("id")&&(b(".postbox#socialWarfare").css({position:"relative",opacity:"0.3"}).append('<div class="sw-premium-blocker"></div>'),b("#socialWarfare .sw-premium-blocker").tooltip({items:"#socialWarfare .sw-premium-blocker",content:"<i></i>Unlock these features by registering your license.",position:{my:"center top",at:"center top"},tooltipClass:"sw-admin-hover-notice",open:function(a,c){if(void 0===a.originalEvent)return!1;var d=b(c.tooltip).attr("id");b("div.ui-tooltip").not("#"+d).remove()},close:function(a,c){c.tooltip.hover(function(){b(this).stop(!0).fadeTo(400,1)},function(){b(this).fadeOut("400",function(){b(this).remove()})})}}))}})}(0,jQuery);
js/script.min.js CHANGED
@@ -1 +1 @@
1
- var socialWarfarePlugin=socialWarfarePlugin||{};!function(a,b){var c,d=a.socialWarfarePlugin;d.throttle=c=function(a,c,e,f){function g(){function d(){i=+new Date,e.apply(j,l)}function g(){h=b}var j=this,k=+new Date-i,l=arguments;f&&!h&&d(),h&&clearTimeout(h),f===b&&k>a?d():c!==!0&&(h=setTimeout(f?g:d,f===b?a-k:a))}var h,i=0;return"boolean"!=typeof c&&(f=e,e=c,c=b),d.guid&&(g.guid=e.guid=e.guid||d.guid++),g},d.debounce=function(a,d,e){return e===b?c(a,d,!1):c(a,e,d!==!1)}}(this),function(a,b,c){"use strict";function d(a){return parseInt(a,10)}function e(c){var d=b.Event(c);b(a).trigger(d)}function f(){b(".nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:not(.swp_nohover) .iconFiller").removeAttr("style"),b(".nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:not(.swp_nohover)").removeAttr("style")}function g(){b(".nc_wrapper").length&&b(".nc_wrapper").remove();var a=b(".nc_socialPanel").not('[data-float="float_ignore"]').first(),c=(b(".nc_socialPanel").index(a),a.attr("data-float")),d=a.attr("data-align");if(c){var e=b(".nc_socialPanel").attr("data-floatColor");b('<div class="nc_wrapper" style="background-color:'+e+'"></div>').appendTo("body");var f=a.attr("data-float");a.clone().appendTo(".nc_wrapper"),b(".nc_wrapper").hide().addClass("floatLeft"==f?"floatBottom":f);var g=a.outerWidth(!0),h=a.offset();b(".nc_socialPanel").last().addClass("nc_floater").css({width:g,left:"center"==d?0:h.left}),b(".nc_socialPanel .swp_count").css({transition:"padding .1s linear"}),b(".nc_socialPanel").eq(0).addClass("swp_one"),b(".nc_socialPanel").eq(2).addClass("swp_two"),b(".nc_socialPanel").eq(1).addClass("swp_three")}}function h(){var c=b(".nc_socialPanel"),d=c.not('[data-float="float_ignore"]').eq(0).attr("data-float"),f=b(a),g=f.height(),h=b(".nc_wrapper"),i=b(".nc_socialPanelSide").filter(":not(.mobile)"),j=(b(".nc_socialPanel").attr("data-position"),i.attr("data-screen-width")),k=c.eq(0).offset(),l=f.scrollTop();b(a).scrollTop();"undefined"==typeof a.swpOffsets&&(a.swpOffsets={});var m=!1;if("floatLeft"==d){var n=b(".nc_socialPanelSide").attr("data-mobileFloat");b(".nc_socialPanel").not(".nc_socialPanelSide").length?(b(".nc_socialPanel").not(".nc_socialPanelSide, .nc_floater").each(function(){var a=b(this).offset(),c=b(this).height();a.top+c>l&&a.top<l+g&&(m=!0)}),k.left<100||b(a).width()<j?(m=!0,"bottom"==n&&(d="floatBottom")):m||(m=!1)):b(a).width()>j?m=!1:(m=!0,"bottom"==n&&(d="floatBottom"));var o=i.attr("data-transition");"slide"==o?1==m?i.css({left:"-100px"},200):i.css({left:"5px"}):"fade"==o&&(1==m?i.fadeOut(200):i.fadeIn(200))}if("floatBottom"==d||"floatTop"==d)if(m=!1,b(".nc_socialPanel").not(".nc_socialPanelSide, .nc_floater").each(function(){var a=b(this).offset(),c=b(this).height();a.top+c>l&&a.top<l+g&&(m=!0)}),m)h.hide(),"floatBottom"==d?b("body").animate({"padding-bottom":a.bodyPaddingBottom+"px"},0):"floatTop"==d&&b("body").animate({"padding-top":a.bodyPaddingTop+"px"},0);else{var p,q;h.show(),e("floating_bar_revealed"),"floatBottom"==d?(p=a.bodyPaddingBottom+50,b("body").animate({"padding-bottom":p+"px"},0)):"floatTop"==d&&(q=b(".nc_socialPanel").not(".nc_socialPanelSide, .nc_wrapper .nc_socialPanel").first().offset(),q.top>l+g&&(p=a.bodyPaddingTop+50,b("body").animate({"padding-top":p+"px"},0)))}}function i(){0!==b(".nc_socialPanel").length&&(g(),l.activateHoverStates(),k(),b(a).scrollTop(),b(a).scroll(l.throttle(50,function(){h()})),b(a).trigger("scroll"),b(".nc_socialPanel").css({opacity:1}))}function j(){var c={wrap:'<div class="sw-pinit" />',pageURL:document.URL},d=b.extend(c,d);b(".swp-content-locator").parent().find("img").each(function(){var c=b(this);if(!(c.outerHeight()<swpPinIt.minHeight||c.outerWidth()<swpPinIt.minWidth)){var e=!1;if("undefined"!=typeof swpPinIt.image_source?e=swpPinIt.image_source:c.data("media")?e=c.data("media"):b(this).attr("data-lazy-src")?e=b(this).attr("data-lazy-src"):c[0].src&&(e=c[0].src),!1!==e&&!c.hasClass("no_pin")){var f="";"undefined"!=typeof swpPinIt.image_description?f=swpPinIt.image_description:c.attr("title")?f=c.attr("title"):c.attr("alt")&&(f=c.attr("alt"));var g="http://pinterest.com/pin/create/bookmarklet/?media="+encodeURI(e)+"&url="+encodeURI(d.pageURL)+"&is_video=false&description="+encodeURIComponent(f),h=c.attr("class"),i=c.attr("style");c.removeClass().attr("style","").wrap(d.wrap),c.after('<a href="'+g+'" class="sw-pinit-button sw-pinit-'+swpPinIt.vLocation+" sw-pinit-"+swpPinIt.hLocation+'">Save</a>'),c.parent(".sw-pinit").addClass(h).attr("style",i),b(".sw-pinit .sw-pinit-button").on("click",function(){if(a.open(b(this).attr("href"),"Pinterest","width=632,height=253,status=0,toolbar=0,menubar=0,location=1,scrollbars=1"),"function"==typeof ga&&!0===swpClickTracking){var c="pin_image";console.log(c+" Button Clicked"),ga("send","event","social_media","swp_"+c+"_share")}return!1})}}})}function k(){b(".nc_tweet, a.swp_CTT").off("click"),b(".nc_tweet, a.swp_CTT").on("click",function(c){if(b(this).hasClass("noPop"))return!1;if(console.log(b(this)),b(this).attr("data-link")){c.preventDefault?c.preventDefault():c.returnValue=!1;var d=b(this).attr("data-link");console.log(d);var e,f,g;if(d=d.replace("’","'"),b(this).hasClass("pinterest")||b(this).hasClass("buffer_link")||b(this).hasClass("flipboard")?(e=550,f=775):(e=270,f=500),g=a.open(d,"_blank","height="+e+",width="+f),"function"==typeof ga&&!0===swpClickTracking){if(b(this).hasClass("nc_tweet"))var h=b(this).parents(".nc_tweetContainer").attr("data-network");else if(b(this).hasClass("swp_CTT"))var h="ctt";console.log(h+" Button Clicked"),ga("send","event","social_media","swp_"+h+"_share")}return!1}})}var l=a.socialWarfarePlugin,m={};socialWarfarePlugin.fetchShares=function(){b.when(b.get("https://graph.facebook.com/?fields=og_object{likes.summary(true).limit(0)},share&id="+swp_post_url),swp_post_recovery_url?b.get("https://graph.facebook.com/?fields=og_object{likes.summary(true).limit(0)},share&id="+swp_post_recovery_url):"").then(function(a,c){if("undefined"!=typeof a[0].share){console.log(a);var e=d(a[0].share.share_count),f=d(a[0].share.comment_count);if("undefined"!=typeof a[0].og_object)var g=d(a[0].og_object.likes.summary.total_count);else var g=0;var h=e+f+g;if(swp_post_recovery_url){if(console.log(c),"undefined"!=typeof c[0].share)var i=d(c[0].share.share_count),j=d(c[0].share.comment_count);else var i=0,j=0;if("undefined"!=typeof c[0].og_object)var k=d(c[0].og_object.likes.summary.total_count);else var k=0;var l=i+j+k;h!==l&&(h+=l)}m={action:"swp_facebook_shares_update",post_id:swp_post_id,activity:h},b.post(swp_admin_ajax,m,function(a){console.log("Facebook Shares Response: "+h)})}})},l.activateHoverStates=function(){e("pre_activate_buttons"),b(".nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:not(.swp_nohover)").on("mouseenter",function(){f();var a=b(this).find(".swp_share").outerWidth(),c=b(this).find("i.sw").outerWidth(),d=b(this).width(),e=1+(a+35)/d;b(this).find(".iconFiller").width(a+c+25+"px"),b(this).css({flex:e+" 1 0%"})}),b(".nc_socialPanel:not(.nc_socialPanelSide)").on("mouseleave",function(){f()})},b(a).on("load",function(){"undefined"!=typeof swpPinIt&&swpPinIt.enabled&&j()}),b(document).ready(function(){k(),i(),a.bodyPaddingTop=d(b("body").css("padding-top").replace("px","")),a.bodyPaddingBottom=d(b("body").css("padding-bottom").replace("px",""));var c=!1;if(b(".nc_socialPanel").hover(function(){c=!0},function(){c=!1}),b(a).resize(l.debounce(250,function(){b(".nc_socialPanel").length&&!1!==c||(a.swpAdjust=1,i())})),b(document.body).on("post-load",function(){i()}),0!==b(".nc_socialPanelSide").length){var e=b(".nc_socialPanelSide").height(),f=b(a).height(),g=d(f/2-e/2);setTimeout(function(){b(".nc_socialPanelSide").animate({top:g},0)},105)}swp_isMobile.phone&&b(".swp_whatsapp").addClass("mobile"),1===b(".swp-content-locator").parent().children().length&&b(".swp-content-locator").parent().hide()})}(this,jQuery),function(a){var b=/iPhone/i,c=/iPod/i,d=/iPad/i,e=/(?=.*\bAndroid\b)(?=.*\bMobile\b)/i,f=/Android/i,g=/(?=.*\bAndroid\b)(?=.*\bSD4930UR\b)/i,h=/(?=.*\bAndroid\b)(?=.*\b(?:KFOT|KFTT|KFJWI|KFJWA|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|KFARWI|KFASWI|KFSAWI|KFSAWA)\b)/i,i=/Windows Phone/i,j=/(?=.*\bWindows\b)(?=.*\bARM\b)/i,k=/BlackBerry/i,l=/BB10/i,m=/Opera Mini/i,n=/(CriOS|Chrome)(?=.*\bMobile\b)/i,o=/(?=.*\bFirefox\b)(?=.*\bMobile\b)/i,p=new RegExp("(?:Nexus 7|BNTV250|Kindle Fire|Silk|GT-P1000)","i"),q=function(a,b){return a.test(b)},r=function(a){var r=a||navigator.userAgent,s=r.split("[FBAN");if("undefined"!=typeof s[1]&&(r=s[0]),s=r.split("Twitter"),"undefined"!=typeof s[1]&&(r=s[0]),this.apple={phone:q(b,r),ipod:q(c,r),tablet:!q(b,r)&&q(d,r),device:q(b,r)||q(c,r)||q(d,r)},this.amazon={phone:q(g,r),tablet:!q(g,r)&&q(h,r),device:q(g,r)||q(h,r)},this.android={phone:q(g,r)||q(e,r),tablet:!q(g,r)&&!q(e,r)&&(q(h,r)||q(f,r)),device:q(g,r)||q(h,r)||q(e,r)||q(f,r)},this.windows={phone:q(i,r),tablet:q(j,r),device:q(i,r)||q(j,r)},this.other={blackberry:q(k,r),blackberry10:q(l,r),opera:q(m,r),firefox:q(o,r),chrome:q(n,r),device:q(k,r)||q(l,r)||q(m,r)||q(o,r)||q(n,r)},this.seven_inch=q(p,r),this.any=this.apple.device||this.android.device||this.windows.device||this.other.device||this.seven_inch,this.phone=this.apple.phone||this.android.phone||this.windows.phone,this.tablet=this.apple.tablet||this.android.tablet||this.windows.tablet,"undefined"==typeof window)return this},s=function(){var a=new r;return a.Class=r,a};"undefined"!=typeof module&&module.exports&&"undefined"==typeof window?module.exports=r:"undefined"!=typeof module&&module.exports&&"undefined"!=typeof window?module.exports=s():"function"==typeof define&&define.amd?define("swp_isMobile",[],a.swp_isMobile=s()):a.swp_isMobile=s()}(this);
1
+ var socialWarfarePlugin=socialWarfarePlugin||{};!function(a,b){var c,d=a.socialWarfarePlugin;d.throttle=c=function(a,c,e,f){function g(){function d(){i=+new Date,e.apply(j,l)}function g(){h=b}var j=this,k=+new Date-i,l=arguments;f&&!h&&d(),h&&clearTimeout(h),f===b&&k>a?d():!0!==c&&(h=setTimeout(f?g:d,f===b?a-k:a))}var h,i=0;return"boolean"!=typeof c&&(f=e,e=c,c=b),d.guid&&(g.guid=e.guid=e.guid||d.guid++),g},d.debounce=function(a,d,e){return e===b?c(a,d,!1):c(a,e,!1!==d)}}(this),function(a,b,c){"use strict";function d(a){return parseInt(a,10)}function e(c){var d=b.Event(c);b(a).trigger(d)}function f(){b(".nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:not(.swp_nohover) .iconFiller").removeAttr("style"),b(".nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:not(.swp_nohover)").removeAttr("style")}function g(){b(".nc_wrapper").length&&b(".nc_wrapper").remove();var a=b(".nc_socialPanel").not('[data-float="float_ignore"]').first(),c=(b(".nc_socialPanel").index(a),a.attr("data-float")),d=a.attr("data-align");if(c){var e=b(".nc_socialPanel").attr("data-floatColor");b('<div class="nc_wrapper" style="background-color:'+e+'"></div>').appendTo("body");var f=a.attr("data-float");a.clone().appendTo(".nc_wrapper"),b(".nc_wrapper").hide().addClass("floatLeft"==f?"floatBottom":f);var g=a.outerWidth(!0),h=a.offset();b(".nc_socialPanel").last().addClass("nc_floater").css({width:g,left:"center"==d?0:h.left}),b(".nc_socialPanel .swp_count").css({transition:"padding .1s linear"}),b(".nc_socialPanel").eq(0).addClass("swp_one"),b(".nc_socialPanel").eq(2).addClass("swp_two"),b(".nc_socialPanel").eq(1).addClass("swp_three")}}function h(){var c=b(".nc_socialPanel"),d=c.not('[data-float="float_ignore"]').eq(0).attr("data-float"),f=b(a),g=f.height(),h=b(".nc_wrapper"),i=b(".nc_socialPanelSide").filter(":not(.mobile)"),j=(b(".nc_socialPanel").attr("data-position"),i.attr("data-screen-width")),k=c.eq(0).offset(),l=f.scrollTop();b(a).scrollTop();void 0===a.swpOffsets&&(a.swpOffsets={});var m=!1;if("floatLeft"==d){var n=b(".nc_socialPanelSide").attr("data-mobileFloat");b(".nc_socialPanel").not(".nc_socialPanelSide").length?(b(".nc_socialPanel").not(".nc_socialPanelSide, .nc_floater").each(function(){var a=b(this).offset(),c=b(this).height();a.top+c>l&&a.top<l+g&&(m=!0)}),k.left<100||b(a).width()<j?(m=!0,"bottom"==n&&(d="floatBottom")):m||(m=!1)):b(a).width()>j?m=!1:(m=!0,"bottom"==n&&(d="floatBottom"));var o=i.attr("data-transition");"slide"==o?1==m?i.css({left:"-100px"},200):i.css({left:"5px"}):"fade"==o&&(1==m?i.fadeOut(200):i.fadeIn(200))}if("floatBottom"==d||"floatTop"==d)if(m=!1,b(".nc_socialPanel").not(".nc_socialPanelSide, .nc_floater").each(function(){var a=b(this).offset(),c=b(this).height();a.top+c>l&&a.top<l+g&&(m=!0)}),m)h.hide(),"floatBottom"==d?b("body").animate({"padding-bottom":a.bodyPaddingBottom+"px"},0):"floatTop"==d&&b("body").animate({"padding-top":a.bodyPaddingTop+"px"},0);else{var p,q;h.show(),e("floating_bar_revealed"),"floatBottom"==d?(p=a.bodyPaddingBottom+50,b("body").animate({"padding-bottom":p+"px"},0)):"floatTop"==d&&(q=b(".nc_socialPanel").not(".nc_socialPanelSide, .nc_wrapper .nc_socialPanel").first().offset(),q.top>l+g&&(p=a.bodyPaddingTop+50,b("body").animate({"padding-top":p+"px"},0)))}}function i(){0!==b(".nc_socialPanel").length&&(g(),l.activateHoverStates(),k(),b(a).scrollTop(),b(a).scroll(l.throttle(50,function(){h()})),b(a).trigger("scroll"),b(".nc_socialPanel").css({opacity:1}))}function j(){var c={wrap:'<div class="sw-pinit" />',pageURL:document.URL},d=b.extend(c,d);b(".swp-content-locator").parent().find("img").each(function(){var c=b(this);if(!(c.outerHeight()<swpPinIt.minHeight||c.outerWidth()<swpPinIt.minWidth)){var e=!1;if(void 0!==swpPinIt.image_source?e=swpPinIt.image_source:c.data("media")?e=c.data("media"):b(this).attr("data-lazy-src")?e=b(this).attr("data-lazy-src"):c[0].src&&(e=c[0].src),!1!==e&&!c.hasClass("no_pin")){var f="";void 0!==swpPinIt.image_description?f=swpPinIt.image_description:c.attr("title")?f=c.attr("title"):c.attr("alt")&&(f=c.attr("alt"));var g="http://pinterest.com/pin/create/bookmarklet/?media="+encodeURI(e)+"&url="+encodeURI(d.pageURL)+"&is_video=false&description="+encodeURIComponent(f),h=c.attr("class"),i=c.attr("style");c.removeClass().attr("style","").wrap(d.wrap),c.after('<a href="'+g+'" class="sw-pinit-button sw-pinit-'+swpPinIt.vLocation+" sw-pinit-"+swpPinIt.hLocation+'">Save</a>'),c.parent(".sw-pinit").addClass(h).attr("style",i),b(".sw-pinit .sw-pinit-button").on("click",function(){if(a.open(b(this).attr("href"),"Pinterest","width=632,height=253,status=0,toolbar=0,menubar=0,location=1,scrollbars=1"),"function"==typeof ga&&!0===swpClickTracking){console.log("pin_image Button Clicked"),ga("send","event","social_media","swp_pin_image_share")}return!1})}}})}function k(){b(".nc_tweet, a.swp_CTT").off("click"),b(".nc_tweet, a.swp_CTT").on("click",function(c){if(b(this).hasClass("noPop"))return!1;if(console.log(b(this)),b(this).attr("data-link")){c.preventDefault?c.preventDefault():c.returnValue=!1;var d=b(this).attr("data-link");console.log(d);var e,f;if(d=d.replace("’","'"),b(this).hasClass("pinterest")||b(this).hasClass("buffer_link")||b(this).hasClass("flipboard")?(e=550,f=775):(e=270,f=500),a.open(d,"_blank","height="+e+",width="+f),"function"==typeof ga&&!0===swpClickTracking){if(b(this).hasClass("nc_tweet"))var g=b(this).parents(".nc_tweetContainer").attr("data-network");else if(b(this).hasClass("swp_CTT"))var g="ctt";console.log(g+" Button Clicked"),ga("send","event","social_media","swp_"+g+"_share")}return!1}})}var l=a.socialWarfarePlugin,m={};socialWarfarePlugin.fetchShares=function(){b.when(b.get("https://graph.facebook.com/?fields=og_object{likes.summary(true).limit(0)},share&id="+swp_post_url),swp_post_recovery_url?b.get("https://graph.facebook.com/?fields=og_object{likes.summary(true).limit(0)},share&id="+swp_post_recovery_url):"").then(function(a,c){if(void 0!==a[0].share){console.log(a);var e=d(a[0].share.share_count),f=d(a[0].share.comment_count);if(void 0!==a[0].og_object)var g=d(a[0].og_object.likes.summary.total_count);else var g=0;var h=e+f+g;if(swp_post_recovery_url){if(console.log(c),void 0!==c[0].share)var i=d(c[0].share.share_count),j=d(c[0].share.comment_count);else var i=0,j=0;if(void 0!==c[0].og_object)var k=d(c[0].og_object.likes.summary.total_count);else var k=0;var l=i+j+k;h!==l&&(h+=l)}m={action:"swp_facebook_shares_update",post_id:swp_post_id,activity:h},b.post(swp_admin_ajax,m,function(a){console.log("Facebook Shares Response: "+h)})}})},l.activateHoverStates=function(){e("pre_activate_buttons"),b(".nc_socialPanel:not(.nc_socialPanelSide) .nc_tweetContainer:not(.swp_nohover)").on("mouseenter",function(){f();var a=b(this).find(".swp_share").outerWidth(),c=b(this).find("i.sw").outerWidth(),d=b(this).width(),e=1+(a+35)/d;b(this).find(".iconFiller").width(a+c+25+"px"),b(this).css({flex:e+" 1 0%"})}),b(".nc_socialPanel:not(.nc_socialPanelSide)").on("mouseleave",function(){f()})},b(a).on("load",function(){"undefined"!=typeof swpPinIt&&swpPinIt.enabled&&j()}),b(document).ready(function(){k(),i(),a.bodyPaddingTop=d(b("body").css("padding-top").replace("px","")),a.bodyPaddingBottom=d(b("body").css("padding-bottom").replace("px",""));var c=!1;if(b(".nc_socialPanel").hover(function(){c=!0},function(){c=!1}),b(a).resize(l.debounce(250,function(){b(".nc_socialPanel").length&&!1!==c||(a.swpAdjust=1,i())})),b(document.body).on("post-load",function(){i()}),0!==b(".nc_socialPanelSide").length){var e=b(".nc_socialPanelSide").height(),f=b(a).height(),g=d(f/2-e/2);setTimeout(function(){b(".nc_socialPanelSide").animate({top:g},0)},105)}swp_isMobile.phone&&b(".swp_whatsapp").addClass("mobile"),1===b(".swp-content-locator").parent().children().length&&b(".swp-content-locator").parent().hide()})}(this,jQuery),function(a){var b=/(?=.*\bAndroid\b)(?=.*\bMobile\b)/i,c=/(?=.*\bAndroid\b)(?=.*\bSD4930UR\b)/i,d=/(?=.*\bAndroid\b)(?=.*\b(?:KFOT|KFTT|KFJWI|KFJWA|KFSOWI|KFTHWI|KFTHWA|KFAPWI|KFAPWA|KFARWI|KFASWI|KFSAWI|KFSAWA)\b)/i,e=new RegExp("(?:Nexus 7|BNTV250|Kindle Fire|Silk|GT-P1000)","i"),f=function(a,b){return a.test(b)},g=function(a){var g=a||navigator.userAgent,h=g.split("[FBAN");if(void 0!==h[1]&&(g=h[0]),h=g.split("Twitter"),void 0!==h[1]&&(g=h[0]),this.apple={phone:f(/iPhone/i,g),ipod:f(/iPod/i,g),tablet:!f(/iPhone/i,g)&&f(/iPad/i,g),device:f(/iPhone/i,g)||f(/iPod/i,g)||f(/iPad/i,g)},this.amazon={phone:f(c,g),tablet:!f(c,g)&&f(d,g),device:f(c,g)||f(d,g)},this.android={phone:f(c,g)||f(b,g),tablet:!f(c,g)&&!f(b,g)&&(f(d,g)||f(/Android/i,g)),device:f(c,g)||f(d,g)||f(b,g)||f(/Android/i,g)},this.windows={phone:f(/Windows Phone/i,g),tablet:f(/(?=.*\bWindows\b)(?=.*\bARM\b)/i,g),device:f(/Windows Phone/i,g)||f(/(?=.*\bWindows\b)(?=.*\bARM\b)/i,g)},this.other={blackberry:f(/BlackBerry/i,g),blackberry10:f(/BB10/i,g),opera:f(/Opera Mini/i,g),firefox:f(/(?=.*\bFirefox\b)(?=.*\bMobile\b)/i,g),chrome:f(/(CriOS|Chrome)(?=.*\bMobile\b)/i,g),device:f(/BlackBerry/i,g)||f(/BB10/i,g)||f(/Opera Mini/i,g)||f(/(?=.*\bFirefox\b)(?=.*\bMobile\b)/i,g)||f(/(CriOS|Chrome)(?=.*\bMobile\b)/i,g)},this.seven_inch=f(e,g),this.any=this.apple.device||this.android.device||this.windows.device||this.other.device||this.seven_inch,this.phone=this.apple.phone||this.android.phone||this.windows.phone,this.tablet=this.apple.tablet||this.android.tablet||this.windows.tablet,"undefined"==typeof window)return this},h=function(){var a=new g;return a.Class=g,a};"undefined"!=typeof module&&module.exports&&"undefined"==typeof window?module.exports=g:"undefined"!=typeof module&&module.exports&&"undefined"!=typeof window?module.exports=h():"function"==typeof define&&define.amd?define("swp_isMobile",[],a.swp_isMobile=h()):a.swp_isMobile=h()}(this);
readme.txt CHANGED
@@ -186,6 +186,12 @@ We have a growing archive of <a href="https://warfareplugins.com/support" rel="f
186
 
187
  == Changelog ==
188
 
 
 
 
 
 
 
189
  = 2.2.11 (27 JUL 2017) =
190
 
191
  * Updated the Pinterest cache rebuild logic.
186
 
187
  == Changelog ==
188
 
189
+ = 2.3.0 (18 AUG 2017) =
190
+
191
+ * Migrated the registration system from WooCommerce to EDD (THIS IS HUGE!)
192
+ * Fixed some CSS for the button icon and count alignment.
193
+ * Updated the share cache function for pin and OG stuff.
194
+
195
  = 2.2.11 (27 JUL 2017) =
196
 
197
  * Updated the Pinterest cache rebuild logic.
social-warfare.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Social Warfare
4
  * Plugin URI: http://warfareplugins.com
5
  * Description: A plugin to maximize social shares and drive more traffic using the fastest and most intelligent share buttons on the market, calls to action via in-post click-to-tweets, popular posts widgets based on share popularity, link-shortening, Google Analytics and much, much more!
6
- * Version: 2.2.11
7
  * Author: Warfare Plugins
8
  * Author URI: http://warfareplugins.com
9
  * Text Domain: social-warfare
@@ -15,7 +15,7 @@ defined( 'WPINC' ) || die;
15
  * Define plugin constants for use throughout the plugin (Version and Directories)
16
  *
17
  */
18
- define( 'SWP_VERSION' , '2.2.11' );
19
  define( 'SWP_PLUGIN_FILE', __FILE__ );
20
  define( 'SWP_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
21
  define( 'SWP_PLUGIN_DIR', dirname( __FILE__ ) );
3
  * Plugin Name: Social Warfare
4
  * Plugin URI: http://warfareplugins.com
5
  * Description: A plugin to maximize social shares and drive more traffic using the fastest and most intelligent share buttons on the market, calls to action via in-post click-to-tweets, popular posts widgets based on share popularity, link-shortening, Google Analytics and much, much more!
6
+ * Version: 2.3.0
7
  * Author: Warfare Plugins
8
  * Author URI: http://warfareplugins.com
9
  * Text Domain: social-warfare
15
  * Define plugin constants for use throughout the plugin (Version and Directories)
16
  *
17
  */
18
+ define( 'SWP_VERSION' , '2.3.0' );
19
  define( 'SWP_PLUGIN_FILE', __FILE__ );
20
  define( 'SWP_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
21
  define( 'SWP_PLUGIN_DIR', dirname( __FILE__ ) );